diff --git a/.gitignore b/.gitignore index acec6eb..f569995 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,16 @@ .DS_Store logs/env/ +logs/power/ logs/ping_*.txt logs/iperf3_*.txt +apps/primary-macos/.build/ +apps/receiver-macos/.build/ +apps/controller-macos/.build/ +dist/ + +# Local display captures can contain private screen contents. +benchmarks/runs/**/*display_*.png + +# Local third-party source references are analysis inputs, not vendored code. +reference/* +!reference/README.md diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9118636 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "reference/BetterDisplay"] + path = reference/BetterDisplay + url = https://github.com/waydabber/BetterDisplay.git + branch = opensource diff --git a/apps/README.md b/apps/README.md index 97487fb..41a8c7c 100644 --- a/apps/README.md +++ b/apps/README.md @@ -3,6 +3,7 @@ This directory contains the actual software, not just harness docs. - `primary-macos`: MacBook-side capture/encode/transport app. +- `receiver-macos`: iMac macOS receiver spike for live 4K TCP HEVC/H.264 display. - `receiver-windows`: iMac Windows receiver app. - `shared-protocol`: shared protocol definitions/tests. diff --git a/apps/controller-macos/Package.swift b/apps/controller-macos/Package.swift new file mode 100644 index 0000000..312220a --- /dev/null +++ b/apps/controller-macos/Package.swift @@ -0,0 +1,22 @@ +// swift-tools-version: 6.0 + +import PackageDescription + +let package = Package( + name: "iBridgeController", + platforms: [ + .macOS(.v14) + ], + products: [ + .executable(name: "iBridgeController", targets: ["iBridgeController"]) + ], + targets: [ + .executableTarget( + name: "iBridgeController", + linkerSettings: [ + .linkedFramework("AppKit"), + .linkedFramework("SwiftUI") + ] + ) + ] +) diff --git a/apps/controller-macos/Sources/iBridgeController/App.swift b/apps/controller-macos/Sources/iBridgeController/App.swift new file mode 100644 index 0000000..4a7aa35 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/App.swift @@ -0,0 +1,19 @@ +import SwiftUI + +@main +struct IBridgeControllerApp: App { + @StateObject private var model = ControllerModel() + + var body: some Scene { + WindowGroup("iBridge Studio", id: "main") { + ContentView() + .environmentObject(model) + } + .windowResizability(.contentMinSize) + + MenuBarExtra("iBridge Studio", systemImage: "display.2") { + MenuBarView() + .environmentObject(model) + } + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/Components.swift b/apps/controller-macos/Sources/iBridgeController/Components.swift new file mode 100644 index 0000000..ced9c64 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/Components.swift @@ -0,0 +1,142 @@ +import AppKit +import SwiftUI + +struct StudioBackdrop: View { + var body: some View { + ZStack { + Color(nsColor: .windowBackgroundColor) + LinearGradient( + colors: [ + Color.blue.opacity(0.08), + Color.teal.opacity(0.05), + Color.clear + ], + startPoint: .topLeading, + endPoint: .bottomTrailing + ) + .ignoresSafeArea() + LinearGradient( + colors: [ + Color.white.opacity(0.045), + Color.clear + ], + startPoint: .top, + endPoint: .center + ) + .ignoresSafeArea() + } + } +} + +struct AppIconMark: View { + var body: some View { + Image(nsImage: NSApplication.shared.applicationIconImage) + .resizable() + .aspectRatio(contentMode: .fit) + } +} + +struct WindowChromeConfigurator: NSViewRepresentable { + func makeNSView(context: Context) -> NSView { + let view = NSView() + DispatchQueue.main.async { + configure(window: view.window) + } + return view + } + + func updateNSView(_ nsView: NSView, context: Context) { + DispatchQueue.main.async { + configure(window: nsView.window) + } + } + + private func configure(window: NSWindow?) { + guard let window else { return } + window.titlebarAppearsTransparent = true + window.isOpaque = true + window.backgroundColor = .windowBackgroundColor + window.styleMask.insert(.fullSizeContentView) + } +} + +struct GlassPanel: View { + let content: Content + + init(@ViewBuilder content: () -> Content) { + self.content = content() + } + + var body: some View { + content + .padding(14) + .background(Color(nsColor: .controlBackgroundColor), in: RoundedRectangle(cornerRadius: 8)) + .overlay( + RoundedRectangle(cornerRadius: 8) + .stroke(Color.primary.opacity(0.10), lineWidth: 1) + ) + } +} + +struct HeaderButton: View { + let title: String + let systemImage: String + let role: ButtonRole? + let action: () -> Void + + init( + _ title: String, + systemImage: String, + role: ButtonRole? = nil, + action: @escaping () -> Void + ) { + self.title = title + self.systemImage = systemImage + self.role = role + self.action = action + } + + var body: some View { + Button(role: role, action: action) { + Label(title, systemImage: systemImage) + } + .controlSize(.large) + } +} + +struct StatusPill: View { + let title: String + let color: Color + + var body: some View { + HStack(spacing: 6) { + Circle() + .fill(color) + .frame(width: 8, height: 8) + Text(title) + .font(.caption.weight(.medium)) + } + .padding(.horizontal, 9) + .padding(.vertical, 5) + .background(color.opacity(0.14), in: Capsule()) + } +} + +struct LabeledField: View { + let title: String + let content: Content + + init(_ title: String, @ViewBuilder content: () -> Content) { + self.title = title + self.content = content() + } + + var body: some View { + VStack(alignment: .leading, spacing: 5) { + Text(title) + .font(.caption.weight(.semibold)) + .foregroundStyle(.secondary) + content + } + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/ContentView.swift b/apps/controller-macos/Sources/iBridgeController/ContentView.swift new file mode 100644 index 0000000..5080550 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/ContentView.swift @@ -0,0 +1,151 @@ +import AppKit +import SwiftUI + +struct ContentView: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + ZStack { + StudioBackdrop() + VStack(spacing: 0) { + HeaderView() + Divider().opacity(0.6) + StudioTabPicker() + Divider().opacity(0.45) + Group { + switch model.selectedTab { + case .sender: + SenderTab() + case .receiver: + ReceiverTab() + case .logs: + LogTab() + } + } + } + } + .background(WindowChromeConfigurator()) + .frame(minWidth: 760, minHeight: 720) + } +} + +struct StudioTabPicker: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + HStack { + Spacer() + + Picker("Mode", selection: $model.selectedTab) { + ForEach(StudioTab.allCases) { tab in + Label(tab.rawValue, systemImage: tab.systemImage) + .tag(tab) + } + } + .pickerStyle(.segmented) + .frame(width: 360) + .labelsHidden() + + Spacer() + } + .padding(.horizontal, 20) + .padding(.vertical, 12) + .background(.thinMaterial) + } +} + +struct HeaderView: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + HStack(spacing: 14) { + AppIconMark() + .frame(width: 54, height: 54) + .accessibilityHidden(true) + + VStack(alignment: .leading, spacing: 2) { + Text("iBridge Studio") + .font(.title3.weight(.semibold)) + Text("Turn your retired iMacs into Retina monitors") + .font(.caption) + .foregroundStyle(.secondary) + } + + Spacer() + + HeaderButton("Refresh Displays", systemImage: "display.2") { + model.listDisplays() + } + .disabled(model.isListingDisplays) + + HeaderButton("Restore Windows", systemImage: "rectangle.on.rectangle") { + model.restoreWindowsToMacBook() + } + + HeaderButton("Stop All", systemImage: "stop.fill", role: .destructive) { + model.stopAllSenders() + } + } + .padding(.horizontal, 20) + .padding(.vertical, 16) + .background { + Rectangle() + .fill(Color(nsColor: .controlBackgroundColor)) + .overlay( + LinearGradient( + colors: [ + Color.white.opacity(0.07), + Color.white.opacity(0.02), + Color.clear + ], + startPoint: .topLeading, + endPoint: .bottomTrailing + ) + ) + } + } +} + +struct MenuBarView: View { + @EnvironmentObject private var model: ControllerModel + @Environment(\.openWindow) private var openWindow + + var body: some View { + Button("Show iBridge Studio") { + openWindow(id: "main") + NSApp.activate(ignoringOtherApps: true) + } + + Divider() + + Button("Refresh Displays") { + model.listDisplays() + } + + Button("Restore Windows to MacBook") { + model.restoreWindowsToMacBook() + } + + Divider() + + Menu("Add Sender") { + ForEach(presets) { preset in + Button(preset.name) { + model.addSession(preset: preset) + openWindow(id: "main") + NSApp.activate(ignoringOtherApps: true) + } + } + } + + Button("Stop All Senders") { + model.stopAllSenders() + } + + Divider() + + Button("Quit iBridge Studio") { + NSApp.terminate(nil) + } + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/ControllerModel.swift b/apps/controller-macos/Sources/iBridgeController/ControllerModel.swift new file mode 100644 index 0000000..205047d --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/ControllerModel.swift @@ -0,0 +1,205 @@ +import Foundation + +@MainActor +final class ControllerModel: ObservableObject { + @Published var sessions: [DisplaySession] = [ + DisplaySession(preset: presets[0]) + ] + @Published var receiverPort = "48320" + @Published var receiverTitle = "iBridge Receiver" + @Published var log = "Ready.\n" + @Published var runningSenderIDs = Set() + @Published var busyReceiverIDs = Set() + @Published var isListingDisplays = false + @Published var selectedTab: StudioTab = .sender + + private var senderProcesses: [UUID: Process] = [:] + private var receiverProcesses: [UUID: Process] = [:] + + func addSession(preset: ReceiverPreset = presets[2]) { + let session = DisplaySession(preset: preset) + sessions.append(session) + selectedTab = .sender + append("Added sender session: \(session.name)") + } + + func removeSession(_ session: DisplaySession) { + stopSender(session) + receiverProcesses[session.id]?.terminate() + receiverProcesses[session.id] = nil + sessions.removeAll { $0.id == session.id } + append("Removed sender session: \(session.name)") + } + + func listDisplays() { + isListingDisplays = true + runOneShot( + command: "apps/primary-macos/.build/release/ibridge-primary --list-displays", + label: "Displays" + ) { [weak self] in + self?.isListingDisplays = false + } + } + + func restoreWindowsToMacBook() { + let command = """ + osascript <<'APPLESCRIPT' + tell application "System Events" + repeat with proc in application processes + try + if background only of proc is false then + set procName to name of proc + if procName is not "iBridge Studio" and procName is not "iBridge Control" and procName is not "iBridge Receiver" then + repeat with win in windows of proc + try + set position of win to {120, 120} + set size of win to {1280, 820} + end try + end repeat + end if + end if + end try + end repeat + end tell + APPLESCRIPT + """ + append("Restoring visible app windows to the MacBook display area.") + append("If nothing moves, grant Accessibility permission to iBridge Studio.") + runOneShot(command: command, label: "Restore Windows") + } + + func startRemoteReceiver(_ session: DisplaySession) { + busyReceiverIDs.insert(session.id) + let keyPrefix = session.receiverKey.isEmpty ? "" : "RECEIVER_KEY=\(session.receiverKey) " + let command = "\(keyPrefix)\(session.receiverScript)" + append("Starting remote receiver: \(session.name)") + receiverProcesses[session.id] = runOneShot( + command: command, + label: "\(session.name) Receiver" + ) { [weak self, weak session] in + guard let session else { return } + self?.busyReceiverIDs.remove(session.id) + } + } + + func startLocalReceiver() { + let command = """ + apps/receiver-macos/.build/release/ibridge-receiver-macos \ + --port '\(shellEscape(receiverPort))' \ + --fullscreen \ + --hide-status \ + --title '\(shellEscape(receiverTitle))' + """ + append("Starting local receiver.") + runOneShot(command: command, label: "Local Receiver") + } + + func startSender(_ session: DisplaySession) { + stopSender(session) + let command = """ + RECEIVER_IP='\(shellEscape(session.receiverIP))' \ + CAPTURE_DISPLAY_NAME='\(shellEscape(session.displayName))' \ + PROFILE='\(shellEscape(session.profile))' \ + RESOLUTION='\(shellEscape(session.resolution))' \ + BITRATE_MBPS='\(shellEscape(session.bitrateMbps))' \ + DURATION='\(shellEscape(session.duration))' \ + scripts/start_ibridge_virtual_capture.sh + """ + append("Starting sender: \(session.name)") + let process = makeProcess(command: command, label: "\(session.name) Sender") + senderProcesses[session.id] = process + runningSenderIDs.insert(session.id) + process.terminationHandler = { [weak self, weak session] process in + Task { @MainActor in + guard let session else { return } + self?.senderProcesses[session.id] = nil + self?.runningSenderIDs.remove(session.id) + self?.append("\(session.name) sender exited with status \(process.terminationStatus)") + } + } + do { + try process.run() + } catch { + senderProcesses[session.id] = nil + runningSenderIDs.remove(session.id) + append("Failed to start \(session.name) sender: \(error.localizedDescription)") + } + } + + func stopSender(_ session: DisplaySession) { + guard let process = senderProcesses[session.id] else { return } + append("Stopping sender: \(session.name)") + process.terminate() + senderProcesses[session.id] = nil + runningSenderIDs.remove(session.id) + } + + func stopAllSenders() { + for session in sessions { + stopSender(session) + } + } + + func isSenderRunning(_ session: DisplaySession) -> Bool { + runningSenderIDs.contains(session.id) + } + + func isReceiverBusy(_ session: DisplaySession) -> Bool { + busyReceiverIDs.contains(session.id) + } + + @discardableResult + private func runOneShot( + command: String, + label: String, + onExit: (@MainActor @Sendable () -> Void)? = nil + ) -> Process { + append("$ \(label): \(command)") + let process = makeProcess(command: command, label: label) + process.terminationHandler = { [weak self] process in + Task { @MainActor in + self?.append("\(label) exited with status \(process.terminationStatus)") + onExit?() + } + } + do { + try process.run() + } catch { + append("Failed \(label): \(error.localizedDescription)") + onExit?() + } + return process + } + + private func makeProcess(command: String, label: String) -> Process { + let process = Process() + process.executableURL = URL(fileURLWithPath: "/bin/zsh") + process.arguments = ["-lc", "cd '\(repoRoot.path)' && \(command)"] + let pipe = Pipe() + process.standardOutput = pipe + process.standardError = pipe + pipe.fileHandleForReading.readabilityHandler = { [weak self] handle in + let data = handle.availableData + guard !data.isEmpty, let text = String(data: data, encoding: .utf8) else { return } + Task { @MainActor in + self?.appendOutput(text, label: label) + } + } + return process + } + + private func appendOutput(_ text: String, label: String) { + let lines = text.split(separator: "\n", omittingEmptySubsequences: false) + for line in lines where !line.isEmpty { + log += "[\(label)] \(line)\n" + } + } + + private func append(_ text: String) { + log += text.hasSuffix("\n") ? text : "\(text)\n" + } + + private func shellEscape(_ value: String) -> String { + value.replacingOccurrences(of: "'", with: "'\\''") + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/LogView.swift b/apps/controller-macos/Sources/iBridgeController/LogView.swift new file mode 100644 index 0000000..3c7fc22 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/LogView.swift @@ -0,0 +1,37 @@ +import SwiftUI + +struct LogTab: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + VStack(alignment: .leading, spacing: 10) { + HStack { + VStack(alignment: .leading, spacing: 2) { + Text("Runtime Log") + .font(.title3.weight(.semibold)) + Text("Sender, receiver, display listing, and restore actions appear here.") + .font(.caption) + .foregroundStyle(.secondary) + } + + Spacer() + + Button { + model.log = "Ready.\n" + } label: { + Label("Clear", systemImage: "xmark.circle") + } + } + + TextEditor(text: $model.log) + .font(.system(.caption, design: .monospaced)) + .scrollContentBackground(.hidden) + .background(.regularMaterial, in: RoundedRectangle(cornerRadius: 8)) + .overlay( + RoundedRectangle(cornerRadius: 8) + .stroke(Color.primary.opacity(0.10), lineWidth: 1) + ) + } + .padding(18) + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/Models.swift b/apps/controller-macos/Sources/iBridgeController/Models.swift new file mode 100644 index 0000000..4ee03e7 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/Models.swift @@ -0,0 +1,160 @@ +import Foundation +import SwiftUI + +let repoRoot = URL(fileURLWithPath: "/Users/gabriel/Development/iBridge", isDirectory: true) + +struct ReceiverPreset: Identifiable, Hashable { + let id: String + let name: String + let receiverIP: String + let displayName: String + let profile: String + let resolution: String + let bitrateMbps: String + let duration: String + let receiverScript: String + let receiverKey: String +} + +struct ValueOption: Identifiable, Hashable { + let id: String + let title: String + let value: String +} + +enum StudioTab: String, CaseIterable, Identifiable { + case sender = "Sender" + case receiver = "Receiver" + case logs = "Logs" + + var id: String { rawValue } + + var systemImage: String { + switch self { + case .sender: "macbook.and.iphone" + case .receiver: "display" + case .logs: "list.bullet.rectangle" + } + } +} + +let presets: [ReceiverPreset] = [ + ReceiverPreset( + id: "imac-2015-quality", + name: "2015 iMac 5K Quality", + receiverIP: "169.254.99.112", + displayName: "iMac 27inch 2015", + profile: "lan-60hz", + resolution: "5120x2880", + bitrateMbps: "280", + duration: "600", + receiverScript: "scripts/start_2015_imac_receiver_macos.sh", + receiverKey: "$HOME/.ssh/id_ed25519" + ), + ReceiverPreset( + id: "imac-2015-smooth", + name: "2015 iMac Smooth", + receiverIP: "169.254.99.112", + displayName: "iMac 27inch 2015", + profile: "lan-60hz", + resolution: "2560x1440", + bitrateMbps: "80", + duration: "600", + receiverScript: "scripts/start_2015_imac_receiver_macos.sh", + receiverKey: "$HOME/.ssh/id_ed25519" + ), + ReceiverPreset( + id: "imac-2017-quality", + name: "2017 iMac 4K Quality", + receiverIP: "169.254.70.114", + displayName: "iMac 21.5inch 2017", + profile: "imac4k-quality", + resolution: "4096x2304", + bitrateMbps: "220", + duration: "600", + receiverScript: "scripts/start_2017_imac_receiver_macos.sh", + receiverKey: "" + ) +] + +let signalOptions = [ + ValueOption(id: "5k", title: "5K Retina Quality", value: "5120x2880"), + ValueOption(id: "imac4k", title: "iMac 4K Native", value: "4096x2304"), + ValueOption(id: "uhd", title: "UHD Quality", value: "3840x2160"), + ValueOption(id: "qhd", title: "1440p Smooth", value: "2560x1440"), + ValueOption(id: "custom", title: "Custom", value: "") +] + +let bitrateOptions = [ + ValueOption(id: "80", title: "80 Mbps Smooth", value: "80"), + ValueOption(id: "160", title: "160 Mbps Quality", value: "160"), + ValueOption(id: "220", title: "220 Mbps 4K Quality", value: "220"), + ValueOption(id: "280", title: "280 Mbps 5K Quality", value: "280"), + ValueOption(id: "custom", title: "Custom", value: "") +] + +let durationOptions = [ + ValueOption(id: "10m", title: "10 min", value: "600"), + ValueOption(id: "30m", title: "30 min", value: "1800"), + ValueOption(id: "1h", title: "1 hour", value: "3600"), + ValueOption(id: "custom", title: "Custom", value: "") +] + +@MainActor +final class DisplaySession: ObservableObject, Identifiable { + let id = UUID() + @Published var name: String + @Published var receiverIP: String + @Published var displayName: String + @Published var profile: String + @Published var resolution: String + @Published var bitrateMbps: String + @Published var duration: String + @Published var receiverScript: String + @Published var receiverKey: String + @Published var signalOptionID: String + @Published var bitrateOptionID: String + @Published var durationOptionID: String + + init(preset: ReceiverPreset) { + name = preset.name + receiverIP = preset.receiverIP + displayName = preset.displayName + profile = preset.profile + resolution = preset.resolution + bitrateMbps = preset.bitrateMbps + duration = preset.duration + receiverScript = preset.receiverScript + receiverKey = preset.receiverKey + signalOptionID = signalOptions.first { $0.value == preset.resolution }?.id ?? "custom" + bitrateOptionID = bitrateOptions.first { $0.value == preset.bitrateMbps }?.id ?? "custom" + durationOptionID = durationOptions.first { $0.value == preset.duration }?.id ?? "custom" + } + + func apply(_ preset: ReceiverPreset) { + name = preset.name + receiverIP = preset.receiverIP + displayName = preset.displayName + profile = preset.profile + receiverScript = preset.receiverScript + receiverKey = preset.receiverKey + setResolution(preset.resolution) + setBitrate(preset.bitrateMbps) + setDuration(preset.duration) + } + + func setResolution(_ value: String) { + resolution = value + signalOptionID = signalOptions.first { $0.value == value }?.id ?? "custom" + } + + func setBitrate(_ value: String) { + bitrateMbps = value + bitrateOptionID = bitrateOptions.first { $0.value == value }?.id ?? "custom" + } + + func setDuration(_ value: String) { + duration = value + durationOptionID = durationOptions.first { $0.value == value }?.id ?? "custom" + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/ReceiverViews.swift b/apps/controller-macos/Sources/iBridgeController/ReceiverViews.swift new file mode 100644 index 0000000..db4311f --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/ReceiverViews.swift @@ -0,0 +1,134 @@ +import Foundation +import SwiftUI + +struct ReceiverTab: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + GeometryReader { proxy in + ScrollView { + VStack(alignment: .leading, spacing: 16) { + VStack(alignment: .leading, spacing: 2) { + Text("Receiver") + .font(.title3.weight(.semibold)) + Text("Run the receiver on an iMac, or start it remotely over SSH.") + .font(.caption) + .foregroundStyle(.secondary) + } + + if proxy.size.width < 980 { + VStack(alignment: .leading, spacing: 14) { + localReceiverPanel + remoteReceiverPanel + } + } else { + HStack(alignment: .top, spacing: 14) { + localReceiverPanel + .frame(maxWidth: .infinity, alignment: .topLeading) + remoteReceiverPanel + .frame(maxWidth: .infinity, alignment: .topLeading) + } + } + } + .padding(18) + .frame(maxWidth: 1280, alignment: .leading) + } + } + } + + private var localReceiverPanel: some View { + GlassPanel { + VStack(alignment: .leading, spacing: 12) { + Text("This Mac") + .font(.headline) + + ViewThatFits(in: .horizontal) { + HStack(alignment: .bottom, spacing: 12) { + portField + titleField + } + VStack(alignment: .leading, spacing: 10) { + portField + titleField + } + } + .textFieldStyle(.roundedBorder) + + Button { + model.startLocalReceiver() + } label: { + Label("Start Receiver on This Mac", systemImage: "play.rectangle") + } + } + } + } + + private var remoteReceiverPanel: some View { + GlassPanel { + VStack(alignment: .leading, spacing: 12) { + Text("Remote iMacs") + .font(.headline) + + ForEach(model.sessions) { session in + remoteReceiverRow(session) + + if session.id != model.sessions.last?.id { + Divider().opacity(0.65) + } + } + } + } + } + + private var portField: some View { + LabeledField("Port") { + TextField("Port", text: $model.receiverPort) + .frame(width: 140) + } + } + + private var titleField: some View { + LabeledField("Window title") { + TextField("Window title", text: $model.receiverTitle) + .frame(minWidth: 240) + } + } + + private func remoteReceiverRow(_ session: DisplaySession) -> some View { + ViewThatFits(in: .horizontal) { + HStack(alignment: .center, spacing: 12) { + remoteReceiverSummary(session) + Spacer(minLength: 12) + startRemoteButton(session) + } + VStack(alignment: .leading, spacing: 10) { + remoteReceiverSummary(session) + startRemoteButton(session) + } + } + } + + private func remoteReceiverSummary(_ session: DisplaySession) -> some View { + VStack(alignment: .leading, spacing: 3) { + Text(session.name) + .font(.subheadline.weight(.semibold)) + Text(session.receiverIP) + .font(.caption.weight(.medium)) + .foregroundStyle(.secondary) + Text(URL(fileURLWithPath: session.receiverScript).lastPathComponent) + .font(.caption) + .foregroundStyle(.tertiary) + .lineLimit(1) + .truncationMode(.middle) + } + } + + private func startRemoteButton(_ session: DisplaySession) -> some View { + Button { + model.startRemoteReceiver(session) + } label: { + Label("Start", systemImage: "play.fill") + } + .disabled(model.isReceiverBusy(session)) + } +} diff --git a/apps/controller-macos/Sources/iBridgeController/SenderViews.swift b/apps/controller-macos/Sources/iBridgeController/SenderViews.swift new file mode 100644 index 0000000..fc4aa99 --- /dev/null +++ b/apps/controller-macos/Sources/iBridgeController/SenderViews.swift @@ -0,0 +1,273 @@ +import SwiftUI + +struct SenderTab: View { + @EnvironmentObject private var model: ControllerModel + + var body: some View { + VStack(spacing: 14) { + HStack { + VStack(alignment: .leading, spacing: 2) { + Text("Sender Sessions") + .font(.title3.weight(.semibold)) + Text("One session per virtual display / receiver iMac.") + .font(.caption) + .foregroundStyle(.secondary) + } + + Spacer() + + Menu { + ForEach(presets) { preset in + Button(preset.name) { + model.addSession(preset: preset) + } + } + } label: { + Label("Add Sender", systemImage: "plus") + } + .controlSize(.large) + } + + ScrollView { + LazyVStack(spacing: 12) { + ForEach(model.sessions) { session in + SenderSessionCard(session: session) + } + } + .padding(.bottom, 12) + } + } + .padding(18) + } +} + +struct SenderSessionCard: View { + @EnvironmentObject private var model: ControllerModel + @ObservedObject var session: DisplaySession + + var body: some View { + GlassPanel { + VStack(alignment: .leading, spacing: 14) { + header + Divider().opacity(0.65) + configurationFields + actionRow + } + } + } + + private var header: some View { + HStack(alignment: .center, spacing: 12) { + VStack(alignment: .leading, spacing: 2) { + TextField("Session name", text: $session.name) + .font(.headline) + .textFieldStyle(.plain) + Text(session.displayName) + .font(.caption) + .foregroundStyle(.secondary) + } + + Spacer() + + StatusPill( + title: model.isSenderRunning(session) ? "Streaming" : "Idle", + color: model.isSenderRunning(session) ? .green : .gray + ) + + Menu { + ForEach(presets) { preset in + Button(preset.name) { + session.apply(preset) + } + } + } label: { + Label("Preset", systemImage: "slider.horizontal.3") + } + .labelStyle(.iconOnly) + + Button(role: .destructive) { + model.removeSession(session) + } label: { + Label("Remove", systemImage: "minus") + } + .labelStyle(.iconOnly) + .disabled(model.sessions.count <= 1) + } + } + + private var configurationFields: some View { + ViewThatFits(in: .horizontal) { + wideConfiguration + compactConfiguration + } + .textFieldStyle(.roundedBorder) + } + + private var wideConfiguration: some View { + Grid(alignment: .leading, horizontalSpacing: 16, verticalSpacing: 12) { + GridRow { + receiverField + displayField + } + + GridRow { + signalPresetField + signalField + } + + GridRow { + profileField + bitrateFields + } + + GridRow { + durationField + durationSecondsField + } + } + .frame(minWidth: 860, alignment: .leading) + } + + private var compactConfiguration: some View { + VStack(alignment: .leading, spacing: 12) { + receiverField + displayField + signalPresetField + signalField + profileField + bitrateFields + durationField + durationSecondsField + } + } + + private var receiverField: some View { + LabeledField("Receiver") { + TextField("Receiver IP", text: $session.receiverIP) + .frame(minWidth: 220) + } + } + + private var displayField: some View { + LabeledField("Display") { + TextField("Virtual display name", text: $session.displayName) + .frame(minWidth: 260) + } + } + + private var signalPresetField: some View { + LabeledField("Signal preset") { + Picker("Signal preset", selection: $session.signalOptionID) { + ForEach(signalOptions) { option in + Text(option.title).tag(option.id) + } + } + .labelsHidden() + .onChange(of: session.signalOptionID) { _, newValue in + if let option = signalOptions.first(where: { $0.id == newValue }), option.id != "custom" { + session.resolution = option.value + } + } + } + } + + private var signalField: some View { + LabeledField("Signal") { + TextField("Resolution", text: $session.resolution) + .disabled(session.signalOptionID != "custom") + } + } + + private var profileField: some View { + LabeledField("Profile") { + TextField("Profile", text: $session.profile) + } + } + + private var bitrateFields: some View { + ViewThatFits(in: .horizontal) { + HStack(alignment: .bottom, spacing: 10) { + bitratePresetField + bitrateCustomField + } + VStack(alignment: .leading, spacing: 10) { + bitratePresetField + bitrateCustomField + } + } + } + + private var bitratePresetField: some View { + LabeledField("Bitrate preset") { + Picker("Bitrate", selection: $session.bitrateOptionID) { + ForEach(bitrateOptions) { option in + Text(option.title).tag(option.id) + } + } + .labelsHidden() + .frame(minWidth: 220) + .onChange(of: session.bitrateOptionID) { _, newValue in + if let option = bitrateOptions.first(where: { $0.id == newValue }), option.id != "custom" { + session.bitrateMbps = option.value + } + } + } + } + + private var bitrateCustomField: some View { + LabeledField("Custom Mbps") { + TextField("Mbps", text: $session.bitrateMbps) + .frame(width: 120) + .disabled(session.bitrateOptionID != "custom") + } + } + + private var durationField: some View { + LabeledField("Duration") { + Picker("Duration", selection: $session.durationOptionID) { + ForEach(durationOptions) { option in + Text(option.title).tag(option.id) + } + } + .labelsHidden() + .onChange(of: session.durationOptionID) { _, newValue in + if let option = durationOptions.first(where: { $0.id == newValue }), option.id != "custom" { + session.duration = option.value + } + } + } + } + + private var durationSecondsField: some View { + LabeledField("Custom seconds") { + TextField("Seconds", text: $session.duration) + .disabled(session.durationOptionID != "custom") + } + } + + private var actionRow: some View { + HStack(spacing: 8) { + Button { + model.startSender(session) + } label: { + Label("Start Sender", systemImage: "play.fill") + } + .disabled(model.isSenderRunning(session)) + + Button { + model.stopSender(session) + } label: { + Label("Stop", systemImage: "stop.fill") + } + .disabled(!model.isSenderRunning(session)) + + Spacer() + + Button { + model.restoreWindowsToMacBook() + } label: { + Label("Restore Windows", systemImage: "rectangle.on.rectangle") + } + } + } +} diff --git a/apps/primary-macos/Package.swift b/apps/primary-macos/Package.swift new file mode 100644 index 0000000..2bb485b --- /dev/null +++ b/apps/primary-macos/Package.swift @@ -0,0 +1,26 @@ +// swift-tools-version: 6.0 + +import PackageDescription + +let package = Package( + name: "iBridgePrimary", + platforms: [ + .macOS(.v14) + ], + products: [ + .executable(name: "ibridge-primary", targets: ["iBridgePrimary"]) + ], + targets: [ + .executableTarget( + name: "iBridgePrimary", + linkerSettings: [ + .linkedFramework("CoreMedia"), + .linkedFramework("CoreGraphics"), + .linkedFramework("CoreVideo"), + .linkedFramework("AppKit"), + .linkedFramework("ScreenCaptureKit"), + .linkedFramework("VideoToolbox") + ] + ) + ] +) diff --git a/apps/primary-macos/README.md b/apps/primary-macos/README.md index 6873f26..6e7b51c 100644 --- a/apps/primary-macos/README.md +++ b/apps/primary-macos/README.md @@ -11,3 +11,91 @@ First target: 5. diagnostics output Do not block first implementation on perfect virtual display. Create a virtual display spike separately. + +## CLI spike + +Build: + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Run a synthetic 1440p60 H.264 encode benchmark: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv benchmarks/runs/YYYY-MM-DD_HHMM_primary_1440p60_h264/primary_stats.csv +``` + +Run the HEVC path: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec hevc --csv benchmarks/runs/YYYY-MM-DD_HHMM_primary_1440p60_hevc/primary_stats.csv +``` + +On machines that expose multiple VideoToolbox encoders, force an encoder ID for isolation: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 3200x1800 --fps 60 --duration 3 --codec hevc --bitrate-mbps 120 --disable-low-latency-rate-control --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc --data-rate-limit-mbps 120 --csv benchmarks/runs/YYYY-MM-DD_HHMM_primary_1800p60_hevc_ave/primary_stats.csv +``` + +Use `--list-encoders` first and keep encoder-ID-specific results separate from automatic encoder selection. + +Reference-informed VideoToolbox controls: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 3840x2160 --fps 60 --duration 5 --codec hevc --bitrate-mbps 120 \ + --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --data-rate-limit-mbps 120 \ + --payload-format annex-b \ + --csv benchmarks/runs/YYYY-MM-DD_HHMM_vt_property_probe/primary_stats.csv +``` + +Frame reordering is disabled for latency, but temporal compression is enabled +by default so the encoder can still emit P-frames. `--payload-format annex-b` +adds VPS/SPS/PPS or SPS/PPS before keyframes and converts length-prefixed NALs +to start-code-delimited elementary stream payloads for receiver experiments. + +Send encoded frames to a protocol v0 TCP receiver sink: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 5120x2880 --fps 60 --duration 1 --codec hevc --bitrate-mbps 120 --send-host 100.86.52.88 --send-port 48320 --csv benchmarks/runs/YYYY-MM-DD_HHMM_plan_b_5k_hevc_tcp/primary_stats.csv +``` + +The TCP sender now uses a bounded async queue. The VideoToolbox output callback copies the encoded payload and enqueues it; a dedicated sender worker owns blocking socket writes. New diagnostics columns include `payload_extract_ms`, `enqueue_ms`, `queue_depth`, `dropped_before`, `send_ms`, `bytes_sent`, `frame_age_at_send_ms`, `send_failed`, `keyframe`, and `sender_dropped`. + +List available VideoToolbox encoders on the current Mac: + +```bash +apps/primary-macos/.build/release/ibridge-primary --list-encoders +``` + +Run the Plan C low-latency matrix: + +```bash +scripts/mac_plan_c_encode_matrix.sh +``` + +Run the reference-informed VideoToolbox property matrix: + +```bash +scripts/mac_vt_property_matrix.sh +``` + +Run the source/strategy matrix: + +```bash +scripts/mac_encode_strategy_matrix.sh +``` + +The Primary CLI can now compare `synthetic-bgra`, `synthetic-nv12`, +`synthetic-static-skip`, `synthetic-nv12-tiled`, and `screen-capture` sources. +The strategy matrix also runs 5K45/5K30 and both in-process and multi-process +2x2 tiled-session approximations for 5K60. Use +`--tile-max-inflight-logical-frames 1` or `2` to test whether limiting +VideoToolbox queue depth keeps tiled 5K60 stable under sustained load. Use +`--tile-reset-every-frames 150` to test segmented tile sessions when a long +VideoToolbox session accumulates latency after several seconds. diff --git a/apps/primary-macos/Sources/iBridgePrimary/main.swift b/apps/primary-macos/Sources/iBridgePrimary/main.swift new file mode 100644 index 0000000..4545392 --- /dev/null +++ b/apps/primary-macos/Sources/iBridgePrimary/main.swift @@ -0,0 +1,2109 @@ +import CoreGraphics +import CoreMedia +import CoreVideo +import Darwin +import Foundation +import ApplicationServices +import AppKit +@preconcurrency import ScreenCaptureKit +import VideoToolbox + +struct Options { + var synthetic = false + var screenCapture = false + var source = "synthetic-bgra" + var width = 2560 + var height = 1440 + var fps = 60 + var durationSeconds = 2 + var codec = "h264" + var csvPath = "" + var realtime = true + var sendHost = "" + var sendPort = 48320 + var bitrateMbps = 0 + var dataRateLimitMbps = 0 + var dataRateWindowSeconds = 1.0 + var lowLatencyRateControl = true + var maxKeyFrameInterval = 60 + var maxKeyFrameIntervalDuration = 2.0 + var maxFrameDelayCount: Int? = 0 + var allowTemporalCompression = true + var allowFrameReordering = false + var allowOpenGOP = false + var prioritizeSpeed: Bool? + var moreFramesBeforeStart: Bool? + var moreFramesAfterEnd: Bool? + var sourceFrameCount: Int? + var payloadFormat = "length-prefixed" + var staticChangeEvery = 1 + var captureDisplayIndex = 0 + var captureQueueDepth = 8 + var captureMaxInFlightFrames = 0 + var showCapturedCursor = true + var tileColumns = 2 + var tileRows = 2 + var tileReuseBuffers = false + var tileMaxInFlightLogicalFrames = 0 + var tileResetEveryFrames = 0 + var tileResetStaggerFrames = 0 + var tileSegmentHints = false + var warmupFrames = 0 + var senderQueueDepth = 4 + var enableInput = true + var listEncoders = false + var listDisplays = false + var printSupportedProperties = false + var encoderID = "" +} + +struct EncodedFrame { + let frameID: Int + let generateMS: Double + let encodeLatencyMS: Double + let payloadExtractMS: Double + let enqueueMS: Double + let queueDepth: Int + let droppedBefore: UInt32 + var sendMS: Double + var bytesSent: Int + var frameAgeAtSendMS: Double + var sendFailed: Bool + let keyframe: Bool + var senderDropped: Bool + let payloadBytes: Int + let status: OSStatus +} + +final class InputEventInjector: @unchecked Sendable { + private let lock = NSLock() + private var targetFrame = CGRect(origin: .zero, size: CGSize(width: 1, height: 1)) + private var receivedEventCount = 0 + + func setTargetDisplay(displayID: CGDirectDisplayID) { + lock.lock() + targetFrame = CGDisplayBounds(displayID) + lock.unlock() + fputs("input_target_display_id=\(displayID) frame=\(targetFrame)\n", stderr) + let promptOptions = ["AXTrustedCheckOptionPrompt": true] as CFDictionary + let trusted = AXIsProcessTrustedWithOptions(promptOptions) + fputs("input_accessibility_trusted=\(trusted)\n", stderr) + } + + func handleLine(_ line: String) { + let parts = line.split(separator: " ") + guard parts.first == "IBRIDGE_INPUT", parts.count >= 3 else { return } + receivedEventCount += 1 + if receivedEventCount <= 10 || receivedEventCount % 60 == 0 { + fputs("input_event_received count=\(receivedEventCount) kind=\(parts[1])\n", stderr) + } + switch parts[1] { + case "pointer": + handlePointer(parts) + case "key": + handleKey(parts) + default: + return + } + } + + private func handlePointer(_ parts: [Substring]) { + guard parts.count >= 7, + let x = Double(parts[3]), + let y = Double(parts[4]), + let button = Int(parts[5]) else { + return + } + let phase = parts[2] + let frame: CGRect = { + lock.lock() + defer { lock.unlock() } + return targetFrame + }() + let location = CGPoint( + x: frame.minX + frame.width * x, + y: frame.minY + frame.height * y + ) + let eventType: CGEventType + let mouseButton: CGMouseButton + switch button { + case 1: + mouseButton = .right + eventType = phase == "down" ? .rightMouseDown : phase == "up" ? .rightMouseUp : .rightMouseDragged + case 2: + mouseButton = .center + eventType = phase == "down" ? .otherMouseDown : phase == "up" ? .otherMouseUp : .otherMouseDragged + default: + mouseButton = .left + eventType = phase == "down" ? .leftMouseDown : phase == "up" ? .leftMouseUp : phase == "move" ? .mouseMoved : .leftMouseDragged + } + guard let event = CGEvent(mouseEventSource: nil, mouseType: eventType, mouseCursorPosition: location, mouseButton: mouseButton) else { + return + } + event.post(tap: .cghidEventTap) + } + + private func handleKey(_ parts: [Substring]) { + guard parts.count >= 5, + let keyCodeValue = UInt16(parts[3]) else { + return + } + let isDown = parts[2] == "down" + guard let event = CGEvent(keyboardEventSource: nil, virtualKey: CGKeyCode(keyCodeValue), keyDown: isDown) else { + return + } + event.post(tap: .cghidEventTap) + } +} + +final class EncoderState { + private let lock = NSLock() + private var timings: [Int: FrameTiming] = [:] + private var framesByID: [Int: EncodedFrame] = [:] + let codec: String + let payloadFormat: String + let onFrameFinished: ((EncodedFrame) -> Void)? + var sender: AsyncTcpFrameSender? + var inputInjector: InputEventInjector? + + init(codec: String, payloadFormat: String, onFrameFinished: ((EncodedFrame) -> Void)? = nil) { + self.codec = codec + self.payloadFormat = payloadFormat + self.onFrameFinished = onFrameFinished + } + + func markFrame(_ frameID: Int, generateMS: Double) { + lock.lock() + let now = DispatchTime.now() + timings[frameID] = FrameTiming( + generateMS: generateMS, + captureNS: now.uptimeNanoseconds, + encodeStartNS: now.uptimeNanoseconds + ) + lock.unlock() + } + + func finishFrame(_ frameID: Int, status: OSStatus, sampleBuffer: CMSampleBuffer?) { + let callbackStart = DispatchTime.now() + lock.lock() + let timing = timings.removeValue(forKey: frameID) ?? FrameTiming( + generateMS: 0, + captureNS: callbackStart.uptimeNanoseconds, + encodeStartNS: callbackStart.uptimeNanoseconds + ) + lock.unlock() + + let elapsedNS = callbackStart.uptimeNanoseconds - timing.encodeStartNS + let payloadStart = DispatchTime.now() + var payload = Data() + if let sampleBuffer { + do { + payload = try encodedPayload(from: sampleBuffer, codec: codec, payloadFormat: payloadFormat) + } catch { + fputs("payload extraction failed for frame \(frameID): \(error)\n", stderr) + } + } + let payloadExtractMS = Double(DispatchTime.now().uptimeNanoseconds - payloadStart.uptimeNanoseconds) / 1_000_000.0 + let keyframe = sampleBuffer.map(sampleBufferIsKeyframe) ?? false + var enqueueMS = 0.0 + var queueDepth = 0 + var droppedBefore = sender?.droppedFrameCount ?? 0 + + if status == noErr, let sender, !payload.isEmpty { + let enqueueResult = sender.enqueue( + QueuedFrame( + frameID: UInt64(frameID), + width: UInt16(sender.width), + height: UInt16(sender.height), + fps: UInt16(sender.fps), + codec: sender.codecID, + keyframe: keyframe, + captureNS: timing.captureNS, + encodeStartNS: timing.encodeStartNS, + encodeDoneNS: callbackStart.uptimeNanoseconds, + payload: payload + ) + ) + enqueueMS = enqueueResult.enqueueMS + queueDepth = enqueueResult.queueDepth + droppedBefore = enqueueResult.droppedBefore + } + + let frame = EncodedFrame( + frameID: frameID, + generateMS: timing.generateMS, + encodeLatencyMS: Double(elapsedNS) / 1_000_000.0, + payloadExtractMS: payloadExtractMS, + enqueueMS: enqueueMS, + queueDepth: queueDepth, + droppedBefore: droppedBefore, + sendMS: 0, + bytesSent: 0, + frameAgeAtSendMS: 0, + sendFailed: false, + keyframe: keyframe, + senderDropped: false, + payloadBytes: payload.count, + status: status + ) + + lock.lock() + framesByID[frameID] = frame + lock.unlock() + onFrameFinished?(frame) + } + + func markSenderDropped(frameID: UInt64) { + lock.lock() + if var frame = framesByID[Int(frameID)] { + frame.senderDropped = true + framesByID[Int(frameID)] = frame + } + lock.unlock() + } + + func recordSend(frameID: UInt64, sendMS: Double, bytesSent: Int, frameAgeAtSendMS: Double, droppedBefore: UInt32, failed: Bool) { + lock.lock() + if var frame = framesByID[Int(frameID)] { + frame.sendMS = sendMS + frame.bytesSent = bytesSent + frame.frameAgeAtSendMS = frameAgeAtSendMS + frame.sendFailed = failed + framesByID[Int(frameID)] = frame + } + lock.unlock() + } + + func sortedFrames() -> [EncodedFrame] { + lock.lock() + let output = framesByID.values.sorted { $0.frameID < $1.frameID } + lock.unlock() + return output + } + + func inFlightFrameCount() -> Int { + lock.lock() + let count = timings.count + lock.unlock() + return count + } +} + +struct FrameTiming { + let generateMS: Double + let captureNS: UInt64 + let encodeStartNS: UInt64 +} + +enum ProtocolV0 { + static let magic = UInt32(littleEndian: 0x4752_4249) + static let version = UInt16(0) + static let headerLen = UInt16(80) + static let colorNV12 = UInt8(1) + static let flagKeyframe = UInt32(1 << 0) + static let flagEndOfFrame = UInt32(1 << 2) +} + +struct QueuedFrame { + let frameID: UInt64 + let width: UInt16 + let height: UInt16 + let fps: UInt16 + let codec: UInt8 + let keyframe: Bool + let captureNS: UInt64 + let encodeStartNS: UInt64 + let encodeDoneNS: UInt64 + let payload: Data +} + +struct EnqueueResult { + let enqueueMS: Double + let queueDepth: Int + let droppedBefore: UInt32 +} + +final class AsyncTcpFrameSender: @unchecked Sendable { + let width: Int + let height: Int + let fps: Int + let codecID: UInt8 + var droppedFrameCount: UInt32 { + condition.lock() + let count = droppedFrames + condition.unlock() + return count + } + + private let fd: Int32 + private let condition = NSCondition() + private let maxDepth: Int + private let sessionID: UInt64 + private var queue: [QueuedFrame] = [] + private var droppedFrames: UInt32 = 0 + private var stopping = false + private let workerQueue = DispatchQueue(label: "iBridgePrimary.AsyncTcpFrameSender") + private let workerGroup = DispatchGroup() + private let onSent: (UInt64, Double, Int, Double, UInt32, Bool) -> Void + private let onDropped: (UInt64) -> Void + private let inputInjector: InputEventInjector? + + init( + host: String, + port: Int, + width: Int, + height: Int, + fps: Int, + codec: String, + maxDepth: Int, + inputInjector: InputEventInjector?, + onSent: @escaping (UInt64, Double, Int, Double, UInt32, Bool) -> Void, + onDropped: @escaping (UInt64) -> Void + ) throws { + self.width = width + self.height = height + self.fps = fps + self.codecID = codec == "hevc" ? 2 : 1 + self.maxDepth = max(1, maxDepth) + self.sessionID = UInt64.random(in: 1...UInt64.max) + self.onSent = onSent + self.onDropped = onDropped + self.inputInjector = inputInjector + + fd = socket(AF_INET, SOCK_STREAM, 0) + guard fd >= 0 else { + throw RuntimeError("socket failed") + } + var noSigPipe: Int32 = 1 + setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &noSigPipe, socklen_t(MemoryLayout.size)) + + var hints = addrinfo( + ai_flags: 0, + ai_family: AF_UNSPEC, + ai_socktype: SOCK_STREAM, + ai_protocol: IPPROTO_TCP, + ai_addrlen: 0, + ai_canonname: nil, + ai_addr: nil, + ai_next: nil + ) + var results: UnsafeMutablePointer? + let gai = getaddrinfo(host, String(port), &hints, &results) + guard gai == 0, let results else { + close(fd) + throw RuntimeError("getaddrinfo failed for \(host):\(port)") + } + defer { freeaddrinfo(results) } + + var connected = false + var cursor: UnsafeMutablePointer? = results + while let info = cursor { + if connect(fd, info.pointee.ai_addr, info.pointee.ai_addrlen) == 0 { + connected = true + break + } + cursor = info.pointee.ai_next + } + guard connected else { + close(fd) + throw RuntimeError("connect failed for \(host):\(port)") + } + + let handshake = """ + {"magic":"IBRIDGE","version":0,"role":"primary","session_id":\(sessionID),"selected_codec":"\(codec)","width":\(width),"height":\(height),"fps":\(fps),"frame_transport":"tcp"}\n + """ + try sendAll(Data(handshake.utf8)) + + workerGroup.enter() + workerQueue.async { [weak self] in + self?.runWorker() + self?.workerGroup.leave() + } + + if inputInjector != nil { + DispatchQueue.global(qos: .userInteractive).async { [weak self] in + self?.runInputReader() + } + } + } + + deinit { + finishAndWait() + close(fd) + } + + func enqueue(_ frame: QueuedFrame) -> EnqueueResult { + let start = DispatchTime.now() + var droppedFrameID: UInt64? + condition.lock() + if queue.count >= maxDepth { + let dropIndex = queue.firstIndex { !$0.keyframe } ?? 0 + droppedFrameID = queue.remove(at: dropIndex).frameID + droppedFrames = droppedFrames == UInt32.max ? UInt32.max : droppedFrames + 1 + } + queue.append(frame) + let depth = queue.count + let droppedBefore = droppedFrames + condition.signal() + condition.unlock() + + if let droppedFrameID { + onDropped(droppedFrameID) + } + + let elapsed = DispatchTime.now().uptimeNanoseconds - start.uptimeNanoseconds + return EnqueueResult( + enqueueMS: Double(elapsed) / 1_000_000.0, + queueDepth: depth, + droppedBefore: droppedBefore + ) + } + + func finishAndWait() { + condition.lock() + stopping = true + condition.signal() + condition.unlock() + workerGroup.wait() + } + + private func runWorker() { + while true { + condition.lock() + while queue.isEmpty && !stopping { + condition.wait() + } + if queue.isEmpty && stopping { + condition.unlock() + return + } + let frame = queue.removeFirst() + let droppedBefore = droppedFrames + condition.unlock() + + let sendStart = DispatchTime.now() + let frameAgeMS = Double(sendStart.uptimeNanoseconds - frame.captureNS) / 1_000_000.0 + do { + let bytesSent = try sendPacket(frame: frame, droppedBefore: droppedBefore, sendNS: sendStart.uptimeNanoseconds) + let sendMS = Double(DispatchTime.now().uptimeNanoseconds - sendStart.uptimeNanoseconds) / 1_000_000.0 + onSent(frame.frameID, sendMS, bytesSent, frameAgeMS, droppedBefore, false) + } catch { + let sendMS = Double(DispatchTime.now().uptimeNanoseconds - sendStart.uptimeNanoseconds) / 1_000_000.0 + fputs("transport send failed for frame \(frame.frameID): \(error)\n", stderr) + onSent(frame.frameID, sendMS, 0, frameAgeMS, droppedBefore, true) + } + } + } + + private func sendPacket(frame: QueuedFrame, droppedBefore: UInt32, sendNS: UInt64) throws -> Int { + var packet = Data() + appendLE(&packet, ProtocolV0.magic) + appendLE(&packet, ProtocolV0.version) + appendLE(&packet, ProtocolV0.headerLen) + appendLE(&packet, sessionID) + appendLE(&packet, frame.frameID) + appendLE(&packet, UInt16(0)) + appendLE(&packet, UInt16(1)) + appendLE(&packet, frame.width) + appendLE(&packet, frame.height) + appendLE(&packet, frame.fps) + packet.append(frame.codec) + packet.append(ProtocolV0.colorNV12) + let keyframeFlag = frame.keyframe ? ProtocolV0.flagKeyframe : 0 + appendLE(&packet, keyframeFlag | ProtocolV0.flagEndOfFrame) + appendLE(&packet, frame.captureNS) + appendLE(&packet, frame.encodeStartNS) + appendLE(&packet, frame.encodeDoneNS) + appendLE(&packet, sendNS) + appendLE(&packet, UInt32(frame.payload.count)) + appendLE(&packet, droppedBefore) + precondition(packet.count == Int(ProtocolV0.headerLen)) + packet.append(frame.payload) + + try sendAll(packet) + return packet.count + } + + private func sendAll(_ data: Data) throws { + try data.withUnsafeBytes { rawBuffer in + guard let base = rawBuffer.baseAddress else { return } + var sent = 0 + while sent < rawBuffer.count { + let result = Darwin.send(fd, base.advanced(by: sent), rawBuffer.count - sent, 0) + if result <= 0 { + throw RuntimeError("send failed") + } + sent += result + } + } + } + + private func runInputReader() { + var data = Data() + var byte: UInt8 = 0 + while true { + let count = Darwin.recv(fd, &byte, 1, 0) + if count == 0 { + return + } + if count < 0 { + if errno == EINTR { continue } + return + } + if byte == UInt8(ascii: "\n") { + let line = String(decoding: data, as: UTF8.self) + data.removeAll(keepingCapacity: true) + inputInjector?.handleLine(line) + } else if data.count < 4096 { + data.append(byte) + } else { + data.removeAll(keepingCapacity: true) + } + } + } +} + +func appendLE(_ data: inout Data, _ value: T) { + var little = value.littleEndian + withUnsafeBytes(of: &little) { data.append(contentsOf: $0) } +} + +func encodedPayload(from sampleBuffer: CMSampleBuffer, codec: String, payloadFormat: String) throws -> Data { + guard let blockBuffer = CMSampleBufferGetDataBuffer(sampleBuffer) else { + throw RuntimeError("sample buffer has no data buffer") + } + let length = CMBlockBufferGetDataLength(blockBuffer) + var data = Data(count: length) + let status = data.withUnsafeMutableBytes { rawBuffer in + CMBlockBufferCopyDataBytes( + blockBuffer, + atOffset: 0, + dataLength: length, + destination: rawBuffer.baseAddress! + ) + } + guard status == noErr else { + throw RuntimeError("CMBlockBufferCopyDataBytes failed: \(status)") + } + guard payloadFormat == "annex-b" else { + return data + } + + var annexB = Data() + if sampleBufferIsKeyframe(sampleBuffer), + let formatDescription = CMSampleBufferGetFormatDescription(sampleBuffer) { + appendParameterSets(formatDescription, codec: codec, to: &annexB) + } + try appendLengthPrefixedNALUnitsAsAnnexB(data, to: &annexB) + return annexB +} + +func appendStartCode(to data: inout Data) { + data.append(contentsOf: [0x00, 0x00, 0x00, 0x01]) +} + +func appendParameterSets(_ formatDescription: CMFormatDescription, codec: String, to output: inout Data) { + if codec == "h264" { + var parameterSetCount = 0 + var nalUnitHeaderLength: Int32 = 0 + var pointer: UnsafePointer? + var size = 0 + let countStatus = CMVideoFormatDescriptionGetH264ParameterSetAtIndex( + formatDescription, + parameterSetIndex: 0, + parameterSetPointerOut: &pointer, + parameterSetSizeOut: &size, + parameterSetCountOut: ¶meterSetCount, + nalUnitHeaderLengthOut: &nalUnitHeaderLength + ) + guard countStatus == noErr else { return } + for index in 0.. 0 { + appendStartCode(to: &output) + output.append(pointer, count: size) + } + } + } else { + var parameterSetCount = 0 + var nalUnitHeaderLength: Int32 = 0 + var pointer: UnsafePointer? + var size = 0 + let countStatus = CMVideoFormatDescriptionGetHEVCParameterSetAtIndex( + formatDescription, + parameterSetIndex: 0, + parameterSetPointerOut: &pointer, + parameterSetSizeOut: &size, + parameterSetCountOut: ¶meterSetCount, + nalUnitHeaderLengthOut: &nalUnitHeaderLength + ) + guard countStatus == noErr else { return } + for index in 0.. 0 { + appendStartCode(to: &output) + output.append(pointer, count: size) + } + } + } +} + +func appendLengthPrefixedNALUnitsAsAnnexB(_ payload: Data, to output: inout Data) throws { + var offset = 0 + while offset < payload.count { + guard offset + 4 <= payload.count else { + throw RuntimeError("incomplete NAL length prefix at offset \(offset)") + } + let naluLength = + (UInt32(payload[offset]) << 24) + | (UInt32(payload[offset + 1]) << 16) + | (UInt32(payload[offset + 2]) << 8) + | UInt32(payload[offset + 3]) + offset += 4 + guard naluLength > 0, offset + Int(naluLength) <= payload.count else { + throw RuntimeError("invalid NAL length \(naluLength) at offset \(offset)") + } + appendStartCode(to: &output) + output.append(payload.subdata(in: offset..<(offset + Int(naluLength)))) + offset += Int(naluLength) + } +} + +func sampleBufferIsKeyframe(_ sampleBuffer: CMSampleBuffer) -> Bool { + guard let attachments = CMSampleBufferGetSampleAttachmentsArray( + sampleBuffer, + createIfNecessary: false + ) as? [[CFString: Any]], + let first = attachments.first, + let notSync = first[kCMSampleAttachmentKey_NotSync] as? Bool else { + return true + } + return !notSync +} + +func compressionOutputCallback( + _ outputCallbackRefCon: UnsafeMutableRawPointer?, + _ sourceFrameRefCon: UnsafeMutableRawPointer?, + _ status: OSStatus, + _: VTEncodeInfoFlags, + _ sampleBuffer: CMSampleBuffer? +) { + + guard let outputCallbackRefCon else { return } + let state = Unmanaged + .fromOpaque(outputCallbackRefCon) + .takeUnretainedValue() + let frameID = Int(bitPattern: sourceFrameRefCon) - 1 + state.finishFrame(frameID, status: status, sampleBuffer: sampleBuffer) +} + +func usage() { + print(""" + ibridge-primary --synthetic --source synthetic-bgra --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] + ibridge-primary --screen-capture --source screen-capture --resolution 3840x2160 --fps 60 --duration 5 --codec hevc --csv diagnostics.csv + ibridge-primary --list-encoders + ibridge-primary --list-displays + + Sources: + --source synthetic-bgra + --source synthetic-nv12 + --source synthetic-static-skip --static-change-every 60 + --source synthetic-nv12-tiled --tile-columns 2 --tile-rows 2 [--tile-reuse-buffers] [--tile-max-inflight-logical-frames 1] [--tile-reset-every-frames 150] + --source screen-capture --capture-display-index 0 --capture-queue-depth 8 [--capture-max-in-flight-frames 1] [--hide-captured-cursor] + --warmup-frames 20 + + Reference-informed VideoToolbox options: + --disable-low-latency-rate-control + --allow-temporal-compression | --disable-temporal-compression + --allow-frame-reordering | --disable-frame-reordering + --allow-open-gop | --disable-open-gop + --prioritize-speed | --no-prioritize-speed + --more-frames-before-start | --no-more-frames-before-start + --more-frames-after-end | --no-more-frames-after-end + --source-frame-count 180 + --max-frame-delay-count 0 | --no-max-frame-delay-count + --data-rate-limit-mbps 120 [--data-rate-window 1.0] + --payload-format length-prefixed|annex-b + --tile-segment-hints + --tile-reset-stagger-frames 30 + --enable-input | --disable-input + """) +} + +func parseResolution(_ text: String) throws -> (Int, Int) { + let parts = text.lowercased().split(separator: "x") + guard parts.count == 2, let width = Int(parts[0]), let height = Int(parts[1]), + width > 0, height > 0 else { + throw RuntimeError("resolution must look like 2560x1440") + } + return (width, height) +} + +struct RuntimeError: Error, CustomStringConvertible { + let description: String + init(_ description: String) { + self.description = description + } +} + +func parseOptions(_ args: [String]) throws -> Options { + var options = Options() + var index = 1 + while index < args.count { + let arg = args[index] + func value() throws -> String { + guard index + 1 < args.count else { + throw RuntimeError("\(arg) requires a value") + } + index += 1 + return args[index] + } + + if arg == "--help" || arg == "-h" { + usage() + exit(0) + } else if arg == "--synthetic" { + options.synthetic = true + if options.source == "screen-capture" { + options.source = "synthetic-bgra" + } + } else if arg == "--screen-capture" { + options.screenCapture = true + options.source = "screen-capture" + } else if arg == "--source" { + options.source = try value().lowercased() + } else if arg.hasPrefix("--source=") { + options.source = String(arg.dropFirst("--source=".count)).lowercased() + } else if arg == "--resolution" { + let parsed = try parseResolution(try value()) + options.width = parsed.0 + options.height = parsed.1 + } else if arg.hasPrefix("--resolution=") { + let parsed = try parseResolution(String(arg.dropFirst("--resolution=".count))) + options.width = parsed.0 + options.height = parsed.1 + } else if arg == "--fps" { + options.fps = try Int(value()) ?? options.fps + } else if arg.hasPrefix("--fps=") { + options.fps = Int(arg.dropFirst("--fps=".count)) ?? options.fps + } else if arg == "--duration" { + options.durationSeconds = try Int(value()) ?? options.durationSeconds + } else if arg.hasPrefix("--duration=") { + options.durationSeconds = Int(arg.dropFirst("--duration=".count)) ?? options.durationSeconds + } else if arg == "--codec" { + options.codec = try value().lowercased() + } else if arg.hasPrefix("--codec=") { + options.codec = String(arg.dropFirst("--codec=".count)).lowercased() + } else if arg == "--csv" { + options.csvPath = try value() + } else if arg.hasPrefix("--csv=") { + options.csvPath = String(arg.dropFirst("--csv=".count)) + } else if arg == "--send-host" { + options.sendHost = try value() + } else if arg.hasPrefix("--send-host=") { + options.sendHost = String(arg.dropFirst("--send-host=".count)) + } else if arg == "--send-port" { + options.sendPort = try Int(value()) ?? options.sendPort + } else if arg.hasPrefix("--send-port=") { + options.sendPort = Int(arg.dropFirst("--send-port=".count)) ?? options.sendPort + } else if arg == "--bitrate-mbps" { + options.bitrateMbps = try Int(value()) ?? options.bitrateMbps + } else if arg.hasPrefix("--bitrate-mbps=") { + options.bitrateMbps = Int(arg.dropFirst("--bitrate-mbps=".count)) ?? options.bitrateMbps + } else if arg == "--data-rate-limit-mbps" { + options.dataRateLimitMbps = try Int(value()) ?? options.dataRateLimitMbps + } else if arg.hasPrefix("--data-rate-limit-mbps=") { + options.dataRateLimitMbps = Int(arg.dropFirst("--data-rate-limit-mbps=".count)) ?? options.dataRateLimitMbps + } else if arg == "--data-rate-window" { + options.dataRateWindowSeconds = try Double(value()) ?? options.dataRateWindowSeconds + } else if arg.hasPrefix("--data-rate-window=") { + options.dataRateWindowSeconds = Double(arg.dropFirst("--data-rate-window=".count)) ?? options.dataRateWindowSeconds + } else if arg == "--sender-queue-depth" { + options.senderQueueDepth = try Int(value()) ?? options.senderQueueDepth + } else if arg.hasPrefix("--sender-queue-depth=") { + options.senderQueueDepth = Int(arg.dropFirst("--sender-queue-depth=".count)) ?? options.senderQueueDepth + } else if arg == "--enable-input" { + options.enableInput = true + } else if arg == "--disable-input" { + options.enableInput = false + } else if arg == "--max-keyframe-interval" { + options.maxKeyFrameInterval = try Int(value()) ?? options.maxKeyFrameInterval + } else if arg.hasPrefix("--max-keyframe-interval=") { + options.maxKeyFrameInterval = Int(arg.dropFirst("--max-keyframe-interval=".count)) ?? options.maxKeyFrameInterval + } else if arg == "--max-keyframe-interval-duration" { + options.maxKeyFrameIntervalDuration = try Double(value()) ?? options.maxKeyFrameIntervalDuration + } else if arg.hasPrefix("--max-keyframe-interval-duration=") { + options.maxKeyFrameIntervalDuration = Double(arg.dropFirst("--max-keyframe-interval-duration=".count)) ?? options.maxKeyFrameIntervalDuration + } else if arg == "--max-frame-delay-count" { + options.maxFrameDelayCount = try Int(value()) + } else if arg.hasPrefix("--max-frame-delay-count=") { + options.maxFrameDelayCount = Int(arg.dropFirst("--max-frame-delay-count=".count)) + } else if arg == "--no-max-frame-delay-count" { + options.maxFrameDelayCount = nil + } else if arg == "--allow-temporal-compression" { + options.allowTemporalCompression = true + } else if arg == "--disable-temporal-compression" { + options.allowTemporalCompression = false + } else if arg == "--allow-frame-reordering" { + options.allowFrameReordering = true + } else if arg == "--disable-frame-reordering" { + options.allowFrameReordering = false + } else if arg == "--allow-open-gop" { + options.allowOpenGOP = true + } else if arg == "--disable-open-gop" { + options.allowOpenGOP = false + } else if arg == "--prioritize-speed" { + options.prioritizeSpeed = true + } else if arg == "--no-prioritize-speed" { + options.prioritizeSpeed = false + } else if arg == "--more-frames-before-start" { + options.moreFramesBeforeStart = true + } else if arg == "--no-more-frames-before-start" { + options.moreFramesBeforeStart = false + } else if arg == "--more-frames-after-end" { + options.moreFramesAfterEnd = true + } else if arg == "--no-more-frames-after-end" { + options.moreFramesAfterEnd = false + } else if arg == "--source-frame-count" { + options.sourceFrameCount = try Int(value()) + } else if arg.hasPrefix("--source-frame-count=") { + options.sourceFrameCount = Int(arg.dropFirst("--source-frame-count=".count)) + } else if arg == "--payload-format" { + options.payloadFormat = try value().lowercased() + } else if arg.hasPrefix("--payload-format=") { + options.payloadFormat = String(arg.dropFirst("--payload-format=".count)).lowercased() + } else if arg == "--annex-b" { + options.payloadFormat = "annex-b" + } else if arg == "--static-change-every" { + options.staticChangeEvery = try Int(value()) ?? options.staticChangeEvery + } else if arg.hasPrefix("--static-change-every=") { + options.staticChangeEvery = Int(arg.dropFirst("--static-change-every=".count)) ?? options.staticChangeEvery + } else if arg == "--capture-display-index" { + options.captureDisplayIndex = try Int(value()) ?? options.captureDisplayIndex + } else if arg.hasPrefix("--capture-display-index=") { + options.captureDisplayIndex = Int(arg.dropFirst("--capture-display-index=".count)) ?? options.captureDisplayIndex + } else if arg == "--capture-queue-depth" { + options.captureQueueDepth = try Int(value()) ?? options.captureQueueDepth + } else if arg.hasPrefix("--capture-queue-depth=") { + options.captureQueueDepth = Int(arg.dropFirst("--capture-queue-depth=".count)) ?? options.captureQueueDepth + } else if arg == "--capture-max-in-flight-frames" { + options.captureMaxInFlightFrames = try Int(value()) ?? options.captureMaxInFlightFrames + } else if arg.hasPrefix("--capture-max-in-flight-frames=") { + options.captureMaxInFlightFrames = Int(arg.dropFirst("--capture-max-in-flight-frames=".count)) ?? options.captureMaxInFlightFrames + } else if arg == "--show-captured-cursor" { + options.showCapturedCursor = true + } else if arg == "--hide-captured-cursor" { + options.showCapturedCursor = false + } else if arg == "--tile-columns" { + options.tileColumns = try Int(value()) ?? options.tileColumns + } else if arg.hasPrefix("--tile-columns=") { + options.tileColumns = Int(arg.dropFirst("--tile-columns=".count)) ?? options.tileColumns + } else if arg == "--tile-rows" { + options.tileRows = try Int(value()) ?? options.tileRows + } else if arg.hasPrefix("--tile-rows=") { + options.tileRows = Int(arg.dropFirst("--tile-rows=".count)) ?? options.tileRows + } else if arg == "--tile-reuse-buffers" { + options.tileReuseBuffers = true + } else if arg == "--tile-max-inflight-logical-frames" { + options.tileMaxInFlightLogicalFrames = try Int(value()) ?? options.tileMaxInFlightLogicalFrames + } else if arg.hasPrefix("--tile-max-inflight-logical-frames=") { + options.tileMaxInFlightLogicalFrames = Int(arg.dropFirst("--tile-max-inflight-logical-frames=".count)) ?? options.tileMaxInFlightLogicalFrames + } else if arg == "--tile-reset-every-frames" { + options.tileResetEveryFrames = try Int(value()) ?? options.tileResetEveryFrames + } else if arg.hasPrefix("--tile-reset-every-frames=") { + options.tileResetEveryFrames = Int(arg.dropFirst("--tile-reset-every-frames=".count)) ?? options.tileResetEveryFrames + } else if arg == "--tile-reset-stagger-frames" { + options.tileResetStaggerFrames = try Int(value()) ?? options.tileResetStaggerFrames + } else if arg.hasPrefix("--tile-reset-stagger-frames=") { + options.tileResetStaggerFrames = Int(arg.dropFirst("--tile-reset-stagger-frames=".count)) ?? options.tileResetStaggerFrames + } else if arg == "--tile-segment-hints" { + options.tileSegmentHints = true + } else if arg == "--warmup-frames" { + options.warmupFrames = try Int(value()) ?? options.warmupFrames + } else if arg.hasPrefix("--warmup-frames=") { + options.warmupFrames = Int(arg.dropFirst("--warmup-frames=".count)) ?? options.warmupFrames + } else if arg == "--disable-low-latency-rate-control" { + options.lowLatencyRateControl = false + } else if arg == "--encoder-id" { + options.encoderID = try value() + } else if arg.hasPrefix("--encoder-id=") { + options.encoderID = String(arg.dropFirst("--encoder-id=".count)) + } else if arg == "--list-encoders" { + options.listEncoders = true + } else if arg == "--list-displays" { + options.listDisplays = true + } else if arg == "--print-supported-properties" { + options.printSupportedProperties = true + } else if arg == "--no-realtime" { + options.realtime = false + } else { + throw RuntimeError("unknown argument: \(arg)") + } + index += 1 + } + + if options.listEncoders || options.listDisplays { + return options + } + let validSources = ["synthetic-bgra", "synthetic-nv12", "synthetic-static-skip", "synthetic-nv12-tiled", "screen-capture"] + guard validSources.contains(options.source) else { + throw RuntimeError("--source must be one of \(validSources.joined(separator: ", "))") + } + if options.source == "screen-capture" { + options.screenCapture = true + options.synthetic = false + } else { + options.synthetic = true + options.screenCapture = false + } + guard options.synthetic || options.screenCapture else { + throw RuntimeError("choose --synthetic or --screen-capture") + } + guard options.fps > 0, options.durationSeconds > 0 else { + throw RuntimeError("--fps and --duration must be positive") + } + guard options.codec == "h264" || options.codec == "hevc" else { + throw RuntimeError("--codec must be h264 or hevc") + } + guard options.senderQueueDepth > 0 else { + throw RuntimeError("--sender-queue-depth must be positive") + } + guard options.dataRateLimitMbps >= 0, options.dataRateWindowSeconds > 0 else { + throw RuntimeError("--data-rate-limit-mbps must be non-negative and --data-rate-window must be positive") + } + guard options.maxFrameDelayCount == nil || options.maxFrameDelayCount! >= 0 else { + throw RuntimeError("--max-frame-delay-count must be non-negative") + } + guard options.sourceFrameCount == nil || options.sourceFrameCount! > 0 else { + throw RuntimeError("--source-frame-count must be positive") + } + guard options.payloadFormat == "length-prefixed" || options.payloadFormat == "annex-b" else { + throw RuntimeError("--payload-format must be length-prefixed or annex-b") + } + guard options.staticChangeEvery > 0 else { + throw RuntimeError("--static-change-every must be positive") + } + guard options.captureDisplayIndex >= 0, options.captureQueueDepth > 0 else { + throw RuntimeError("--capture-display-index must be non-negative and --capture-queue-depth must be positive") + } + guard options.captureMaxInFlightFrames >= 0 else { + throw RuntimeError("--capture-max-in-flight-frames must be non-negative") + } + guard options.warmupFrames >= 0 else { + throw RuntimeError("--warmup-frames must be non-negative") + } + guard options.tileColumns > 0, options.tileRows > 0 else { + throw RuntimeError("--tile-columns and --tile-rows must be positive") + } + guard options.tileMaxInFlightLogicalFrames >= 0 else { + throw RuntimeError("--tile-max-inflight-logical-frames must be non-negative") + } + guard options.tileResetEveryFrames >= 0 else { + throw RuntimeError("--tile-reset-every-frames must be non-negative") + } + guard options.tileResetStaggerFrames >= 0 else { + throw RuntimeError("--tile-reset-stagger-frames must be non-negative") + } + if options.source == "synthetic-nv12-tiled" { + guard options.width % options.tileColumns == 0, options.height % options.tileRows == 0 else { + throw RuntimeError("resolution must divide evenly by --tile-columns and --tile-rows") + } + if options.tileResetStaggerFrames > 0 { + guard options.tileResetEveryFrames > 0 else { + throw RuntimeError("--tile-reset-stagger-frames requires --tile-reset-every-frames") + } + guard options.tileResetStaggerFrames < options.tileResetEveryFrames else { + throw RuntimeError("--tile-reset-stagger-frames must be smaller than --tile-reset-every-frames") + } + } + guard options.sendHost.isEmpty else { + throw RuntimeError("synthetic-nv12-tiled is an encode benchmark only; live tiled transport is not implemented yet") + } + } + return options +} + +func makeBGRAPixelBuffer(width: Int, height: Int, frameID: Int) throws -> (CVPixelBuffer, Double) { + let start = DispatchTime.now() + var pixelBuffer: CVPixelBuffer? + let attrs: [CFString: Any] = [ + kCVPixelBufferPixelFormatTypeKey: kCVPixelFormatType_32BGRA, + kCVPixelBufferWidthKey: width, + kCVPixelBufferHeightKey: height, + kCVPixelBufferIOSurfacePropertiesKey: [:] as CFDictionary + ] + let status = CVPixelBufferCreate( + kCFAllocatorDefault, + width, + height, + kCVPixelFormatType_32BGRA, + attrs as CFDictionary, + &pixelBuffer + ) + guard status == kCVReturnSuccess, let pixelBuffer else { + throw RuntimeError("CVPixelBufferCreate failed: \(status)") + } + + CVPixelBufferLockBaseAddress(pixelBuffer, []) + defer { CVPixelBufferUnlockBaseAddress(pixelBuffer, []) } + + guard let baseAddress = CVPixelBufferGetBaseAddress(pixelBuffer) else { + throw RuntimeError("pixel buffer has no base address") + } + + let bytesPerRow = CVPixelBufferGetBytesPerRow(pixelBuffer) + let frame = UInt32(frameID & 0xff) + for y in 0..> 5) + (y >> 5) + Int(frame)) & 0xff) + row[x] = 0xff00_0000 | (r << 16) | (gy << 8) | bx + } + } + + let elapsed = DispatchTime.now().uptimeNanoseconds - start.uptimeNanoseconds + return (pixelBuffer, Double(elapsed) / 1_000_000.0) +} + +func makeNV12PixelBuffer(width: Int, height: Int, frameID: Int) throws -> (CVPixelBuffer, Double) { + let start = DispatchTime.now() + var pixelBuffer: CVPixelBuffer? + let attrs: [CFString: Any] = [ + kCVPixelBufferPixelFormatTypeKey: kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange, + kCVPixelBufferWidthKey: width, + kCVPixelBufferHeightKey: height, + kCVPixelBufferIOSurfacePropertiesKey: [:] as CFDictionary + ] + let status = CVPixelBufferCreate( + kCFAllocatorDefault, + width, + height, + kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange, + attrs as CFDictionary, + &pixelBuffer + ) + guard status == kCVReturnSuccess, let pixelBuffer else { + throw RuntimeError("CVPixelBufferCreate NV12 failed: \(status)") + } + + CVPixelBufferLockBaseAddress(pixelBuffer, []) + defer { CVPixelBufferUnlockBaseAddress(pixelBuffer, []) } + + guard CVPixelBufferGetPlaneCount(pixelBuffer) >= 2, + let yBase = CVPixelBufferGetBaseAddressOfPlane(pixelBuffer, 0), + let uvBase = CVPixelBufferGetBaseAddressOfPlane(pixelBuffer, 1) else { + throw RuntimeError("NV12 pixel buffer has no planes") + } + + let yStride = CVPixelBufferGetBytesPerRowOfPlane(pixelBuffer, 0) + let uvStride = CVPixelBufferGetBytesPerRowOfPlane(pixelBuffer, 1) + let frame = frameID & 0xff + for y in 0.. CMVideoCodecType { + codec == "hevc" ? kCMVideoCodecType_HEVC : kCMVideoCodecType_H264 +} + +func encoderSpecification(options: Options) -> CFDictionary? { + guard options.lowLatencyRateControl || !options.encoderID.isEmpty else { return nil } + var spec: [String: Any] = [:] + if options.lowLatencyRateControl { + spec[kVTVideoEncoderSpecification_EnableLowLatencyRateControl as String] = true + } + if !options.encoderID.isEmpty { + spec[kVTVideoEncoderSpecification_EncoderID as String] = options.encoderID + } + return spec as CFDictionary +} + +func configure(_ session: VTCompressionSession, options: Options) throws { + let bitrate = options.bitrateMbps > 0 + ? options.bitrateMbps * 1_000_000 + : options.width * options.height * options.fps * 2 + + func setProperty(_ key: CFString, _ value: Any, required: Bool = true) throws { + let status = VTSessionSetProperty(session, key: key, value: value as CFTypeRef) + if status != noErr && required { + throw RuntimeError("VTSessionSetProperty \(key) failed: \(status)") + } else if status != noErr { + fputs("warning: VTSessionSetProperty \(key) failed: \(status)\n", stderr) + } + } + + let keyAllowOpenGOP = "AllowOpenGOP" as CFString + let keyMaxFrameDelayCount = "MaxFrameDelayCount" as CFString + let keyPrioritizeSpeed = "PrioritizeEncodingSpeedOverQuality" as CFString + + try setProperty(kVTCompressionPropertyKey_RealTime, (options.realtime ? kCFBooleanTrue : kCFBooleanFalse) as Any) + try setProperty(kVTCompressionPropertyKey_AllowFrameReordering, (options.allowFrameReordering ? kCFBooleanTrue : kCFBooleanFalse) as Any) + try setProperty(kVTCompressionPropertyKey_AllowTemporalCompression, (options.allowTemporalCompression ? kCFBooleanTrue : kCFBooleanFalse) as Any, required: false) + try setProperty(keyAllowOpenGOP, (options.allowOpenGOP ? kCFBooleanTrue : kCFBooleanFalse) as Any, required: false) + if let maxFrameDelayCount = options.maxFrameDelayCount { + try setProperty(keyMaxFrameDelayCount, maxFrameDelayCount, required: false) + } + if let prioritizeSpeed = options.prioritizeSpeed { + try setProperty(keyPrioritizeSpeed, (prioritizeSpeed ? kCFBooleanTrue : kCFBooleanFalse) as Any, required: false) + } + if let moreFramesBeforeStart = options.moreFramesBeforeStart { + try setProperty( + kVTCompressionPropertyKey_MoreFramesBeforeStart, + (moreFramesBeforeStart ? kCFBooleanTrue : kCFBooleanFalse) as Any, + required: false + ) + } + if let moreFramesAfterEnd = options.moreFramesAfterEnd { + try setProperty( + kVTCompressionPropertyKey_MoreFramesAfterEnd, + (moreFramesAfterEnd ? kCFBooleanTrue : kCFBooleanFalse) as Any, + required: false + ) + } + if let sourceFrameCount = options.sourceFrameCount { + try setProperty(kVTCompressionPropertyKey_SourceFrameCount, sourceFrameCount, required: false) + } + try setProperty(kVTCompressionPropertyKey_ExpectedFrameRate, options.fps) + try setProperty(kVTCompressionPropertyKey_MaxKeyFrameInterval, options.maxKeyFrameInterval) + try setProperty(kVTCompressionPropertyKey_MaxKeyFrameIntervalDuration, options.maxKeyFrameIntervalDuration) + try setProperty(kVTCompressionPropertyKey_AverageBitRate, bitrate) + if options.dataRateLimitMbps > 0 { + let bytesPerSecond = Int64(options.dataRateLimitMbps * 1_000_000 / 8) + let limits = [NSNumber(value: bytesPerSecond), NSNumber(value: options.dataRateWindowSeconds)] as CFArray + try setProperty(kVTCompressionPropertyKey_DataRateLimits, limits, required: false) + } + + let prepareStatus = VTCompressionSessionPrepareToEncodeFrames(session) + guard prepareStatus == noErr else { + throw RuntimeError("VTCompressionSessionPrepareToEncodeFrames failed: \(prepareStatus)") + } +} + +func printSupportedProperties(for session: VTCompressionSession) { + var dictionary: CFDictionary? + let status = VTSessionCopySupportedPropertyDictionary( + session, + supportedPropertyDictionaryOut: &dictionary + ) + guard status == noErr else { + fputs("warning: VTSessionCopySupportedPropertyDictionary failed: \(status)\n", stderr) + return + } + print("supported_properties=\(String(describing: dictionary))") +} + +func printVideoEncoderList() throws { + var encoderList: CFArray? + let status = VTCopyVideoEncoderList(nil, &encoderList) + guard status == noErr else { + throw RuntimeError("VTCopyVideoEncoderList failed: \(status)") + } + print("video_encoder_list=\(String(describing: encoderList))") +} + +@available(macOS 14.0, *) +func printCaptureDisplayList() throws { + let semaphore = DispatchSemaphore(value: 0) + nonisolated(unsafe) var output: Result<[String], Error>? + + Task { + do { + let content = try await SCShareableContent.excludingDesktopWindows( + false, + onScreenWindowsOnly: true + ) + let lines = content.displays.enumerated().map { index, display in + let name = displayName(for: display.displayID) + return "display_index=\(index) display_id=\(display.displayID) name=\"\(name)\" width=\(display.width) height=\(display.height) frame=\(display.frame)" + } + output = .success(lines) + } catch { + output = .failure(error) + } + semaphore.signal() + } + + semaphore.wait() + switch output { + case .success(let lines): + print("capture_display_count=\(lines.count)") + for line in lines { + print(line) + } + case .failure(let error): + throw error + case .none: + throw RuntimeError("display listing did not return a result") + } +} + +func displayName(for displayID: CGDirectDisplayID) -> String { + for screen in NSScreen.screens { + guard let screenNumber = screen.deviceDescription[NSDeviceDescriptionKey("NSScreenNumber")] as? NSNumber else { + continue + } + if screenNumber.uint32Value == displayID { + return screen.localizedName + } + } + return "display-\(displayID)" +} + +func writeCSV(path: String, frames: [EncodedFrame]) throws { + guard !path.isEmpty else { return } + var output = "frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status\n" + for frame in frames { + output += "\(frame.frameID)," + output += String(format: "%.4f,%.4f,%.4f,%.4f,", frame.generateMS, frame.encodeLatencyMS, frame.payloadExtractMS, frame.enqueueMS) + output += "\(frame.queueDepth),\(frame.droppedBefore)," + output += String(format: "%.4f,%d,%.4f,", frame.sendMS, frame.bytesSent, frame.frameAgeAtSendMS) + output += "\(frame.sendFailed ? 1 : 0),\(frame.keyframe ? 1 : 0),\(frame.senderDropped ? 1 : 0)," + output += "\(frame.payloadBytes),\(frame.status)\n" + } + try FileManager.default.createDirectory( + atPath: URL(fileURLWithPath: path).deletingLastPathComponent().path, + withIntermediateDirectories: true + ) + try output.write(toFile: path, atomically: true, encoding: .utf8) +} + +func percentile(_ values: [Double], _ p: Double) -> Double { + guard !values.isEmpty else { return 0 } + let sorted = values.sorted() + let rawIndex = (p / 100.0) * Double(sorted.count - 1) + let lower = Int(rawIndex) + let upper = min(lower + 1, sorted.count - 1) + let fraction = rawIndex - Double(lower) + return sorted[lower] * (1 - fraction) + sorted[upper] * fraction +} + +func makeState(options: Options, onFrameFinished: ((EncodedFrame) -> Void)? = nil) throws -> EncoderState { + let state = EncoderState( + codec: options.codec, + payloadFormat: options.payloadFormat, + onFrameFinished: onFrameFinished + ) + if options.enableInput { + state.inputInjector = InputEventInjector() + } + if !options.sendHost.isEmpty { + state.sender = try AsyncTcpFrameSender( + host: options.sendHost, + port: options.sendPort, + width: options.width, + height: options.height, + fps: options.fps, + codec: options.codec, + maxDepth: options.senderQueueDepth, + inputInjector: state.inputInjector, + onSent: { [weak state] frameID, sendMS, bytesSent, frameAgeAtSendMS, droppedBefore, failed in + state?.recordSend( + frameID: frameID, + sendMS: sendMS, + bytesSent: bytesSent, + frameAgeAtSendMS: frameAgeAtSendMS, + droppedBefore: droppedBefore, + failed: failed + ) + }, + onDropped: { [weak state] frameID in + state?.markSenderDropped(frameID: frameID) + } + ) + } + return state +} + +func makeCompressionSession(options: Options, state: EncoderState) throws -> VTCompressionSession { + var session: VTCompressionSession? + let createStatus = VTCompressionSessionCreate( + allocator: kCFAllocatorDefault, + width: Int32(options.width), + height: Int32(options.height), + codecType: codecType(options.codec), + encoderSpecification: encoderSpecification(options: options), + imageBufferAttributes: nil, + compressedDataAllocator: nil, + outputCallback: compressionOutputCallback, + refcon: Unmanaged.passUnretained(state).toOpaque(), + compressionSessionOut: &session + ) + guard createStatus == noErr, let session else { + throw RuntimeError("VTCompressionSessionCreate failed: \(createStatus)") + } + + try configure(session, options: options) + if options.printSupportedProperties { + printSupportedProperties(for: session) + } + return session +} + +func encodePixelBuffer( + _ pixelBuffer: CVPixelBuffer, + frameID: Int, + presentationFrameID: Int? = nil, + generateMS: Double, + frameDuration: CMTime, + session: VTCompressionSession, + state: EncoderState +) { + state.markFrame(frameID, generateMS: generateMS) + let presentationTime = CMTimeMultiply(frameDuration, multiplier: Int32(presentationFrameID ?? frameID)) + let status = VTCompressionSessionEncodeFrame( + session, + imageBuffer: pixelBuffer, + presentationTimeStamp: presentationTime, + duration: frameDuration, + frameProperties: nil, + sourceFrameRefcon: UnsafeMutableRawPointer(bitPattern: frameID + 1), + infoFlagsOut: nil + ) + guard status == noErr else { + state.finishFrame(frameID, status: status, sampleBuffer: nil) + return + } +} + +func printRunSummary(options: Options, state: EncoderState, frameCount: Int, submittedFrames: Int, skippedFrames: Int, label: String) throws { + state.sender?.finishAndWait() + + let frames = state.sortedFrames() + try writeCSV(path: options.csvPath, frames: frames) + + let latencies = frames.map(\.encodeLatencyMS) + let generateTimes = frames.map(\.generateMS) + let sendTimes = frames.map(\.sendMS).filter { $0 > 0 } + let totalBytes = frames.reduce(0) { $0 + $1.payloadBytes } + let totalBytesSent = frames.reduce(0) { $0 + $1.bytesSent } + let failed = frames.filter { $0.status != noErr }.count + let senderDropped = frames.filter(\.senderDropped).count + let sendFailed = frames.filter(\.sendFailed).count + + print("iBridge Primary encoder") + print("run_label=\(label)") + print("source=\(options.source)") + print("resolution=\(options.width)x\(options.height)") + print("target_fps=\(options.fps)") + print("duration_seconds=\(options.durationSeconds)") + print("codec=\(options.codec)") + print("encoder_id=\(options.encoderID.isEmpty ? "auto" : options.encoderID)") + print("bitrate_mbps=\(options.bitrateMbps > 0 ? options.bitrateMbps : 0)") + print("data_rate_limit_mbps=\(options.dataRateLimitMbps)") + print(String(format: "data_rate_window_seconds=%.3f", options.dataRateWindowSeconds)) + print("low_latency_rate_control=\(options.lowLatencyRateControl ? "on" : "off")") + print("realtime=\(options.realtime ? "on" : "off")") + print("allow_temporal_compression=\(options.allowTemporalCompression ? "on" : "off")") + print("allow_frame_reordering=\(options.allowFrameReordering ? "on" : "off")") + print("allow_open_gop=\(options.allowOpenGOP ? "on" : "off")") + print("prioritize_speed=\(options.prioritizeSpeed.map { $0 ? "on" : "off" } ?? "unset")") + print("more_frames_before_start=\(options.moreFramesBeforeStart.map { $0 ? "on" : "off" } ?? "unset")") + print("more_frames_after_end=\(options.moreFramesAfterEnd.map { $0 ? "on" : "off" } ?? "unset")") + print("source_frame_count=\(options.sourceFrameCount.map(String.init) ?? "unset")") + print("max_frame_delay_count=\(options.maxFrameDelayCount.map(String.init) ?? "unset")") + print("payload_format=\(options.payloadFormat)") + print("input_relay=\(options.enableInput ? "on" : "off")") + print("static_change_every=\(options.staticChangeEvery)") + print("max_keyframe_interval=\(options.maxKeyFrameInterval)") + print(String(format: "max_keyframe_interval_duration=%.3f", options.maxKeyFrameIntervalDuration)) + print("sender_queue_depth=\(options.senderQueueDepth)") + print("capture_queue_depth=\(options.captureQueueDepth)") + print("capture_max_in_flight_frames=\(options.captureMaxInFlightFrames)") + print("show_captured_cursor=\(options.showCapturedCursor ? "on" : "off")") + print("frames_requested=\(frameCount)") + print("frames_submitted=\(submittedFrames)") + print("frames_skipped=\(skippedFrames)") + print("frames_encoded=\(frames.count)") + print("failed_frames=\(failed)") + print("sender_dropped_frames=\(senderDropped)") + print("send_failed_frames=\(sendFailed)") + print(String(format: "avg_generate_ms=%.3f", generateTimes.reduce(0, +) / Double(max(generateTimes.count, 1)))) + print(String(format: "avg_encode_latency_ms=%.3f", latencies.reduce(0, +) / Double(max(latencies.count, 1)))) + print(String(format: "p95_encode_latency_ms=%.3f", percentile(latencies, 95))) + print(String(format: "max_encode_latency_ms=%.3f", latencies.max() ?? 0)) + print(String(format: "avg_send_ms=%.3f", sendTimes.reduce(0, +) / Double(max(sendTimes.count, 1)))) + print(String(format: "p95_send_ms=%.3f", percentile(sendTimes, 95))) + print("payload_bytes=\(totalBytes)") + print("bytes_sent=\(totalBytesSent)") + print("send_target=\(options.sendHost.isEmpty ? "none" : "\(options.sendHost):\(options.sendPort)")") + print("csv=\(options.csvPath.isEmpty ? "none" : options.csvPath)") +} + +struct TileLogicalFrame { + let frameID: Int + let completedTiles: Int + let failedTiles: Int + let groupLatencyMS: Double + let maxTileEncodeLatencyMS: Double + let payloadBytes: Int +} + +final class TileFrameTracker { + private let condition = NSCondition() + private let tileCount: Int + private var startNSByFrameID: [Int: UInt64] = [:] + private var completedTilesByFrameID: [Int: Int] = [:] + private var failedTilesByFrameID: [Int: Int] = [:] + private var maxTileEncodeByFrameID: [Int: Double] = [:] + private var payloadBytesByFrameID: [Int: Int] = [:] + private var logicalFrames: [TileLogicalFrame] = [] + + init(tileCount: Int) { + self.tileCount = tileCount + } + + func startFrame(_ logicalFrameID: Int) { + condition.lock() + startNSByFrameID[logicalFrameID] = DispatchTime.now().uptimeNanoseconds + completedTilesByFrameID[logicalFrameID] = 0 + failedTilesByFrameID[logicalFrameID] = 0 + maxTileEncodeByFrameID[logicalFrameID] = 0 + payloadBytesByFrameID[logicalFrameID] = 0 + condition.unlock() + } + + func finishTile(_ frame: EncodedFrame) { + let logicalFrameID = frame.frameID / tileCount + condition.lock() + completedTilesByFrameID[logicalFrameID, default: 0] += 1 + if frame.status != noErr { + failedTilesByFrameID[logicalFrameID, default: 0] += 1 + } + maxTileEncodeByFrameID[logicalFrameID] = max( + maxTileEncodeByFrameID[logicalFrameID, default: 0], + frame.encodeLatencyMS + ) + payloadBytesByFrameID[logicalFrameID, default: 0] += frame.payloadBytes + + let completedTiles = completedTilesByFrameID[logicalFrameID, default: 0] + if completedTiles == tileCount, let startNS = startNSByFrameID[logicalFrameID] { + let groupLatencyMS = Double(DispatchTime.now().uptimeNanoseconds - startNS) / 1_000_000.0 + logicalFrames.append( + TileLogicalFrame( + frameID: logicalFrameID, + completedTiles: completedTiles, + failedTiles: failedTilesByFrameID[logicalFrameID, default: 0], + groupLatencyMS: groupLatencyMS, + maxTileEncodeLatencyMS: maxTileEncodeByFrameID[logicalFrameID, default: 0], + payloadBytes: payloadBytesByFrameID[logicalFrameID, default: 0] + ) + ) + condition.broadcast() + } + condition.unlock() + } + + func sortedLogicalFrames() -> [TileLogicalFrame] { + condition.lock() + let output = logicalFrames.sorted { $0.frameID < $1.frameID } + condition.unlock() + return output + } + + func waitForFrame(_ logicalFrameID: Int, timeoutSeconds: TimeInterval = 10) -> Bool { + condition.lock() + defer { condition.unlock() } + let deadline = Date().addingTimeInterval(timeoutSeconds) + while !logicalFrames.contains(where: { $0.frameID == logicalFrameID }) { + if !condition.wait(until: deadline) { + return false + } + } + return true + } +} + +func logicalCSVPath(for csvPath: String) -> String { + guard !csvPath.isEmpty else { return "" } + let url = URL(fileURLWithPath: csvPath) + let base = url.deletingPathExtension().path + return "\(base)_logical.csv" +} + +func writeTileLogicalCSV(path: String, frames: [TileLogicalFrame]) throws { + guard !path.isEmpty else { return } + var output = "frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes\n" + for frame in frames { + output += "\(frame.frameID),\(frame.completedTiles),\(frame.failedTiles)," + output += String(format: "%.4f,%.4f,", frame.groupLatencyMS, frame.maxTileEncodeLatencyMS) + output += "\(frame.payloadBytes)\n" + } + try FileManager.default.createDirectory( + atPath: URL(fileURLWithPath: path).deletingLastPathComponent().path, + withIntermediateDirectories: true + ) + try output.write(toFile: path, atomically: true, encoding: .utf8) +} + +func printTiledRunSummary( + options: Options, + states: [EncoderState], + tracker: TileFrameTracker, + logicalFrameCount: Int, + submittedFrames: Int, + elapsedSeconds: Double +) throws { + let tileFrames = states.flatMap { $0.sortedFrames() }.sorted { $0.frameID < $1.frameID } + try writeCSV(path: options.csvPath, frames: tileFrames) + + let logicalFrames = tracker.sortedLogicalFrames() + let logicalPath = logicalCSVPath(for: options.csvPath) + try writeTileLogicalCSV(path: logicalPath, frames: logicalFrames) + let steadyLogicalFrames = logicalFrames.filter { $0.frameID >= options.warmupFrames } + + let tileLatencies = tileFrames.map(\.encodeLatencyMS) + let groupLatencies = logicalFrames.map(\.groupLatencyMS) + let steadyGroupLatencies = steadyLogicalFrames.map(\.groupLatencyMS) + let maxTileLatencies = logicalFrames.map(\.maxTileEncodeLatencyMS) + let steadyMaxTileLatencies = steadyLogicalFrames.map(\.maxTileEncodeLatencyMS) + let totalPayloadBytes = logicalFrames.reduce(0) { $0 + $1.payloadBytes } + let failedLogicalFrames = logicalFrames.filter { $0.failedTiles > 0 }.count + let failedTileFrames = tileFrames.filter { $0.status != noErr }.count + let tileWidth = options.width / options.tileColumns + let tileHeight = options.height / options.tileRows + + print("iBridge Primary encoder") + print("run_label=synthetic-tiled") + print("source=\(options.source)") + print("resolution=\(options.width)x\(options.height)") + print("tile_columns=\(options.tileColumns)") + print("tile_rows=\(options.tileRows)") + print("tile_resolution=\(tileWidth)x\(tileHeight)") + print("tile_reuse_buffers=\(options.tileReuseBuffers ? "on" : "off")") + print("tile_max_inflight_logical_frames=\(options.tileMaxInFlightLogicalFrames)") + print("tile_reset_every_frames=\(options.tileResetEveryFrames)") + print("tile_reset_stagger_frames=\(options.tileResetStaggerFrames)") + print("tile_segment_hints=\(options.tileSegmentHints ? "on" : "off")") + print("warmup_frames=\(options.warmupFrames)") + print("target_fps=\(options.fps)") + print("duration_seconds=\(options.durationSeconds)") + print("codec=\(options.codec)") + print("encoder_id=\(options.encoderID.isEmpty ? "auto" : options.encoderID)") + print("bitrate_mbps=\(options.bitrateMbps > 0 ? options.bitrateMbps : 0)") + print("data_rate_limit_mbps=\(options.dataRateLimitMbps)") + print(String(format: "data_rate_window_seconds=%.3f", options.dataRateWindowSeconds)) + print("low_latency_rate_control=\(options.lowLatencyRateControl ? "on" : "off")") + print("realtime=\(options.realtime ? "on" : "off")") + print("allow_temporal_compression=\(options.allowTemporalCompression ? "on" : "off")") + print("allow_frame_reordering=\(options.allowFrameReordering ? "on" : "off")") + print("allow_open_gop=\(options.allowOpenGOP ? "on" : "off")") + print("prioritize_speed=\(options.prioritizeSpeed.map { $0 ? "on" : "off" } ?? "unset")") + print("more_frames_before_start=\(options.moreFramesBeforeStart.map { $0 ? "on" : "off" } ?? "auto")") + print("more_frames_after_end=\(options.moreFramesAfterEnd.map { $0 ? "on" : "off" } ?? "auto")") + print("source_frame_count=\(options.sourceFrameCount.map(String.init) ?? "auto")") + print("max_frame_delay_count=\(options.maxFrameDelayCount.map(String.init) ?? "unset")") + print("payload_format=\(options.payloadFormat)") + print("max_keyframe_interval=\(options.maxKeyFrameInterval)") + print(String(format: "max_keyframe_interval_duration=%.3f", options.maxKeyFrameIntervalDuration)) + print("frames_requested=\(logicalFrameCount)") + print("frames_submitted=\(submittedFrames)") + print("frames_skipped=0") + print("frames_encoded=\(logicalFrames.count)") + print("failed_frames=\(failedLogicalFrames)") + print("steady_frames_encoded=\(steadyLogicalFrames.count)") + print(String(format: "elapsed_seconds=%.3f", elapsedSeconds)) + print(String(format: "effective_logical_fps=%.3f", Double(logicalFrames.count) / max(elapsedSeconds, 0.001))) + print("tile_frames_requested=\(logicalFrameCount * options.tileColumns * options.tileRows)") + print("tile_frames_encoded=\(tileFrames.count)") + print("failed_tile_frames=\(failedTileFrames)") + print(String(format: "avg_encode_latency_ms=%.3f", groupLatencies.reduce(0, +) / Double(max(groupLatencies.count, 1)))) + print(String(format: "p95_encode_latency_ms=%.3f", percentile(groupLatencies, 95))) + print(String(format: "max_encode_latency_ms=%.3f", groupLatencies.max() ?? 0)) + print(String(format: "avg_steady_encode_latency_ms=%.3f", steadyGroupLatencies.reduce(0, +) / Double(max(steadyGroupLatencies.count, 1)))) + print(String(format: "p95_steady_encode_latency_ms=%.3f", percentile(steadyGroupLatencies, 95))) + print(String(format: "max_steady_encode_latency_ms=%.3f", steadyGroupLatencies.max() ?? 0)) + print(String(format: "avg_tile_encode_latency_ms=%.3f", tileLatencies.reduce(0, +) / Double(max(tileLatencies.count, 1)))) + print(String(format: "p95_tile_encode_latency_ms=%.3f", percentile(tileLatencies, 95))) + print(String(format: "avg_max_tile_encode_latency_ms=%.3f", maxTileLatencies.reduce(0, +) / Double(max(maxTileLatencies.count, 1)))) + print(String(format: "p95_max_tile_encode_latency_ms=%.3f", percentile(maxTileLatencies, 95))) + print(String(format: "avg_steady_max_tile_encode_latency_ms=%.3f", steadyMaxTileLatencies.reduce(0, +) / Double(max(steadyMaxTileLatencies.count, 1)))) + print(String(format: "p95_steady_max_tile_encode_latency_ms=%.3f", percentile(steadyMaxTileLatencies, 95))) + print("payload_bytes=\(totalPayloadBytes)") + print("send_target=none") + print("csv=\(options.csvPath.isEmpty ? "none" : options.csvPath)") + print("logical_csv=\(logicalPath.isEmpty ? "none" : logicalPath)") +} + +func runSyntheticTiled(options: Options) throws { + let tileCount = options.tileColumns * options.tileRows + let tileWidth = options.width / options.tileColumns + let tileHeight = options.height / options.tileRows + let tracker = TileFrameTracker(tileCount: tileCount) + var tileOptions = options + tileOptions.width = tileWidth + tileOptions.height = tileHeight + + func segmentOptions(startLogicalFrameID: Int, endLogicalFrameID: Int, totalLogicalFrames: Int) -> Options { + var segment = tileOptions + guard options.tileSegmentHints else { + return segment + } + segment.moreFramesBeforeStart = options.moreFramesBeforeStart ?? (startLogicalFrameID > 0) + segment.moreFramesAfterEnd = options.moreFramesAfterEnd ?? (endLogicalFrameID < totalLogicalFrames) + segment.sourceFrameCount = options.sourceFrameCount ?? max(1, endLogicalFrameID - startLogicalFrameID) + return segment + } + + func makeTileStateAndSession(options segmentOptions: Options) throws -> (EncoderState, VTCompressionSession) { + let state = try makeState(options: segmentOptions) { frame in + tracker.finishTile(frame) + } + let session = try makeCompressionSession(options: segmentOptions, state: state) + return (state, session) + } + + func makeTileStatesAndSessions(options segmentOptions: Options) throws -> ([EncoderState], [VTCompressionSession]) { + let states = try (0.. Int { + guard options.tileResetEveryFrames > 0 else { + return logicalFrameCount + } + let offset = options.tileResetStaggerFrames > 0 ? tileIndex * options.tileResetStaggerFrames : 0 + return min(options.tileResetEveryFrames + offset, logicalFrameCount) + } + + var states: [EncoderState] = [] + var sessions: [VTCompressionSession] = [] + if options.tileResetStaggerFrames > 0 { + for tileIndex in 0.. Int { + guard options.tileResetEveryFrames > 0 else { + return logicalFrameCount + } + return min(startLogicalFrameID + options.tileResetEveryFrames, logicalFrameCount) + } + + func shouldReset(tileIndex: Int, at logicalFrameID: Int) -> Bool { + guard options.tileResetEveryFrames > 0, logicalFrameID > 0 else { + return false + } + if options.tileResetStaggerFrames == 0 { + return logicalFrameID % options.tileResetEveryFrames == 0 + } + let offset = tileIndex * options.tileResetStaggerFrames + return logicalFrameID >= options.tileResetEveryFrames + offset + && (logicalFrameID - offset) % options.tileResetEveryFrames == 0 + } + + func resetTile(_ tileIndex: Int, at logicalFrameID: Int) throws { + VTCompressionSessionCompleteFrames(sessions[tileIndex], untilPresentationTimeStamp: .invalid) + VTCompressionSessionInvalidate(sessions[tileIndex]) + let end = segmentEnd(after: logicalFrameID, tileIndex: tileIndex) + let replacement = try makeTileStateAndSession( + options: segmentOptions( + startLogicalFrameID: logicalFrameID, + endLogicalFrameID: end, + totalLogicalFrames: logicalFrameCount + ) + ) + states[tileIndex] = replacement.0 + sessions[tileIndex] = replacement.1 + allStates.append(replacement.0) + sessionStartByTile[tileIndex] = logicalFrameID + } + + for logicalFrameID in 0.. 0 { + if options.tileResetStaggerFrames == 0, + logicalFrameID > 0, + logicalFrameID % options.tileResetEveryFrames == 0 { + let end = min(logicalFrameID + options.tileResetEveryFrames, logicalFrameCount) + for session in sessions { + VTCompressionSessionCompleteFrames(session, untilPresentationTimeStamp: .invalid) + VTCompressionSessionInvalidate(session) + } + let replacement = try makeTileStatesAndSessions( + options: segmentOptions( + startLogicalFrameID: logicalFrameID, + endLogicalFrameID: end, + totalLogicalFrames: logicalFrameCount + ) + ) + states = replacement.0 + sessions = replacement.1 + allStates.append(contentsOf: states) + sessionStartByTile = Array(repeating: logicalFrameID, count: tileCount) + } else if options.tileResetStaggerFrames > 0 { + for tileIndex in 0.. 0 { + let oldestAllowed = logicalFrameID - options.tileMaxInFlightLogicalFrames + if oldestAllowed >= 0, !tracker.waitForFrame(oldestAllowed) { + fputs("warning: timed out waiting for logical tile frame \(oldestAllowed)\n", stderr) + } + } + + if options.realtime { + let target = Double(logicalFrameID) * wallFrameDuration + let elapsed = Double(DispatchTime.now().uptimeNanoseconds - runStart.uptimeNanoseconds) / 1_000_000_000.0 + if target > elapsed { + Thread.sleep(forTimeInterval: target - elapsed) + } + } + + tracker.startFrame(logicalFrameID) + for tileIndex in 0.. elapsed { + Thread.sleep(forTimeInterval: target - elapsed) + } + } + + if options.source == "synthetic-static-skip", frameID % options.staticChangeEvery != 0 { + skippedFrames += 1 + continue + } + + let (pixelBuffer, generateMS) = options.source == "synthetic-nv12" + ? try makeNV12PixelBuffer(width: options.width, height: options.height, frameID: frameID) + : try makeBGRAPixelBuffer(width: options.width, height: options.height, frameID: frameID) + submittedFrames += 1 + encodePixelBuffer( + pixelBuffer, + frameID: frameID, + generateMS: generateMS, + frameDuration: frameDuration, + session: session, + state: state + ) + } + + VTCompressionSessionCompleteFrames(session, untilPresentationTimeStamp: .invalid) + try printRunSummary( + options: options, + state: state, + frameCount: frameCount, + submittedFrames: submittedFrames, + skippedFrames: skippedFrames, + label: "synthetic" + ) +} + +@available(macOS 14.0, *) +final class ScreenCaptureEncodeRunner: NSObject, SCStreamOutput, SCStreamDelegate, @unchecked Sendable { + private let options: Options + private let state: EncoderState + private let session: VTCompressionSession + private let frameDuration: CMTime + private let frameCount: Int + private let done = DispatchSemaphore(value: 0) + private let stateQueue = DispatchQueue(label: "iBridgePrimary.ScreenCaptureState") + private var stream: SCStream? + private var frameID = 0 + private var submittedFrames = 0 + private var backpressureSkippedFrames = 0 + private var startError: Error? + private var stopped = false + + init(options: Options, state: EncoderState, session: VTCompressionSession) { + self.options = options + self.state = state + self.session = session + self.frameDuration = CMTime(value: 1, timescale: CMTimeScale(options.fps)) + self.frameCount = options.fps * options.durationSeconds + } + + func run() throws { + Task { + do { + let content = try await SCShareableContent.excludingDesktopWindows( + false, + onScreenWindowsOnly: true + ) + guard options.captureDisplayIndex < content.displays.count else { + throw RuntimeError("capture display index \(options.captureDisplayIndex) out of range; displays=\(content.displays.count)") + } + let display = content.displays[options.captureDisplayIndex] + self.state.inputInjector?.setTargetDisplay(displayID: display.displayID) + let filter = SCContentFilter(display: display, excludingWindows: []) + let configuration = SCStreamConfiguration() + configuration.width = options.width + configuration.height = options.height + configuration.minimumFrameInterval = CMTime(value: 1, timescale: CMTimeScale(options.fps)) + configuration.queueDepth = options.captureQueueDepth + configuration.pixelFormat = kCVPixelFormatType_32BGRA + configuration.showsCursor = options.showCapturedCursor + configuration.capturesAudio = false + + let stream = SCStream(filter: filter, configuration: configuration, delegate: self) + self.stream = stream + try stream.addStreamOutput(self, type: .screen, sampleHandlerQueue: DispatchQueue(label: "iBridgePrimary.ScreenCaptureOutput")) + try await stream.startCapture() + DispatchQueue.global().asyncAfter(deadline: .now() + .seconds(self.options.durationSeconds)) { [weak self, weak stream] in + guard let self, let stream else { return } + self.requestStop(stream) + } + } catch { + self.stateQueue.sync { + self.startError = error + } + self.done.signal() + } + } + + let timeout = DispatchTime.now() + .seconds(options.durationSeconds + 10) + if done.wait(timeout: timeout) == .timedOut { + stream?.stopCapture { _ in } + throw RuntimeError("screen capture timed out") + } + let error = stateQueue.sync { startError } + if let error { + throw error + } + } + + func stream(_: SCStream, didStopWithError error: Error) { + stateQueue.sync { + if startError == nil { + startError = error + } + } + done.signal() + } + + private func requestStop(_ stream: SCStream) { + let shouldStop = stateQueue.sync { () -> Bool in + if stopped { + return false + } + stopped = true + return true + } + guard shouldStop else { return } + stream.stopCapture { _ in + VTCompressionSessionCompleteFrames(self.session, untilPresentationTimeStamp: .invalid) + self.done.signal() + } + } + + func stream( + _ stream: SCStream, + didOutputSampleBuffer sampleBuffer: CMSampleBuffer, + of outputType: SCStreamOutputType + ) { + guard outputType == .screen, + sampleBuffer.isValid, + let pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer) else { + return + } + + let inFlightFrames = state.inFlightFrameCount() + let nextFrame = stateQueue.sync { () -> (frameID: Int, shouldSubmit: Bool, shouldStop: Bool)? in + if stopped || frameID >= frameCount { + return nil + } + let currentFrameID = frameID + frameID += 1 + let shouldStop = frameID >= frameCount + if options.captureMaxInFlightFrames > 0, + inFlightFrames >= options.captureMaxInFlightFrames { + backpressureSkippedFrames += 1 + return (currentFrameID, false, shouldStop) + } + submittedFrames += 1 + return (currentFrameID, true, shouldStop) + } + guard let nextFrame else { + return + } + + guard nextFrame.shouldSubmit else { + if nextFrame.shouldStop { + requestStop(stream) + } + return + } + + encodePixelBuffer( + pixelBuffer, + frameID: nextFrame.frameID, + generateMS: 0, + frameDuration: frameDuration, + session: session, + state: state + ) + + if nextFrame.shouldStop { + requestStop(stream) + } + } + + func counts() -> (submitted: Int, skipped: Int) { + stateQueue.sync { + (submittedFrames, max(backpressureSkippedFrames, frameCount - submittedFrames)) + } + } +} + +func runScreenCapture(options: Options) throws { + guard #available(macOS 14.0, *) else { + throw RuntimeError("ScreenCaptureKit path requires macOS 14 or newer in this spike") + } + let state = try makeState(options: options) + let session = try makeCompressionSession(options: options, state: state) + defer { VTCompressionSessionInvalidate(session) } + + let runner = ScreenCaptureEncodeRunner(options: options, state: state, session: session) + try runner.run() + let counts = runner.counts() + try printRunSummary( + options: options, + state: state, + frameCount: options.fps * options.durationSeconds, + submittedFrames: counts.submitted, + skippedFrames: counts.skipped, + label: "screen-capture" + ) +} + +do { + let options = try parseOptions(CommandLine.arguments) + if options.listEncoders { + try printVideoEncoderList() + } else if options.listDisplays { + guard #available(macOS 14.0, *) else { + throw RuntimeError("--list-displays requires macOS 14 or newer") + } + try printCaptureDisplayList() + } else if options.source == "synthetic-nv12-tiled" { + try runSyntheticTiled(options: options) + } else if options.screenCapture { + try runScreenCapture(options: options) + } else { + try runSynthetic(options: options) + } +} catch { + fputs("error: \(error)\n\n", stderr) + usage() + exit(1) +} diff --git a/apps/receiver-macos/Package.swift b/apps/receiver-macos/Package.swift new file mode 100644 index 0000000..1ea8321 --- /dev/null +++ b/apps/receiver-macos/Package.swift @@ -0,0 +1,27 @@ +// swift-tools-version: 6.0 + +import PackageDescription + +let package = Package( + name: "iBridgeReceiverMac", + platforms: [ + .macOS(.v14) + ], + products: [ + .executable(name: "ibridge-receiver-macos", targets: ["iBridgeReceiverMac"]) + ], + targets: [ + .executableTarget( + name: "iBridgeReceiverMac", + swiftSettings: [ + .unsafeFlags(["-Xfrontend", "-strict-concurrency=minimal"]) + ], + linkerSettings: [ + .linkedFramework("AppKit"), + .linkedFramework("AVFoundation"), + .linkedFramework("CoreMedia"), + .linkedFramework("VideoToolbox") + ] + ) + ] +) diff --git a/apps/receiver-macos/README.md b/apps/receiver-macos/README.md new file mode 100644 index 0000000..6384bc7 --- /dev/null +++ b/apps/receiver-macos/README.md @@ -0,0 +1,45 @@ +# receiver-macos + +Mac-to-Mac iMac receiver spike. + +The first target is a visible 4K60 smoke test on the 2017 21.5-inch Retina 4K +iMac. It listens for protocol v0 TCP frames, accepts HEVC or H.264 Annex-B +payloads from `ibridge-primary`, and displays them with +`AVSampleBufferDisplayLayer`. + +Build on the receiver iMac: + +```bash +swift build --package-path apps/receiver-macos -c release +``` + +Run fullscreen on the iMac: + +```bash +apps/receiver-macos/.build/release/ibridge-receiver-macos --port 48320 --fullscreen --title "iBridge 4K Receiver" +``` + +Send a synthetic 4K HEVC stream from the MacBook Pro over direct Ethernet: + +```bash +apps/primary-macos/.build/release/ibridge-primary \ + --synthetic \ + --source synthetic-nv12 \ + --resolution 3840x2160 \ + --fps 60 \ + --duration 20 \ + --codec hevc \ + --bitrate-mbps 120 \ + --data-rate-limit-mbps 120 \ + --disable-low-latency-rate-control \ + --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc \ + --disable-frame-reordering \ + --disable-open-gop \ + --payload-format annex-b \ + --send-host 169.254.70.114 \ + --send-port 48320 +``` + +This is a smoke path, not the final product receiver. It intentionally keeps +the protocol simple and records enough console diagnostics to confirm whether +the iMac is receiving and displaying frames. diff --git a/apps/receiver-macos/Sources/iBridgeReceiverMac/main.swift b/apps/receiver-macos/Sources/iBridgeReceiverMac/main.swift new file mode 100644 index 0000000..714d0df --- /dev/null +++ b/apps/receiver-macos/Sources/iBridgeReceiverMac/main.swift @@ -0,0 +1,1095 @@ +import AppKit +@preconcurrency import AVFoundation +import CoreMedia +import Darwin +import Foundation + +struct Options { + var port = 48320 + var fullscreen = false + var showStatus = true + var title = "iBridge Receiver" + var enableInput = true +} + +struct RuntimeError: Error, CustomStringConvertible { + let description: String + init(_ description: String) { + self.description = description + } +} + +func logError(_ message: String) { + fputs("\(message)\n", stderr) + fflush(stderr) +} + +struct SendableSampleBuffer: @unchecked Sendable { + let value: CMSampleBuffer +} + +final class RuntimeLog: @unchecked Sendable { + static let shared = RuntimeLog() + private let lock = NSLock() + private let fileHandle: FileHandle? + + private init() { + let home = FileManager.default.homeDirectoryForCurrentUser + let directory = home.appendingPathComponent("ibridge-remote", isDirectory: true) + try? FileManager.default.createDirectory(at: directory, withIntermediateDirectories: true) + let url = directory.appendingPathComponent("receiver-macos-runtime.log") + if !FileManager.default.fileExists(atPath: url.path) { + FileManager.default.createFile(atPath: url.path, contents: nil) + } + fileHandle = try? FileHandle(forWritingTo: url) + _ = try? fileHandle?.seekToEnd() + } + + func write(_ message: String) { + let line = "\(Date()) \(message)\n" + lock.lock() + if let data = line.data(using: .utf8) { + try? fileHandle?.write(contentsOf: data) + } + lock.unlock() + fputs(line, stderr) + } +} + +func logLine(_ message: String) { + RuntimeLog.shared.write(message) +} + +func usage() { + print(""" + ibridge-receiver-macos [--port 48320] [--fullscreen] [--hide-status] [--disable-input] [--title "iBridge Receiver"] + + Receives protocol v0 TCP frames with Annex-B H.264/HEVC payloads and displays + them with AVSampleBufferDisplayLayer. + """) +} + +func parseOptions(_ args: [String]) throws -> Options { + var options = Options() + var index = 1 + while index < args.count { + let arg = args[index] + func value() throws -> String { + guard index + 1 < args.count else { + throw RuntimeError("\(arg) requires a value") + } + index += 1 + return args[index] + } + + if arg == "--help" || arg == "-h" { + usage() + exit(0) + } else if arg == "--port" { + options.port = try Int(value()) ?? options.port + } else if arg.hasPrefix("--port=") { + options.port = Int(arg.dropFirst("--port=".count)) ?? options.port + } else if arg == "--fullscreen" { + options.fullscreen = true + } else if arg == "--hide-status" || arg == "--no-hud" { + options.showStatus = false + } else if arg == "--enable-input" { + options.enableInput = true + } else if arg == "--disable-input" { + options.enableInput = false + } else if arg == "--title" { + options.title = try value() + } else if arg.hasPrefix("--title=") { + options.title = String(arg.dropFirst("--title=".count)) + } else { + throw RuntimeError("unknown argument: \(arg)") + } + index += 1 + } + guard options.port > 0, options.port <= 65535 else { + throw RuntimeError("--port must be between 1 and 65535") + } + return options +} + +enum CodecID: UInt8 { + case h264 = 1 + case hevc = 2 +} + +struct FrameHeader { + static let byteCount = 80 + let magic: UInt32 + let version: UInt16 + let headerLen: UInt16 + let sessionID: UInt64 + let frameID: UInt64 + let width: UInt16 + let height: UInt16 + let fps: UInt16 + let codec: UInt8 + let flags: UInt32 + let payloadLen: UInt32 + let droppedBefore: UInt32 + + init(_ data: Data) throws { + guard data.count == Self.byteCount else { + throw RuntimeError("frame header must be \(Self.byteCount) bytes") + } + magic = data.readLE(at: 0, as: UInt32.self) + version = data.readLE(at: 4, as: UInt16.self) + headerLen = data.readLE(at: 6, as: UInt16.self) + sessionID = data.readLE(at: 8, as: UInt64.self) + frameID = data.readLE(at: 16, as: UInt64.self) + width = data.readLE(at: 28, as: UInt16.self) + height = data.readLE(at: 30, as: UInt16.self) + fps = data.readLE(at: 32, as: UInt16.self) + codec = data[34] + flags = data.readLE(at: 36, as: UInt32.self) + payloadLen = data.readLE(at: 72, as: UInt32.self) + droppedBefore = data.readLE(at: 76, as: UInt32.self) + + guard magic == 0x4752_4249 else { + throw RuntimeError("bad frame magic: 0x\(String(magic, radix: 16))") + } + guard version == 0, headerLen == Self.byteCount else { + throw RuntimeError("unsupported frame header version=\(version) header_len=\(headerLen)") + } + guard payloadLen > 0 else { + throw RuntimeError("empty frame payload for frame \(frameID)") + } + } + + var isKeyframe: Bool { + flags & 1 != 0 + } +} + +extension Data { + func readLE(at offset: Int, as _: T.Type) -> T { + var value: T = 0 + let _: Void = Swift.withUnsafeMutableBytes(of: &value) { destination in + copyBytes(to: destination, from: offset..<(offset + MemoryLayout.size)) + } + return T(littleEndian: value) + } +} + +struct AnnexBNALUnit { + let data: Data +} + +func annexBNALUnits(from payload: Data) -> [AnnexBNALUnit] { + let bytes = [UInt8](payload) + var starts: [(offset: Int, length: Int)] = [] + var index = 0 + while index + 3 < bytes.count { + if bytes[index] == 0, bytes[index + 1] == 0, bytes[index + 2] == 1 { + starts.append((index, 3)) + index += 3 + } else if index + 4 < bytes.count, + bytes[index] == 0, bytes[index + 1] == 0, + bytes[index + 2] == 0, bytes[index + 3] == 1 { + starts.append((index, 4)) + index += 4 + } else { + index += 1 + } + } + + var units: [AnnexBNALUnit] = [] + for startIndex in starts.indices { + let start = starts[startIndex].offset + starts[startIndex].length + let end = startIndex + 1 < starts.count ? starts[startIndex + 1].offset : bytes.count + if end > start { + units.append(AnnexBNALUnit(data: payload.subdata(in: start.. UInt8 { + guard let first = data.first else { return 0 } + return first & 0x1f +} + +func hevcNALType(_ data: Data) -> UInt8 { + guard let first = data.first else { return 0 } + return (first >> 1) & 0x3f +} + +final class FormatDescriptionBuilder { + private var h264SPS: Data? + private var h264PPS: Data? + private var hevcVPS: Data? + private var hevcSPS: Data? + private var hevcPPS: Data? + private var currentFormat: CMVideoFormatDescription? + + func update(codec: UInt8, units: [AnnexBNALUnit]) throws -> CMVideoFormatDescription? { + if codec == CodecID.h264.rawValue { + for unit in units { + switch h264NALType(unit.data) { + case 7: h264SPS = unit.data + case 8: h264PPS = unit.data + default: break + } + } + if let sps = h264SPS, let pps = h264PPS { + currentFormat = try makeH264FormatDescription(sps: sps, pps: pps) + } + } else if codec == CodecID.hevc.rawValue { + for unit in units { + switch hevcNALType(unit.data) { + case 32: hevcVPS = unit.data + case 33: hevcSPS = unit.data + case 34: hevcPPS = unit.data + default: break + } + } + if let vps = hevcVPS, let sps = hevcSPS, let pps = hevcPPS { + currentFormat = try makeHEVCFormatDescription(vps: vps, sps: sps, pps: pps) + } + } else { + throw RuntimeError("unsupported codec id \(codec)") + } + return currentFormat + } +} + +func makeH264FormatDescription(sps: Data, pps: Data) throws -> CMVideoFormatDescription { + var formatDescription: CMVideoFormatDescription? + let status = sps.withUnsafeBytes { spsBytes in + pps.withUnsafeBytes { ppsBytes in + var pointers: [UnsafePointer] = [ + spsBytes.bindMemory(to: UInt8.self).baseAddress!, + ppsBytes.bindMemory(to: UInt8.self).baseAddress! + ] + var sizes = [sps.count, pps.count] + return CMVideoFormatDescriptionCreateFromH264ParameterSets( + allocator: kCFAllocatorDefault, + parameterSetCount: 2, + parameterSetPointers: &pointers, + parameterSetSizes: &sizes, + nalUnitHeaderLength: 4, + formatDescriptionOut: &formatDescription + ) + } + } + guard status == noErr, let formatDescription else { + throw RuntimeError("CMVideoFormatDescriptionCreateFromH264ParameterSets failed: \(status)") + } + return formatDescription +} + +func makeHEVCFormatDescription(vps: Data, sps: Data, pps: Data) throws -> CMVideoFormatDescription { + var formatDescription: CMVideoFormatDescription? + let status = vps.withUnsafeBytes { vpsBytes in + sps.withUnsafeBytes { spsBytes in + pps.withUnsafeBytes { ppsBytes in + var pointers: [UnsafePointer] = [ + vpsBytes.bindMemory(to: UInt8.self).baseAddress!, + spsBytes.bindMemory(to: UInt8.self).baseAddress!, + ppsBytes.bindMemory(to: UInt8.self).baseAddress! + ] + var sizes = [vps.count, sps.count, pps.count] + return CMVideoFormatDescriptionCreateFromHEVCParameterSets( + allocator: kCFAllocatorDefault, + parameterSetCount: 3, + parameterSetPointers: &pointers, + parameterSetSizes: &sizes, + nalUnitHeaderLength: 4, + extensions: nil, + formatDescriptionOut: &formatDescription + ) + } + } + } + guard status == noErr, let formatDescription else { + throw RuntimeError("CMVideoFormatDescriptionCreateFromHEVCParameterSets failed: \(status)") + } + return formatDescription +} + +func isParameterSet(codec: UInt8, unit: AnnexBNALUnit) -> Bool { + if codec == CodecID.h264.rawValue { + return [7, 8].contains(h264NALType(unit.data)) + } + if codec == CodecID.hevc.rawValue { + return [32, 33, 34].contains(hevcNALType(unit.data)) + } + return false +} + +func lengthPrefixedAccessUnit(codec: UInt8, units: [AnnexBNALUnit]) -> Data { + var output = Data() + for unit in units where !isParameterSet(codec: codec, unit: unit) { + var length = UInt32(unit.data.count).bigEndian + withUnsafeBytes(of: &length) { output.append(contentsOf: $0) } + output.append(unit.data) + } + return output +} + +func makeSampleBuffer( + header: FrameHeader, + payload: Data, + formatDescription: CMVideoFormatDescription +) throws -> CMSampleBuffer { + var blockBuffer: CMBlockBuffer? + let createStatus = CMBlockBufferCreateWithMemoryBlock( + allocator: kCFAllocatorDefault, + memoryBlock: nil, + blockLength: payload.count, + blockAllocator: kCFAllocatorDefault, + customBlockSource: nil, + offsetToData: 0, + dataLength: payload.count, + flags: 0, + blockBufferOut: &blockBuffer + ) + guard createStatus == noErr, let blockBuffer else { + throw RuntimeError("CMBlockBufferCreateWithMemoryBlock failed: \(createStatus)") + } + let replaceStatus = payload.withUnsafeBytes { + CMBlockBufferReplaceDataBytes( + with: $0.baseAddress!, + blockBuffer: blockBuffer, + offsetIntoDestination: 0, + dataLength: payload.count + ) + } + guard replaceStatus == noErr else { + throw RuntimeError("CMBlockBufferReplaceDataBytes failed: \(replaceStatus)") + } + + let fps = max(Int32(header.fps), 1) + let pts = CMTime(value: CMTimeValue(header.frameID), timescale: fps) + var timing = CMSampleTimingInfo( + duration: CMTime(value: 1, timescale: fps), + presentationTimeStamp: pts, + decodeTimeStamp: .invalid + ) + var sampleSize = payload.count + var sampleBuffer: CMSampleBuffer? + let sampleStatus = CMSampleBufferCreateReady( + allocator: kCFAllocatorDefault, + dataBuffer: blockBuffer, + formatDescription: formatDescription, + sampleCount: 1, + sampleTimingEntryCount: 1, + sampleTimingArray: &timing, + sampleSizeEntryCount: 1, + sampleSizeArray: &sampleSize, + sampleBufferOut: &sampleBuffer + ) + guard sampleStatus == noErr, let sampleBuffer else { + throw RuntimeError("CMSampleBufferCreateReady failed: \(sampleStatus)") + } + + if let attachments = CMSampleBufferGetSampleAttachmentsArray(sampleBuffer, createIfNecessary: true) { + let attachment = unsafeBitCast(CFArrayGetValueAtIndex(attachments, 0), to: CFMutableDictionary.self) + CFDictionarySetValue( + attachment, + Unmanaged.passUnretained(kCMSampleAttachmentKey_DisplayImmediately).toOpaque(), + Unmanaged.passUnretained(kCFBooleanTrue).toOpaque() + ) + if !header.isKeyframe { + CFDictionarySetValue( + attachment, + Unmanaged.passUnretained(kCMSampleAttachmentKey_NotSync).toOpaque(), + Unmanaged.passUnretained(kCFBooleanTrue).toOpaque() + ) + } + } + + return sampleBuffer +} + +final class ReceiverView: NSView { + var inputSink: ((String) -> Void)? + var commandSink: ((String) -> Void)? + private var trackingAreaRef: NSTrackingArea? + private var inputEventCount = 0 + + override var acceptsFirstResponder: Bool { true } + override var canBecomeKeyView: Bool { true } + + override func updateTrackingAreas() { + super.updateTrackingAreas() + if let trackingAreaRef { + removeTrackingArea(trackingAreaRef) + } + let area = NSTrackingArea( + rect: bounds, + options: [.activeAlways, .inVisibleRect, .mouseMoved, .mouseEnteredAndExited, .enabledDuringMouseDrag], + owner: self, + userInfo: nil + ) + addTrackingArea(area) + trackingAreaRef = area + } + + override func viewDidMoveToWindow() { + super.viewDidMoveToWindow() + window?.makeFirstResponder(self) + } + + override func mouseMoved(with event: NSEvent) { + sendPointer("move", event: event) + } + + override func mouseDragged(with event: NSEvent) { + sendPointer("drag", event: event) + } + + override func rightMouseDragged(with event: NSEvent) { + sendPointer("drag", event: event) + } + + override func otherMouseDragged(with event: NSEvent) { + sendPointer("drag", event: event) + } + + override func mouseDown(with event: NSEvent) { + sendPointer("down", event: event) + } + + override func rightMouseDown(with event: NSEvent) { + sendPointer("down", event: event) + } + + override func otherMouseDown(with event: NSEvent) { + sendPointer("down", event: event) + } + + override func mouseUp(with event: NSEvent) { + sendPointer("up", event: event) + } + + override func rightMouseUp(with event: NSEvent) { + sendPointer("up", event: event) + } + + override func otherMouseUp(with event: NSEvent) { + sendPointer("up", event: event) + } + + override func keyDown(with event: NSEvent) { + if handleLocalCommand(event) { + return + } + sendKey("down", event: event) + } + + override func keyUp(with event: NSEvent) { + sendKey("up", event: event) + } + + @discardableResult + func routeMonitoredEvent(_ event: NSEvent) -> Bool { + switch event.type { + case .mouseMoved: + sendPointer("move", event: event) + case .leftMouseDragged, .rightMouseDragged, .otherMouseDragged: + sendPointer("drag", event: event) + case .leftMouseDown, .rightMouseDown, .otherMouseDown: + sendPointer("down", event: event) + case .leftMouseUp, .rightMouseUp, .otherMouseUp: + sendPointer("up", event: event) + case .keyDown: + if handleLocalCommand(event) { + return true + } + sendKey("down", event: event) + case .keyUp: + sendKey("up", event: event) + default: + return false + } + return true + } + + func routeScreenPointer(_ phase: String, screenPoint: NSPoint, button: Int, modifiers: NSEvent.ModifierFlags) { + guard let window else { return } + let windowPoint = window.convertPoint(fromScreen: screenPoint) + let local = convert(windowPoint, from: nil) + sendPointer(phase, localPoint: local, button: button, modifiers: modifiers) + } + + func routeNormalizedPointer(_ phase: String, x: Double, y: Double, button: Int, modifiers: UInt64) { + recordInputEvent("pointer_\(phase)") + inputSink?( + String(format: "IBRIDGE_INPUT pointer %@ %.6f %.6f %d %llu\n", + phase, + min(max(x, 0), 1), + min(max(y, 0), 1), + button, + modifiers) + ) + } + + private func sendPointer(_ phase: String, event: NSEvent) { + guard bounds.width > 0, bounds.height > 0 else { return } + let local = convert(event.locationInWindow, from: nil) + sendPointer( + phase, + localPoint: local, + button: max(event.buttonNumber, 0), + modifiers: event.modifierFlags + ) + } + + private func sendPointer(_ phase: String, localPoint: NSPoint, button: Int, modifiers: NSEvent.ModifierFlags) { + guard bounds.width > 0, bounds.height > 0 else { return } + let normalizedX = min(max(localPoint.x / bounds.width, 0), 1) + let normalizedY = min(max(1 - (localPoint.y / bounds.height), 0), 1) + let modifierRaw = modifiers.rawValue + recordInputEvent("pointer_\(phase)") + inputSink?( + String(format: "IBRIDGE_INPUT pointer %@ %.6f %.6f %d %llu\n", + phase, + Double(normalizedX), + Double(normalizedY), + button, + modifierRaw) + ) + } + + private func sendKey(_ phase: String, event: NSEvent) { + recordInputEvent("key_\(phase)") + inputSink?("IBRIDGE_INPUT key \(phase) \(event.keyCode) \(event.modifierFlags.rawValue)\n") + } + + private func recordInputEvent(_ label: String) { + inputEventCount += 1 + if inputEventCount <= 10 || inputEventCount % 60 == 0 { + logLine("receiver_input_event=\(label) count=\(inputEventCount)") + } + } + + private func handleLocalCommand(_ event: NSEvent) -> Bool { + let command = event.modifierFlags.contains(.command) + if command, event.charactersIgnoringModifiers?.lowercased() == "f" { + commandSink?("toggle-fullscreen") + return true + } + if event.keyCode == 53 { + commandSink?("exit-fullscreen") + return true + } + return false + } +} + +final class ReceiverViewController: NSViewController { + let displayLayer = AVSampleBufferDisplayLayer() + private let statusLabel = NSTextField(labelWithString: "Waiting for iBridge stream") + private let showStatus: Bool + private let enableInput: Bool + private var displayedFrames: UInt64 = 0 + var inputSink: ((String) -> Void)? { + didSet { + receiverView?.inputSink = enableInput ? inputSink : nil + } + } + var commandSink: ((String) -> Void)? { + didSet { + receiverView?.commandSink = commandSink + } + } + private weak var receiverView: ReceiverView? + + init(showStatus: Bool, enableInput: Bool) { + self.showStatus = showStatus + self.enableInput = enableInput + super.init(nibName: nil, bundle: nil) + } + + required init?(coder: NSCoder) { + self.showStatus = true + self.enableInput = true + super.init(coder: coder) + } + + override func loadView() { + let receiverView = ReceiverView(frame: NSRect(x: 0, y: 0, width: 1280, height: 720)) + receiverView.inputSink = enableInput ? inputSink : nil + receiverView.commandSink = commandSink + self.receiverView = receiverView + view = receiverView + view.wantsLayer = true + view.layer?.backgroundColor = NSColor.black.cgColor + + displayLayer.videoGravity = .resizeAspect + displayLayer.backgroundColor = NSColor.black.cgColor + view.layer?.addSublayer(displayLayer) + + statusLabel.font = NSFont.monospacedSystemFont(ofSize: 13, weight: .medium) + statusLabel.textColor = .white + statusLabel.backgroundColor = NSColor.black.withAlphaComponent(0.55) + statusLabel.drawsBackground = true + statusLabel.isBezeled = false + statusLabel.lineBreakMode = .byTruncatingTail + if showStatus { + view.addSubview(statusLabel) + } + } + + override func viewDidLayout() { + super.viewDidLayout() + displayLayer.frame = view.bounds + if showStatus { + statusLabel.frame = NSRect(x: 16, y: view.bounds.height - 44, width: min(760, view.bounds.width - 32), height: 24) + } + } + + nonisolated func enqueue(_ sampleBuffer: CMSampleBuffer, header: FrameHeader) { + let sendableSampleBuffer = SendableSampleBuffer(value: sampleBuffer) + DispatchQueue.main.async { + if self.displayLayer.status == .failed { + logLine("display_layer_failed error=\(String(describing: self.displayLayer.error))") + self.displayLayer.flush() + } + self.displayLayer.enqueue(sendableSampleBuffer.value) + self.displayedFrames += 1 + if self.showStatus, self.displayedFrames % 30 == 1 { + self.statusLabel.stringValue = "iBridge \(header.width)x\(header.height)@\(header.fps) frame \(header.frameID) dropped_before \(header.droppedBefore)" + } + } + } + + nonisolated func setStatus(_ text: String) { + DispatchQueue.main.async { + if self.showStatus { + self.statusLabel.stringValue = text + } + } + } + + @discardableResult + func routeMonitoredEvent(_ event: NSEvent) -> Bool { + receiverView?.routeMonitoredEvent(event) ?? false + } + + func routeScreenPointer(_ phase: String, screenPoint: NSPoint, button: Int, modifiers: NSEvent.ModifierFlags) { + receiverView?.routeScreenPointer(phase, screenPoint: screenPoint, button: button, modifiers: modifiers) + } + + func routeNormalizedPointer(_ phase: String, x: Double, y: Double, button: Int, modifiers: UInt64) { + receiverView?.routeNormalizedPointer(phase, x: x, y: y, button: button, modifiers: modifiers) + } +} + +@MainActor +final class AppDelegate: NSObject, NSApplicationDelegate { + private let options: Options + private let receiver: ReceiverViewController + private var window: NSWindow? + private var server: TCPReceiver? + private var localEventMonitor: Any? + private var eventTap: CFMachPort? + private var eventTapSource: CFRunLoopSource? + private let pointerEdgeTolerance: CGFloat = 32 + + init(options: Options) { + self.options = options + self.receiver = ReceiverViewController(showStatus: options.showStatus, enableInput: options.enableInput) + } + + func applicationDidFinishLaunching(_: Notification) { + let screenFrame = NSScreen.main?.frame ?? NSRect(x: 0, y: 0, width: 1280, height: 720) + let style: NSWindow.StyleMask = [.titled, .closable, .miniaturizable, .resizable, .fullSizeContentView] + let contentRect = NSRect(x: 80, y: 80, width: min(1600, screenFrame.width * 0.8), height: min(900, screenFrame.height * 0.8)) + let window = NSWindow( + contentRect: contentRect, + styleMask: style, + backing: .buffered, + defer: false + ) + window.title = options.title + window.contentViewController = receiver + window.collectionBehavior = [.canJoinAllSpaces, .fullScreenPrimary] + if options.fullscreen { + DispatchQueue.main.async { + window.toggleFullScreen(nil) + } + } else { + window.center() + } + window.makeKeyAndOrderFront(nil) + window.orderFrontRegardless() + window.acceptsMouseMovedEvents = true + self.window = window + + let server = TCPReceiver(port: options.port, viewController: receiver) + self.server = server + receiver.commandSink = { [weak self] command in + self?.handleReceiverCommand(command) + } + receiver.inputSink = { [weak server] line in + server?.sendInputLine(line) + } + installLocalEventMonitor() + installEventTap() + server.start() + } + + private func installLocalEventMonitor() { + let mask: NSEvent.EventTypeMask = [ + .keyDown, + .keyUp + ] + localEventMonitor = NSEvent.addLocalMonitorForEvents(matching: mask) { [weak self] event in + guard let self else { return event } + if event.window === self.window { + _ = self.receiver.routeMonitoredEvent(event) + } + return event + } + logLine("receiver_local_event_monitor_installed") + } + + private func installEventTap() { + var mask: CGEventMask = 0 + for eventType in [ + CGEventType.mouseMoved, + .leftMouseDown, + .leftMouseUp, + .leftMouseDragged, + .rightMouseDown, + .rightMouseUp, + .rightMouseDragged, + .otherMouseDown, + .otherMouseUp, + .otherMouseDragged + ] { + mask |= CGEventMask(1) << CGEventMask(eventType.rawValue) + } + let refcon = UnsafeMutableRawPointer(Unmanaged.passUnretained(self).toOpaque()) + guard let tap = CGEvent.tapCreate( + tap: .cgSessionEventTap, + place: .headInsertEventTap, + options: .listenOnly, + eventsOfInterest: mask, + callback: receiverEventTapCallback, + userInfo: refcon + ) else { + logLine("receiver_event_tap_install_failed") + return + } + eventTap = tap + let source = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, tap, 0) + eventTapSource = source + CFRunLoopAddSource(CFRunLoopGetMain(), source, .commonModes) + CGEvent.tapEnable(tap: tap, enable: true) + logLine("receiver_event_tap_installed") + } + + func routeTappedPointer(type: CGEventType, location: CGPoint, button: Int, modifiers: UInt64) { + guard let window else { return } + guard let cgFrame = cgInputFrame(for: window) else { return } + let hitFrame = cgFrame.insetBy(dx: -pointerEdgeTolerance, dy: -pointerEdgeTolerance) + if !hitFrame.contains(location) { + logLine("receiver_event_tap_outside type=\(type.rawValue) x=\(String(format: "%.1f", location.x)) y=\(String(format: "%.1f", location.y))") + return + } + let phase: String + switch type { + case .mouseMoved: + phase = "move" + case .leftMouseDragged, .rightMouseDragged, .otherMouseDragged: + phase = "drag" + case .leftMouseDown, .rightMouseDown, .otherMouseDown: + phase = "down" + case .leftMouseUp, .rightMouseUp, .otherMouseUp: + phase = "up" + default: + return + } + let clampedX = min(max(location.x, cgFrame.minX), cgFrame.maxX) + let clampedY = min(max(location.y, cgFrame.minY), cgFrame.maxY) + let normalizedX = Double((clampedX - cgFrame.minX) / max(cgFrame.width, 1)) + let normalizedY = Double((clampedY - cgFrame.minY) / max(cgFrame.height, 1)) + receiver.routeNormalizedPointer(phase, x: normalizedX, y: normalizedY, button: button, modifiers: modifiers) + } + + private func cgInputFrame(for window: NSWindow) -> CGRect? { + if window.styleMask.contains(.fullScreen), let screen = window.screen ?? NSScreen.main { + return cgScreenFrame(for: screen) + } + return cgWindowFrame(for: window) + } + + private func cgScreenFrame(for screen: NSScreen) -> CGRect { + let mainMaxY = NSScreen.screens.map(\.frame.maxY).max() ?? screen.frame.maxY + return CGRect( + x: screen.frame.minX, + y: mainMaxY - screen.frame.maxY, + width: screen.frame.width, + height: screen.frame.height + ) + } + + private func cgWindowFrame(for window: NSWindow) -> CGRect? { + guard let screen = window.screen ?? NSScreen.main else { return nil } + let mainMaxY = NSScreen.screens.map(\.frame.maxY).max() ?? screen.frame.maxY + let windowFrame = window.frame + let originY = mainMaxY - windowFrame.maxY + return CGRect( + x: windowFrame.minX, + y: originY, + width: windowFrame.width, + height: windowFrame.height + ) + } + + private func handleReceiverCommand(_ command: String) { + guard let window else { return } + switch command { + case "toggle-fullscreen": + window.toggleFullScreen(nil) + case "exit-fullscreen": + if window.styleMask.contains(.fullScreen) { + window.toggleFullScreen(nil) + } + default: + break + } + } + + func applicationShouldTerminateAfterLastWindowClosed(_: NSApplication) -> Bool { + true + } +} + +final class TCPReceiver: @unchecked Sendable { + private let port: Int + private weak var viewController: ReceiverViewController? + private let queue = DispatchQueue(label: "iBridgeReceiverMac.TCPReceiver") + private let sendQueue = DispatchQueue(label: "iBridgeReceiverMac.InputSender") + private let activeClientLock = NSLock() + private var activeClientFD: Int32? + + init(port: Int, viewController: ReceiverViewController) { + self.port = port + self.viewController = viewController + } + + func start() { + queue.async { [weak self] in + guard let self else { return } + do { + try self.run() + } catch { + self.viewController?.setStatus("receiver error: \(error)") + logError("receiver error: \(error)") + } + } + } + + func sendInputLine(_ line: String) { + activeClientLock.lock() + let fd = activeClientFD + activeClientLock.unlock() + guard let fd else { return } + let data = Data(line.utf8) + sendQueue.async { + data.withUnsafeBytes { rawBuffer in + guard let base = rawBuffer.baseAddress else { return } + var sent = 0 + while sent < rawBuffer.count { + let result = Darwin.send(fd, base.advanced(by: sent), rawBuffer.count - sent, 0) + if result <= 0 { + logLine("input_send_failed errno=\(errno)") + return + } + sent += result + } + } + logLine("input_sent bytes=\(data.count)") + } + } + + private func run() throws { + let listenFD = socket(AF_INET, SOCK_STREAM, 0) + guard listenFD >= 0 else { + throw RuntimeError("socket failed") + } + defer { close(listenFD) } + + var yes: Int32 = 1 + setsockopt(listenFD, SOL_SOCKET, SO_REUSEADDR, &yes, socklen_t(MemoryLayout.size)) + + var address = sockaddr_in() + address.sin_len = UInt8(MemoryLayout.size) + address.sin_family = sa_family_t(AF_INET) + address.sin_port = UInt16(port).bigEndian + address.sin_addr = in_addr(s_addr: INADDR_ANY.bigEndian) + + let bindStatus = withUnsafePointer(to: &address) { + $0.withMemoryRebound(to: sockaddr.self, capacity: 1) { + bind(listenFD, $0, socklen_t(MemoryLayout.size)) + } + } + guard bindStatus == 0 else { + throw RuntimeError("bind failed on port \(port): errno \(errno)") + } + guard listen(listenFD, 1) == 0 else { + throw RuntimeError("listen failed: errno \(errno)") + } + + viewController?.setStatus("Listening on TCP \(port)") + logLine("iBridge macOS receiver listening on TCP \(port)") + + while true { + let clientFD = accept(listenFD, nil, nil) + guard clientFD >= 0 else { + if errno == EINTR { continue } + throw RuntimeError("accept failed: errno \(errno)") + } + activeClientLock.lock() + activeClientFD = clientFD + activeClientLock.unlock() + handleClient(clientFD) + activeClientLock.lock() + if activeClientFD == clientFD { + activeClientFD = nil + } + activeClientLock.unlock() + close(clientFD) + } + } + + private func handleClient(_ fd: Int32) { + viewController?.setStatus("Primary connected") + logLine("primary connected") + let formatBuilder = FormatDescriptionBuilder() + var lastFrameID: UInt64? + var receivedFrames: UInt64 = 0 + + do { + let handshake = try readLine(fd: fd, limit: 4096) + logLine("handshake=\(handshake)") + while true { + let headerData = try readExact(fd: fd, byteCount: FrameHeader.byteCount) + let header = try FrameHeader(headerData) + let payload = try readExact(fd: fd, byteCount: Int(header.payloadLen)) + let units = annexBNALUnits(from: payload) + guard !units.isEmpty else { + throw RuntimeError("frame \(header.frameID) has no Annex-B NAL units") + } + guard let format = try formatBuilder.update(codec: header.codec, units: units) else { + if header.isKeyframe { + logLine("waiting for parameter sets on keyframe \(header.frameID)") + } + continue + } + let accessUnit = lengthPrefixedAccessUnit(codec: header.codec, units: units) + guard !accessUnit.isEmpty else { continue } + let sampleBuffer = try makeSampleBuffer(header: header, payload: accessUnit, formatDescription: format) + + if let lastFrameID, header.frameID > lastFrameID + 1 { + logLine("receiver_missing_frames=\(header.frameID - lastFrameID - 1) before=\(header.frameID)") + } + lastFrameID = header.frameID + receivedFrames += 1 + if receivedFrames % 60 == 1 { + logLine("received_frame=\(header.frameID) size=\(header.width)x\(header.height) payload=\(header.payloadLen) keyframe=\(header.isKeyframe)") + } + viewController?.enqueue(sampleBuffer, header: header) + } + } catch { + logLine("client disconnected_or_failed frames=\(receivedFrames) error=\(error)") + logLine("receiver_frames_total=\(receivedFrames)") + viewController?.setStatus("Disconnected: \(receivedFrames) frames") + } + } +} + +func receiverEventTapCallback( + proxy: CGEventTapProxy, + type: CGEventType, + event: CGEvent, + refcon: UnsafeMutableRawPointer? +) -> Unmanaged? { + guard let refcon else { + return Unmanaged.passUnretained(event) + } + let delegate = Unmanaged.fromOpaque(refcon).takeUnretainedValue() + let button: Int + switch type { + case .rightMouseDown, .rightMouseUp, .rightMouseDragged: + button = 1 + case .otherMouseDown, .otherMouseUp, .otherMouseDragged: + button = Int(event.getIntegerValueField(.mouseEventButtonNumber)) + default: + button = 0 + } + let location = event.location + let modifiers = event.flags.rawValue + DispatchQueue.main.async { + delegate.routeTappedPointer( + type: type, + location: location, + button: button, + modifiers: modifiers + ) + } + return Unmanaged.passUnretained(event) +} + +func readLine(fd: Int32, limit: Int) throws -> String { + var data = Data() + var byte: UInt8 = 0 + while data.count < limit { + let count = Darwin.recv(fd, &byte, 1, 0) + if count == 0 { + throw RuntimeError("connection closed while reading handshake") + } + if count < 0 { + throw RuntimeError("recv failed while reading handshake: errno \(errno)") + } + if byte == UInt8(ascii: "\n") { + return String(decoding: data, as: UTF8.self) + } + data.append(byte) + } + throw RuntimeError("handshake exceeded \(limit) bytes") +} + +func readExact(fd: Int32, byteCount: Int) throws -> Data { + var data = Data(count: byteCount) + try data.withUnsafeMutableBytes { rawBuffer in + guard let base = rawBuffer.baseAddress else { return } + var offset = 0 + while offset < byteCount { + let count = Darwin.recv(fd, base.advanced(by: offset), byteCount - offset, 0) + if count == 0 { + throw RuntimeError("connection closed") + } + if count < 0 { + if errno == EINTR { continue } + throw RuntimeError("recv failed: errno \(errno)") + } + offset += count + } + } + return data +} + +do { + setbuf(stdout, nil) + setbuf(stderr, nil) + let options = try parseOptions(CommandLine.arguments) + let app = NSApplication.shared + let delegate = AppDelegate(options: options) + app.delegate = delegate + app.setActivationPolicy(.regular) + app.activate(ignoringOtherApps: true) + app.run() +} catch { + fputs("error: \(error)\n\n", stderr) + usage() + exit(1) +} diff --git a/apps/receiver-windows/CMakeLists.txt b/apps/receiver-windows/CMakeLists.txt new file mode 100644 index 0000000..1e9ff60 --- /dev/null +++ b/apps/receiver-windows/CMakeLists.txt @@ -0,0 +1,30 @@ +cmake_minimum_required(VERSION 3.21) + +project(ibridge_receiver_windows LANGUAGES CXX) + +add_executable(ibridge-receiver + src/main.cpp +) + +target_compile_features(ibridge-receiver PRIVATE cxx_std_17) + +if(NOT WIN32) + message(FATAL_ERROR "ibridge-receiver currently targets Windows only because the Plan A renderer uses Win32 and D3D11.") +endif() + +target_compile_definitions(ibridge-receiver PRIVATE + NOMINMAX + WIN32_LEAN_AND_MEAN +) + +target_link_libraries(ibridge-receiver PRIVATE + d3d11 + dxgi + d3dcompiler + mf + mfplat + mfreadwrite + mfuuid + ole32 + ws2_32 +) diff --git a/apps/receiver-windows/README.md b/apps/receiver-windows/README.md index e444ec2..83d5a69 100644 --- a/apps/receiver-windows/README.md +++ b/apps/receiver-windows/README.md @@ -10,3 +10,68 @@ First target: 4. decode 5. render 6. HUD + +## Plan A synthetic renderer + +The first implemented target is a local D3D11 synthetic renderer. It does not receive network frames or decode video yet. + +Fullscreen runs show a small top-left HUD with current mode, running fps, total frame time, fill time, upload time, and present time. Use `--no-hud` only when measuring whether the overlay itself affects timing. + +Build on Windows: + +```powershell +cmake -S apps/receiver-windows -B apps/receiver-windows/build -G "Visual Studio 17 2022" -A x64 +cmake --build apps/receiver-windows/build --config Release +``` + +Run the 5K60 receiver-side benchmark: + +```powershell +mkdir benchmarks\runs\YYYY-MM-DD_HHMM_plan_a_synthetic_5k60 +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --csv benchmarks\runs\YYYY-MM-DD_HHMM_plan_a_synthetic_5k60\receiver_stats.csv +``` + +Optional ceiling run without display vsync: + +```powershell +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 30 --fullscreen --no-vsync --static-frame +``` + +Isolation modes: + +```powershell +# Upload a single static 5K frame once, then present it for 60 seconds. +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --static-frame + +# Render a generated shader pattern without CPU frame fill or texture upload. +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --gpu-pattern + +# Measure an unthrottled present ceiling without vsync. +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 30 --fullscreen --gpu-pattern --no-vsync --uncapped +``` + +The first acceptance run should keep vsync enabled because iBridge is display-facing software. + +Plan C scaled-mode example: + +```powershell +apps\receiver-windows\build\manual\ibridge-receiver.exe --synthetic --resolution 2560x1440 --output-resolution 5120x2880 --fps 60 --duration 10 --fullscreen --static-frame --scale-mode nearest --csv benchmarks\runs\YYYY-MM-DD_HHMM_plan_c_modes\receiver_1440p_nearest.csv +``` + +## Protocol v0 transport sink + +The receiver can also run a no-GUI TCP sink for Plan B transport tests. This validates protocol v0 frame headers, rejects wrong magic/version/header length, receives compressed frame payloads, and logs receive timing. It does not decode or render compressed frames yet. + +```powershell +apps\receiver-windows\build\manual\ibridge-receiver.exe --transport-sink --port 48320 --duration 60 --csv benchmarks\runs\YYYY-MM-DD_HHMM_plan_b_5k_hevc_tcp\receiver_stats.csv +``` + +## Compressed file decode/render smoke path + +The receiver has an offline Media Foundation decode smoke path before live TCP decode. Use it with a container file that Windows Media Foundation can open, then render decoded RGB32 frames through the existing D3D11 renderer: + +```powershell +apps\receiver-windows\build\manual\ibridge-receiver.exe --decode-file sample.mp4 --fullscreen --output-resolution 5120x2880 --scale-mode linear --duration 10 --csv benchmarks\runs\YYYY-MM-DD_HHMM_decode_file\receiver_decode.csv +``` + +This path is intended to verify compressed decode -> texture upload -> D3D11 present timing. Live protocol v0 TCP decode/render is still the next receiver step after the offline decode smoke test passes on the Windows iMac. diff --git a/apps/receiver-windows/src/main.cpp b/apps/receiver-windows/src/main.cpp new file mode 100644 index 0000000..5eb52da --- /dev/null +++ b/apps/receiver-windows/src/main.cpp @@ -0,0 +1,1305 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using Microsoft::WRL::ComPtr; +using Clock = std::chrono::steady_clock; + +namespace { + +struct Options { + int width = 5120; + int height = 2880; + int output_width = 0; + int output_height = 0; + bool output_resolution_set = false; + int fps = 60; + int duration_seconds = 60; + bool synthetic = false; + bool fullscreen = false; + bool vsync = true; + bool static_frame = false; + bool gpu_pattern = false; + bool uncapped = false; + bool hud = true; + bool transport_sink = false; + int port = 48320; + std::string scale_mode = "nearest"; + std::string csv_path; + std::string decode_file; +}; + +struct FrameStats { + uint64_t frame_id = 0; + double fill_ms = 0.0; + double upload_ms = 0.0; + double draw_present_ms = 0.0; + double total_ms = 0.0; + bool missed_budget = false; +}; + +#pragma pack(push, 1) +struct ProtocolFrameHeaderV0 { + uint32_t magic = 0; + uint16_t version = 0; + uint16_t header_len = 0; + uint64_t session_id = 0; + uint64_t frame_id = 0; + uint16_t chunk_id = 0; + uint16_t chunk_count = 0; + uint16_t width = 0; + uint16_t height = 0; + uint16_t fps_target = 0; + uint8_t codec = 0; + uint8_t color_format = 0; + uint32_t flags = 0; + uint64_t capture_ns = 0; + uint64_t encode_start_ns = 0; + uint64_t encode_done_ns = 0; + uint64_t send_ns = 0; + uint32_t payload_len = 0; + uint32_t dropped_before = 0; +}; +#pragma pack(pop) + +static_assert(sizeof(ProtocolFrameHeaderV0) == 80, + "protocol v0 frame header must be 80 bytes"); + +struct TransportStats { + uint64_t frame_id = 0; + uint32_t payload_len = 0; + uint32_t dropped_before = 0; + uint64_t missing_before = 0; + double receive_ms = 0.0; + uint16_t width = 0; + uint16_t height = 0; + uint16_t fps_target = 0; + uint8_t codec = 0; + uint32_t flags = 0; +}; + +struct DecodeFrameStats { + uint64_t frame_id = 0; + double decode_ms = 0.0; + double upload_ms = 0.0; + double render_ms = 0.0; + double total_ms = 0.0; + bool missed_budget = false; +}; + +double MsSince(Clock::time_point start, Clock::time_point end) { + return std::chrono::duration(end - start).count(); +} + +std::string HResultMessage(HRESULT hr) { + char* buffer = nullptr; + DWORD size = FormatMessageA( + FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS, + nullptr, static_cast(hr), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + reinterpret_cast(&buffer), 0, nullptr); + + std::ostringstream oss; + oss << "HRESULT 0x" << std::hex << static_cast(hr); + if (size > 0 && buffer != nullptr) { + oss << ": " << buffer; + LocalFree(buffer); + } + return oss.str(); +} + +void CheckHR(HRESULT hr, const char* label) { + if (FAILED(hr)) { + std::ostringstream oss; + oss << label << " failed: " << HResultMessage(hr); + throw std::runtime_error(oss.str()); + } +} + +void PrintUsage() { + std::cout + << "ibridge-receiver --synthetic --resolution 5120x2880 --fps 60 " + "--duration 60 [--fullscreen] [--csv path] [--no-vsync] " + "[--static-frame] [--gpu-pattern] [--uncapped] [--no-hud] " + "[--output-resolution 5120x2880] [--scale-mode nearest|linear]\n" + "ibridge-receiver --transport-sink --port 48320 --duration 10 " + "[--csv path]\n" + "ibridge-receiver --decode-file sample.mp4 --fullscreen " + "[--output-resolution 5120x2880] [--scale-mode linear] [--csv path]\n"; +} + +bool ConsumeValue(int& index, int argc, char** argv, std::string* value) { + if (index + 1 >= argc) { + return false; + } + *value = argv[++index]; + return true; +} + +void ParseResolution(const std::string& text, int* width, int* height) { + const size_t x = text.find('x'); + if (x == std::string::npos) { + throw std::runtime_error("resolution must look like 5120x2880"); + } + *width = std::stoi(text.substr(0, x)); + *height = std::stoi(text.substr(x + 1)); + if (*width <= 0 || *height <= 0) { + throw std::runtime_error("resolution must be positive"); + } +} + +Options ParseOptions(int argc, char** argv) { + Options options; + for (int i = 1; i < argc; ++i) { + std::string arg = argv[i]; + std::string value; + if (arg == "--help" || arg == "-h") { + PrintUsage(); + std::exit(0); + } else if (arg == "--transport-sink") { + options.transport_sink = true; + } else if (arg == "--decode-file") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--decode-file requires a value"); + } + options.decode_file = value; + } else if (arg.rfind("--decode-file=", 0) == 0) { + options.decode_file = arg.substr(std::strlen("--decode-file=")); + } else if (arg == "--synthetic") { + options.synthetic = true; + } else if (arg == "--resolution") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--resolution requires a value"); + } + ParseResolution(value, &options.width, &options.height); + } else if (arg.rfind("--resolution=", 0) == 0) { + ParseResolution(arg.substr(std::strlen("--resolution=")), &options.width, + &options.height); + } else if (arg == "--output-resolution") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--output-resolution requires a value"); + } + ParseResolution(value, &options.output_width, &options.output_height); + options.output_resolution_set = true; + } else if (arg.rfind("--output-resolution=", 0) == 0) { + ParseResolution(arg.substr(std::strlen("--output-resolution=")), + &options.output_width, &options.output_height); + options.output_resolution_set = true; + } else if (arg == "--fps") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--fps requires a value"); + } + options.fps = std::stoi(value); + } else if (arg.rfind("--fps=", 0) == 0) { + options.fps = std::stoi(arg.substr(std::strlen("--fps="))); + } else if (arg == "--duration") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--duration requires a value"); + } + options.duration_seconds = std::stoi(value); + } else if (arg.rfind("--duration=", 0) == 0) { + options.duration_seconds = std::stoi(arg.substr(std::strlen("--duration="))); + } else if (arg == "--fullscreen") { + options.fullscreen = true; + } else if (arg == "--no-vsync") { + options.vsync = false; + } else if (arg == "--static-frame") { + options.static_frame = true; + } else if (arg == "--gpu-pattern") { + options.gpu_pattern = true; + } else if (arg == "--uncapped") { + options.uncapped = true; + } else if (arg == "--no-hud") { + options.hud = false; + } else if (arg == "--port") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--port requires a value"); + } + options.port = std::stoi(value); + } else if (arg.rfind("--port=", 0) == 0) { + options.port = std::stoi(arg.substr(std::strlen("--port="))); + } else if (arg == "--scale-mode") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--scale-mode requires a value"); + } + options.scale_mode = value; + } else if (arg.rfind("--scale-mode=", 0) == 0) { + options.scale_mode = arg.substr(std::strlen("--scale-mode=")); + } else if (arg == "--csv") { + if (!ConsumeValue(i, argc, argv, &value)) { + throw std::runtime_error("--csv requires a value"); + } + options.csv_path = value; + } else if (arg.rfind("--csv=", 0) == 0) { + options.csv_path = arg.substr(std::strlen("--csv=")); + } else { + throw std::runtime_error("unknown argument: " + arg); + } + } + + if (!options.synthetic && !options.transport_sink && options.decode_file.empty()) { + throw std::runtime_error("choose --synthetic, --transport-sink, or --decode-file"); + } + if (options.fps <= 0 || options.duration_seconds <= 0) { + throw std::runtime_error("--fps and --duration must be positive"); + } + if (options.output_width <= 0) { + options.output_width = options.width; + } + if (options.output_height <= 0) { + options.output_height = options.height; + } + if (options.scale_mode != "nearest" && options.scale_mode != "linear") { + throw std::runtime_error("--scale-mode must be nearest or linear"); + } + return options; +} + +LRESULT CALLBACK WindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { + switch (msg) { + case WM_KEYDOWN: + if (wparam == VK_ESCAPE) { + DestroyWindow(hwnd); + return 0; + } + break; + case WM_DESTROY: + PostQuitMessage(0); + return 0; + } + return DefWindowProcW(hwnd, msg, wparam, lparam); +} + +std::wstring g_hud_text; + +LRESULT CALLBACK HudWindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) { + switch (msg) { + case WM_PAINT: { + PAINTSTRUCT ps = {}; + HDC dc = BeginPaint(hwnd, &ps); + RECT rect = {}; + GetClientRect(hwnd, &rect); + HBRUSH brush = CreateSolidBrush(RGB(0, 0, 0)); + FillRect(dc, &rect, brush); + DeleteObject(brush); + SetBkMode(dc, TRANSPARENT); + SetTextColor(dc, RGB(120, 255, 180)); + DrawTextW(dc, g_hud_text.c_str(), -1, &rect, + DT_LEFT | DT_TOP | DT_NOPREFIX | DT_WORDBREAK); + EndPaint(hwnd, &ps); + return 0; + } + } + return DefWindowProcW(hwnd, msg, wparam, lparam); +} + +class HudOverlay { + public: + void Create(HWND target, bool enabled) { + if (!enabled) { + return; + } + + HINSTANCE instance = GetModuleHandleW(nullptr); + const wchar_t* class_name = L"iBridgeHudOverlay"; + WNDCLASSW wc = {}; + wc.lpfnWndProc = HudWindowProc; + wc.hInstance = instance; + wc.lpszClassName = class_name; + wc.hCursor = LoadCursor(nullptr, IDC_ARROW); + RegisterClassW(&wc); + + RECT target_rect = {}; + GetWindowRect(target, &target_rect); + hwnd_ = CreateWindowExW(WS_EX_TOPMOST | WS_EX_LAYERED | WS_EX_TOOLWINDOW, + class_name, L"", WS_POPUP | WS_VISIBLE, + target_rect.left + 24, target_rect.top + 24, 620, 150, + nullptr, nullptr, instance, nullptr); + if (!hwnd_) { + CheckHR(HRESULT_FROM_WIN32(GetLastError()), "CreateWindowExW HUD"); + } + SetLayeredWindowAttributes(hwnd_, 0, 210, LWA_ALPHA); + } + + void Update(const std::string& text) { + if (!hwnd_) { + return; + } + g_hud_text.assign(text.begin(), text.end()); + InvalidateRect(hwnd_, nullptr, TRUE); + UpdateWindow(hwnd_); + } + + private: + HWND hwnd_ = nullptr; +}; + +HWND CreateBenchmarkWindow(const Options& options) { + SetProcessDPIAware(); + + HINSTANCE instance = GetModuleHandleW(nullptr); + const wchar_t* class_name = L"iBridgePlanASyntheticWindow"; + + WNDCLASSW wc = {}; + wc.lpfnWndProc = WindowProc; + wc.hInstance = instance; + wc.lpszClassName = class_name; + wc.hCursor = LoadCursor(nullptr, IDC_ARROW); + RegisterClassW(&wc); + + DWORD style = options.fullscreen ? WS_POPUP : WS_OVERLAPPEDWINDOW; + RECT rect = {0, 0, options.output_width, options.output_height}; + + int x = CW_USEDEFAULT; + int y = CW_USEDEFAULT; + int window_width = options.output_width; + int window_height = options.output_height; + + if (options.fullscreen) { + MONITORINFO monitor_info = {}; + monitor_info.cbSize = sizeof(monitor_info); + HMONITOR monitor = MonitorFromPoint({0, 0}, MONITOR_DEFAULTTOPRIMARY); + GetMonitorInfoW(monitor, &monitor_info); + rect = monitor_info.rcMonitor; + x = rect.left; + y = rect.top; + window_width = rect.right - rect.left; + window_height = rect.bottom - rect.top; + } else { + AdjustWindowRect(&rect, style, FALSE); + window_width = rect.right - rect.left; + window_height = rect.bottom - rect.top; + } + + HWND hwnd = CreateWindowExW(0, class_name, L"iBridge Synthetic Renderer", + style, x, y, window_width, window_height, nullptr, + nullptr, instance, nullptr); + if (!hwnd) { + CheckHR(HRESULT_FROM_WIN32(GetLastError()), "CreateWindowExW"); + } + ShowWindow(hwnd, SW_SHOW); + UpdateWindow(hwnd); + return hwnd; +} + +ComPtr CompileShader(const char* source, + const char* entry, + const char* target) { + ComPtr shader; + ComPtr errors; + HRESULT hr = D3DCompile(source, std::strlen(source), nullptr, nullptr, nullptr, + entry, target, D3DCOMPILE_ENABLE_STRICTNESS, 0, + &shader, &errors); + if (FAILED(hr)) { + std::string message = errors ? static_cast(errors->GetBufferPointer()) + : HResultMessage(hr); + throw std::runtime_error("D3DCompile failed: " + message); + } + return shader; +} + +class D3DRenderer { + public: + D3DRenderer(HWND hwnd, const Options& options) : options_(options) { + CreateDeviceAndSwapChain(hwnd); + CreateRenderTarget(); + CreateFrameTexture(); + CreateShaders(); + CreateSampler(); + } + + FrameStats Render(uint64_t frame_id, + const std::vector& pixels, + bool upload_frame) { + FrameStats stats; + stats.frame_id = frame_id; + + if (upload_frame) { + auto upload_start = Clock::now(); + context_->UpdateSubresource( + frame_texture_.Get(), 0, nullptr, pixels.data(), + static_cast(options_.width * sizeof(uint32_t)), 0); + auto upload_end = Clock::now(); + stats.upload_ms = MsSince(upload_start, upload_end); + } + + auto draw_start = Clock::now(); + const float clear_color[4] = {0.0f, 0.0f, 0.0f, 1.0f}; + context_->ClearRenderTargetView(render_target_.Get(), clear_color); + context_->OMSetRenderTargets(1, render_target_.GetAddressOf(), nullptr); + context_->RSSetViewports(1, &viewport_); + context_->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + context_->VSSetShader(vertex_shader_.Get(), nullptr, 0); + context_->PSSetShader( + options_.gpu_pattern ? gpu_pixel_shader_.Get() : pixel_shader_.Get(), + nullptr, 0); + context_->PSSetSamplers(0, 1, sampler_.GetAddressOf()); + if (!options_.gpu_pattern) { + context_->PSSetShaderResources(0, 1, frame_srv_.GetAddressOf()); + } + context_->Draw(3, 0); + CheckHR(swap_chain_->Present(options_.vsync ? 1 : 0, 0), "Present"); + auto draw_end = Clock::now(); + stats.draw_present_ms = MsSince(draw_start, draw_end); + return stats; + } + + private: + void CreateDeviceAndSwapChain(HWND hwnd) { + DXGI_SWAP_CHAIN_DESC desc = {}; + desc.BufferDesc.Width = static_cast(options_.output_width); + desc.BufferDesc.Height = static_cast(options_.output_height); + desc.BufferDesc.RefreshRate.Numerator = static_cast(options_.fps); + desc.BufferDesc.RefreshRate.Denominator = 1; + desc.BufferDesc.Format = DXGI_FORMAT_B8G8R8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.SampleDesc.Quality = 0; + desc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; + desc.BufferCount = 2; + desc.OutputWindow = hwnd; + desc.Windowed = TRUE; + desc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD; + + D3D_FEATURE_LEVEL requested[] = { + D3D_FEATURE_LEVEL_11_1, + D3D_FEATURE_LEVEL_11_0, + }; + D3D_FEATURE_LEVEL created = D3D_FEATURE_LEVEL_11_0; + + CheckHR(D3D11CreateDeviceAndSwapChain( + nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, + D3D11_CREATE_DEVICE_BGRA_SUPPORT, requested, 2, + D3D11_SDK_VERSION, &desc, &swap_chain_, &device_, &created, + &context_), + "D3D11CreateDeviceAndSwapChain"); + } + + void CreateRenderTarget() { + ComPtr back_buffer; + CheckHR(swap_chain_->GetBuffer(0, IID_PPV_ARGS(&back_buffer)), + "IDXGISwapChain::GetBuffer"); + CheckHR(device_->CreateRenderTargetView(back_buffer.Get(), nullptr, + &render_target_), + "CreateRenderTargetView"); + viewport_.TopLeftX = 0.0f; + viewport_.TopLeftY = 0.0f; + viewport_.Width = static_cast(options_.output_width); + viewport_.Height = static_cast(options_.output_height); + viewport_.MinDepth = 0.0f; + viewport_.MaxDepth = 1.0f; + } + + void CreateFrameTexture() { + D3D11_TEXTURE2D_DESC desc = {}; + desc.Width = static_cast(options_.width); + desc.Height = static_cast(options_.height); + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_B8G8R8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + + CheckHR(device_->CreateTexture2D(&desc, nullptr, &frame_texture_), + "CreateTexture2D"); + CheckHR(device_->CreateShaderResourceView(frame_texture_.Get(), nullptr, + &frame_srv_), + "CreateShaderResourceView"); + } + + void CreateShaders() { + const char* hlsl = R"( +Texture2D frame_texture : register(t0); +SamplerState frame_sampler : register(s0); + +struct VsOut { + float4 pos : SV_POSITION; + float2 uv : TEXCOORD0; +}; + +VsOut vs_main(uint id : SV_VertexID) { + float2 pos[3] = { + float2(-1.0, -1.0), + float2(-1.0, 3.0), + float2( 3.0, -1.0) + }; + float2 uv[3] = { + float2(0.0, 1.0), + float2(0.0, -1.0), + float2(2.0, 1.0) + }; + VsOut output; + output.pos = float4(pos[id], 0.0, 1.0); + output.uv = uv[id]; + return output; +} + +float4 ps_main(VsOut input) : SV_TARGET { + return frame_texture.Sample(frame_sampler, input.uv); +} + +float4 ps_gpu_pattern(VsOut input) : SV_TARGET { + float2 grid = floor(input.uv * float2(80.0, 45.0)); + float checker = fmod(grid.x + grid.y, 2.0); + float3 a = float3(input.uv.x, input.uv.y, 0.15); + float3 b = float3(0.05, input.uv.x, input.uv.y); + return float4(lerp(a, b, checker), 1.0); +} +)"; + + ComPtr vs = CompileShader(hlsl, "vs_main", "vs_5_0"); + ComPtr ps = CompileShader(hlsl, "ps_main", "ps_5_0"); + ComPtr gpu_ps = CompileShader(hlsl, "ps_gpu_pattern", "ps_5_0"); + CheckHR(device_->CreateVertexShader(vs->GetBufferPointer(), + vs->GetBufferSize(), nullptr, + &vertex_shader_), + "CreateVertexShader"); + CheckHR(device_->CreatePixelShader(ps->GetBufferPointer(), + ps->GetBufferSize(), nullptr, + &pixel_shader_), + "CreatePixelShader"); + CheckHR(device_->CreatePixelShader(gpu_ps->GetBufferPointer(), + gpu_ps->GetBufferSize(), nullptr, + &gpu_pixel_shader_), + "CreatePixelShader"); + } + + void CreateSampler() { + D3D11_SAMPLER_DESC desc = {}; + desc.Filter = options_.scale_mode == "linear" ? D3D11_FILTER_MIN_MAG_MIP_LINEAR + : D3D11_FILTER_MIN_MAG_MIP_POINT; + desc.AddressU = D3D11_TEXTURE_ADDRESS_CLAMP; + desc.AddressV = D3D11_TEXTURE_ADDRESS_CLAMP; + desc.AddressW = D3D11_TEXTURE_ADDRESS_CLAMP; + desc.ComparisonFunc = D3D11_COMPARISON_NEVER; + desc.MinLOD = 0; + desc.MaxLOD = D3D11_FLOAT32_MAX; + CheckHR(device_->CreateSamplerState(&desc, &sampler_), "CreateSamplerState"); + } + + Options options_; + ComPtr device_; + ComPtr context_; + ComPtr swap_chain_; + ComPtr render_target_; + ComPtr frame_texture_; + ComPtr frame_srv_; + ComPtr vertex_shader_; + ComPtr pixel_shader_; + ComPtr gpu_pixel_shader_; + ComPtr sampler_; + D3D11_VIEWPORT viewport_ = {}; +}; + +void FillSyntheticFrame(std::vector* pixels, + int width, + int height, + uint64_t frame_id) { + uint32_t* data = pixels->data(); + const uint32_t frame = static_cast(frame_id & 0xff); + for (int y = 0; y < height; ++y) { + const uint32_t gy = static_cast((y + frame) & 0xff); + for (int x = 0; x < width; ++x) { + const uint32_t bx = static_cast((x + frame) & 0xff); + const uint32_t r = static_cast(((x >> 5) + (y >> 5) + frame) & 0xff); + data[static_cast(y) * width + x] = + 0xff000000u | (r << 16) | (gy << 8) | bx; + } + } +} + +bool PumpMessages() { + MSG msg = {}; + while (PeekMessageW(&msg, nullptr, 0, 0, PM_REMOVE)) { + if (msg.message == WM_QUIT) { + return false; + } + TranslateMessage(&msg); + DispatchMessageW(&msg); + } + return true; +} + +double Percentile(std::vector values, double percentile) { + if (values.empty()) { + return 0.0; + } + std::sort(values.begin(), values.end()); + const double index = (percentile / 100.0) * (values.size() - 1); + const size_t lower = static_cast(index); + const size_t upper = std::min(lower + 1, values.size() - 1); + const double fraction = index - static_cast(lower); + return values[lower] * (1.0 - fraction) + values[upper] * fraction; +} + +void WriteCsv(const std::string& path, const std::vector& stats) { + if (path.empty()) { + return; + } + std::ofstream csv(path); + if (!csv) { + throw std::runtime_error("could not open CSV output: " + path); + } + csv << "frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget\n"; + csv << std::fixed << std::setprecision(4); + for (const FrameStats& frame : stats) { + csv << frame.frame_id << ',' << frame.fill_ms << ',' << frame.upload_ms << ',' + << frame.draw_present_ms << ',' << frame.total_ms << ',' + << (frame.missed_budget ? 1 : 0) << '\n'; + } +} + +void WriteTransportCsv(const std::string& path, + const std::vector& stats) { + if (path.empty()) { + return; + } + std::ofstream csv(path); + if (!csv) { + throw std::runtime_error("could not open CSV output: " + path); + } + csv << "frame_id,payload_len,dropped_before,missing_before,receive_ms,width," + "height,fps_target,codec,flags\n"; + csv << std::fixed << std::setprecision(4); + for (const TransportStats& frame : stats) { + csv << frame.frame_id << ',' << frame.payload_len << ',' + << frame.dropped_before << ',' << frame.missing_before << ',' + << frame.receive_ms << ',' << frame.width << ',' << frame.height << ',' + << frame.fps_target << ',' << static_cast(frame.codec) << ',' + << frame.flags << '\n'; + } +} + +void WriteDecodeCsv(const std::string& path, + const std::vector& stats) { + if (path.empty()) { + return; + } + std::ofstream csv(path); + if (!csv) { + throw std::runtime_error("could not open CSV output: " + path); + } + csv << "frame_id,decode_ms,upload_ms,render_ms,total_ms,missed_budget\n"; + csv << std::fixed << std::setprecision(4); + for (const DecodeFrameStats& frame : stats) { + csv << frame.frame_id << ',' << frame.decode_ms << ',' << frame.upload_ms + << ',' << frame.render_ms << ',' << frame.total_ms << ',' + << (frame.missed_budget ? 1 : 0) << '\n'; + } +} + +class WinsockSession { + public: + WinsockSession() { + WSADATA data = {}; + const int result = WSAStartup(MAKEWORD(2, 2), &data); + if (result != 0) { + throw std::runtime_error("WSAStartup failed: " + std::to_string(result)); + } + } + + ~WinsockSession() { WSACleanup(); } +}; + +class SocketHandle { + public: + explicit SocketHandle(SOCKET socket = INVALID_SOCKET) : socket_(socket) {} + ~SocketHandle() { Close(); } + + SocketHandle(const SocketHandle&) = delete; + SocketHandle& operator=(const SocketHandle&) = delete; + + SOCKET get() const { return socket_; } + + SOCKET release() { + SOCKET out = socket_; + socket_ = INVALID_SOCKET; + return out; + } + + void reset(SOCKET socket) { + Close(); + socket_ = socket; + } + + private: + void Close() { + if (socket_ != INVALID_SOCKET) { + closesocket(socket_); + socket_ = INVALID_SOCKET; + } + } + + SOCKET socket_ = INVALID_SOCKET; +}; + +class ComSession { + public: + ComSession() { + CheckHR(CoInitializeEx(nullptr, COINIT_MULTITHREADED), "CoInitializeEx"); + } + + ~ComSession() { CoUninitialize(); } + + ComSession(const ComSession&) = delete; + ComSession& operator=(const ComSession&) = delete; +}; + +class MediaFoundationSession { + public: + MediaFoundationSession() { + CheckHR(MFStartup(MF_VERSION, MFSTARTUP_LITE), "MFStartup"); + } + + ~MediaFoundationSession() { MFShutdown(); } + + MediaFoundationSession(const MediaFoundationSession&) = delete; + MediaFoundationSession& operator=(const MediaFoundationSession&) = delete; +}; + +std::wstring Utf8ToWide(const std::string& text) { + if (text.empty()) { + return std::wstring(); + } + const int required = MultiByteToWideChar(CP_UTF8, 0, text.c_str(), -1, nullptr, 0); + if (required <= 0) { + CheckHR(HRESULT_FROM_WIN32(GetLastError()), "MultiByteToWideChar size"); + } + std::wstring wide(static_cast(required), L'\0'); + MultiByteToWideChar(CP_UTF8, 0, text.c_str(), -1, wide.data(), required); + wide.resize(static_cast(required - 1)); + return wide; +} + +struct DecodedVideoFrame { + std::vector pixels; + int width = 0; + int height = 0; + LONGLONG sample_time = 0; +}; + +class MediaFileDecoder { + public: + explicit MediaFileDecoder(const std::string& path) { + const std::wstring wide_path = Utf8ToWide(path); + CheckHR(MFCreateSourceReaderFromURL(wide_path.c_str(), nullptr, &reader_), + "MFCreateSourceReaderFromURL"); + + ComPtr output_type; + CheckHR(MFCreateMediaType(&output_type), "MFCreateMediaType output"); + CheckHR(output_type->SetGUID(MF_MT_MAJOR_TYPE, MFMediaType_Video), + "Set output major type"); + CheckHR(output_type->SetGUID(MF_MT_SUBTYPE, MFVideoFormat_RGB32), + "Set output subtype RGB32"); + CheckHR(reader_->SetCurrentMediaType(MF_SOURCE_READER_FIRST_VIDEO_STREAM, + nullptr, output_type.Get()), + "SetCurrentMediaType RGB32"); + + ComPtr current_type; + CheckHR(reader_->GetCurrentMediaType(MF_SOURCE_READER_FIRST_VIDEO_STREAM, + ¤t_type), + "GetCurrentMediaType"); + UINT32 width = 0; + UINT32 height = 0; + CheckHR(MFGetAttributeSize(current_type.Get(), MF_MT_FRAME_SIZE, &width, + &height), + "MFGetAttributeSize frame size"); + width_ = static_cast(width); + height_ = static_cast(height); + } + + int width() const { return width_; } + int height() const { return height_; } + + bool ReadFrame(DecodedVideoFrame* frame, double* decode_ms) { + DWORD stream_index = 0; + DWORD flags = 0; + LONGLONG sample_time = 0; + ComPtr sample; + + const auto start = Clock::now(); + CheckHR(reader_->ReadSample(MF_SOURCE_READER_FIRST_VIDEO_STREAM, 0, + &stream_index, &flags, &sample_time, &sample), + "ReadSample"); + const auto end = Clock::now(); + *decode_ms = MsSince(start, end); + + if (flags & MF_SOURCE_READERF_ENDOFSTREAM) { + return false; + } + if (!sample) { + return true; + } + + ComPtr buffer; + CheckHR(sample->ConvertToContiguousBuffer(&buffer), + "ConvertToContiguousBuffer"); + + BYTE* data = nullptr; + DWORD max_length = 0; + DWORD current_length = 0; + CheckHR(buffer->Lock(&data, &max_length, ¤t_length), "buffer Lock"); + const size_t expected = + static_cast(width_) * static_cast(height_) * sizeof(uint32_t); + if (current_length < expected) { + buffer->Unlock(); + throw std::runtime_error("decoded frame is smaller than expected RGB32 size"); + } + + frame->pixels.resize(static_cast(width_) * height_); + std::memcpy(frame->pixels.data(), data, expected); + buffer->Unlock(); + frame->width = width_; + frame->height = height_; + frame->sample_time = sample_time; + return true; + } + + private: + ComPtr reader_; + int width_ = 0; + int height_ = 0; +}; + +bool RecvAll(SOCKET socket, void* buffer, int bytes) { + char* cursor = static_cast(buffer); + int received = 0; + while (received < bytes) { + const int result = recv(socket, cursor + received, bytes - received, 0); + if (result <= 0) { + return false; + } + received += result; + } + return true; +} + +std::string RecvLine(SOCKET socket) { + std::string line; + char ch = 0; + while (recv(socket, &ch, 1, 0) == 1) { + if (ch == '\n') { + break; + } + line.push_back(ch); + if (line.size() > 4096) { + throw std::runtime_error("handshake line too long"); + } + } + return line; +} + +int RunTransportSink(const Options& options) { + constexpr uint32_t kMagic = 0x47524249; + constexpr uint16_t kVersion = 0; + constexpr uint16_t kHeaderLen = 80; + + WinsockSession winsock; + SocketHandle listener(socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)); + if (listener.get() == INVALID_SOCKET) { + throw std::runtime_error("socket failed"); + } + + sockaddr_in address = {}; + address.sin_family = AF_INET; + address.sin_addr.s_addr = htonl(INADDR_ANY); + address.sin_port = htons(static_cast(options.port)); + + int reuse = 1; + setsockopt(listener.get(), SOL_SOCKET, SO_REUSEADDR, + reinterpret_cast(&reuse), sizeof(reuse)); + + if (bind(listener.get(), reinterpret_cast(&address), + sizeof(address)) == SOCKET_ERROR) { + throw std::runtime_error("bind failed: " + std::to_string(WSAGetLastError())); + } + if (listen(listener.get(), 1) == SOCKET_ERROR) { + throw std::runtime_error("listen failed: " + std::to_string(WSAGetLastError())); + } + + std::cout << "iBridge receiver transport sink listening on port " + << options.port << "\n"; + + SocketHandle client(accept(listener.get(), nullptr, nullptr)); + if (client.get() == INVALID_SOCKET) { + throw std::runtime_error("accept failed: " + std::to_string(WSAGetLastError())); + } + + int timeout_ms = 10000; + setsockopt(client.get(), SOL_SOCKET, SO_RCVTIMEO, + reinterpret_cast(&timeout_ms), sizeof(timeout_ms)); + + const std::string handshake = RecvLine(client.get()); + if (handshake.find("\"magic\":\"IBRIDGE\"") == std::string::npos || + handshake.find("\"version\":0") == std::string::npos) { + throw std::runtime_error("bad protocol handshake"); + } + + std::vector stats; + const auto run_start = Clock::now(); + uint64_t previous_frame_id = 0; + bool have_previous = false; + uint64_t missing_total = 0; + uint64_t payload_total = 0; + + while (std::chrono::duration_cast(Clock::now() - run_start) + .count() < options.duration_seconds) { + ProtocolFrameHeaderV0 header = {}; + const auto frame_start = Clock::now(); + if (!RecvAll(client.get(), &header, sizeof(header))) { + break; + } + + if (header.magic != kMagic) { + throw std::runtime_error("wrong protocol magic"); + } + if (header.version != kVersion) { + throw std::runtime_error("unsupported protocol version"); + } + if (header.header_len != kHeaderLen) { + throw std::runtime_error("unsupported protocol header length"); + } + + std::vector payload(header.payload_len); + if (!payload.empty() && + !RecvAll(client.get(), payload.data(), static_cast(payload.size()))) { + break; + } + + TransportStats frame = {}; + frame.frame_id = header.frame_id; + frame.payload_len = header.payload_len; + frame.dropped_before = header.dropped_before; + frame.width = header.width; + frame.height = header.height; + frame.fps_target = header.fps_target; + frame.codec = header.codec; + frame.flags = header.flags; + + if (have_previous && header.frame_id > previous_frame_id + 1) { + frame.missing_before = header.frame_id - previous_frame_id - 1; + missing_total += frame.missing_before; + } + previous_frame_id = header.frame_id; + have_previous = true; + + frame.receive_ms = MsSince(frame_start, Clock::now()); + payload_total += header.payload_len; + stats.push_back(frame); + } + + WriteTransportCsv(options.csv_path, stats); + + const double elapsed_sec = + std::chrono::duration(Clock::now() - run_start).count(); + const double mbps = + elapsed_sec > 0.0 ? (static_cast(payload_total) * 8.0 / 1'000'000.0) / + elapsed_sec + : 0.0; + + std::cout << std::fixed << std::setprecision(3) + << "iBridge transport sink\n" + << "frames_received=" << stats.size() << '\n' + << "payload_bytes=" << payload_total << '\n' + << "receive_mbps=" << mbps << '\n' + << "missing_frames=" << missing_total << '\n' + << "csv=" << (options.csv_path.empty() ? "none" : options.csv_path) + << '\n'; + + return 0; +} + +int RunSynthetic(const Options& options) { + HWND hwnd = CreateBenchmarkWindow(options); + HudOverlay hud; + hud.Create(hwnd, options.hud); + D3DRenderer renderer(hwnd, options); + + std::vector pixels; + if (!options.gpu_pattern) { + pixels.resize(static_cast(options.width) * options.height); + } + std::vector stats; + stats.reserve(static_cast(options.fps) * options.duration_seconds); + + const double budget_ms = 1000.0 / static_cast(options.fps); + const auto run_duration = std::chrono::seconds(options.duration_seconds); + const auto frame_duration = + std::chrono::duration(1.0 / static_cast(options.fps)); + + if (!options.gpu_pattern) { + FillSyntheticFrame(&pixels, options.width, options.height, 0); + } + + const auto run_start = Clock::now(); + auto next_frame_time = run_start; + uint64_t frame_id = 0; + + while (Clock::now() - run_start < run_duration) { + if (!PumpMessages()) { + break; + } + + const auto frame_start = Clock::now(); + FrameStats frame; + frame.frame_id = frame_id; + + const bool fill_frame = + !options.gpu_pattern && (!options.static_frame || frame_id == 0); + const bool upload_frame = + !options.gpu_pattern && (!options.static_frame || frame_id == 0); + + if (fill_frame) { + const auto fill_start = Clock::now(); + FillSyntheticFrame(&pixels, options.width, options.height, frame_id); + const auto fill_end = Clock::now(); + frame.fill_ms = MsSince(fill_start, fill_end); + } + + FrameStats render_stats = renderer.Render(frame_id, pixels, upload_frame); + frame.upload_ms = render_stats.upload_ms; + frame.draw_present_ms = render_stats.draw_present_ms; + + const auto frame_end = Clock::now(); + frame.total_ms = MsSince(frame_start, frame_end); + frame.missed_budget = frame.total_ms > budget_ms; + stats.push_back(frame); + + if (frame_id % 30 == 0) { + const double elapsed = + std::chrono::duration(Clock::now() - run_start).count(); + const double running_fps = elapsed > 0.0 ? stats.size() / elapsed : 0.0; + std::ostringstream hud_text; + hud_text << "iBridge Receiver\n" + << options.width << "x" << options.height << " @ " << options.fps + << " -> " << options.output_width << "x" << options.output_height + << " @ " << options.fps << " target\n" + << "fps " << std::fixed << std::setprecision(2) << running_fps + << " total " << frame.total_ms << " ms\n" + << "fill " << frame.fill_ms << " ms upload " << frame.upload_ms + << " ms present " << frame.draw_present_ms << " ms\n" + << "mode " + << (options.gpu_pattern ? "gpu-pattern" + : (options.static_frame ? "static" : "dynamic")) + << " scale " << options.scale_mode; + hud.Update(hud_text.str()); + } + + ++frame_id; + next_frame_time += std::chrono::duration_cast(frame_duration); + if (!options.vsync && !options.uncapped) { + std::this_thread::sleep_until(next_frame_time); + } + } + + const auto run_end = Clock::now(); + const double elapsed_sec = std::chrono::duration(run_end - run_start).count(); + const double actual_fps = stats.empty() ? 0.0 : stats.size() / elapsed_sec; + + std::vector totals; + totals.reserve(stats.size()); + size_t missed = 0; + double max_total = 0.0; + for (const FrameStats& frame : stats) { + totals.push_back(frame.total_ms); + if (frame.missed_budget) { + ++missed; + } + max_total = std::max(max_total, frame.total_ms); + } + + WriteCsv(options.csv_path, stats); + + std::cout << std::fixed << std::setprecision(3) + << "iBridge Plan A synthetic renderer\n" + << "source_resolution=" << options.width << 'x' << options.height << '\n' + << "output_resolution=" << options.output_width << 'x' + << options.output_height << '\n' + << "target_fps=" << options.fps << '\n' + << "actual_fps=" << actual_fps << '\n' + << "frames=" << stats.size() << '\n' + << "budget_ms=" << budget_ms << '\n' + << "p95_total_ms=" << Percentile(totals, 95.0) << '\n' + << "max_total_ms=" << max_total << '\n' + << "missed_frames=" << missed << '\n' + << "vsync=" << (options.vsync ? "on" : "off") << '\n' + << "static_frame=" << (options.static_frame ? "on" : "off") << '\n' + << "gpu_pattern=" << (options.gpu_pattern ? "on" : "off") << '\n' + << "uncapped=" << (options.uncapped ? "on" : "off") << '\n' + << "scale_mode=" << options.scale_mode << '\n' + << "hud=" << (options.hud ? "on" : "off") << '\n'; + + return 0; +} + +int RunDecodeFile(const Options& options) { + ComSession com; + MediaFoundationSession mf; + MediaFileDecoder decoder(options.decode_file); + + Options render_options = options; + render_options.synthetic = false; + render_options.transport_sink = false; + render_options.width = decoder.width(); + render_options.height = decoder.height(); + render_options.gpu_pattern = false; + render_options.static_frame = false; + if (!render_options.output_resolution_set) { + render_options.output_width = decoder.width(); + render_options.output_height = decoder.height(); + } + + HWND hwnd = CreateBenchmarkWindow(render_options); + HudOverlay hud; + hud.Create(hwnd, render_options.hud); + D3DRenderer renderer(hwnd, render_options); + + std::vector stats; + stats.reserve(static_cast(render_options.fps) * + render_options.duration_seconds); + + const double budget_ms = 1000.0 / static_cast(render_options.fps); + const auto run_duration = + std::chrono::seconds(render_options.duration_seconds); + const auto run_start = Clock::now(); + uint64_t frame_id = 0; + + while (Clock::now() - run_start < run_duration) { + if (!PumpMessages()) { + break; + } + + DecodedVideoFrame decoded; + double decode_ms = 0.0; + const auto frame_start = Clock::now(); + const bool have_frame = decoder.ReadFrame(&decoded, &decode_ms); + if (!have_frame) { + break; + } + if (decoded.pixels.empty()) { + continue; + } + + FrameStats render_stats = renderer.Render(frame_id, decoded.pixels, true); + const auto frame_end = Clock::now(); + + DecodeFrameStats frame = {}; + frame.frame_id = frame_id; + frame.decode_ms = decode_ms; + frame.upload_ms = render_stats.upload_ms; + frame.render_ms = render_stats.draw_present_ms; + frame.total_ms = MsSince(frame_start, frame_end); + frame.missed_budget = frame.total_ms > budget_ms; + stats.push_back(frame); + + if (frame_id % 30 == 0) { + const double elapsed = + std::chrono::duration(Clock::now() - run_start).count(); + const double running_fps = elapsed > 0.0 ? stats.size() / elapsed : 0.0; + std::ostringstream hud_text; + hud_text << "iBridge Receiver Decode\n" + << render_options.width << "x" << render_options.height << " -> " + << render_options.output_width << "x" << render_options.output_height + << "\n" + << "fps " << std::fixed << std::setprecision(2) << running_fps + << " decode " << frame.decode_ms << " ms\n" + << "upload " << frame.upload_ms << " ms present " + << frame.render_ms << " ms\n" + << "scale " << render_options.scale_mode; + hud.Update(hud_text.str()); + } + + ++frame_id; + } + + const auto run_end = Clock::now(); + const double elapsed_sec = + std::chrono::duration(run_end - run_start).count(); + const double actual_fps = stats.empty() ? 0.0 : stats.size() / elapsed_sec; + + std::vector decode_times; + std::vector total_times; + decode_times.reserve(stats.size()); + total_times.reserve(stats.size()); + size_t missed = 0; + double max_total = 0.0; + double max_decode = 0.0; + for (const DecodeFrameStats& frame : stats) { + decode_times.push_back(frame.decode_ms); + total_times.push_back(frame.total_ms); + if (frame.missed_budget) { + ++missed; + } + max_total = std::max(max_total, frame.total_ms); + max_decode = std::max(max_decode, frame.decode_ms); + } + + WriteDecodeCsv(options.csv_path, stats); + + std::cout << std::fixed << std::setprecision(3) + << "iBridge compressed file decode renderer\n" + << "file=" << options.decode_file << '\n' + << "decoded_resolution=" << render_options.width << 'x' + << render_options.height << '\n' + << "output_resolution=" << render_options.output_width << 'x' + << render_options.output_height << '\n' + << "target_fps=" << render_options.fps << '\n' + << "actual_fps=" << actual_fps << '\n' + << "frames=" << stats.size() << '\n' + << "budget_ms=" << budget_ms << '\n' + << "avg_decode_ms=" + << (decode_times.empty() + ? 0.0 + : std::accumulate(decode_times.begin(), decode_times.end(), 0.0) / + decode_times.size()) + << '\n' + << "p95_decode_ms=" << Percentile(decode_times, 95.0) << '\n' + << "max_decode_ms=" << max_decode << '\n' + << "p95_total_ms=" << Percentile(total_times, 95.0) << '\n' + << "max_total_ms=" << max_total << '\n' + << "missed_frames=" << missed << '\n' + << "scale_mode=" << render_options.scale_mode << '\n' + << "csv=" << (options.csv_path.empty() ? "none" : options.csv_path) + << '\n'; + + return 0; +} + +} // namespace + +int main(int argc, char** argv) { + try { + const Options options = ParseOptions(argc, argv); + if (options.transport_sink) { + return RunTransportSink(options); + } + if (!options.decode_file.empty()) { + return RunDecodeFile(options); + } + return RunSynthetic(options); + } catch (const std::exception& error) { + std::cerr << "error: " << error.what() << "\n\n"; + PrintUsage(); + return 1; + } +} diff --git a/apps/shared-protocol/README.md b/apps/shared-protocol/README.md index ff48787..a57b8ee 100644 --- a/apps/shared-protocol/README.md +++ b/apps/shared-protocol/README.md @@ -3,3 +3,19 @@ Protocol schema, packet headers, mode ids, and parser tests. Keep v0 simple and measurable. + +## v0 header + +`protocol_v0.py` is a standard-library reference parser for the fixed 80-byte frame header described in `specs/protocol_v0.md`. + +Run: + +```bash +python3 apps/shared-protocol/test_protocol_v0.py +``` + +Required receiver behavior: + +- reject wrong magic before reading payload bytes; +- reject wrong version before accepting frame data; +- preserve `frame_id`, payload length, timestamps, flags, and dropped-frame counters for diagnostics. diff --git a/apps/shared-protocol/protocol_v0.py b/apps/shared-protocol/protocol_v0.py new file mode 100644 index 0000000..f029e72 --- /dev/null +++ b/apps/shared-protocol/protocol_v0.py @@ -0,0 +1,109 @@ +from __future__ import annotations + +from dataclasses import dataclass +import struct + + +MAGIC = int.from_bytes(b"IBRG", "little") +VERSION = 0 +HEADER_LEN = 80 + +CODEC_H264 = 1 +CODEC_HEVC = 2 +CODEC_RAW_BGRA = 3 + +COLOR_NV12 = 1 +COLOR_BGRA = 2 +COLOR_P010 = 3 + +FLAG_KEYFRAME = 1 << 0 +FLAG_CURSOR = 1 << 1 +FLAG_END_OF_FRAME = 1 << 2 +FLAG_CONFIG = 1 << 3 + +_HEADER = struct.Struct(" bytes: + return _HEADER.pack( + MAGIC, + VERSION, + HEADER_LEN, + self.session_id, + self.frame_id, + self.chunk_id, + self.chunk_count, + self.width, + self.height, + self.fps_target, + self.codec, + self.color_format, + self.flags, + self.capture_ns, + self.encode_start_ns, + self.encode_done_ns, + self.send_ns, + self.payload_len, + self.dropped_before, + ) + + @classmethod + def decode(cls, data: bytes) -> "FrameHeaderV0": + if len(data) < HEADER_LEN: + raise ProtocolError(f"short header: got {len(data)} bytes, need {HEADER_LEN}") + + fields = _HEADER.unpack(data[:HEADER_LEN]) + magic, version, header_len = fields[:3] + + if magic != MAGIC: + raise ProtocolError("wrong magic") + if version != VERSION: + raise ProtocolError(f"unsupported version: {version}") + if header_len != HEADER_LEN: + raise ProtocolError(f"unsupported header length: {header_len}") + + return cls( + session_id=fields[3], + frame_id=fields[4], + chunk_id=fields[5], + chunk_count=fields[6], + width=fields[7], + height=fields[8], + fps_target=fields[9], + codec=fields[10], + color_format=fields[11], + flags=fields[12], + capture_ns=fields[13], + encode_start_ns=fields[14], + encode_done_ns=fields[15], + send_ns=fields[16], + payload_len=fields[17], + dropped_before=fields[18], + ) + + +def header_size() -> int: + return _HEADER.size diff --git a/apps/shared-protocol/test_protocol_v0.py b/apps/shared-protocol/test_protocol_v0.py new file mode 100644 index 0000000..0becfa3 --- /dev/null +++ b/apps/shared-protocol/test_protocol_v0.py @@ -0,0 +1,80 @@ +import struct +import unittest + +from protocol_v0 import ( + CODEC_HEVC, + COLOR_NV12, + FLAG_END_OF_FRAME, + FLAG_KEYFRAME, + HEADER_LEN, + MAGIC, + ProtocolError, + VERSION, + FrameHeaderV0, + header_size, +) + + +class FrameHeaderV0Tests(unittest.TestCase): + def sample_header(self) -> FrameHeaderV0: + return FrameHeaderV0( + session_id=0x1020304050607080, + frame_id=42, + chunk_id=1, + chunk_count=3, + width=5120, + height=2880, + fps_target=60, + codec=CODEC_HEVC, + color_format=COLOR_NV12, + flags=FLAG_KEYFRAME | FLAG_END_OF_FRAME, + capture_ns=1000, + encode_start_ns=1100, + encode_done_ns=1500, + send_ns=1600, + payload_len=1197, + dropped_before=7, + ) + + def test_header_size_is_fixed_80_bytes(self): + self.assertEqual(header_size(), HEADER_LEN) + self.assertEqual(len(self.sample_header().encode()), HEADER_LEN) + + def test_round_trip_preserves_fields(self): + header = self.sample_header() + decoded = FrameHeaderV0.decode(header.encode()) + self.assertEqual(decoded, header) + + def test_payload_and_dropped_accounting_are_preserved(self): + decoded = FrameHeaderV0.decode(self.sample_header().encode()) + self.assertEqual(decoded.payload_len, 1197) + self.assertEqual(decoded.dropped_before, 7) + + def test_flags_are_preserved(self): + decoded = FrameHeaderV0.decode(self.sample_header().encode()) + self.assertTrue(decoded.flags & FLAG_KEYFRAME) + self.assertTrue(decoded.flags & FLAG_END_OF_FRAME) + + def test_rejects_wrong_magic(self): + packet = bytearray(self.sample_header().encode()) + struct.pack_into("/`: + +- interface name on both machines +- local IP and receiver IP +- link speed if the OS reports it +- ping 100 packets: min/avg/max/loss +- `iperf3` TCP MacBook -> iMac +- `iperf3` TCP iMac -> MacBook +- `iperf3` UDP at 30, 60, and 120 Mbps with jitter/loss +- Tailscale only: `tailscale ping`, `tailscale status`, and `tailscale netcheck` + +## Receiver Setup + +Start an `iperf3` server on the side being tested as receiver: + +```powershell +iperf3 -s +``` + +For reverse-direction TCP, either use `iperf3 -R` from macOS or run the Windows script with the MacBook IP. + +## macOS Runner + +```bash +scripts/mac_network_matrix.sh --case 1gbe --receiver-ip +scripts/mac_network_matrix.sh --case thunderbolt --receiver-ip +scripts/mac_network_matrix.sh --case tailscale --receiver-ip --tailscale-name +``` + +## Windows Runner + +```powershell +scripts\windows_network_matrix.ps1 -Case 1gbe -MacHost +scripts\windows_network_matrix.ps1 -Case thunderbolt -MacHost +scripts\windows_network_matrix.ps1 -Case tailscale -MacHost -TailscaleTarget +``` + +## Interpretation Rules + +- Keep Tailscale, direct local IP, Ethernet, and Thunderbolt Bridge results separate. +- Do not use DERP-relayed Tailscale throughput to reject LAN or Thunderbolt Bridge viability. +- For display streaming, high backlog is a latency failure even if every frame eventually arrives. +- The next implementation target remains Plan C compressed end-to-end display before UDP or tiled 5K work. diff --git a/benchmarks/plans/transport_benchmark.md b/benchmarks/plans/transport_benchmark.md new file mode 100644 index 0000000..e118fa0 --- /dev/null +++ b/benchmarks/plans/transport_benchmark.md @@ -0,0 +1,58 @@ +# Plan A Transport Benchmark Plan + +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +## Goal + +Measure real LAN and Thunderbolt Bridge throughput/latency before making any Plan A downshift decision. + +## LAN + +Receiver side: + +```powershell +iperf3 -s +``` + +Primary macOS side: + +```bash +scripts/mac_network_probe.sh +``` + +Expected artifacts: + +```text +logs/ping_.txt +logs/iperf3_.txt +``` + +## Thunderbolt Bridge + +Required hardware: + +- Apple Thunderbolt 3 to Thunderbolt 2 Adapter +- Thunderbolt 2 cable +- iMac Thunderbolt 2 port +- MacBook USB-C/Thunderbolt port + +Apple documents IP communication between two Thunderbolt-equipped Macs over Thunderbolt Bridge. [ë‚´ìš© 출처 : https://support.apple.com/guide/mac-help/ip-thunderbolt-connect-mac-computers-mchld53dd2f5/mac] + +Apple documents the TB3-to-TB2 adapter as supporting Thunderbolt/Thunderbolt 2 data transfer up to 20Gbps with Thunderbolt 2 devices. [ë‚´ìš© 출처 : https://support.apple.com/en-us/111753] + +Run the same `iperf3` and ping tests over the Thunderbolt interface IP if available. + +## Required Metrics + +- ping min/avg/max/stddev +- iperf3 sender bitrate +- iperf3 receiver bitrate +- retransmits if TCP +- interface used: Ethernet or Thunderbolt Bridge +- cable/adapter path + +## Plan A Gate + +Raw RGB24 5K60 requires 21.234Gbps before overhead. YUV 4:2:0 8-bit requires 10.617Gbps before overhead. See `benchmarks/theory/5k60_bandwidth.md`. + +Plan A can continue only if measured transport and receiver render results leave enough headroom for capture, packetization, copies, and render. If measured transport is below near-raw requirements, Plan A should be recorded as failed for that transport and Plan B should start for compressed 5K60. diff --git a/benchmarks/plans/windows_synthetic_renderer.md b/benchmarks/plans/windows_synthetic_renderer.md new file mode 100644 index 0000000..92802e0 --- /dev/null +++ b/benchmarks/plans/windows_synthetic_renderer.md @@ -0,0 +1,71 @@ +# Windows Synthetic 5K60 Renderer Plan + +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +## Goal + +Measure whether the Windows-booted iMac can locally display generated 5120x2880 frames at 60 fps without network, decode, or capture overhead. + +This isolates the receiver-side floor: + +```text +CPU synthetic frame generation +-> D3D11 texture upload +-> fullscreen draw +-> present +-> per-frame timing CSV +``` + +## Target Command + +```powershell +cmake -S apps/receiver-windows -B apps/receiver-windows/build -G "Visual Studio 17 2022" -A x64 +cmake --build apps/receiver-windows/build --config Release +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --csv benchmarks\runs\YYYY-MM-DD_HHMM_plan_a_synthetic_5k60\receiver_stats.csv +``` + +Use `--no-vsync` only for a separate GPU upload/render ceiling run. The first acceptance run should keep vsync on because the product target is display-like behavior. + +## Metrics + +Required metrics: + +- target fps +- actual fps +- frame budget in ms +- synthetic CPU fill ms +- D3D11 texture upload ms +- draw/present ms +- total frame ms +- missed frames +- p95 total frame ms +- max total frame ms + +## Pass Gate + +Plan A receiver-side rendering can continue only if: + +- actual fps >= 58 for a 60-second 5120x2880 run; +- p95 total frame time <= 16.667 ms; +- missed frames are explained and rare; +- no receiver crash or device loss occurs. + +## Fail Gate + +Plan A raw/near-raw should move toward Plan B if the iMac cannot locally render synthetic 5K60 without network/decode overhead, especially if: + +- actual fps < 55; +- p95 total frame time is consistently above 16.667 ms; +- D3D11 upload/present alone exceeds the frame budget; +- fullscreen 5K mode is unavailable on the Windows iMac. + +## Artifacts + +Expected run folder: + +```text +benchmarks/runs/YYYY-MM-DD_HHMM_plan_a_synthetic_5k60/ +├── receiver_stats.csv +├── summary.md +└── screenshots/ +``` diff --git a/benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md b/benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md new file mode 100644 index 0000000..1bf6526 --- /dev/null +++ b/benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md @@ -0,0 +1,109 @@ +# Experiment Report — Plan A 5K60 Pending Benchmark + +Date: 2026-05-14 22:20 KST +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` +Branch: `feat/plan-a-5k60-benchmark` +Commit: pending +Hardware: local MacBook Air M1 for calculation/scaffold only; Windows iMac unavailable in this session +Transport: pending LAN / Thunderbolt Bridge measurement +Mode: Plan A 5120x2880 @ 60 + +## Goal + +Start Plan A at 5120x2880 @ 60Hz raw/near-raw feasibility. Do not downshift until calculation, local render benchmark path, and transport measurements are recorded. + +## Setup + +Local machine: + +- MacBook Air, MacBookAir10,1 +- Apple M1, 8 GB memory +- macOS 14.5 build 23F79 + +Receiver target: + +- Windows-booted iMac 5K is required for the synthetic D3D11 renderer benchmark. +- Receiver hardware was not available from this MacBook Air session. + +## Commands + +Calculation verification: + +```bash +WIDTH=5120; HEIGHT=2880; FPS=60 +printf 'pixels_per_frame=%d\n' $((WIDTH*HEIGHT)) +printf 'pixels_per_second=%d\n' $((WIDTH*HEIGHT*FPS)) +printf 'rgb24_bps=%d\n' $((WIDTH*HEIGHT*FPS*24)) +printf 'yuv420_bps=%d\n' $((WIDTH*HEIGHT*FPS*12)) +printf 'bgra32_bps=%d\n' $((WIDTH*HEIGHT*FPS*32)) +printf 'rgb24_bytes_per_frame=%d\n' $((WIDTH*HEIGHT*3)) +printf 'yuv420_bytes_per_frame=%d\n' $((WIDTH*HEIGHT*3/2)) +printf 'bgra32_bytes_per_frame=%d\n' $((WIDTH*HEIGHT*4)) +``` + +Local build probe: + +```bash +cmake --version +clang++ -std=c++17 -fsyntax-only apps/receiver-windows/src/main.cpp +``` + +Windows receiver benchmark to run on the iMac: + +```powershell +cmake -S apps/receiver-windows -B apps/receiver-windows/build -G "Visual Studio 17 2022" -A x64 +cmake --build apps/receiver-windows/build --config Release +mkdir benchmarks\runs\YYYY-MM-DD_HHMM_plan_a_synthetic_5k60 +apps\receiver-windows\build\Release\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --csv benchmarks\runs\YYYY-MM-DD_HHMM_plan_a_synthetic_5k60\receiver_stats.csv +``` + +Transport benchmark to run after receiver IP is known: + +```bash +scripts/mac_network_probe.sh +``` + +## Results + +| Metric | Value | +|---|---:| +| target fps | 60 | +| frame budget | 16.667 ms | +| resolution | 5120x2880 | +| pixels per frame | 14,745,600 | +| pixels per second | 884,736,000 | +| raw RGB24 bitrate | 21.234 Gbps | +| raw RGB24 bytes/frame | 44.237 MB | +| YUV 4:2:0 8-bit bitrate | 10.617 Gbps | +| YUV 4:2:0 bytes/frame | 22.118 MB | +| BGRA32 app buffer bitrate | 28.312 Gbps | +| BGRA32 bytes/frame | 58.982 MB | +| actual receiver fps | pending Windows iMac run | +| render latency | pending Windows iMac run | +| network latency | pending receiver IP / transport run | +| dropped frames | pending Windows iMac run | + +## Local Build Probe Result + +- `cmake --version` failed on this MacBook Air because `cmake` is not installed. +- `clang++ -std=c++17 -fsyntax-only apps/receiver-windows/src/main.cpp` failed on this MacBook Air because the Windows SDK header `windows.h` is not available. +- This is expected for a Win32/D3D11 receiver target and is not a product-code failure. The receiver scaffold must be built on Windows with Visual Studio Build Tools or an equivalent Windows toolchain. + +## Interpretation + +Raw RGB24 5K60 is above the nominal Thunderbolt 2 20Gbps-class data rate before overhead. YUV 4:2:0 8-bit is below the nominal Thunderbolt 2 figure but still far above 1GbE and requires real conversion/copy/transport/render measurements. + +Plan A is not declared impossible yet because the required local benchmark path now exists but has not run on the Windows iMac. + +## Decision + +- [x] Continue current plan +- [ ] Downshift to next plan +- [x] Needs retest on Windows iMac + +## Next + +1. Build and run `ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen` on the Windows iMac. +2. Run LAN `iperf3` and ping with `scripts/mac_network_probe.sh `. +3. Run Thunderbolt Bridge `iperf3` and ping if the adapter/cable path is available. +4. Write the measured run summary under `benchmarks/runs/YYYY-MM-DD_HHMM_plan_a_synthetic_5k60/summary.md`. diff --git a/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/console.txt b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/console.txt new file mode 100644 index 0000000..9e7e702 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/console.txt @@ -0,0 +1,11 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=36.034 +frames=2163 +budget_ms=16.667 +p95_total_ms=29.089 +max_total_ms=54.997 +missed_frames=2163 +vsync=on +static_frame=off diff --git a/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/receiver_stats.csv b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/receiver_stats.csv new file mode 100644 index 0000000..46ce3f6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/receiver_stats.csv @@ -0,0 +1,2164 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,15.0886,32.6326,7.2752,54.9967,1 +1,15.0097,12.3685,0.2211,27.5996,1 +2,14.2801,14.5323,0.3349,29.1473,1 +3,14.3090,14.0656,0.2175,28.5925,1 +4,14.6249,12.9651,0.2541,27.8442,1 +5,14.7905,12.3846,0.2491,27.4242,1 +6,14.5023,13.2123,0.2200,27.9347,1 +7,14.7132,12.3114,0.2370,27.2617,1 +8,16.2307,12.4912,0.2966,29.0188,1 +9,14.1094,13.2845,0.2211,27.6151,1 +10,14.3183,12.3886,0.2920,26.9990,1 +11,14.4146,12.4568,0.3640,27.2354,1 +12,14.3283,13.9462,0.2926,28.5671,1 +13,14.6672,12.2394,0.2207,27.1275,1 +14,14.4635,11.9140,0.2145,26.5921,1 +15,14.3699,12.9573,0.2630,27.5902,1 +16,14.5722,12.6556,0.3272,27.5551,1 +17,14.3107,12.0303,0.2163,26.5574,1 +18,14.3178,12.7828,0.2068,27.3074,1 +19,14.7807,12.2897,0.2194,27.2899,1 +20,14.5015,13.9662,0.2534,28.7212,1 +21,14.0524,13.3599,0.2376,27.6500,1 +22,14.7901,13.3583,0.2988,28.4473,1 +23,14.2779,13.8967,0.3404,28.5151,1 +24,14.1075,13.6319,0.2946,28.0341,1 +25,13.8864,12.0694,0.2061,26.1619,1 +26,13.5958,14.1249,0.2194,27.9401,1 +27,14.2019,13.0212,0.2048,27.4280,1 +28,14.3694,12.2702,0.2174,26.8571,1 +29,14.0635,13.1801,0.2274,27.4711,1 +30,14.3590,12.2789,0.2236,26.8615,1 +31,14.0781,12.0098,0.2784,26.3664,1 +32,13.9314,13.8032,0.2110,27.9457,1 +33,14.1956,12.2478,0.2190,26.6627,1 +34,14.1352,12.7789,0.2175,27.1318,1 +35,14.0737,13.4794,0.2934,27.8465,1 +36,13.9271,12.4136,0.2099,26.5506,1 +37,13.8735,13.2763,0.2997,27.4497,1 +38,14.1531,12.1262,0.2202,26.4998,1 +39,14.2636,12.2509,0.2222,26.7369,1 +40,13.7587,13.7383,0.2026,27.6997,1 +41,15.0141,12.6004,0.2993,27.9139,1 +42,14.1723,12.2394,0.2082,26.6199,1 +43,14.0918,13.0019,0.2154,27.3092,1 +44,14.1049,12.5006,0.2173,26.8230,1 +45,14.3202,14.3839,0.2217,28.9258,1 +46,14.5040,13.2957,0.3088,28.1088,1 +47,14.4373,12.5358,0.3200,27.2933,1 +48,14.3388,12.9132,0.2175,27.4696,1 +49,14.5145,12.4921,0.2187,27.2255,1 +50,14.7531,12.5969,0.3128,27.6629,1 +51,14.0364,14.8043,0.2029,29.0438,1 +52,13.7992,12.8445,0.3038,26.9477,1 +53,14.7519,12.3083,0.2173,27.2777,1 +54,14.5839,14.1358,0.2060,28.9259,1 +55,14.2401,12.5882,0.2047,27.0332,1 +56,14.3564,12.7252,0.3003,27.3820,1 +57,14.5869,13.6250,0.2145,28.4267,1 +58,14.7252,12.4642,0.2158,27.4053,1 +59,14.4537,12.3599,0.2134,27.0270,1 +60,14.4686,13.4854,0.2188,28.1730,1 +61,14.3280,12.4968,0.2568,27.0817,1 +62,14.1968,12.1856,0.3044,26.6869,1 +63,14.2513,14.0076,0.2723,28.5312,1 +64,14.5244,12.6439,0.2464,27.4148,1 +65,14.5311,12.0896,0.2481,26.8688,1 +66,13.9841,13.2266,0.2751,27.4858,1 +67,14.2803,12.2361,0.3060,26.8225,1 +68,14.4669,12.3911,0.2900,27.1483,1 +69,14.4794,13.3871,0.2086,28.0752,1 +70,14.4628,12.3698,0.2166,27.0495,1 +71,14.3366,13.5606,0.2295,28.1267,1 +72,14.5774,13.2018,0.2197,27.9990,1 +73,14.4499,12.3659,0.2221,27.0381,1 +74,14.4808,13.4401,0.2105,28.1315,1 +75,14.4839,12.9304,0.2129,27.6273,1 +76,14.5433,12.7389,0.2148,27.4971,1 +77,15.1202,13.6499,0.2158,28.9860,1 +78,14.0330,13.2109,0.2966,27.5405,1 +79,14.6034,12.7306,0.2364,27.5705,1 +80,14.4888,12.9505,0.2087,27.6481,1 +81,14.2412,13.0153,0.2190,27.4755,1 +82,14.5188,12.3037,0.2411,27.0637,1 +83,14.5804,14.0185,0.3021,28.9010,1 +84,14.1053,13.0544,0.2168,27.3766,1 +85,14.5792,12.2815,0.2106,27.0714,1 +86,14.3134,14.3915,0.2140,28.9190,1 +87,14.0824,13.0829,0.2584,27.4237,1 +88,14.3773,12.1852,0.2168,26.7793,1 +89,14.2949,14.6289,0.3215,29.2454,1 +90,14.2737,13.2972,0.2922,27.8632,1 +91,14.6617,12.4338,0.2138,27.3093,1 +92,14.3833,13.2153,0.2404,27.8391,1 +93,14.2241,13.0404,0.2207,27.4853,1 +94,14.5466,12.2032,0.2198,26.9697,1 +95,14.6537,14.2587,0.2180,29.1306,1 +96,14.3728,12.9750,0.2143,27.5622,1 +97,14.6661,12.6557,0.2146,27.5365,1 +98,14.2407,13.9171,0.3144,28.4723,1 +99,14.1121,13.1120,0.2175,27.4418,1 +100,14.2961,12.2256,0.2053,26.7271,1 +101,14.6456,13.9474,0.2526,28.8456,1 +102,14.2427,12.9839,0.3165,27.5433,1 +103,14.3352,12.4085,0.2924,27.0361,1 +104,13.9802,13.6532,0.2918,27.9253,1 +105,14.6171,12.4881,0.3251,27.4305,1 +106,14.5011,12.2303,0.2124,26.9438,1 +107,14.3641,13.3143,0.2103,27.8887,1 +108,14.4615,12.4904,0.2150,27.1672,1 +109,14.4199,12.2770,0.2063,26.9033,1 +110,14.3092,13.1733,0.2456,27.7284,1 +111,14.6549,12.4243,0.2173,27.2965,1 +112,14.8167,11.8542,0.2154,26.8864,1 +113,14.3914,13.7559,0.2193,28.3667,1 +114,14.5612,12.1413,0.2213,26.9238,1 +115,14.3989,13.0559,0.2988,27.7536,1 +116,14.4613,13.9929,0.2242,28.6785,1 +117,14.6770,12.5127,0.3224,27.5124,1 +118,14.3986,12.2996,0.2293,26.9275,1 +119,14.1356,12.9549,0.2178,27.3084,1 +120,14.4510,12.1782,0.3352,26.9644,1 +121,14.5949,14.4647,0.2164,29.2760,1 +122,14.4040,12.9205,0.2116,27.5363,1 +123,14.7168,12.3437,0.2209,27.2817,1 +124,14.4669,13.7418,0.2917,28.5006,1 +125,14.1923,13.1023,0.3173,27.6120,1 +126,14.4055,12.5214,0.3022,27.2292,1 +127,14.3199,13.4709,0.2330,28.0239,1 +128,14.5816,13.1184,0.2883,27.9883,1 +129,14.6824,12.5340,0.3054,27.5219,1 +130,14.0520,14.1889,0.2156,28.4566,1 +131,14.6149,13.9817,0.4274,29.0240,1 +132,14.5770,12.5079,0.2378,27.3227,1 +133,15.3312,11.9382,0.2258,27.4954,1 +134,14.9470,12.8291,0.2144,27.9905,1 +135,14.6088,12.5598,0.3101,27.4787,1 +136,14.1937,12.3669,0.2297,26.7904,1 +137,14.2916,12.9980,0.2126,27.5023,1 +138,14.7013,12.2936,0.2054,27.2007,1 +139,14.3973,14.3771,0.3165,29.0909,1 +140,13.7058,13.4123,0.2896,27.4077,1 +141,14.4262,12.7316,0.2456,27.4035,1 +142,14.3253,14.0013,0.2390,28.5657,1 +143,14.5093,13.1409,0.3033,27.9535,1 +144,14.5477,12.7915,0.2244,27.5637,1 +145,14.4628,12.7294,0.2082,27.4006,1 +146,14.2795,13.1311,0.2833,27.6941,1 +147,14.5237,12.2479,0.2039,26.9756,1 +148,14.3127,14.3931,0.2098,28.9157,1 +149,14.3216,13.3594,0.2184,27.8995,1 +150,14.6755,12.8980,0.2378,27.8115,1 +151,14.1125,13.1876,0.2302,27.5304,1 +152,14.1617,13.1853,0.2906,27.6376,1 +153,14.6721,12.6332,0.3402,27.6456,1 +154,14.5060,13.1422,0.2144,27.8629,1 +155,14.2748,13.0446,0.2159,27.5353,1 +156,14.3501,12.3719,0.2363,26.9585,1 +157,14.2660,13.3595,0.2141,27.8397,1 +158,14.3930,11.9962,0.2162,26.6055,1 +159,14.6993,11.8951,0.2134,26.8078,1 +160,14.8110,13.8735,0.2123,28.8969,1 +161,14.9618,12.2970,0.2266,27.4854,1 +162,14.2169,12.1175,0.3000,26.6345,1 +163,14.3461,13.0841,0.2889,27.7191,1 +164,14.5996,12.5803,0.2172,27.3973,1 +165,14.7264,11.9003,0.2220,26.8488,1 +166,14.3273,12.9038,0.2048,27.4360,1 +167,13.9745,12.6116,0.2924,26.8786,1 +168,14.1064,14.5331,0.2189,28.8584,1 +169,14.5396,13.1068,0.2139,27.8604,1 +170,14.4920,12.2660,0.2177,26.9760,1 +171,14.7125,13.2038,0.2119,28.1282,1 +172,14.4722,12.8788,0.3494,27.7005,1 +173,14.4970,12.2957,0.2061,26.9990,1 +174,14.2245,14.3777,0.2124,28.8147,1 +175,14.4195,12.8111,0.2072,27.4379,1 +176,14.3857,12.5533,0.2408,27.1799,1 +177,14.1711,14.1805,0.2161,28.5677,1 +178,14.3976,13.1723,0.2764,27.8465,1 +179,14.3902,12.5091,0.2875,27.1870,1 +180,14.7822,13.3058,0.2354,28.3237,1 +181,14.3146,13.0561,0.2026,27.5733,1 +182,14.4794,12.5290,0.2136,27.2223,1 +183,14.3862,14.2549,0.2931,28.9343,1 +184,14.3786,12.9006,0.2324,27.5117,1 +185,14.3910,13.5699,0.3125,28.2735,1 +186,15.2618,11.9297,0.2106,27.4021,1 +187,14.2330,13.0560,0.2352,27.5243,1 +188,14.2233,12.5707,0.2885,27.0826,1 +189,14.2857,14.5019,0.3340,29.1216,1 +190,14.6108,13.9679,0.2502,28.8290,1 +191,14.8129,12.1757,0.2289,27.2175,1 +192,14.6431,12.1315,0.2138,26.9886,1 +193,14.4246,12.9474,0.2404,27.6125,1 +194,14.2765,12.5017,0.2847,27.0630,1 +195,14.1262,13.9939,0.2140,28.3344,1 +196,14.5630,12.9784,0.2259,27.7673,1 +197,14.6150,12.3495,0.2203,27.1849,1 +198,14.2875,13.8504,0.2628,28.4007,1 +199,13.7952,12.5396,0.2109,26.5457,1 +200,14.5485,12.3748,0.3010,27.2243,1 +201,14.6165,13.1669,0.2188,28.0022,1 +202,14.6072,12.5471,0.3334,27.4878,1 +203,14.2949,12.2747,0.3312,26.9008,1 +204,14.3196,13.7598,0.3061,28.3856,1 +205,14.6561,12.6268,0.2264,27.5093,1 +206,14.8401,11.9468,0.2131,27.0002,1 +207,14.2249,13.0545,0.2085,27.4881,1 +208,14.7906,12.6686,0.2968,27.7560,1 +209,14.4118,12.3163,0.2288,26.9570,1 +210,14.2123,13.7490,0.3029,28.2642,1 +211,14.3741,12.4067,0.2100,26.9909,1 +212,14.4860,12.4620,0.2135,27.1615,1 +213,14.4757,13.2443,0.2167,27.9369,1 +214,14.5311,12.3718,0.2873,27.1903,1 +215,14.0102,13.7908,0.3017,28.1027,1 +216,14.2567,13.1890,0.3007,27.7466,1 +217,14.6664,12.1524,0.2136,27.0325,1 +218,14.3125,14.7132,0.2042,29.2299,1 +219,14.1825,13.3468,0.2908,27.8201,1 +220,14.5465,12.6356,0.3064,27.4886,1 +221,14.3328,12.8530,0.2151,27.4010,1 +222,14.4051,12.7252,0.2119,27.3422,1 +223,14.6193,12.2449,0.2146,27.0790,1 +224,14.1545,13.6578,0.2924,28.1048,1 +225,14.3389,12.5372,0.2334,27.1095,1 +226,14.4994,12.0630,0.2776,26.8400,1 +227,14.0137,13.8302,0.2195,28.0637,1 +228,14.4211,12.3083,0.2234,26.9528,1 +229,14.5138,11.8428,0.2183,26.5749,1 +230,14.4285,13.0885,0.2535,27.7706,1 +231,14.6649,12.4171,0.2786,27.3607,1 +232,14.6134,12.2292,0.2134,27.0563,1 +233,14.3116,13.0543,0.2054,27.5714,1 +234,14.4678,12.2005,0.2141,26.8825,1 +235,14.4400,13.6819,0.3255,28.4475,1 +236,14.2159,12.2819,0.2138,26.7116,1 +237,14.8304,12.4938,0.2171,27.5413,1 +238,14.5841,13.5938,0.2071,28.3852,1 +239,14.4822,12.8376,0.2323,27.5523,1 +240,14.4678,12.2723,0.2985,27.0386,1 +241,14.3249,13.3799,0.3007,28.0056,1 +242,14.4669,12.7787,0.2580,27.5036,1 +243,14.8094,12.0727,0.2201,27.1024,1 +244,14.3240,13.7669,0.2155,28.3065,1 +245,14.3782,12.2905,0.2219,26.8906,1 +246,14.7292,12.1639,0.3389,27.2320,1 +247,14.4864,12.9678,0.2143,27.6686,1 +248,14.9744,12.3231,0.2036,27.5011,1 +249,14.1740,12.1575,0.2132,26.5447,1 +250,14.3810,13.1052,0.2764,27.7627,1 +251,14.2494,12.1992,0.2136,26.6623,1 +252,14.3980,13.7774,0.2137,28.3891,1 +253,14.4302,12.5026,0.2134,27.1463,1 +254,14.4797,12.6085,0.2910,27.3794,1 +255,14.0488,13.5975,0.3001,27.9465,1 +256,14.1688,12.6105,0.2976,27.0773,1 +257,14.8498,12.6703,0.2995,27.8196,1 +258,14.5679,13.7007,0.2459,28.5146,1 +259,14.4333,12.4538,0.2212,27.1084,1 +260,14.5201,12.1259,0.2184,26.8647,1 +261,14.2805,14.1203,0.3052,28.7061,1 +262,14.4563,12.2088,0.2134,26.8787,1 +263,14.5058,11.9690,0.2095,26.6845,1 +264,14.7128,13.2671,0.2164,28.1965,1 +265,14.3719,12.3563,0.2626,26.9909,1 +266,14.2570,12.4626,0.2973,27.0172,1 +267,14.3568,13.1381,0.2857,27.7807,1 +268,14.4253,12.7253,0.2896,27.4403,1 +269,14.7176,12.8382,0.2901,27.8459,1 +270,13.9313,13.0567,0.2109,27.1990,1 +271,14.3069,12.5059,0.3072,27.1200,1 +272,14.5571,13.9367,0.2352,28.7292,1 +273,14.5667,12.8597,0.2130,27.6396,1 +274,14.7135,12.3579,0.2103,27.2818,1 +275,14.3406,13.9969,0.2207,28.5583,1 +276,14.4247,12.9384,0.2944,27.6577,1 +277,14.4778,12.3349,0.2252,27.0380,1 +278,14.3884,13.9283,0.2146,28.5313,1 +279,14.3719,13.0139,0.2154,27.6012,1 +280,14.5034,12.2929,0.2362,27.0326,1 +281,13.9646,14.4377,0.2281,28.6304,1 +282,14.2138,13.1893,0.2187,27.6219,1 +283,14.8430,12.5841,0.2622,27.6895,1 +284,14.6294,13.2917,0.2350,28.1562,1 +285,14.3686,12.8885,0.2138,27.4710,1 +286,14.4460,12.5465,0.2117,27.2042,1 +287,14.4288,13.9473,0.3246,28.7008,1 +288,14.3588,12.9393,0.2115,27.5097,1 +289,14.7430,12.3253,0.2088,27.2771,1 +290,14.5792,13.6416,0.2271,28.4480,1 +291,14.1298,13.2274,0.2139,27.5711,1 +292,14.4489,12.6420,0.3019,27.3928,1 +293,14.0884,14.2451,0.3176,28.6512,1 +294,14.5465,15.5534,0.2504,30.3506,1 +295,14.4738,12.0708,0.2235,26.7681,1 +296,14.4803,11.8301,0.2089,26.5195,1 +297,14.5117,14.3034,0.2926,29.1078,1 +298,14.4572,12.4422,0.2157,27.1153,1 +299,14.4804,12.2134,0.2490,26.9428,1 +300,14.7324,13.8348,0.2177,28.7851,1 +301,14.6154,12.6073,0.2136,27.4364,1 +302,14.3669,12.6251,0.2176,27.2096,1 +303,14.2189,13.0754,0.3047,27.5992,1 +304,14.4119,12.6457,0.3454,27.4031,1 +305,14.3238,13.3696,0.3045,27.9980,1 +306,14.4176,13.3631,0.2090,27.9898,1 +307,14.3539,12.4571,0.2064,27.0175,1 +308,14.3904,14.0528,0.2053,28.6486,1 +309,14.1137,13.0267,0.3118,27.4523,1 +310,14.0535,12.1749,0.2163,26.4447,1 +311,14.2133,13.3621,0.2102,27.7856,1 +312,14.4664,12.1996,0.2144,26.8804,1 +313,14.2635,12.0492,0.3352,26.6481,1 +314,13.6761,13.1828,0.2011,27.0601,1 +315,14.1007,12.2118,0.2158,26.5286,1 +316,14.4016,12.8062,0.2033,27.4112,1 +317,14.0847,13.2593,0.2175,27.5617,1 +318,14.0117,12.0874,0.2282,26.3275,1 +319,13.7770,13.3806,0.2931,27.4508,1 +320,14.5667,12.6341,0.2542,27.4550,1 +321,14.3575,12.0395,0.2192,26.6162,1 +322,14.0867,12.9001,0.2141,27.2010,1 +323,13.9505,12.6667,0.2947,26.9119,1 +324,14.3062,13.0835,0.2857,27.6755,1 +325,14.1495,13.2177,0.2083,27.5755,1 +326,14.0962,12.2687,0.2093,26.5742,1 +327,13.9746,13.3251,0.2121,27.5119,1 +328,14.2711,12.1443,0.3018,26.7172,1 +329,14.1753,12.2241,0.2108,26.6103,1 +330,14.1841,13.0907,0.2112,27.4860,1 +331,14.2773,12.2444,0.2156,26.7374,1 +332,14.1614,13.2250,0.2650,27.6515,1 +333,13.9728,13.2008,0.2984,27.4721,1 +334,13.9434,12.4146,0.2845,26.6425,1 +335,14.2072,14.2589,0.2365,28.7029,1 +336,14.5298,12.9584,0.2888,27.7772,1 +337,14.5174,12.6189,0.3063,27.4427,1 +338,14.0630,13.6221,0.2901,27.9752,1 +339,14.7235,12.2411,0.2092,27.1738,1 +340,14.5608,12.2275,0.2158,27.0043,1 +341,14.2919,13.3012,0.2145,27.8077,1 +342,14.7541,12.3295,0.2162,27.3000,1 +343,14.3441,11.8726,0.2076,26.4245,1 +344,14.3053,13.1862,0.2107,27.7023,1 +345,14.4172,12.3398,0.2148,26.9719,1 +346,14.8789,11.8513,0.2117,26.9419,1 +347,14.4882,14.2109,0.3101,29.0093,1 +348,14.2985,12.4648,0.2128,26.9761,1 +349,14.3033,12.2690,0.3216,26.8941,1 +350,14.3711,13.5100,0.2363,28.1176,1 +351,15.9330,12.5916,0.2392,28.7639,1 +352,14.3894,12.0875,0.2203,26.6973,1 +353,14.2516,13.2948,0.2188,27.7653,1 +354,14.4689,12.5658,0.2248,27.2597,1 +355,14.7300,12.9518,0.2055,27.8874,1 +356,14.4613,12.4107,0.2196,27.0917,1 +357,14.9794,12.6686,0.2459,27.8939,1 +358,14.5089,14.5771,0.3218,29.4080,1 +359,14.2254,13.2078,0.2199,27.6534,1 +360,15.0840,12.5796,0.3585,28.0222,1 +361,15.1869,11.8306,0.2336,27.2513,1 +362,14.4614,13.1871,0.2386,27.8871,1 +363,14.2887,12.4235,0.2472,26.9595,1 +364,17.1375,11.8451,0.2611,29.2438,1 +365,14.1841,13.9854,0.2969,28.4664,1 +366,14.3632,12.5550,0.2108,27.1291,1 +367,14.6752,11.9237,0.2268,26.8260,1 +368,14.8552,13.9916,0.2134,29.0602,1 +369,14.4002,12.5641,0.2937,27.2581,1 +370,14.3058,12.2651,0.2172,26.7882,1 +371,14.3978,12.8151,0.3057,27.5186,1 +372,14.4056,12.5471,0.2114,27.1641,1 +373,14.4603,13.9095,0.2631,28.6332,1 +374,13.7790,13.8477,0.3056,27.9323,1 +375,14.2062,12.4555,0.2673,26.9291,1 +376,14.6712,13.7258,0.2140,28.6112,1 +377,14.7154,12.9903,0.2024,27.9082,1 +378,14.5989,12.3479,0.2076,27.1546,1 +379,14.6193,13.3339,0.2273,28.1806,1 +380,14.4065,12.9538,0.3045,27.6649,1 +381,14.0582,12.4397,0.2115,26.7095,1 +382,14.4033,14.0579,0.2046,28.6659,1 +383,14.6832,12.0926,0.2200,26.9958,1 +384,14.8137,12.3374,0.2360,27.3874,1 +385,13.9132,13.3064,0.2083,27.4281,1 +386,14.2565,12.3383,0.3182,26.9131,1 +387,14.8434,12.4957,0.3595,27.6986,1 +388,14.5733,13.7904,0.2065,28.5702,1 +389,14.3001,12.3410,0.2134,26.8545,1 +390,14.4934,12.2422,0.2211,26.9568,1 +391,14.6861,12.9418,0.2073,27.8353,1 +392,14.5278,12.1506,0.2181,26.8967,1 +393,14.8674,11.9067,0.2176,26.9918,1 +394,14.5426,13.1816,0.2085,27.9328,1 +395,14.4112,12.4441,0.2708,27.1262,1 +396,14.3638,13.6559,0.2181,28.2378,1 +397,14.2153,13.0499,0.2207,27.4860,1 +398,14.5734,12.4157,0.2202,27.2094,1 +399,14.6785,13.6673,0.2172,28.5631,1 +400,14.2722,12.7690,0.2704,27.3117,1 +401,14.1154,12.6718,0.2926,27.0799,1 +402,14.7186,13.7618,0.2120,28.6925,1 +403,14.5591,12.6835,0.3337,27.5763,1 +404,14.3252,12.5097,0.2117,27.0468,1 +405,14.3062,13.6589,0.2634,28.2286,1 +406,14.6184,12.5498,0.3052,27.4734,1 +407,14.5586,12.4543,0.2108,27.2239,1 +408,14.2665,13.4780,0.2079,27.9527,1 +409,14.4238,12.7301,0.2133,27.3672,1 +410,14.5149,12.3423,0.2933,27.1505,1 +411,14.0319,13.9198,0.2494,28.2012,1 +412,14.2625,12.3118,0.2948,26.8692,1 +413,14.6481,11.9770,0.2180,26.8432,1 +414,14.4892,13.3148,0.2182,28.0224,1 +415,14.5974,12.0924,0.2143,26.9044,1 +416,14.2264,12.1855,0.2133,26.6252,1 +417,14.7012,13.3304,0.2154,28.2471,1 +418,14.4303,12.0977,0.2186,26.7468,1 +419,14.5778,14.3529,0.2126,29.1434,1 +420,14.5194,13.1853,0.2032,27.9081,1 +421,14.3478,12.6078,0.3047,27.2604,1 +422,14.1262,13.8344,0.3445,28.3052,1 +423,14.3101,14.0129,0.3051,28.6281,1 +424,14.6507,12.1120,0.2156,26.9784,1 +425,14.6577,12.2700,0.2903,27.2180,1 +426,14.0730,13.2015,0.2298,27.5044,1 +427,14.1599,12.4556,0.2185,26.8341,1 +428,14.6840,13.7653,0.2250,28.6744,1 +429,14.6200,12.0986,0.2450,26.9637,1 +430,14.1749,12.4358,0.2032,26.8139,1 +431,14.2277,13.3249,0.2150,27.7678,1 +432,14.6491,12.6408,0.2749,27.5652,1 +433,14.4787,12.1146,0.2870,26.8804,1 +434,14.2553,13.0906,0.2125,27.5585,1 +435,14.6558,12.2576,0.2178,27.1312,1 +436,14.4715,12.3388,0.2353,27.0458,1 +437,13.9537,12.8106,0.2105,26.9749,1 +438,14.4333,12.1662,0.2982,26.8980,1 +439,14.1123,14.9224,0.2885,29.3233,1 +440,14.6786,13.7337,0.2154,28.6279,1 +441,14.3411,12.4966,0.2116,27.0493,1 +442,14.4817,12.7277,0.3016,27.5111,1 +443,14.5201,13.2596,0.2094,27.9892,1 +444,14.4766,12.3134,0.2223,27.0124,1 +445,14.6751,12.7262,0.2087,27.6102,1 +446,14.6173,12.2358,0.2162,27.0694,1 +447,14.6482,12.4834,0.4241,27.5558,1 +448,14.4855,14.7350,0.2847,29.5053,1 +449,14.1564,13.1760,0.3029,27.6355,1 +450,14.4121,12.5887,0.2943,27.2951,1 +451,14.7701,13.1479,0.2809,28.1990,1 +452,14.3640,12.7870,0.2170,27.3681,1 +453,14.5407,12.5853,0.3577,27.4837,1 +454,14.7000,13.5324,0.2341,28.4668,1 +455,14.6338,13.1709,0.2057,28.0104,1 +456,14.5772,12.3603,0.2085,27.1461,1 +457,14.4808,13.6786,0.2270,28.3864,1 +458,14.4342,13.2242,0.2088,27.8672,1 +459,14.2352,12.3814,0.2332,26.8498,1 +460,14.4222,13.6008,0.3125,28.3355,1 +461,14.5996,13.3668,0.2089,28.1755,1 +462,14.4855,12.3798,0.3124,27.1777,1 +463,14.0684,13.6288,0.2071,27.9043,1 +464,14.1109,13.2162,0.2315,27.5587,1 +465,14.4120,12.3698,0.3338,27.1157,1 +466,14.3569,14.3390,0.2122,28.9081,1 +467,14.3003,13.0552,0.2089,27.5644,1 +468,14.6462,12.4960,0.3209,27.4633,1 +469,14.5923,13.5016,0.3055,28.3994,1 +470,14.3754,12.9942,0.2522,27.6218,1 +471,14.5481,12.5183,0.2142,27.2807,1 +472,14.6339,13.2099,0.2139,28.0578,1 +473,14.2984,12.9878,0.2123,27.4986,1 +474,14.1895,12.3472,0.2098,26.7465,1 +475,14.2335,13.2887,0.3013,27.8236,1 +476,15.4926,12.7407,0.3049,28.5383,1 +477,14.5618,12.3270,0.2177,27.1066,1 +478,14.1386,13.2823,0.2036,27.6247,1 +479,14.3966,12.5583,0.2279,27.1830,1 +480,14.6843,12.3316,0.3415,27.3575,1 +481,14.1870,13.5217,0.2267,27.9354,1 +482,14.5049,12.1993,0.2228,26.9271,1 +483,14.6766,12.0488,0.2314,26.9569,1 +484,14.7965,13.0102,0.2483,28.0553,1 +485,14.3837,12.4167,0.2386,27.0393,1 +486,14.3651,12.1610,0.2123,26.7386,1 +487,14.3537,13.0754,0.2495,27.6788,1 +488,14.8585,12.3565,0.3108,27.5258,1 +489,14.1521,13.9134,0.2242,28.2900,1 +490,14.7121,15.8558,0.2304,30.7983,1 +491,14.3128,12.5733,0.3735,27.2596,1 +492,14.6112,12.0741,0.2095,26.8948,1 +493,14.4607,13.1024,0.2123,27.7754,1 +494,14.6328,12.3975,0.2284,27.2589,1 +495,14.5788,12.4060,0.3086,27.2936,1 +496,14.3548,13.8794,0.2198,28.4540,1 +497,14.4314,12.2169,0.2446,26.8931,1 +498,14.3793,12.6197,0.2162,27.2153,1 +499,14.3353,12.8756,0.2207,27.4318,1 +500,14.5407,12.5376,0.2040,27.2824,1 +501,14.1462,14.5842,0.2110,28.9414,1 +502,14.3951,13.3078,0.2884,27.9914,1 +503,14.6464,12.2896,0.2198,27.1560,1 +504,14.3986,13.3515,0.2172,27.9675,1 +505,14.1559,13.2456,0.2929,27.6945,1 +506,15.2114,12.3271,0.3252,27.8639,1 +507,14.4217,12.8484,0.2119,27.4821,1 +508,14.4498,12.3228,0.2135,26.9863,1 +509,14.6494,12.1307,0.2184,26.9986,1 +510,14.4440,13.1892,0.2350,27.8684,1 +511,14.0904,12.5714,0.2915,26.9534,1 +512,16.3527,12.0305,0.3051,28.6884,1 +513,14.1998,13.2791,0.3078,27.7868,1 +514,14.4591,12.3838,0.2218,27.0649,1 +515,14.5601,12.0141,0.2297,26.8040,1 +516,14.1864,13.4044,0.2985,27.8893,1 +517,14.3536,12.2955,0.2201,26.8693,1 +518,14.6851,12.0278,0.2165,26.9294,1 +519,14.2737,12.9586,0.2059,27.4383,1 +520,14.4049,12.3851,0.2208,27.0110,1 +521,14.4272,14.1020,0.3381,28.8674,1 +522,14.2516,12.7433,0.2290,27.2240,1 +523,14.4757,12.3349,0.2065,27.0171,1 +524,14.5435,14.0722,0.2201,28.8359,1 +525,14.3740,12.9568,0.2142,27.5451,1 +526,14.6069,12.3432,0.2280,27.1782,1 +527,14.2584,13.8671,0.2426,28.3683,1 +528,14.1924,13.3700,0.3145,27.8771,1 +529,14.6085,12.2859,0.2192,27.1137,1 +530,14.1367,14.1053,0.2318,28.4738,1 +531,14.1571,13.2017,0.3175,27.6764,1 +532,14.4301,12.7141,0.2880,27.4324,1 +533,14.2045,13.7720,0.2043,28.1808,1 +534,14.2580,13.0531,0.2105,27.5216,1 +535,14.7436,12.2891,0.2239,27.2566,1 +536,14.0836,14.6606,0.2217,28.9660,1 +537,14.1936,12.8755,0.3573,27.4266,1 +538,14.3151,12.5403,0.2987,27.1541,1 +539,14.3870,13.8378,0.2292,28.4542,1 +540,14.5721,12.8118,0.2473,27.6313,1 +541,14.4197,12.5354,0.2496,27.2048,1 +542,14.1277,14.0404,0.2057,28.3739,1 +543,14.1878,13.2718,0.2056,27.6654,1 +544,14.5699,12.3950,0.2132,27.1782,1 +545,14.3305,13.7914,0.2088,28.3308,1 +546,14.5338,12.1966,0.2200,26.9506,1 +547,14.3477,12.2580,0.2940,26.8997,1 +548,13.9487,13.5173,0.2593,27.7253,1 +549,13.9333,12.6142,0.2632,26.8108,1 +550,14.6449,12.0209,0.2146,26.8805,1 +551,14.5032,13.1198,0.2901,27.9133,1 +552,14.4192,12.6328,0.2723,27.3245,1 +553,13.8173,12.3443,0.2184,26.3802,1 +554,14.5206,13.1469,0.3168,27.9845,1 +555,14.6415,12.1575,0.2198,27.0188,1 +556,14.4044,13.8408,0.2094,28.4547,1 +557,14.3834,13.1914,0.2359,27.8107,1 +558,14.7321,12.3647,0.2175,27.3144,1 +559,14.3891,13.4021,0.2108,28.0021,1 +560,14.4377,12.8317,0.2096,27.4792,1 +561,14.5037,12.4838,0.2042,27.1917,1 +562,14.1941,14.2964,0.3758,28.8663,1 +563,14.8481,13.9073,0.2543,29.0098,1 +564,14.3855,12.3565,0.2522,26.9942,1 +565,14.4525,14.1228,0.3579,28.9332,1 +566,14.4121,13.5371,0.2427,28.1919,1 +567,14.2319,12.3571,0.2283,26.8175,1 +568,14.6220,12.0786,0.2251,26.9258,1 +569,14.5511,13.4951,0.2995,28.3458,1 +570,14.0818,12.2361,0.2173,26.5353,1 +571,14.4945,13.7275,0.2119,28.4339,1 +572,14.5671,13.1490,0.2121,27.9282,1 +573,14.8563,12.2425,0.2486,27.3476,1 +574,14.1288,13.5816,0.2140,27.9245,1 +575,14.2421,12.8963,0.2963,27.4349,1 +576,14.8623,12.1917,0.2155,27.2697,1 +577,14.7678,13.6943,0.2145,28.6766,1 +578,14.2458,13.1263,0.2315,27.6038,1 +579,14.3318,12.5423,0.3252,27.1994,1 +580,14.4342,14.2766,0.2580,28.9689,1 +581,14.5445,14.0814,0.2164,28.8425,1 +582,14.5832,12.3573,0.2129,27.1535,1 +583,14.7525,11.8765,0.2139,26.8432,1 +584,14.4205,13.3097,0.2670,27.9973,1 +585,14.1446,12.3115,0.2229,26.6792,1 +586,14.2426,14.0721,0.3033,28.6181,1 +587,14.1538,13.3958,0.3483,27.8981,1 +588,15.6372,12.3698,0.2269,28.2340,1 +589,14.5522,12.8270,0.2131,27.5924,1 +590,14.1150,13.0012,0.2914,27.4077,1 +591,14.8925,12.3893,0.2693,27.5513,1 +592,14.5808,13.3114,0.2127,28.1050,1 +593,14.4246,12.7244,0.2077,27.3569,1 +594,14.4090,12.3656,0.2136,26.9882,1 +595,14.6146,14.7843,0.2916,29.6905,1 +596,14.1080,13.1037,0.2135,27.4252,1 +597,14.6006,12.4302,0.2972,27.3280,1 +598,14.1486,13.8790,0.3043,28.3319,1 +599,14.3618,13.0342,0.2945,27.6906,1 +600,14.8322,12.1226,0.2661,27.2211,1 +601,14.1121,14.0940,0.3168,28.5229,1 +602,14.8830,13.5421,0.2021,28.6272,1 +603,14.5499,12.3706,0.2185,27.1393,1 +604,14.6723,12.0448,0.2130,26.9302,1 +605,14.5202,12.2728,0.2206,27.0137,1 +606,14.7738,12.8037,0.3099,27.8875,1 +607,14.1036,14.7834,0.2096,29.0968,1 +608,14.2677,13.0445,0.2143,27.5266,1 +609,14.3995,12.1235,0.2465,26.7696,1 +610,15.0090,13.6284,0.2896,28.9270,1 +611,14.2408,13.0623,0.2093,27.5124,1 +612,14.0878,12.3603,0.2487,26.6971,1 +613,14.3819,13.8850,0.2158,28.4827,1 +614,14.8352,12.2978,0.2086,27.3418,1 +615,14.4415,12.4141,0.2104,27.0661,1 +616,14.2282,13.0535,0.2208,27.5025,1 +617,14.5706,12.9953,0.2856,27.8516,1 +618,14.3028,12.2328,0.2254,26.7610,1 +619,14.7482,13.2111,0.2150,28.1745,1 +620,14.5805,13.3186,0.4017,28.3008,1 +621,14.3443,12.2957,0.2310,26.8711,1 +622,14.1607,14.0087,0.2159,28.3855,1 +623,14.3995,12.2369,0.2566,26.8931,1 +624,14.5230,12.2503,0.3699,27.1434,1 +625,14.4272,12.7457,0.2150,27.3880,1 +626,14.6537,12.2150,0.2142,27.0829,1 +627,14.2833,12.7944,0.2489,27.3269,1 +628,14.4940,13.0169,0.2095,27.7205,1 +629,14.3243,12.1781,0.2144,26.7169,1 +630,14.2836,14.1285,0.2124,28.6248,1 +631,14.3263,13.0339,0.2115,27.5717,1 +632,14.6673,12.6106,0.2579,27.5358,1 +633,14.1240,14.1979,0.2080,28.5302,1 +634,14.0519,13.0375,0.3088,27.3982,1 +635,14.6214,12.4654,0.2930,27.3799,1 +636,14.5301,13.8175,0.2689,28.6165,1 +637,15.1660,13.5928,0.2302,28.9891,1 +638,14.4979,12.6656,0.2778,27.4415,1 +639,14.0560,12.4281,0.3087,26.7929,1 +640,14.4504,13.0424,0.2155,27.7084,1 +641,14.5034,12.5275,0.2042,27.2351,1 +642,14.2707,13.9267,0.2121,28.4095,1 +643,14.1604,13.3251,0.2983,27.7838,1 +644,14.4741,12.5911,0.2161,27.2813,1 +645,14.2308,13.7011,0.2148,28.1470,1 +646,14.2747,12.9489,0.2151,27.4387,1 +647,14.5844,12.5580,0.2662,27.4087,1 +648,13.7211,13.3166,0.2000,27.2378,1 +649,14.2144,12.6787,0.2677,27.1608,1 +650,14.4655,12.0361,0.2377,26.7394,1 +651,14.6849,13.3550,0.2117,28.2518,1 +652,14.3899,12.5423,0.2046,27.1370,1 +653,14.4401,12.0310,0.2111,26.6824,1 +654,14.4914,13.2126,0.2166,27.9206,1 +655,14.6449,12.2887,0.1965,27.1303,1 +656,14.1786,12.6190,0.2180,27.0157,1 +657,14.3895,12.9842,0.2184,27.5922,1 +658,14.6889,12.6215,0.3611,27.6715,1 +659,14.1407,13.6387,0.2023,27.9818,1 +660,14.0836,13.0969,0.2194,27.4000,1 +661,14.7215,12.6697,0.2116,27.6030,1 +662,14.4629,13.9595,0.2073,28.6300,1 +663,14.0164,12.9172,0.2105,27.1443,1 +664,14.4811,12.6943,0.2634,27.4389,1 +665,14.5159,13.9416,0.2623,28.7198,1 +666,14.5255,13.0218,0.2025,27.7498,1 +667,14.5419,12.4029,0.2055,27.1503,1 +668,14.2839,14.0934,0.2039,28.5814,1 +669,14.4841,12.9505,0.2985,27.7332,1 +670,14.1496,12.3589,0.2044,26.7129,1 +671,14.5120,14.0220,0.2184,28.7526,1 +672,14.2272,13.1203,0.2059,27.5536,1 +673,14.4719,12.4278,0.2119,27.1116,1 +674,14.1178,14.2653,0.2741,28.6574,1 +675,14.2859,13.0696,0.2798,27.6354,1 +676,14.2783,12.3107,0.2201,26.8093,1 +677,14.7658,14.1126,0.2107,29.0892,1 +678,14.3371,13.1768,0.2072,27.7214,1 +679,14.6738,12.5114,0.2155,27.4008,1 +680,14.6047,13.4268,0.2436,28.2751,1 +681,14.3269,13.0033,0.2048,27.5352,1 +682,14.5036,12.2362,0.2120,26.9519,1 +683,14.6593,13.3930,0.2568,28.3092,1 +684,14.4642,12.5531,0.2805,27.2979,1 +685,14.2184,12.2660,0.2094,26.6939,1 +686,14.3581,13.2758,0.2609,27.8948,1 +687,14.6779,12.1791,0.2226,27.0796,1 +688,14.8946,12.2895,0.2061,27.3903,1 +689,14.1352,13.9772,0.2019,28.3144,1 +690,14.1664,12.6922,0.2885,27.1471,1 +691,14.5880,12.1419,0.2032,26.9331,1 +692,14.4544,12.9758,0.2122,27.6424,1 +693,14.6877,12.4291,0.2236,27.3405,1 +694,14.2343,12.0889,0.2143,26.5376,1 +695,14.4483,13.2009,0.2849,27.9342,1 +696,14.2688,12.6373,0.2758,27.1820,1 +697,14.3332,13.8437,0.2133,28.3904,1 +698,14.2826,13.2950,0.2096,27.7873,1 +699,14.4883,12.3884,0.2701,27.1468,1 +700,14.0796,14.0566,0.2013,28.3376,1 +701,14.0413,13.1116,0.2623,27.4152,1 +702,14.6167,12.3973,0.2590,27.2730,1 +703,14.2264,13.9578,0.2082,28.3924,1 +704,14.1185,13.2285,0.2142,27.5613,1 +705,14.4900,12.5990,0.2374,27.3267,1 +706,14.5101,14.0956,0.2129,28.8186,1 +707,14.5794,12.8800,0.2253,27.6849,1 +708,14.3143,12.6576,0.3052,27.2772,1 +709,14.4635,13.6478,0.2127,28.3242,1 +710,14.6918,14.1700,0.2751,29.1369,1 +711,14.1113,12.7153,0.2590,27.0858,1 +712,14.3322,12.1306,0.3149,26.7778,1 +713,14.3598,12.5958,0.2201,27.1760,1 +714,14.9948,12.5620,0.2075,27.7643,1 +715,14.1006,14.4068,0.2147,28.7221,1 +716,14.5009,13.2923,0.2679,28.0612,1 +717,14.6079,12.1759,0.2723,27.0562,1 +718,14.2508,13.7404,0.2170,28.2083,1 +719,14.3511,12.8267,0.2298,27.4077,1 +720,14.6023,12.4800,0.2171,27.2995,1 +721,14.1659,14.2856,0.2154,28.6670,1 +722,14.0892,13.0977,0.2314,27.4183,1 +723,14.2679,12.5945,0.2997,27.1621,1 +724,14.6308,13.9393,0.2154,28.7858,1 +725,14.8358,14.0417,0.2129,29.0905,1 +726,14.2750,12.5088,0.2107,26.9946,1 +727,14.2901,12.7540,0.2654,27.3096,1 +728,14.5076,13.0107,0.2532,27.7715,1 +729,17.7647,12.2609,0.2571,30.2829,1 +730,14.5026,12.0165,0.2023,26.7216,1 +731,14.5101,13.1228,0.2449,27.8778,1 +732,14.3504,12.6180,0.2486,27.2172,1 +733,14.1180,12.5241,0.2150,26.8574,1 +734,14.2404,13.2048,0.3016,27.7468,1 +735,14.4781,12.3037,0.2180,26.9999,1 +736,14.8576,13.2262,0.2279,28.3118,1 +737,14.2095,13.1529,0.2069,27.5693,1 +738,14.2338,12.6408,0.2897,27.1644,1 +739,14.3326,14.1586,0.2189,28.7103,1 +740,14.5531,12.8238,0.2054,27.5823,1 +741,14.2613,12.4375,0.2109,26.9098,1 +742,14.4048,14.0642,0.2092,28.6783,1 +743,14.4791,12.9999,0.3039,27.7829,1 +744,14.2725,12.4528,0.2958,27.0212,1 +745,14.1453,14.8782,0.3233,29.3468,1 +746,14.6599,13.8885,0.2177,28.7662,1 +747,14.5887,12.1600,0.2139,26.9627,1 +748,14.2552,12.8932,0.2115,27.3601,1 +749,14.0917,13.0824,0.3050,27.4792,1 +750,14.8150,12.3539,0.2948,27.4639,1 +751,14.6235,13.0154,0.2090,27.8479,1 +752,14.5954,12.9798,0.2196,27.7950,1 +753,14.7521,12.3390,0.2110,27.3021,1 +754,14.1335,14.1248,0.2130,28.4716,1 +755,14.7231,15.0391,0.3521,30.1145,1 +756,14.8407,12.4529,0.3020,27.5958,1 +757,14.3364,12.3900,0.2343,26.9609,1 +758,14.3376,13.3446,0.2369,27.9192,1 +759,14.2283,12.7375,0.2312,27.1972,1 +760,14.1982,12.7195,0.3037,27.2216,1 +761,14.4075,13.2194,0.2170,27.8440,1 +762,14.6910,12.0588,0.2196,26.9694,1 +763,14.7129,13.3783,0.2080,28.2994,1 +764,14.2160,12.9637,0.2093,27.3890,1 +765,14.7653,12.3309,0.2184,27.3147,1 +766,14.4561,13.8327,0.2109,28.4998,1 +767,14.5528,12.6873,0.2079,27.4481,1 +768,14.4839,12.4299,0.2130,27.1269,1 +769,14.2344,14.4666,0.2148,28.9159,1 +770,14.2908,13.4831,0.2371,28.0111,1 +771,14.1092,12.8157,0.3403,27.2652,1 +772,14.3513,13.8985,0.3324,28.5822,1 +773,14.6638,14.1323,0.2357,29.0319,1 +774,14.7035,12.8121,0.2244,27.7400,1 +775,14.7638,12.0171,0.2262,27.0073,1 +776,14.7002,13.3547,0.2239,28.2791,1 +777,14.8621,12.6601,0.2140,27.7363,1 +778,14.1215,12.1921,0.2141,26.5278,1 +779,14.8117,13.3936,0.2162,28.4216,1 +780,14.7558,12.5556,0.2300,27.5414,1 +781,14.6921,12.1834,0.3010,27.1766,1 +782,14.2089,13.4237,0.3803,28.0130,1 +783,14.5927,12.7870,0.3128,27.6927,1 +784,14.7240,11.9757,0.2274,26.9272,1 +785,14.4016,12.8731,0.2157,27.4904,1 +786,14.6826,12.3953,0.2289,27.3069,1 +787,14.7265,14.2992,0.3154,29.3411,1 +788,14.2412,13.3487,0.2396,27.8296,1 +789,14.6414,12.7386,0.2247,27.6048,1 +790,15.1067,12.1915,0.2186,27.5171,1 +791,14.4144,13.2447,0.3607,28.0198,1 +792,14.6034,12.7187,0.2296,27.5518,1 +793,14.4813,12.4411,0.2828,27.2053,1 +794,14.2568,13.2194,0.2203,27.6967,1 +795,14.7438,12.5634,0.2139,27.5212,1 +796,14.0976,13.1327,0.2074,27.4378,1 +797,14.3703,12.7354,0.2860,27.3918,1 +798,14.2951,12.4054,0.2902,26.9910,1 +799,14.5071,13.7002,0.2151,28.4225,1 +800,14.7420,12.2251,0.2188,27.1860,1 +801,15.2464,12.3284,0.2236,27.7984,1 +802,14.3518,13.4951,0.2849,28.1319,1 +803,14.3553,12.4768,0.2199,27.0521,1 +804,14.6651,11.9511,0.2363,26.8527,1 +805,14.6342,13.9784,0.2234,28.8362,1 +806,14.6128,12.6970,0.2294,27.5393,1 +807,14.8238,12.4870,0.2729,27.5838,1 +808,14.0904,13.3140,0.2783,27.6827,1 +809,15.0441,12.4989,0.2688,27.8118,1 +810,14.7989,12.2848,0.2117,27.2955,1 +811,14.2659,13.5240,0.2188,28.0087,1 +812,14.7709,12.7581,0.2219,27.7509,1 +813,14.8469,12.1348,0.2256,27.2075,1 +814,14.3978,13.6182,0.2213,28.2375,1 +815,14.4744,12.3318,0.2234,27.0297,1 +816,14.8860,11.8426,0.2220,26.9509,1 +817,14.4995,13.3137,0.2459,28.0591,1 +818,14.2831,12.8399,0.2175,27.3408,1 +819,14.4168,12.3935,0.2790,27.0896,1 +820,14.4465,13.4334,0.2208,28.1007,1 +821,14.9454,12.2741,0.2149,27.4344,1 +822,14.3737,12.3437,0.2177,26.9352,1 +823,14.4413,13.6379,0.2535,28.3329,1 +824,14.9792,12.4449,0.3087,27.7328,1 +825,14.3708,12.1656,0.2198,26.7564,1 +826,14.4765,13.3239,0.2158,28.0162,1 +827,14.8108,12.4657,0.2287,27.5052,1 +828,14.4617,13.2006,0.3050,27.9677,1 +829,14.1355,13.0877,0.2204,27.4437,1 +830,14.3485,12.5803,0.2882,27.2172,1 +831,14.5058,13.7987,0.2371,28.5419,1 +832,14.3748,13.1654,0.2334,27.7736,1 +833,14.2528,12.6618,0.2021,27.1168,1 +834,13.6672,14.3774,0.2825,28.3273,1 +835,14.2043,12.9888,0.2109,27.4041,1 +836,14.7442,12.3745,0.2337,27.3525,1 +837,16.5460,12.2769,0.2261,29.0491,1 +838,14.6544,13.9554,0.2170,28.8268,1 +839,14.6925,12.3468,0.2253,27.2647,1 +840,14.3092,12.4153,0.2263,26.9509,1 +841,14.3783,12.8975,0.3249,27.6007,1 +842,14.4757,12.6536,0.2290,27.3584,1 +843,14.5550,12.8941,0.2932,27.7425,1 +844,14.2626,13.0016,0.2166,27.4810,1 +845,14.3964,12.3131,0.2977,27.0075,1 +846,14.0402,14.4773,0.2869,28.8045,1 +847,14.7547,12.9984,0.2898,28.0430,1 +848,14.5033,12.6301,0.2172,27.3508,1 +849,14.7455,13.2213,0.2525,28.2195,1 +850,14.5021,12.8809,0.3023,27.6856,1 +851,14.3721,12.3482,0.2110,26.9314,1 +852,14.5962,13.4316,0.2106,28.2384,1 +853,14.3882,13.3005,0.2087,27.8977,1 +854,14.3922,12.2977,0.2073,26.8972,1 +855,13.9688,13.4281,0.2008,27.5977,1 +856,14.2031,12.7151,0.3143,27.2325,1 +857,14.6450,12.4328,0.2953,27.3732,1 +858,14.4533,13.2099,0.2110,27.8743,1 +859,14.3955,12.5132,0.2030,27.1118,1 +860,14.2840,12.1954,0.2625,26.7420,1 +861,14.4613,13.5482,0.2562,28.2659,1 +862,14.4689,12.2613,0.2254,26.9556,1 +863,14.8828,12.1610,0.2126,27.2564,1 +864,14.2834,13.7657,0.2117,28.2609,1 +865,14.4205,12.4141,0.2108,27.0456,1 +866,14.5113,11.9911,0.2104,26.7129,1 +867,14.1759,12.2948,0.2162,26.6869,1 +868,14.9777,12.2229,0.2229,27.4236,1 +869,14.4141,13.0983,0.2332,27.7456,1 +870,14.1788,12.7764,0.2118,27.1672,1 +871,14.2675,12.0683,0.2783,26.6143,1 +872,14.0275,12.8116,0.2153,27.0544,1 +873,14.8624,12.3136,0.2135,27.3897,1 +874,14.5271,12.2510,0.2064,26.9847,1 +875,14.2586,12.9020,0.2180,27.3786,1 +876,14.0539,12.6177,0.2093,26.8810,1 +877,14.3774,14.9916,0.2252,29.5942,1 +878,14.4592,13.9287,0.2093,28.5975,1 +879,14.7434,12.3595,0.2222,27.3252,1 +880,14.3269,12.4981,0.2899,27.1149,1 +881,14.1469,13.1718,0.2516,27.5706,1 +882,14.2897,12.4771,0.3307,27.0978,1 +883,14.2718,14.0408,0.2664,28.5791,1 +884,14.4684,12.9861,0.3043,27.7589,1 +885,14.3655,12.7286,0.3056,27.3998,1 +886,14.1880,13.3247,0.2346,27.7476,1 +887,14.3278,12.4019,0.3177,27.0475,1 +888,14.6601,12.0493,0.2124,26.9220,1 +889,14.3537,13.2694,0.2120,27.8351,1 +890,14.5410,12.3276,0.2258,27.0945,1 +891,14.6458,11.8573,0.3008,26.8039,1 +892,14.0961,13.1523,0.2071,27.4555,1 +893,14.4146,12.2766,0.2170,26.9084,1 +894,14.8382,12.3538,0.2140,27.4062,1 +895,14.3016,13.0602,0.2536,27.6157,1 +896,14.2028,12.6060,0.2898,27.0988,1 +897,14.2088,14.0112,0.3120,28.5321,1 +898,14.2711,13.0488,0.3270,27.6469,1 +899,14.8776,12.1495,0.2251,27.2525,1 +900,14.7835,13.1453,0.2134,28.1423,1 +901,14.2416,13.2112,0.2973,27.7502,1 +902,14.5334,12.4830,0.2238,27.2404,1 +903,14.6707,13.1049,0.2107,27.9863,1 +904,14.9236,12.3245,0.2267,27.4749,1 +905,14.6098,12.4802,0.2171,27.3073,1 +906,14.3441,14.5894,0.2148,29.1485,1 +907,14.2635,13.0674,0.2294,27.5603,1 +908,14.5560,12.5424,0.2707,27.3692,1 +909,14.4169,13.9007,0.2638,28.5815,1 +910,14.6818,13.7656,0.2543,28.7018,1 +911,14.3047,12.6057,0.2084,27.1189,1 +912,14.1827,12.6713,0.2144,27.0684,1 +913,14.4401,12.8628,0.2364,27.5394,1 +914,14.6611,12.3497,0.2129,27.2238,1 +915,14.1963,14.3095,0.2131,28.7190,1 +916,14.7390,13.3410,0.2293,28.3093,1 +917,14.5496,12.2262,0.2897,27.0656,1 +918,13.6571,13.9391,0.2180,27.8143,1 +919,14.3494,13.1276,0.2691,27.7461,1 +920,14.9901,12.2743,0.2286,27.4930,1 +921,14.4327,13.4907,0.2231,28.1465,1 +922,14.3848,12.9754,0.2893,27.6496,1 +923,14.2298,12.5497,0.2962,27.0757,1 +924,14.3117,14.1538,0.2149,28.6805,1 +925,14.5851,13.0013,0.2911,27.8778,1 +926,14.4789,12.3908,0.2219,27.0917,1 +927,14.5653,13.7000,0.2206,28.4860,1 +928,14.5422,12.8108,0.3055,27.6586,1 +929,14.4403,12.3612,0.2160,27.0175,1 +930,15.3954,13.3411,0.3318,29.0685,1 +931,14.3289,13.2039,0.2149,27.7479,1 +932,14.8839,12.1914,0.2392,27.3146,1 +933,14.1626,13.5832,0.2110,27.9568,1 +934,14.2610,12.9003,0.2753,27.4368,1 +935,14.3911,12.6105,0.2149,27.2166,1 +936,14.5623,13.5921,0.2124,28.3668,1 +937,14.4747,12.2659,0.2157,26.9563,1 +938,14.7566,12.4956,0.2082,27.4605,1 +939,14.1810,13.2859,0.2098,27.6769,1 +940,14.5110,12.4955,0.2118,27.2184,1 +941,14.6432,12.0676,0.2184,26.9293,1 +942,14.0761,14.3766,0.2109,28.6638,1 +943,14.1856,12.6702,0.2172,27.0731,1 +944,14.4717,12.2566,0.2677,26.9961,1 +945,14.0781,13.0835,0.3072,27.4690,1 +946,17.5276,12.2334,0.2424,30.0035,1 +947,14.4571,12.1235,0.2182,26.7989,1 +948,14.1852,13.7163,0.2073,28.1088,1 +949,14.1566,12.8786,0.3126,27.3481,1 +950,14.7631,12.2581,0.2329,27.2543,1 +951,14.4041,13.1841,0.2104,27.7988,1 +952,14.5725,12.5018,0.2197,27.2942,1 +953,14.8500,12.1627,0.2245,27.2372,1 +954,14.3273,13.4719,0.3003,28.0995,1 +955,14.2287,13.2217,0.3235,27.7739,1 +956,14.3274,13.6382,0.3223,28.2880,1 +957,15.7067,13.3424,0.2369,29.2861,1 +958,14.7573,12.6541,0.3182,27.7297,1 +959,14.6440,12.4975,0.2393,27.3810,1 +960,21.4872,11.9723,0.2604,33.7200,1 +961,14.2839,13.5064,0.3136,28.1040,1 +962,14.2436,12.2264,0.2137,26.6838,1 +963,17.8142,12.2175,0.2623,30.2940,1 +964,14.3623,14.3534,0.2490,28.9649,1 +965,14.1179,14.2094,0.3166,28.6439,1 +966,14.2382,12.1704,0.2186,26.6274,1 +967,14.3270,12.6009,0.2996,27.2277,1 +968,14.1676,13.0126,0.2934,27.4736,1 +969,14.7585,12.1368,0.2135,27.1089,1 +970,14.5384,14.5150,0.2094,29.2630,1 +971,14.4222,13.8381,0.2393,28.4999,1 +972,14.4145,12.4369,0.3037,27.1552,1 +973,14.2798,12.7319,0.2038,27.2157,1 +974,14.3640,12.9804,0.2075,27.5519,1 +975,16.3913,13.6064,0.3005,30.2983,1 +976,15.0700,14.2746,0.4522,29.7969,1 +977,16.6344,14.6089,0.2352,31.4786,1 +978,21.6594,12.2008,0.2262,34.0865,1 +979,14.9155,12.7907,0.2779,27.9842,1 +980,14.4517,12.4063,0.2746,27.1328,1 +981,14.2878,12.3842,0.2279,26.8999,1 +982,14.5609,13.3462,0.2228,28.1300,1 +983,14.5616,12.6319,0.2108,27.4043,1 +984,14.2322,12.2956,0.2249,26.7527,1 +985,14.2956,13.8568,0.2208,28.3732,1 +986,14.5049,12.3686,0.2177,27.0915,1 +987,14.9278,11.8159,0.2203,26.9642,1 +988,14.3190,13.0870,0.1973,27.6035,1 +989,14.4946,12.2518,0.2220,26.9685,1 +990,14.4103,13.9770,0.2933,28.6808,1 +991,14.0993,13.1627,0.3025,27.5646,1 +992,14.4510,13.5608,0.2641,28.2762,1 +993,14.5161,13.9002,0.2469,28.6632,1 +994,14.4733,13.5980,0.2284,28.2998,1 +995,14.2575,12.1096,0.2188,26.5859,1 +996,14.5348,12.7625,0.2518,27.5492,1 +997,14.4728,13.0922,0.2130,27.7780,1 +998,15.1675,12.5613,0.2563,27.9851,1 +999,14.5186,12.7796,0.2286,27.5270,1 +1000,14.2938,13.1600,0.2275,27.6815,1 +1001,14.5870,12.4936,0.3122,27.3929,1 +1002,14.1810,14.0754,0.2124,28.4691,1 +1003,14.4494,13.1001,0.2103,27.7599,1 +1004,14.5728,12.5146,0.2195,27.3070,1 +1005,14.2163,13.7721,0.2523,28.2407,1 +1006,14.2382,12.8398,0.2104,27.2885,1 +1007,14.4916,12.5057,0.3207,27.3180,1 +1008,14.4710,13.8118,0.2852,28.5680,1 +1009,14.5998,12.7140,0.2132,27.5271,1 +1010,14.3709,12.3220,0.2095,26.9025,1 +1011,14.4897,14.4913,0.4431,29.4242,1 +1012,14.1965,13.0795,0.3144,27.5905,1 +1013,14.3808,12.3099,0.2054,26.8963,1 +1014,14.5326,13.7117,0.2267,28.4712,1 +1015,14.3614,12.9469,0.2141,27.5224,1 +1016,14.4273,12.7647,0.3031,27.4951,1 +1017,14.4894,13.8813,0.3012,28.6722,1 +1018,14.3930,12.9838,0.3006,27.6774,1 +1019,14.6940,12.6343,0.2203,27.5487,1 +1020,14.7366,13.2317,0.2190,28.1876,1 +1021,14.2186,13.2172,0.2443,27.6803,1 +1022,14.2383,12.2501,0.2353,26.7238,1 +1023,14.3677,14.0212,0.2211,28.6102,1 +1024,14.4831,12.9500,0.2127,27.6460,1 +1025,14.5526,12.3140,0.2105,27.0773,1 +1026,14.6687,13.8832,0.2297,28.7817,1 +1027,14.7359,12.6903,0.2895,27.7158,1 +1028,14.1557,13.0447,0.2921,27.4926,1 +1029,14.6697,12.7002,0.3620,27.7321,1 +1030,14.2813,13.2968,0.2353,27.8134,1 +1031,14.6572,13.1081,0.2088,27.9741,1 +1032,14.3535,12.5867,0.2210,27.1613,1 +1033,14.3202,13.4322,0.2168,27.9694,1 +1034,14.4780,12.2827,0.2784,27.0392,1 +1035,14.4381,12.3467,0.2195,27.0043,1 +1036,14.6996,14.7503,0.2189,29.6689,1 +1037,14.2169,13.1272,0.2251,27.5693,1 +1038,14.5031,12.4228,0.2107,27.1368,1 +1039,14.0339,14.1727,0.2759,28.4826,1 +1040,14.1129,13.2433,0.3169,27.6731,1 +1041,14.6848,12.5088,0.2052,27.3988,1 +1042,14.5633,13.6356,0.2161,28.4150,1 +1043,14.2457,12.8973,0.5129,27.6560,1 +1044,14.9562,12.5834,0.2362,27.7759,1 +1045,14.3403,13.3096,0.3220,27.9719,1 +1046,14.1796,12.9189,0.2026,27.3013,1 +1047,14.6242,12.3046,0.2159,27.1449,1 +1048,14.7521,14.0395,0.2196,29.0114,1 +1049,14.5961,13.0230,0.2499,27.8693,1 +1050,14.1622,12.7129,0.2362,27.1113,1 +1051,14.3637,13.6807,0.3043,28.3487,1 +1052,14.5670,13.8621,0.3415,28.7706,1 +1053,16.0468,12.2020,0.2304,28.4795,1 +1054,14.2850,12.4102,0.2174,26.9128,1 +1055,14.2616,13.7969,0.2049,28.2636,1 +1056,14.3134,12.2090,0.2284,26.7509,1 +1057,14.3332,12.5445,0.3018,27.1798,1 +1058,14.3564,12.8983,0.2312,27.4860,1 +1059,14.8998,12.1111,0.2273,27.2382,1 +1060,13.8481,13.5085,0.3201,27.6768,1 +1061,14.2921,12.6763,0.2357,27.2041,1 +1062,14.6885,12.0044,0.2763,26.9694,1 +1063,14.3983,13.3996,0.2056,28.0035,1 +1064,14.2452,12.6101,0.2964,27.1519,1 +1065,14.4591,12.2758,0.2160,26.9510,1 +1066,14.1349,13.1426,0.2787,27.5562,1 +1067,14.6271,12.4676,0.2195,27.3143,1 +1068,14.3946,12.2043,0.2235,26.8224,1 +1069,14.2225,12.9242,0.2059,27.3526,1 +1070,14.3464,12.6638,0.2366,27.2471,1 +1071,14.4990,14.0419,0.3051,28.8460,1 +1072,14.2741,13.1644,0.3437,27.7823,1 +1073,14.5065,12.3669,0.2226,27.0961,1 +1074,14.7019,13.3161,0.2185,28.2366,1 +1075,14.3812,13.1953,0.2932,27.8699,1 +1076,14.2111,12.5704,0.2324,27.0142,1 +1077,14.1804,14.1648,0.3420,28.6873,1 +1078,14.4611,13.0763,0.3012,27.8387,1 +1079,14.6115,12.3373,0.2304,27.1792,1 +1080,14.5852,13.3666,0.2257,28.1775,1 +1081,16.9180,13.9773,0.3288,31.2241,1 +1082,14.1393,12.5929,0.2750,27.0073,1 +1083,14.4954,12.0668,0.2141,26.7765,1 +1084,14.5066,12.9393,0.2155,27.6615,1 +1085,14.8258,12.2025,0.2202,27.2485,1 +1086,14.5029,12.3624,0.2337,27.0991,1 +1087,13.9410,12.8191,0.2968,27.0570,1 +1088,14.4525,12.3243,0.3165,27.0934,1 +1089,14.2695,14.3351,0.2152,28.8199,1 +1090,14.5373,12.9635,0.3991,27.8999,1 +1091,14.1988,12.4493,0.2019,26.8500,1 +1092,13.9854,14.3522,0.2222,28.5600,1 +1093,14.7170,13.0881,0.2947,28.0999,1 +1094,14.5576,12.2221,0.2189,26.9986,1 +1095,14.7223,13.2195,0.2081,28.1500,1 +1096,14.0551,13.2606,0.2126,27.5283,1 +1097,14.2863,12.6870,0.2762,27.2495,1 +1098,14.1930,14.0868,0.2169,28.4968,1 +1099,14.3172,12.8626,0.2965,27.4763,1 +1100,14.6094,12.4793,0.2367,27.3255,1 +1101,14.2498,14.7239,0.2931,29.2669,1 +1102,14.1610,13.0769,0.2327,27.4706,1 +1103,14.1802,12.4282,0.2196,26.8281,1 +1104,14.5848,13.6572,0.2178,28.4600,1 +1105,14.0673,13.0957,0.3027,27.4657,1 +1106,14.4613,12.3781,0.2391,27.0786,1 +1107,14.3034,14.0514,0.2182,28.5730,1 +1108,14.2857,12.9630,0.3555,27.6042,1 +1109,14.5956,12.4767,0.2808,27.3531,1 +1110,14.4572,13.9618,0.2045,28.6237,1 +1111,14.4604,13.0580,0.2082,27.7266,1 +1112,14.5906,12.3361,0.2191,27.1458,1 +1113,14.5114,13.6580,0.2142,28.3836,1 +1114,13.8795,13.3820,0.3145,27.5761,1 +1115,14.8386,12.1528,0.2130,27.2046,1 +1116,14.5865,13.5394,0.2134,28.3394,1 +1117,14.6549,12.1517,0.2150,27.0216,1 +1118,14.5620,12.5594,0.2175,27.3391,1 +1119,14.4264,13.3498,0.2551,28.0314,1 +1120,14.3124,12.5757,0.2096,27.0977,1 +1121,14.8145,12.1871,0.2140,27.2158,1 +1122,14.5832,13.1887,0.2106,27.9827,1 +1123,14.3140,12.5858,0.2380,27.1380,1 +1124,14.1835,12.2163,0.2871,26.6870,1 +1125,14.7960,12.9491,0.2821,28.0273,1 +1126,14.5621,12.1601,0.2191,26.9413,1 +1127,14.7502,12.1066,0.2357,27.0925,1 +1128,14.1836,13.0021,0.2136,27.3993,1 +1129,14.1896,12.6199,0.3219,27.1314,1 +1130,14.3586,14.1322,0.2961,28.7871,1 +1131,14.6480,13.0374,0.2190,27.9044,1 +1132,14.8971,12.0771,0.2115,27.1857,1 +1133,14.6929,13.1986,0.2109,28.1025,1 +1134,14.3671,12.7832,0.3401,27.4905,1 +1135,14.2477,12.4780,0.2335,26.9594,1 +1136,14.2889,13.9458,0.2128,28.4475,1 +1137,14.7794,12.4591,0.2158,27.4544,1 +1138,14.5136,12.5414,0.2352,27.2904,1 +1139,14.0147,13.4510,0.2637,27.7296,1 +1140,14.2349,12.6171,0.2616,27.1136,1 +1141,14.3325,12.2665,0.3369,26.9362,1 +1142,14.6089,13.5717,0.2201,28.4007,1 +1143,14.0368,12.5384,0.2120,26.7874,1 +1144,14.6541,12.1031,0.2743,27.0317,1 +1145,14.3881,13.1173,0.2454,27.7508,1 +1146,15.3433,12.1225,0.2278,27.6938,1 +1147,14.2359,12.0875,0.2134,26.5370,1 +1148,14.4251,12.9122,0.2097,27.5470,1 +1149,14.4392,12.5542,0.2926,27.2861,1 +1150,14.1799,14.0276,0.2588,28.4664,1 +1151,14.2880,12.9574,0.3198,27.5652,1 +1152,14.5847,12.1954,0.2237,27.0041,1 +1153,15.0282,15.0661,0.2415,30.3359,1 +1154,13.9468,13.5193,0.2873,27.7537,1 +1155,14.2658,12.4347,0.2836,26.9842,1 +1156,14.7021,12.6633,0.2171,27.5826,1 +1157,14.4834,13.7377,0.2154,28.4365,1 +1158,14.3989,12.8972,0.2547,27.5509,1 +1159,14.6775,12.1624,0.2342,27.0742,1 +1160,14.3550,13.0267,0.3028,27.6847,1 +1161,14.3177,13.0957,0.3674,27.7811,1 +1162,14.6601,13.0836,0.2334,27.9771,1 +1163,14.7478,13.6240,0.2316,28.6034,1 +1164,14.9762,12.5337,0.2839,27.7939,1 +1165,14.3414,14.1875,0.4883,29.0172,1 +1166,14.9284,13.4758,0.2294,28.6338,1 +1167,14.6792,12.2011,0.2089,27.0892,1 +1168,14.6969,12.0217,0.2171,26.9360,1 +1169,14.5146,12.9989,0.2122,27.7260,1 +1170,14.7052,12.2026,0.2167,27.1245,1 +1171,14.2814,12.5140,0.2989,27.0945,1 +1172,14.2228,13.2489,0.3132,27.7852,1 +1173,14.5296,12.4816,0.2087,27.2199,1 +1174,14.5218,13.5745,0.2135,28.3098,1 +1175,14.5489,13.2281,0.3028,28.0799,1 +1176,14.2086,12.8482,0.3015,27.3584,1 +1177,14.2231,13.1184,0.2672,27.6087,1 +1178,14.0645,13.1395,0.3278,27.5318,1 +1179,14.7758,12.1679,0.2167,27.1605,1 +1180,14.1931,14.0794,0.2114,28.4841,1 +1181,14.4656,13.2139,0.2185,27.8981,1 +1182,14.7612,12.7506,0.2945,27.8063,1 +1183,14.3609,13.3496,0.2454,27.9561,1 +1184,14.3648,13.1026,0.2174,27.6850,1 +1185,14.5935,12.3060,0.2154,27.1150,1 +1186,14.2318,14.0342,0.3397,28.6058,1 +1187,14.0275,12.9874,0.2143,27.2293,1 +1188,14.3863,12.3321,0.2785,26.9971,1 +1189,14.3845,14.7956,0.2935,29.4737,1 +1190,14.4889,13.6962,0.2194,28.4046,1 +1191,14.3870,12.3616,0.2169,26.9655,1 +1192,14.5468,12.6685,0.2423,27.4577,1 +1193,14.5441,13.3505,0.2114,28.1060,1 +1194,14.5009,12.3569,0.2230,27.0809,1 +1195,14.7246,12.9727,0.2149,27.9123,1 +1196,14.6347,12.9451,0.2195,27.7994,1 +1197,14.4227,12.4532,0.2565,27.1325,1 +1198,14.2148,14.4784,0.2343,28.9277,1 +1199,14.0819,13.1408,0.2986,27.5214,1 +1200,14.6834,12.5434,0.2075,27.4345,1 +1201,14.5309,13.3947,0.2299,28.1557,1 +1202,14.2582,13.4046,0.2345,27.8975,1 +1203,14.3682,12.3831,0.2484,26.9997,1 +1204,14.3723,13.5960,0.2118,28.1803,1 +1205,14.1977,12.9546,0.2126,27.3650,1 +1206,14.6086,12.2496,0.2091,27.0675,1 +1207,14.7722,14.3134,0.2133,29.2990,1 +1208,14.4636,13.2371,0.3040,28.0048,1 +1209,14.2220,12.5453,0.2281,26.9956,1 +1210,14.2505,13.8777,0.2709,28.3993,1 +1211,14.5500,13.2387,0.2963,28.0853,1 +1212,14.5584,12.4122,0.2196,27.1905,1 +1213,14.1941,13.2944,0.2710,27.7596,1 +1214,13.8263,13.3305,0.2134,27.3703,1 +1215,14.6164,12.1799,0.2911,27.0876,1 +1216,14.6609,14.3477,0.2138,29.2224,1 +1217,14.6309,13.0985,0.2129,27.9424,1 +1218,14.7533,12.3873,0.2128,27.3535,1 +1219,14.4504,13.5176,0.2520,28.2203,1 +1220,13.9788,13.0817,0.2081,27.2687,1 +1221,14.4634,12.2702,0.2071,26.9410,1 +1222,14.2847,13.9054,0.2080,28.3982,1 +1223,14.6489,12.4780,0.2523,27.3792,1 +1224,14.2134,12.4851,0.2109,26.9094,1 +1225,14.2983,13.5125,0.2935,28.1044,1 +1226,14.4881,12.2658,0.3026,27.0567,1 +1227,14.5789,12.1778,0.2113,26.9682,1 +1228,14.1635,14.0396,0.2069,28.4102,1 +1229,14.7794,12.5567,0.2326,27.5687,1 +1230,14.7372,11.8354,0.3122,26.8851,1 +1231,14.2510,13.0737,0.2048,27.5296,1 +1232,14.3369,12.2348,0.2105,26.7824,1 +1233,14.6662,12.5700,0.2280,27.4643,1 +1234,14.2976,14.0241,0.2759,28.5977,1 +1235,14.4217,12.7230,0.2324,27.3774,1 +1236,14.6122,11.9336,0.2847,26.8306,1 +1237,14.4274,13.2130,0.2385,27.8790,1 +1238,14.5859,12.4703,0.2177,27.2741,1 +1239,14.4560,13.3446,0.2265,28.0271,1 +1240,14.1930,12.8322,0.2172,27.2424,1 +1241,14.8242,12.4430,0.2452,27.5125,1 +1242,14.2636,14.3131,0.2129,28.7898,1 +1243,14.3220,12.9835,0.2059,27.5115,1 +1244,14.2150,13.0899,0.2228,27.5278,1 +1245,14.4161,13.8339,0.3124,28.5625,1 +1246,14.3314,13.3384,0.3397,28.0096,1 +1247,14.3952,12.3019,0.3128,27.0100,1 +1248,14.4398,13.3258,0.2384,28.0041,1 +1249,14.7237,13.3893,0.3090,28.4220,1 +1250,14.7642,12.3845,0.3034,27.4522,1 +1251,14.2460,12.7353,0.2502,27.2316,1 +1252,14.3235,13.0507,0.2858,27.6600,1 +1253,14.6564,12.2907,0.2388,27.1860,1 +1254,14.4214,14.0752,0.2101,28.7067,1 +1255,14.5735,12.8981,0.2124,27.6841,1 +1256,14.4512,12.7818,0.2772,27.5103,1 +1257,14.0176,13.9588,0.2295,28.2060,1 +1258,14.4574,12.7932,0.3779,27.6286,1 +1259,14.5716,12.9266,0.2985,27.7969,1 +1260,14.6003,13.1270,0.2181,27.9454,1 +1261,14.1138,13.0369,0.2033,27.3540,1 +1262,13.8337,11.9565,0.3146,26.1048,1 +1263,14.5453,13.3018,0.2366,28.0839,1 +1264,14.7379,12.1400,0.2209,27.0989,1 +1265,14.4614,12.1835,0.2117,26.8568,1 +1266,14.2992,13.2907,0.2201,27.8101,1 +1267,14.7599,12.6777,0.2185,27.6564,1 +1268,14.5480,11.9704,0.2102,26.7287,1 +1269,14.3918,13.4712,0.2317,28.0947,1 +1270,16.7670,12.1536,0.2311,29.1517,1 +1271,14.4166,12.4431,0.2904,27.1501,1 +1272,14.0330,13.2231,0.2885,27.5446,1 +1273,14.5989,12.4368,0.2603,27.2961,1 +1274,14.7399,12.3575,0.2489,27.3464,1 +1275,14.5215,13.4856,0.2295,28.2367,1 +1276,14.2806,12.5265,0.2048,27.0120,1 +1277,14.2263,12.6708,0.2452,27.1424,1 +1278,14.0962,13.1218,0.2914,27.5095,1 +1279,14.7187,12.3743,0.2359,27.3291,1 +1280,14.3268,13.9227,0.2075,28.4572,1 +1281,14.5261,12.9739,0.2113,27.7113,1 +1282,14.4898,12.5019,0.2253,27.2170,1 +1283,14.0501,14.1903,0.2120,28.4527,1 +1284,14.4243,13.0815,0.2760,27.7820,1 +1285,14.7910,12.4625,0.2180,27.4718,1 +1286,14.8036,13.4721,0.3053,28.5810,1 +1287,14.1316,13.1004,0.2926,27.5246,1 +1288,14.1593,12.5005,0.2943,26.9542,1 +1289,14.5295,13.5871,0.2249,28.3416,1 +1290,14.5902,12.9995,0.2261,27.8160,1 +1291,14.3075,12.3237,0.2093,26.8406,1 +1292,13.8859,13.4483,0.2121,27.5464,1 +1293,14.5843,12.5164,0.2786,27.3794,1 +1294,14.3578,12.0634,0.2087,26.6301,1 +1295,14.4843,13.5543,0.2083,28.2469,1 +1296,14.6493,12.2236,0.2163,27.0892,1 +1297,14.5390,11.9861,0.3075,26.8327,1 +1298,14.1938,13.2202,0.2679,27.6819,1 +1299,14.3759,12.4901,0.2760,27.1420,1 +1300,14.2946,12.2406,0.2188,26.7542,1 +1301,14.5266,12.8516,0.2488,27.6270,1 +1302,14.7189,12.4504,0.2093,27.3787,1 +1303,14.0349,14.4644,0.2942,28.7936,1 +1304,14.5268,13.0159,0.2101,27.7529,1 +1305,14.7193,12.4843,0.2507,27.4543,1 +1306,14.7888,12.9229,0.2087,27.9206,1 +1307,14.3529,13.1358,0.2483,27.7371,1 +1308,14.3973,12.7892,0.2867,27.4733,1 +1309,14.1742,13.5836,0.2227,27.9807,1 +1310,14.2754,12.8736,0.2800,27.4291,1 +1311,14.8456,12.3611,0.2074,27.4141,1 +1312,14.3248,14.5805,0.3077,29.2131,1 +1313,14.1648,12.9945,0.2046,27.3639,1 +1314,13.9376,12.7454,0.2257,26.9089,1 +1315,14.7264,13.9273,0.2078,28.8618,1 +1316,14.4704,12.9732,0.2129,27.6566,1 +1317,14.6734,13.3094,0.2923,28.2752,1 +1318,17.1581,12.6037,0.2436,30.0055,1 +1319,14.3127,13.7057,0.2710,28.2894,1 +1320,13.7418,12.6147,0.2087,26.5652,1 +1321,14.7359,11.8957,0.2248,26.8566,1 +1322,14.4938,13.4359,0.2123,28.1422,1 +1323,14.9101,12.7740,0.3056,27.9897,1 +1324,13.7772,12.2506,0.2003,26.2281,1 +1325,14.2174,12.9999,0.2401,27.4576,1 +1326,14.6974,12.2703,0.2146,27.1823,1 +1327,14.3791,13.6759,0.2124,28.2675,1 +1328,14.0289,13.2344,0.2099,27.4732,1 +1329,14.3828,12.5446,0.2163,27.1437,1 +1330,14.4412,13.7747,0.2093,28.4253,1 +1331,14.2190,12.2116,0.2150,26.6459,1 +1332,14.8744,12.3997,0.2634,27.5375,1 +1333,14.5021,13.1438,0.2061,27.8520,1 +1334,14.4642,12.3489,0.2662,27.0794,1 +1335,14.1827,12.0919,0.2129,26.4876,1 +1336,14.1609,13.2280,0.2550,27.6439,1 +1337,14.6409,12.4088,0.2020,27.2517,1 +1338,14.5809,12.3742,0.2387,27.1940,1 +1339,14.1831,13.4002,0.2017,27.7852,1 +1340,14.1704,12.7231,0.2938,27.1874,1 +1341,14.3981,13.5759,0.2320,28.2062,1 +1342,15.7359,12.9549,0.2268,28.9176,1 +1343,14.7903,12.4341,0.2112,27.4357,1 +1344,14.5407,12.2918,0.2180,27.0507,1 +1345,14.1436,13.6394,0.3148,28.0980,1 +1346,14.2055,12.8362,0.2291,27.2710,1 +1347,14.6746,12.2628,0.2213,27.1590,1 +1348,14.4655,13.0157,0.2294,27.7108,1 +1349,15.0595,12.5646,0.2465,27.8708,1 +1350,14.3579,13.6345,0.2556,28.2481,1 +1351,14.2007,13.1750,0.2974,27.6732,1 +1352,14.8362,12.7505,0.2260,27.8127,1 +1353,14.8891,12.0102,0.2243,27.1236,1 +1354,14.3756,13.0563,0.2083,27.6403,1 +1355,14.6063,12.2401,0.2178,27.0643,1 +1356,14.7153,14.5740,0.3135,29.6030,1 +1357,14.2919,13.3982,0.2305,27.9206,1 +1358,14.7240,12.5149,0.2421,27.4810,1 +1359,14.5652,12.1204,0.2190,26.9046,1 +1360,14.2146,13.1959,0.3039,27.7146,1 +1361,14.4343,12.4051,0.1947,27.0343,1 +1362,14.3101,14.2207,0.2669,28.7978,1 +1363,14.4148,13.7659,0.2496,28.4306,1 +1364,14.7916,12.1634,0.2221,27.1771,1 +1365,14.3938,12.8098,0.2216,27.4254,1 +1366,14.2527,13.1623,0.2351,27.6503,1 +1367,14.3046,12.2155,0.2165,26.7366,1 +1368,14.2956,14.1323,0.2909,28.7188,1 +1369,14.3258,13.1777,0.2005,27.7040,1 +1370,14.6410,12.5849,0.2337,27.4598,1 +1371,14.3541,13.5463,0.2535,28.1541,1 +1372,14.1814,13.3292,0.2901,27.8010,1 +1373,14.4147,12.4674,0.3143,27.1967,1 +1374,14.7290,12.9222,0.2851,27.9366,1 +1375,14.6334,13.6941,0.2437,28.5712,1 +1376,14.3469,12.4571,0.2299,27.0339,1 +1377,14.5025,12.9747,0.3146,27.7918,1 +1378,15.6219,13.7268,0.3298,29.6785,1 +1379,14.6934,12.1930,0.2470,27.1337,1 +1380,14.7082,11.9348,0.2261,26.8692,1 +1381,14.6520,14.3464,0.2262,29.2248,1 +1382,14.3019,13.1943,0.3071,27.8035,1 +1383,14.3328,12.3696,0.2594,26.9619,1 +1384,14.4057,12.9044,0.3366,27.6467,1 +1385,14.6571,12.7214,0.3167,27.6954,1 +1386,14.6946,12.3665,0.2191,27.2804,1 +1387,14.2971,13.4041,0.2139,27.9152,1 +1388,14.8881,12.4063,0.2405,27.5350,1 +1389,14.4743,12.2138,0.2579,26.9461,1 +1390,14.4381,12.8833,0.2132,27.5348,1 +1391,14.4368,12.2992,0.2131,26.9493,1 +1392,14.5539,13.9651,0.2105,28.7296,1 +1393,14.3025,13.3252,0.3185,27.9462,1 +1394,14.2637,12.3334,0.3033,26.9006,1 +1395,14.4851,13.6788,0.3124,28.4764,1 +1396,15.0613,13.8402,0.2430,29.1445,1 +1397,14.9435,12.3621,0.2247,27.5304,1 +1398,14.3843,12.3786,0.2273,26.9904,1 +1399,14.3280,13.1442,0.2859,27.7582,1 +1400,14.7069,12.2453,0.2302,27.1826,1 +1401,14.9356,12.7103,0.2189,27.8650,1 +1402,14.5512,13.2205,0.2228,27.9946,1 +1403,14.7472,12.3890,0.2449,27.3812,1 +1404,17.9100,12.2195,0.3626,30.4923,1 +1405,13.9788,14.1465,0.2156,28.3410,1 +1406,14.4735,12.4459,0.2381,27.1576,1 +1407,14.6429,12.2172,0.2177,27.0779,1 +1408,14.5920,14.4588,0.2141,29.2651,1 +1409,14.4389,12.3613,0.2146,27.0150,1 +1410,14.6758,12.1932,0.2209,27.0902,1 +1411,14.6877,14.0846,0.2323,29.0046,1 +1412,14.4451,12.4203,0.2129,27.0785,1 +1413,14.7808,12.0949,0.2107,27.0865,1 +1414,14.3403,13.0310,0.2078,27.5792,1 +1415,14.4616,12.6537,0.3337,27.4492,1 +1416,14.2814,12.1274,0.2138,26.6226,1 +1417,14.4275,13.0177,0.2241,27.6696,1 +1418,14.5931,12.3521,0.2191,27.1643,1 +1419,14.3007,13.9961,0.2213,28.5182,1 +1420,14.3388,13.1114,0.2867,27.7369,1 +1421,14.1816,12.3113,0.2907,26.7838,1 +1422,14.2727,13.7359,0.2137,28.2225,1 +1423,14.8153,12.2775,0.2205,27.3134,1 +1424,14.5619,12.4345,0.2163,27.2129,1 +1425,14.1304,13.3827,0.3446,27.8578,1 +1426,14.2942,12.3475,0.3422,26.9839,1 +1427,14.5370,12.1657,0.2194,26.9224,1 +1428,14.3469,13.6233,0.2106,28.1809,1 +1429,14.6005,12.4093,0.2184,27.2283,1 +1430,14.5887,12.4034,0.2212,27.2134,1 +1431,14.6902,13.2534,0.2390,28.1827,1 +1432,14.4169,12.1852,0.3747,26.9769,1 +1433,14.5854,12.1511,0.2140,26.9507,1 +1434,14.3355,13.0848,0.2385,27.6590,1 +1435,14.2868,12.4865,0.2159,26.9892,1 +1436,14.4114,13.1548,0.2928,27.8590,1 +1437,14.4239,13.1972,0.2978,27.9190,1 +1438,14.6414,12.4090,0.2247,27.2753,1 +1439,14.4031,13.6531,0.2178,28.2741,1 +1440,14.6639,12.8610,0.2545,27.7794,1 +1441,14.7821,12.2813,0.2708,27.3344,1 +1442,14.3086,13.7098,0.2259,28.2443,1 +1443,14.6024,13.1141,0.2207,27.9375,1 +1444,14.6040,13.0403,0.2430,27.8873,1 +1445,14.6931,12.3288,0.2269,27.2489,1 +1446,14.4074,13.3648,0.2561,28.0286,1 +1447,14.1413,12.4565,0.2247,26.8225,1 +1448,14.5512,13.4746,0.2196,28.2454,1 +1449,14.5937,12.8207,0.2146,27.6292,1 +1450,14.4959,12.8339,0.2324,27.5624,1 +1451,14.7083,12.9004,0.3917,28.0007,1 +1452,14.3359,13.2791,0.4031,28.0183,1 +1453,14.5451,12.3141,0.2248,27.0841,1 +1454,14.7226,13.0825,0.2150,28.0201,1 +1455,14.5315,13.3389,0.2452,28.1157,1 +1456,14.1621,12.5646,0.2195,26.9462,1 +1457,14.4532,13.6549,0.2262,28.3343,1 +1458,14.2072,12.7570,0.2704,27.2347,1 +1459,14.4907,12.5815,0.2373,27.3097,1 +1460,14.6440,14.2311,0.2149,29.0901,1 +1461,14.2316,12.8265,0.2064,27.2645,1 +1462,14.4101,12.4700,0.2109,27.0910,1 +1463,14.3136,14.0070,0.3157,28.6365,1 +1464,14.2398,13.0915,0.2191,27.5505,1 +1465,14.5406,12.2950,0.2170,27.0527,1 +1466,14.5066,13.9879,0.2242,28.7187,1 +1467,14.5215,12.7494,0.2681,27.5391,1 +1468,14.4947,12.4111,0.2348,27.1408,1 +1469,14.2773,14.2953,0.3107,28.8833,1 +1470,14.2674,12.9866,0.2888,27.5430,1 +1471,14.7055,12.4707,0.2098,27.3861,1 +1472,14.1725,13.7793,0.2085,28.1605,1 +1473,14.3765,13.0599,0.2886,27.7252,1 +1474,14.5820,12.3551,0.2116,27.1487,1 +1475,14.3842,13.7606,0.2106,28.3554,1 +1476,14.4669,12.8669,0.2056,27.5395,1 +1477,14.5709,12.5769,0.2139,27.3617,1 +1478,14.2474,14.1940,0.2362,28.6776,1 +1479,14.1046,13.0604,0.2603,27.4253,1 +1480,14.2206,12.4742,0.2743,26.9693,1 +1481,14.0992,13.5601,0.2327,27.8921,1 +1482,14.7452,12.4421,0.2803,27.4676,1 +1483,14.1732,12.2610,0.2081,26.6425,1 +1484,13.7367,13.2106,0.3060,27.2534,1 +1485,14.3594,13.0544,0.3055,27.7194,1 +1486,14.6818,11.9135,0.2467,26.8421,1 +1487,14.4193,13.0222,0.3367,27.7783,1 +1488,14.2545,12.5407,0.2202,27.0156,1 +1489,14.8824,12.1642,0.2124,27.2590,1 +1490,14.6148,13.0786,0.2287,27.9221,1 +1491,14.7500,12.2854,0.2117,27.2471,1 +1492,14.4726,13.1612,0.2154,27.8494,1 +1493,14.3904,13.4520,0.2426,28.0851,1 +1494,14.0104,12.3313,0.2600,26.6019,1 +1495,14.1866,14.0334,0.2714,28.4916,1 +1496,14.2945,12.2830,0.2195,26.7970,1 +1497,14.5521,12.4292,0.2510,27.2323,1 +1498,14.1497,13.2564,0.2172,27.6234,1 +1499,14.5174,12.4964,0.2945,27.3083,1 +1500,14.4860,12.0844,0.2481,26.8187,1 +1501,14.6236,14.2257,0.2145,29.0640,1 +1502,14.5789,12.1690,0.2204,26.9683,1 +1503,14.8832,12.1572,0.2223,27.2629,1 +1504,14.2789,13.2694,0.3028,27.8511,1 +1505,14.3987,12.4973,0.2542,27.1502,1 +1506,14.6004,12.1713,0.2310,27.0028,1 +1507,14.3994,13.9710,0.2177,28.5881,1 +1508,14.5729,12.4879,0.2180,27.2788,1 +1509,14.0788,12.5969,0.2178,26.8937,1 +1510,14.1693,13.3879,0.3067,27.8641,1 +1511,14.4415,13.1613,0.2460,27.8489,1 +1512,14.5790,12.0134,0.2167,26.8091,1 +1513,14.6575,12.2196,0.2285,27.1059,1 +1514,14.8437,12.4139,0.2283,27.4860,1 +1515,14.9623,14.6015,0.2821,29.8459,1 +1516,14.3069,13.7320,0.2203,28.2592,1 +1517,14.7332,12.0493,0.2253,27.0078,1 +1518,14.9264,12.3377,0.2206,27.4848,1 +1519,14.3072,13.5356,0.2418,28.0847,1 +1520,14.4366,12.8148,0.3270,27.5787,1 +1521,14.2754,12.0697,0.3094,26.6547,1 +1522,14.2563,12.5423,0.2964,27.0951,1 +1523,14.6096,12.4694,0.2171,27.2961,1 +1524,14.2848,13.2435,0.2362,27.7645,1 +1525,14.1790,12.2994,0.2540,26.7324,1 +1526,15.0415,12.0288,0.2278,27.2982,1 +1527,14.5694,13.6480,0.2122,28.4298,1 +1528,14.7813,12.4061,0.2147,27.4022,1 +1529,14.4521,12.1079,0.2139,26.7739,1 +1530,14.5330,13.5849,0.3015,28.4195,1 +1531,14.4661,12.6081,0.2207,27.2951,1 +1532,14.8134,11.9153,0.2087,26.9374,1 +1533,14.3637,13.3924,0.2075,27.9637,1 +1534,14.6953,12.4725,0.3228,27.4906,1 +1535,14.3973,12.0220,0.2118,26.6312,1 +1536,14.0356,13.2809,0.3008,27.6173,1 +1537,14.5567,12.7997,0.4276,27.7841,1 +1538,14.8017,12.8186,0.2285,27.8489,1 +1539,14.2678,13.2535,0.2211,27.7425,1 +1540,15.0374,12.2236,0.2442,27.5054,1 +1541,14.4239,13.7360,0.2756,28.4355,1 +1542,14.3282,12.9904,0.2194,27.5383,1 +1543,14.7278,12.4812,0.2270,27.4363,1 +1544,14.6009,13.4930,0.2198,28.3140,1 +1545,14.1408,13.1927,0.3069,27.6405,1 +1546,14.4103,12.6092,0.2960,27.3155,1 +1547,14.2784,13.1994,0.2708,27.7488,1 +1548,14.1875,13.0981,0.2279,27.5136,1 +1549,15.0108,12.4017,0.2582,27.6707,1 +1550,14.1476,14.1513,0.2127,28.5118,1 +1551,14.3401,13.0181,0.2227,27.5811,1 +1552,14.8532,12.8012,0.2224,27.8770,1 +1553,14.5205,13.0504,0.2532,27.8242,1 +1554,14.7199,14.2061,0.2198,29.1460,1 +1555,15.1087,12.1917,0.2266,27.5271,1 +1556,14.5088,12.0778,0.3101,26.8973,1 +1557,14.3420,13.1321,0.2998,27.7739,1 +1558,14.5698,12.4039,0.3120,27.2857,1 +1559,14.7293,13.0079,0.2453,27.9828,1 +1560,14.3298,13.9600,0.2203,28.5103,1 +1561,14.6936,12.4534,0.2046,27.3516,1 +1562,13.8231,13.0075,0.3124,27.1433,1 +1563,14.6524,13.1270,0.2496,28.0291,1 +1564,14.9314,12.3732,0.2284,27.5331,1 +1565,14.9411,12.2352,0.2245,27.4011,1 +1566,14.3152,13.0057,0.2177,27.5387,1 +1567,15.2357,12.3893,0.3032,27.9285,1 +1568,14.3397,13.7092,0.2524,28.3014,1 +1569,14.4233,13.2198,0.2995,27.9426,1 +1570,14.5507,12.4445,0.2224,27.2177,1 +1571,14.9732,12.5924,0.2444,27.8101,1 +1572,14.3127,12.9873,0.2170,27.5171,1 +1573,14.4443,12.8262,0.3030,27.5736,1 +1574,14.7813,12.6725,0.2425,27.6965,1 +1575,14.6785,12.7307,0.2268,27.6361,1 +1576,14.8540,12.2819,0.2243,27.3604,1 +1577,14.6239,13.8242,0.2406,28.6887,1 +1578,14.9790,13.9957,0.2435,29.2182,1 +1579,14.1874,12.3947,0.2183,26.8004,1 +1580,14.3117,12.3262,0.2083,26.8463,1 +1581,14.3819,12.9836,0.2361,27.6017,1 +1582,14.4336,12.8905,0.2424,27.5665,1 +1583,14.0447,14.3327,0.2181,28.5958,1 +1584,14.3448,12.7707,0.2370,27.3526,1 +1585,14.8082,12.6440,0.2590,27.7115,1 +1586,14.6650,12.8135,0.2077,27.6863,1 +1587,14.6192,13.1375,0.2163,27.9731,1 +1588,14.3259,12.5927,0.3580,27.2769,1 +1589,14.5070,13.5247,0.3047,28.3365,1 +1590,14.1723,13.0278,0.2051,27.4053,1 +1591,14.6180,12.3423,0.2200,27.1803,1 +1592,14.4590,14.1507,0.2180,28.8277,1 +1593,14.5522,13.0693,0.2790,27.9006,1 +1594,13.9883,12.3795,0.3417,26.7095,1 +1595,16.0914,12.3875,0.2425,28.7215,1 +1596,14.0645,13.0813,0.2851,27.4310,1 +1597,14.6628,12.5825,0.2382,27.4837,1 +1598,14.2906,13.5820,0.2339,28.1065,1 +1599,14.1941,12.9967,0.2202,27.4111,1 +1600,14.8691,12.6975,0.2800,27.8466,1 +1601,14.4852,13.0376,0.2238,27.7468,1 +1602,14.4318,12.2213,0.2134,26.8666,1 +1603,14.6229,12.1764,0.2132,27.0126,1 +1604,14.4523,13.1716,0.3208,27.9448,1 +1605,14.2835,12.4470,0.3453,27.0759,1 +1606,14.2852,12.0671,0.3019,26.6544,1 +1607,14.4266,13.1268,0.3140,27.8675,1 +1608,14.9033,12.3757,0.2219,27.5011,1 +1609,14.2317,11.9101,0.2128,26.3547,1 +1610,14.4501,12.9788,0.3128,27.7420,1 +1611,14.3745,12.6205,0.2498,27.2449,1 +1612,14.8080,13.4333,0.2156,28.4571,1 +1613,14.5386,12.8895,0.3060,27.7341,1 +1614,14.9775,15.5243,0.2578,30.7597,1 +1615,31.0408,15.6428,0.2911,46.9750,1 +1616,15.0023,26.9385,0.2709,42.2122,1 +1617,15.1874,14.6196,0.3589,30.1660,1 +1618,14.8854,23.9944,0.2842,39.1643,1 +1619,15.6459,13.3361,0.2417,29.2240,1 +1620,16.3139,12.4171,0.2220,28.9530,1 +1621,15.5340,12.7335,0.2019,28.4696,1 +1622,14.8093,14.2134,0.2693,29.2922,1 +1623,14.7082,13.7619,0.2620,28.7322,1 +1624,16.2295,13.8320,0.2720,30.3337,1 +1625,14.9771,13.2384,0.2632,28.4788,1 +1626,14.6963,15.5765,0.2455,30.5184,1 +1627,14.8920,14.0922,0.2495,29.2339,1 +1628,14.7936,13.4496,0.2657,28.5093,1 +1629,15.6205,13.7376,0.2642,29.6226,1 +1630,14.7512,13.9869,0.2880,29.0262,1 +1631,14.9471,14.4337,0.2314,29.6124,1 +1632,14.6928,13.2630,0.2992,28.2551,1 +1633,15.4068,13.1783,0.2493,28.8344,1 +1634,15.2332,14.0105,0.2480,29.4920,1 +1635,14.8097,14.2360,0.2530,29.2989,1 +1636,14.9819,14.0498,0.2567,29.2885,1 +1637,15.2120,13.5605,0.2500,29.0226,1 +1638,16.2003,13.5455,0.2503,29.9966,1 +1639,15.4177,15.3297,0.3051,31.0527,1 +1640,15.4202,14.1466,0.2568,29.8237,1 +1641,14.9879,13.6223,0.2552,28.8655,1 +1642,14.9205,12.9610,0.2375,28.1192,1 +1643,14.7668,14.4472,0.2304,29.4446,1 +1644,14.8187,13.4499,0.2403,28.5089,1 +1645,15.8974,13.2859,0.3057,29.4891,1 +1646,15.0027,13.1291,0.2358,28.3678,1 +1647,14.8754,14.9367,0.2632,30.0753,1 +1648,15.9026,13.4977,0.2287,29.6290,1 +1649,15.2893,13.9525,0.2234,29.4653,1 +1650,15.7733,13.4990,0.2802,29.5526,1 +1651,15.5306,14.9190,0.2979,30.7476,1 +1652,15.1993,12.5717,0.2284,27.9994,1 +1653,14.6059,12.5345,0.2653,27.4058,1 +1654,14.5213,12.4495,0.3645,27.3356,1 +1655,14.2444,13.1142,0.2235,27.5821,1 +1656,14.8108,13.1271,0.2460,28.1840,1 +1657,14.3710,12.3968,0.2214,26.9894,1 +1658,14.2813,13.0628,0.3116,27.6559,1 +1659,14.3601,12.4470,0.2226,27.0298,1 +1660,14.7284,13.6721,0.2215,28.6221,1 +1661,14.3646,12.2009,0.2150,26.7806,1 +1662,14.5510,12.4556,0.2084,27.2152,1 +1663,14.3401,13.9165,0.3708,28.6275,1 +1664,14.2683,12.6227,0.2293,27.1204,1 +1665,14.8091,11.8769,0.2316,26.9176,1 +1666,14.7525,13.9807,0.3556,29.0890,1 +1667,14.6246,12.5359,0.2359,27.3964,1 +1668,14.4463,12.7690,0.2561,27.4714,1 +1669,14.0012,13.1749,0.3009,27.4771,1 +1670,14.3057,12.1947,0.2208,26.7213,1 +1671,15.1150,12.1538,0.2074,27.4762,1 +1672,14.4689,13.3059,0.2206,27.9957,1 +1673,14.3812,12.7421,0.3034,27.4269,1 +1674,14.7708,11.9351,0.2095,26.9155,1 +1675,14.9119,13.0542,0.4029,28.3691,1 +1676,14.8700,12.3315,0.2394,27.4409,1 +1677,14.8369,12.6730,0.3620,27.8720,1 +1678,14.3678,13.7975,0.3286,28.4940,1 +1679,14.2679,12.8172,0.3508,27.4360,1 +1680,16.0518,11.9260,0.2824,28.2603,1 +1681,15.1001,14.0468,0.2701,29.4171,1 +1682,14.5940,12.8570,0.2786,27.7298,1 +1683,14.0768,12.2413,0.2209,26.5393,1 +1684,14.3489,13.9712,0.3015,28.6216,1 +1685,14.6311,12.2002,0.3096,27.1410,1 +1686,14.7461,12.2700,0.2133,27.2294,1 +1687,14.4143,13.0906,0.2385,27.7435,1 +1688,14.7226,12.2749,0.2176,27.2154,1 +1689,14.4026,12.3548,0.2962,27.0536,1 +1690,14.2327,13.8350,0.2170,28.2847,1 +1691,14.6585,12.0569,0.2147,26.9302,1 +1692,14.4376,12.8367,0.3245,27.5989,1 +1693,14.6480,13.0754,0.2393,27.9628,1 +1694,14.1207,12.3768,0.2865,26.7840,1 +1695,14.0132,14.2780,0.3008,28.5920,1 +1696,14.6851,14.0702,0.2162,28.9715,1 +1697,14.7326,12.5124,0.2995,27.5446,1 +1698,14.4521,12.1368,0.2143,26.8034,1 +1699,14.5723,13.0327,0.2391,27.8443,1 +1700,14.7881,12.4521,0.3101,27.5505,1 +1701,14.2851,13.2565,0.2333,27.7749,1 +1702,14.4562,12.8200,0.2124,27.4889,1 +1703,14.3936,12.7572,0.2344,27.3852,1 +1704,14.3316,14.0555,0.3089,28.6960,1 +1705,14.0843,12.7828,0.2147,27.0820,1 +1706,14.5128,12.3967,0.2862,27.1959,1 +1707,14.1083,13.4420,0.2113,27.7618,1 +1708,14.6373,12.2727,0.2203,27.1305,1 +1709,14.5775,12.1879,0.2037,26.9693,1 +1710,13.9697,14.2843,0.3200,28.5740,1 +1711,14.4975,12.3892,0.2353,27.1221,1 +1712,14.7962,11.8421,0.2132,26.8516,1 +1713,14.5489,13.8976,0.2097,28.6562,1 +1714,14.6451,12.2579,0.2304,27.1334,1 +1715,14.3843,12.3103,0.2769,26.9715,1 +1716,14.1306,13.1171,0.2137,27.4615,1 +1717,14.6009,12.4400,0.2535,27.2944,1 +1718,14.9282,11.9864,0.2186,27.1332,1 +1719,14.3700,13.0288,0.2372,27.6361,1 +1720,14.2012,12.5169,0.2076,26.9258,1 +1721,14.0954,14.4262,0.2955,28.8171,1 +1722,14.4999,13.2758,0.3663,28.1421,1 +1723,14.6329,12.3445,0.2146,27.1920,1 +1724,13.9662,13.7258,0.2050,27.8971,1 +1725,14.3885,13.1630,0.2083,27.7598,1 +1726,14.6697,12.4597,0.2760,27.4054,1 +1727,14.4468,13.5913,0.2063,28.2445,1 +1728,14.3036,12.9177,0.2071,27.4286,1 +1729,14.5711,12.3109,0.2184,27.1005,1 +1730,14.2206,14.1615,0.3189,28.7011,1 +1731,14.1712,12.8802,0.2150,27.2665,1 +1732,14.6557,12.6988,0.3301,27.6846,1 +1733,15.1451,13.3871,0.2195,28.7519,1 +1734,14.2827,13.0499,0.2038,27.5365,1 +1735,14.2906,12.4164,0.2105,26.9177,1 +1736,14.2452,14.4026,0.2850,28.9331,1 +1737,14.4959,12.9717,0.2811,27.7489,1 +1738,14.2654,12.4179,0.2031,26.8866,1 +1739,14.4121,13.6577,0.2185,28.2885,1 +1740,14.6755,12.9142,0.2128,27.8026,1 +1741,14.3824,12.5490,0.2091,27.1406,1 +1742,14.0950,14.3844,0.1984,28.6779,1 +1743,13.8702,13.0547,0.3258,27.2508,1 +1744,14.5672,12.2988,0.2059,27.0719,1 +1745,14.5017,14.1127,0.2244,28.8388,1 +1746,14.1680,12.9918,0.2048,27.3647,1 +1747,14.3456,12.6800,0.2919,27.3175,1 +1748,14.3715,14.0699,0.2091,28.6507,1 +1749,14.4776,13.5166,0.3965,28.3909,1 +1750,14.4377,12.2803,0.2251,26.9432,1 +1751,14.8413,13.0253,0.2097,28.0766,1 +1752,14.3308,13.4041,0.2951,28.0301,1 +1753,14.0847,12.4393,0.2467,26.7708,1 +1754,14.6539,13.5392,0.3293,28.5226,1 +1755,14.2420,13.1568,0.2384,27.6373,1 +1756,15.0655,12.4180,0.2324,27.7160,1 +1757,14.3724,13.5088,0.2257,28.1071,1 +1758,14.9321,13.7372,0.2519,28.9213,1 +1759,14.5221,12.5229,0.2367,27.2818,1 +1760,14.6600,12.1467,0.2128,27.0199,1 +1761,14.3254,13.0889,0.2114,27.6257,1 +1762,14.8185,12.4445,0.2173,27.4804,1 +1763,14.3827,13.6648,0.3388,28.3863,1 +1764,14.0969,13.0983,0.2872,27.4824,1 +1765,14.5348,12.2719,0.2141,27.0208,1 +1766,14.3087,14.5031,0.2077,29.0196,1 +1767,21.4793,11.8566,0.2234,33.5594,1 +1768,14.0889,13.2878,0.2250,27.6017,1 +1769,14.4094,12.4952,0.2243,27.1289,1 +1770,14.7185,13.1905,0.2130,28.1221,1 +1771,14.1679,13.1035,0.2456,27.5170,1 +1772,14.5959,12.1902,0.2233,27.0095,1 +1773,14.6602,13.7326,0.2151,28.6080,1 +1774,14.1219,13.3037,0.3002,27.7259,1 +1775,14.4563,12.5734,0.2134,27.2433,1 +1776,14.1148,14.4844,0.3195,28.9188,1 +1777,14.5453,14.2046,0.3171,29.0672,1 +1778,14.7874,12.4169,0.2911,27.4954,1 +1779,14.3396,12.3619,0.2057,26.9076,1 +1780,14.1237,12.9885,0.2949,27.4073,1 +1781,14.7344,12.1581,0.2264,27.1190,1 +1782,14.5562,13.7161,0.2188,28.4912,1 +1783,14.3038,12.8916,0.2112,27.4066,1 +1784,14.7335,12.3520,0.2202,27.3058,1 +1785,14.7316,14.0917,0.2591,29.0824,1 +1786,14.0746,13.4565,0.2253,27.7564,1 +1787,14.5182,12.2481,0.2919,27.0583,1 +1788,14.4144,13.1848,0.2336,27.8328,1 +1789,14.4224,13.1689,0.2955,27.8870,1 +1790,14.5526,12.2999,0.2255,27.0781,1 +1791,14.1444,14.7279,0.2979,29.1702,1 +1792,14.3882,13.8990,0.2737,28.5610,1 +1793,14.7208,12.2901,0.2161,27.2271,1 +1794,14.8124,11.9781,0.2114,27.0020,1 +1795,14.4910,13.0023,0.2139,27.7072,1 +1796,14.5015,12.3597,0.2938,27.1552,1 +1797,14.0771,14.1668,0.2175,28.4615,1 +1798,14.2626,13.1981,0.3228,27.7836,1 +1799,14.6067,12.1144,0.2187,26.9398,1 +1800,14.5154,13.9069,0.2130,28.6354,1 +1801,14.0353,13.0588,0.2010,27.2951,1 +1802,14.3853,12.6922,0.2638,27.3413,1 +1803,14.2242,13.9961,0.2164,28.4367,1 +1804,14.4202,12.9920,0.2068,27.6191,1 +1805,14.6850,12.3181,0.2100,27.2132,1 +1806,14.3328,13.8374,0.2120,28.3823,1 +1807,14.3362,12.7596,0.3411,27.4369,1 +1808,15.8717,12.1328,0.2412,28.2459,1 +1809,14.4418,13.2645,0.2158,27.9222,1 +1810,14.2804,12.8763,0.2098,27.3667,1 +1811,14.6026,12.5031,0.2430,27.3489,1 +1812,13.9513,13.3727,0.2883,27.6123,1 +1813,14.1364,12.8745,0.3293,27.3403,1 +1814,14.3195,12.2666,0.2806,26.8667,1 +1815,14.7051,13.8757,0.2222,28.8030,1 +1816,14.3491,12.1932,0.2310,26.7734,1 +1817,14.4046,12.1321,0.2347,26.7715,1 +1818,14.4229,13.0117,0.2392,27.6739,1 +1819,14.3301,12.5149,0.2101,27.0551,1 +1820,14.4003,12.1595,0.2103,26.7703,1 +1821,14.4309,13.5149,0.2124,28.1583,1 +1822,14.4207,12.3416,0.2966,27.0590,1 +1823,14.1967,13.2413,0.2142,27.6524,1 +1824,14.3540,12.8800,0.2347,27.4690,1 +1825,14.4832,12.6786,0.2241,27.3861,1 +1826,14.3689,14.5015,0.2924,29.1629,1 +1827,14.2925,12.9582,0.2184,27.4691,1 +1828,14.2559,12.5735,0.2720,27.1015,1 +1829,14.4985,13.5209,0.2101,28.2295,1 +1830,14.5160,12.9241,0.2034,27.6437,1 +1831,14.5633,12.2145,0.2088,26.9866,1 +1832,14.3755,14.0781,0.2266,28.6804,1 +1833,14.2574,13.1955,0.2799,27.7328,1 +1834,14.2482,12.4975,0.2243,26.9700,1 +1835,14.1727,14.5714,0.2252,28.9693,1 +1836,14.5620,13.0076,0.2183,27.7880,1 +1837,14.1767,12.2295,0.2220,26.6283,1 +1838,14.2565,14.1939,0.2160,28.6664,1 +1839,14.1332,13.2291,0.2893,27.6518,1 +1840,14.4396,12.2431,0.2184,26.9013,1 +1841,14.5394,14.4143,0.2124,29.1661,1 +1842,13.8627,13.0403,0.2141,27.1172,1 +1843,14.7191,12.3342,0.2245,27.2778,1 +1844,14.6102,14.3879,0.2889,29.2871,1 +1845,14.1568,13.2698,0.2058,27.6325,1 +1846,14.4139,12.1646,0.2146,26.7932,1 +1847,15.0738,13.4686,0.2414,28.7839,1 +1848,14.2618,13.4794,0.3288,28.0702,1 +1849,14.2867,12.7209,0.3074,27.3151,1 +1850,14.3266,12.9950,0.3377,27.6594,1 +1851,14.7977,13.8263,0.2427,28.8670,1 +1852,14.4084,12.3326,0.2188,26.9598,1 +1853,14.4218,12.9968,0.2135,27.6324,1 +1854,14.2417,13.2196,0.2463,27.7078,1 +1855,14.8951,12.6097,0.3335,27.8385,1 +1856,14.3751,12.9482,0.2176,27.5410,1 +1857,14.3224,12.7968,0.2132,27.3326,1 +1858,14.6849,12.8364,0.3286,27.8499,1 +1859,14.7273,13.5497,0.2782,28.5554,1 +1860,14.1049,12.9418,0.3231,27.3699,1 +1861,14.2874,12.2512,0.2939,26.8326,1 +1862,15.0808,14.1336,0.3000,29.5144,1 +1863,14.7612,13.4800,0.2208,28.4621,1 +1864,14.7506,12.4579,0.2121,27.4207,1 +1865,15.3807,12.5669,0.2622,28.2100,1 +1866,14.1580,13.4040,0.2309,27.7932,1 +1867,14.0468,12.2937,0.2193,26.5600,1 +1868,14.3686,12.5170,0.2145,27.1001,1 +1869,14.2604,12.1743,0.2216,26.6563,1 +1870,14.3755,12.1002,0.3121,26.7880,1 +1871,13.6778,13.1778,0.3503,27.2059,1 +1872,14.0303,11.8816,0.2082,26.1201,1 +1873,14.5030,12.3837,0.2151,27.1018,1 +1874,13.9914,13.1472,0.2124,27.3512,1 +1875,13.9096,12.4310,0.2006,26.5414,1 +1876,13.8079,12.9574,0.3066,27.0720,1 +1877,14.2040,12.2230,0.2157,26.6430,1 +1878,14.2517,11.9121,0.3098,26.4736,1 +1879,13.8679,12.9323,0.2158,27.0162,1 +1880,14.1819,13.0065,0.2660,27.4545,1 +1881,14.0743,14.2937,0.2106,28.5787,1 +1882,14.1938,12.8779,0.2121,27.2839,1 +1883,14.4017,12.2699,0.2201,26.8917,1 +1884,14.5178,13.9846,0.2188,28.7214,1 +1885,14.0274,13.1723,0.3235,27.5234,1 +1886,14.3473,12.1923,0.2170,26.7567,1 +1887,14.4075,14.3086,0.2976,29.0140,1 +1888,14.5295,12.8580,0.2156,27.6033,1 +1889,14.8896,12.2577,0.2371,27.3844,1 +1890,13.9975,14.3852,0.2290,28.6117,1 +1891,14.0660,12.9644,0.2551,27.2855,1 +1892,14.4426,12.4478,0.3062,27.1966,1 +1893,14.5565,13.8784,0.2111,28.6461,1 +1894,14.3149,13.1050,0.2151,27.6352,1 +1895,14.5584,12.7214,0.2292,27.5092,1 +1896,14.3142,14.1819,0.2107,28.7068,1 +1897,14.4349,13.0690,0.2108,27.7147,1 +1898,14.4675,12.3798,0.2147,27.0622,1 +1899,14.5564,13.6779,0.2231,28.4575,1 +1900,14.4611,12.9927,0.2156,27.6695,1 +1901,14.1853,12.4095,0.2372,26.8320,1 +1902,14.1399,13.9013,0.3221,28.3634,1 +1903,14.2062,13.0962,0.2920,27.5945,1 +1904,14.6653,12.1578,0.2183,27.0414,1 +1905,13.9411,13.4724,0.2215,27.6352,1 +1906,14.0943,12.6121,0.2276,26.9340,1 +1907,14.3712,11.8747,0.2155,26.4614,1 +1908,13.9292,13.0518,0.2104,27.1915,1 +1909,14.1534,12.0294,0.2162,26.3991,1 +1910,14.3874,13.4003,0.2293,28.0171,1 +1911,14.0613,12.8791,0.3035,27.2441,1 +1912,13.9338,12.1749,0.2120,26.3208,1 +1913,14.1517,13.1865,0.2072,27.5454,1 +1914,14.2140,12.4906,0.2209,26.9258,1 +1915,14.2617,12.0948,0.2986,26.6553,1 +1916,13.7363,13.4235,0.3300,27.4902,1 +1917,14.9099,12.3865,0.2888,27.5854,1 +1918,14.4097,11.9803,0.2487,26.6389,1 +1919,14.2640,12.9467,0.3001,27.5108,1 +1920,14.1210,12.2771,0.2245,26.6226,1 +1921,14.1756,13.6113,0.2137,28.0007,1 +1922,14.7478,12.4343,0.3984,27.5806,1 +1923,14.6707,12.0091,0.2089,26.8889,1 +1924,14.4792,13.1770,0.2081,27.8644,1 +1925,14.7455,12.4166,0.2206,27.3830,1 +1926,14.6084,12.2607,0.3370,27.2062,1 +1927,14.1030,12.9447,0.2323,27.2801,1 +1928,14.5135,12.4299,0.2169,27.1603,1 +1929,14.8139,11.9626,0.2183,26.9949,1 +1930,14.6471,13.8254,0.3262,28.7988,1 +1931,14.2255,12.4286,0.2083,26.8624,1 +1932,14.3786,12.6650,0.3110,27.3546,1 +1933,14.5386,12.7503,0.2350,27.5239,1 +1934,14.5552,12.2716,0.2138,27.0406,1 +1935,14.1861,14.0564,0.2073,28.4501,1 +1936,14.4914,13.0542,0.2936,27.8392,1 +1937,14.4381,12.7698,0.3032,27.5112,1 +1938,14.8143,13.1451,0.2181,28.1775,1 +1939,14.4408,12.8663,0.2089,27.5161,1 +1940,14.4037,12.3151,0.2134,26.9323,1 +1941,14.2591,14.4803,0.3351,29.0745,1 +1942,13.9033,13.0989,0.3177,27.3200,1 +1943,14.2958,12.4315,0.3527,27.0801,1 +1944,14.0072,13.0914,0.2209,27.3196,1 +1945,14.7071,12.2352,0.2371,27.1797,1 +1946,14.1176,11.8741,0.2108,26.2027,1 +1947,13.7920,13.1994,0.2623,27.2538,1 +1948,14.2826,12.4139,0.2150,26.9115,1 +1949,14.2155,12.7986,0.2110,27.2252,1 +1950,14.3188,13.4647,0.2234,28.0069,1 +1951,14.1635,12.2179,0.2495,26.6310,1 +1952,14.0398,14.4948,0.2755,28.8103,1 +1953,13.9263,13.2296,0.2136,27.3695,1 +1954,14.1740,12.1936,0.2110,26.5787,1 +1955,14.1412,13.2341,0.2163,27.5918,1 +1956,14.6535,12.7128,0.3024,27.6689,1 +1957,14.7340,11.9488,0.2320,26.9152,1 +1958,14.0769,14.0917,0.4151,28.5838,1 +1959,14.6693,12.0922,0.2220,26.9835,1 +1960,14.7877,12.1710,0.2733,27.2321,1 +1961,14.2100,13.2094,0.2177,27.6371,1 +1962,14.6962,12.3906,0.2373,27.3243,1 +1963,14.8037,12.3523,0.2485,27.4045,1 +1964,14.5324,13.1211,0.2193,27.8731,1 +1965,14.4657,12.3208,0.2196,27.0063,1 +1966,14.6316,12.1320,0.2136,26.9774,1 +1967,14.4589,12.1884,0.2581,26.9055,1 +1968,14.3230,12.7485,0.3157,27.3873,1 +1969,14.2212,13.6349,0.3197,28.1759,1 +1970,14.7769,12.4337,0.3395,27.5501,1 +1971,14.4810,12.5978,0.2449,27.3239,1 +1972,14.0941,13.4918,0.2168,27.8028,1 +1973,14.2537,12.3456,0.3174,26.9168,1 +1974,14.4954,11.9970,0.2897,26.7824,1 +1975,14.4609,13.1391,0.2051,27.8052,1 +1976,14.3651,12.1953,0.2167,26.7772,1 +1977,14.4199,12.2573,0.2183,26.8956,1 +1978,14.5762,12.8519,0.2759,27.7041,1 +1979,14.6874,12.1947,0.2253,27.1075,1 +1980,14.3160,13.8043,0.2108,28.3311,1 +1981,14.7286,13.0078,0.2040,27.9405,1 +1982,14.9175,12.0489,0.2225,27.1890,1 +1983,14.5928,13.9856,0.2143,28.7928,1 +1984,14.2168,12.7960,0.2073,27.2201,1 +1985,14.5883,12.2225,0.2205,27.0314,1 +1986,14.3673,14.1829,0.2204,28.7706,1 +1987,14.3523,13.2342,0.2624,27.8490,1 +1988,14.8600,14.3990,0.2864,29.5456,1 +1989,15.3248,14.2217,0.3158,29.8625,1 +1990,16.7778,12.1931,0.3097,29.2809,1 +1991,16.7596,13.0671,0.2699,30.0967,1 +1992,16.4882,13.4054,0.2659,30.1595,1 +1993,15.7443,13.2413,0.2816,29.2675,1 +1994,15.9147,12.4957,0.2726,28.6830,1 +1995,17.4072,15.8399,0.2617,33.5089,1 +1996,15.8200,14.4358,0.2869,30.5429,1 +1997,16.8957,12.7076,0.2978,29.9012,1 +1998,17.0184,13.1480,0.2414,30.4079,1 +1999,15.8685,12.6855,0.2457,28.7999,1 +2000,15.8950,12.9364,0.3660,29.1975,1 +2001,15.0972,13.3383,0.2207,28.6562,1 +2002,14.3296,12.6466,0.2318,27.2080,1 +2003,14.6992,12.9538,0.3464,27.9994,1 +2004,14.4041,13.5634,0.2230,28.1906,1 +2005,14.5082,12.3091,0.2144,27.0317,1 +2006,15.1292,12.5110,0.3053,27.9457,1 +2007,14.6546,14.2996,0.2998,29.2541,1 +2008,14.6870,12.9691,0.3126,27.9687,1 +2009,14.7284,12.7405,0.3374,27.8064,1 +2010,14.8070,14.7784,0.3322,29.9176,1 +2011,16.1041,12.7194,0.2186,29.0422,1 +2012,15.4875,13.1024,0.3261,28.9165,1 +2013,14.7666,11.5174,0.2342,26.5185,1 +2014,14.6059,13.2939,0.2984,28.1983,1 +2015,14.9058,12.8348,0.2692,28.0100,1 +2016,16.3940,13.1873,0.3005,29.8819,1 +2017,15.1502,13.8478,0.2897,29.2879,1 +2018,15.1062,12.5238,0.3238,27.9541,1 +2019,14.7788,12.6032,0.3045,27.6866,1 +2020,14.5931,13.4719,0.3131,28.3782,1 +2021,14.6852,12.1441,0.3310,27.1605,1 +2022,14.7923,12.2016,0.3138,27.3079,1 +2023,14.9703,13.9045,0.3103,29.1852,1 +2024,14.9175,12.8036,0.2474,27.9688,1 +2025,14.8981,13.0250,0.3147,28.2380,1 +2026,14.5374,12.1551,0.3026,26.9952,1 +2027,14.6095,11.9070,0.2665,26.7831,1 +2028,14.3126,11.8679,0.2811,26.4617,1 +2029,14.1968,13.4205,0.3033,27.9208,1 +2030,14.2685,12.2839,0.3304,26.8828,1 +2031,14.3107,11.5320,0.2956,26.1385,1 +2032,14.5903,13.5871,0.2905,28.4680,1 +2033,15.0426,12.6974,0.3295,28.0696,1 +2034,14.9646,12.6010,0.2657,27.8313,1 +2035,15.0757,14.4457,0.2435,29.7649,1 +2036,14.7624,12.6977,0.2777,27.7378,1 +2037,14.3157,12.2944,0.2461,26.8564,1 +2038,14.4388,13.5991,0.2177,28.2558,1 +2039,15.3383,12.3004,0.2503,27.8891,1 +2040,14.7616,12.3474,0.2255,27.3346,1 +2041,14.1392,14.1999,0.2114,28.5506,1 +2042,14.3390,12.5308,0.3119,27.1819,1 +2043,14.4279,12.2054,0.3146,26.9479,1 +2044,14.5927,13.2641,0.2169,28.0738,1 +2045,14.5038,12.4687,0.2128,27.1853,1 +2046,14.4485,12.2038,0.2837,26.9360,1 +2047,14.4494,13.6660,0.2805,28.3961,1 +2048,14.3281,12.2340,0.2180,26.7804,1 +2049,14.5778,12.5812,0.2196,27.3786,1 +2050,14.9410,13.9022,0.2277,29.0710,1 +2051,14.5734,12.6005,0.2968,27.4707,1 +2052,14.3235,13.1179,0.3463,27.7878,1 +2053,14.1026,13.7116,0.3000,28.1143,1 +2054,14.9891,13.1368,0.2353,28.3613,1 +2055,14.6761,12.0693,0.2140,26.9595,1 +2056,14.2687,13.8194,0.2194,28.3077,1 +2057,14.6052,13.0483,0.2291,27.8827,1 +2058,14.9138,11.9906,0.2819,27.1865,1 +2059,14.3161,13.4000,0.2125,27.9289,1 +2060,14.8123,12.4026,0.2122,27.4273,1 +2061,14.7858,12.5305,0.2274,27.5438,1 +2062,14.2995,14.0198,0.3058,28.6251,1 +2063,14.3074,12.2316,0.2249,26.7640,1 +2064,14.5627,12.7521,0.3102,27.6251,1 +2065,14.6678,12.7414,0.2544,27.6636,1 +2066,14.8888,12.4474,0.2161,27.5525,1 +2067,14.1565,13.4560,0.2101,27.8227,1 +2068,14.2799,13.0619,0.2397,27.5815,1 +2069,14.4622,13.0068,0.2883,27.7574,1 +2070,14.6350,12.9899,0.2233,27.8484,1 +2071,14.3373,12.9210,0.2175,27.4760,1 +2072,14.6249,13.1562,0.3268,28.1081,1 +2073,15.0750,12.3828,0.2511,27.7090,1 +2074,14.1959,13.0961,0.2208,27.5131,1 +2075,14.4631,12.5973,0.3571,27.4175,1 +2076,14.4293,14.3459,0.3248,29.1002,1 +2077,14.7031,13.8084,0.2300,28.7417,1 +2078,14.5526,12.6371,0.2590,27.4487,1 +2079,14.2735,12.1816,0.2564,26.7116,1 +2080,14.4837,12.9795,0.3532,27.8166,1 +2081,14.6880,12.2602,0.2337,27.1820,1 +2082,15.3048,12.8512,0.3243,28.4805,1 +2083,14.6076,13.0683,0.3308,28.0069,1 +2084,14.2218,12.6180,0.3145,27.1543,1 +2085,14.3005,13.4812,0.2869,28.0686,1 +2086,14.2506,13.1507,0.2869,27.6883,1 +2087,14.9546,12.5198,0.2409,27.7155,1 +2088,14.7438,12.8763,0.2591,27.8793,1 +2089,14.0982,13.0484,0.2203,27.3670,1 +2090,14.0381,12.7348,0.3387,27.1117,1 +2091,16.2931,12.5061,0.2399,29.0393,1 +2092,14.4044,12.9380,0.2084,27.5508,1 +2093,14.4813,12.3397,0.2162,27.0373,1 +2094,14.2651,15.2428,0.2791,29.7870,1 +2095,14.4156,13.3140,0.3103,28.0400,1 +2096,14.4893,12.7294,0.2663,27.4852,1 +2097,14.6957,12.0692,0.2209,26.9860,1 +2098,15.7963,12.9919,0.2189,29.0072,1 +2099,14.5133,12.6198,0.2918,27.4250,1 +2100,13.9766,12.3507,0.2123,26.5398,1 +2101,14.2336,13.3007,0.3233,27.8576,1 +2102,14.6500,12.6445,0.3049,27.5994,1 +2103,14.7497,12.8451,0.2168,27.8118,1 +2104,14.3325,13.1142,0.2039,27.6508,1 +2105,14.5581,12.5308,0.2361,27.3250,1 +2106,14.3935,14.1127,0.2773,28.7836,1 +2107,14.2268,12.8971,0.2090,27.3329,1 +2108,14.4859,12.3612,0.2088,27.0559,1 +2109,14.9689,13.7213,0.2286,28.9189,1 +2110,14.3783,12.9341,0.2219,27.5344,1 +2111,14.2533,12.6271,0.2542,27.1348,1 +2112,14.0833,14.0700,0.3207,28.4740,1 +2113,14.9152,13.8878,0.2205,29.0236,1 +2114,14.2139,12.6117,0.2829,27.1085,1 +2115,14.5131,12.1430,0.2159,26.8721,1 +2116,14.3384,12.6509,0.3203,27.3097,1 +2117,14.6954,13.0578,0.3001,28.0533,1 +2118,14.1728,14.1215,0.2142,28.5086,1 +2119,14.6771,12.8850,0.2076,27.7698,1 +2120,14.5277,12.4603,0.2161,27.2041,1 +2121,14.5716,13.2790,0.2356,28.0863,1 +2122,14.0161,13.4524,0.2926,27.7612,1 +2123,14.3144,12.3906,0.3042,27.0092,1 +2124,14.1612,14.4448,0.2182,28.8243,1 +2125,14.8955,13.8182,0.2163,28.9301,1 +2126,15.0290,13.7688,0.2664,29.0643,1 +2127,14.5645,12.0060,0.2411,26.8119,1 +2128,14.5310,13.4194,0.4268,28.3773,1 +2129,14.5994,12.1130,0.2394,26.9518,1 +2130,14.9939,12.1231,0.2275,27.3447,1 +2131,14.7823,13.4457,0.2187,28.4469,1 +2132,14.6467,12.3208,0.2448,27.2123,1 +2133,14.1024,12.4731,0.3141,26.8897,1 +2134,14.2968,13.1136,0.2549,27.6653,1 +2135,14.5482,12.5575,0.2306,27.3365,1 +2136,14.8021,13.1371,0.2151,28.1545,1 +2137,14.2544,13.1345,0.2106,27.5996,1 +2138,14.4877,12.6665,0.3216,27.4759,1 +2139,14.4895,13.5328,0.2479,28.2702,1 +2140,14.4743,12.9570,0.2160,27.6473,1 +2141,14.6279,12.3176,0.2091,27.1546,1 +2142,14.3092,14.1451,0.2133,28.6676,1 +2143,14.3260,12.9154,0.2230,27.4646,1 +2144,17.9851,12.9046,0.2657,31.1555,1 +2145,14.1595,11.7443,0.2764,26.1805,1 +2146,14.3807,13.1114,0.2507,27.7429,1 +2147,14.4283,12.5781,0.2290,27.2355,1 +2148,14.3581,12.1804,0.2113,26.7498,1 +2149,14.1696,13.2133,0.2916,27.6745,1 +2150,14.2464,12.8049,0.2932,27.3446,1 +2151,14.5511,13.7351,0.2171,28.5033,1 +2152,14.2978,12.9390,0.2152,27.4521,1 +2153,14.8481,12.5152,0.2166,27.5801,1 +2154,14.7324,13.4095,0.2750,28.4171,1 +2155,14.3518,12.8332,0.2808,27.4659,1 +2156,14.5799,12.3119,0.2133,27.1051,1 +2157,14.5038,14.1157,0.2157,28.8353,1 +2158,14.5768,13.1514,0.2181,27.9464,1 +2159,14.5208,12.3272,0.2491,27.0972,1 +2160,14.1451,13.7710,0.2180,28.1342,1 +2161,14.5321,13.3405,0.3092,28.1818,1 +2162,14.7361,12.1394,0.3039,27.1795,1 diff --git a/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/run_status.txt b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/run_status.txt new file mode 100644 index 0000000..88ab906 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/run_status.txt @@ -0,0 +1,4 @@ +exit_code=0 +Computer: OOSU-IMAC +User: È«±æµ¿ +Date: 2026-05-15 1:07:56.37 diff --git a/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/summary.md b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/summary.md new file mode 100644 index 0000000..e0808da --- /dev/null +++ b/benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/summary.md @@ -0,0 +1,74 @@ +# Experiment Report — Plan A Synthetic 5K60 Render + +Date: 2026-05-15 01:07 KST +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` +Branch: `feat/plan-a-5k60-benchmark` +Commit: `8aac293` +Hardware: iMac Late 2015 Windows receiver, AMD Radeon R9 M380 2GB +Transport: none +Mode: synthetic local render, 5120x2880 @ 60 target, vsync on, dynamic frame fill + +## Goal + +Measure whether the Windows-booted iMac can locally generate, upload, draw, and present synthetic 5120x2880 frames at 60 fps without network, capture, or decode overhead. + +## Setup + +- Windows 10 Pro 22H2 +- Display mode: 5120x2880 @ 60Hz +- GPU: AMD Radeon R9 M380 +- Driver version: 15.201.2001.0 +- Run launched from the iMac interactive Windows desktop using `Run iBridge Plan A 5K60 Benchmark.cmd`. + +## Commands + +```cmd +apps\receiver-windows\build\manual\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --csv "%RUN_DIR%\receiver_stats.csv" +``` + +## Results + +| Metric | Value | +|---|---:| +| target fps | 60 | +| actual fps | 36.034 | +| frames | 2163 | +| frame budget | 16.667 ms | +| avg fill | 14.5120 ms | +| avg upload | 12.9730 ms | +| avg draw/present | 0.2519 ms | +| avg total frame | 27.7370 ms | +| p95 total frame | 29.0890 ms | +| max total frame | 54.9967 ms | +| missed frames | 2163 | +| missed frame rate | 100.00% | + +## Artifacts + +- `console.txt` +- `receiver_stats.csv` +- `run_status.txt` + +## Interpretation + +The receiver did not meet the Plan A local render gate. The run reached about 36 fps and every frame exceeded the 16.667 ms budget. + +The dominant costs were synthetic CPU frame fill and full-frame D3D11 texture upload. Draw/present itself was small in this run, averaging about 0.252 ms, so the first measured bottleneck is getting a fresh full 5K frame into a presentable GPU texture every frame. + +This does not yet measure capture, network, packetization, or decode. Those would add more cost on top of this local synthetic result. + +## Decision + +- [ ] Continue current Plan A raw/full-frame dynamic path +- [x] Downshift pressure recorded for Plan A dynamic full-frame upload +- [x] Needs follow-up isolation run + +Plan A should not continue as a dynamic CPU-filled BGRA32 full-frame upload path. Before declaring all near-raw paths failed, run isolation tests: + +- static frame with repeated upload, to isolate upload/present without CPU fill; +- no-vsync static frame ceiling, to estimate upload throughput; +- lower-copy or GPU-generated synthetic path if needed, to separate PCIe/upload limits from CPU fill. + +## Next + +Run `--static-frame` and `--no-vsync --static-frame` variants from the interactive iMac desktop. If upload/present still cannot approach 60 fps, record Plan A receiver-side failure and begin Plan B compressed 5K60. diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/console.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/console.txt new file mode 100644 index 0000000..703ddbb --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/console.txt @@ -0,0 +1,13 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=29.979 +frames=1799 +budget_ms=16.667 +p95_total_ms=34.257 +max_total_ms=96.751 +missed_frames=1799 +vsync=on +static_frame=off +gpu_pattern=off +uncapped=off diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/receiver_stats.csv b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/receiver_stats.csv new file mode 100644 index 0000000..c1b44f8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/receiver_stats.csv @@ -0,0 +1,1800 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,14.5830,75.7214,6.4463,96.7510,1 +1,14.9535,12.3377,0.2763,27.5678,1 +2,14.1370,15.9994,0.2144,30.3508,1 +3,13.9935,19.5478,0.2697,33.8110,1 +4,14.1764,18.6192,0.2697,33.0657,1 +5,13.8325,19.2801,0.3146,33.4272,1 +6,14.9868,18.4401,0.2464,33.6735,1 +7,15.3301,17.3212,0.2722,32.9238,1 +8,14.5465,19.2676,0.3253,34.1396,1 +9,14.0741,18.6010,0.2669,32.9421,1 +10,14.1150,18.6870,0.3800,33.1822,1 +11,14.4443,18.7650,0.3662,33.5756,1 +12,14.6036,18.0643,0.2522,32.9203,1 +13,13.9377,19.2606,0.4243,33.6226,1 +14,14.4698,17.9646,0.2730,32.7075,1 +15,15.5767,19.0299,0.2514,34.8583,1 +16,14.4002,17.8546,0.3452,32.6002,1 +17,14.4923,18.1766,0.3119,32.9812,1 +18,14.2668,18.9220,0.2957,33.4847,1 +19,14.4315,18.2602,0.2733,32.9652,1 +20,14.2783,18.9270,0.2672,33.4727,1 +21,13.9898,18.7256,0.3053,33.0209,1 +22,13.9772,19.5185,0.2167,33.7125,1 +23,14.4353,18.6312,0.2514,33.3182,1 +24,14.0929,19.2585,0.4375,33.7890,1 +25,14.5676,17.8720,0.2250,32.6647,1 +26,14.7160,18.4154,0.2989,33.4306,1 +27,14.1359,18.9486,0.2670,33.3515,1 +28,14.9061,18.1148,0.2379,33.2590,1 +29,14.9876,17.9026,0.2233,33.1136,1 +30,14.1604,19.3466,0.2126,33.7196,1 +31,14.8033,18.3857,0.2168,33.4059,1 +32,14.3440,18.7860,0.2215,33.3517,1 +33,14.4208,18.5924,0.2703,33.2838,1 +34,14.4332,18.8134,0.2883,33.5352,1 +35,14.2373,18.4681,0.2855,32.9909,1 +36,13.9188,19.0883,0.2149,33.2220,1 +37,14.0821,19.4019,0.2182,33.7022,1 +38,14.4441,18.5587,0.2225,33.2254,1 +39,14.1711,18.6922,0.2252,33.0886,1 +40,13.9972,19.5187,0.2943,33.8102,1 +41,14.5290,18.2083,0.2949,33.0323,1 +42,13.8332,19.1467,0.2509,33.2310,1 +43,13.8570,21.6465,0.3973,35.9011,1 +44,14.5177,15.7966,0.2319,30.5466,1 +45,14.7200,18.2343,0.2166,33.1713,1 +46,14.1979,19.5282,0.2225,33.9487,1 +47,14.4810,18.4823,0.3321,33.2957,1 +48,14.1042,19.0568,0.2232,33.3846,1 +49,14.3729,18.5812,0.2402,33.1944,1 +50,13.9411,19.1081,0.2745,33.3239,1 +51,13.9223,19.3710,0.2214,33.5148,1 +52,14.0782,19.0806,0.3003,33.4591,1 +53,14.1047,18.5888,0.3380,33.0316,1 +54,14.0088,19.3926,0.2188,33.6202,1 +55,14.2241,18.8002,0.3075,33.3319,1 +56,14.6635,18.2527,0.3159,33.2323,1 +57,14.6029,17.9531,0.2216,32.7778,1 +58,14.5888,18.6615,0.2170,33.4673,1 +59,14.1348,19.1428,0.2789,33.5566,1 +60,13.9456,19.4811,0.2154,33.6422,1 +61,14.2261,18.8564,0.2775,33.3600,1 +62,14.4792,18.2336,0.3017,33.0147,1 +63,14.4665,18.9957,0.2134,33.6756,1 +64,14.6483,18.0046,0.2195,32.8726,1 +65,14.3790,18.8422,0.3013,33.5227,1 +66,14.7907,18.6529,0.2658,33.7095,1 +67,15.1009,18.3162,0.3501,33.7673,1 +68,14.4201,17.9765,0.2269,32.6238,1 +69,14.3153,18.8967,0.2246,33.4367,1 +70,14.4149,18.4984,0.2140,33.1275,1 +71,14.7701,18.2391,0.2227,33.2320,1 +72,14.2003,19.2613,0.2174,33.6791,1 +73,14.2656,18.7477,0.2663,33.2797,1 +74,14.7278,18.0440,0.3048,33.0768,1 +75,14.1092,19.3081,0.2230,33.6405,1 +76,14.9899,17.9079,0.2155,33.1134,1 +77,14.4669,18.7459,0.2316,33.4446,1 +78,14.4952,18.8829,0.2311,33.6093,1 +79,13.9870,18.6367,0.2051,32.8290,1 +80,14.1415,18.9452,0.2223,33.3091,1 +81,14.1345,20.2876,0.3173,34.7394,1 +82,13.9936,17.7669,0.2187,31.9793,1 +83,14.3343,19.6770,0.3074,34.3187,1 +84,14.0138,18.5658,0.2903,32.8703,1 +85,13.6944,19.0568,0.2128,32.9641,1 +86,14.1334,19.5153,0.3057,33.9544,1 +87,14.1067,18.9507,0.3230,33.3804,1 +88,13.9243,18.4540,0.2166,32.5951,1 +89,13.7849,20.5299,0.3184,34.6334,1 +90,14.2097,18.2261,0.2953,32.7311,1 +91,14.2145,18.1503,0.2233,32.5884,1 +92,14.9411,18.3270,0.2197,33.4879,1 +93,14.1841,19.6375,0.3084,34.1301,1 +94,14.0907,18.1417,0.2201,32.4526,1 +95,13.8364,20.5006,0.2496,34.5866,1 +96,14.2164,17.8133,0.2234,32.2532,1 +97,17.3446,15.7061,0.2294,33.2803,1 +98,14.4498,19.1841,0.2402,33.8743,1 +99,14.0434,19.1689,0.2875,33.4998,1 +100,14.1979,18.0816,0.2033,32.4829,1 +101,14.2399,19.6584,0.2970,34.1955,1 +102,13.9909,18.9777,0.3051,33.2737,1 +103,14.1712,18.1279,0.2222,32.5215,1 +104,14.0250,19.9242,0.2813,34.2306,1 +105,14.3765,18.5015,0.3066,33.1849,1 +106,14.3378,18.0842,0.2143,32.6367,1 +107,14.1336,19.9615,0.3093,34.4046,1 +108,14.0703,18.6305,0.2933,32.9941,1 +109,14.1552,18.2481,0.2150,32.6186,1 +110,14.2320,19.6359,0.3647,34.2326,1 +111,14.5008,18.0491,0.2030,32.7531,1 +112,14.8895,17.9905,0.2206,33.1006,1 +113,14.7771,19.1258,0.3213,34.2242,1 +114,14.5331,18.3685,0.2152,33.1170,1 +115,14.3770,17.9726,0.2193,32.5689,1 +116,14.3303,19.4194,0.2097,33.9597,1 +117,14.5385,18.8119,0.1903,33.5408,1 +118,13.9638,18.2695,0.2938,32.5272,1 +119,14.2541,19.8523,0.2105,34.3169,1 +120,14.6358,18.0963,0.2193,32.9515,1 +121,13.9746,19.7401,0.2812,33.9959,1 +122,14.0882,18.5790,0.2096,32.8771,1 +123,14.5422,18.3395,0.2162,33.0982,1 +124,13.8909,19.3808,0.2964,33.5682,1 +125,13.7811,19.6044,0.2144,33.5999,1 +126,14.3972,18.2841,0.2545,32.9359,1 +127,13.9905,19.0017,0.2842,33.2765,1 +128,13.7536,19.8802,0.2343,33.8681,1 +129,14.2659,18.4911,0.2397,32.9969,1 +130,14.1999,18.3859,0.2937,32.8796,1 +131,14.0176,19.6875,0.2344,33.9396,1 +132,14.1567,18.9055,0.2946,33.3570,1 +133,14.0324,19.0446,0.2595,33.3365,1 +134,14.1065,19.0085,0.2936,33.4086,1 +135,13.8138,19.1775,0.3747,33.3660,1 +136,14.3247,17.6742,0.2197,32.2188,1 +137,13.6798,18.5738,0.2153,32.4690,1 +138,13.8876,18.7896,0.3228,33.0001,1 +139,13.8399,18.6023,0.2905,32.7328,1 +140,13.8489,18.5791,0.2966,32.7248,1 +141,14.0046,18.3371,0.3495,32.6912,1 +142,14.0559,18.6055,0.2197,32.8811,1 +143,14.1737,18.9487,0.2151,33.3375,1 +144,14.2539,18.8665,0.3009,33.4214,1 +145,14.4806,18.5433,0.2174,33.2415,1 +146,14.6889,18.3225,0.2387,33.2503,1 +147,14.1463,19.1764,0.3516,33.6744,1 +148,14.2022,18.9684,0.2170,33.3877,1 +149,14.3175,18.5983,0.2248,33.1407,1 +150,14.1306,18.8715,0.2183,33.2205,1 +151,14.3368,18.6408,0.2182,33.1959,1 +152,14.2262,18.6974,0.2240,33.1479,1 +153,14.9117,18.5669,0.2167,33.6954,1 +154,14.9161,18.1037,0.2145,33.2343,1 +155,14.2689,18.5281,0.2678,33.0649,1 +156,13.8321,18.3700,0.3183,32.5207,1 +157,15.4360,19.0230,0.2338,34.6930,1 +158,14.2487,18.6278,0.2250,33.1016,1 +159,14.0042,18.5107,0.2878,32.8028,1 +160,14.2641,18.6167,0.2734,33.1543,1 +161,13.8829,18.4501,0.2244,32.5574,1 +162,14.4775,12.0657,0.2344,26.7777,1 +163,14.0599,14.3467,0.4093,28.8160,1 +164,14.1853,19.7520,0.3045,34.2420,1 +165,14.4394,18.6291,0.2581,33.3268,1 +166,14.1472,18.2123,0.2955,32.6553,1 +167,13.9934,19.6606,0.2355,33.8896,1 +168,14.3023,18.8356,0.2387,33.3767,1 +169,14.2345,18.3715,0.3016,32.9076,1 +170,14.6868,18.6522,0.2512,33.5903,1 +171,14.1020,19.2892,0.2248,33.6162,1 +172,19.0798,13.8069,0.2335,33.1203,1 +173,14.1636,18.7426,0.2275,33.1338,1 +174,14.3684,18.9741,0.2128,33.5555,1 +175,14.0361,18.6359,0.2591,32.9312,1 +176,14.0575,19.6679,0.2187,33.9441,1 +177,14.5320,18.5650,0.2196,33.3168,1 +178,14.4799,18.2279,0.2052,32.9132,1 +179,14.7550,18.7053,0.3104,33.7708,1 +180,14.0080,19.1761,0.2190,33.4034,1 +181,14.6004,17.7814,0.2167,32.5987,1 +182,14.2438,19.4137,0.2202,33.8777,1 +183,14.6240,18.4515,0.2303,33.3058,1 +184,14.7871,17.7458,0.2555,32.7886,1 +185,14.7864,19.5124,0.4077,34.7068,1 +186,14.2643,18.1109,0.2306,32.6059,1 +187,14.0956,19.4062,0.2572,33.7591,1 +188,14.4308,18.4495,0.2925,33.1728,1 +189,14.1965,18.6686,0.2273,33.0924,1 +190,14.2763,18.3245,0.2430,32.8439,1 +191,14.0971,19.4146,0.2549,33.7666,1 +192,14.0522,18.9444,0.3094,33.3060,1 +193,13.7634,19.0447,0.2320,33.0403,1 +194,13.9876,19.6554,0.2109,33.8540,1 +195,14.3457,18.8474,0.3277,33.5210,1 +196,14.0687,18.3287,0.2969,32.6944,1 +197,13.7394,19.6534,0.2243,33.6171,1 +198,14.3467,18.6214,0.2226,33.1910,1 +199,14.4818,18.4825,0.2958,33.2602,1 +200,13.9122,19.4282,0.2222,33.5627,1 +201,14.1657,19.0954,0.2192,33.4804,1 +202,14.4966,18.3263,0.2179,33.0408,1 +203,14.0391,19.2039,0.2174,33.4605,1 +204,14.2403,18.8835,0.2844,33.4083,1 +205,14.0190,19.0016,0.2206,33.2413,1 +206,13.9376,19.1950,0.2225,33.3552,1 +207,14.3493,18.9004,0.2055,33.4554,1 +208,15.0758,17.8379,0.2133,33.1271,1 +209,14.9165,17.9491,0.2160,33.0820,1 +210,13.9613,19.3920,0.2891,33.6426,1 +211,14.2857,18.4652,0.2934,33.0445,1 +212,14.1903,19.2959,0.3107,33.7970,1 +213,15.0693,17.5908,0.2143,32.8745,1 +214,14.0689,19.3956,0.2163,33.6810,1 +215,14.0305,19.2114,0.2752,33.5172,1 +216,14.1960,18.7736,0.2169,33.1866,1 +217,14.3756,18.7056,0.2255,33.3069,1 +218,14.4396,18.7291,0.3659,33.5349,1 +219,14.4299,18.2408,0.2172,32.8881,1 +220,14.5153,18.8713,0.2240,33.6109,1 +221,14.0822,18.7716,0.2176,33.0717,1 +222,14.6391,18.8758,0.2327,33.7476,1 +223,14.4270,18.4741,0.2087,33.1100,1 +224,13.9616,19.0753,0.2247,33.2617,1 +225,14.4845,19.0139,0.2235,33.7221,1 +226,14.4617,18.5789,0.2202,33.2609,1 +227,13.9352,18.7951,0.2174,32.9478,1 +228,14.5457,18.6459,0.2286,33.4203,1 +229,14.2992,19.1252,0.2261,33.6506,1 +230,14.0835,18.5721,0.2185,32.8741,1 +231,14.3198,18.9742,0.2264,33.5205,1 +232,14.0776,19.1835,0.2301,33.4913,1 +233,13.9288,18.8888,0.2182,33.0360,1 +234,13.9988,19.1344,0.2223,33.3556,1 +235,14.1729,19.4062,0.2245,33.8036,1 +236,13.9991,18.7464,0.2264,32.9719,1 +237,14.2574,18.6928,0.2271,33.1773,1 +238,14.2323,19.7080,0.2638,34.2041,1 +239,13.9983,18.4871,0.2019,32.6875,1 +240,13.9709,22.3961,1.0358,37.4029,1 +241,19.4730,13.3052,0.3443,33.1227,1 +242,18.1019,12.1689,0.2705,30.5416,1 +243,14.2823,17.6083,0.2398,32.1304,1 +244,21.8754,19.9897,0.6818,42.5471,1 +245,19.1921,12.4363,0.2185,31.8470,1 +246,14.7954,12.8799,0.3951,28.0705,1 +247,15.2549,15.6007,0.2451,31.1011,1 +248,14.0766,18.8304,0.2288,33.1359,1 +249,13.7768,20.7455,0.3252,34.8476,1 +250,22.8439,11.9978,0.3637,35.2055,1 +251,14.0454,15.8759,0.2828,30.2042,1 +252,13.9334,20.1362,0.2948,34.3647,1 +253,14.1000,17.9197,0.2239,32.2438,1 +254,14.2909,18.7369,0.2576,33.2856,1 +255,14.7355,18.6822,0.2245,33.6425,1 +256,14.6525,18.1842,0.2252,33.0622,1 +257,14.1432,18.9079,0.2134,33.2645,1 +258,14.1041,19.9899,0.3315,34.4256,1 +259,15.6262,16.6399,0.2335,32.5000,1 +260,15.6625,17.2456,0.2652,33.1736,1 +261,14.5640,19.7995,0.3082,34.6717,1 +262,14.4331,17.4513,0.2361,32.1207,1 +263,14.1781,18.7537,0.2112,33.1432,1 +264,13.8443,20.4169,0.2682,34.5296,1 +265,15.3876,17.8213,0.3867,33.5958,1 +266,19.4356,14.2742,0.4137,34.1239,1 +267,16.7827,16.7967,0.3340,33.9135,1 +268,15.7457,16.4932,0.4473,32.6863,1 +269,15.0489,19.4765,0.3187,34.8441,1 +270,17.0490,19.4081,0.2640,36.7212,1 +271,31.7279,23.9723,0.2645,55.9649,1 +272,18.8637,18.8910,0.2744,38.0292,1 +273,15.3858,17.5108,0.3481,33.2451,1 +274,15.3134,18.1771,0.2646,33.7554,1 +275,15.2895,17.3256,0.2657,32.8810,1 +276,15.3514,18.9431,0.2686,34.5635,1 +277,16.2655,16.6268,0.3206,33.2132,1 +278,16.6567,14.6089,0.2124,31.4782,1 +279,14.5110,19.4253,0.2957,34.2321,1 +280,16.0902,17.2804,0.2662,33.6370,1 +281,14.1701,18.4919,0.3002,32.9624,1 +282,14.0201,18.9166,0.2833,33.2202,1 +283,14.0728,19.0374,0.3031,33.4134,1 +284,14.0069,19.1372,0.3040,33.4482,1 +285,14.1878,18.6773,0.3080,33.1732,1 +286,14.2806,18.1000,0.2914,32.6722,1 +287,13.7046,20.2799,0.2897,34.2743,1 +288,14.7057,18.5251,0.3266,33.5575,1 +289,14.0759,18.3502,0.2808,32.7070,1 +290,14.0314,19.2688,0.3859,33.6862,1 +291,14.2640,17.9984,0.2482,32.5106,1 +292,13.9089,19.4653,0.2127,33.5870,1 +293,14.1156,19.4373,0.2908,33.8439,1 +294,14.0958,18.5342,0.2425,32.8726,1 +295,13.9405,20.1154,0.3306,34.3867,1 +296,14.4276,17.7412,0.2719,32.4408,1 +297,14.2552,18.4340,0.2952,32.9846,1 +298,14.4263,19.2706,0.2997,33.9968,1 +299,14.1446,18.4489,0.2798,32.8733,1 +300,14.0411,19.6726,0.3207,34.0346,1 +301,14.2439,18.3132,0.2046,32.7618,1 +302,14.1334,19.1091,0.2238,33.4663,1 +303,14.3356,18.7198,0.3218,33.3772,1 +304,14.4198,18.9722,0.2728,33.6650,1 +305,14.3068,18.2265,0.2794,32.8127,1 +306,13.8743,19.8363,0.2126,33.9234,1 +307,14.1223,18.7104,0.3005,33.1335,1 +308,14.2180,18.4963,0.2438,32.9582,1 +309,13.9126,18.9118,0.2550,33.0795,1 +310,14.2690,19.3637,0.2579,33.8906,1 +311,14.4846,18.3729,0.3250,33.1825,1 +312,14.6876,18.0538,0.2219,32.9637,1 +313,14.4544,19.1153,0.2108,33.7806,1 +314,14.4145,18.4460,0.3633,33.2239,1 +315,13.6975,19.9368,0.2179,33.8523,1 +316,14.5916,18.3584,0.2602,33.2104,1 +317,13.9339,18.8715,0.2779,33.0834,1 +318,14.5803,18.8141,0.2383,33.6330,1 +319,14.4311,18.3408,0.2339,33.0059,1 +320,13.9326,18.9586,0.2582,33.1497,1 +321,13.9014,19.6144,0.2201,33.7361,1 +322,14.5549,18.4316,0.2401,33.2268,1 +323,14.0039,19.1342,0.2928,33.4309,1 +324,13.8433,18.7271,0.2500,32.8205,1 +325,13.9288,19.7514,0.2426,33.9230,1 +326,14.0341,18.5727,0.2650,32.8719,1 +327,13.9706,19.7275,0.2152,33.9135,1 +328,14.6464,18.2172,0.2400,33.1037,1 +329,14.1096,18.4933,0.3087,32.9118,1 +330,15.0261,18.9113,0.2482,34.1857,1 +331,14.4261,18.2130,0.3114,32.9506,1 +332,14.7365,17.8392,0.3082,32.8840,1 +333,13.7184,19.9396,0.2063,33.8644,1 +334,14.0768,18.9507,0.2412,33.2689,1 +335,14.7682,18.1471,0.2823,33.1978,1 +336,14.3057,18.9523,0.2357,33.4939,1 +337,14.0259,19.1521,0.3171,33.4954,1 +338,16.8500,16.1464,0.2959,33.2925,1 +339,14.1495,18.8302,0.2214,33.2014,1 +340,14.0475,18.6788,0.2932,33.0197,1 +341,15.7763,17.1482,0.2748,33.1997,1 +342,14.9465,18.7682,0.2376,33.9524,1 +343,14.7682,18.2137,0.3824,33.3643,1 +344,14.2224,19.9390,0.4130,34.5747,1 +345,14.4492,18.0419,0.3380,32.8294,1 +346,14.1015,17.9715,0.2479,32.3211,1 +347,14.6568,18.3530,0.2981,33.3080,1 +348,14.1128,20.4113,0.2277,34.7519,1 +349,14.2865,17.3826,0.2745,31.9437,1 +350,14.4545,18.7208,0.2197,33.3951,1 +351,14.3752,18.9137,0.2325,33.5217,1 +352,14.3493,18.4043,0.2902,33.0438,1 +353,14.4075,18.3456,0.3012,33.0546,1 +354,13.9914,19.5671,0.2253,33.7840,1 +355,14.3530,18.5823,0.3209,33.2563,1 +356,14.6236,18.2077,0.2960,33.1273,1 +357,14.5956,18.7377,0.2289,33.5625,1 +358,14.0033,18.9629,0.2962,33.2626,1 +359,13.9625,19.3174,0.2291,33.5091,1 +360,14.3687,18.6331,0.2269,33.2289,1 +361,14.0674,18.8311,0.2647,33.1635,1 +362,14.2711,19.1662,0.2928,33.7302,1 +363,14.1100,18.8705,0.2276,33.2081,1 +364,14.0591,18.7101,0.2604,33.0296,1 +365,13.9705,19.4990,0.2311,33.7008,1 +366,14.1213,19.5150,0.2295,33.8660,1 +367,14.3278,17.8047,0.2303,32.3630,1 +368,13.9317,19.7852,0.2257,33.9426,1 +369,14.1921,18.5808,0.2191,32.9922,1 +370,14.1469,18.8898,0.2768,33.3136,1 +371,13.7988,19.9932,0.2868,34.0790,1 +372,14.0690,18.2355,0.2210,32.5257,1 +373,14.5027,18.3281,0.2155,33.0463,1 +374,14.3941,19.3093,0.2264,33.9298,1 +375,14.8794,18.0203,0.2769,33.1768,1 +376,14.7480,18.6432,0.3652,33.7565,1 +377,13.6143,19.7659,0.3009,33.6815,1 +378,13.9878,18.2972,0.3087,32.5940,1 +379,13.8775,19.6779,0.2980,33.8536,1 +380,14.1168,18.7402,0.3810,33.2381,1 +381,14.4901,18.1788,0.2328,32.9017,1 +382,14.7898,18.8632,0.4619,34.1151,1 +383,14.1011,18.1494,0.2284,32.4789,1 +384,13.9635,19.1429,0.2279,33.3344,1 +385,14.1594,19.5669,0.3291,34.0557,1 +386,14.0735,18.4380,0.3098,32.8215,1 +387,14.1230,18.7736,0.2212,33.1179,1 +388,14.4463,18.9368,0.2250,33.6083,1 +389,14.1278,18.8829,0.3454,33.3561,1 +390,14.3403,18.6581,0.2249,33.2234,1 +391,16.0504,17.7080,0.3194,34.0779,1 +392,14.5402,19.0081,0.3847,33.9332,1 +393,14.3369,17.2102,0.2048,31.7520,1 +394,14.4721,18.9813,0.2267,33.6803,1 +395,14.4387,18.4736,0.2110,33.1233,1 +396,14.8715,18.2777,0.2265,33.3759,1 +397,14.4763,18.9408,0.2192,33.6364,1 +398,13.8149,19.1009,0.2223,33.1383,1 +399,14.6849,18.2844,0.3092,33.2786,1 +400,13.9386,19.9762,0.2711,34.1860,1 +401,14.0857,18.3206,0.2833,32.6896,1 +402,14.0579,18.9969,0.2942,33.3493,1 +403,13.8638,19.9176,0.3129,34.0943,1 +404,14.0148,18.3116,0.2936,32.6200,1 +405,14.3344,18.5095,0.2271,33.0712,1 +406,14.3479,19.1834,0.2226,33.7541,1 +407,13.8745,18.9449,0.2670,33.0864,1 +408,14.1046,19.6689,0.3361,34.1099,1 +409,14.4007,18.3426,0.3972,33.1406,1 +410,13.8099,19.5721,0.3999,33.7820,1 +411,14.3102,17.6105,0.2444,32.1654,1 +412,14.2883,19.4522,0.2428,33.9834,1 +413,13.9847,18.6871,0.2694,32.9417,1 +414,13.5574,20.4737,0.2713,34.3025,1 +415,14.1634,18.1282,0.2477,32.5394,1 +416,13.9357,19.6080,0.2675,33.8113,1 +417,13.6284,18.6069,0.2172,32.4526,1 +418,14.1106,19.5170,0.2975,33.9253,1 +419,13.7257,18.8651,0.2658,32.8568,1 +420,13.5387,19.3892,0.2226,33.1507,1 +421,14.1769,19.7414,0.2814,34.1998,1 +422,14.1024,18.4504,0.2811,32.8341,1 +423,13.6275,19.1560,0.2670,33.0505,1 +424,13.9564,19.9401,0.2571,34.1537,1 +425,14.1829,18.1996,0.2849,32.6674,1 +426,14.1134,19.5659,0.3240,34.0034,1 +427,14.0314,18.9764,0.2678,33.2760,1 +428,14.1883,18.8160,0.2598,33.2643,1 +429,14.3881,18.7785,0.3306,33.4974,1 +430,14.4763,18.6647,0.3112,33.4525,1 +431,14.6902,17.7760,0.2113,32.6777,1 +432,14.0519,19.2330,0.2211,33.5062,1 +433,14.6281,18.9768,0.2710,33.8760,1 +434,14.2329,18.5548,0.3032,33.0910,1 +435,14.2223,18.5719,0.2633,33.0576,1 +436,14.3199,19.0603,0.2947,33.6750,1 +437,14.2769,18.5460,0.2673,33.0902,1 +438,13.9744,19.4608,0.2979,33.7333,1 +439,14.3806,18.5235,0.2736,33.1778,1 +440,14.1075,18.8083,0.2933,33.2091,1 +441,14.2172,18.7362,0.2128,33.1664,1 +442,14.8814,18.3687,0.3357,33.5859,1 +443,14.0969,18.7836,0.2696,33.1503,1 +444,13.9076,19.4269,0.2645,33.5990,1 +445,14.9117,17.6441,0.2404,32.7964,1 +446,15.0164,17.9958,0.2387,33.2511,1 +447,13.9287,19.8814,0.2922,34.1023,1 +448,14.0844,18.6240,0.3132,33.0217,1 +449,14.1394,18.2172,0.2340,32.5906,1 +450,13.7185,18.9801,0.2211,32.9198,1 +451,14.3214,18.8503,0.2303,33.4021,1 +452,14.2228,18.5891,0.2171,33.0292,1 +453,13.7509,18.8159,0.2661,32.8329,1 +454,13.6565,18.9108,0.2206,32.7881,1 +455,14.2047,18.7428,0.2171,33.1647,1 +456,14.0444,19.3088,0.2885,33.6419,1 +457,15.2225,19.0445,0.3126,34.5798,1 +458,13.9236,19.0202,0.2905,33.2343,1 +459,13.6637,19.0380,0.2672,32.9689,1 +460,13.5544,19.0962,0.2700,32.9207,1 +461,14.1904,18.3438,0.2184,32.7528,1 +462,14.4739,18.8367,0.2159,33.5265,1 +463,13.7614,18.6674,0.2705,32.6994,1 +464,14.0057,18.7609,0.3451,33.1118,1 +465,13.9285,18.2171,0.2164,32.3622,1 +466,13.9681,19.0085,0.2748,33.2516,1 +467,14.3559,18.6259,0.2217,33.2035,1 +468,14.2197,18.9960,0.2228,33.4388,1 +469,14.2400,18.7392,0.3075,33.2869,1 +470,14.0551,19.0395,0.2246,33.3194,1 +471,14.2960,18.2680,0.2964,32.8605,1 +472,14.0920,18.1606,0.2170,32.4698,1 +473,14.6327,11.9819,0.2177,26.8324,1 +474,14.3128,13.4426,0.2206,27.9762,1 +475,13.7283,18.5001,0.3528,32.5813,1 +476,13.6500,19.3866,0.2557,33.2924,1 +477,14.2826,19.1496,0.2944,33.7268,1 +478,13.7018,19.0493,0.3039,33.0550,1 +479,13.7410,18.8823,0.3116,32.9350,1 +480,13.7572,19.1073,0.3257,33.1904,1 +481,13.8213,19.4838,0.3014,33.6067,1 +482,13.7013,19.4191,0.2563,33.3767,1 +483,14.0377,18.9311,0.2866,33.2556,1 +484,13.8804,19.3711,0.2844,33.5361,1 +485,13.9607,18.6399,0.3096,32.9104,1 +486,13.9443,19.2574,0.2778,33.4796,1 +487,13.8783,19.4030,0.3408,33.6223,1 +488,13.8366,18.9442,0.3069,33.0878,1 +489,13.7187,19.2306,0.3109,33.2603,1 +490,13.9501,19.3764,0.2532,33.5799,1 +491,13.9641,18.9346,0.2963,33.1950,1 +492,13.9960,19.0294,0.2972,33.3229,1 +493,14.2019,18.8982,0.3074,33.4077,1 +494,13.9677,19.0749,0.2883,33.3310,1 +495,14.1560,19.0080,0.2512,33.4153,1 +496,14.0811,19.0639,0.2913,33.4366,1 +497,13.8993,19.0075,0.2366,33.1435,1 +498,14.2105,18.6218,0.2924,33.1247,1 +499,13.9280,19.2721,0.3303,33.5304,1 +500,13.8902,19.2750,0.2566,33.4219,1 +501,14.0660,18.8350,0.2390,33.1401,1 +502,13.8425,19.4658,0.2632,33.5715,1 +503,13.7487,19.2208,0.2757,33.2453,1 +504,14.0231,18.8120,0.2224,33.0575,1 +505,13.9499,18.3258,0.2214,32.4972,1 +506,14.4736,18.3841,0.2646,33.1226,1 +507,14.1174,18.6943,0.2641,33.0758,1 +508,14.1254,18.5670,0.2780,32.9706,1 +509,13.8974,18.2252,0.2349,32.3576,1 +510,14.1922,18.5997,0.2648,33.0569,1 +511,14.2860,18.2214,0.3753,32.8829,1 +512,14.1711,12.4867,0.3611,27.0190,1 +513,14.2340,14.2983,0.4361,28.9687,1 +514,14.0150,18.7680,0.3375,33.1205,1 +515,14.1326,19.0913,0.2177,33.4418,1 +516,14.1909,18.7981,0.3080,33.2971,1 +517,14.0711,19.4464,0.4377,33.9554,1 +518,14.6209,18.1901,0.2943,33.1056,1 +519,14.0617,18.5254,0.2220,32.8092,1 +520,14.2632,19.3599,0.2290,33.8522,1 +521,14.6356,18.1586,0.2189,33.0134,1 +522,14.5834,18.3583,0.2404,33.1823,1 +523,14.7394,18.1142,0.2219,33.0756,1 +524,14.7087,18.8156,0.2268,33.7512,1 +525,14.3895,18.6100,0.2068,33.2063,1 +526,14.1627,19.0228,0.3164,33.5019,1 +527,13.9730,19.2236,0.2180,33.4147,1 +528,14.3630,18.7322,0.2138,33.3090,1 +529,14.4328,18.4463,0.3662,33.2455,1 +530,13.9928,19.1588,0.2230,33.3746,1 +531,14.4250,18.6778,0.2169,33.3198,1 +532,14.5806,18.8181,0.2768,33.6759,1 +533,14.4444,18.3500,0.2306,33.0251,1 +534,14.0682,18.8806,0.2192,33.1681,1 +535,14.1376,19.2950,0.2427,33.6754,1 +536,15.0801,18.1074,0.2255,33.4130,1 +537,14.2476,18.7252,0.2198,33.1927,1 +538,14.1074,19.5671,0.3352,34.0099,1 +539,13.9993,18.4011,0.2268,32.6273,1 +540,14.2183,18.6968,0.2226,33.1378,1 +541,14.3463,19.7103,0.2171,34.2739,1 +542,14.3227,17.9844,0.2222,32.5296,1 +543,14.1579,18.8303,0.2142,33.2026,1 +544,13.9878,19.8150,0.2248,34.0278,1 +545,14.2461,18.3476,0.2158,32.8098,1 +546,14.1457,18.8186,0.2200,33.1843,1 +547,14.1940,20.8434,0.2792,35.3167,1 +548,16.4683,14.9417,0.2989,31.7090,1 +549,13.8900,19.1232,0.3051,33.3184,1 +550,13.6727,19.7675,0.2720,33.7122,1 +551,14.2187,18.5599,0.3519,33.1307,1 +552,14.3259,18.3084,0.2191,32.8536,1 +553,14.9306,18.6215,0.2449,33.7971,1 +554,14.0090,18.6821,0.2575,32.9487,1 +555,14.2999,18.7104,0.2203,33.2306,1 +556,13.9818,19.8088,0.2362,34.0268,1 +557,13.9656,18.5487,0.2151,32.7295,1 +558,14.3687,18.6729,0.2213,33.2629,1 +559,13.8787,20.0137,0.3196,34.2121,1 +560,14.2095,18.1846,0.2213,32.6156,1 +561,14.2557,18.7721,0.2235,33.2513,1 +562,14.0686,19.9216,0.3033,34.2936,1 +563,14.3953,17.7972,0.2255,32.4180,1 +564,14.4147,18.5656,0.2235,33.2038,1 +565,14.0893,19.9236,0.3092,34.3223,1 +566,14.3359,17.9934,0.2185,32.5481,1 +567,15.1512,17.8334,0.2304,33.2151,1 +568,14.8690,18.8198,0.2344,33.9234,1 +569,14.2766,18.2811,0.2962,32.8539,1 +570,13.9416,19.2295,0.2984,33.4696,1 +571,14.0552,19.1430,0.2245,33.4229,1 +572,15.0869,18.4280,0.2588,33.7739,1 +573,15.1877,18.0186,0.3810,33.5875,1 +574,14.1070,19.0803,0.3247,33.5123,1 +575,14.2191,17.7813,0.2212,32.2218,1 +576,14.1791,20.0838,0.3384,34.6014,1 +577,13.9826,18.5162,0.2499,32.7488,1 +578,14.6918,17.7152,0.2250,32.6322,1 +579,14.5016,19.6349,0.2971,34.4337,1 +580,13.9099,18.6627,0.3147,32.8874,1 +581,14.1372,18.8255,0.2424,33.2053,1 +582,16.9575,15.5205,0.2271,32.7054,1 +583,14.5856,19.0426,0.2358,33.8641,1 +584,14.0693,19.1241,0.2828,33.4765,1 +585,13.9745,19.3803,0.2931,33.6481,1 +586,14.1299,19.0544,0.2128,33.3973,1 +587,13.9483,18.7603,0.2930,33.0019,1 +588,14.1819,18.4456,0.3666,32.9942,1 +589,13.7565,19.9128,0.2359,33.9054,1 +590,14.3214,18.0580,0.2498,32.6295,1 +591,14.1616,19.7570,0.3287,34.2475,1 +592,14.0291,18.8430,0.2925,33.1648,1 +593,13.6277,19.0085,0.3037,32.9401,1 +594,14.0347,19.6032,0.2885,33.9265,1 +595,14.1537,18.6429,0.3070,33.1036,1 +596,13.8590,19.1363,0.2717,33.2670,1 +597,14.2545,18.6929,0.2314,33.1789,1 +598,14.3077,18.8133,0.3811,33.5022,1 +599,13.7471,18.7924,0.3082,32.8477,1 +600,14.3283,19.6061,0.3269,34.2613,1 +601,14.0989,18.8104,0.3663,33.2756,1 +602,14.3144,18.5203,0.3480,33.1828,1 +603,14.2430,18.5663,0.2319,33.0413,1 +604,14.4880,19.0899,0.1970,33.7750,1 +605,14.1270,18.8872,0.3059,33.3202,1 +606,14.1485,18.9423,0.3041,33.3951,1 +607,14.5850,17.6405,0.2344,32.4602,1 +608,14.6953,18.7780,0.3148,33.7882,1 +609,14.2333,19.3937,0.2245,33.8516,1 +610,15.0503,17.2308,0.2548,32.5361,1 +611,14.6605,19.5252,0.3498,34.5356,1 +612,14.3792,17.7412,0.2358,32.3566,1 +613,14.4138,18.7198,0.2652,33.3990,1 +614,13.8513,18.9695,0.2104,33.0314,1 +615,14.2157,19.4073,0.2221,33.8452,1 +616,14.7760,18.0632,0.2217,33.0610,1 +617,13.7565,19.7029,0.2223,33.6817,1 +618,14.3202,18.7435,0.2144,33.2784,1 +619,14.1179,18.7684,0.2129,33.0993,1 +620,14.0980,19.6362,0.2061,33.9405,1 +621,14.5062,18.5145,0.2199,33.2408,1 +622,14.3385,18.3835,0.2299,32.9519,1 +623,13.9065,19.3455,0.2206,33.4728,1 +624,13.9679,19.1402,0.2686,33.3767,1 +625,14.1734,18.5533,0.2717,32.9986,1 +626,14.1212,19.4077,0.2208,33.7498,1 +627,14.3438,18.8804,0.2231,33.4477,1 +628,14.3917,17.9524,0.3213,32.6655,1 +629,13.8360,20.0215,0.3218,34.1793,1 +630,14.1375,18.6947,0.2212,33.0534,1 +631,14.3638,18.0452,0.2225,32.6317,1 +632,14.2362,19.3857,0.2568,33.8789,1 +633,14.5047,19.3779,0.3160,34.1986,1 +634,14.1139,18.5831,0.2864,32.9835,1 +635,14.1989,18.6719,0.2741,33.1450,1 +636,14.0618,18.2982,0.2056,32.5656,1 +637,14.4375,18.6729,0.2590,33.3696,1 +638,16.2023,17.2768,0.2341,33.7133,1 +639,14.1268,18.9744,0.2420,33.3434,1 +640,14.1203,18.3314,0.2281,32.6800,1 +641,14.4462,19.4250,0.2293,34.1007,1 +642,13.9533,19.2284,0.2264,33.4082,1 +643,14.1567,18.7538,0.3153,33.2261,1 +644,14.1559,18.9310,0.3624,33.4494,1 +645,13.8526,19.0638,0.2780,33.1945,1 +646,14.0320,18.8821,0.2668,33.1810,1 +647,14.2443,19.1393,0.2201,33.6038,1 +648,14.3353,18.2539,0.2241,32.8134,1 +649,14.1988,19.6152,0.2784,34.0925,1 +650,14.1884,18.8666,0.2204,33.2755,1 +651,14.4265,18.4334,0.2343,33.0943,1 +652,14.3176,18.8897,0.2170,33.4245,1 +653,14.3924,18.6526,0.2151,33.2603,1 +654,14.2512,18.9671,0.2187,33.4371,1 +655,14.4892,18.5187,0.2181,33.2262,1 +656,14.1273,19.0627,0.2279,33.4179,1 +657,14.0650,18.9714,0.2295,33.2659,1 +658,14.1576,19.0581,0.2219,33.4377,1 +659,14.1374,18.9367,0.2175,33.2918,1 +660,13.9635,19.0983,0.2229,33.2848,1 +661,14.6115,18.4681,0.2277,33.3074,1 +662,14.5439,18.5413,0.2403,33.3256,1 +663,17.7724,15.8070,0.2211,33.8008,1 +664,14.2487,18.6409,0.2351,33.1248,1 +665,14.1135,18.8779,0.2251,33.2165,1 +666,14.0330,18.9566,0.2245,33.2142,1 +667,14.4533,18.8037,0.3007,33.5579,1 +668,14.3441,18.5777,0.2263,33.1483,1 +669,14.2696,18.7545,0.2161,33.2404,1 +670,14.4062,18.8819,0.2188,33.5070,1 +671,14.0624,18.8979,0.2192,33.1795,1 +672,14.5824,18.6960,0.2428,33.5214,1 +673,14.9174,18.2782,0.2261,33.4218,1 +674,14.0030,18.7878,0.2216,33.0126,1 +675,14.0252,19.1019,0.2169,33.3442,1 +676,14.2337,19.4787,0.3227,34.0354,1 +677,14.0858,18.3506,0.2926,32.7292,1 +678,13.8067,19.8749,0.2237,33.9056,1 +679,13.8648,18.8135,0.2266,32.9052,1 +680,14.0379,18.7201,0.2999,33.0581,1 +681,14.3541,19.3306,0.2603,33.9453,1 +682,14.6870,18.7745,0.4033,33.8649,1 +683,14.1989,17.7119,0.2312,32.1421,1 +684,14.2298,19.8783,0.3259,34.4343,1 +685,13.8958,18.6441,0.2818,32.8219,1 +686,13.7805,18.9769,0.2213,32.9788,1 +687,14.2985,19.5571,0.2160,34.0719,1 +688,14.0660,18.3822,0.3067,32.7551,1 +689,13.9841,18.8704,0.2185,33.0732,1 +690,14.1747,19.7602,0.2079,34.1430,1 +691,14.1556,18.2821,0.3021,32.7400,1 +692,14.0521,18.9035,0.2185,33.1742,1 +693,14.2941,19.4158,0.2274,33.9374,1 +694,13.9573,18.6199,0.2195,32.7968,1 +695,14.3721,18.6264,0.2225,33.2210,1 +696,14.3059,19.6044,0.3177,34.2281,1 +697,14.0937,18.2857,0.2171,32.5966,1 +698,14.4799,18.4933,0.2683,33.2416,1 +699,13.9172,20.3533,0.2573,34.5280,1 +700,14.2127,17.8324,0.2149,32.2601,1 +701,14.2993,18.6220,0.2179,33.1393,1 +702,14.3310,19.7626,0.2397,34.3335,1 +703,14.2180,18.2268,0.2223,32.6671,1 +704,14.4981,18.3074,0.2134,33.0189,1 +705,14.4623,19.4429,0.2546,34.1599,1 +706,13.7079,18.7545,0.2113,32.6739,1 +707,14.3113,18.8188,0.2749,33.4050,1 +708,13.8825,20.0826,0.2299,34.1951,1 +709,13.8719,18.3212,0.2132,32.4064,1 +710,14.2225,18.8049,0.3014,33.3289,1 +711,14.1690,19.7519,0.3016,34.2225,1 +712,14.0656,18.3080,0.2149,32.5886,1 +713,14.0978,19.6689,0.2751,34.0420,1 +714,14.5470,18.0989,0.2315,32.8778,1 +715,14.0449,18.9095,0.2075,33.1621,1 +716,13.9257,20.2203,0.3036,34.4496,1 +717,14.2018,18.3723,0.2339,32.8081,1 +718,14.2490,18.1949,0.2373,32.6815,1 +719,14.0921,19.8160,0.2388,34.1469,1 +720,14.1483,19.1385,0.3049,33.5919,1 +721,14.1726,17.8630,0.3159,32.3515,1 +722,13.9509,19.8809,0.2993,34.1312,1 +723,14.0058,19.0627,0.2936,33.3623,1 +724,14.0522,18.0956,0.2131,32.3612,1 +725,13.8263,20.1097,0.2400,34.1761,1 +726,14.0847,18.9470,0.3577,33.3895,1 +727,14.1691,18.4430,0.2965,32.9088,1 +728,17.9589,15.0718,0.2283,33.2594,1 +729,14.2168,19.2016,0.3105,33.7290,1 +730,14.2383,18.1018,0.2179,32.5583,1 +731,13.8914,19.8248,0.2873,34.0038,1 +732,14.6757,18.1356,0.2244,33.0359,1 +733,14.7198,18.0008,0.2172,32.9382,1 +734,14.0617,19.9926,0.3099,34.3644,1 +735,14.1755,18.7019,0.2817,33.1593,1 +736,14.1384,18.4333,0.2925,32.8644,1 +737,14.0621,19.3949,0.3166,33.7738,1 +738,14.2214,19.0902,0.2365,33.5484,1 +739,14.2193,17.8942,0.2152,32.3290,1 +740,14.0391,19.8839,0.3341,34.2572,1 +741,14.5764,17.9374,0.2253,32.7391,1 +742,14.8380,19.0224,0.2150,34.0756,1 +743,13.9766,18.7997,0.2080,32.9844,1 +744,14.2918,19.0290,0.2618,33.5827,1 +745,14.0599,18.4236,0.2987,32.7824,1 +746,13.8295,19.6766,0.2100,33.7163,1 +747,14.3335,18.9085,0.2349,33.4770,1 +748,14.1837,19.0096,0.2086,33.4021,1 +749,13.7712,19.0762,0.2087,33.0562,1 +750,14.1952,18.9905,0.2484,33.4343,1 +751,13.8785,18.7439,0.2379,32.8605,1 +752,13.8093,19.6813,0.2044,33.6950,1 +753,14.4574,18.7037,0.2987,33.4599,1 +754,14.0441,18.6395,0.2966,32.9803,1 +755,13.9116,19.5302,0.2907,33.7326,1 +756,14.1461,18.7305,0.2936,33.1704,1 +757,13.9128,19.5395,0.2998,33.7521,1 +758,13.8415,18.9552,0.2643,33.0611,1 +759,13.8712,19.3186,0.2776,33.4675,1 +760,14.1084,18.4452,0.3062,32.8599,1 +761,13.9235,19.5648,0.2987,33.7871,1 +762,13.8289,19.1796,0.3012,33.3098,1 +763,14.2042,18.5642,0.2849,33.0536,1 +764,13.8218,19.3962,0.3160,33.5340,1 +765,13.8035,19.1153,0.2552,33.1741,1 +766,13.9044,18.8340,0.3287,33.0673,1 +767,13.8414,19.8961,0.2527,33.9903,1 +768,13.6287,19.0177,0.3087,32.9552,1 +769,13.7818,19.8583,0.2752,33.9154,1 +770,14.1737,18.5715,0.2904,33.0357,1 +771,13.7785,18.9667,0.2988,33.0440,1 +772,14.0247,19.6129,0.3053,33.9432,1 +773,14.2088,18.3499,0.2404,32.7993,1 +774,13.9271,18.9349,0.3129,33.1750,1 +775,14.1142,19.2448,0.4257,33.7848,1 +776,14.4561,18.1967,0.2227,32.8757,1 +777,14.5395,18.5386,0.2306,33.3089,1 +778,14.1214,19.6316,0.2229,33.9761,1 +779,14.5535,18.3586,0.1935,33.1059,1 +780,13.9979,18.7347,0.3790,33.1118,1 +781,14.5665,18.9000,0.3270,33.7938,1 +782,14.1698,19.2731,0.4537,33.8967,1 +783,14.0869,17.8070,0.2796,32.1737,1 +784,14.0397,19.6236,0.2230,33.8863,1 +785,14.6944,17.8475,0.2239,32.7658,1 +786,14.8504,18.4584,0.2655,33.5744,1 +787,14.5922,19.4875,0.4003,34.4801,1 +788,14.4746,17.2904,0.3038,32.0689,1 +789,14.0558,19.4772,0.2239,33.7570,1 +790,14.4894,18.8708,0.2193,33.5796,1 +791,14.5238,17.9706,0.3073,32.8020,1 +792,15.0747,18.4826,0.2321,33.7896,1 +793,14.7038,18.2063,0.2814,33.1919,1 +794,13.8517,19.1903,0.2389,33.2810,1 +795,13.7261,19.5088,0.2038,33.4387,1 +796,14.1908,19.0131,0.2372,33.4413,1 +797,14.2641,18.4211,0.2957,32.9810,1 +798,13.8009,19.5090,0.2249,33.5348,1 +799,13.9704,19.0118,0.2232,33.2054,1 +800,14.2680,18.8259,0.2818,33.3757,1 +801,13.7983,19.5624,0.2306,33.5914,1 +802,14.5277,18.4070,0.2251,33.1601,1 +803,14.4447,18.2132,0.2868,32.9449,1 +804,14.2347,19.2854,0.2274,33.7476,1 +805,14.5945,18.4891,0.2278,33.3115,1 +806,14.2831,18.5124,0.2947,33.0903,1 +807,13.7213,19.6333,0.2147,33.5693,1 +808,13.9668,19.0408,0.2179,33.2257,1 +809,14.4968,18.5288,0.3269,33.3525,1 +810,13.9343,19.2743,0.2153,33.4241,1 +811,14.3022,19.2240,0.2989,33.8251,1 +812,14.3964,18.1646,0.3006,32.8616,1 +813,14.3416,18.0223,0.2416,32.6056,1 +814,13.8131,18.6207,0.3104,32.7444,1 +815,14.1093,18.5659,0.2228,32.8981,1 +816,13.9521,18.6565,0.3171,32.9259,1 +817,13.7646,19.3422,0.3073,33.4141,1 +818,18.5201,16.2192,0.2338,34.9733,1 +819,14.4904,19.0585,0.2217,33.7706,1 +820,14.2740,18.8567,0.3082,33.4391,1 +821,13.8430,19.2251,0.2269,33.2951,1 +822,14.4716,18.5935,0.2327,33.2980,1 +823,14.0525,19.0802,0.3132,33.4461,1 +824,14.2364,18.6381,0.2823,33.1568,1 +825,14.1151,19.1065,0.2174,33.4390,1 +826,14.3482,18.6983,0.2902,33.3367,1 +827,14.5546,18.3672,0.3025,33.2244,1 +828,14.2530,18.8586,0.2237,33.3354,1 +829,13.9097,19.0647,0.2188,33.1933,1 +830,14.5396,18.5539,0.3274,33.4211,1 +831,13.9289,19.4946,0.2340,33.6575,1 +832,14.4293,18.3548,0.2160,33.0002,1 +833,14.5682,19.1589,0.2134,33.9406,1 +834,14.2507,18.4974,0.2168,32.9652,1 +835,13.9385,19.2058,0.2208,33.3651,1 +836,14.5468,18.1981,0.2595,33.0045,1 +837,13.7883,19.6556,0.2176,33.6617,1 +838,14.1562,18.8578,0.2619,33.2762,1 +839,14.2565,18.9342,0.2214,33.4121,1 +840,13.8833,19.2025,0.2217,33.3076,1 +841,14.0476,19.0021,0.2192,33.2690,1 +842,14.5222,18.7991,0.2244,33.5457,1 +843,14.5492,18.6173,0.2426,33.4093,1 +844,13.7554,18.7767,0.2214,32.7536,1 +845,14.3461,19.6532,0.2985,34.2978,1 +846,14.3578,18.5333,0.3132,33.2044,1 +847,14.0196,18.2846,0.2157,32.5200,1 +848,14.2296,19.8193,0.2920,34.3409,1 +849,14.1179,18.3875,0.3074,32.8129,1 +850,13.7959,19.0211,0.2146,33.0319,1 +851,14.1588,19.7487,0.2858,34.1935,1 +852,14.5881,17.6880,0.2277,32.5040,1 +853,14.4303,18.5451,0.2135,33.1891,1 +854,13.9179,19.8571,0.2680,34.0432,1 +855,13.8122,18.8263,0.2930,32.9317,1 +856,14.1343,18.5619,0.2176,32.9138,1 +857,13.9748,20.0738,0.2670,34.3156,1 +858,13.7679,18.8891,0.2667,32.9238,1 +859,14.4597,18.2832,0.2215,32.9646,1 +860,14.6776,18.7088,0.2738,33.6604,1 +861,14.2135,18.8966,0.3731,33.4836,1 +862,14.5312,17.9728,0.2158,32.7200,1 +863,14.2061,19.6783,0.3125,34.1969,1 +864,14.0204,18.8426,0.2955,33.1585,1 +865,14.2256,18.3212,0.2156,32.7626,1 +866,14.2958,19.5263,0.3289,34.1511,1 +867,14.4648,18.1631,0.2638,32.8918,1 +868,14.0899,19.7095,0.2434,34.0428,1 +869,14.3463,18.0958,0.2734,32.7157,1 +870,14.4209,18.7340,0.3058,33.4607,1 +871,14.3151,18.1289,0.2166,32.6607,1 +872,14.2143,19.9975,0.2939,34.5059,1 +873,14.5706,17.8682,0.3849,32.8237,1 +874,14.0609,18.5332,0.2170,32.8113,1 +875,14.0513,19.8877,0.2984,34.2374,1 +876,14.4154,18.6234,0.2923,33.3311,1 +877,14.4149,18.9277,0.3262,33.6690,1 +878,15.5922,16.6828,0.2186,32.4938,1 +879,14.1891,18.7704,0.2211,33.1808,1 +880,14.0652,19.7426,0.3680,34.1759,1 +881,13.7269,19.1655,0.2755,33.1682,1 +882,14.2346,18.7231,0.3403,33.2980,1 +883,13.8129,19.5127,0.3002,33.6259,1 +884,13.9033,18.6583,0.2921,32.8537,1 +885,13.9191,19.1890,0.3067,33.4152,1 +886,13.9043,19.5779,0.3085,33.7910,1 +887,13.9436,18.5613,0.3106,32.8156,1 +888,13.9311,19.1061,0.2285,33.2658,1 +889,14.0303,19.6173,0.3177,33.9654,1 +890,13.9415,18.9499,0.2691,33.1607,1 +891,14.1317,18.7758,0.2493,33.1570,1 +892,14.0877,18.8962,0.2568,33.2407,1 +893,13.7495,19.4080,0.3231,33.4808,1 +894,13.7501,19.2616,0.3900,33.4017,1 +895,14.3443,18.2281,0.2241,32.7966,1 +896,14.7407,18.4375,0.2273,33.4057,1 +897,14.4128,18.8183,0.3626,33.5939,1 +898,14.0259,19.3616,0.3040,33.6915,1 +899,14.3003,18.5049,0.3020,33.1072,1 +900,13.8303,19.2674,0.3045,33.4022,1 +901,14.4412,18.7710,0.2877,33.5001,1 +902,14.2466,18.3990,0.2648,32.9106,1 +903,13.9114,19.6796,0.3088,33.8999,1 +904,14.2216,18.6049,0.2908,33.1173,1 +905,14.2620,18.4676,0.2988,33.0286,1 +906,14.2847,19.1351,0.2970,33.7170,1 +907,14.3977,18.3684,0.2935,33.0597,1 +908,16.6570,16.1192,0.2351,33.0114,1 +909,14.5501,19.1860,0.3122,34.0486,1 +910,14.4196,18.5651,0.2533,33.2380,1 +911,14.3176,18.3542,0.2508,32.9229,1 +912,14.1148,19.6327,0.3101,34.0579,1 +913,14.3378,18.3791,0.2596,32.9766,1 +914,14.1028,18.7044,0.3205,33.1277,1 +915,13.9983,19.4294,0.2344,33.6622,1 +916,14.5149,18.3150,0.3077,33.1376,1 +917,14.1338,18.6708,0.2784,33.0831,1 +918,14.1459,19.4426,0.3068,33.8954,1 +919,14.5559,18.1103,0.3052,32.9715,1 +920,14.1048,18.8930,0.3226,33.3204,1 +921,13.7597,19.6263,0.3393,33.7253,1 +922,14.3134,18.3509,0.2032,32.8675,1 +923,13.9909,19.7232,0.2248,33.9390,1 +924,14.2110,18.6466,0.2066,33.0643,1 +925,14.2879,18.5802,0.2837,33.1519,1 +926,14.0338,18.9230,0.2952,33.2522,1 +927,13.9680,19.4446,0.2144,33.6271,1 +928,14.3838,18.5604,0.2936,33.2379,1 +929,14.1707,18.5830,0.2829,33.0369,1 +930,13.8616,19.7055,0.2123,33.7796,1 +931,14.1205,18.8399,0.3054,33.2659,1 +932,14.1537,18.4762,0.3092,32.9392,1 +933,13.9381,19.3454,0.2189,33.5026,1 +934,14.5709,18.4785,0.2384,33.2878,1 +935,14.0239,19.8473,0.2945,34.1657,1 +936,13.9082,18.6619,0.2218,32.7920,1 +937,13.8459,19.2742,0.2980,33.4183,1 +938,14.1502,18.4732,0.2740,32.8978,1 +939,13.9426,19.5372,0.2090,33.6889,1 +940,14.0184,19.0258,0.3083,33.3525,1 +941,13.9464,18.9521,0.3345,33.2332,1 +942,14.0371,19.3224,0.3349,33.6944,1 +943,13.9767,18.4998,0.3111,32.7877,1 +944,14.0349,19.5422,0.3142,33.8913,1 +945,14.2221,18.7965,0.2924,33.3110,1 +946,14.3241,18.1651,0.2973,32.7868,1 +947,14.1283,18.8329,0.2908,33.2520,1 +948,14.1183,19.4175,0.2195,33.7553,1 +949,14.2407,18.3627,0.2786,32.8823,1 +950,14.0541,19.4584,0.2149,33.7275,1 +951,14.4485,18.7688,0.2512,33.4686,1 +952,13.9375,18.8144,0.3592,33.1112,1 +953,14.4360,18.9046,0.2249,33.5656,1 +954,14.9421,17.9429,0.2209,33.1060,1 +955,14.0459,18.9037,0.3047,33.2543,1 +956,14.2067,19.3253,0.2241,33.7563,1 +957,14.3996,18.4267,0.2212,33.0477,1 +958,14.0444,18.8995,0.3047,33.2486,1 +959,14.1987,19.0503,0.2957,33.5447,1 +960,13.8929,19.1732,0.2235,33.2898,1 +961,13.8504,18.9953,0.2936,33.1396,1 +962,13.9420,19.3221,0.2144,33.4785,1 +963,14.9576,18.3269,0.2285,33.5132,1 +964,14.2942,18.3909,0.2941,32.9794,1 +965,13.8998,19.4771,0.2186,33.5955,1 +966,14.3461,18.5347,0.2387,33.1198,1 +967,13.9822,19.1674,0.2195,33.3692,1 +968,14.0013,19.3498,0.2348,33.5863,1 +969,15.0436,17.7625,0.2274,33.0336,1 +970,15.0825,17.7351,0.2127,33.0304,1 +971,14.0882,20.1513,0.2864,34.5259,1 +972,14.2354,18.5996,0.2891,33.1242,1 +973,13.9719,18.4407,0.2581,32.6709,1 +974,13.8207,19.4447,0.2254,33.4908,1 +975,14.5072,18.3200,0.2178,33.0451,1 +976,14.8469,18.1354,0.2251,33.2075,1 +977,13.7804,18.9230,0.3058,33.0092,1 +978,13.9571,18.8112,0.2075,32.9759,1 +979,13.8692,18.7554,0.2186,32.8434,1 +980,14.0324,18.8754,0.2336,33.1414,1 +981,14.0586,18.8665,0.3091,33.2344,1 +982,14.1408,18.6832,0.2707,33.0950,1 +983,13.7042,18.3339,0.2804,32.3186,1 +984,14.2050,18.2906,0.2378,32.7335,1 +985,14.3243,18.4215,0.2439,32.9898,1 +986,13.9674,18.2964,0.3020,32.5659,1 +987,14.6025,18.1658,0.2180,32.9864,1 +988,14.7678,18.0131,0.2166,32.9976,1 +989,14.4601,12.2345,0.2072,26.9019,1 +990,14.8605,13.2376,0.2218,28.3202,1 +991,13.8197,19.2707,0.2177,33.3082,1 +992,14.0998,19.2925,0.2233,33.6156,1 +993,14.1515,19.9714,0.3091,34.4320,1 +994,14.1604,18.1561,0.2203,32.5371,1 +995,14.2982,18.4570,0.2121,32.9675,1 +996,13.8150,20.3850,0.2940,34.4940,1 +997,14.0602,18.5932,0.2296,32.8830,1 +998,13.9166,19.3260,0.2567,33.4995,1 +999,14.1023,19.2984,0.3093,33.7102,1 +1000,14.4062,17.5893,0.2262,32.2218,1 +1001,14.2290,18.8150,0.2159,33.2601,1 +1002,14.2834,19.2708,0.2460,33.8003,1 +1003,15.4082,17.8463,0.2455,33.5002,1 +1004,14.7541,19.0332,0.4340,34.2213,1 +1005,13.8427,19.1074,0.4055,33.3557,1 +1006,14.1016,18.3390,0.3376,32.7783,1 +1007,13.9654,18.1732,0.2268,32.3656,1 +1008,13.9479,20.0955,0.3137,34.3574,1 +1009,14.6972,17.6150,0.2278,32.5403,1 +1010,14.5923,18.2576,0.2173,33.0674,1 +1011,14.3312,19.1115,0.2285,33.6714,1 +1012,14.5717,18.3921,0.2149,33.1787,1 +1013,14.2734,19.8353,0.2477,34.3565,1 +1014,14.5299,18.5731,0.3147,33.4180,1 +1015,14.8134,17.3362,0.2305,32.3804,1 +1016,14.8291,18.2395,0.3654,33.4343,1 +1017,17.9939,15.5350,0.3237,33.8528,1 +1018,15.3448,17.2927,0.2398,32.8775,1 +1019,14.4348,18.3758,0.2285,33.0393,1 +1020,14.6085,19.3508,0.3357,34.2951,1 +1021,14.5731,17.6616,0.2430,32.4778,1 +1022,14.8128,19.0545,0.2706,34.1381,1 +1023,14.5301,18.9015,0.2728,33.7048,1 +1024,15.3074,16.5494,0.2257,32.0826,1 +1025,15.1907,18.4576,0.2404,33.8891,1 +1026,14.7581,18.7396,0.2441,33.7421,1 +1027,14.8408,17.4184,0.2309,32.4901,1 +1028,14.2127,19.7475,0.2744,34.2350,1 +1029,14.4247,18.3486,0.2075,32.9810,1 +1030,14.7735,18.7721,0.2308,33.7765,1 +1031,14.3600,18.7008,0.2707,33.3317,1 +1032,14.3572,18.3206,0.2262,32.9041,1 +1033,14.7316,17.8712,0.2883,32.8912,1 +1034,14.7505,19.1184,0.2722,34.1413,1 +1035,14.2567,18.5355,0.2932,33.0855,1 +1036,14.6722,18.2632,0.2513,33.1868,1 +1037,14.4507,18.8436,0.2915,33.5858,1 +1038,14.2714,18.8370,0.3064,33.4149,1 +1039,14.6138,17.6044,0.2293,32.4478,1 +1040,14.5736,19.3229,0.2976,34.1942,1 +1041,14.3889,18.4454,0.2769,33.1115,1 +1042,13.9429,19.2048,0.2998,33.4475,1 +1043,14.4362,18.7865,0.3107,33.5335,1 +1044,14.2645,18.7461,0.2533,33.2641,1 +1045,14.3350,18.0030,0.2467,32.5850,1 +1046,14.1777,19.7310,0.2994,34.2083,1 +1047,14.3562,18.4509,0.2762,33.0834,1 +1048,14.3013,19.2228,0.2240,33.7482,1 +1049,14.4503,18.3138,0.3057,33.0698,1 +1050,14.4420,18.5689,0.2826,33.2936,1 +1051,14.3023,19.1731,0.2959,33.7713,1 +1052,14.6376,18.0373,0.2655,32.9407,1 +1053,14.4772,18.5452,0.2534,33.2760,1 +1054,14.3575,18.3228,0.3180,32.9985,1 +1055,14.4764,19.0843,0.4010,33.9619,1 +1056,14.4433,18.4319,0.2132,33.0884,1 +1057,14.5309,18.6298,0.2570,33.4180,1 +1058,14.7029,18.4190,0.3080,33.4301,1 +1059,14.7995,17.8486,0.2557,32.9042,1 +1060,14.3905,18.2689,0.3126,32.9721,1 +1061,14.5680,19.1400,0.2384,33.9465,1 +1062,14.6850,18.2385,0.2404,33.1639,1 +1063,14.3533,18.5350,0.3780,33.2663,1 +1064,14.5455,18.8670,0.2186,33.6312,1 +1065,14.8157,18.2528,0.2397,33.3085,1 +1066,14.7065,18.2667,0.2136,33.1870,1 +1067,14.7469,18.2841,0.2473,33.2785,1 +1068,14.4543,18.3989,0.3244,33.1778,1 +1069,14.4728,18.9750,0.3048,33.7527,1 +1070,14.8332,18.1718,0.2790,33.2841,1 +1071,14.4422,18.9003,0.2217,33.5643,1 +1072,14.3632,18.6239,0.3114,33.2987,1 +1073,14.8960,18.0152,0.2941,33.2055,1 +1074,14.4170,18.4199,0.2968,33.1339,1 +1075,14.8723,18.2108,0.2328,33.3161,1 +1076,14.9267,18.3272,0.2185,33.4724,1 +1077,13.9670,18.8212,0.3010,33.0893,1 +1078,14.2860,20.6721,0.2656,35.2237,1 +1079,14.5041,16.5481,0.2493,31.3017,1 +1080,14.6399,18.8343,0.3009,33.7754,1 +1081,14.3454,18.9736,0.2295,33.5486,1 +1082,15.1930,17.6495,0.2518,33.0946,1 +1083,14.7426,17.7969,0.2229,32.7625,1 +1084,14.2631,19.2761,0.2177,33.7571,1 +1085,14.7978,18.7418,0.2425,33.7822,1 +1086,15.0297,18.3343,0.2334,33.5977,1 +1087,14.2591,18.4373,0.2821,32.9789,1 +1088,14.3652,18.9098,0.2435,33.5185,1 +1089,14.4692,18.7807,0.2136,33.4638,1 +1090,14.2086,18.5608,0.2627,33.0321,1 +1091,14.2513,18.7212,0.2672,33.2398,1 +1092,14.1908,18.6118,0.3232,33.1260,1 +1093,18.1248,15.1193,0.2327,33.4770,1 +1094,14.0616,18.9948,0.2894,33.3461,1 +1095,14.1811,19.1506,0.2275,33.5595,1 +1096,14.5043,18.5366,0.3111,33.3521,1 +1097,14.4932,18.3998,0.3266,33.2196,1 +1098,14.2792,18.8440,0.2206,33.3440,1 +1099,14.6954,18.3108,0.2928,33.2992,1 +1100,14.3388,18.4004,0.3187,33.0580,1 +1101,14.3473,19.0241,0.2238,33.5953,1 +1102,14.8716,18.0272,0.2799,33.1789,1 +1103,14.2626,18.8763,0.2724,33.4113,1 +1104,14.5191,18.4235,0.2902,33.2329,1 +1105,14.6488,18.6132,0.2248,33.4868,1 +1106,14.5513,18.4876,0.3110,33.3499,1 +1107,14.5776,18.2702,0.2809,33.1287,1 +1108,14.3270,19.0411,0.2340,33.6024,1 +1109,14.3780,18.7754,0.2202,33.3737,1 +1110,14.7449,18.3828,0.2293,33.3571,1 +1111,14.2370,18.7598,0.2201,33.2170,1 +1112,14.4057,18.4710,0.2250,33.1018,1 +1113,14.9140,18.5479,0.2257,33.6877,1 +1114,14.5051,18.6824,0.2192,33.4067,1 +1115,14.5665,18.6018,0.2647,33.4331,1 +1116,14.8859,18.2800,0.2292,33.3953,1 +1117,14.3622,18.7900,0.2375,33.3898,1 +1118,14.5863,17.8895,0.2265,32.7024,1 +1119,14.6004,18.8524,0.2315,33.6844,1 +1120,14.2562,18.6433,0.2908,33.1905,1 +1121,14.4219,18.5198,0.2224,33.1642,1 +1122,14.4444,19.0111,0.2204,33.6759,1 +1123,14.3244,18.8274,0.2237,33.3758,1 +1124,14.3812,18.7229,0.2226,33.3267,1 +1125,14.7770,18.2459,0.2252,33.2485,1 +1126,14.6944,18.4145,0.2302,33.3393,1 +1127,14.4825,18.4633,0.3615,33.3074,1 +1128,14.2023,19.8769,0.3655,34.4450,1 +1129,14.2575,17.5570,0.2142,32.0290,1 +1130,14.3838,19.1282,0.3095,33.8217,1 +1131,14.3085,18.8182,0.2183,33.3452,1 +1132,14.3670,18.2250,0.3095,32.9018,1 +1133,14.2752,18.9933,0.2161,33.4848,1 +1134,14.4293,19.0401,0.2176,33.6873,1 +1135,14.4093,18.5029,0.3538,33.2662,1 +1136,14.6111,18.2734,0.2194,33.1040,1 +1137,14.4183,18.9827,0.2943,33.6953,1 +1138,14.2889,18.4883,0.2169,32.9943,1 +1139,14.8120,18.3876,0.2151,33.4149,1 +1140,14.3353,18.8187,0.2908,33.4450,1 +1141,14.3421,18.3899,0.2922,33.0244,1 +1142,14.3525,19.0168,0.2195,33.5888,1 +1143,14.5332,18.6566,0.3185,33.5083,1 +1144,14.8090,17.7081,0.2236,32.7408,1 +1145,14.6819,18.8120,0.2023,33.6962,1 +1146,14.6462,18.7290,0.3225,33.6980,1 +1147,14.7492,17.5726,0.2420,32.5639,1 +1148,13.9420,19.7762,0.2352,33.9535,1 +1149,14.4569,18.3564,0.2211,33.0344,1 +1150,14.8473,18.0473,0.2180,33.1127,1 +1151,14.2818,19.5443,0.2508,34.0769,1 +1152,14.6489,17.9801,0.2169,32.8460,1 +1153,14.4614,18.4106,0.2169,33.0891,1 +1154,15.8251,18.0727,0.2436,34.1416,1 +1155,14.2940,18.2675,0.2117,32.7732,1 +1156,15.1025,17.7895,0.2519,33.1440,1 +1157,14.3771,19.1466,0.3205,33.8442,1 +1158,14.0783,18.7789,0.2206,33.0780,1 +1159,15.0835,17.7533,0.2469,33.0839,1 +1160,14.2887,19.6374,0.2564,34.1827,1 +1161,14.4573,18.0989,0.2128,32.7692,1 +1162,14.5000,18.2644,0.2699,33.0343,1 +1163,14.2933,19.6547,0.2955,34.2435,1 +1164,14.3087,18.2064,0.2126,32.7280,1 +1165,14.8680,18.0481,0.2820,33.1983,1 +1166,14.2812,19.5246,0.3103,34.1162,1 +1167,14.3622,18.2932,0.2941,32.9496,1 +1168,14.5074,18.1066,0.3135,32.9275,1 +1169,14.2776,19.5317,0.3278,34.1373,1 +1170,14.5929,17.9045,0.2542,32.7517,1 +1171,14.1515,20.1052,0.2534,34.5101,1 +1172,14.0715,18.1908,0.3676,32.6300,1 +1173,14.3912,18.1496,0.2944,32.8353,1 +1174,14.1789,19.6725,0.2970,34.1484,1 +1175,14.2813,18.5459,0.2549,33.0822,1 +1176,14.4509,18.1409,0.2933,32.8853,1 +1177,14.2838,19.5097,0.2440,34.0377,1 +1178,14.2270,18.9611,0.3034,33.4915,1 +1179,14.2578,17.7961,0.2344,32.2886,1 +1180,15.0983,17.8366,0.2660,33.2010,1 +1181,14.7815,19.4706,0.3459,34.5981,1 +1182,14.1930,18.0985,0.2807,32.5723,1 +1183,14.4004,18.1943,0.3401,32.9351,1 +1184,14.2816,19.4254,0.2787,33.9857,1 +1185,14.4241,18.0950,0.2174,32.7366,1 +1186,14.4972,19.2328,0.3024,34.0324,1 +1187,14.4307,18.6117,0.3046,33.3471,1 +1188,15.1398,17.2577,0.2132,32.6109,1 +1189,13.9892,19.9207,0.2042,34.1142,1 +1190,14.4741,18.4350,0.2931,33.2023,1 +1191,14.6641,18.0236,0.2344,32.9222,1 +1192,14.5919,19.0200,0.3061,33.9183,1 +1193,14.5393,18.5713,0.3063,33.4170,1 +1194,14.6583,17.5928,0.2156,32.4670,1 +1195,15.2796,18.3077,0.2559,33.8435,1 +1196,14.6840,18.4465,0.3414,33.4722,1 +1197,14.6533,18.9434,0.2251,33.8222,1 +1198,14.9988,17.5872,0.2116,32.7977,1 +1199,14.9002,18.0923,0.2127,33.2053,1 +1200,14.3847,19.3143,0.2381,33.9372,1 +1201,14.6514,18.0409,0.2135,32.9060,1 +1202,15.0131,17.9592,0.2372,33.2097,1 +1203,14.5019,18.3954,0.3028,33.2002,1 +1204,14.3285,19.0646,0.2117,33.6048,1 +1205,14.4789,18.6240,0.2656,33.3687,1 +1206,14.4334,18.2153,0.2164,32.8653,1 +1207,14.1020,19.4907,0.2081,33.8009,1 +1208,14.8405,17.8216,0.2173,32.8796,1 +1209,14.4728,19.6662,0.3121,34.4513,1 +1210,14.1450,18.1503,0.2629,32.5583,1 +1211,14.0213,19.2936,0.2875,33.6025,1 +1212,14.5702,18.7715,0.2709,33.6127,1 +1213,14.4796,18.2537,0.2232,32.9565,1 +1214,14.5798,18.2853,0.3226,33.1878,1 +1215,14.3172,19.0498,0.3272,33.6943,1 +1216,14.4259,18.3940,0.3063,33.1264,1 +1217,14.1600,18.5775,0.4277,33.1653,1 +1218,14.2729,19.4458,0.2166,33.9353,1 +1219,14.7354,18.0761,0.2842,33.0957,1 +1220,14.6985,18.0587,0.2846,33.0419,1 +1221,14.5003,18.9910,0.2933,33.7846,1 +1222,14.4353,18.3109,0.2584,33.0049,1 +1223,14.3793,18.5878,0.2961,33.2633,1 +1224,14.3624,19.2893,0.2865,33.9383,1 +1225,14.5443,18.0925,0.2412,32.8781,1 +1226,14.1753,18.8869,0.3628,33.4251,1 +1227,14.6182,18.6577,0.2233,33.4995,1 +1228,14.7328,17.9376,0.2922,32.9626,1 +1229,14.4818,18.3979,0.2936,33.1733,1 +1230,14.2001,19.4805,0.2229,33.9036,1 +1231,14.3386,18.4709,0.2119,33.0214,1 +1232,14.4758,18.1987,0.2765,32.9510,1 +1233,14.4472,19.4615,0.2167,34.1255,1 +1234,14.8762,17.7392,0.2329,32.8483,1 +1235,14.7874,18.0184,0.2554,33.0614,1 +1236,14.3793,19.4739,0.2220,34.0753,1 +1237,14.9223,17.9280,0.2084,33.0588,1 +1238,14.3862,18.2722,0.2469,32.9055,1 +1239,14.4459,19.2962,0.2174,33.9596,1 +1240,14.5579,18.2567,0.2963,33.1109,1 +1241,14.4418,18.2600,0.3028,33.0049,1 +1242,14.8286,19.1520,0.2726,34.2533,1 +1243,14.6874,17.5796,0.2128,32.4799,1 +1244,14.1252,19.4466,0.2197,33.7916,1 +1245,14.6358,18.5185,0.2266,33.3810,1 +1246,14.6574,18.1795,0.2784,33.1154,1 +1247,14.0986,18.5503,0.2088,32.8579,1 +1248,14.3755,19.4468,0.2302,34.0525,1 +1249,14.6824,18.1902,0.2285,33.1012,1 +1250,14.1506,19.1226,0.2198,33.4930,1 +1251,14.7447,18.5577,0.2247,33.5273,1 +1252,14.5873,18.0235,0.2111,32.8219,1 +1253,13.7325,19.9204,0.2224,33.8753,1 +1254,14.6587,18.1700,0.2951,33.1239,1 +1255,14.4079,18.7732,0.2366,33.4179,1 +1256,14.5083,18.6098,0.2235,33.3417,1 +1257,14.7611,18.2298,0.2222,33.2133,1 +1258,14.6766,18.1793,0.2851,33.1411,1 +1259,14.1608,19.2068,0.2224,33.5901,1 +1260,14.0015,19.1228,0.2968,33.4212,1 +1261,14.4630,18.2362,0.2446,32.9440,1 +1262,14.2881,19.2917,0.2980,33.8781,1 +1263,14.2729,18.8004,0.2234,33.2968,1 +1264,14.5264,18.0286,0.3070,32.8621,1 +1265,14.3711,19.1598,0.2176,33.7485,1 +1266,14.4174,18.8189,0.2984,33.5348,1 +1267,14.6443,18.1026,0.2794,33.0264,1 +1268,14.2341,18.9572,0.2403,33.4318,1 +1269,14.2541,19.2291,0.2597,33.7430,1 +1270,14.2364,18.2209,0.3568,32.8143,1 +1271,14.3656,18.7977,0.2173,33.3808,1 +1272,14.3694,18.6276,0.4074,33.4048,1 +1273,15.0748,17.5219,0.2324,32.8294,1 +1274,14.6183,18.8486,0.2252,33.6922,1 +1275,14.6976,18.4507,0.3124,33.4607,1 +1276,14.5201,18.3094,0.2236,33.0532,1 +1277,14.5861,18.5974,0.2241,33.4077,1 +1278,14.4728,18.7827,0.3716,33.6271,1 +1279,14.8131,17.6671,0.2238,32.7043,1 +1280,14.9147,18.5666,0.2221,33.7036,1 +1281,14.5206,18.5950,0.2235,33.3393,1 +1282,14.8251,18.4007,0.2984,33.5243,1 +1283,14.6537,18.3134,0.2329,33.2004,1 +1284,14.3989,18.6537,0.2168,33.2695,1 +1285,14.7371,18.1601,0.2405,33.1377,1 +1286,14.4914,18.8017,0.2183,33.5116,1 +1287,14.2772,18.8516,0.2201,33.3489,1 +1288,14.9461,18.4287,0.2153,33.5902,1 +1289,14.3778,18.5024,0.2189,33.0991,1 +1290,14.3070,18.8532,0.2253,33.3856,1 +1291,14.7993,18.4999,0.2293,33.5288,1 +1292,14.3674,18.5591,0.2239,33.1505,1 +1293,14.2496,18.7426,0.2231,33.2155,1 +1294,14.7231,18.7001,0.2157,33.6390,1 +1295,14.4303,18.7013,0.2187,33.3503,1 +1296,14.3875,18.4319,0.3816,33.2011,1 +1297,14.3326,19.2451,0.3079,33.8857,1 +1298,14.5501,18.3339,0.2581,33.1423,1 +1299,14.1559,18.4140,0.2140,32.7841,1 +1300,14.4520,18.9746,0.2174,33.6441,1 +1301,14.6712,18.4199,0.2243,33.3155,1 +1302,14.2560,18.6934,0.2163,33.1658,1 +1303,14.3038,19.4523,0.2677,34.0240,1 +1304,14.3241,18.2191,0.2809,32.8242,1 +1305,14.1529,19.8258,0.2942,34.2731,1 +1306,14.4149,17.7749,0.2258,32.4158,1 +1307,14.5718,18.2372,0.2221,33.0313,1 +1308,14.4939,19.5668,0.2793,34.3401,1 +1309,14.2505,18.3082,0.2904,32.8492,1 +1310,14.3140,18.4263,0.3104,33.0507,1 +1311,13.9235,20.0423,0.3083,34.2743,1 +1312,14.3661,17.7528,0.2733,32.3926,1 +1313,14.2355,18.8948,0.3042,33.4345,1 +1314,14.4311,18.4875,0.2207,33.1396,1 +1315,14.4048,19.0447,0.3602,33.8098,1 +1316,14.4765,18.2385,0.3001,33.0152,1 +1317,14.7238,18.0532,0.2211,32.9983,1 +1318,14.1267,19.9248,0.3075,34.3592,1 +1319,14.6172,17.8191,0.3062,32.7425,1 +1320,14.9000,17.8432,0.2117,32.9550,1 +1321,14.8198,18.7204,0.3547,33.8951,1 +1322,14.4748,18.2623,0.2535,32.9910,1 +1323,14.6841,19.1879,0.2139,34.0859,1 +1324,14.7074,18.1340,0.2310,33.0724,1 +1325,15.5549,17.0400,0.2398,32.8349,1 +1326,15.1127,18.9346,0.2719,34.3192,1 +1327,14.3837,18.2845,0.2805,32.9491,1 +1328,14.9912,18.1458,0.3027,33.4401,1 +1329,14.7063,18.2891,0.2689,33.2645,1 +1330,14.4415,18.4390,0.2134,33.0941,1 +1331,14.7984,17.9401,0.2085,32.9470,1 +1332,14.4226,19.5110,0.6208,34.5546,1 +1333,14.5356,17.6192,0.2272,32.3820,1 +1334,15.0587,17.7949,0.2674,33.1211,1 +1335,14.5606,19.1914,0.2449,33.9971,1 +1336,14.4900,18.1795,0.2234,32.8929,1 +1337,15.0365,17.8792,0.2517,33.1674,1 +1338,14.3341,19.6662,0.2594,34.2598,1 +1339,14.3675,18.1299,0.2486,32.7462,1 +1340,14.3146,18.8161,0.2530,33.3838,1 +1341,14.1944,19.0978,0.2853,33.5777,1 +1342,14.1519,18.9405,0.3038,33.3964,1 +1343,14.4059,17.9582,0.3097,32.6740,1 +1344,14.4087,19.4789,0.3094,34.1970,1 +1345,14.5864,17.9687,0.2502,32.8057,1 +1346,14.8326,18.5869,0.2148,33.6343,1 +1347,14.2221,18.7425,0.2177,33.1824,1 +1348,14.0038,19.2083,0.2672,33.4795,1 +1349,13.6936,19.9015,0.2747,33.8699,1 +1350,14.8007,17.7937,0.2856,32.8800,1 +1351,14.3051,18.8397,0.2709,33.4158,1 +1352,14.4075,18.6427,0.2771,33.3274,1 +1353,14.9883,18.0776,0.3904,33.4565,1 +1354,14.3208,18.2334,0.3183,32.8726,1 +1355,14.3097,18.8301,0.3557,33.4957,1 +1356,14.2058,18.9762,0.2721,33.4542,1 +1357,14.4491,18.5193,0.2628,33.2313,1 +1358,14.3057,19.4207,0.2592,33.9858,1 +1359,14.5539,17.7179,0.2301,32.5021,1 +1360,14.4986,18.6294,0.3195,33.4478,1 +1361,14.4398,18.6083,0.2795,33.3277,1 +1362,14.7161,18.5250,0.3177,33.5589,1 +1363,14.6949,18.0369,0.2312,32.9631,1 +1364,14.2667,19.3865,0.2782,33.9314,1 +1365,14.5924,18.2861,0.3062,33.1850,1 +1366,14.6463,18.3802,0.2731,33.2999,1 +1367,14.2753,18.3588,0.3464,32.9807,1 +1368,14.8588,18.7121,0.2910,33.8620,1 +1369,14.6343,17.9304,0.2927,32.8577,1 +1370,14.2653,19.2992,0.3439,33.9085,1 +1371,14.8060,18.0258,0.2927,33.1246,1 +1372,14.3954,18.2361,0.3197,32.9512,1 +1373,14.3631,19.1658,0.2316,33.7607,1 +1374,14.9615,18.0857,0.2966,33.3439,1 +1375,15.0818,18.0825,0.2438,33.4084,1 +1376,14.2367,18.8920,0.2100,33.3388,1 +1377,14.7729,18.2328,0.3237,33.3294,1 +1378,14.5886,18.1942,0.2657,33.0486,1 +1379,14.3034,18.9271,0.2089,33.4395,1 +1380,14.6981,18.4341,0.2968,33.4292,1 +1381,14.5547,18.2260,0.2962,33.0769,1 +1382,14.3066,18.9215,0.2340,33.4622,1 +1383,14.5555,18.3727,0.2760,33.2042,1 +1384,14.7089,18.3061,0.3062,33.3216,1 +1385,14.1373,19.3582,0.2948,33.7903,1 +1386,14.6271,18.7376,0.2394,33.6042,1 +1387,14.6241,18.4081,0.2271,33.2595,1 +1388,14.5872,18.2379,0.2248,33.0501,1 +1389,14.4831,18.4865,0.2958,33.2656,1 +1390,14.5540,17.9213,0.2935,32.7689,1 +1391,13.7600,19.2487,0.3398,33.3486,1 +1392,14.3056,19.4673,0.2294,34.0024,1 +1393,14.5162,18.5806,0.3056,33.4026,1 +1394,14.4631,18.5151,0.2538,33.2323,1 +1395,14.1347,18.8741,0.2530,33.2618,1 +1396,14.3628,18.3626,0.3385,33.0641,1 +1397,14.1905,19.2673,0.3223,33.7801,1 +1398,14.1720,18.5930,0.2536,33.0188,1 +1399,14.2563,19.1514,0.2211,33.6288,1 +1400,14.4051,18.6283,0.2979,33.3313,1 +1401,14.4701,18.2103,0.3310,33.0116,1 +1402,14.4248,19.0030,0.2212,33.6490,1 +1403,14.8581,17.9571,0.2955,33.1108,1 +1404,14.6641,18.4740,0.2796,33.4177,1 +1405,14.5481,18.9173,0.2894,33.7551,1 +1406,14.8945,17.9679,0.2478,33.1102,1 +1407,14.5127,18.1435,0.3586,33.0148,1 +1408,14.3990,18.9987,0.2254,33.6232,1 +1409,14.9809,17.9969,0.2369,33.2150,1 +1410,14.7475,17.9858,0.2903,33.0238,1 +1411,14.0541,19.3963,0.2226,33.6732,1 +1412,14.4355,18.6230,0.2975,33.3561,1 +1413,14.3342,18.5517,0.2326,33.1187,1 +1414,14.7370,18.6078,0.3134,33.6582,1 +1415,14.6254,18.4012,0.2060,33.2329,1 +1416,14.3470,18.5732,0.2969,33.2173,1 +1417,15.2893,17.8421,0.2401,33.3718,1 +1418,14.3664,18.5997,0.2217,33.1879,1 +1419,14.1651,18.9005,0.2840,33.3496,1 +1420,14.4830,18.7603,0.3149,33.5583,1 +1421,14.4957,18.6004,0.2241,33.3202,1 +1422,14.4880,18.5399,0.2137,33.2416,1 +1423,14.5745,18.7505,0.2212,33.5464,1 +1424,14.9509,17.8783,0.3021,33.1314,1 +1425,14.1184,18.9996,0.2926,33.4107,1 +1426,14.7758,18.3332,0.2580,33.3670,1 +1427,14.5310,18.4779,0.2139,33.2230,1 +1428,14.2371,18.7409,0.2784,33.2565,1 +1429,14.3052,18.9171,0.2210,33.4436,1 +1430,14.8385,18.3850,0.3100,33.5337,1 +1431,14.4144,18.4817,0.2767,33.1729,1 +1432,14.4673,18.7852,0.2265,33.4791,1 +1433,14.7796,18.4117,0.2689,33.4605,1 +1434,14.2579,18.8075,0.2234,33.2891,1 +1435,14.3648,18.7337,0.2242,33.3228,1 +1436,14.7943,18.4552,0.2469,33.4965,1 +1437,14.3739,18.3294,0.2203,32.9237,1 +1438,14.1783,19.1038,0.2223,33.5044,1 +1439,14.5614,18.3547,0.2901,33.2063,1 +1440,14.1946,19.2242,0.2228,33.6417,1 +1441,14.2809,18.8688,0.2761,33.4258,1 +1442,14.1291,18.7728,0.2429,33.1592,1 +1443,14.7262,18.5918,0.2583,33.5764,1 +1444,14.8903,18.5766,0.2475,33.7144,1 +1445,14.2217,17.8298,0.2216,32.2733,1 +1446,14.5551,19.3879,0.2946,34.2376,1 +1447,14.6416,17.6649,0.2107,32.5174,1 +1448,14.4017,18.8116,0.2434,33.4569,1 +1449,14.4304,18.9539,0.2259,33.6105,1 +1450,14.4597,18.3362,0.3729,33.1690,1 +1451,14.5235,18.4024,0.2231,33.1492,1 +1452,14.8615,18.6485,0.2227,33.7329,1 +1453,14.7793,18.0501,0.2209,33.0505,1 +1454,14.7111,18.2074,0.2151,33.1337,1 +1455,14.7497,18.8434,0.2329,33.8261,1 +1456,14.9638,17.8151,0.2176,32.9966,1 +1457,14.6152,18.4585,0.2634,33.3373,1 +1458,15.0506,19.2173,0.4058,34.6738,1 +1459,14.4346,17.3125,0.3047,32.0520,1 +1460,14.4661,19.4539,0.2922,34.2124,1 +1461,14.8123,17.7475,0.2945,32.8545,1 +1462,14.2205,18.4579,0.2262,32.9047,1 +1463,14.6985,19.2078,0.2673,34.1738,1 +1464,14.6229,18.4163,0.2962,33.3356,1 +1465,14.3353,18.4081,0.3165,33.0600,1 +1466,14.6689,18.5958,0.3003,33.5651,1 +1467,14.6241,18.4584,0.2564,33.3391,1 +1468,14.3708,17.9451,0.2142,32.5303,1 +1469,14.7325,19.2250,0.2656,34.2232,1 +1470,14.6339,18.1229,0.2842,33.0413,1 +1471,14.1899,18.9857,0.2911,33.4668,1 +1472,14.4850,17.7808,0.2282,32.4942,1 +1473,14.4543,19.5672,0.2901,34.3116,1 +1474,14.4360,18.0266,0.2228,32.6856,1 +1475,14.4850,18.4412,0.2243,33.1507,1 +1476,14.4781,19.5388,0.3524,34.3693,1 +1477,14.5352,17.6165,0.2160,32.3679,1 +1478,14.4957,19.2722,0.2139,33.9819,1 +1479,14.0190,19.2192,0.2554,33.4937,1 +1480,13.9182,18.3682,0.2267,32.5133,1 +1481,14.3712,19.7090,0.2974,34.3778,1 +1482,14.4653,18.5878,0.3086,33.3618,1 +1483,14.5978,17.4491,0.2158,32.2628,1 +1484,14.3347,19.5361,0.2938,34.1646,1 +1485,14.3706,18.7990,0.3217,33.4914,1 +1486,14.4952,17.6963,0.3192,32.5108,1 +1487,14.3562,19.5394,0.3925,34.2882,1 +1488,14.4312,18.5152,0.3070,33.2535,1 +1489,14.7717,17.3790,0.2269,32.3778,1 +1490,14.4087,19.6434,0.2763,34.3285,1 +1491,14.5243,18.3272,0.2963,33.1480,1 +1492,14.8723,17.7855,0.2680,32.9259,1 +1493,14.3867,19.0898,0.2913,33.7806,1 +1494,14.6450,18.8170,0.2582,33.7203,1 +1495,14.8415,17.0854,0.2049,32.1318,1 +1496,14.4955,19.5391,0.2977,34.3325,1 +1497,14.4281,18.3381,0.2518,33.0181,1 +1498,14.7749,18.5205,0.2521,33.5476,1 +1499,14.4518,18.5087,0.3167,33.2775,1 +1500,14.7242,18.3004,0.2952,33.3200,1 +1501,14.8049,18.3174,0.3538,33.4763,1 +1502,14.2964,18.8512,0.2526,33.4003,1 +1503,14.7264,18.2125,0.2546,33.1936,1 +1504,14.7052,18.4627,0.2948,33.4627,1 +1505,14.6120,18.2866,0.2327,33.1314,1 +1506,14.8755,18.3047,0.2411,33.4214,1 +1507,15.6828,17.2913,0.2497,33.2240,1 +1508,14.3360,18.8895,0.3065,33.5325,1 +1509,14.2746,18.5195,0.2714,33.0655,1 +1510,14.3357,19.0933,0.3122,33.7412,1 +1511,14.6439,18.4450,0.2500,33.3391,1 +1512,14.8640,17.7179,0.2949,32.8768,1 +1513,14.3844,19.1361,0.2818,33.8026,1 +1514,14.7435,17.9232,0.2913,32.9582,1 +1515,14.4538,18.4462,0.3006,33.2006,1 +1516,14.3265,19.2479,0.2759,33.8504,1 +1517,14.6986,18.2323,0.2935,33.2245,1 +1518,14.4497,18.3738,0.3092,33.1328,1 +1519,14.4496,18.7233,0.2409,33.4140,1 +1520,14.3235,19.3779,0.3011,34.0026,1 +1521,15.4803,16.6510,0.2526,32.3842,1 +1522,14.1283,19.3424,0.2807,33.7517,1 +1523,14.2793,18.6015,0.3062,33.1871,1 +1524,14.1002,18.8511,0.2126,33.1641,1 +1525,14.3556,19.0544,0.3138,33.7239,1 +1526,14.2452,18.8928,0.2757,33.4140,1 +1527,14.5391,18.0305,0.2797,32.8494,1 +1528,14.2322,19.0627,0.3184,33.6133,1 +1529,14.8262,17.8790,0.2240,32.9294,1 +1530,14.4455,19.0373,0.2876,33.7704,1 +1531,14.2592,18.8236,0.3238,33.4067,1 +1532,14.7186,18.0601,0.2712,33.0501,1 +1533,14.7395,18.4929,0.2284,33.4610,1 +1534,14.5728,18.5441,0.2532,33.3703,1 +1535,14.9898,18.1251,0.3579,33.4730,1 +1536,14.9475,17.8147,0.2814,33.0437,1 +1537,14.7756,18.5076,0.3207,33.6042,1 +1538,14.5739,18.3181,0.2670,33.1591,1 +1539,14.1390,18.9839,0.2689,33.3919,1 +1540,14.7621,18.3374,0.2531,33.3527,1 +1541,14.7889,18.1681,0.2984,33.2555,1 +1542,14.7268,18.0951,0.2352,33.0573,1 +1543,15.1201,18.5078,0.2957,33.9237,1 +1544,14.4502,18.4103,0.3409,33.2016,1 +1545,14.2233,18.9306,0.2292,33.3831,1 +1546,14.7532,18.2853,0.2354,33.2739,1 +1547,14.3618,18.7595,0.2207,33.3422,1 +1548,14.6340,18.4136,0.2230,33.2708,1 +1549,15.1181,17.9928,0.2560,33.3670,1 +1550,14.1617,18.7303,0.2529,33.1451,1 +1551,14.2896,19.3032,0.2712,33.8641,1 +1552,14.6773,18.0399,0.3165,33.0338,1 +1553,14.2994,18.8424,0.2241,33.3659,1 +1554,14.5763,18.5221,0.2179,33.3165,1 +1555,14.4813,18.4395,0.2492,33.1702,1 +1556,14.3350,18.6585,0.3205,33.3140,1 +1557,14.3472,19.2357,0.2259,33.8091,1 +1558,14.5343,18.0952,0.2117,32.8413,1 +1559,14.5020,18.5497,0.3160,33.3679,1 +1560,14.1532,19.2199,0.2217,33.5948,1 +1561,14.4419,18.7400,0.2195,33.4015,1 +1562,14.7221,18.1379,0.2373,33.0974,1 +1563,14.1707,19.0044,0.2164,33.3918,1 +1564,14.3311,18.9884,0.2219,33.5415,1 +1565,14.4929,18.2601,0.3049,33.0579,1 +1566,14.2498,19.0822,0.2251,33.5573,1 +1567,14.2354,18.7358,0.2194,33.1908,1 +1568,14.4635,18.4826,0.2767,33.2228,1 +1569,14.3087,18.9675,0.2208,33.4970,1 +1570,14.8623,18.0541,0.3264,33.2430,1 +1571,14.0734,19.2835,0.2203,33.5773,1 +1572,14.8288,18.1658,0.2180,33.2128,1 +1573,14.4465,18.2614,0.2776,32.9857,1 +1574,14.5403,18.6349,0.2810,33.4563,1 +1575,14.3641,19.0852,0.2147,33.6641,1 +1576,14.6361,18.2092,0.2749,33.1203,1 +1577,14.7983,18.5280,0.2235,33.5498,1 +1578,14.8985,18.1407,0.2162,33.2556,1 +1579,14.6237,18.0995,0.2251,32.9486,1 +1580,14.4296,19.2464,0.2163,33.8924,1 +1581,14.8236,18.1272,0.2214,33.1723,1 +1582,14.4295,18.3926,0.3026,33.1249,1 +1583,14.7181,18.4742,0.2170,33.4093,1 +1584,14.8779,18.3545,0.2232,33.4557,1 +1585,14.3716,18.8420,0.2235,33.4372,1 +1586,14.7390,18.3208,0.2163,33.2762,1 +1587,14.7978,18.4029,0.2237,33.4245,1 +1588,14.2974,18.4410,0.2045,32.9431,1 +1589,14.9525,18.4427,0.2227,33.6181,1 +1590,14.5985,18.6621,0.2016,33.4623,1 +1591,14.1997,18.6472,0.2179,33.0649,1 +1592,14.9105,18.4886,0.2162,33.6154,1 +1593,14.6903,18.3206,0.2238,33.2349,1 +1594,14.2561,18.6003,0.2188,33.0754,1 +1595,14.5900,18.8664,0.2247,33.6813,1 +1596,14.5126,18.5902,0.2283,33.3312,1 +1597,14.2099,18.5974,0.2202,33.0277,1 +1598,14.5392,19.0451,0.2320,33.8164,1 +1599,14.2436,18.8099,0.2224,33.2759,1 +1600,14.4353,18.2813,0.2952,33.0119,1 +1601,14.3362,19.0162,0.2180,33.5706,1 +1602,14.4678,18.6186,0.3247,33.4111,1 +1603,14.1722,18.4634,0.2250,32.8607,1 +1604,14.2935,19.7125,0.2767,34.2827,1 +1605,14.5867,18.1421,0.3330,33.0620,1 +1606,14.3611,19.3410,0.2761,33.9783,1 +1607,14.3158,18.2152,0.2846,32.8157,1 +1608,14.4597,18.2078,0.2714,32.9392,1 +1609,14.0798,19.7897,0.3498,34.2194,1 +1610,14.2643,18.4309,0.3004,32.9957,1 +1611,14.5160,18.2452,0.3052,33.0664,1 +1612,14.4195,18.1577,0.3265,32.9038,1 +1613,14.0908,19.6951,0.2951,34.0810,1 +1614,14.3141,18.0722,0.2157,32.6023,1 +1615,14.5596,19.3209,0.3082,34.1889,1 +1616,14.3909,18.0689,0.3043,32.7643,1 +1617,14.7847,18.1170,0.2404,33.1422,1 +1618,14.7454,19.4230,0.5132,34.6819,1 +1619,14.1617,18.4826,0.3265,32.9708,1 +1620,14.7014,18.2199,0.3246,33.2460,1 +1621,14.6699,18.7697,0.3401,33.7798,1 +1622,14.5513,18.0053,0.2654,32.8224,1 +1623,14.9541,18.0230,0.2260,33.2033,1 +1624,14.9135,18.1376,0.2510,33.3022,1 +1625,14.4392,18.0575,0.2697,32.7666,1 +1626,14.3712,18.5466,0.2718,33.1897,1 +1627,14.4328,19.4720,0.2111,34.1160,1 +1628,14.5740,18.3676,0.2780,33.2198,1 +1629,14.5925,17.8706,0.2254,32.6889,1 +1630,14.4159,19.2893,0.2940,33.9993,1 +1631,14.3292,18.5488,0.2190,33.0971,1 +1632,14.5015,18.3650,0.3244,33.1909,1 +1633,14.4319,19.2214,0.2070,33.8605,1 +1634,14.2486,18.7187,0.2113,33.1786,1 +1635,14.8671,17.9655,0.2352,33.0681,1 +1636,14.0521,19.5231,0.2149,33.7901,1 +1637,14.3935,18.1014,0.2536,32.7485,1 +1638,14.7056,18.3033,0.2110,33.2199,1 +1639,14.3439,19.4924,0.2949,34.1313,1 +1640,14.4125,18.2805,0.2119,32.9050,1 +1641,14.8193,18.9204,0.2911,34.0309,1 +1642,19.3691,15.4853,0.3937,35.2483,1 +1643,15.0136,16.2286,0.2347,31.4771,1 +1644,14.7752,18.8211,0.2851,33.8816,1 +1645,14.6315,17.4188,0.2644,32.3147,1 +1646,14.4642,18.6446,0.2796,33.3887,1 +1647,14.3717,19.2486,0.2254,33.8457,1 +1648,14.6710,17.9136,0.2109,32.7956,1 +1649,14.2038,18.9474,0.3182,33.4695,1 +1650,14.4009,19.2301,0.2265,33.8577,1 +1651,14.6267,18.0458,0.3352,33.0079,1 +1652,14.3457,18.2541,0.2361,32.8361,1 +1653,14.1707,19.5318,0.2263,33.9290,1 +1654,14.4688,18.5226,0.2609,33.2524,1 +1655,14.3845,18.3132,0.2132,32.9110,1 +1656,13.7091,19.8840,0.2261,33.8193,1 +1657,14.3902,18.6799,0.3113,33.3815,1 +1658,14.4099,18.6884,0.2235,33.3220,1 +1659,13.9941,19.0551,0.2550,33.3044,1 +1660,13.8939,19.0011,0.3385,33.2337,1 +1661,14.0510,18.6224,0.2130,32.8865,1 +1662,13.8841,19.9378,0.3047,34.1266,1 +1663,14.7178,17.9140,0.2332,32.8651,1 +1664,14.1506,18.2445,0.2155,32.6106,1 +1665,13.7491,20.5278,0.2639,34.5408,1 +1666,14.3822,17.8614,0.3031,32.5469,1 +1667,14.2122,19.0106,0.2529,33.4758,1 +1668,14.0887,19.1149,0.2275,33.4311,1 +1669,14.2859,18.7467,0.2350,33.2677,1 +1670,14.0999,19.0808,0.2145,33.3954,1 +1671,14.3853,19.0983,0.2209,33.7046,1 +1672,14.5802,18.0617,0.2954,32.9374,1 +1673,14.1694,18.8875,0.3094,33.3664,1 +1674,13.8653,19.5263,0.2093,33.6009,1 +1675,14.3842,18.2902,0.2429,32.9174,1 +1676,14.0742,19.4119,0.3058,33.7919,1 +1677,13.8876,19.2090,0.2179,33.3147,1 +1678,14.8987,17.9440,0.2175,33.0604,1 +1679,14.1942,19.0355,0.2442,33.4741,1 +1680,13.8285,19.2542,0.2132,33.2959,1 +1681,14.1451,18.6942,0.2244,33.0638,1 +1682,13.8457,19.7919,0.2253,33.8631,1 +1683,14.1391,18.8494,0.2196,33.2082,1 +1684,14.6074,18.2458,0.2461,33.0994,1 +1685,13.9943,18.6464,0.2996,32.9404,1 +1686,13.8463,20.0819,0.2244,34.1529,1 +1687,14.3971,18.2154,0.3040,32.9166,1 +1688,14.4504,18.2434,0.2442,32.9381,1 +1689,13.8438,20.2884,0.2650,34.3973,1 +1690,14.3593,18.4710,0.3320,33.1626,1 +1691,14.0478,18.1515,0.2815,32.4809,1 +1692,13.8231,20.1279,0.2236,34.1747,1 +1693,14.2375,18.4296,0.2674,32.9345,1 +1694,13.9349,19.4111,0.2911,33.6372,1 +1695,13.8247,19.4779,0.2761,33.5788,1 +1696,13.7478,18.9031,0.3064,32.9574,1 +1697,14.2392,18.6051,0.2286,33.0730,1 +1698,14.0928,19.2534,0.2162,33.5625,1 +1699,14.1629,18.8931,0.3153,33.3715,1 +1700,14.2199,18.8525,0.2865,33.3591,1 +1701,13.9338,19.2286,0.2479,33.4104,1 +1702,14.1162,18.4699,0.3382,32.9244,1 +1703,13.9170,19.5052,0.2162,33.6384,1 +1704,14.3593,18.7696,0.2131,33.3422,1 +1705,14.4676,18.2824,0.2737,33.0239,1 +1706,13.9020,19.5198,0.2202,33.6421,1 +1707,14.5228,18.6319,0.2237,33.3786,1 +1708,14.5267,17.8329,0.2162,32.5758,1 +1709,14.9479,19.8876,0.4008,35.2364,1 +1710,24.8212,12.6406,0.2885,37.7505,1 +1711,16.7245,12.0290,0.3255,29.0793,1 +1712,14.3709,17.4414,0.2201,32.0326,1 +1713,14.9319,18.0670,0.2274,33.2265,1 +1714,15.0470,17.7478,0.2110,33.0059,1 +1715,14.3965,19.1455,0.2195,33.7617,1 +1716,14.2656,18.9728,0.2106,33.4491,1 +1717,13.8548,19.1288,0.2166,33.2003,1 +1718,15.2973,17.8670,0.2350,33.3994,1 +1719,14.2814,18.8823,0.2246,33.3886,1 +1720,14.1054,18.9803,0.2249,33.3108,1 +1721,14.5147,18.5720,0.2214,33.3085,1 +1722,14.6041,18.3490,0.2233,33.1765,1 +1723,13.9899,19.3400,0.2258,33.5559,1 +1724,14.1255,19.0236,0.2193,33.3684,1 +1725,14.2381,18.7619,0.2168,33.2169,1 +1726,14.1987,18.9908,0.2181,33.4077,1 +1727,14.2362,18.9791,0.2731,33.4885,1 +1728,13.9490,18.7761,0.2267,32.9519,1 +1729,14.1558,19.1431,0.2207,33.5197,1 +1730,13.9241,19.1341,0.1932,33.2514,1 +1731,14.0467,19.1972,0.2237,33.4678,1 +1732,14.2849,19.2623,0.2650,33.8123,1 +1733,13.9918,18.7590,0.2539,33.0048,1 +1734,14.2881,18.6271,0.2118,33.1270,1 +1735,13.9644,19.0798,0.2126,33.2569,1 +1736,13.9817,19.2408,0.2256,33.4483,1 +1737,14.6504,18.1092,0.2251,32.9848,1 +1738,14.7238,18.7446,0.2186,33.6870,1 +1739,13.9178,19.4750,0.2530,33.6458,1 +1740,13.9711,18.8736,0.3756,33.2205,1 +1741,24.3582,12.0648,0.3177,36.7409,1 +1742,13.8683,15.8955,0.3146,30.0785,1 +1743,14.4966,18.3853,0.3269,33.2089,1 +1744,14.3391,18.5648,0.2307,33.1347,1 +1745,14.3382,18.5519,0.2297,33.1201,1 +1746,14.5715,19.3070,0.3447,34.2232,1 +1747,14.0963,18.9702,0.3203,33.3868,1 +1748,14.2387,19.4424,0.6784,34.3598,1 +1749,15.7016,16.4713,0.2861,32.4592,1 +1750,14.3297,18.7796,0.3193,33.4287,1 +1751,15.1790,17.8361,0.3936,33.4090,1 +1752,14.4909,17.9955,0.3287,32.8153,1 +1753,14.3033,19.3170,0.3377,33.9581,1 +1754,14.2363,17.5387,0.2238,31.9990,1 +1755,14.2206,19.8210,0.2392,34.2809,1 +1756,14.2395,18.1433,0.2168,32.5996,1 +1757,13.9832,19.0020,0.2175,33.2027,1 +1758,14.4161,18.5433,0.2178,33.1772,1 +1759,14.3166,19.2687,0.2902,33.8755,1 +1760,13.8275,18.9583,0.2193,33.0052,1 +1761,14.8304,18.2352,0.2557,33.3213,1 +1762,14.2864,19.9428,0.3665,34.5957,1 +1763,14.0588,18.0510,0.2206,32.3306,1 +1764,14.6235,18.0542,0.2243,32.9023,1 +1765,14.0863,20.0170,0.2704,34.3739,1 +1766,13.7340,18.5512,0.2135,32.4991,1 +1767,14.3010,19.6488,0.2567,34.2066,1 +1768,13.9724,18.7475,0.2935,33.0135,1 +1769,14.0321,18.4494,0.2122,32.6938,1 +1770,14.4281,19.5387,0.2098,34.1767,1 +1771,14.0575,18.7749,0.3167,33.1491,1 +1772,14.0824,18.4106,0.2918,32.7849,1 +1773,14.0570,20.0704,0.3012,34.4287,1 +1774,14.0320,18.1048,0.2192,32.3561,1 +1775,14.2609,18.7002,0.2534,33.2146,1 +1776,13.7474,19.1298,0.2223,33.0995,1 +1777,14.1909,19.6284,0.3198,34.1391,1 +1778,13.6336,19.8636,0.3097,33.8071,1 +1779,14.1523,19.0341,0.3215,33.5080,1 +1780,14.2742,17.9041,0.3008,32.4794,1 +1781,13.9224,19.9968,0.3105,34.2298,1 +1782,14.3101,18.0812,0.2131,32.6046,1 +1783,14.0668,18.6293,0.2271,32.9233,1 +1784,13.7570,20.2990,0.3323,34.3884,1 +1785,13.7532,19.1186,0.3162,33.1881,1 +1786,13.8811,18.7064,0.2760,32.8637,1 +1787,13.8643,18.9783,0.3273,33.1700,1 +1788,13.8774,19.4411,0.2906,33.6093,1 +1789,14.3157,18.2627,0.2239,32.8023,1 +1790,14.1673,19.8304,0.2173,34.2150,1 +1791,14.1365,18.6480,0.3047,33.0893,1 +1792,13.8078,19.0316,0.2782,33.1179,1 +1793,14.2270,18.3014,0.2145,32.7431,1 +1794,13.9133,20.0583,0.2898,34.2616,1 +1795,14.4000,18.1179,0.2153,32.7332,1 +1796,14.0935,18.9538,0.2246,33.2720,1 +1797,13.9392,20.1645,0.2867,34.3905,1 +1798,14.7903,18.0463,0.2450,33.0818,1 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/run_status.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/run_status.txt new file mode 100644 index 0000000..94d2f2e --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/dynamic_5k60/run_status.txt @@ -0,0 +1,5 @@ +args=--synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen +Computer: OOSU-IMAC +User: È«±æµ¿ +Date: 2026-05-15 1:26:08.80 +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/console.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/console.txt new file mode 100644 index 0000000..b6d2c14 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/console.txt @@ -0,0 +1,13 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=61.140 +frames=3669 +budget_ms=16.667 +p95_total_ms=16.794 +max_total_ms=29.818 +missed_frames=1724 +vsync=on +static_frame=off +gpu_pattern=on +uncapped=off diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/receiver_stats.csv b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/receiver_stats.csv new file mode 100644 index 0000000..8d16547 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/receiver_stats.csv @@ -0,0 +1,3670 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,0.0000,0.0000,8.5647,8.5647,0 +1,0.0000,0.0000,12.6958,12.6959,0 +2,0.0000,0.0000,16.7057,16.7058,1 +3,0.0000,0.0000,16.5267,16.5267,0 +4,0.0000,0.0000,18.8508,18.8510,1 +5,0.0000,0.0000,16.7951,16.7954,1 +6,0.0000,0.0000,16.6170,16.6173,0 +7,0.0000,0.0000,16.5935,16.5938,0 +8,0.0000,0.0000,16.7865,16.7868,1 +9,0.0000,0.0000,16.6652,16.6654,0 +10,0.0000,0.0000,16.5734,16.5737,0 +11,0.0000,0.0000,16.6558,16.6562,0 +12,0.0000,0.0000,16.6575,16.6578,0 +13,0.0000,0.0000,16.7737,16.7739,1 +14,0.0000,0.0000,16.7027,16.7030,1 +15,0.0000,0.0000,16.6174,16.6177,0 +16,0.0000,0.0000,16.7073,16.7076,1 +17,0.0000,0.0000,16.6032,16.6035,0 +18,0.0000,0.0000,16.9417,16.9420,1 +19,0.0000,0.0000,16.3075,16.3079,0 +20,0.0000,0.0000,16.7436,16.7439,1 +21,0.0000,0.0000,16.6861,16.6864,1 +22,0.0000,0.0000,15.0593,15.0595,0 +23,0.0000,0.0000,16.6279,16.6280,0 +24,0.0000,0.0000,17.1913,17.1915,1 +25,0.0000,0.0000,8.0256,8.0260,0 +26,0.0000,0.0000,9.7661,9.7664,0 +27,0.0000,0.0000,16.4952,16.4955,0 +28,0.0000,0.0000,16.7032,16.7035,1 +29,0.0000,0.0000,16.6483,16.6486,0 +30,0.0000,0.0000,16.6833,16.6837,1 +31,0.0000,0.0000,16.6576,16.6579,0 +32,0.0000,0.0000,16.6707,16.6710,1 +33,0.0000,0.0000,16.6483,16.6486,0 +34,0.0000,0.0000,16.7175,16.7178,1 +35,0.0000,0.0000,16.6604,16.6607,0 +36,0.0000,0.0000,16.6674,16.6677,1 +37,0.0000,0.0000,16.5963,16.5965,0 +38,0.0000,0.0000,16.6832,16.6835,1 +39,0.0000,0.0000,16.6501,16.6504,0 +40,0.0000,0.0000,7.0109,7.0112,0 +41,0.0000,0.0000,9.7569,9.7572,0 +42,0.0000,0.0000,16.6582,16.6585,0 +43,0.0000,0.0000,16.6970,16.6973,1 +44,0.0000,0.0000,16.6391,16.6394,0 +45,0.0000,0.0000,16.6544,16.6547,0 +46,0.0000,0.0000,16.6565,16.6568,0 +47,0.0000,0.0000,16.6880,16.6883,1 +48,0.0000,0.0000,16.6650,16.6653,0 +49,0.0000,0.0000,15.0435,15.0438,0 +50,0.0000,0.0000,16.6604,16.6604,0 +51,0.0000,0.0000,16.6642,16.6643,0 +52,0.0000,0.0000,16.6362,16.6363,0 +53,0.0000,0.0000,17.8960,17.8962,1 +54,0.0000,0.0000,17.2360,17.2363,1 +55,0.0000,0.0000,15.4258,15.4261,0 +56,0.0000,0.0000,16.6720,16.6722,1 +57,0.0000,0.0000,17.8176,17.8178,1 +58,0.0000,0.0000,16.6808,16.6811,1 +59,0.0000,0.0000,16.6642,16.6645,0 +60,0.0000,0.0000,16.6745,16.6748,1 +61,0.0000,0.0000,16.6791,16.6793,1 +62,0.0000,0.0000,16.6104,16.6106,0 +63,0.0000,0.0000,16.6965,16.6968,1 +64,0.0000,0.0000,16.6241,16.6244,0 +65,0.0000,0.0000,16.7381,16.7384,1 +66,0.0000,0.0000,16.7754,16.7757,1 +67,0.0000,0.0000,6.8247,6.8250,0 +68,0.0000,0.0000,9.8626,9.8629,0 +69,0.0000,0.0000,16.6067,16.6070,0 +70,0.0000,0.0000,16.8295,16.8298,1 +71,0.0000,0.0000,16.4728,16.4731,0 +72,0.0000,0.0000,16.6507,16.6510,0 +73,0.0000,0.0000,16.6909,16.6912,1 +74,0.0000,0.0000,16.6399,16.6401,0 +75,0.0000,0.0000,16.7174,16.7177,1 +76,0.0000,0.0000,16.6301,16.6304,0 +77,0.0000,0.0000,16.6917,16.6920,1 +78,0.0000,0.0000,16.6547,16.6550,0 +79,0.0000,0.0000,16.6996,16.6999,1 +80,0.0000,0.0000,16.6536,16.6539,0 +81,0.0000,0.0000,16.6595,16.6598,0 +82,0.0000,0.0000,16.5338,16.5341,0 +83,0.0000,0.0000,7.1008,7.1011,0 +84,0.0000,0.0000,9.8457,9.8460,0 +85,0.0000,0.0000,16.4649,16.4652,0 +86,0.0000,0.0000,16.7010,16.7013,1 +87,0.0000,0.0000,16.6935,16.6938,1 +88,0.0000,0.0000,16.6588,16.6591,0 +89,0.0000,0.0000,16.6862,16.6865,1 +90,0.0000,0.0000,16.6517,16.6520,0 +91,0.0000,0.0000,16.6627,16.6630,0 +92,0.0000,0.0000,16.7329,16.7332,1 +93,0.0000,0.0000,16.6646,16.6649,0 +94,0.0000,0.0000,16.7870,16.7874,1 +95,0.0000,0.0000,16.5337,16.5340,0 +96,0.0000,0.0000,16.7202,16.7205,1 +97,0.0000,0.0000,16.6791,16.6794,1 +98,0.0000,0.0000,16.6633,16.6636,0 +99,0.0000,0.0000,16.6272,16.6275,0 +100,0.0000,0.0000,16.6885,16.6888,1 +101,0.0000,0.0000,16.7566,16.7569,1 +102,0.0000,0.0000,16.5485,16.5488,0 +103,0.0000,0.0000,16.6513,16.6516,0 +104,0.0000,0.0000,16.7491,16.7494,1 +105,0.0000,0.0000,16.6068,16.6071,0 +106,0.0000,0.0000,16.6486,16.6489,0 +107,0.0000,0.0000,16.3257,16.3260,0 +108,0.0000,0.0000,7.4013,7.4016,0 +109,0.0000,0.0000,9.6925,9.6928,0 +110,0.0000,0.0000,16.5893,16.5896,0 +111,0.0000,0.0000,16.6518,16.6521,0 +112,0.0000,0.0000,16.7161,16.7164,1 +113,0.0000,0.0000,16.7128,16.7131,1 +114,0.0000,0.0000,16.6393,16.6396,0 +115,0.0000,0.0000,16.6754,16.6758,1 +116,0.0000,0.0000,16.6214,16.6217,0 +117,0.0000,0.0000,16.7790,16.7793,1 +118,0.0000,0.0000,16.5948,16.5951,0 +119,0.0000,0.0000,16.7095,16.7098,1 +120,0.0000,0.0000,16.6655,16.6658,0 +121,0.0000,0.0000,16.7095,16.7098,1 +122,0.0000,0.0000,16.5579,16.5582,0 +123,0.0000,0.0000,16.7071,16.7074,1 +124,0.0000,0.0000,16.9269,16.9272,1 +125,0.0000,0.0000,16.4483,16.4486,0 +126,0.0000,0.0000,16.6324,16.6327,0 +127,0.0000,0.0000,16.6677,16.6680,1 +128,0.0000,0.0000,16.6664,16.6667,1 +129,0.0000,0.0000,16.6589,16.6592,0 +130,0.0000,0.0000,16.6762,16.6765,1 +131,0.0000,0.0000,16.7233,16.7236,1 +132,0.0000,0.0000,16.6243,16.6246,0 +133,0.0000,0.0000,16.7313,16.7316,1 +134,0.0000,0.0000,16.6807,16.6810,1 +135,0.0000,0.0000,16.6223,16.6226,0 +136,0.0000,0.0000,16.6454,16.6457,0 +137,0.0000,0.0000,16.7670,16.7674,1 +138,0.0000,0.0000,16.5888,16.5891,0 +139,0.0000,0.0000,16.7551,16.7553,1 +140,0.0000,0.0000,16.6237,16.6240,0 +141,0.0000,0.0000,16.6328,16.6331,0 +142,0.0000,0.0000,16.7276,16.7279,1 +143,0.0000,0.0000,16.6641,16.6644,0 +144,0.0000,0.0000,16.6384,16.6387,0 +145,0.0000,0.0000,16.7012,16.7015,1 +146,0.0000,0.0000,16.6366,16.6369,0 +147,0.0000,0.0000,16.6600,16.6603,0 +148,0.0000,0.0000,16.6962,16.6965,1 +149,0.0000,0.0000,16.6662,16.6665,0 +150,0.0000,0.0000,16.7155,16.7158,1 +151,0.0000,0.0000,16.5577,16.5580,0 +152,0.0000,0.0000,16.7208,16.7211,1 +153,0.0000,0.0000,16.6596,16.6599,0 +154,0.0000,0.0000,16.7024,16.7027,1 +155,0.0000,0.0000,16.7350,16.7353,1 +156,0.0000,0.0000,16.6639,16.6641,0 +157,0.0000,0.0000,16.6249,16.6251,0 +158,0.0000,0.0000,16.6848,16.6851,1 +159,0.0000,0.0000,16.6388,16.6391,0 +160,0.0000,0.0000,16.6551,16.6554,0 +161,0.0000,0.0000,16.6831,16.6834,1 +162,0.0000,0.0000,16.6301,16.6304,0 +163,0.0000,0.0000,16.6901,16.6905,1 +164,0.0000,0.0000,16.7144,16.7147,1 +165,0.0000,0.0000,16.7377,16.7380,1 +166,0.0000,0.0000,16.5795,16.5797,0 +167,0.0000,0.0000,16.6503,16.6506,0 +168,0.0000,0.0000,16.6475,16.6478,0 +169,0.0000,0.0000,16.7276,16.7279,1 +170,0.0000,0.0000,16.6117,16.6120,0 +171,0.0000,0.0000,16.8720,16.8723,1 +172,0.0000,0.0000,16.5276,16.5279,0 +173,0.0000,0.0000,16.7398,16.7401,1 +174,0.0000,0.0000,16.6080,16.6083,0 +175,0.0000,0.0000,16.6420,16.6423,0 +176,0.0000,0.0000,16.6777,16.6780,1 +177,0.0000,0.0000,16.6598,16.6601,0 +178,0.0000,0.0000,16.6587,16.6590,0 +179,0.0000,0.0000,16.6599,16.6602,0 +180,0.0000,0.0000,16.7866,16.7869,1 +181,0.0000,0.0000,16.7647,16.7650,1 +182,0.0000,0.0000,18.4664,18.4667,1 +183,0.0000,0.0000,14.9318,14.9321,0 +184,0.0000,0.0000,15.2768,15.2770,0 +185,0.0000,0.0000,16.4741,16.4743,0 +186,0.0000,0.0000,16.6844,16.6845,1 +187,0.0000,0.0000,17.9990,17.9992,1 +188,0.0000,0.0000,16.6655,16.6658,0 +189,0.0000,0.0000,16.6804,16.6807,1 +190,0.0000,0.0000,16.6919,16.6922,1 +191,0.0000,0.0000,16.6746,16.6749,1 +192,0.0000,0.0000,16.6878,16.6881,1 +193,0.0000,0.0000,15.5208,15.5210,0 +194,0.0000,0.0000,16.5823,16.5825,0 +195,0.0000,0.0000,16.7656,16.7657,1 +196,0.0000,0.0000,16.3255,16.3257,0 +197,0.0000,0.0000,7.8716,7.8719,0 +198,0.0000,0.0000,9.1227,9.1229,0 +199,0.0000,0.0000,16.6750,16.6752,1 +200,0.0000,0.0000,16.6464,16.6466,0 +201,0.0000,0.0000,17.8114,17.8116,1 +202,0.0000,0.0000,16.6849,16.6852,1 +203,0.0000,0.0000,16.6245,16.6248,0 +204,0.0000,0.0000,16.6970,16.6973,1 +205,0.0000,0.0000,16.7045,16.7048,1 +206,0.0000,0.0000,16.6366,16.6369,0 +207,0.0000,0.0000,16.7244,16.7247,1 +208,0.0000,0.0000,16.6353,16.6355,0 +209,0.0000,0.0000,16.6585,16.6588,0 +210,0.0000,0.0000,16.6776,16.6779,1 +211,0.0000,0.0000,16.3535,16.3538,0 +212,0.0000,0.0000,7.2946,7.2949,0 +213,0.0000,0.0000,9.7919,9.7922,0 +214,0.0000,0.0000,16.6530,16.6533,0 +215,0.0000,0.0000,16.5884,16.5887,0 +216,0.0000,0.0000,16.6810,16.6813,1 +217,0.0000,0.0000,16.6617,16.6620,0 +218,0.0000,0.0000,16.6518,16.6521,0 +219,0.0000,0.0000,16.6851,16.6853,1 +220,0.0000,0.0000,16.6876,16.6879,1 +221,0.0000,0.0000,16.6768,16.6771,1 +222,0.0000,0.0000,16.6661,16.6664,0 +223,0.0000,0.0000,16.6547,16.6550,0 +224,0.0000,0.0000,16.6403,16.6406,0 +225,0.0000,0.0000,16.7080,16.7083,1 +226,0.0000,0.0000,16.6659,16.6662,0 +227,0.0000,0.0000,16.6684,16.6687,1 +228,0.0000,0.0000,16.7234,16.7237,1 +229,0.0000,0.0000,16.6376,16.6379,0 +230,0.0000,0.0000,16.5678,16.5682,0 +231,0.0000,0.0000,7.0579,7.0582,0 +232,0.0000,0.0000,9.7871,9.7874,0 +233,0.0000,0.0000,16.6900,16.6903,1 +234,0.0000,0.0000,16.5831,16.5834,0 +235,0.0000,0.0000,16.6550,16.6554,0 +236,0.0000,0.0000,6.7831,6.7834,0 +237,0.0000,0.0000,9.9940,9.9943,0 +238,0.0000,0.0000,16.6174,16.6177,0 +239,0.0000,0.0000,16.6258,16.6261,0 +240,0.0000,0.0000,16.6436,16.6439,0 +241,0.0000,0.0000,16.7065,16.7068,1 +242,0.0000,0.0000,16.6284,16.6287,0 +243,0.0000,0.0000,16.7478,16.7481,1 +244,0.0000,0.0000,16.6160,16.6163,0 +245,0.0000,0.0000,16.7219,16.7222,1 +246,0.0000,0.0000,16.6554,16.6557,0 +247,0.0000,0.0000,16.6034,16.6037,0 +248,0.0000,0.0000,16.6903,16.6906,1 +249,0.0000,0.0000,16.6227,16.6230,0 +250,0.0000,0.0000,16.7513,16.7516,1 +251,0.0000,0.0000,16.6594,16.6597,0 +252,0.0000,0.0000,16.6328,16.6331,0 +253,0.0000,0.0000,16.6921,16.6924,1 +254,0.0000,0.0000,15.7911,15.7913,0 +255,0.0000,0.0000,16.7655,16.7656,1 +256,0.0000,0.0000,16.3376,16.3379,0 +257,0.0000,0.0000,16.6018,16.6020,0 +258,0.0000,0.0000,16.0006,16.0007,0 +259,0.0000,0.0000,16.6285,16.6285,0 +260,0.0000,0.0000,18.4961,18.4962,1 +261,0.0000,0.0000,7.7367,7.7370,0 +262,0.0000,0.0000,9.1215,9.1218,0 +263,0.0000,0.0000,16.5836,16.5839,0 +264,0.0000,0.0000,16.6471,16.6474,0 +265,0.0000,0.0000,16.7940,16.7943,1 +266,0.0000,0.0000,16.6717,16.6720,1 +267,0.0000,0.0000,16.6335,16.6338,0 +268,0.0000,0.0000,16.6228,16.6231,0 +269,0.0000,0.0000,16.6519,16.6522,0 +270,0.0000,0.0000,16.6206,16.6209,0 +271,0.0000,0.0000,16.9013,16.9016,1 +272,0.0000,0.0000,16.6283,16.6286,0 +273,0.0000,0.0000,16.5803,16.5806,0 +274,0.0000,0.0000,16.6079,16.6082,0 +275,0.0000,0.0000,16.6364,16.6367,0 +276,0.0000,0.0000,16.8820,16.8823,1 +277,0.0000,0.0000,16.6426,16.6429,0 +278,0.0000,0.0000,16.6922,16.6925,1 +279,0.0000,0.0000,14.9533,14.9535,0 +280,0.0000,0.0000,16.5373,16.5375,0 +281,0.0000,0.0000,16.7255,16.7256,1 +282,0.0000,0.0000,18.2909,18.2911,1 +283,0.0000,0.0000,16.7477,16.7480,1 +284,0.0000,0.0000,16.5931,16.5934,0 +285,0.0000,0.0000,16.6339,16.6342,0 +286,0.0000,0.0000,16.7054,16.7057,1 +287,0.0000,0.0000,16.6523,16.6526,0 +288,0.0000,0.0000,16.6580,16.6583,0 +289,0.0000,0.0000,16.8201,16.8204,1 +290,0.0000,0.0000,16.5473,16.5476,0 +291,0.0000,0.0000,16.7038,16.7041,1 +292,0.0000,0.0000,16.6417,16.6420,0 +293,0.0000,0.0000,16.6820,16.6823,1 +294,0.0000,0.0000,16.6534,16.6537,0 +295,0.0000,0.0000,16.7162,16.7165,1 +296,0.0000,0.0000,16.6182,16.6185,0 +297,0.0000,0.0000,16.6668,16.6671,1 +298,0.0000,0.0000,16.8162,16.8165,1 +299,0.0000,0.0000,16.5647,16.5650,0 +300,0.0000,0.0000,16.6481,16.6484,0 +301,0.0000,0.0000,16.6414,16.6417,0 +302,0.0000,0.0000,16.6999,16.7002,1 +303,0.0000,0.0000,16.6884,16.6887,1 +304,0.0000,0.0000,16.7302,16.7305,1 +305,0.0000,0.0000,16.6444,16.6447,0 +306,0.0000,0.0000,16.6288,16.6291,0 +307,0.0000,0.0000,16.7407,16.7410,1 +308,0.0000,0.0000,16.7542,16.7546,1 +309,0.0000,0.0000,16.6408,16.6411,0 +310,0.0000,0.0000,16.6296,16.6299,0 +311,0.0000,0.0000,16.5905,16.5908,0 +312,0.0000,0.0000,16.6854,16.6858,1 +313,0.0000,0.0000,16.6434,16.6437,0 +314,0.0000,0.0000,16.7917,16.7920,1 +315,0.0000,0.0000,16.5707,16.5710,0 +316,0.0000,0.0000,16.6950,16.6953,1 +317,0.0000,0.0000,16.6343,16.6346,0 +318,0.0000,0.0000,16.6566,16.6569,0 +319,0.0000,0.0000,16.6923,16.6927,1 +320,0.0000,0.0000,16.6943,16.6946,1 +321,0.0000,0.0000,16.6333,16.6336,0 +322,0.0000,0.0000,16.6732,16.6734,1 +323,0.0000,0.0000,16.6617,16.6620,0 +324,0.0000,0.0000,16.6640,16.6643,0 +325,0.0000,0.0000,16.6803,16.6807,1 +326,0.0000,0.0000,16.7145,16.7148,1 +327,0.0000,0.0000,16.7042,16.7045,1 +328,0.0000,0.0000,16.6049,16.6052,0 +329,0.0000,0.0000,16.7393,16.7396,1 +330,0.0000,0.0000,16.5970,16.5973,0 +331,0.0000,0.0000,16.6692,16.6695,1 +332,0.0000,0.0000,16.6354,16.6357,0 +333,0.0000,0.0000,16.6854,16.6857,1 +334,0.0000,0.0000,16.7003,16.7006,1 +335,0.0000,0.0000,16.6792,16.6795,1 +336,0.0000,0.0000,16.4222,16.4225,0 +337,0.0000,0.0000,7.2425,7.2428,0 +338,0.0000,0.0000,9.7362,9.7365,0 +339,0.0000,0.0000,16.6675,16.6679,1 +340,0.0000,0.0000,16.6042,16.6045,0 +341,0.0000,0.0000,16.7079,16.7082,1 +342,0.0000,0.0000,16.6727,16.6730,1 +343,0.0000,0.0000,16.6449,16.6452,0 +344,0.0000,0.0000,16.6510,16.6513,0 +345,0.0000,0.0000,16.6241,16.6244,0 +346,0.0000,0.0000,16.7421,16.7424,1 +347,0.0000,0.0000,16.6856,16.6859,1 +348,0.0000,0.0000,16.6360,16.6363,0 +349,0.0000,0.0000,16.6612,16.6615,0 +350,0.0000,0.0000,16.6627,16.6630,0 +351,0.0000,0.0000,16.6537,16.6540,0 +352,0.0000,0.0000,16.3327,16.3330,0 +353,0.0000,0.0000,7.3434,7.3437,0 +354,0.0000,0.0000,9.7444,9.7447,0 +355,0.0000,0.0000,16.6412,16.6415,0 +356,0.0000,0.0000,16.6871,16.6874,1 +357,0.0000,0.0000,16.5936,16.5939,0 +358,0.0000,0.0000,16.6755,16.6758,1 +359,0.0000,0.0000,16.7112,16.7115,1 +360,0.0000,0.0000,16.7452,16.7455,1 +361,0.0000,0.0000,16.7604,16.7608,1 +362,0.0000,0.0000,15.3311,15.3314,0 +363,0.0000,0.0000,16.6893,16.6895,1 +364,0.0000,0.0000,16.5603,16.5605,0 +365,0.0000,0.0000,16.7014,16.7017,1 +366,0.0000,0.0000,17.8959,17.8961,1 +367,0.0000,0.0000,16.7515,16.7518,1 +368,0.0000,0.0000,16.5582,16.5585,0 +369,0.0000,0.0000,16.7088,16.7091,1 +370,0.0000,0.0000,16.6747,16.6750,1 +371,0.0000,0.0000,16.8929,16.8932,1 +372,0.0000,0.0000,16.5181,16.5185,0 +373,0.0000,0.0000,16.6073,16.6076,0 +374,0.0000,0.0000,16.6940,16.6943,1 +375,0.0000,0.0000,16.6365,16.6368,0 +376,0.0000,0.0000,16.6560,16.6562,0 +377,0.0000,0.0000,16.7320,16.7323,1 +378,0.0000,0.0000,15.4736,15.4738,0 +379,0.0000,0.0000,16.6557,16.6558,0 +380,0.0000,0.0000,16.6712,16.6714,1 +381,0.0000,0.0000,16.6818,16.6820,1 +382,0.0000,0.0000,7.8956,7.8959,0 +383,0.0000,0.0000,10.0319,10.0322,0 +384,0.0000,0.0000,16.6298,16.6301,0 +385,0.0000,0.0000,16.6102,16.6105,0 +386,0.0000,0.0000,16.6669,16.6672,1 +387,0.0000,0.0000,16.6715,16.6718,1 +388,0.0000,0.0000,16.6713,16.6716,1 +389,0.0000,0.0000,16.6583,16.6586,0 +390,0.0000,0.0000,16.6477,16.6480,0 +391,0.0000,0.0000,16.7195,16.7198,1 +392,0.0000,0.0000,16.6713,16.6716,1 +393,0.0000,0.0000,16.6628,16.6631,0 +394,0.0000,0.0000,16.6556,16.6559,0 +395,0.0000,0.0000,16.6741,16.6744,1 +396,0.0000,0.0000,16.6781,16.6784,1 +397,0.0000,0.0000,16.7075,16.7078,1 +398,0.0000,0.0000,16.6473,16.6476,0 +399,0.0000,0.0000,16.3270,16.3273,0 +400,0.0000,0.0000,7.5151,7.5154,0 +401,0.0000,0.0000,9.5969,9.5972,0 +402,0.0000,0.0000,16.5274,16.5277,0 +403,0.0000,0.0000,16.6639,16.6642,0 +404,0.0000,0.0000,16.7292,16.7294,1 +405,0.0000,0.0000,16.6627,16.6630,0 +406,0.0000,0.0000,16.6836,16.6839,1 +407,0.0000,0.0000,16.6705,16.6708,1 +408,0.0000,0.0000,16.6451,16.6454,0 +409,0.0000,0.0000,16.6773,16.6776,1 +410,0.0000,0.0000,16.6660,16.6664,0 +411,0.0000,0.0000,16.6791,16.6794,1 +412,0.0000,0.0000,16.6940,16.6943,1 +413,0.0000,0.0000,16.6342,16.6345,0 +414,0.0000,0.0000,16.6782,16.6785,1 +415,0.0000,0.0000,16.6860,16.6863,1 +416,0.0000,0.0000,16.6952,16.6954,1 +417,0.0000,0.0000,16.7416,16.7419,1 +418,0.0000,0.0000,16.5190,16.5193,0 +419,0.0000,0.0000,16.7258,16.7261,1 +420,0.0000,0.0000,16.6823,16.6826,1 +421,0.0000,0.0000,16.6281,16.6284,0 +422,0.0000,0.0000,16.7171,16.7174,1 +423,0.0000,0.0000,16.7262,16.7265,1 +424,0.0000,0.0000,16.6092,16.6095,0 +425,0.0000,0.0000,16.6517,16.6520,0 +426,0.0000,0.0000,16.6473,16.6476,0 +427,0.0000,0.0000,16.6677,16.6681,1 +428,0.0000,0.0000,16.6906,16.6910,1 +429,0.0000,0.0000,16.7450,16.7453,1 +430,0.0000,0.0000,16.7305,16.7308,1 +431,0.0000,0.0000,16.5593,16.5596,0 +432,0.0000,0.0000,16.6568,16.6572,0 +433,0.0000,0.0000,16.6759,16.6762,1 +434,0.0000,0.0000,16.6351,16.6354,0 +435,0.0000,0.0000,16.7425,16.7428,1 +436,0.0000,0.0000,16.6889,16.6892,1 +437,0.0000,0.0000,16.6063,16.6066,0 +438,0.0000,0.0000,16.6913,16.6916,1 +439,0.0000,0.0000,16.6225,16.6228,0 +440,0.0000,0.0000,16.6608,16.6611,0 +441,0.0000,0.0000,16.7054,16.7057,1 +442,0.0000,0.0000,16.6626,16.6629,0 +443,0.0000,0.0000,16.6847,16.6850,1 +444,0.0000,0.0000,16.7193,16.7196,1 +445,0.0000,0.0000,16.6218,16.6221,0 +446,0.0000,0.0000,16.6846,16.6849,1 +447,0.0000,0.0000,16.6854,16.6857,1 +448,0.0000,0.0000,16.6253,16.6256,0 +449,0.0000,0.0000,16.7094,16.7097,1 +450,0.0000,0.0000,16.6946,16.6949,1 +451,0.0000,0.0000,16.6199,16.6202,0 +452,0.0000,0.0000,16.6892,16.6895,1 +453,0.0000,0.0000,16.6486,16.6489,0 +454,0.0000,0.0000,16.7048,16.7051,1 +455,0.0000,0.0000,16.6556,16.6559,0 +456,0.0000,0.0000,16.6383,16.6386,0 +457,0.0000,0.0000,16.7259,16.7261,1 +458,0.0000,0.0000,16.6313,16.6316,0 +459,0.0000,0.0000,16.6830,16.6833,1 +460,0.0000,0.0000,16.6688,16.6691,1 +461,0.0000,0.0000,16.7303,16.7306,1 +462,0.0000,0.0000,16.5795,16.5798,0 +463,0.0000,0.0000,16.6011,16.6014,0 +464,0.0000,0.0000,16.6599,16.6602,0 +465,0.0000,0.0000,6.9841,6.9844,0 +466,0.0000,0.0000,9.7955,9.7958,0 +467,0.0000,0.0000,16.2962,16.2965,0 +468,0.0000,0.0000,8.0460,8.0463,0 +469,0.0000,0.0000,9.0232,9.0235,0 +470,0.0000,0.0000,16.6844,16.6847,1 +471,0.0000,0.0000,16.6736,16.6739,1 +472,0.0000,0.0000,16.6367,16.6371,0 +473,0.0000,0.0000,16.6537,16.6540,0 +474,0.0000,0.0000,16.6465,16.6468,0 +475,0.0000,0.0000,16.6740,16.6743,1 +476,0.0000,0.0000,16.6943,16.6947,1 +477,0.0000,0.0000,16.6833,16.6836,1 +478,0.0000,0.0000,16.6385,16.6388,0 +479,0.0000,0.0000,16.6510,16.6513,0 +480,0.0000,0.0000,16.6950,16.6952,1 +481,0.0000,0.0000,16.6553,16.6556,0 +482,0.0000,0.0000,16.6748,16.6751,1 +483,0.0000,0.0000,16.6796,16.6799,1 +484,0.0000,0.0000,16.7476,16.7479,1 +485,0.0000,0.0000,16.9144,16.9147,1 +486,0.0000,0.0000,16.3534,16.3537,0 +487,0.0000,0.0000,16.7081,16.7084,1 +488,0.0000,0.0000,16.6940,16.6943,1 +489,0.0000,0.0000,16.6470,16.6474,0 +490,0.0000,0.0000,16.6987,16.6990,1 +491,0.0000,0.0000,16.6229,16.6232,0 +492,0.0000,0.0000,16.6780,16.6783,1 +493,0.0000,0.0000,16.6532,16.6535,0 +494,0.0000,0.0000,16.7153,16.7156,1 +495,0.0000,0.0000,16.6414,16.6418,0 +496,0.0000,0.0000,16.6699,16.6702,1 +497,0.0000,0.0000,16.2829,16.2833,0 +498,0.0000,0.0000,7.3035,7.3038,0 +499,0.0000,0.0000,9.8398,9.8401,0 +500,0.0000,0.0000,16.6270,16.6273,0 +501,0.0000,0.0000,16.6190,16.6193,0 +502,0.0000,0.0000,16.6712,16.6715,1 +503,0.0000,0.0000,16.6685,16.6688,1 +504,0.0000,0.0000,16.6856,16.6859,1 +505,0.0000,0.0000,15.4918,15.4921,0 +506,0.0000,0.0000,16.6569,16.6571,0 +507,0.0000,0.0000,16.6372,16.6373,0 +508,0.0000,0.0000,16.7086,16.7087,1 +509,0.0000,0.0000,17.8680,17.8682,1 +510,0.0000,0.0000,16.6351,16.6353,0 +511,0.0000,0.0000,16.6843,16.6846,1 +512,0.0000,0.0000,16.7100,16.7103,1 +513,0.0000,0.0000,16.6380,16.6383,0 +514,0.0000,0.0000,16.7271,16.7274,1 +515,0.0000,0.0000,16.6565,16.6568,0 +516,0.0000,0.0000,16.8580,16.8583,1 +517,0.0000,0.0000,16.4936,16.4939,0 +518,0.0000,0.0000,16.6243,16.6246,0 +519,0.0000,0.0000,16.6960,16.6963,1 +520,0.0000,0.0000,16.6895,16.6898,1 +521,0.0000,0.0000,16.6893,16.6896,1 +522,0.0000,0.0000,16.6025,16.6028,0 +523,0.0000,0.0000,16.7205,16.7208,1 +524,0.0000,0.0000,16.6141,16.6144,0 +525,0.0000,0.0000,16.7112,16.7115,1 +526,0.0000,0.0000,16.6459,16.6462,0 +527,0.0000,0.0000,16.7074,16.7077,1 +528,0.0000,0.0000,16.6903,16.6906,1 +529,0.0000,0.0000,16.5780,16.5783,0 +530,0.0000,0.0000,16.7014,16.7017,1 +531,0.0000,0.0000,16.6614,16.6617,0 +532,0.0000,0.0000,16.6965,16.6968,1 +533,0.0000,0.0000,16.6383,16.6386,0 +534,0.0000,0.0000,16.6661,16.6664,0 +535,0.0000,0.0000,16.7036,16.7039,1 +536,0.0000,0.0000,16.6788,16.6791,1 +537,0.0000,0.0000,16.6207,16.6210,0 +538,0.0000,0.0000,16.6894,16.6896,1 +539,0.0000,0.0000,16.6539,16.6542,0 +540,0.0000,0.0000,16.6660,16.6663,0 +541,0.0000,0.0000,16.0675,16.0678,0 +542,0.0000,0.0000,7.5630,7.5633,0 +543,0.0000,0.0000,9.7977,9.7980,0 +544,0.0000,0.0000,16.6197,16.6200,0 +545,0.0000,0.0000,16.6743,16.6746,1 +546,0.0000,0.0000,16.6573,16.6576,0 +547,0.0000,0.0000,16.5880,16.5883,0 +548,0.0000,0.0000,7.0218,7.0221,0 +549,0.0000,0.0000,9.9577,9.9579,0 +550,0.0000,0.0000,16.4459,16.4462,0 +551,0.0000,0.0000,16.6432,16.6435,0 +552,0.0000,0.0000,16.6822,16.6825,1 +553,0.0000,0.0000,16.7064,16.7067,1 +554,0.0000,0.0000,16.6734,16.6737,1 +555,0.0000,0.0000,16.7383,16.7386,1 +556,0.0000,0.0000,16.5867,16.5871,0 +557,0.0000,0.0000,15.5389,15.5392,0 +558,0.0000,0.0000,16.6830,16.6832,1 +559,0.0000,0.0000,16.6366,16.6367,0 +560,0.0000,0.0000,16.6207,16.6209,0 +561,0.0000,0.0000,16.7196,16.7199,1 +562,0.0000,0.0000,16.6738,16.6739,1 +563,0.0000,0.0000,16.6501,16.6503,0 +564,0.0000,0.0000,16.6943,16.6945,1 +565,0.0000,0.0000,16.6724,16.6726,1 +566,0.0000,0.0000,16.6359,16.6361,0 +567,0.0000,0.0000,16.6534,16.6536,0 +568,0.0000,0.0000,16.6442,16.6443,0 +569,0.0000,0.0000,16.7457,16.7459,1 +570,0.0000,0.0000,16.6098,16.6100,0 +571,0.0000,0.0000,17.9028,17.9031,1 +572,0.0000,0.0000,16.6350,16.6353,0 +573,0.0000,0.0000,16.6637,16.6640,0 +574,0.0000,0.0000,16.6738,16.6741,1 +575,0.0000,0.0000,16.6776,16.6779,1 +576,0.0000,0.0000,16.6711,16.6714,1 +577,0.0000,0.0000,16.6871,16.6874,1 +578,0.0000,0.0000,16.7229,16.7232,1 +579,0.0000,0.0000,16.6593,16.6596,0 +580,0.0000,0.0000,16.6114,16.6117,0 +581,0.0000,0.0000,16.6892,16.6895,1 +582,0.0000,0.0000,16.6590,16.6593,0 +583,0.0000,0.0000,16.7124,16.7127,1 +584,0.0000,0.0000,15.2594,15.2597,0 +585,0.0000,0.0000,16.7060,16.7062,1 +586,0.0000,0.0000,18.0464,18.0466,1 +587,0.0000,0.0000,16.6409,16.6412,0 +588,0.0000,0.0000,16.6616,16.6620,0 +589,0.0000,0.0000,16.6727,16.6730,1 +590,0.0000,0.0000,16.7166,16.7169,1 +591,0.0000,0.0000,16.6238,16.6241,0 +592,0.0000,0.0000,16.6640,16.6643,0 +593,0.0000,0.0000,16.7231,16.7233,1 +594,0.0000,0.0000,16.6749,16.6752,1 +595,0.0000,0.0000,16.6654,16.6657,0 +596,0.0000,0.0000,16.6243,16.6246,0 +597,0.0000,0.0000,16.6473,16.6476,0 +598,0.0000,0.0000,16.6800,16.6803,1 +599,0.0000,0.0000,16.7286,16.7289,1 +600,0.0000,0.0000,16.7120,16.7123,1 +601,0.0000,0.0000,16.5990,16.5993,0 +602,0.0000,0.0000,16.3894,16.3897,0 +603,0.0000,0.0000,7.2874,7.2878,0 +604,0.0000,0.0000,9.7572,9.7575,0 +605,0.0000,0.0000,16.5814,16.5818,0 +606,0.0000,0.0000,16.6545,16.6548,0 +607,0.0000,0.0000,16.6632,16.6635,0 +608,0.0000,0.0000,16.6929,16.6932,1 +609,0.0000,0.0000,16.6901,16.6904,1 +610,0.0000,0.0000,16.6327,16.6330,0 +611,0.0000,0.0000,16.6603,16.6606,0 +612,0.0000,0.0000,16.7255,16.7258,1 +613,0.0000,0.0000,16.6001,16.6004,0 +614,0.0000,0.0000,16.6571,16.6574,0 +615,0.0000,0.0000,16.7086,16.7089,1 +616,0.0000,0.0000,16.6771,16.6774,1 +617,0.0000,0.0000,16.6799,16.6802,1 +618,0.0000,0.0000,16.6305,16.6308,0 +619,0.0000,0.0000,16.7429,16.7432,1 +620,0.0000,0.0000,16.6329,16.6332,0 +621,0.0000,0.0000,16.6718,16.6721,1 +622,0.0000,0.0000,16.6558,16.6561,0 +623,0.0000,0.0000,16.6573,16.6576,0 +624,0.0000,0.0000,16.6596,16.6599,0 +625,0.0000,0.0000,16.6960,16.6963,1 +626,0.0000,0.0000,16.7088,16.7091,1 +627,0.0000,0.0000,16.7384,16.7387,1 +628,0.0000,0.0000,16.6157,16.6160,0 +629,0.0000,0.0000,16.6374,16.6377,0 +630,0.0000,0.0000,16.6484,16.6487,0 +631,0.0000,0.0000,16.7434,16.7437,1 +632,0.0000,0.0000,16.6242,16.6245,0 +633,0.0000,0.0000,16.7317,16.7320,1 +634,0.0000,0.0000,16.5982,16.5985,0 +635,0.0000,0.0000,16.6541,16.6544,0 +636,0.0000,0.0000,16.6780,16.6783,1 +637,0.0000,0.0000,16.6753,16.6755,1 +638,0.0000,0.0000,16.7115,16.7119,1 +639,0.0000,0.0000,16.6446,16.6449,0 +640,0.0000,0.0000,16.6985,16.6989,1 +641,0.0000,0.0000,16.6323,16.6326,0 +642,0.0000,0.0000,16.6487,16.6491,0 +643,0.0000,0.0000,16.7014,16.7017,1 +644,0.0000,0.0000,16.7245,16.7248,1 +645,0.0000,0.0000,16.6692,16.6696,1 +646,0.0000,0.0000,16.6909,16.6912,1 +647,0.0000,0.0000,16.6222,16.6225,0 +648,0.0000,0.0000,16.6475,16.6478,0 +649,0.0000,0.0000,16.6708,16.6711,1 +650,0.0000,0.0000,16.6640,16.6643,0 +651,0.0000,0.0000,16.7392,16.7395,1 +652,0.0000,0.0000,16.6548,16.6551,0 +653,0.0000,0.0000,16.6089,16.6092,0 +654,0.0000,0.0000,16.6599,16.6603,0 +655,0.0000,0.0000,16.7090,16.7093,1 +656,0.0000,0.0000,16.6653,16.6656,0 +657,0.0000,0.0000,16.8351,16.8354,1 +658,0.0000,0.0000,16.6106,16.6109,0 +659,0.0000,0.0000,16.5679,16.5682,0 +660,0.0000,0.0000,16.5197,16.5200,0 +661,0.0000,0.0000,7.1185,7.1188,0 +662,0.0000,0.0000,9.7042,9.7045,0 +663,0.0000,0.0000,16.7015,16.7018,1 +664,0.0000,0.0000,16.7048,16.7051,1 +665,0.0000,0.0000,16.5773,16.5776,0 +666,0.0000,0.0000,17.0865,17.0868,1 +667,0.0000,0.0000,16.4466,16.4469,0 +668,0.0000,0.0000,16.4829,16.4832,0 +669,0.0000,0.0000,16.7154,16.7157,1 +670,0.0000,0.0000,16.7181,16.7184,1 +671,0.0000,0.0000,16.6268,16.6271,0 +672,0.0000,0.0000,16.6144,16.6147,0 +673,0.0000,0.0000,16.6680,16.6683,1 +674,0.0000,0.0000,16.7020,16.7023,1 +675,0.0000,0.0000,16.6636,16.6639,0 +676,0.0000,0.0000,16.3667,16.3670,0 +677,0.0000,0.0000,7.2721,7.2724,0 +678,0.0000,0.0000,9.7481,9.7484,0 +679,0.0000,0.0000,16.6324,16.6327,0 +680,0.0000,0.0000,16.6372,16.6376,0 +681,0.0000,0.0000,16.7716,16.7719,1 +682,0.0000,0.0000,16.7020,16.7023,1 +683,0.0000,0.0000,16.5914,16.5917,0 +684,0.0000,0.0000,16.6417,16.6420,0 +685,0.0000,0.0000,16.7281,16.7284,1 +686,0.0000,0.0000,16.5944,16.5947,0 +687,0.0000,0.0000,16.6408,16.6411,0 +688,0.0000,0.0000,16.7225,16.7228,1 +689,0.0000,0.0000,16.6537,16.6540,0 +690,0.0000,0.0000,16.6595,16.6598,0 +691,0.0000,0.0000,16.7348,16.7351,1 +692,0.0000,0.0000,16.6414,16.6417,0 +693,0.0000,0.0000,16.6497,16.6500,0 +694,0.0000,0.0000,16.7171,16.7173,1 +695,0.0000,0.0000,16.6395,16.6398,0 +696,0.0000,0.0000,16.7412,16.7415,1 +697,0.0000,0.0000,16.9054,16.9057,1 +698,0.0000,0.0000,16.4160,16.4163,0 +699,0.0000,0.0000,16.6062,16.6065,0 +700,0.0000,0.0000,16.6505,16.6508,0 +701,0.0000,0.0000,16.6512,16.6515,0 +702,0.0000,0.0000,16.8242,16.8245,1 +703,0.0000,0.0000,16.5783,16.5786,0 +704,0.0000,0.0000,16.6441,16.6444,0 +705,0.0000,0.0000,16.6400,16.6403,0 +706,0.0000,0.0000,16.7307,16.7310,1 +707,0.0000,0.0000,16.7103,16.7106,1 +708,0.0000,0.0000,16.6139,16.6142,0 +709,0.0000,0.0000,16.7289,16.7292,1 +710,0.0000,0.0000,16.5859,16.5862,0 +711,0.0000,0.0000,16.7092,16.7095,1 +712,0.0000,0.0000,16.6612,16.6615,0 +713,0.0000,0.0000,16.6951,16.6954,1 +714,0.0000,0.0000,16.6239,16.6242,0 +715,0.0000,0.0000,16.7024,16.7027,1 +716,0.0000,0.0000,16.6440,16.6443,0 +717,0.0000,0.0000,16.6975,16.6978,1 +718,0.0000,0.0000,16.6203,16.6206,0 +719,0.0000,0.0000,16.7174,16.7177,1 +720,0.0000,0.0000,16.6512,16.6515,0 +721,0.0000,0.0000,16.6838,16.6841,1 +722,0.0000,0.0000,16.8835,16.8838,1 +723,0.0000,0.0000,16.5356,16.5359,0 +724,0.0000,0.0000,16.6310,16.6313,0 +725,0.0000,0.0000,16.6365,16.6368,0 +726,0.0000,0.0000,16.6598,16.6601,0 +727,0.0000,0.0000,16.6750,16.6753,1 +728,0.0000,0.0000,16.6341,16.6343,0 +729,0.0000,0.0000,16.7118,16.7121,1 +730,0.0000,0.0000,16.6745,16.6748,1 +731,0.0000,0.0000,16.6930,16.6933,1 +732,0.0000,0.0000,16.7343,16.7346,1 +733,0.0000,0.0000,16.6645,16.6648,0 +734,0.0000,0.0000,16.5767,16.5770,0 +735,0.0000,0.0000,16.6562,16.6565,0 +736,0.0000,0.0000,16.6665,16.6668,1 +737,0.0000,0.0000,16.7015,16.7018,1 +738,0.0000,0.0000,16.6587,16.6591,0 +739,0.0000,0.0000,16.6747,16.6750,1 +740,0.0000,0.0000,16.6759,16.6762,1 +741,0.0000,0.0000,16.7825,16.7828,1 +742,0.0000,0.0000,16.5549,16.5552,0 +743,0.0000,0.0000,16.6685,16.6687,1 +744,0.0000,0.0000,16.6932,16.6935,1 +745,0.0000,0.0000,17.0081,17.0084,1 +746,0.0000,0.0000,16.4207,16.4210,0 +747,0.0000,0.0000,16.6058,16.6061,0 +748,0.0000,0.0000,16.6271,16.6274,0 +749,0.0000,0.0000,16.7680,16.7683,1 +750,0.0000,0.0000,6.8963,6.8966,0 +751,0.0000,0.0000,9.8814,9.8817,0 +752,0.0000,0.0000,16.4945,16.4948,0 +753,0.0000,0.0000,16.7070,16.7073,1 +754,0.0000,0.0000,16.6056,16.6059,0 +755,0.0000,0.0000,16.6571,16.6574,0 +756,0.0000,0.0000,16.6827,16.6830,1 +757,0.0000,0.0000,16.7094,16.7097,1 +758,0.0000,0.0000,16.6412,16.6415,0 +759,0.0000,0.0000,16.6280,16.6283,0 +760,0.0000,0.0000,6.9617,6.9620,0 +761,0.0000,0.0000,9.8455,9.8459,0 +762,0.0000,0.0000,16.6244,16.6247,0 +763,0.0000,0.0000,16.6049,16.6052,0 +764,0.0000,0.0000,16.7156,16.7159,1 +765,0.0000,0.0000,16.6428,16.6431,0 +766,0.0000,0.0000,16.6597,16.6600,0 +767,0.0000,0.0000,16.6750,16.6753,1 +768,0.0000,0.0000,16.6639,16.6642,0 +769,0.0000,0.0000,16.6919,16.6922,1 +770,0.0000,0.0000,16.7539,16.7542,1 +771,0.0000,0.0000,16.6308,16.6311,0 +772,0.0000,0.0000,16.5889,16.5891,0 +773,0.0000,0.0000,16.7139,16.7142,1 +774,0.0000,0.0000,16.6442,16.6445,0 +775,0.0000,0.0000,16.6968,16.6971,1 +776,0.0000,0.0000,16.6921,16.6924,1 +777,0.0000,0.0000,16.6746,16.6749,1 +778,0.0000,0.0000,16.6231,16.6234,0 +779,0.0000,0.0000,16.3528,16.3531,0 +780,0.0000,0.0000,7.3391,7.3394,0 +781,0.0000,0.0000,9.7954,9.7957,0 +782,0.0000,0.0000,16.5162,16.5165,0 +783,0.0000,0.0000,16.7059,16.7062,1 +784,0.0000,0.0000,16.6287,16.6290,0 +785,0.0000,0.0000,16.7042,16.7045,1 +786,0.0000,0.0000,16.6495,16.6498,0 +787,0.0000,0.0000,16.6557,16.6560,0 +788,0.0000,0.0000,16.6517,16.6520,0 +789,0.0000,0.0000,16.6781,16.6785,1 +790,0.0000,0.0000,16.6926,16.6929,1 +791,0.0000,0.0000,16.6717,16.6720,1 +792,0.0000,0.0000,16.6644,16.6647,0 +793,0.0000,0.0000,16.7509,16.7512,1 +794,0.0000,0.0000,16.7309,16.7312,1 +795,0.0000,0.0000,16.5424,16.5427,0 +796,0.0000,0.0000,16.6605,16.6607,0 +797,0.0000,0.0000,16.4067,16.4070,0 +798,0.0000,0.0000,7.0070,7.0073,0 +799,0.0000,0.0000,10.0831,10.0834,0 +800,0.0000,0.0000,16.5750,16.5753,0 +801,0.0000,0.0000,16.6054,16.6057,0 +802,0.0000,0.0000,16.6436,16.6439,0 +803,0.0000,0.0000,16.7251,16.7254,1 +804,0.0000,0.0000,16.6424,16.6427,0 +805,0.0000,0.0000,16.6699,16.6702,1 +806,0.0000,0.0000,16.6834,16.6837,1 +807,0.0000,0.0000,16.6539,16.6542,0 +808,0.0000,0.0000,16.6543,16.6547,0 +809,0.0000,0.0000,16.7679,16.7682,1 +810,0.0000,0.0000,16.8510,16.8513,1 +811,0.0000,0.0000,16.7043,16.7046,1 +812,0.0000,0.0000,16.4347,16.4350,0 +813,0.0000,0.0000,16.6010,16.6013,0 +814,0.0000,0.0000,16.6982,16.6985,1 +815,0.0000,0.0000,16.6722,16.6725,1 +816,0.0000,0.0000,16.7324,16.7327,1 +817,0.0000,0.0000,16.6554,16.6557,0 +818,0.0000,0.0000,16.6031,16.6034,0 +819,0.0000,0.0000,16.3473,16.3476,0 +820,0.0000,0.0000,7.1546,7.1549,0 +821,0.0000,0.0000,9.9304,9.9307,0 +822,0.0000,0.0000,16.5846,16.5849,0 +823,0.0000,0.0000,16.7178,16.7181,1 +824,0.0000,0.0000,16.6484,16.6487,0 +825,0.0000,0.0000,16.7138,16.7141,1 +826,0.0000,0.0000,16.6477,16.6480,0 +827,0.0000,0.0000,16.7083,16.7086,1 +828,0.0000,0.0000,16.5816,16.5820,0 +829,0.0000,0.0000,16.8710,16.8713,1 +830,0.0000,0.0000,16.4923,16.4926,0 +831,0.0000,0.0000,16.6812,16.6815,1 +832,0.0000,0.0000,16.6463,16.6466,0 +833,0.0000,0.0000,16.6634,16.6637,0 +834,0.0000,0.0000,16.9839,16.9842,1 +835,0.0000,0.0000,16.3599,16.3602,0 +836,0.0000,0.0000,16.6993,16.6996,1 +837,0.0000,0.0000,16.6978,16.6981,1 +838,0.0000,0.0000,16.7120,16.7123,1 +839,0.0000,0.0000,16.6205,16.6208,0 +840,0.0000,0.0000,16.6387,16.6390,0 +841,0.0000,0.0000,16.7890,16.7893,1 +842,0.0000,0.0000,16.5851,16.5854,0 +843,0.0000,0.0000,16.6703,16.6706,1 +844,0.0000,0.0000,16.6444,16.6447,0 +845,0.0000,0.0000,16.6533,16.6536,0 +846,0.0000,0.0000,16.7001,16.7004,1 +847,0.0000,0.0000,16.6910,16.6913,1 +848,0.0000,0.0000,16.6263,16.6266,0 +849,0.0000,0.0000,16.7069,16.7072,1 +850,0.0000,0.0000,16.6283,16.6286,0 +851,0.0000,0.0000,16.7059,16.7062,1 +852,0.0000,0.0000,16.7030,16.7033,1 +853,0.0000,0.0000,16.6121,16.6124,0 +854,0.0000,0.0000,16.7114,16.7117,1 +855,0.0000,0.0000,16.6478,16.6481,0 +856,0.0000,0.0000,16.7123,16.7126,1 +857,0.0000,0.0000,16.6509,16.6512,0 +858,0.0000,0.0000,16.6432,16.6434,0 +859,0.0000,0.0000,16.7731,16.7734,1 +860,0.0000,0.0000,16.5743,16.5746,0 +861,0.0000,0.0000,16.6900,16.6903,1 +862,0.0000,0.0000,16.6535,16.6538,0 +863,0.0000,0.0000,16.7413,16.7416,1 +864,0.0000,0.0000,16.6322,16.6326,0 +865,0.0000,0.0000,16.6360,16.6363,0 +866,0.0000,0.0000,16.6773,16.6776,1 +867,0.0000,0.0000,16.6383,16.6386,0 +868,0.0000,0.0000,7.0588,7.0592,0 +869,0.0000,0.0000,9.7046,9.7048,0 +870,0.0000,0.0000,16.5849,16.5852,0 +871,0.0000,0.0000,16.6571,16.6574,0 +872,0.0000,0.0000,16.7631,16.7634,1 +873,0.0000,0.0000,15.4425,15.4427,0 +874,0.0000,0.0000,16.6151,16.6152,0 +875,0.0000,0.0000,16.7058,16.7059,1 +876,0.0000,0.0000,16.6621,16.6622,0 +877,0.0000,0.0000,17.8548,17.8550,1 +878,0.0000,0.0000,16.7055,16.7058,1 +879,0.0000,0.0000,16.6269,16.6272,0 +880,0.0000,0.0000,16.7091,16.7094,1 +881,0.0000,0.0000,16.6680,16.6683,1 +882,0.0000,0.0000,16.6690,16.6693,1 +883,0.0000,0.0000,16.4603,16.4606,0 +884,0.0000,0.0000,7.1593,7.1596,0 +885,0.0000,0.0000,9.7492,9.7495,0 +886,0.0000,0.0000,16.6520,16.6523,0 +887,0.0000,0.0000,16.6537,16.6540,0 +888,0.0000,0.0000,16.5989,16.5993,0 +889,0.0000,0.0000,7.0064,7.0067,0 +890,0.0000,0.0000,9.8537,9.8540,0 +891,0.0000,0.0000,16.5977,16.5980,0 +892,0.0000,0.0000,16.6121,16.6124,0 +893,0.0000,0.0000,16.7076,16.7079,1 +894,0.0000,0.0000,16.6341,16.6344,0 +895,0.0000,0.0000,16.6681,16.6685,1 +896,0.0000,0.0000,16.6511,16.6514,0 +897,0.0000,0.0000,16.6631,16.6634,0 +898,0.0000,0.0000,16.6554,16.6557,0 +899,0.0000,0.0000,16.7137,16.7140,1 +900,0.0000,0.0000,16.6851,16.6854,1 +901,0.0000,0.0000,16.6971,16.6974,1 +902,0.0000,0.0000,16.6864,16.6867,1 +903,0.0000,0.0000,16.6024,16.6027,0 +904,0.0000,0.0000,16.3871,16.3874,0 +905,0.0000,0.0000,7.2187,7.2190,0 +906,0.0000,0.0000,9.8918,9.8921,0 +907,0.0000,0.0000,16.5920,16.5924,0 +908,0.0000,0.0000,16.5686,16.5690,0 +909,0.0000,0.0000,16.7402,16.7405,1 +910,0.0000,0.0000,16.6223,16.6226,0 +911,0.0000,0.0000,16.5950,16.5953,0 +912,0.0000,0.0000,16.7768,16.7771,1 +913,0.0000,0.0000,16.6595,16.6598,0 +914,0.0000,0.0000,16.6515,16.6518,0 +915,0.0000,0.0000,16.6824,16.6827,1 +916,0.0000,0.0000,16.6705,16.6708,1 +917,0.0000,0.0000,16.6608,16.6611,0 +918,0.0000,0.0000,16.6657,16.6660,0 +919,0.0000,0.0000,16.7521,16.7524,1 +920,0.0000,0.0000,16.6303,16.6306,0 +921,0.0000,0.0000,17.0273,17.0276,1 +922,0.0000,0.0000,16.3674,16.3677,0 +923,0.0000,0.0000,16.6101,16.6104,0 +924,0.0000,0.0000,16.6638,16.6641,0 +925,0.0000,0.0000,16.6741,16.6744,1 +926,0.0000,0.0000,16.6617,16.6620,0 +927,0.0000,0.0000,16.6870,16.6873,1 +928,0.0000,0.0000,16.6509,16.6512,0 +929,0.0000,0.0000,16.7793,16.7796,1 +930,0.0000,0.0000,16.7000,16.7003,1 +931,0.0000,0.0000,16.6367,16.6370,0 +932,0.0000,0.0000,16.5814,16.5817,0 +933,0.0000,0.0000,15.2898,15.2901,0 +934,0.0000,0.0000,16.6567,16.6569,0 +935,0.0000,0.0000,16.6757,16.6759,1 +936,0.0000,0.0000,16.6188,16.6190,0 +937,0.0000,0.0000,16.7893,16.7894,1 +938,0.0000,0.0000,16.6245,16.6247,0 +939,0.0000,0.0000,16.6810,16.6811,1 +940,0.0000,0.0000,16.6478,16.6479,0 +941,0.0000,0.0000,18.0325,18.0328,1 +942,0.0000,0.0000,16.7697,16.7700,1 +943,0.0000,0.0000,16.6079,16.6082,0 +944,0.0000,0.0000,16.6450,16.6453,0 +945,0.0000,0.0000,16.6781,16.6784,1 +946,0.0000,0.0000,16.6595,16.6598,0 +947,0.0000,0.0000,16.6628,16.6631,0 +948,0.0000,0.0000,16.6998,16.7001,1 +949,0.0000,0.0000,16.7219,16.7222,1 +950,0.0000,0.0000,16.6169,16.6172,0 +951,0.0000,0.0000,16.6697,16.6700,1 +952,0.0000,0.0000,16.6835,16.6838,1 +953,0.0000,0.0000,16.6422,16.6425,0 +954,0.0000,0.0000,16.6438,16.6441,0 +955,0.0000,0.0000,16.7243,16.7246,1 +956,0.0000,0.0000,16.6726,16.6729,1 +957,0.0000,0.0000,16.6023,16.6026,0 +958,0.0000,0.0000,16.7597,16.7600,1 +959,0.0000,0.0000,16.6756,16.6759,1 +960,0.0000,0.0000,16.6051,16.6054,0 +961,0.0000,0.0000,16.7096,16.7099,1 +962,0.0000,0.0000,16.6401,16.6404,0 +963,0.0000,0.0000,16.6962,16.6965,1 +964,0.0000,0.0000,16.6589,16.6592,0 +965,0.0000,0.0000,16.6520,16.6524,0 +966,0.0000,0.0000,16.6850,16.6853,1 +967,0.0000,0.0000,16.6862,16.6865,1 +968,0.0000,0.0000,16.6701,16.6704,1 +969,0.0000,0.0000,16.6295,16.6298,0 +970,0.0000,0.0000,16.6744,16.6747,1 +971,0.0000,0.0000,16.6426,16.6429,0 +972,0.0000,0.0000,6.9985,6.9988,0 +973,0.0000,0.0000,9.7591,9.7594,0 +974,0.0000,0.0000,16.6332,16.6335,0 +975,0.0000,0.0000,16.6570,16.6574,0 +976,0.0000,0.0000,16.7648,16.7652,1 +977,0.0000,0.0000,16.5920,16.5923,0 +978,0.0000,0.0000,16.6603,16.6606,0 +979,0.0000,0.0000,16.6532,16.6535,0 +980,0.0000,0.0000,16.6868,16.6870,1 +981,0.0000,0.0000,16.6624,16.6627,0 +982,0.0000,0.0000,16.7295,16.7298,1 +983,0.0000,0.0000,16.6386,16.6389,0 +984,0.0000,0.0000,16.6716,16.6719,1 +985,0.0000,0.0000,16.6381,16.6384,0 +986,0.0000,0.0000,16.6728,16.6731,1 +987,0.0000,0.0000,16.7605,16.7608,1 +988,0.0000,0.0000,16.6257,16.6260,0 +989,0.0000,0.0000,16.6724,16.6727,1 +990,0.0000,0.0000,16.6465,16.6468,0 +991,0.0000,0.0000,16.6960,16.6963,1 +992,0.0000,0.0000,16.6687,16.6690,1 +993,0.0000,0.0000,16.6448,16.6452,0 +994,0.0000,0.0000,16.6521,16.6524,0 +995,0.0000,0.0000,16.6525,16.6527,0 +996,0.0000,0.0000,16.6794,16.6797,1 +997,0.0000,0.0000,16.6794,16.6797,1 +998,0.0000,0.0000,16.7024,16.7027,1 +999,0.0000,0.0000,16.6764,16.6767,1 +1000,0.0000,0.0000,16.6713,16.6716,1 +1001,0.0000,0.0000,16.7000,16.7003,1 +1002,0.0000,0.0000,16.6566,16.6569,0 +1003,0.0000,0.0000,16.6366,16.6370,0 +1004,0.0000,0.0000,16.6553,16.6556,0 +1005,0.0000,0.0000,15.1448,15.1451,0 +1006,0.0000,0.0000,16.6271,16.6273,0 +1007,0.0000,0.0000,18.2702,18.2705,1 +1008,0.0000,0.0000,16.6454,16.6457,0 +1009,0.0000,0.0000,16.6757,16.6760,1 +1010,0.0000,0.0000,16.6905,16.6908,1 +1011,0.0000,0.0000,16.7708,16.7711,1 +1012,0.0000,0.0000,16.5917,16.5920,0 +1013,0.0000,0.0000,16.6621,16.6624,0 +1014,0.0000,0.0000,16.6589,16.6592,0 +1015,0.0000,0.0000,16.6480,16.6483,0 +1016,0.0000,0.0000,16.5821,16.5824,0 +1017,0.0000,0.0000,7.1686,7.1689,0 +1018,0.0000,0.0000,9.6447,9.6450,0 +1019,0.0000,0.0000,16.7293,16.7296,1 +1020,0.0000,0.0000,16.6482,16.6485,0 +1021,0.0000,0.0000,16.6447,16.6450,0 +1022,0.0000,0.0000,16.6922,16.6925,1 +1023,0.0000,0.0000,16.6307,16.6310,0 +1024,0.0000,0.0000,16.6801,16.6804,1 +1025,0.0000,0.0000,16.6536,16.6539,0 +1026,0.0000,0.0000,16.6399,16.6402,0 +1027,0.0000,0.0000,16.6715,16.6718,1 +1028,0.0000,0.0000,15.2919,15.2921,0 +1029,0.0000,0.0000,16.7365,16.7367,1 +1030,0.0000,0.0000,18.0093,18.0095,1 +1031,0.0000,0.0000,16.7329,16.7332,1 +1032,0.0000,0.0000,16.4407,16.4410,0 +1033,0.0000,0.0000,7.1844,7.1847,0 +1034,0.0000,0.0000,9.7795,9.7798,0 +1035,0.0000,0.0000,16.5499,16.5502,0 +1036,0.0000,0.0000,16.6463,16.6466,0 +1037,0.0000,0.0000,16.7007,16.7010,1 +1038,0.0000,0.0000,16.6116,16.6119,0 +1039,0.0000,0.0000,16.6864,16.6867,1 +1040,0.0000,0.0000,16.6329,16.6331,0 +1041,0.0000,0.0000,16.6952,16.6955,1 +1042,0.0000,0.0000,16.6929,16.6932,1 +1043,0.0000,0.0000,16.6406,16.6409,0 +1044,0.0000,0.0000,16.6841,16.6844,1 +1045,0.0000,0.0000,16.6648,16.6651,0 +1046,0.0000,0.0000,16.8269,16.8272,1 +1047,0.0000,0.0000,16.5716,16.5719,0 +1048,0.0000,0.0000,16.6259,16.6262,0 +1049,0.0000,0.0000,16.7520,16.7523,1 +1050,0.0000,0.0000,16.7008,16.7011,1 +1051,0.0000,0.0000,16.5768,16.5771,0 +1052,0.0000,0.0000,16.7215,16.7218,1 +1053,0.0000,0.0000,16.7275,16.7278,1 +1054,0.0000,0.0000,16.6324,16.6327,0 +1055,0.0000,0.0000,16.6739,16.6742,1 +1056,0.0000,0.0000,16.6333,16.6336,0 +1057,0.0000,0.0000,16.6065,16.6068,0 +1058,0.0000,0.0000,16.7665,16.7668,1 +1059,0.0000,0.0000,16.5888,16.5891,0 +1060,0.0000,0.0000,16.6682,16.6685,1 +1061,0.0000,0.0000,16.6644,16.6647,0 +1062,0.0000,0.0000,16.6855,16.6858,1 +1063,0.0000,0.0000,16.6846,16.6849,1 +1064,0.0000,0.0000,16.6617,16.6620,0 +1065,0.0000,0.0000,16.7085,16.7088,1 +1066,0.0000,0.0000,16.6321,16.6324,0 +1067,0.0000,0.0000,16.7496,16.7499,1 +1068,0.0000,0.0000,16.5422,16.5425,0 +1069,0.0000,0.0000,16.7696,16.7699,1 +1070,0.0000,0.0000,16.6946,16.6950,1 +1071,0.0000,0.0000,16.6214,16.6217,0 +1072,0.0000,0.0000,16.6887,16.6890,1 +1073,0.0000,0.0000,16.6321,16.6324,0 +1074,0.0000,0.0000,16.6212,16.6215,0 +1075,0.0000,0.0000,16.8075,16.8078,1 +1076,0.0000,0.0000,16.6507,16.6510,0 +1077,0.0000,0.0000,16.5984,16.5987,0 +1078,0.0000,0.0000,16.6732,16.6735,1 +1079,0.0000,0.0000,16.6676,16.6679,1 +1080,0.0000,0.0000,16.7241,16.7244,1 +1081,0.0000,0.0000,16.6498,16.6501,0 +1082,0.0000,0.0000,16.7357,16.7360,1 +1083,0.0000,0.0000,16.6625,16.6628,0 +1084,0.0000,0.0000,16.5960,16.5963,0 +1085,0.0000,0.0000,16.6550,16.6553,0 +1086,0.0000,0.0000,16.6842,16.6845,1 +1087,0.0000,0.0000,16.7333,16.7336,1 +1088,0.0000,0.0000,16.6032,16.6035,0 +1089,0.0000,0.0000,16.6867,16.6870,1 +1090,0.0000,0.0000,16.6591,16.6594,0 +1091,0.0000,0.0000,16.6373,16.6376,0 +1092,0.0000,0.0000,16.6942,16.6945,1 +1093,0.0000,0.0000,16.6680,16.6683,1 +1094,0.0000,0.0000,16.6712,16.6715,1 +1095,0.0000,0.0000,16.7145,16.7148,1 +1096,0.0000,0.0000,16.6515,16.6518,0 +1097,0.0000,0.0000,16.6772,16.6775,1 +1098,0.0000,0.0000,16.6822,16.6825,1 +1099,0.0000,0.0000,16.7537,16.7539,1 +1100,0.0000,0.0000,16.5061,16.5064,0 +1101,0.0000,0.0000,16.7105,16.7108,1 +1102,0.0000,0.0000,16.6738,16.6741,1 +1103,0.0000,0.0000,16.6490,16.6493,0 +1104,0.0000,0.0000,16.6701,16.6705,1 +1105,0.0000,0.0000,16.8646,16.8649,1 +1106,0.0000,0.0000,16.6122,16.6125,0 +1107,0.0000,0.0000,16.6567,16.6570,0 +1108,0.0000,0.0000,16.6003,16.6006,0 +1109,0.0000,0.0000,16.6357,16.6360,0 +1110,0.0000,0.0000,16.6972,16.6975,1 +1111,0.0000,0.0000,16.6524,16.6527,0 +1112,0.0000,0.0000,16.8461,16.8464,1 +1113,0.0000,0.0000,16.6803,16.6806,1 +1114,0.0000,0.0000,16.5108,16.5111,0 +1115,0.0000,0.0000,16.6345,16.6348,0 +1116,0.0000,0.0000,16.7014,16.7017,1 +1117,0.0000,0.0000,16.6557,16.6560,0 +1118,0.0000,0.0000,16.7666,16.7669,1 +1119,0.0000,0.0000,16.6708,16.6711,1 +1120,0.0000,0.0000,16.5893,16.5896,0 +1121,0.0000,0.0000,15.4807,15.4810,0 +1122,0.0000,0.0000,16.6497,16.6499,0 +1123,0.0000,0.0000,16.6678,16.6680,1 +1124,0.0000,0.0000,16.6541,16.6542,0 +1125,0.0000,0.0000,16.7064,16.7065,1 +1126,0.0000,0.0000,16.6038,16.6040,0 +1127,0.0000,0.0000,7.8746,7.8749,0 +1128,0.0000,0.0000,10.0665,10.0668,0 +1129,0.0000,0.0000,16.6111,16.6114,0 +1130,0.0000,0.0000,16.6780,16.6784,1 +1131,0.0000,0.0000,16.7831,16.7834,1 +1132,0.0000,0.0000,16.5931,16.5934,0 +1133,0.0000,0.0000,16.6533,16.6536,0 +1134,0.0000,0.0000,16.6609,16.6612,0 +1135,0.0000,0.0000,16.7390,16.7393,1 +1136,0.0000,0.0000,16.5931,16.5934,0 +1137,0.0000,0.0000,16.7047,16.7050,1 +1138,0.0000,0.0000,16.6718,16.6721,1 +1139,0.0000,0.0000,16.6523,16.6526,0 +1140,0.0000,0.0000,16.6712,16.6715,1 +1141,0.0000,0.0000,16.3619,16.3622,0 +1142,0.0000,0.0000,7.3678,7.3681,0 +1143,0.0000,0.0000,9.6787,9.6790,0 +1144,0.0000,0.0000,16.7740,16.7743,1 +1145,0.0000,0.0000,16.5399,16.5402,0 +1146,0.0000,0.0000,16.6965,16.6968,1 +1147,0.0000,0.0000,16.6170,16.6173,0 +1148,0.0000,0.0000,16.6446,16.6450,0 +1149,0.0000,0.0000,16.6613,16.6616,0 +1150,0.0000,0.0000,16.7384,16.7387,1 +1151,0.0000,0.0000,16.8107,16.8110,1 +1152,0.0000,0.0000,16.5818,16.5821,0 +1153,0.0000,0.0000,16.6298,16.6301,0 +1154,0.0000,0.0000,15.2610,15.2613,0 +1155,0.0000,0.0000,16.6450,16.6451,0 +1156,0.0000,0.0000,18.0385,18.0387,1 +1157,0.0000,0.0000,16.7482,16.7485,1 +1158,0.0000,0.0000,16.6246,16.6249,0 +1159,0.0000,0.0000,16.6481,16.6484,0 +1160,0.0000,0.0000,16.7060,16.7063,1 +1161,0.0000,0.0000,16.6479,16.6482,0 +1162,0.0000,0.0000,16.6552,16.6555,0 +1163,0.0000,0.0000,16.7775,16.7778,1 +1164,0.0000,0.0000,16.5997,16.6000,0 +1165,0.0000,0.0000,16.8525,16.8528,1 +1166,0.0000,0.0000,16.7008,16.7011,1 +1167,0.0000,0.0000,16.6308,16.6311,0 +1168,0.0000,0.0000,16.5075,16.5078,0 +1169,0.0000,0.0000,16.7328,16.7331,1 +1170,0.0000,0.0000,16.5895,16.5898,0 +1171,0.0000,0.0000,16.7222,16.7225,1 +1172,0.0000,0.0000,16.6153,16.6156,0 +1173,0.0000,0.0000,16.6564,16.6568,0 +1174,0.0000,0.0000,16.4493,16.4496,0 +1175,0.0000,0.0000,7.1628,7.1631,0 +1176,0.0000,0.0000,9.8977,9.8980,0 +1177,0.0000,0.0000,16.5280,16.5283,0 +1178,0.0000,0.0000,16.6597,16.6600,0 +1179,0.0000,0.0000,16.6532,16.6535,0 +1180,0.0000,0.0000,16.6538,16.6541,0 +1181,0.0000,0.0000,16.6714,16.6717,1 +1182,0.0000,0.0000,16.7179,16.7182,1 +1183,0.0000,0.0000,16.6848,16.6851,1 +1184,0.0000,0.0000,16.6559,16.6562,0 +1185,0.0000,0.0000,16.6559,16.6562,0 +1186,0.0000,0.0000,16.6673,16.6676,1 +1187,0.0000,0.0000,16.6547,16.6550,0 +1188,0.0000,0.0000,16.6823,16.6826,1 +1189,0.0000,0.0000,16.7585,16.7588,1 +1190,0.0000,0.0000,16.6175,16.6178,0 +1191,0.0000,0.0000,16.5858,16.5861,0 +1192,0.0000,0.0000,7.0507,7.0510,0 +1193,0.0000,0.0000,9.7683,9.7686,0 +1194,0.0000,0.0000,16.5581,16.5584,0 +1195,0.0000,0.0000,16.7362,16.7365,1 +1196,0.0000,0.0000,16.6691,16.6694,1 +1197,0.0000,0.0000,16.6743,16.6746,1 +1198,0.0000,0.0000,15.3972,15.3974,0 +1199,0.0000,0.0000,16.5144,16.5146,0 +1200,0.0000,0.0000,18.0408,18.0410,1 +1201,0.0000,0.0000,16.6465,16.6468,0 +1202,0.0000,0.0000,16.7838,16.7841,1 +1203,0.0000,0.0000,16.6009,16.6012,0 +1204,0.0000,0.0000,16.6745,16.6748,1 +1205,0.0000,0.0000,16.7339,16.7342,1 +1206,0.0000,0.0000,16.5947,16.5950,0 +1207,0.0000,0.0000,16.6471,16.6474,0 +1208,0.0000,0.0000,16.7252,16.7255,1 +1209,0.0000,0.0000,16.6525,16.6528,0 +1210,0.0000,0.0000,16.6587,16.6590,0 +1211,0.0000,0.0000,16.4410,16.4413,0 +1212,0.0000,0.0000,7.3129,7.3132,0 +1213,0.0000,0.0000,9.6139,9.6142,0 +1214,0.0000,0.0000,16.7093,16.7096,1 +1215,0.0000,0.0000,16.7540,16.7543,1 +1216,0.0000,0.0000,16.5544,16.5547,0 +1217,0.0000,0.0000,16.6649,16.6652,0 +1218,0.0000,0.0000,16.6306,16.6309,0 +1219,0.0000,0.0000,16.6610,16.6614,0 +1220,0.0000,0.0000,16.6822,16.6825,1 +1221,0.0000,0.0000,16.6789,16.6792,1 +1222,0.0000,0.0000,16.6597,16.6600,0 +1223,0.0000,0.0000,16.6395,16.6398,0 +1224,0.0000,0.0000,16.7730,16.7733,1 +1225,0.0000,0.0000,16.6169,16.6172,0 +1226,0.0000,0.0000,16.6391,16.6394,0 +1227,0.0000,0.0000,16.7277,16.7281,1 +1228,0.0000,0.0000,16.6384,16.6387,0 +1229,0.0000,0.0000,16.6559,16.6562,0 +1230,0.0000,0.0000,16.6918,16.6921,1 +1231,0.0000,0.0000,16.6434,16.6437,0 +1232,0.0000,0.0000,16.6692,16.6695,1 +1233,0.0000,0.0000,16.7494,16.7497,1 +1234,0.0000,0.0000,15.4302,15.4305,0 +1235,0.0000,0.0000,16.6253,16.6256,0 +1236,0.0000,0.0000,17.8964,17.8967,1 +1237,0.0000,0.0000,16.8599,16.8602,1 +1238,0.0000,0.0000,16.5554,16.5557,0 +1239,0.0000,0.0000,16.6898,16.6901,1 +1240,0.0000,0.0000,16.6039,16.6043,0 +1241,0.0000,0.0000,16.6471,16.6474,0 +1242,0.0000,0.0000,16.6696,16.6699,1 +1243,0.0000,0.0000,16.6444,16.6447,0 +1244,0.0000,0.0000,16.6868,16.6871,1 +1245,0.0000,0.0000,16.6566,16.6570,0 +1246,0.0000,0.0000,16.6769,16.6772,1 +1247,0.0000,0.0000,16.6939,16.6942,1 +1248,0.0000,0.0000,16.6657,16.6661,0 +1249,0.0000,0.0000,16.6944,16.6947,1 +1250,0.0000,0.0000,16.6577,16.6580,0 +1251,0.0000,0.0000,16.6944,16.6947,1 +1252,0.0000,0.0000,16.6783,16.6786,1 +1253,0.0000,0.0000,16.7059,16.7062,1 +1254,0.0000,0.0000,16.6198,16.6201,0 +1255,0.0000,0.0000,16.6552,16.6556,0 +1256,0.0000,0.0000,16.6691,16.6694,1 +1257,0.0000,0.0000,16.6470,16.6473,0 +1258,0.0000,0.0000,16.7472,16.7475,1 +1259,0.0000,0.0000,16.6457,16.6460,0 +1260,0.0000,0.0000,16.6269,16.6272,0 +1261,0.0000,0.0000,16.6854,16.6857,1 +1262,0.0000,0.0000,16.7114,16.7117,1 +1263,0.0000,0.0000,16.6268,16.6271,0 +1264,0.0000,0.0000,16.6503,16.6506,0 +1265,0.0000,0.0000,16.7065,16.7068,1 +1266,0.0000,0.0000,16.6395,16.6398,0 +1267,0.0000,0.0000,16.6722,16.6726,1 +1268,0.0000,0.0000,16.6869,16.6872,1 +1269,0.0000,0.0000,16.6706,16.6709,1 +1270,0.0000,0.0000,16.6879,16.6882,1 +1271,0.0000,0.0000,16.6638,16.6641,0 +1272,0.0000,0.0000,16.6664,16.6667,1 +1273,0.0000,0.0000,16.7322,16.7325,1 +1274,0.0000,0.0000,16.5593,16.5596,0 +1275,0.0000,0.0000,16.7123,16.7126,1 +1276,0.0000,0.0000,16.7713,16.7715,1 +1277,0.0000,0.0000,16.6290,16.6293,0 +1278,0.0000,0.0000,16.6382,16.6385,0 +1279,0.0000,0.0000,16.6444,16.6447,0 +1280,0.0000,0.0000,16.7313,16.7316,1 +1281,0.0000,0.0000,16.6312,16.6315,0 +1282,0.0000,0.0000,16.7107,16.7110,1 +1283,0.0000,0.0000,16.5853,16.5856,0 +1284,0.0000,0.0000,16.7384,16.7387,1 +1285,0.0000,0.0000,16.6324,16.6327,0 +1286,0.0000,0.0000,16.6573,16.6576,0 +1287,0.0000,0.0000,16.7156,16.7159,1 +1288,0.0000,0.0000,16.6763,16.6766,1 +1289,0.0000,0.0000,16.6316,16.6319,0 +1290,0.0000,0.0000,16.6950,16.6953,1 +1291,0.0000,0.0000,16.8179,16.8182,1 +1292,0.0000,0.0000,16.5076,16.5079,0 +1293,0.0000,0.0000,16.7080,16.7083,1 +1294,0.0000,0.0000,16.6078,16.6080,0 +1295,0.0000,0.0000,16.6789,16.6792,1 +1296,0.0000,0.0000,16.7086,16.7089,1 +1297,0.0000,0.0000,16.7764,16.7767,1 +1298,0.0000,0.0000,16.6893,16.6896,1 +1299,0.0000,0.0000,16.5215,16.5218,0 +1300,0.0000,0.0000,16.7384,16.7387,1 +1301,0.0000,0.0000,16.6019,16.6022,0 +1302,0.0000,0.0000,16.7103,16.7106,1 +1303,0.0000,0.0000,16.7324,16.7327,1 +1304,0.0000,0.0000,16.5796,16.5799,0 +1305,0.0000,0.0000,16.6455,16.6458,0 +1306,0.0000,0.0000,16.6791,16.6794,1 +1307,0.0000,0.0000,16.6686,16.6689,1 +1308,0.0000,0.0000,16.6010,16.6013,0 +1309,0.0000,0.0000,16.7192,16.7195,1 +1310,0.0000,0.0000,16.6824,16.6827,1 +1311,0.0000,0.0000,16.6720,16.6723,1 +1312,0.0000,0.0000,16.6798,16.6802,1 +1313,0.0000,0.0000,16.7309,16.7312,1 +1314,0.0000,0.0000,16.6044,16.6047,0 +1315,0.0000,0.0000,16.6607,16.6610,0 +1316,0.0000,0.0000,16.5358,16.5361,0 +1317,0.0000,0.0000,7.2479,7.2482,0 +1318,0.0000,0.0000,9.6695,9.6698,0 +1319,0.0000,0.0000,16.5832,16.5835,0 +1320,0.0000,0.0000,16.7664,16.7666,1 +1321,0.0000,0.0000,16.5581,16.5585,0 +1322,0.0000,0.0000,16.6800,16.6803,1 +1323,0.0000,0.0000,16.6801,16.6804,1 +1324,0.0000,0.0000,16.6829,16.6832,1 +1325,0.0000,0.0000,16.6413,16.6416,0 +1326,0.0000,0.0000,16.6412,16.6415,0 +1327,0.0000,0.0000,16.7007,16.7010,1 +1328,0.0000,0.0000,16.6806,16.6810,1 +1329,0.0000,0.0000,16.6662,16.6665,0 +1330,0.0000,0.0000,16.6520,16.6523,0 +1331,0.0000,0.0000,16.7568,16.7571,1 +1332,0.0000,0.0000,16.6366,16.6369,0 +1333,0.0000,0.0000,16.7367,16.7370,1 +1334,0.0000,0.0000,16.8660,16.8664,1 +1335,0.0000,0.0000,16.4678,16.4681,0 +1336,0.0000,0.0000,16.6239,16.6242,0 +1337,0.0000,0.0000,16.6233,16.6236,0 +1338,0.0000,0.0000,16.6480,16.6483,0 +1339,0.0000,0.0000,16.8197,16.8200,1 +1340,0.0000,0.0000,16.9136,16.9139,1 +1341,0.0000,0.0000,16.4654,16.4657,0 +1342,0.0000,0.0000,16.5391,16.5394,0 +1343,0.0000,0.0000,16.6504,16.6507,0 +1344,0.0000,0.0000,16.7257,16.7260,1 +1345,0.0000,0.0000,16.6745,16.6748,1 +1346,0.0000,0.0000,16.6506,16.6510,0 +1347,0.0000,0.0000,16.6431,16.6434,0 +1348,0.0000,0.0000,16.6773,16.6776,1 +1349,0.0000,0.0000,16.6505,16.6508,0 +1350,0.0000,0.0000,16.6629,16.6632,0 +1351,0.0000,0.0000,16.6844,16.6847,1 +1352,0.0000,0.0000,16.7369,16.7372,1 +1353,0.0000,0.0000,16.7318,16.7321,1 +1354,0.0000,0.0000,16.5686,16.5689,0 +1355,0.0000,0.0000,16.6759,16.6762,1 +1356,0.0000,0.0000,16.6503,16.6507,0 +1357,0.0000,0.0000,16.6937,16.6940,1 +1358,0.0000,0.0000,16.6363,16.6366,0 +1359,0.0000,0.0000,16.6840,16.6843,1 +1360,0.0000,0.0000,16.6367,16.6370,0 +1361,0.0000,0.0000,16.6433,16.6436,0 +1362,0.0000,0.0000,16.6919,16.6922,1 +1363,0.0000,0.0000,16.6954,16.6957,1 +1364,0.0000,0.0000,16.7501,16.7504,1 +1365,0.0000,0.0000,16.6023,16.6026,0 +1366,0.0000,0.0000,16.6875,16.6878,1 +1367,0.0000,0.0000,16.6764,16.6767,1 +1368,0.0000,0.0000,16.6255,16.6258,0 +1369,0.0000,0.0000,16.6380,16.6383,0 +1370,0.0000,0.0000,16.7804,16.7807,1 +1371,0.0000,0.0000,16.6478,16.6481,0 +1372,0.0000,0.0000,16.6582,16.6585,0 +1373,0.0000,0.0000,16.6184,16.6187,0 +1374,0.0000,0.0000,16.6668,16.6671,1 +1375,0.0000,0.0000,16.6358,16.6362,0 +1376,0.0000,0.0000,16.7291,16.7294,1 +1377,0.0000,0.0000,16.7015,16.7018,1 +1378,0.0000,0.0000,16.6918,16.6921,1 +1379,0.0000,0.0000,16.6219,16.6222,0 +1380,0.0000,0.0000,16.7126,16.7129,1 +1381,0.0000,0.0000,16.5785,16.5787,0 +1382,0.0000,0.0000,16.7084,16.7087,1 +1383,0.0000,0.0000,16.6907,16.6910,1 +1384,0.0000,0.0000,16.6536,16.6539,0 +1385,0.0000,0.0000,16.6556,16.6559,0 +1386,0.0000,0.0000,16.6704,16.6707,1 +1387,0.0000,0.0000,16.6804,16.6807,1 +1388,0.0000,0.0000,16.6608,16.6611,0 +1389,0.0000,0.0000,16.6742,16.6745,1 +1390,0.0000,0.0000,16.6637,16.6640,0 +1391,0.0000,0.0000,15.3369,15.3372,0 +1392,0.0000,0.0000,16.7060,16.7062,1 +1393,0.0000,0.0000,16.6552,16.6554,0 +1394,0.0000,0.0000,16.6311,16.6312,0 +1395,0.0000,0.0000,16.7339,16.7341,1 +1396,0.0000,0.0000,16.5590,16.5592,0 +1397,0.0000,0.0000,16.7105,16.7108,1 +1398,0.0000,0.0000,18.0448,18.0450,1 +1399,0.0000,0.0000,16.7975,16.7978,1 +1400,0.0000,0.0000,16.6214,16.6217,0 +1401,0.0000,0.0000,16.6301,16.6304,0 +1402,0.0000,0.0000,16.6355,16.6358,0 +1403,0.0000,0.0000,16.6643,16.6646,0 +1404,0.0000,0.0000,16.6677,16.6680,1 +1405,0.0000,0.0000,16.6630,16.6633,0 +1406,0.0000,0.0000,16.6994,16.6997,1 +1407,0.0000,0.0000,15.4754,15.4757,0 +1408,0.0000,0.0000,16.4143,16.4144,0 +1409,0.0000,0.0000,16.6823,16.6825,1 +1410,0.0000,0.0000,16.6700,16.6701,1 +1411,0.0000,0.0000,16.6561,16.6563,0 +1412,0.0000,0.0000,16.5896,16.5898,0 +1413,0.0000,0.0000,18.2704,18.2706,1 +1414,0.0000,0.0000,16.6293,16.6296,0 +1415,0.0000,0.0000,16.6816,16.6819,1 +1416,0.0000,0.0000,16.6870,16.6873,1 +1417,0.0000,0.0000,16.6419,16.6422,0 +1418,0.0000,0.0000,16.9910,16.9913,1 +1419,0.0000,0.0000,16.6194,16.6197,0 +1420,0.0000,0.0000,16.3942,16.3945,0 +1421,0.0000,0.0000,16.6958,16.6961,1 +1422,0.0000,0.0000,16.6047,16.6050,0 +1423,0.0000,0.0000,16.6573,16.6575,0 +1424,0.0000,0.0000,16.6852,16.6855,1 +1425,0.0000,0.0000,16.7295,16.7298,1 +1426,0.0000,0.0000,16.6489,16.6492,0 +1427,0.0000,0.0000,16.8841,16.8844,1 +1428,0.0000,0.0000,16.5144,16.5147,0 +1429,0.0000,0.0000,16.5792,16.5795,0 +1430,0.0000,0.0000,16.6638,16.6641,0 +1431,0.0000,0.0000,17.1654,17.1657,1 +1432,0.0000,0.0000,16.4480,16.4483,0 +1433,0.0000,0.0000,16.5214,16.5216,0 +1434,0.0000,0.0000,16.7645,16.7648,1 +1435,0.0000,0.0000,15.3417,15.3420,0 +1436,0.0000,0.0000,16.6478,16.6479,0 +1437,0.0000,0.0000,16.6791,16.6794,1 +1438,0.0000,0.0000,16.0348,16.0350,0 +1439,0.0000,0.0000,16.2009,16.2012,0 +1440,0.0000,0.0000,3.3008,3.3011,0 +1441,0.0000,0.0000,15.7452,15.7455,0 +1442,0.0000,0.0000,16.5696,16.5699,0 +1443,0.0000,0.0000,16.6583,16.6586,0 +1444,0.0000,0.0000,16.6906,16.6908,1 +1445,0.0000,0.0000,16.6645,16.6648,0 +1446,0.0000,0.0000,16.6535,16.6538,0 +1447,0.0000,0.0000,16.7019,16.7022,1 +1448,0.0000,0.0000,16.6597,16.6600,0 +1449,0.0000,0.0000,16.6347,16.6350,0 +1450,0.0000,0.0000,16.8131,16.8134,1 +1451,0.0000,0.0000,16.5861,16.5864,0 +1452,0.0000,0.0000,16.6175,16.6178,0 +1453,0.0000,0.0000,16.5590,16.5593,0 +1454,0.0000,0.0000,7.1440,7.1443,0 +1455,0.0000,0.0000,9.7743,9.7747,0 +1456,0.0000,0.0000,16.5885,16.5888,0 +1457,0.0000,0.0000,16.7755,16.7758,1 +1458,0.0000,0.0000,16.6907,16.6910,1 +1459,0.0000,0.0000,16.6238,16.6241,0 +1460,0.0000,0.0000,16.5787,16.5790,0 +1461,0.0000,0.0000,16.6369,16.6372,0 +1462,0.0000,0.0000,16.7015,16.7018,1 +1463,0.0000,0.0000,16.6665,16.6668,1 +1464,0.0000,0.0000,16.6612,16.6615,0 +1465,0.0000,0.0000,16.6564,16.6567,0 +1466,0.0000,0.0000,16.7181,16.7184,1 +1467,0.0000,0.0000,16.6127,16.6130,0 +1468,0.0000,0.0000,16.6660,16.6663,0 +1469,0.0000,0.0000,16.7102,16.7105,1 +1470,0.0000,0.0000,16.7309,16.7312,1 +1471,0.0000,0.0000,16.5921,16.5924,0 +1472,0.0000,0.0000,16.6615,16.6618,0 +1473,0.0000,0.0000,16.6935,16.6938,1 +1474,0.0000,0.0000,16.7529,16.7532,1 +1475,0.0000,0.0000,16.5506,16.5509,0 +1476,0.0000,0.0000,16.7132,16.7135,1 +1477,0.0000,0.0000,16.5931,16.5934,0 +1478,0.0000,0.0000,16.6877,16.6880,1 +1479,0.0000,0.0000,16.7275,16.7278,1 +1480,0.0000,0.0000,16.9544,16.9547,1 +1481,0.0000,0.0000,16.4860,16.4863,0 +1482,0.0000,0.0000,16.6087,16.6090,0 +1483,0.0000,0.0000,16.5899,16.5902,0 +1484,0.0000,0.0000,16.6511,16.6514,0 +1485,0.0000,0.0000,16.6910,16.6913,1 +1486,0.0000,0.0000,16.6513,16.6516,0 +1487,0.0000,0.0000,16.6905,16.6908,1 +1488,0.0000,0.0000,16.7062,16.7064,1 +1489,0.0000,0.0000,15.5045,15.5048,0 +1490,0.0000,0.0000,16.6258,16.6260,0 +1491,0.0000,0.0000,16.6876,16.6879,1 +1492,0.0000,0.0000,16.5956,16.5958,0 +1493,0.0000,0.0000,7.7531,7.7534,0 +1494,0.0000,0.0000,10.2269,10.2272,0 +1495,0.0000,0.0000,16.6515,16.6518,0 +1496,0.0000,0.0000,16.7310,16.7313,1 +1497,0.0000,0.0000,16.6014,16.6017,0 +1498,0.0000,0.0000,16.6569,16.6572,0 +1499,0.0000,0.0000,16.6438,16.6441,0 +1500,0.0000,0.0000,16.6728,16.6731,1 +1501,0.0000,0.0000,16.6507,16.6509,0 +1502,0.0000,0.0000,16.6626,16.6629,0 +1503,0.0000,0.0000,16.7143,16.7146,1 +1504,0.0000,0.0000,16.6440,16.6443,0 +1505,0.0000,0.0000,16.7406,16.7409,1 +1506,0.0000,0.0000,16.5802,16.5804,0 +1507,0.0000,0.0000,16.4137,16.4139,0 +1508,0.0000,0.0000,7.3735,7.3738,0 +1509,0.0000,0.0000,9.7026,9.7029,0 +1510,0.0000,0.0000,16.6174,16.6177,0 +1511,0.0000,0.0000,16.5825,16.5828,0 +1512,0.0000,0.0000,16.6946,16.6950,1 +1513,0.0000,0.0000,16.6808,16.6811,1 +1514,0.0000,0.0000,16.6510,16.6513,0 +1515,0.0000,0.0000,16.7676,16.7678,1 +1516,0.0000,0.0000,16.6027,16.6030,0 +1517,0.0000,0.0000,16.6931,16.6934,1 +1518,0.0000,0.0000,16.6483,16.6486,0 +1519,0.0000,0.0000,16.6570,16.6573,0 +1520,0.0000,0.0000,16.6788,16.6790,1 +1521,0.0000,0.0000,16.7478,16.7481,1 +1522,0.0000,0.0000,16.6168,16.6171,0 +1523,0.0000,0.0000,16.6443,16.6446,0 +1524,0.0000,0.0000,16.7241,16.7244,1 +1525,0.0000,0.0000,16.5987,16.5990,0 +1526,0.0000,0.0000,16.7055,16.7058,1 +1527,0.0000,0.0000,16.7253,16.7256,1 +1528,0.0000,0.0000,16.6344,16.6347,0 +1529,0.0000,0.0000,16.6468,16.6471,0 +1530,0.0000,0.0000,16.6618,16.6621,0 +1531,0.0000,0.0000,16.6458,16.6461,0 +1532,0.0000,0.0000,16.6290,16.6293,0 +1533,0.0000,0.0000,16.8528,16.8531,1 +1534,0.0000,0.0000,16.5814,16.5817,0 +1535,0.0000,0.0000,16.6385,16.6388,0 +1536,0.0000,0.0000,16.6824,16.6827,1 +1537,0.0000,0.0000,16.6729,16.6732,1 +1538,0.0000,0.0000,16.6565,16.6568,0 +1539,0.0000,0.0000,16.7264,16.7267,1 +1540,0.0000,0.0000,16.6679,16.6682,1 +1541,0.0000,0.0000,16.6211,16.6214,0 +1542,0.0000,0.0000,16.6878,16.6880,1 +1543,0.0000,0.0000,16.6946,16.6948,1 +1544,0.0000,0.0000,16.6269,16.6272,0 +1545,0.0000,0.0000,16.6374,16.6377,0 +1546,0.0000,0.0000,16.7315,16.7318,1 +1547,0.0000,0.0000,16.6903,16.6906,1 +1548,0.0000,0.0000,16.6847,16.6850,1 +1549,0.0000,0.0000,16.6419,16.6422,0 +1550,0.0000,0.0000,16.6331,16.6334,0 +1551,0.0000,0.0000,16.6731,16.6734,1 +1552,0.0000,0.0000,16.7065,16.7068,1 +1553,0.0000,0.0000,16.6345,16.6348,0 +1554,0.0000,0.0000,16.6655,16.6658,0 +1555,0.0000,0.0000,16.6683,16.6686,1 +1556,0.0000,0.0000,16.6699,16.6702,1 +1557,0.0000,0.0000,16.6580,16.6583,0 +1558,0.0000,0.0000,16.6878,16.6881,1 +1559,0.0000,0.0000,16.6987,16.6990,1 +1560,0.0000,0.0000,16.6549,16.6552,0 +1561,0.0000,0.0000,16.6414,16.6417,0 +1562,0.0000,0.0000,16.6970,16.6973,1 +1563,0.0000,0.0000,16.7501,16.7504,1 +1564,0.0000,0.0000,16.6344,16.6347,0 +1565,0.0000,0.0000,16.6442,16.6445,0 +1566,0.0000,0.0000,16.6544,16.6547,0 +1567,0.0000,0.0000,16.6578,16.6581,0 +1568,0.0000,0.0000,16.6698,16.6701,1 +1569,0.0000,0.0000,16.6632,16.6635,0 +1570,0.0000,0.0000,16.6967,16.6970,1 +1571,0.0000,0.0000,16.7274,16.7277,1 +1572,0.0000,0.0000,16.6246,16.6249,0 +1573,0.0000,0.0000,16.6630,16.6633,0 +1574,0.0000,0.0000,16.6593,16.6595,0 +1575,0.0000,0.0000,16.7039,16.7043,1 +1576,0.0000,0.0000,16.6506,16.6509,0 +1577,0.0000,0.0000,16.5841,16.5843,0 +1578,0.0000,0.0000,7.1290,7.1293,0 +1579,0.0000,0.0000,9.7113,9.7116,0 +1580,0.0000,0.0000,16.6003,16.6006,0 +1581,0.0000,0.0000,16.5706,16.5709,0 +1582,0.0000,0.0000,16.7364,16.7367,1 +1583,0.0000,0.0000,16.6808,16.6811,1 +1584,0.0000,0.0000,16.7082,16.7085,1 +1585,0.0000,0.0000,16.6171,16.6174,0 +1586,0.0000,0.0000,16.6908,16.6912,1 +1587,0.0000,0.0000,16.6817,16.6821,1 +1588,0.0000,0.0000,16.6663,16.6666,0 +1589,0.0000,0.0000,16.7184,16.7187,1 +1590,0.0000,0.0000,16.6161,16.6164,0 +1591,0.0000,0.0000,16.6800,16.6803,1 +1592,0.0000,0.0000,16.6923,16.6926,1 +1593,0.0000,0.0000,16.4149,16.4152,0 +1594,0.0000,0.0000,7.2398,7.2401,0 +1595,0.0000,0.0000,9.7279,9.7282,0 +1596,0.0000,0.0000,16.5938,16.5941,0 +1597,0.0000,0.0000,16.6810,16.6812,1 +1598,0.0000,0.0000,16.6556,16.6559,0 +1599,0.0000,0.0000,16.6759,16.6762,1 +1600,0.0000,0.0000,16.6924,16.6927,1 +1601,0.0000,0.0000,16.6487,16.6490,0 +1602,0.0000,0.0000,16.7190,16.7193,1 +1603,0.0000,0.0000,16.6395,16.6398,0 +1604,0.0000,0.0000,16.7246,16.7249,1 +1605,0.0000,0.0000,16.6945,16.6948,1 +1606,0.0000,0.0000,16.6237,16.6240,0 +1607,0.0000,0.0000,16.6336,16.6339,0 +1608,0.0000,0.0000,16.7121,16.7124,1 +1609,0.0000,0.0000,16.6598,16.6601,0 +1610,0.0000,0.0000,16.6412,16.6415,0 +1611,0.0000,0.0000,16.5908,16.5911,0 +1612,0.0000,0.0000,16.7545,16.7549,1 +1613,0.0000,0.0000,16.6504,16.6507,0 +1614,0.0000,0.0000,16.7533,16.7536,1 +1615,0.0000,0.0000,16.6063,16.6066,0 +1616,0.0000,0.0000,16.6237,16.6240,0 +1617,0.0000,0.0000,16.6698,16.6700,1 +1618,0.0000,0.0000,16.7174,16.7177,1 +1619,0.0000,0.0000,16.6526,16.6529,0 +1620,0.0000,0.0000,16.6912,16.6915,1 +1621,0.0000,0.0000,16.6192,16.6195,0 +1622,0.0000,0.0000,16.7070,16.7073,1 +1623,0.0000,0.0000,16.6636,16.6639,0 +1624,0.0000,0.0000,16.7156,16.7159,1 +1625,0.0000,0.0000,16.6527,16.6530,0 +1626,0.0000,0.0000,16.6393,16.6396,0 +1627,0.0000,0.0000,16.6708,16.6711,1 +1628,0.0000,0.0000,16.6736,16.6739,1 +1629,0.0000,0.0000,16.6620,16.6623,0 +1630,0.0000,0.0000,16.7020,16.7023,1 +1631,0.0000,0.0000,16.6515,16.6518,0 +1632,0.0000,0.0000,16.6566,16.6569,0 +1633,0.0000,0.0000,16.7225,16.7228,1 +1634,0.0000,0.0000,16.6785,16.6788,1 +1635,0.0000,0.0000,16.6432,16.6435,0 +1636,0.0000,0.0000,16.7080,16.7083,1 +1637,0.0000,0.0000,16.6527,16.6530,0 +1638,0.0000,0.0000,16.6511,16.6514,0 +1639,0.0000,0.0000,16.6244,16.6247,0 +1640,0.0000,0.0000,16.7127,16.7130,1 +1641,0.0000,0.0000,16.6157,16.6160,0 +1642,0.0000,0.0000,16.7427,16.7430,1 +1643,0.0000,0.0000,16.6313,16.6316,0 +1644,0.0000,0.0000,16.6732,16.6735,1 +1645,0.0000,0.0000,16.6769,16.6772,1 +1646,0.0000,0.0000,16.6696,16.6699,1 +1647,0.0000,0.0000,16.6657,16.6660,0 +1648,0.0000,0.0000,16.5915,16.5918,0 +1649,0.0000,0.0000,7.3100,7.3103,0 +1650,0.0000,0.0000,9.4863,9.4866,0 +1651,0.0000,0.0000,16.4167,16.4170,0 +1652,0.0000,0.0000,7.1865,7.1868,0 +1653,0.0000,0.0000,9.7539,9.7542,0 +1654,0.0000,0.0000,16.6822,16.6825,1 +1655,0.0000,0.0000,16.6085,16.6088,0 +1656,0.0000,0.0000,16.7003,16.7006,1 +1657,0.0000,0.0000,16.7013,16.7016,1 +1658,0.0000,0.0000,16.6256,16.6259,0 +1659,0.0000,0.0000,16.6328,16.6331,0 +1660,0.0000,0.0000,16.7058,16.7061,1 +1661,0.0000,0.0000,16.8133,16.8136,1 +1662,0.0000,0.0000,16.5757,16.5760,0 +1663,0.0000,0.0000,16.3491,16.3494,0 +1664,0.0000,0.0000,7.2561,7.2564,0 +1665,0.0000,0.0000,9.7994,9.7997,0 +1666,0.0000,0.0000,16.5879,16.5882,0 +1667,0.0000,0.0000,17.2355,17.2358,1 +1668,0.0000,0.0000,16.2285,16.2291,0 +1669,0.0000,0.0000,16.5278,16.5281,0 +1670,0.0000,0.0000,16.6486,16.6489,0 +1671,0.0000,0.0000,16.6428,16.6430,0 +1672,0.0000,0.0000,16.7741,16.7744,1 +1673,0.0000,0.0000,16.6530,16.6533,0 +1674,0.0000,0.0000,16.6219,16.6222,0 +1675,0.0000,0.0000,16.6650,16.6653,0 +1676,0.0000,0.0000,16.6672,16.6675,1 +1677,0.0000,0.0000,16.6494,16.6497,0 +1678,0.0000,0.0000,16.7118,16.7121,1 +1679,0.0000,0.0000,16.7882,16.7885,1 +1680,0.0000,0.0000,16.6240,16.6243,0 +1681,0.0000,0.0000,16.6100,16.6103,0 +1682,0.0000,0.0000,16.6832,16.6834,1 +1683,0.0000,0.0000,16.6241,16.6244,0 +1684,0.0000,0.0000,16.6485,16.6488,0 +1685,0.0000,0.0000,16.7040,16.7042,1 +1686,0.0000,0.0000,16.7239,16.7242,1 +1687,0.0000,0.0000,16.6234,16.6237,0 +1688,0.0000,0.0000,16.6592,16.6595,0 +1689,0.0000,0.0000,16.6888,16.6891,1 +1690,0.0000,0.0000,16.6358,16.6361,0 +1691,0.0000,0.0000,16.6792,16.6795,1 +1692,0.0000,0.0000,16.6714,16.6717,1 +1693,0.0000,0.0000,16.6706,16.6710,1 +1694,0.0000,0.0000,16.6952,16.6955,1 +1695,0.0000,0.0000,16.3981,16.3984,0 +1696,0.0000,0.0000,7.1901,7.1904,0 +1697,0.0000,0.0000,9.7839,9.7842,0 +1698,0.0000,0.0000,16.6362,16.6365,0 +1699,0.0000,0.0000,16.6764,16.6767,1 +1700,0.0000,0.0000,16.6462,16.6466,0 +1701,0.0000,0.0000,16.6999,16.7002,1 +1702,0.0000,0.0000,16.6450,16.6453,0 +1703,0.0000,0.0000,16.6545,16.6548,0 +1704,0.0000,0.0000,16.7981,16.7984,1 +1705,0.0000,0.0000,16.6511,16.6514,0 +1706,0.0000,0.0000,16.6127,16.6130,0 +1707,0.0000,0.0000,16.6470,16.6473,0 +1708,0.0000,0.0000,16.6867,16.6870,1 +1709,0.0000,0.0000,16.5310,16.5313,0 +1710,0.0000,0.0000,16.7846,16.7849,1 +1711,0.0000,0.0000,16.6859,16.6862,1 +1712,0.0000,0.0000,16.6663,16.6666,0 +1713,0.0000,0.0000,16.7020,16.7023,1 +1714,0.0000,0.0000,16.6501,16.6504,0 +1715,0.0000,0.0000,16.6619,16.6622,0 +1716,0.0000,0.0000,16.6314,16.6317,0 +1717,0.0000,0.0000,16.6142,16.6145,0 +1718,0.0000,0.0000,16.8160,16.8163,1 +1719,0.0000,0.0000,16.7058,16.7060,1 +1720,0.0000,0.0000,16.5861,16.5864,0 +1721,0.0000,0.0000,16.6851,16.6854,1 +1722,0.0000,0.0000,16.6276,16.6279,0 +1723,0.0000,0.0000,16.6634,16.6637,0 +1724,0.0000,0.0000,16.7393,16.7396,1 +1725,0.0000,0.0000,16.6995,16.6998,1 +1726,0.0000,0.0000,16.6103,16.6106,0 +1727,0.0000,0.0000,16.6744,16.6747,1 +1728,0.0000,0.0000,16.7017,16.7020,1 +1729,0.0000,0.0000,16.6358,16.6361,0 +1730,0.0000,0.0000,16.6511,16.6514,0 +1731,0.0000,0.0000,16.6646,16.6649,0 +1732,0.0000,0.0000,6.9510,6.9513,0 +1733,0.0000,0.0000,9.7879,9.7882,0 +1734,0.0000,0.0000,16.6798,16.6801,1 +1735,0.0000,0.0000,16.7163,16.7167,1 +1736,0.0000,0.0000,16.6014,16.6017,0 +1737,0.0000,0.0000,16.7296,16.7299,1 +1738,0.0000,0.0000,16.6103,16.6106,0 +1739,0.0000,0.0000,15.2772,15.2774,0 +1740,0.0000,0.0000,16.6468,16.6470,0 +1741,0.0000,0.0000,16.6832,16.6833,1 +1742,0.0000,0.0000,16.6760,16.6762,1 +1743,0.0000,0.0000,16.7015,16.7017,1 +1744,0.0000,0.0000,16.6308,16.6309,0 +1745,0.0000,0.0000,17.9326,17.9328,1 +1746,0.0000,0.0000,16.7502,16.7505,1 +1747,0.0000,0.0000,16.6696,16.6699,1 +1748,0.0000,0.0000,16.6960,16.6963,1 +1749,0.0000,0.0000,16.7093,16.7096,1 +1750,0.0000,0.0000,16.7063,16.7066,1 +1751,0.0000,0.0000,16.5700,16.5703,0 +1752,0.0000,0.0000,16.7096,16.7099,1 +1753,0.0000,0.0000,16.7548,16.7551,1 +1754,0.0000,0.0000,16.5747,16.5751,0 +1755,0.0000,0.0000,16.7272,16.7275,1 +1756,0.0000,0.0000,16.7047,16.7050,1 +1757,0.0000,0.0000,16.5636,16.5639,0 +1758,0.0000,0.0000,16.3979,16.3982,0 +1759,0.0000,0.0000,7.3216,7.3219,0 +1760,0.0000,0.0000,9.7454,9.7457,0 +1761,0.0000,0.0000,16.5360,16.5363,0 +1762,0.0000,0.0000,16.7437,16.7440,1 +1763,0.0000,0.0000,16.6083,16.6086,0 +1764,0.0000,0.0000,16.6605,16.6609,0 +1765,0.0000,0.0000,16.7158,16.7162,1 +1766,0.0000,0.0000,16.6604,16.6607,0 +1767,0.0000,0.0000,16.6624,16.6627,0 +1768,0.0000,0.0000,16.6670,16.6673,1 +1769,0.0000,0.0000,16.6694,16.6697,1 +1770,0.0000,0.0000,16.7545,16.7548,1 +1771,0.0000,0.0000,16.6314,16.6317,0 +1772,0.0000,0.0000,16.6371,16.6374,0 +1773,0.0000,0.0000,16.6618,16.6621,0 +1774,0.0000,0.0000,16.2637,16.2640,0 +1775,0.0000,0.0000,7.4688,7.4691,0 +1776,0.0000,0.0000,9.6497,9.6500,0 +1777,0.0000,0.0000,16.6575,16.6578,0 +1778,0.0000,0.0000,16.6664,16.6667,1 +1779,0.0000,0.0000,16.6502,16.6505,0 +1780,0.0000,0.0000,16.6673,16.6676,1 +1781,0.0000,0.0000,16.6746,16.6750,1 +1782,0.0000,0.0000,16.6809,16.6812,1 +1783,0.0000,0.0000,16.6598,16.6601,0 +1784,0.0000,0.0000,16.6736,16.6739,1 +1785,0.0000,0.0000,16.6714,16.6717,1 +1786,0.0000,0.0000,6.9686,6.9689,0 +1787,0.0000,0.0000,9.7827,9.7830,0 +1788,0.0000,0.0000,16.5994,16.5997,0 +1789,0.0000,0.0000,16.6978,16.6981,1 +1790,0.0000,0.0000,16.6463,16.6466,0 +1791,0.0000,0.0000,16.7037,16.7040,1 +1792,0.0000,0.0000,16.7198,16.7201,1 +1793,0.0000,0.0000,16.6777,16.6780,1 +1794,0.0000,0.0000,16.5431,16.5434,0 +1795,0.0000,0.0000,16.7025,16.7028,1 +1796,0.0000,0.0000,16.6719,16.6723,1 +1797,0.0000,0.0000,16.6581,16.6584,0 +1798,0.0000,0.0000,16.6913,16.6917,1 +1799,0.0000,0.0000,16.7015,16.7018,1 +1800,0.0000,0.0000,16.6115,16.6118,0 +1801,0.0000,0.0000,16.6801,16.6804,1 +1802,0.0000,0.0000,16.6683,16.6687,1 +1803,0.0000,0.0000,16.6871,16.6874,1 +1804,0.0000,0.0000,16.7223,16.7226,1 +1805,0.0000,0.0000,16.6301,16.6304,0 +1806,0.0000,0.0000,16.7878,16.7881,1 +1807,0.0000,0.0000,16.5943,16.5945,0 +1808,0.0000,0.0000,16.6229,16.6232,0 +1809,0.0000,0.0000,16.6590,16.6593,0 +1810,0.0000,0.0000,16.6774,16.6777,1 +1811,0.0000,0.0000,16.6421,16.6424,0 +1812,0.0000,0.0000,16.7055,16.7058,1 +1813,0.0000,0.0000,16.5998,16.6001,0 +1814,0.0000,0.0000,16.7429,16.7432,1 +1815,0.0000,0.0000,16.7139,16.7142,1 +1816,0.0000,0.0000,16.6477,16.6480,0 +1817,0.0000,0.0000,16.6245,16.6248,0 +1818,0.0000,0.0000,16.6928,16.6931,1 +1819,0.0000,0.0000,16.6622,16.6625,0 +1820,0.0000,0.0000,16.6707,16.6710,1 +1821,0.0000,0.0000,16.6699,16.6702,1 +1822,0.0000,0.0000,16.6633,16.6636,0 +1823,0.0000,0.0000,16.6586,16.6589,0 +1824,0.0000,0.0000,16.6750,16.6753,1 +1825,0.0000,0.0000,16.7407,16.7410,1 +1826,0.0000,0.0000,16.5956,16.5959,0 +1827,0.0000,0.0000,16.6833,16.6836,1 +1828,0.0000,0.0000,16.6746,16.6749,1 +1829,0.0000,0.0000,15.3024,15.3027,0 +1830,0.0000,0.0000,16.8878,16.8880,1 +1831,0.0000,0.0000,8.3536,8.3539,0 +1832,0.0000,0.0000,9.4599,9.4602,0 +1833,0.0000,0.0000,16.5960,16.5963,0 +1834,0.0000,0.0000,16.7558,16.7561,1 +1835,0.0000,0.0000,16.7054,16.7057,1 +1836,0.0000,0.0000,16.6285,16.6288,0 +1837,0.0000,0.0000,16.7089,16.7092,1 +1838,0.0000,0.0000,16.6602,16.6605,0 +1839,0.0000,0.0000,16.6645,16.6648,0 +1840,0.0000,0.0000,16.6785,16.6788,1 +1841,0.0000,0.0000,16.6508,16.6511,0 +1842,0.0000,0.0000,16.6807,16.6810,1 +1843,0.0000,0.0000,16.6560,16.6563,0 +1844,0.0000,0.0000,16.6546,16.6549,0 +1845,0.0000,0.0000,16.6954,16.6957,1 +1846,0.0000,0.0000,16.6502,16.6505,0 +1847,0.0000,0.0000,16.7016,16.7019,1 +1848,0.0000,0.0000,16.8747,16.8750,1 +1849,0.0000,0.0000,16.5600,16.5602,0 +1850,0.0000,0.0000,16.5685,16.5688,0 +1851,0.0000,0.0000,16.7075,16.7078,1 +1852,0.0000,0.0000,16.6420,16.6423,0 +1853,0.0000,0.0000,17.0323,17.0327,1 +1854,0.0000,0.0000,16.5185,16.5188,0 +1855,0.0000,0.0000,16.5417,16.5420,0 +1856,0.0000,0.0000,16.6408,16.6411,0 +1857,0.0000,0.0000,16.6731,16.6734,1 +1858,0.0000,0.0000,16.5942,16.5945,0 +1859,0.0000,0.0000,16.6890,16.6892,1 +1860,0.0000,0.0000,16.6596,16.6599,0 +1861,0.0000,0.0000,16.6722,16.6725,1 +1862,0.0000,0.0000,16.6530,16.6532,0 +1863,0.0000,0.0000,16.6877,16.6880,1 +1864,0.0000,0.0000,16.7188,16.7191,1 +1865,0.0000,0.0000,16.6176,16.6179,0 +1866,0.0000,0.0000,16.6195,16.6198,0 +1867,0.0000,0.0000,16.7477,16.7480,1 +1868,0.0000,0.0000,16.6721,16.6724,1 +1869,0.0000,0.0000,16.6282,16.6286,0 +1870,0.0000,0.0000,16.6669,16.6672,1 +1871,0.0000,0.0000,16.6268,16.6271,0 +1872,0.0000,0.0000,16.6769,16.6772,1 +1873,0.0000,0.0000,16.7226,16.7230,1 +1874,0.0000,0.0000,16.6540,16.6543,0 +1875,0.0000,0.0000,16.6808,16.6811,1 +1876,0.0000,0.0000,16.6760,16.6763,1 +1877,0.0000,0.0000,17.1362,17.1365,1 +1878,0.0000,0.0000,15.2006,15.2008,0 +1879,0.0000,0.0000,16.5222,16.5224,0 +1880,0.0000,0.0000,16.4399,16.4400,0 +1881,0.0000,0.0000,16.5780,16.5781,0 +1882,0.0000,0.0000,17.0354,17.0356,1 +1883,0.0000,0.0000,16.6278,16.6281,0 +1884,0.0000,0.0000,16.6667,16.6670,1 +1885,0.0000,0.0000,16.6695,16.6697,1 +1886,0.0000,0.0000,16.7054,16.7056,1 +1887,0.0000,0.0000,16.6435,16.6438,0 +1888,0.0000,0.0000,16.6684,16.6686,1 +1889,0.0000,0.0000,16.6586,16.6588,0 +1890,0.0000,0.0000,16.7486,16.7488,1 +1891,0.0000,0.0000,17.8287,17.8289,1 +1892,0.0000,0.0000,16.6151,16.6154,0 +1893,0.0000,0.0000,16.6562,16.6565,0 +1894,0.0000,0.0000,15.6402,15.6404,0 +1895,0.0000,0.0000,16.7987,16.7988,1 +1896,0.0000,0.0000,16.4339,16.4340,0 +1897,0.0000,0.0000,16.6738,16.6739,1 +1898,0.0000,0.0000,17.8085,17.8087,1 +1899,0.0000,0.0000,16.6794,16.6797,1 +1900,0.0000,0.0000,16.7021,16.7024,1 +1901,0.0000,0.0000,16.7946,16.7949,1 +1902,0.0000,0.0000,15.3618,15.3620,0 +1903,0.0000,0.0000,16.5882,16.5884,0 +1904,0.0000,0.0000,17.8935,17.8937,1 +1905,0.0000,0.0000,16.6929,16.6932,1 +1906,0.0000,0.0000,16.6334,16.6337,0 +1907,0.0000,0.0000,16.7353,16.7356,1 +1908,0.0000,0.0000,16.6451,16.6454,0 +1909,0.0000,0.0000,16.6618,16.6621,0 +1910,0.0000,0.0000,16.6791,16.6794,1 +1911,0.0000,0.0000,16.6476,16.6479,0 +1912,0.0000,0.0000,16.7784,16.7787,1 +1913,0.0000,0.0000,6.9323,6.9326,0 +1914,0.0000,0.0000,9.7894,9.7897,0 +1915,0.0000,0.0000,16.5123,16.5126,0 +1916,0.0000,0.0000,16.6990,16.6993,1 +1917,0.0000,0.0000,16.6562,16.6565,0 +1918,0.0000,0.0000,16.6430,16.6433,0 +1919,0.0000,0.0000,16.6763,16.6766,1 +1920,0.0000,0.0000,16.7039,16.7042,1 +1921,0.0000,0.0000,16.6742,16.6745,1 +1922,0.0000,0.0000,16.6675,16.6678,1 +1923,0.0000,0.0000,15.4637,15.4639,0 +1924,0.0000,0.0000,16.6744,16.6745,1 +1925,0.0000,0.0000,17.9191,17.9193,1 +1926,0.0000,0.0000,16.6788,16.6791,1 +1927,0.0000,0.0000,16.6081,16.6084,0 +1928,0.0000,0.0000,16.7415,16.7418,1 +1929,0.0000,0.0000,16.6631,16.6634,0 +1930,0.0000,0.0000,16.6251,16.6254,0 +1931,0.0000,0.0000,16.6402,16.6405,0 +1932,0.0000,0.0000,16.7269,16.7272,1 +1933,0.0000,0.0000,16.7630,16.7633,1 +1934,0.0000,0.0000,16.5627,16.5629,0 +1935,0.0000,0.0000,16.6454,16.6457,0 +1936,0.0000,0.0000,16.7006,16.7009,1 +1937,0.0000,0.0000,16.6326,16.6329,0 +1938,0.0000,0.0000,16.6775,16.6778,1 +1939,0.0000,0.0000,16.6934,16.6937,1 +1940,0.0000,0.0000,16.7184,16.7187,1 +1941,0.0000,0.0000,16.6043,16.6046,0 +1942,0.0000,0.0000,16.6883,16.6886,1 +1943,0.0000,0.0000,16.6467,16.6470,0 +1944,0.0000,0.0000,16.6961,16.6964,1 +1945,0.0000,0.0000,16.6471,16.6474,0 +1946,0.0000,0.0000,16.7464,16.7467,1 +1947,0.0000,0.0000,16.6023,16.6026,0 +1948,0.0000,0.0000,16.6566,16.6569,0 +1949,0.0000,0.0000,16.6806,16.6809,1 +1950,0.0000,0.0000,16.6829,16.6832,1 +1951,0.0000,0.0000,16.7352,16.7355,1 +1952,0.0000,0.0000,16.6039,16.6042,0 +1953,0.0000,0.0000,16.7310,16.7313,1 +1954,0.0000,0.0000,16.5980,16.5983,0 +1955,0.0000,0.0000,16.6721,16.6723,1 +1956,0.0000,0.0000,16.7098,16.7101,1 +1957,0.0000,0.0000,16.6520,16.6523,0 +1958,0.0000,0.0000,16.7232,16.7235,1 +1959,0.0000,0.0000,16.6134,16.6137,0 +1960,0.0000,0.0000,16.5778,16.5781,0 +1961,0.0000,0.0000,7.0257,7.0260,0 +1962,0.0000,0.0000,9.7800,9.7803,0 +1963,0.0000,0.0000,16.6851,16.6854,1 +1964,0.0000,0.0000,16.6640,16.6643,0 +1965,0.0000,0.0000,16.6788,16.6791,1 +1966,0.0000,0.0000,16.6886,16.6889,1 +1967,0.0000,0.0000,16.6135,16.6138,0 +1968,0.0000,0.0000,16.6516,16.6519,0 +1969,0.0000,0.0000,16.7184,16.7187,1 +1970,0.0000,0.0000,16.6318,16.6321,0 +1971,0.0000,0.0000,16.6689,16.6692,1 +1972,0.0000,0.0000,16.7205,16.7208,1 +1973,0.0000,0.0000,16.5805,16.5808,0 +1974,0.0000,0.0000,16.6820,16.6824,1 +1975,0.0000,0.0000,16.8350,16.8353,1 +1976,0.0000,0.0000,16.5715,16.5718,0 +1977,0.0000,0.0000,16.7148,16.7151,1 +1978,0.0000,0.0000,16.5853,16.5856,0 +1979,0.0000,0.0000,16.6556,16.6559,0 +1980,0.0000,0.0000,16.6408,16.6411,0 +1981,0.0000,0.0000,16.6762,16.6765,1 +1982,0.0000,0.0000,16.6009,16.6012,0 +1983,0.0000,0.0000,15.5761,15.5764,0 +1984,0.0000,0.0000,16.6388,16.6390,0 +1985,0.0000,0.0000,17.8744,17.8746,1 +1986,0.0000,0.0000,16.6524,16.6527,0 +1987,0.0000,0.0000,16.7367,16.7370,1 +1988,0.0000,0.0000,16.6981,16.6984,1 +1989,0.0000,0.0000,16.6508,16.6511,0 +1990,0.0000,0.0000,16.7618,16.7621,1 +1991,0.0000,0.0000,16.5509,16.5512,0 +1992,0.0000,0.0000,16.6478,16.6481,0 +1993,0.0000,0.0000,16.7073,16.7076,1 +1994,0.0000,0.0000,16.4165,16.4168,0 +1995,0.0000,0.0000,7.3928,7.3931,0 +1996,0.0000,0.0000,9.6035,9.6037,0 +1997,0.0000,0.0000,16.6062,16.6065,0 +1998,0.0000,0.0000,16.7089,16.7093,1 +1999,0.0000,0.0000,16.6637,16.6640,0 +2000,0.0000,0.0000,16.6150,16.6153,0 +2001,0.0000,0.0000,16.6690,16.6693,1 +2002,0.0000,0.0000,16.6706,16.6709,1 +2003,0.0000,0.0000,16.6585,16.6588,0 +2004,0.0000,0.0000,16.6857,16.6860,1 +2005,0.0000,0.0000,16.6470,16.6473,0 +2006,0.0000,0.0000,16.6657,16.6660,0 +2007,0.0000,0.0000,16.6334,16.6337,0 +2008,0.0000,0.0000,16.7469,16.7472,1 +2009,0.0000,0.0000,16.6793,16.6796,1 +2010,0.0000,0.0000,16.6562,16.6565,0 +2011,0.0000,0.0000,16.6175,16.6178,0 +2012,0.0000,0.0000,7.0690,7.0693,0 +2013,0.0000,0.0000,9.7044,9.7047,0 +2014,0.0000,0.0000,16.6148,16.6151,0 +2015,0.0000,0.0000,16.6831,16.6834,1 +2016,0.0000,0.0000,16.7075,16.7078,1 +2017,0.0000,0.0000,16.6017,16.6020,0 +2018,0.0000,0.0000,16.6887,16.6890,1 +2019,0.0000,0.0000,16.7389,16.7392,1 +2020,0.0000,0.0000,16.6438,16.6441,0 +2021,0.0000,0.0000,16.6528,16.6531,0 +2022,0.0000,0.0000,16.6442,16.6445,0 +2023,0.0000,0.0000,16.6670,16.6673,1 +2024,0.0000,0.0000,16.6694,16.6697,1 +2025,0.0000,0.0000,16.7057,16.7059,1 +2026,0.0000,0.0000,16.6376,16.6379,0 +2027,0.0000,0.0000,16.7048,16.7051,1 +2028,0.0000,0.0000,16.6270,16.6273,0 +2029,0.0000,0.0000,16.4612,16.4615,0 +2030,0.0000,0.0000,7.3253,7.3256,0 +2031,0.0000,0.0000,9.6801,9.6804,0 +2032,0.0000,0.0000,16.5760,16.5763,0 +2033,0.0000,0.0000,16.6710,16.6713,1 +2034,0.0000,0.0000,15.3983,15.3986,0 +2035,0.0000,0.0000,16.5693,16.5695,0 +2036,0.0000,0.0000,16.5956,16.5957,0 +2037,0.0000,0.0000,16.6884,16.6886,1 +2038,0.0000,0.0000,18.3082,18.3084,1 +2039,0.0000,0.0000,16.5115,16.5118,0 +2040,0.0000,0.0000,16.6159,16.6162,0 +2041,0.0000,0.0000,16.6981,16.6984,1 +2042,0.0000,0.0000,16.7702,16.7705,1 +2043,0.0000,0.0000,16.5552,16.5555,0 +2044,0.0000,0.0000,16.6395,16.6398,0 +2045,0.0000,0.0000,16.6569,16.6572,0 +2046,0.0000,0.0000,16.7013,16.7016,1 +2047,0.0000,0.0000,16.6852,16.6855,1 +2048,0.0000,0.0000,16.6475,16.6478,0 +2049,0.0000,0.0000,16.7211,16.7214,1 +2050,0.0000,0.0000,16.6463,16.6466,0 +2051,0.0000,0.0000,16.6380,16.6383,0 +2052,0.0000,0.0000,16.6661,16.6664,0 +2053,0.0000,0.0000,16.6921,16.6924,1 +2054,0.0000,0.0000,16.6549,16.6551,0 +2055,0.0000,0.0000,16.6789,16.6792,1 +2056,0.0000,0.0000,16.6689,16.6692,1 +2057,0.0000,0.0000,16.6776,16.6779,1 +2058,0.0000,0.0000,16.7279,16.7282,1 +2059,0.0000,0.0000,16.6108,16.6111,0 +2060,0.0000,0.0000,16.6660,16.6663,0 +2061,0.0000,0.0000,16.6534,16.6537,0 +2062,0.0000,0.0000,16.8424,16.8427,1 +2063,0.0000,0.0000,16.5988,16.5992,0 +2064,0.0000,0.0000,15.5541,15.5543,0 +2065,0.0000,0.0000,16.2495,16.2496,0 +2066,0.0000,0.0000,16.2415,16.2417,0 +2067,0.0000,0.0000,16.4324,16.4325,0 +2068,0.0000,0.0000,18.4587,18.4589,1 +2069,0.0000,0.0000,8.0628,8.0631,0 +2070,0.0000,0.0000,9.0217,9.0220,0 +2071,0.0000,0.0000,16.6537,16.6540,0 +2072,0.0000,0.0000,16.6627,16.6630,0 +2073,0.0000,0.0000,16.7160,16.7163,1 +2074,0.0000,0.0000,16.6194,16.6197,0 +2075,0.0000,0.0000,16.6913,16.6916,1 +2076,0.0000,0.0000,16.6292,16.6404,0 +2077,0.0000,0.0000,16.6650,16.6653,0 +2078,0.0000,0.0000,16.1556,16.1559,0 +2079,0.0000,0.0000,16.0037,16.0039,0 +2080,0.0000,0.0000,16.6892,16.6894,1 +2081,0.0000,0.0000,16.6534,16.6536,0 +2082,0.0000,0.0000,16.6705,16.6706,1 +2083,0.0000,0.0000,16.6496,16.6497,0 +2084,0.0000,0.0000,16.6348,16.6350,0 +2085,0.0000,0.0000,16.7326,16.7328,1 +2086,0.0000,0.0000,17.9040,17.9042,1 +2087,0.0000,0.0000,16.6716,16.6719,1 +2088,0.0000,0.0000,16.6479,16.6482,0 +2089,0.0000,0.0000,16.7120,16.7123,1 +2090,0.0000,0.0000,16.6131,16.6134,0 +2091,0.0000,0.0000,16.7283,16.7286,1 +2092,0.0000,0.0000,16.6076,16.6079,0 +2093,0.0000,0.0000,16.6697,16.6700,1 +2094,0.0000,0.0000,16.6506,16.6509,0 +2095,0.0000,0.0000,16.7351,16.7354,1 +2096,0.0000,0.0000,16.6235,16.6238,0 +2097,0.0000,0.0000,16.6942,16.6945,1 +2098,0.0000,0.0000,16.6922,16.6926,1 +2099,0.0000,0.0000,16.6607,16.6610,0 +2100,0.0000,0.0000,16.6890,16.6893,1 +2101,0.0000,0.0000,16.6317,16.6320,0 +2102,0.0000,0.0000,16.6514,16.6517,0 +2103,0.0000,0.0000,16.7355,16.7358,1 +2104,0.0000,0.0000,16.6482,16.6485,0 +2105,0.0000,0.0000,16.6853,16.6857,1 +2106,0.0000,0.0000,16.6354,16.6357,0 +2107,0.0000,0.0000,16.0710,16.0713,0 +2108,0.0000,0.0000,16.1137,16.1139,0 +2109,0.0000,0.0000,17.8334,17.8336,1 +2110,0.0000,0.0000,16.6493,16.6496,0 +2111,0.0000,0.0000,16.6417,16.6420,0 +2112,0.0000,0.0000,16.7228,16.7231,1 +2113,0.0000,0.0000,16.6514,16.6517,0 +2114,0.0000,0.0000,16.6814,16.6817,1 +2115,0.0000,0.0000,16.6544,16.6547,0 +2116,0.0000,0.0000,16.7079,16.7082,1 +2117,0.0000,0.0000,16.6128,16.6131,0 +2118,0.0000,0.0000,16.7299,16.7302,1 +2119,0.0000,0.0000,16.6149,16.6152,0 +2120,0.0000,0.0000,16.7141,16.7144,1 +2121,0.0000,0.0000,16.6511,16.6514,0 +2122,0.0000,0.0000,16.6934,16.6937,1 +2123,0.0000,0.0000,16.6868,16.6871,1 +2124,0.0000,0.0000,16.6509,16.6512,0 +2125,0.0000,0.0000,16.6418,16.6421,0 +2126,0.0000,0.0000,16.6745,16.6748,1 +2127,0.0000,0.0000,16.6204,16.6207,0 +2128,0.0000,0.0000,16.7941,16.7944,1 +2129,0.0000,0.0000,16.7071,16.7074,1 +2130,0.0000,0.0000,16.6112,16.6116,0 +2131,0.0000,0.0000,16.6933,16.6936,1 +2132,0.0000,0.0000,16.6306,16.6309,0 +2133,0.0000,0.0000,16.6447,16.6450,0 +2134,0.0000,0.0000,16.7091,16.7094,1 +2135,0.0000,0.0000,16.6210,16.6213,0 +2136,0.0000,0.0000,16.6836,16.6839,1 +2137,0.0000,0.0000,16.6919,16.6922,1 +2138,0.0000,0.0000,16.6635,16.6638,0 +2139,0.0000,0.0000,16.5953,16.5956,0 +2140,0.0000,0.0000,16.7522,16.7525,1 +2141,0.0000,0.0000,16.6990,16.6993,1 +2142,0.0000,0.0000,16.6302,16.6305,0 +2143,0.0000,0.0000,16.6764,16.6768,1 +2144,0.0000,0.0000,16.6307,16.6310,0 +2145,0.0000,0.0000,16.7343,16.7347,1 +2146,0.0000,0.0000,16.6343,16.6346,0 +2147,0.0000,0.0000,16.7315,16.7318,1 +2148,0.0000,0.0000,16.5847,16.5850,0 +2149,0.0000,0.0000,15.2987,15.2990,0 +2150,0.0000,0.0000,17.1644,17.1646,1 +2151,0.0000,0.0000,17.5329,17.5332,1 +2152,0.0000,0.0000,16.7723,16.7726,1 +2153,0.0000,0.0000,16.6369,16.6372,0 +2154,0.0000,0.0000,16.7474,16.7477,1 +2155,0.0000,0.0000,16.5717,16.5720,0 +2156,0.0000,0.0000,16.6415,16.6418,0 +2157,0.0000,0.0000,16.7430,16.7433,1 +2158,0.0000,0.0000,16.7484,16.7487,1 +2159,0.0000,0.0000,16.7531,16.7535,1 +2160,0.0000,0.0000,16.6710,16.6713,1 +2161,0.0000,0.0000,16.5983,16.5986,0 +2162,0.0000,0.0000,16.5605,16.5609,0 +2163,0.0000,0.0000,16.7110,16.7113,1 +2164,0.0000,0.0000,16.8465,16.8468,1 +2165,0.0000,0.0000,15.2677,15.2679,0 +2166,0.0000,0.0000,16.5403,16.5406,0 +2167,0.0000,0.0000,16.7766,16.7768,1 +2168,0.0000,0.0000,16.7090,16.7092,1 +2169,0.0000,0.0000,16.6200,16.6202,0 +2170,0.0000,0.0000,16.5964,16.5967,0 +2171,0.0000,0.0000,16.7429,16.7431,1 +2172,0.0000,0.0000,16.6771,16.6773,1 +2173,0.0000,0.0000,16.6853,16.6856,1 +2174,0.0000,0.0000,16.6616,16.6618,0 +2175,0.0000,0.0000,16.6373,16.6376,0 +2176,0.0000,0.0000,16.6404,16.6406,0 +2177,0.0000,0.0000,17.3411,17.3413,1 +2178,0.0000,0.0000,17.2957,17.2960,1 +2179,0.0000,0.0000,16.7025,16.7027,1 +2180,0.0000,0.0000,16.6621,16.6624,0 +2181,0.0000,0.0000,16.6047,16.6050,0 +2182,0.0000,0.0000,16.6190,16.6193,0 +2183,0.0000,0.0000,16.7198,16.7201,1 +2184,0.0000,0.0000,16.7261,16.7264,1 +2185,0.0000,0.0000,16.6435,16.6438,0 +2186,0.0000,0.0000,16.7600,16.7603,1 +2187,0.0000,0.0000,16.5566,16.5569,0 +2188,0.0000,0.0000,16.6915,16.6919,1 +2189,0.0000,0.0000,16.7273,16.7276,1 +2190,0.0000,0.0000,16.6096,16.6099,0 +2191,0.0000,0.0000,16.6941,16.6944,1 +2192,0.0000,0.0000,16.7213,16.7216,1 +2193,0.0000,0.0000,16.5758,16.5761,0 +2194,0.0000,0.0000,16.7283,16.7285,1 +2195,0.0000,0.0000,15.8087,15.8089,0 +2196,0.0000,0.0000,16.1100,16.1102,0 +2197,0.0000,0.0000,16.5830,16.5832,0 +2198,0.0000,0.0000,16.7033,16.7035,1 +2199,0.0000,0.0000,16.7296,16.7298,1 +2200,0.0000,0.0000,16.6401,16.6402,0 +2201,0.0000,0.0000,16.6858,16.6859,1 +2202,0.0000,0.0000,16.6513,16.6515,0 +2203,0.0000,0.0000,16.6375,16.6376,0 +2204,0.0000,0.0000,16.7407,16.7409,1 +2205,0.0000,0.0000,16.6112,16.6114,0 +2206,0.0000,0.0000,17.2617,17.2619,1 +2207,0.0000,0.0000,17.5284,17.5288,1 +2208,0.0000,0.0000,16.6634,16.6637,0 +2209,0.0000,0.0000,16.6672,16.6675,1 +2210,0.0000,0.0000,16.6577,16.6579,0 +2211,0.0000,0.0000,16.6638,16.6641,0 +2212,0.0000,0.0000,16.7018,16.7021,1 +2213,0.0000,0.0000,16.7515,16.7519,1 +2214,0.0000,0.0000,16.5832,16.5835,0 +2215,0.0000,0.0000,16.8111,16.8114,1 +2216,0.0000,0.0000,16.6490,16.6493,0 +2217,0.0000,0.0000,16.6153,16.6156,0 +2218,0.0000,0.0000,16.6097,16.6100,0 +2219,0.0000,0.0000,16.8292,16.8295,1 +2220,0.0000,0.0000,16.6154,16.6157,0 +2221,0.0000,0.0000,16.6457,16.6460,0 +2222,0.0000,0.0000,15.7305,15.7307,0 +2223,0.0000,0.0000,16.1209,16.1210,0 +2224,0.0000,0.0000,16.7302,16.7303,1 +2225,0.0000,0.0000,16.5356,16.5357,0 +2226,0.0000,0.0000,16.7171,16.7173,1 +2227,0.0000,0.0000,16.6529,16.6530,0 +2228,0.0000,0.0000,16.6778,16.6779,1 +2229,0.0000,0.0000,16.7127,16.7128,1 +2230,0.0000,0.0000,16.6591,16.6592,0 +2231,0.0000,0.0000,17.2117,17.2119,1 +2232,0.0000,0.0000,17.6037,17.6040,1 +2233,0.0000,0.0000,16.6779,16.6782,1 +2234,0.0000,0.0000,16.6345,16.6348,0 +2235,0.0000,0.0000,16.6247,16.6250,0 +2236,0.0000,0.0000,16.6903,16.6906,1 +2237,0.0000,0.0000,16.6536,16.6539,0 +2238,0.0000,0.0000,16.6766,16.6769,1 +2239,0.0000,0.0000,16.6578,16.6581,0 +2240,0.0000,0.0000,16.6703,16.6706,1 +2241,0.0000,0.0000,16.6877,16.6880,1 +2242,0.0000,0.0000,16.6891,16.6894,1 +2243,0.0000,0.0000,16.6376,16.6379,0 +2244,0.0000,0.0000,16.6870,16.6873,1 +2245,0.0000,0.0000,16.6265,16.6268,0 +2246,0.0000,0.0000,16.7228,16.7232,1 +2247,0.0000,0.0000,16.6864,16.6867,1 +2248,0.0000,0.0000,16.6856,16.6858,1 +2249,0.0000,0.0000,16.6521,16.6524,0 +2250,0.0000,0.0000,16.6550,16.6553,0 +2251,0.0000,0.0000,16.6679,16.6682,1 +2252,0.0000,0.0000,16.6997,16.7000,1 +2253,0.0000,0.0000,16.6476,16.6479,0 +2254,0.0000,0.0000,16.6486,16.6489,0 +2255,0.0000,0.0000,16.6677,16.6680,1 +2256,0.0000,0.0000,16.7908,16.7911,1 +2257,0.0000,0.0000,16.6169,16.6173,0 +2258,0.0000,0.0000,16.6831,16.6834,1 +2259,0.0000,0.0000,16.6089,16.6092,0 +2260,0.0000,0.0000,16.7074,16.7077,1 +2261,0.0000,0.0000,16.6300,16.6303,0 +2262,0.0000,0.0000,16.7066,16.7069,1 +2263,0.0000,0.0000,16.6702,16.6705,1 +2264,0.0000,0.0000,16.6688,16.6691,1 +2265,0.0000,0.0000,16.6902,16.6905,1 +2266,0.0000,0.0000,16.6221,16.6224,0 +2267,0.0000,0.0000,16.6846,16.6849,1 +2268,0.0000,0.0000,16.6883,16.6886,1 +2269,0.0000,0.0000,16.6944,16.6947,1 +2270,0.0000,0.0000,16.6177,16.6181,0 +2271,0.0000,0.0000,16.6851,16.6854,1 +2272,0.0000,0.0000,16.6547,16.6550,0 +2273,0.0000,0.0000,16.6991,16.6994,1 +2274,0.0000,0.0000,16.6445,16.6448,0 +2275,0.0000,0.0000,16.6751,16.6754,1 +2276,0.0000,0.0000,16.7117,16.7120,1 +2277,0.0000,0.0000,16.6216,16.6219,0 +2278,0.0000,0.0000,16.6919,16.6921,1 +2279,0.0000,0.0000,16.6379,16.6382,0 +2280,0.0000,0.0000,16.7029,16.7032,1 +2281,0.0000,0.0000,16.6658,16.6661,0 +2282,0.0000,0.0000,16.6558,16.6561,0 +2283,0.0000,0.0000,16.6693,16.6696,1 +2284,0.0000,0.0000,16.6775,16.6778,1 +2285,0.0000,0.0000,16.6793,16.6796,1 +2286,0.0000,0.0000,16.6661,16.6664,0 +2287,0.0000,0.0000,16.6902,16.6905,1 +2288,0.0000,0.0000,16.6703,16.6706,1 +2289,0.0000,0.0000,16.7366,16.7369,1 +2290,0.0000,0.0000,16.5811,16.5814,0 +2291,0.0000,0.0000,16.6897,16.6900,1 +2292,0.0000,0.0000,16.6638,16.6641,0 +2293,0.0000,0.0000,16.7279,16.7281,1 +2294,0.0000,0.0000,16.6924,16.6926,1 +2295,0.0000,0.0000,16.6302,16.6305,0 +2296,0.0000,0.0000,16.6615,16.6619,0 +2297,0.0000,0.0000,16.6068,16.6071,0 +2298,0.0000,0.0000,16.7085,16.7088,1 +2299,0.0000,0.0000,16.6215,16.6218,0 +2300,0.0000,0.0000,16.7472,16.7476,1 +2301,0.0000,0.0000,16.6890,16.6893,1 +2302,0.0000,0.0000,16.6475,16.6478,0 +2303,0.0000,0.0000,16.6538,16.6541,0 +2304,0.0000,0.0000,16.6306,16.6309,0 +2305,0.0000,0.0000,16.6592,16.6595,0 +2306,0.0000,0.0000,16.7172,16.7175,1 +2307,0.0000,0.0000,16.6911,16.6914,1 +2308,0.0000,0.0000,16.6564,16.6567,0 +2309,0.0000,0.0000,16.6843,16.6847,1 +2310,0.0000,0.0000,16.6487,16.6490,0 +2311,0.0000,0.0000,16.6506,16.6509,0 +2312,0.0000,0.0000,16.7480,16.7483,1 +2313,0.0000,0.0000,16.6029,16.6032,0 +2314,0.0000,0.0000,16.6945,16.6948,1 +2315,0.0000,0.0000,16.6436,16.6439,0 +2316,0.0000,0.0000,16.7210,16.7213,1 +2317,0.0000,0.0000,16.6505,16.6509,0 +2318,0.0000,0.0000,16.6644,16.6647,0 +2319,0.0000,0.0000,16.6684,16.6687,1 +2320,0.0000,0.0000,16.7145,16.7148,1 +2321,0.0000,0.0000,16.6562,16.6565,0 +2322,0.0000,0.0000,16.6112,16.6115,0 +2323,0.0000,0.0000,16.6989,16.6992,1 +2324,0.0000,0.0000,16.6647,16.6650,0 +2325,0.0000,0.0000,16.8055,16.8059,1 +2326,0.0000,0.0000,16.5139,16.5142,0 +2327,0.0000,0.0000,16.7087,16.7090,1 +2328,0.0000,0.0000,16.6279,16.6282,0 +2329,0.0000,0.0000,16.6786,16.6789,1 +2330,0.0000,0.0000,16.7465,16.7468,1 +2331,0.0000,0.0000,16.6078,16.6081,0 +2332,0.0000,0.0000,16.6758,16.6761,1 +2333,0.0000,0.0000,16.6733,16.6737,1 +2334,0.0000,0.0000,16.6495,16.6498,0 +2335,0.0000,0.0000,16.6829,16.6831,1 +2336,0.0000,0.0000,16.6548,16.6551,0 +2337,0.0000,0.0000,16.6845,16.6848,1 +2338,0.0000,0.0000,16.6616,16.6620,0 +2339,0.0000,0.0000,16.7670,16.7673,1 +2340,0.0000,0.0000,16.6057,16.6060,0 +2341,0.0000,0.0000,16.7097,16.7100,1 +2342,0.0000,0.0000,16.6365,16.6368,0 +2343,0.0000,0.0000,16.6932,16.6935,1 +2344,0.0000,0.0000,16.6345,16.6348,0 +2345,0.0000,0.0000,16.6807,16.6810,1 +2346,0.0000,0.0000,16.6640,16.6643,0 +2347,0.0000,0.0000,16.6418,16.6421,0 +2348,0.0000,0.0000,16.7062,16.7065,1 +2349,0.0000,0.0000,16.6427,16.6430,0 +2350,0.0000,0.0000,16.7024,16.7027,1 +2351,0.0000,0.0000,16.6882,16.6885,1 +2352,0.0000,0.0000,16.6744,16.6747,1 +2353,0.0000,0.0000,16.6074,16.6077,0 +2354,0.0000,0.0000,16.6746,16.6749,1 +2355,0.0000,0.0000,16.6721,16.6724,1 +2356,0.0000,0.0000,16.7430,16.7433,1 +2357,0.0000,0.0000,16.6881,16.6884,1 +2358,0.0000,0.0000,16.7981,16.7984,1 +2359,0.0000,0.0000,16.5372,16.5375,0 +2360,0.0000,0.0000,16.6279,16.6282,0 +2361,0.0000,0.0000,16.6925,16.6928,1 +2362,0.0000,0.0000,16.6232,16.6235,0 +2363,0.0000,0.0000,16.6080,16.6083,0 +2364,0.0000,0.0000,16.7455,16.7459,1 +2365,0.0000,0.0000,16.6491,16.6494,0 +2366,0.0000,0.0000,16.7339,16.7342,1 +2367,0.0000,0.0000,16.6216,16.6220,0 +2368,0.0000,0.0000,16.6795,16.6798,1 +2369,0.0000,0.0000,16.6212,16.6215,0 +2370,0.0000,0.0000,16.7485,16.7488,1 +2371,0.0000,0.0000,16.5823,16.5826,0 +2372,0.0000,0.0000,16.7415,16.7418,1 +2373,0.0000,0.0000,16.6040,16.6043,0 +2374,0.0000,0.0000,16.7399,16.7402,1 +2375,0.0000,0.0000,16.6644,16.6647,0 +2376,0.0000,0.0000,16.6354,16.6357,0 +2377,0.0000,0.0000,16.6436,16.6439,0 +2378,0.0000,0.0000,16.7323,16.7326,1 +2379,0.0000,0.0000,16.6344,16.6347,0 +2380,0.0000,0.0000,16.6759,16.6762,1 +2381,0.0000,0.0000,16.7306,16.7309,1 +2382,0.0000,0.0000,16.6323,16.6326,0 +2383,0.0000,0.0000,16.6933,16.6936,1 +2384,0.0000,0.0000,16.7482,16.7485,1 +2385,0.0000,0.0000,16.5242,16.5244,0 +2386,0.0000,0.0000,16.7234,16.7237,1 +2387,0.0000,0.0000,16.6279,16.6282,0 +2388,0.0000,0.0000,16.7895,16.7898,1 +2389,0.0000,0.0000,16.6262,16.6265,0 +2390,0.0000,0.0000,16.6173,16.6176,0 +2391,0.0000,0.0000,16.6541,16.6544,0 +2392,0.0000,0.0000,16.7177,16.7180,1 +2393,0.0000,0.0000,16.7398,16.7401,1 +2394,0.0000,0.0000,16.5941,16.5943,0 +2395,0.0000,0.0000,16.6754,16.6757,1 +2396,0.0000,0.0000,16.8024,16.8027,1 +2397,0.0000,0.0000,16.5913,16.5916,0 +2398,0.0000,0.0000,16.6208,16.6211,0 +2399,0.0000,0.0000,16.7907,16.7910,1 +2400,0.0000,0.0000,16.6611,16.6614,0 +2401,0.0000,0.0000,16.5429,16.5432,0 +2402,0.0000,0.0000,16.7042,16.7045,1 +2403,0.0000,0.0000,16.6288,16.6291,0 +2404,0.0000,0.0000,16.6685,16.6688,1 +2405,0.0000,0.0000,16.6667,16.6670,1 +2406,0.0000,0.0000,16.6752,16.6755,1 +2407,0.0000,0.0000,16.6677,16.6680,1 +2408,0.0000,0.0000,16.7354,16.7357,1 +2409,0.0000,0.0000,16.5836,16.5839,0 +2410,0.0000,0.0000,16.6968,16.6971,1 +2411,0.0000,0.0000,16.7137,16.7140,1 +2412,0.0000,0.0000,16.5865,16.5868,0 +2413,0.0000,0.0000,16.7280,16.7283,1 +2414,0.0000,0.0000,16.8339,16.8342,1 +2415,0.0000,0.0000,16.5294,16.5297,0 +2416,0.0000,0.0000,16.7077,16.7080,1 +2417,0.0000,0.0000,16.6224,16.6227,0 +2418,0.0000,0.0000,16.6298,16.6301,0 +2419,0.0000,0.0000,16.6688,16.6691,1 +2420,0.0000,0.0000,16.7313,16.7316,1 +2421,0.0000,0.0000,16.6074,16.6077,0 +2422,0.0000,0.0000,16.5970,16.5973,0 +2423,0.0000,0.0000,16.7304,16.7307,1 +2424,0.0000,0.0000,16.7032,16.7035,1 +2425,0.0000,0.0000,16.6562,16.6565,0 +2426,0.0000,0.0000,15.1812,15.1814,0 +2427,0.0000,0.0000,16.6785,16.6786,1 +2428,0.0000,0.0000,16.6234,16.6235,0 +2429,0.0000,0.0000,16.7323,16.7324,1 +2430,0.0000,0.0000,16.6580,16.6581,0 +2431,0.0000,0.0000,16.7074,16.7076,1 +2432,0.0000,0.0000,16.6347,16.6348,0 +2433,0.0000,0.0000,16.6676,16.6677,1 +2434,0.0000,0.0000,16.6203,16.6204,0 +2435,0.0000,0.0000,16.7562,16.7563,1 +2436,0.0000,0.0000,16.6689,16.6691,1 +2437,0.0000,0.0000,16.6750,16.6751,1 +2438,0.0000,0.0000,17.1392,17.1394,1 +2439,0.0000,0.0000,17.6477,17.6480,1 +2440,0.0000,0.0000,16.6813,16.6816,1 +2441,0.0000,0.0000,16.6717,16.6720,1 +2442,0.0000,0.0000,16.6938,16.6941,1 +2443,0.0000,0.0000,16.6808,16.6811,1 +2444,0.0000,0.0000,16.7042,16.7045,1 +2445,0.0000,0.0000,16.7096,16.7099,1 +2446,0.0000,0.0000,16.5890,16.5893,0 +2447,0.0000,0.0000,16.7238,16.7241,1 +2448,0.0000,0.0000,16.6255,16.6258,0 +2449,0.0000,0.0000,16.6783,16.6786,1 +2450,0.0000,0.0000,16.6321,16.6324,0 +2451,0.0000,0.0000,16.6919,16.6922,1 +2452,0.0000,0.0000,16.6767,16.6770,1 +2453,0.0000,0.0000,16.6493,16.6496,0 +2454,0.0000,0.0000,16.7085,16.7088,1 +2455,0.0000,0.0000,16.7187,16.7190,1 +2456,0.0000,0.0000,16.6309,16.6312,0 +2457,0.0000,0.0000,16.6134,16.6137,0 +2458,0.0000,0.0000,16.6958,16.6961,1 +2459,0.0000,0.0000,16.8046,16.8049,1 +2460,0.0000,0.0000,16.5894,16.5896,0 +2461,0.0000,0.0000,16.6279,16.6282,0 +2462,0.0000,0.0000,16.5310,16.5313,0 +2463,0.0000,0.0000,16.8074,16.8077,1 +2464,0.0000,0.0000,16.6323,16.6326,0 +2465,0.0000,0.0000,16.6723,16.6725,1 +2466,0.0000,0.0000,16.6861,16.6864,1 +2467,0.0000,0.0000,16.8056,16.8059,1 +2468,0.0000,0.0000,16.5480,16.5483,0 +2469,0.0000,0.0000,16.6744,16.6747,1 +2470,0.0000,0.0000,16.6397,16.6400,0 +2471,0.0000,0.0000,16.7704,16.7707,1 +2472,0.0000,0.0000,16.5920,16.5923,0 +2473,0.0000,0.0000,16.6788,16.6791,1 +2474,0.0000,0.0000,16.6612,16.6615,0 +2475,0.0000,0.0000,16.7328,16.7331,1 +2476,0.0000,0.0000,16.5910,16.5913,0 +2477,0.0000,0.0000,16.6532,16.6535,0 +2478,0.0000,0.0000,16.8050,16.8053,1 +2479,0.0000,0.0000,16.5291,16.5294,0 +2480,0.0000,0.0000,16.6548,16.6551,0 +2481,0.0000,0.0000,16.6803,16.6806,1 +2482,0.0000,0.0000,16.6479,16.6482,0 +2483,0.0000,0.0000,16.6925,16.6928,1 +2484,0.0000,0.0000,16.7374,16.7378,1 +2485,0.0000,0.0000,16.6820,16.6823,1 +2486,0.0000,0.0000,16.6416,16.6419,0 +2487,0.0000,0.0000,16.6700,16.6704,1 +2488,0.0000,0.0000,16.6604,16.6607,0 +2489,0.0000,0.0000,16.6953,16.6956,1 +2490,0.0000,0.0000,16.7554,16.7557,1 +2491,0.0000,0.0000,16.5637,16.5640,0 +2492,0.0000,0.0000,16.7365,16.7368,1 +2493,0.0000,0.0000,16.5948,16.5951,0 +2494,0.0000,0.0000,16.7008,16.7011,1 +2495,0.0000,0.0000,16.6292,16.6295,0 +2496,0.0000,0.0000,16.7810,16.7813,1 +2497,0.0000,0.0000,16.6049,16.6052,0 +2498,0.0000,0.0000,16.6055,16.6058,0 +2499,0.0000,0.0000,16.7619,16.7622,1 +2500,0.0000,0.0000,16.6508,16.6511,0 +2501,0.0000,0.0000,16.6599,16.6602,0 +2502,0.0000,0.0000,16.6658,16.6661,0 +2503,0.0000,0.0000,16.6622,16.6625,0 +2504,0.0000,0.0000,16.6476,16.6479,0 +2505,0.0000,0.0000,16.6760,16.6763,1 +2506,0.0000,0.0000,16.6371,16.6374,0 +2507,0.0000,0.0000,16.7080,16.7083,1 +2508,0.0000,0.0000,16.7218,16.7221,1 +2509,0.0000,0.0000,16.6207,16.6210,0 +2510,0.0000,0.0000,16.7470,16.7473,1 +2511,0.0000,0.0000,16.6590,16.6593,0 +2512,0.0000,0.0000,16.6663,16.6666,0 +2513,0.0000,0.0000,16.7479,16.7482,1 +2514,0.0000,0.0000,16.5545,16.5548,0 +2515,0.0000,0.0000,16.6847,16.6850,1 +2516,0.0000,0.0000,16.6728,16.6731,1 +2517,0.0000,0.0000,16.7015,16.7017,1 +2518,0.0000,0.0000,16.6495,16.6498,0 +2519,0.0000,0.0000,16.7118,16.7121,1 +2520,0.0000,0.0000,16.6274,16.6277,0 +2521,0.0000,0.0000,16.7090,16.7093,1 +2522,0.0000,0.0000,16.6892,16.6895,1 +2523,0.0000,0.0000,16.6173,16.6176,0 +2524,0.0000,0.0000,16.6318,16.6321,0 +2525,0.0000,0.0000,16.7317,16.7320,1 +2526,0.0000,0.0000,16.6603,16.6606,0 +2527,0.0000,0.0000,16.6459,16.6462,0 +2528,0.0000,0.0000,16.6578,16.6581,0 +2529,0.0000,0.0000,16.6693,16.6696,1 +2530,0.0000,0.0000,16.7250,16.7253,1 +2531,0.0000,0.0000,16.5926,16.5929,0 +2532,0.0000,0.0000,16.6316,16.6319,0 +2533,0.0000,0.0000,16.7232,16.7235,1 +2534,0.0000,0.0000,16.6792,16.6795,1 +2535,0.0000,0.0000,16.6980,16.6983,1 +2536,0.0000,0.0000,16.6309,16.6312,0 +2537,0.0000,0.0000,16.7096,16.7100,1 +2538,0.0000,0.0000,16.6687,16.6691,1 +2539,0.0000,0.0000,15.5275,15.5278,0 +2540,0.0000,0.0000,16.6077,16.6079,0 +2541,0.0000,0.0000,16.6472,16.6473,0 +2542,0.0000,0.0000,16.7513,16.7514,1 +2543,0.0000,0.0000,16.6049,16.6051,0 +2544,0.0000,0.0000,16.6610,16.6612,0 +2545,0.0000,0.0000,16.6645,16.6648,0 +2546,0.0000,0.0000,16.7602,16.7604,1 +2547,0.0000,0.0000,16.6068,16.6070,0 +2548,0.0000,0.0000,16.6806,16.6808,1 +2549,0.0000,0.0000,16.5988,16.5990,0 +2550,0.0000,0.0000,17.2384,17.2387,1 +2551,0.0000,0.0000,17.4018,17.4021,1 +2552,0.0000,0.0000,16.6180,16.6183,0 +2553,0.0000,0.0000,16.7184,16.7187,1 +2554,0.0000,0.0000,16.6283,16.6286,0 +2555,0.0000,0.0000,16.7085,16.7088,1 +2556,0.0000,0.0000,16.6097,16.6100,0 +2557,0.0000,0.0000,16.7216,16.7220,1 +2558,0.0000,0.0000,16.6251,16.6254,0 +2559,0.0000,0.0000,16.7128,16.7131,1 +2560,0.0000,0.0000,16.6416,16.6419,0 +2561,0.0000,0.0000,16.6721,16.6724,1 +2562,0.0000,0.0000,16.7580,16.7583,1 +2563,0.0000,0.0000,16.6207,16.6210,0 +2564,0.0000,0.0000,16.7058,16.7061,1 +2565,0.0000,0.0000,16.6009,16.6012,0 +2566,0.0000,0.0000,16.6788,16.6791,1 +2567,0.0000,0.0000,16.6543,16.6546,0 +2568,0.0000,0.0000,16.6798,16.6801,1 +2569,0.0000,0.0000,16.6109,16.6112,0 +2570,0.0000,0.0000,16.7242,16.7245,1 +2571,0.0000,0.0000,16.7024,16.7027,1 +2572,0.0000,0.0000,16.6951,16.6954,1 +2573,0.0000,0.0000,16.6707,16.6710,1 +2574,0.0000,0.0000,16.6230,16.6233,0 +2575,0.0000,0.0000,16.8285,16.8288,1 +2576,0.0000,0.0000,16.5612,16.5615,0 +2577,0.0000,0.0000,16.7335,16.7338,1 +2578,0.0000,0.0000,16.5372,16.5375,0 +2579,0.0000,0.0000,16.8862,16.8865,1 +2580,0.0000,0.0000,16.5442,16.5445,0 +2581,0.0000,0.0000,16.4900,16.4903,0 +2582,0.0000,0.0000,16.8144,16.8147,1 +2583,0.0000,0.0000,16.6185,16.6188,0 +2584,0.0000,0.0000,16.6387,16.6390,0 +2585,0.0000,0.0000,16.7028,16.7031,1 +2586,0.0000,0.0000,16.6736,16.6739,1 +2587,0.0000,0.0000,16.6613,16.6616,0 +2588,0.0000,0.0000,16.6862,16.6865,1 +2589,0.0000,0.0000,16.6964,16.6966,1 +2590,0.0000,0.0000,16.6281,16.6284,0 +2591,0.0000,0.0000,16.7220,16.7223,1 +2592,0.0000,0.0000,16.6099,16.6102,0 +2593,0.0000,0.0000,16.7458,16.7461,1 +2594,0.0000,0.0000,16.6787,16.6790,1 +2595,0.0000,0.0000,16.5998,16.6001,0 +2596,0.0000,0.0000,16.6498,16.6501,0 +2597,0.0000,0.0000,16.6977,16.6980,1 +2598,0.0000,0.0000,16.7022,16.7025,1 +2599,0.0000,0.0000,16.6228,16.6231,0 +2600,0.0000,0.0000,16.6412,16.6415,0 +2601,0.0000,0.0000,16.7246,16.7249,1 +2602,0.0000,0.0000,16.7319,16.7322,1 +2603,0.0000,0.0000,16.6127,16.6130,0 +2604,0.0000,0.0000,16.6853,16.6856,1 +2605,0.0000,0.0000,16.6663,16.6666,0 +2606,0.0000,0.0000,16.6483,16.6486,0 +2607,0.0000,0.0000,16.7699,16.7702,1 +2608,0.0000,0.0000,16.5836,16.5839,0 +2609,0.0000,0.0000,16.7189,16.7192,1 +2610,0.0000,0.0000,16.6302,16.6305,0 +2611,0.0000,0.0000,16.6341,16.6344,0 +2612,0.0000,0.0000,16.7133,16.7136,1 +2613,0.0000,0.0000,16.6563,16.6566,0 +2614,0.0000,0.0000,16.6584,16.6587,0 +2615,0.0000,0.0000,16.6866,16.6869,1 +2616,0.0000,0.0000,16.6825,16.6828,1 +2617,0.0000,0.0000,16.6320,16.6324,0 +2618,0.0000,0.0000,16.7213,16.7216,1 +2619,0.0000,0.0000,16.6450,16.6453,0 +2620,0.0000,0.0000,16.6792,16.6795,1 +2621,0.0000,0.0000,16.7327,16.7330,1 +2622,0.0000,0.0000,16.6102,16.6105,0 +2623,0.0000,0.0000,16.6447,16.6450,0 +2624,0.0000,0.0000,16.7337,16.7340,1 +2625,0.0000,0.0000,16.2472,16.2475,0 +2626,0.0000,0.0000,15.6006,15.6008,0 +2627,0.0000,0.0000,18.0688,18.0690,1 +2628,0.0000,0.0000,16.7434,16.7437,1 +2629,0.0000,0.0000,16.6757,16.6760,1 +2630,0.0000,0.0000,16.6397,16.6400,0 +2631,0.0000,0.0000,16.6857,16.6860,1 +2632,0.0000,0.0000,16.6642,16.6645,0 +2633,0.0000,0.0000,16.6797,16.6800,1 +2634,0.0000,0.0000,16.6882,16.6885,1 +2635,0.0000,0.0000,16.5771,16.5774,0 +2636,0.0000,0.0000,16.7201,16.7204,1 +2637,0.0000,0.0000,16.7188,16.7191,1 +2638,0.0000,0.0000,16.6632,16.6635,0 +2639,0.0000,0.0000,16.6435,16.6438,0 +2640,0.0000,0.0000,16.6650,16.6653,0 +2641,0.0000,0.0000,16.7087,16.7090,1 +2642,0.0000,0.0000,16.6340,16.6343,0 +2643,0.0000,0.0000,16.6869,16.6872,1 +2644,0.0000,0.0000,16.7271,16.7274,1 +2645,0.0000,0.0000,16.7518,16.7521,1 +2646,0.0000,0.0000,16.5542,16.5546,0 +2647,0.0000,0.0000,16.6859,16.6862,1 +2648,0.0000,0.0000,16.6097,16.6100,0 +2649,0.0000,0.0000,16.6529,16.6532,0 +2650,0.0000,0.0000,16.7145,16.7148,1 +2651,0.0000,0.0000,16.6645,16.6648,0 +2652,0.0000,0.0000,16.3530,16.3533,0 +2653,0.0000,0.0000,15.7848,15.7850,0 +2654,0.0000,0.0000,16.6918,16.6919,1 +2655,0.0000,0.0000,16.5885,16.5887,0 +2656,0.0000,0.0000,16.7560,16.7561,1 +2657,0.0000,0.0000,16.6696,16.6698,1 +2658,0.0000,0.0000,16.6723,16.6724,1 +2659,0.0000,0.0000,16.6352,16.6354,0 +2660,0.0000,0.0000,16.6824,16.6826,1 +2661,0.0000,0.0000,16.6608,16.6610,0 +2662,0.0000,0.0000,16.6905,16.6907,1 +2663,0.0000,0.0000,16.6807,16.6808,1 +2664,0.0000,0.0000,16.6930,16.6932,1 +2665,0.0000,0.0000,17.8138,17.8140,1 +2666,0.0000,0.0000,16.6574,16.6577,0 +2667,0.0000,0.0000,16.7500,16.7503,1 +2668,0.0000,0.0000,16.6361,16.6364,0 +2669,0.0000,0.0000,16.6864,16.6867,1 +2670,0.0000,0.0000,16.6555,16.6558,0 +2671,0.0000,0.0000,16.6387,16.6390,0 +2672,0.0000,0.0000,16.7047,16.7050,1 +2673,0.0000,0.0000,16.6582,16.6585,0 +2674,0.0000,0.0000,16.6821,16.6824,1 +2675,0.0000,0.0000,16.6777,16.6780,1 +2676,0.0000,0.0000,16.5856,16.5859,0 +2677,0.0000,0.0000,16.7461,16.7464,1 +2678,0.0000,0.0000,16.6348,16.6351,0 +2679,0.0000,0.0000,16.7645,16.7648,1 +2680,0.0000,0.0000,16.6300,16.6303,0 +2681,0.0000,0.0000,16.6655,16.6658,0 +2682,0.0000,0.0000,16.6225,16.6228,0 +2683,0.0000,0.0000,16.7303,16.7306,1 +2684,0.0000,0.0000,16.6203,16.6206,0 +2685,0.0000,0.0000,16.7735,16.7738,1 +2686,0.0000,0.0000,16.5535,16.5538,0 +2687,0.0000,0.0000,16.7504,16.7507,1 +2688,0.0000,0.0000,16.7413,16.7416,1 +2689,0.0000,0.0000,16.5739,16.5742,0 +2690,0.0000,0.0000,16.6743,16.6746,1 +2691,0.0000,0.0000,16.6255,16.6258,0 +2692,0.0000,0.0000,16.7236,16.7239,1 +2693,0.0000,0.0000,16.6486,16.6489,0 +2694,0.0000,0.0000,16.6478,16.6481,0 +2695,0.0000,0.0000,16.6676,16.6679,1 +2696,0.0000,0.0000,16.6795,16.6798,1 +2697,0.0000,0.0000,16.6963,16.6966,1 +2698,0.0000,0.0000,16.7052,16.7055,1 +2699,0.0000,0.0000,16.7358,16.7361,1 +2700,0.0000,0.0000,16.5976,16.5979,0 +2701,0.0000,0.0000,16.6796,16.6799,1 +2702,0.0000,0.0000,16.7629,16.7632,1 +2703,0.0000,0.0000,16.5385,16.5388,0 +2704,0.0000,0.0000,16.7147,16.7150,1 +2705,0.0000,0.0000,16.6407,16.6411,0 +2706,0.0000,0.0000,16.6660,16.6663,0 +2707,0.0000,0.0000,16.6558,16.6561,0 +2708,0.0000,0.0000,16.6829,16.6832,1 +2709,0.0000,0.0000,16.6357,16.6360,0 +2710,0.0000,0.0000,16.6813,16.6816,1 +2711,0.0000,0.0000,16.6791,16.6794,1 +2712,0.0000,0.0000,16.7387,16.7390,1 +2713,0.0000,0.0000,16.6196,16.6199,0 +2714,0.0000,0.0000,16.6947,16.6950,1 +2715,0.0000,0.0000,16.6300,16.6303,0 +2716,0.0000,0.0000,16.6352,16.6355,0 +2717,0.0000,0.0000,16.7221,16.7224,1 +2718,0.0000,0.0000,16.7097,16.7100,1 +2719,0.0000,0.0000,16.6054,16.6056,0 +2720,0.0000,0.0000,16.6942,16.6945,1 +2721,0.0000,0.0000,16.6686,16.6689,1 +2722,0.0000,0.0000,16.6394,16.6397,0 +2723,0.0000,0.0000,16.6930,16.6933,1 +2724,0.0000,0.0000,16.7133,16.7136,1 +2725,0.0000,0.0000,16.5856,16.5859,0 +2726,0.0000,0.0000,16.7317,16.7320,1 +2727,0.0000,0.0000,16.6301,16.6304,0 +2728,0.0000,0.0000,16.7155,16.7158,1 +2729,0.0000,0.0000,16.6090,16.6093,0 +2730,0.0000,0.0000,16.7002,16.7005,1 +2731,0.0000,0.0000,16.7207,16.7210,1 +2732,0.0000,0.0000,16.6429,16.6432,0 +2733,0.0000,0.0000,16.6949,16.6952,1 +2734,0.0000,0.0000,16.6408,16.6411,0 +2735,0.0000,0.0000,16.6284,16.6287,0 +2736,0.0000,0.0000,16.8029,16.8032,1 +2737,0.0000,0.0000,16.6238,16.6241,0 +2738,0.0000,0.0000,16.6308,16.6311,0 +2739,0.0000,0.0000,16.7442,16.7445,1 +2740,0.0000,0.0000,16.5910,16.5913,0 +2741,0.0000,0.0000,16.6157,16.6160,0 +2742,0.0000,0.0000,16.7645,16.7647,1 +2743,0.0000,0.0000,16.6255,16.6258,0 +2744,0.0000,0.0000,16.6827,16.6830,1 +2745,0.0000,0.0000,16.6466,16.6469,0 +2746,0.0000,0.0000,16.6637,16.6640,0 +2747,0.0000,0.0000,16.6947,16.6949,1 +2748,0.0000,0.0000,16.6875,16.6878,1 +2749,0.0000,0.0000,16.6241,16.6244,0 +2750,0.0000,0.0000,16.6778,16.6781,1 +2751,0.0000,0.0000,16.7033,16.7036,1 +2752,0.0000,0.0000,16.6555,16.6558,0 +2753,0.0000,0.0000,16.7070,16.7073,1 +2754,0.0000,0.0000,16.6277,16.6280,0 +2755,0.0000,0.0000,16.6544,16.6547,0 +2756,0.0000,0.0000,16.6378,16.6381,0 +2757,0.0000,0.0000,16.8002,16.8005,1 +2758,0.0000,0.0000,16.5850,16.5853,0 +2759,0.0000,0.0000,16.8912,16.8915,1 +2760,0.0000,0.0000,16.5370,16.5374,0 +2761,0.0000,0.0000,16.7248,16.7251,1 +2762,0.0000,0.0000,16.5237,16.5240,0 +2763,0.0000,0.0000,16.6780,16.6783,1 +2764,0.0000,0.0000,16.7043,16.7047,1 +2765,0.0000,0.0000,16.6240,16.6243,0 +2766,0.0000,0.0000,16.7496,16.7499,1 +2767,0.0000,0.0000,16.7825,16.7828,1 +2768,0.0000,0.0000,15.3711,15.3712,0 +2769,0.0000,0.0000,16.3548,16.3550,0 +2770,0.0000,0.0000,16.6995,16.6996,1 +2771,0.0000,0.0000,18.0443,18.0445,1 +2772,0.0000,0.0000,16.7081,16.7084,1 +2773,0.0000,0.0000,16.6701,16.6704,1 +2774,0.0000,0.0000,16.6886,16.6889,1 +2775,0.0000,0.0000,16.6280,16.6283,0 +2776,0.0000,0.0000,16.6678,16.6681,1 +2777,0.0000,0.0000,16.6603,16.6606,0 +2778,0.0000,0.0000,16.7244,16.7247,1 +2779,0.0000,0.0000,16.7490,16.7493,1 +2780,0.0000,0.0000,16.5901,16.5904,0 +2781,0.0000,0.0000,16.6499,16.6502,0 +2782,0.0000,0.0000,16.6697,16.6700,1 +2783,0.0000,0.0000,16.6564,16.6567,0 +2784,0.0000,0.0000,16.6906,16.6909,1 +2785,0.0000,0.0000,16.6679,16.6682,1 +2786,0.0000,0.0000,16.6823,16.6826,1 +2787,0.0000,0.0000,16.7061,16.7064,1 +2788,0.0000,0.0000,16.5942,16.5945,0 +2789,0.0000,0.0000,16.7202,16.7205,1 +2790,0.0000,0.0000,16.6559,16.6562,0 +2791,0.0000,0.0000,16.6592,16.6595,0 +2792,0.0000,0.0000,16.7155,16.7158,1 +2793,0.0000,0.0000,16.6447,16.6450,0 +2794,0.0000,0.0000,16.6410,16.6413,0 +2795,0.0000,0.0000,16.6572,16.6575,0 +2796,0.0000,0.0000,16.7274,16.7278,1 +2797,0.0000,0.0000,16.6873,16.6876,1 +2798,0.0000,0.0000,16.6774,16.6777,1 +2799,0.0000,0.0000,16.5985,16.5988,0 +2800,0.0000,0.0000,16.6718,16.6721,1 +2801,0.0000,0.0000,16.6567,16.6570,0 +2802,0.0000,0.0000,16.7008,16.7011,1 +2803,0.0000,0.0000,16.6705,16.6708,1 +2804,0.0000,0.0000,16.6639,16.6642,0 +2805,0.0000,0.0000,16.6463,16.6466,0 +2806,0.0000,0.0000,16.7647,16.7650,1 +2807,0.0000,0.0000,16.6120,16.6123,0 +2808,0.0000,0.0000,16.7178,16.7181,1 +2809,0.0000,0.0000,16.6417,16.6420,0 +2810,0.0000,0.0000,16.6411,16.6414,0 +2811,0.0000,0.0000,16.6722,16.6726,1 +2812,0.0000,0.0000,16.6913,16.6916,1 +2813,0.0000,0.0000,16.6500,16.6503,0 +2814,0.0000,0.0000,16.8926,16.8929,1 +2815,0.0000,0.0000,16.6378,16.6381,0 +2816,0.0000,0.0000,16.5451,16.5454,0 +2817,0.0000,0.0000,16.6576,16.6579,0 +2818,0.0000,0.0000,16.6706,16.6709,1 +2819,0.0000,0.0000,16.6235,16.6238,0 +2820,0.0000,0.0000,16.7092,16.7095,1 +2821,0.0000,0.0000,16.6502,16.6505,0 +2822,0.0000,0.0000,16.7070,16.7073,1 +2823,0.0000,0.0000,16.6671,16.6673,1 +2824,0.0000,0.0000,16.6257,16.6260,0 +2825,0.0000,0.0000,16.7842,16.7845,1 +2826,0.0000,0.0000,16.5263,16.5266,0 +2827,0.0000,0.0000,16.7098,16.7101,1 +2828,0.0000,0.0000,16.7082,16.7085,1 +2829,0.0000,0.0000,16.6636,16.6639,0 +2830,0.0000,0.0000,16.6788,16.6791,1 +2831,0.0000,0.0000,16.6115,16.6118,0 +2832,0.0000,0.0000,16.7266,16.7269,1 +2833,0.0000,0.0000,16.6619,16.6622,0 +2834,0.0000,0.0000,16.6856,16.6859,1 +2835,0.0000,0.0000,16.6126,16.6129,0 +2836,0.0000,0.0000,16.6717,16.6720,1 +2837,0.0000,0.0000,16.6427,16.6430,0 +2838,0.0000,0.0000,16.6846,16.6849,1 +2839,0.0000,0.0000,16.7145,16.7148,1 +2840,0.0000,0.0000,16.6277,16.6280,0 +2841,0.0000,0.0000,16.9668,16.9670,1 +2842,0.0000,0.0000,29.8177,29.8179,1 +2843,0.0000,0.0000,18.4158,18.4159,1 +2844,0.0000,0.0000,16.6103,16.6105,0 +2845,0.0000,0.0000,16.6434,16.6436,0 +2846,0.0000,0.0000,16.5818,16.5819,0 +2847,0.0000,0.0000,16.5727,16.5728,0 +2848,0.0000,0.0000,16.8208,16.8209,1 +2849,0.0000,0.0000,17.8756,17.8758,1 +2850,0.0000,0.0000,17.2326,17.2329,1 +2851,0.0000,0.0000,16.6743,16.6746,1 +2852,0.0000,0.0000,16.5371,16.5374,0 +2853,0.0000,0.0000,15.5541,15.5543,0 +2854,0.0000,0.0000,16.7345,16.7347,1 +2855,0.0000,0.0000,17.7212,17.7214,1 +2856,0.0000,0.0000,16.6483,16.6486,0 +2857,0.0000,0.0000,16.6898,16.6901,1 +2858,0.0000,0.0000,16.8821,16.8824,1 +2859,0.0000,0.0000,16.6370,16.6372,0 +2860,0.0000,0.0000,16.4657,16.4660,0 +2861,0.0000,0.0000,16.6606,16.6609,0 +2862,0.0000,0.0000,16.6947,16.6950,1 +2863,0.0000,0.0000,16.6391,16.6394,0 +2864,0.0000,0.0000,16.8377,16.8380,1 +2865,0.0000,0.0000,16.5657,16.5660,0 +2866,0.0000,0.0000,16.8218,16.8221,1 +2867,0.0000,0.0000,16.5684,16.5688,0 +2868,0.0000,0.0000,16.5961,16.5964,0 +2869,0.0000,0.0000,16.7347,16.7350,1 +2870,0.0000,0.0000,16.6436,16.6439,0 +2871,0.0000,0.0000,16.9240,16.9243,1 +2872,0.0000,0.0000,16.8089,16.8092,1 +2873,0.0000,0.0000,15.0922,15.0924,0 +2874,0.0000,0.0000,16.6269,16.6270,0 +2875,0.0000,0.0000,16.6793,16.6794,1 +2876,0.0000,0.0000,16.3176,16.3177,0 +2877,0.0000,0.0000,16.3824,16.3825,0 +2878,0.0000,0.0000,18.7662,18.7664,1 +2879,0.0000,0.0000,16.7078,16.7081,1 +2880,0.0000,0.0000,16.3916,16.3919,0 +2881,0.0000,0.0000,16.6518,16.6521,0 +2882,0.0000,0.0000,16.8489,16.8492,1 +2883,0.0000,0.0000,16.5690,16.5693,0 +2884,0.0000,0.0000,16.9059,16.9062,1 +2885,0.0000,0.0000,15.5662,15.5665,0 +2886,0.0000,0.0000,16.4841,16.4843,0 +2887,0.0000,0.0000,16.7824,16.7825,1 +2888,0.0000,0.0000,16.5781,16.5783,0 +2889,0.0000,0.0000,15.8156,15.8158,0 +2890,0.0000,0.0000,19.1109,19.1110,1 +2891,0.0000,0.0000,14.4314,14.4314,0 +2892,0.0000,0.0000,16.6304,16.6305,0 +2893,0.0000,0.0000,16.5079,16.5079,0 +2894,0.0000,0.0000,17.2333,17.2335,1 +2895,0.0000,0.0000,16.0723,16.0725,0 +2896,0.0000,0.0000,16.6123,16.6124,0 +2897,0.0000,0.0000,17.2513,17.2513,1 +2898,0.0000,0.0000,16.1730,16.1732,0 +2899,0.0000,0.0000,16.6377,16.6378,0 +2900,0.0000,0.0000,16.6251,16.6251,0 +2901,0.0000,0.0000,16.9307,16.9307,1 +2902,0.0000,0.0000,16.5965,16.5967,0 +2903,0.0000,0.0000,16.7226,16.7227,1 +2904,0.0000,0.0000,16.5739,16.5740,0 +2905,0.0000,0.0000,17.0433,17.0434,1 +2906,0.0000,0.0000,16.4599,16.4600,0 +2907,0.0000,0.0000,16.3498,16.3499,0 +2908,0.0000,0.0000,16.6501,16.6502,0 +2909,0.0000,0.0000,16.8362,16.8363,1 +2910,0.0000,0.0000,16.4147,16.4148,0 +2911,0.0000,0.0000,16.6521,16.6522,0 +2912,0.0000,0.0000,17.4208,17.4210,1 +2913,0.0000,0.0000,16.8026,16.8029,1 +2914,0.0000,0.0000,17.2540,17.2542,1 +2915,0.0000,0.0000,17.3485,17.3488,1 +2916,0.0000,0.0000,16.6753,16.6756,1 +2917,0.0000,0.0000,16.6436,16.6439,0 +2918,0.0000,0.0000,16.5536,16.5539,0 +2919,0.0000,0.0000,16.7665,16.7668,1 +2920,0.0000,0.0000,16.6711,16.6714,1 +2921,0.0000,0.0000,16.7840,16.7843,1 +2922,0.0000,0.0000,16.5490,16.5493,0 +2923,0.0000,0.0000,16.7196,16.7199,1 +2924,0.0000,0.0000,16.6504,16.6508,0 +2925,0.0000,0.0000,15.4414,15.4417,0 +2926,0.0000,0.0000,16.6558,16.6560,0 +2927,0.0000,0.0000,16.6602,16.6604,0 +2928,0.0000,0.0000,16.6892,16.6894,1 +2929,0.0000,0.0000,16.6416,16.6418,0 +2930,0.0000,0.0000,16.6828,16.6830,1 +2931,0.0000,0.0000,16.6874,16.6875,1 +2932,0.0000,0.0000,17.2193,17.2195,1 +2933,0.0000,0.0000,17.2907,17.2910,1 +2934,0.0000,0.0000,16.7707,16.7710,1 +2935,0.0000,0.0000,16.5808,16.5811,0 +2936,0.0000,0.0000,16.6556,16.6559,0 +2937,0.0000,0.0000,16.8473,16.8476,1 +2938,0.0000,0.0000,15.5302,15.5304,0 +2939,0.0000,0.0000,16.5023,16.5024,0 +2940,0.0000,0.0000,16.6494,16.6495,0 +2941,0.0000,0.0000,16.6579,16.6581,0 +2942,0.0000,0.0000,16.6513,16.6515,0 +2943,0.0000,0.0000,16.6571,16.6573,0 +2944,0.0000,0.0000,16.8449,16.8450,1 +2945,0.0000,0.0000,17.9404,17.9406,1 +2946,0.0000,0.0000,16.7019,16.7022,1 +2947,0.0000,0.0000,16.6272,16.6275,0 +2948,0.0000,0.0000,16.4993,16.4996,0 +2949,0.0000,0.0000,16.6244,16.6249,0 +2950,0.0000,0.0000,16.7265,16.7268,1 +2951,0.0000,0.0000,16.6184,16.6187,0 +2952,0.0000,0.0000,16.7158,16.7161,1 +2953,0.0000,0.0000,16.6299,16.6302,0 +2954,0.0000,0.0000,16.7077,16.7080,1 +2955,0.0000,0.0000,16.6723,16.6726,1 +2956,0.0000,0.0000,16.7437,16.7440,1 +2957,0.0000,0.0000,16.6188,16.6191,0 +2958,0.0000,0.0000,16.5648,16.5651,0 +2959,0.0000,0.0000,16.7108,16.7111,1 +2960,0.0000,0.0000,16.6444,16.6447,0 +2961,0.0000,0.0000,16.7313,16.7316,1 +2962,0.0000,0.0000,16.6564,16.6567,0 +2963,0.0000,0.0000,16.7064,16.7067,1 +2964,0.0000,0.0000,16.6325,16.6328,0 +2965,0.0000,0.0000,15.2522,15.2525,0 +2966,0.0000,0.0000,17.2396,17.2398,1 +2967,0.0000,0.0000,17.4894,17.4897,1 +2968,0.0000,0.0000,16.7116,16.7119,1 +2969,0.0000,0.0000,16.6747,16.6750,1 +2970,0.0000,0.0000,16.7249,16.7252,1 +2971,0.0000,0.0000,16.6421,16.6424,0 +2972,0.0000,0.0000,16.6329,16.6332,0 +2973,0.0000,0.0000,16.6238,16.6241,0 +2974,0.0000,0.0000,16.7200,16.7203,1 +2975,0.0000,0.0000,16.6985,16.6988,1 +2976,0.0000,0.0000,16.5782,16.5785,0 +2977,0.0000,0.0000,16.7968,16.7971,1 +2978,0.0000,0.0000,16.6219,16.6222,0 +2979,0.0000,0.0000,16.6651,16.6654,0 +2980,0.0000,0.0000,16.7241,16.7243,1 +2981,0.0000,0.0000,16.6382,16.6385,0 +2982,0.0000,0.0000,16.6218,16.6221,0 +2983,0.0000,0.0000,16.6896,16.6899,1 +2984,0.0000,0.0000,16.6946,16.6950,1 +2985,0.0000,0.0000,16.6234,16.6237,0 +2986,0.0000,0.0000,16.8428,16.8431,1 +2987,0.0000,0.0000,16.6051,16.6054,0 +2988,0.0000,0.0000,16.6468,16.6471,0 +2989,0.0000,0.0000,16.6397,16.6400,0 +2990,0.0000,0.0000,16.6175,16.6178,0 +2991,0.0000,0.0000,16.6805,16.6808,1 +2992,0.0000,0.0000,16.6535,16.6538,0 +2993,0.0000,0.0000,16.7813,16.7816,1 +2994,0.0000,0.0000,16.6070,16.6073,0 +2995,0.0000,0.0000,16.7049,16.7052,1 +2996,0.0000,0.0000,16.6352,16.6355,0 +2997,0.0000,0.0000,16.6359,16.6362,0 +2998,0.0000,0.0000,16.6643,16.6646,0 +2999,0.0000,0.0000,16.7440,16.7443,1 +3000,0.0000,0.0000,16.6224,16.6227,0 +3001,0.0000,0.0000,16.8426,16.8429,1 +3002,0.0000,0.0000,16.5791,16.5795,0 +3003,0.0000,0.0000,16.6492,16.6495,0 +3004,0.0000,0.0000,16.6644,16.6648,0 +3005,0.0000,0.0000,16.6483,16.6486,0 +3006,0.0000,0.0000,16.7373,16.7376,1 +3007,0.0000,0.0000,16.6014,16.6017,0 +3008,0.0000,0.0000,16.6513,16.6516,0 +3009,0.0000,0.0000,16.6200,16.6203,0 +3010,0.0000,0.0000,16.7255,16.7258,1 +3011,0.0000,0.0000,16.7500,16.7503,1 +3012,0.0000,0.0000,16.6557,16.6560,0 +3013,0.0000,0.0000,16.6361,16.6363,0 +3014,0.0000,0.0000,16.6254,16.6257,0 +3015,0.0000,0.0000,16.6582,16.6585,0 +3016,0.0000,0.0000,16.6684,16.6687,1 +3017,0.0000,0.0000,16.7675,16.7678,1 +3018,0.0000,0.0000,16.7084,16.7087,1 +3019,0.0000,0.0000,16.5079,16.5082,0 +3020,0.0000,0.0000,16.6268,16.6271,0 +3021,0.0000,0.0000,16.7579,16.7582,1 +3022,0.0000,0.0000,16.7076,16.7079,1 +3023,0.0000,0.0000,16.6681,16.6684,1 +3024,0.0000,0.0000,15.4445,15.4448,0 +3025,0.0000,0.0000,16.7038,16.7040,1 +3026,0.0000,0.0000,16.6385,16.6386,0 +3027,0.0000,0.0000,16.6618,16.6620,0 +3028,0.0000,0.0000,16.6449,16.6452,0 +3029,0.0000,0.0000,17.8771,17.8774,1 +3030,0.0000,0.0000,16.7248,16.7251,1 +3031,0.0000,0.0000,16.7136,16.7139,1 +3032,0.0000,0.0000,16.6697,16.6700,1 +3033,0.0000,0.0000,16.6563,16.6566,0 +3034,0.0000,0.0000,16.6263,16.6266,0 +3035,0.0000,0.0000,16.6740,16.6743,1 +3036,0.0000,0.0000,16.7359,16.7362,1 +3037,0.0000,0.0000,16.5912,16.5915,0 +3038,0.0000,0.0000,16.6960,16.6963,1 +3039,0.0000,0.0000,16.6246,16.6249,0 +3040,0.0000,0.0000,16.6960,16.6963,1 +3041,0.0000,0.0000,16.6661,16.6664,0 +3042,0.0000,0.0000,16.6970,16.6973,1 +3043,0.0000,0.0000,16.6350,16.6353,0 +3044,0.0000,0.0000,16.7365,16.7368,1 +3045,0.0000,0.0000,16.6047,16.6050,0 +3046,0.0000,0.0000,16.6635,16.6638,0 +3047,0.0000,0.0000,16.6949,16.6952,1 +3048,0.0000,0.0000,16.6788,16.6791,1 +3049,0.0000,0.0000,16.7672,16.7675,1 +3050,0.0000,0.0000,16.6020,16.6023,0 +3051,0.0000,0.0000,16.5753,16.5756,0 +3052,0.0000,0.0000,16.6953,16.6957,1 +3053,0.0000,0.0000,16.7134,16.7137,1 +3054,0.0000,0.0000,17.0454,17.0457,1 +3055,0.0000,0.0000,16.4438,16.4442,0 +3056,0.0000,0.0000,16.5161,16.5164,0 +3057,0.0000,0.0000,16.6969,16.6972,1 +3058,0.0000,0.0000,16.6796,16.6799,1 +3059,0.0000,0.0000,16.6017,16.6020,0 +3060,0.0000,0.0000,16.6902,16.6905,1 +3061,0.0000,0.0000,16.6638,16.6642,0 +3062,0.0000,0.0000,16.6730,16.6733,1 +3063,0.0000,0.0000,16.7043,16.7046,1 +3064,0.0000,0.0000,16.7311,16.7314,1 +3065,0.0000,0.0000,16.7272,16.7275,1 +3066,0.0000,0.0000,16.6592,16.6595,0 +3067,0.0000,0.0000,16.6310,16.6313,0 +3068,0.0000,0.0000,16.6260,16.6263,0 +3069,0.0000,0.0000,16.6137,16.6140,0 +3070,0.0000,0.0000,16.6922,16.6925,1 +3071,0.0000,0.0000,16.6479,16.6482,0 +3072,0.0000,0.0000,16.7065,16.7068,1 +3073,0.0000,0.0000,15.5281,15.5284,0 +3074,0.0000,0.0000,16.6494,16.6497,0 +3075,0.0000,0.0000,16.6168,16.6171,0 +3076,0.0000,0.0000,16.6735,16.6738,1 +3077,0.0000,0.0000,16.6543,16.6544,0 +3078,0.0000,0.0000,16.6273,16.6274,0 +3079,0.0000,0.0000,16.7317,16.7318,1 +3080,0.0000,0.0000,17.9279,17.9282,1 +3081,0.0000,0.0000,16.2487,16.2489,0 +3082,0.0000,0.0000,15.6755,15.6757,0 +3083,0.0000,0.0000,17.1276,17.1278,1 +3084,0.0000,0.0000,17.5558,17.5561,1 +3085,0.0000,0.0000,16.7189,16.7192,1 +3086,0.0000,0.0000,16.6376,16.6379,0 +3087,0.0000,0.0000,16.6659,16.6662,0 +3088,0.0000,0.0000,16.6536,16.6539,0 +3089,0.0000,0.0000,16.7147,16.7150,1 +3090,0.0000,0.0000,16.5676,16.5679,0 +3091,0.0000,0.0000,16.7236,16.7239,1 +3092,0.0000,0.0000,16.7135,16.7138,1 +3093,0.0000,0.0000,16.6108,16.6112,0 +3094,0.0000,0.0000,16.6976,16.6980,1 +3095,0.0000,0.0000,16.6476,16.6479,0 +3096,0.0000,0.0000,16.7106,16.7109,1 +3097,0.0000,0.0000,16.7093,16.7096,1 +3098,0.0000,0.0000,16.6259,16.6262,0 +3099,0.0000,0.0000,16.6683,16.6686,1 +3100,0.0000,0.0000,16.6734,16.6736,1 +3101,0.0000,0.0000,16.6702,16.6705,1 +3102,0.0000,0.0000,16.6520,16.6523,0 +3103,0.0000,0.0000,16.7745,16.7748,1 +3104,0.0000,0.0000,16.6151,16.6154,0 +3105,0.0000,0.0000,16.6595,16.6598,0 +3106,0.0000,0.0000,16.6729,16.6732,1 +3107,0.0000,0.0000,16.6676,16.6680,1 +3108,0.0000,0.0000,16.6802,16.6805,1 +3109,0.0000,0.0000,16.6493,16.6496,0 +3110,0.0000,0.0000,16.6902,16.6905,1 +3111,0.0000,0.0000,16.6098,16.6101,0 +3112,0.0000,0.0000,16.7625,16.7628,1 +3113,0.0000,0.0000,16.6674,16.6677,1 +3114,0.0000,0.0000,16.6410,16.6413,0 +3115,0.0000,0.0000,16.7492,16.7495,1 +3116,0.0000,0.0000,16.6653,16.6656,0 +3117,0.0000,0.0000,16.6741,16.6744,1 +3118,0.0000,0.0000,16.7629,16.7632,1 +3119,0.0000,0.0000,16.4813,16.4816,0 +3120,0.0000,0.0000,16.6596,16.6599,0 +3121,0.0000,0.0000,16.7376,16.7380,1 +3122,0.0000,0.0000,16.6203,16.6206,0 +3123,0.0000,0.0000,16.6677,16.6680,1 +3124,0.0000,0.0000,16.6743,16.6746,1 +3125,0.0000,0.0000,16.6778,16.6781,1 +3126,0.0000,0.0000,16.6808,16.6811,1 +3127,0.0000,0.0000,16.6282,16.6285,0 +3128,0.0000,0.0000,16.7665,16.7668,1 +3129,0.0000,0.0000,16.5991,16.5994,0 +3130,0.0000,0.0000,16.6940,16.6943,1 +3131,0.0000,0.0000,16.7036,16.7039,1 +3132,0.0000,0.0000,16.5964,16.5967,0 +3133,0.0000,0.0000,16.6497,16.6500,0 +3134,0.0000,0.0000,16.7135,16.7137,1 +3135,0.0000,0.0000,16.7775,16.7778,1 +3136,0.0000,0.0000,16.6142,16.6144,0 +3137,0.0000,0.0000,16.6689,16.6692,1 +3138,0.0000,0.0000,16.6064,16.6067,0 +3139,0.0000,0.0000,16.7365,16.7368,1 +3140,0.0000,0.0000,16.6857,16.6860,1 +3141,0.0000,0.0000,16.6139,16.6142,0 +3142,0.0000,0.0000,16.6595,16.6599,0 +3143,0.0000,0.0000,16.7400,16.7402,1 +3144,0.0000,0.0000,16.6292,16.6296,0 +3145,0.0000,0.0000,16.5928,16.5931,0 +3146,0.0000,0.0000,16.7782,16.7785,1 +3147,0.0000,0.0000,16.6927,16.6930,1 +3148,0.0000,0.0000,16.6508,16.6511,0 +3149,0.0000,0.0000,16.7197,16.7200,1 +3150,0.0000,0.0000,16.5384,16.5387,0 +3151,0.0000,0.0000,16.6554,16.6557,0 +3152,0.0000,0.0000,16.8038,16.8042,1 +3153,0.0000,0.0000,16.6181,16.6184,0 +3154,0.0000,0.0000,16.6993,16.6996,1 +3155,0.0000,0.0000,16.6994,16.6997,1 +3156,0.0000,0.0000,16.5691,16.5694,0 +3157,0.0000,0.0000,16.6525,16.6528,0 +3158,0.0000,0.0000,16.6816,16.6819,1 +3159,0.0000,0.0000,16.7037,16.7040,1 +3160,0.0000,0.0000,16.7441,16.7444,1 +3161,0.0000,0.0000,16.6613,16.6616,0 +3162,0.0000,0.0000,16.6119,16.6122,0 +3163,0.0000,0.0000,16.6145,16.6148,0 +3164,0.0000,0.0000,16.6538,16.6541,0 +3165,0.0000,0.0000,16.7006,16.7009,1 +3166,0.0000,0.0000,16.8159,16.8162,1 +3167,0.0000,0.0000,16.5727,16.5730,0 +3168,0.0000,0.0000,16.6833,16.6836,1 +3169,0.0000,0.0000,16.6039,16.6042,0 +3170,0.0000,0.0000,16.6370,16.6373,0 +3171,0.0000,0.0000,16.6628,16.6631,0 +3172,0.0000,0.0000,16.7852,16.7855,1 +3173,0.0000,0.0000,16.6863,16.6866,1 +3174,0.0000,0.0000,16.6268,16.6271,0 +3175,0.0000,0.0000,16.6299,16.6302,0 +3176,0.0000,0.0000,16.5960,16.5963,0 +3177,0.0000,0.0000,16.7853,16.7856,1 +3178,0.0000,0.0000,16.6435,16.6438,0 +3179,0.0000,0.0000,16.6959,16.6962,1 +3180,0.0000,0.0000,16.6313,16.6316,0 +3181,0.0000,0.0000,16.6585,16.6588,0 +3182,0.0000,0.0000,16.7194,16.7197,1 +3183,0.0000,0.0000,16.6454,16.6457,0 +3184,0.0000,0.0000,16.7111,16.7114,1 +3185,0.0000,0.0000,16.5785,16.5788,0 +3186,0.0000,0.0000,16.7070,16.7073,1 +3187,0.0000,0.0000,16.6996,16.6999,1 +3188,0.0000,0.0000,16.6262,16.6265,0 +3189,0.0000,0.0000,16.3578,16.3580,0 +3190,0.0000,0.0000,15.8177,15.8179,0 +3191,0.0000,0.0000,16.5723,16.5725,0 +3192,0.0000,0.0000,16.7843,16.7844,1 +3193,0.0000,0.0000,16.6722,16.6724,1 +3194,0.0000,0.0000,16.6902,16.6903,1 +3195,0.0000,0.0000,16.6452,16.6453,0 +3196,0.0000,0.0000,16.6435,16.6437,0 +3197,0.0000,0.0000,16.6992,16.6995,1 +3198,0.0000,0.0000,16.6632,16.6634,0 +3199,0.0000,0.0000,16.5535,16.5538,0 +3200,0.0000,0.0000,17.9535,17.9537,1 +3201,0.0000,0.0000,16.6547,16.6550,0 +3202,0.0000,0.0000,15.5391,15.5393,0 +3203,0.0000,0.0000,16.6584,16.6585,0 +3204,0.0000,0.0000,16.6520,16.6521,0 +3205,0.0000,0.0000,16.6716,16.6718,1 +3206,0.0000,0.0000,16.6696,16.6697,1 +3207,0.0000,0.0000,16.6148,16.6149,0 +3208,0.0000,0.0000,17.9701,17.9703,1 +3209,0.0000,0.0000,16.7420,16.7423,1 +3210,0.0000,0.0000,16.6199,16.6202,0 +3211,0.0000,0.0000,16.6414,16.6417,0 +3212,0.0000,0.0000,16.6406,16.6410,0 +3213,0.0000,0.0000,16.5991,16.5994,0 +3214,0.0000,0.0000,16.7575,16.7578,1 +3215,0.0000,0.0000,16.6325,16.6328,0 +3216,0.0000,0.0000,16.3596,16.3599,0 +3217,0.0000,0.0000,15.8008,15.8011,0 +3218,0.0000,0.0000,17.1819,17.1822,1 +3219,0.0000,0.0000,17.3432,17.3435,1 +3220,0.0000,0.0000,16.7090,16.7092,1 +3221,0.0000,0.0000,16.6455,16.6458,0 +3222,0.0000,0.0000,16.7065,16.7068,1 +3223,0.0000,0.0000,16.6700,16.6703,1 +3224,0.0000,0.0000,16.6634,16.6637,0 +3225,0.0000,0.0000,16.6711,16.6714,1 +3226,0.0000,0.0000,16.6397,16.6400,0 +3227,0.0000,0.0000,16.6888,16.6891,1 +3228,0.0000,0.0000,16.6894,16.6897,1 +3229,0.0000,0.0000,16.6421,16.6424,0 +3230,0.0000,0.0000,16.6591,16.6594,0 +3231,0.0000,0.0000,16.6958,16.6961,1 +3232,0.0000,0.0000,16.6525,16.6528,0 +3233,0.0000,0.0000,16.6698,16.6701,1 +3234,0.0000,0.0000,16.6965,16.6968,1 +3235,0.0000,0.0000,16.6389,16.6392,0 +3236,0.0000,0.0000,16.6946,16.6949,1 +3237,0.0000,0.0000,16.6413,16.6416,0 +3238,0.0000,0.0000,16.8251,16.8254,1 +3239,0.0000,0.0000,16.5548,16.5551,0 +3240,0.0000,0.0000,16.7216,16.7219,1 +3241,0.0000,0.0000,16.6366,16.6369,0 +3242,0.0000,0.0000,16.5979,16.5982,0 +3243,0.0000,0.0000,16.7353,16.7356,1 +3244,0.0000,0.0000,16.7174,16.7177,1 +3245,0.0000,0.0000,16.6621,16.6624,0 +3246,0.0000,0.0000,16.6721,16.6724,1 +3247,0.0000,0.0000,16.6326,16.6329,0 +3248,0.0000,0.0000,16.6228,16.6231,0 +3249,0.0000,0.0000,16.7045,16.7048,1 +3250,0.0000,0.0000,16.5951,16.5954,0 +3251,0.0000,0.0000,16.8077,16.8080,1 +3252,0.0000,0.0000,16.7215,16.7218,1 +3253,0.0000,0.0000,16.6435,16.6438,0 +3254,0.0000,0.0000,15.9977,15.9980,0 +3255,0.0000,0.0000,16.0802,16.0804,0 +3256,0.0000,0.0000,16.5898,16.5899,0 +3257,0.0000,0.0000,16.7305,16.7307,1 +3258,0.0000,0.0000,16.6561,16.6563,0 +3259,0.0000,0.0000,16.6882,16.6883,1 +3260,0.0000,0.0000,17.8426,17.8428,1 +3261,0.0000,0.0000,16.6878,16.6881,1 +3262,0.0000,0.0000,16.6299,16.6302,0 +3263,0.0000,0.0000,16.7891,16.7894,1 +3264,0.0000,0.0000,16.5706,16.5709,0 +3265,0.0000,0.0000,16.6859,16.6862,1 +3266,0.0000,0.0000,16.6514,16.6517,0 +3267,0.0000,0.0000,16.6748,16.6751,1 +3268,0.0000,0.0000,16.6238,16.6240,0 +3269,0.0000,0.0000,16.7355,16.7358,1 +3270,0.0000,0.0000,16.6878,16.6881,1 +3271,0.0000,0.0000,16.6217,16.6220,0 +3272,0.0000,0.0000,16.8106,16.8109,1 +3273,0.0000,0.0000,16.5253,16.5256,0 +3274,0.0000,0.0000,16.7440,16.7443,1 +3275,0.0000,0.0000,16.5766,16.5769,0 +3276,0.0000,0.0000,16.7155,16.7158,1 +3277,0.0000,0.0000,16.6423,16.6426,0 +3278,0.0000,0.0000,16.6905,16.6908,1 +3279,0.0000,0.0000,16.6994,16.6997,1 +3280,0.0000,0.0000,16.6476,16.6479,0 +3281,0.0000,0.0000,16.6727,16.6730,1 +3282,0.0000,0.0000,16.6559,16.6562,0 +3283,0.0000,0.0000,16.6846,16.6849,1 +3284,0.0000,0.0000,16.7031,16.7035,1 +3285,0.0000,0.0000,16.5467,16.5470,0 +3286,0.0000,0.0000,16.7708,16.7711,1 +3287,0.0000,0.0000,16.6626,16.6629,0 +3288,0.0000,0.0000,16.7021,16.7024,1 +3289,0.0000,0.0000,16.6521,16.6524,0 +3290,0.0000,0.0000,16.6886,16.6889,1 +3291,0.0000,0.0000,16.6345,16.6348,0 +3292,0.0000,0.0000,16.6967,16.6970,1 +3293,0.0000,0.0000,16.7699,16.7702,1 +3294,0.0000,0.0000,16.6586,16.6589,0 +3295,0.0000,0.0000,16.6253,16.6256,0 +3296,0.0000,0.0000,16.6030,16.6034,0 +3297,0.0000,0.0000,16.7333,16.7336,1 +3298,0.0000,0.0000,17.0383,17.0386,1 +3299,0.0000,0.0000,16.2874,16.2877,0 +3300,0.0000,0.0000,16.6937,16.6940,1 +3301,0.0000,0.0000,16.6722,16.6725,1 +3302,0.0000,0.0000,16.6254,16.6257,0 +3303,0.0000,0.0000,16.6895,16.6898,1 +3304,0.0000,0.0000,16.6439,16.6442,0 +3305,0.0000,0.0000,16.6953,16.6955,1 +3306,0.0000,0.0000,16.7043,16.7046,1 +3307,0.0000,0.0000,16.6211,16.6214,0 +3308,0.0000,0.0000,16.6704,16.6707,1 +3309,0.0000,0.0000,16.6550,16.6553,0 +3310,0.0000,0.0000,16.6532,16.6535,0 +3311,0.0000,0.0000,16.7462,16.7465,1 +3312,0.0000,0.0000,16.6369,16.6372,0 +3313,0.0000,0.0000,16.6552,16.6555,0 +3314,0.0000,0.0000,16.6997,16.7000,1 +3315,0.0000,0.0000,16.6755,16.6758,1 +3316,0.0000,0.0000,16.6924,16.6927,1 +3317,0.0000,0.0000,16.6632,16.6635,0 +3318,0.0000,0.0000,16.6511,16.6514,0 +3319,0.0000,0.0000,16.6755,16.6758,1 +3320,0.0000,0.0000,16.6653,16.6657,0 +3321,0.0000,0.0000,16.6738,16.6741,1 +3322,0.0000,0.0000,16.6303,16.6306,0 +3323,0.0000,0.0000,16.6583,16.6586,0 +3324,0.0000,0.0000,15.8186,15.8188,0 +3325,0.0000,0.0000,16.1385,16.1387,0 +3326,0.0000,0.0000,16.5978,16.5980,0 +3327,0.0000,0.0000,16.7455,16.7457,1 +3328,0.0000,0.0000,18.0657,18.0659,1 +3329,0.0000,0.0000,16.6772,16.6775,1 +3330,0.0000,0.0000,16.6285,16.6288,0 +3331,0.0000,0.0000,16.7476,16.7479,1 +3332,0.0000,0.0000,16.6845,16.6848,1 +3333,0.0000,0.0000,16.6939,16.6942,1 +3334,0.0000,0.0000,16.5968,16.5971,0 +3335,0.0000,0.0000,16.6941,16.6944,1 +3336,0.0000,0.0000,16.7971,16.7974,1 +3337,0.0000,0.0000,16.5363,16.5366,0 +3338,0.0000,0.0000,16.6464,16.6467,0 +3339,0.0000,0.0000,16.6430,16.6433,0 +3340,0.0000,0.0000,16.6481,16.6484,0 +3341,0.0000,0.0000,16.7179,16.7183,1 +3342,0.0000,0.0000,16.7232,16.7235,1 +3343,0.0000,0.0000,16.6394,16.6397,0 +3344,0.0000,0.0000,16.7155,16.7158,1 +3345,0.0000,0.0000,16.6110,16.6113,0 +3346,0.0000,0.0000,16.7287,16.7290,1 +3347,0.0000,0.0000,16.6525,16.6528,0 +3348,0.0000,0.0000,16.6653,16.6656,0 +3349,0.0000,0.0000,16.6626,16.6629,0 +3350,0.0000,0.0000,16.6883,16.6886,1 +3351,0.0000,0.0000,15.7130,15.7133,0 +3352,0.0000,0.0000,16.1822,16.1824,0 +3353,0.0000,0.0000,18.0294,18.0296,1 +3354,0.0000,0.0000,16.6815,16.6818,1 +3355,0.0000,0.0000,16.7584,16.7587,1 +3356,0.0000,0.0000,16.5749,16.5752,0 +3357,0.0000,0.0000,16.6724,16.6727,1 +3358,0.0000,0.0000,16.6733,16.6736,1 +3359,0.0000,0.0000,16.6651,16.6655,0 +3360,0.0000,0.0000,16.6643,16.6646,0 +3361,0.0000,0.0000,16.7346,16.7349,1 +3362,0.0000,0.0000,16.5769,16.5772,0 +3363,0.0000,0.0000,16.7504,16.7506,1 +3364,0.0000,0.0000,16.6712,16.6715,1 +3365,0.0000,0.0000,16.6201,16.6204,0 +3366,0.0000,0.0000,16.6640,16.6643,0 +3367,0.0000,0.0000,16.6849,16.6852,1 +3368,0.0000,0.0000,16.8224,16.8227,1 +3369,0.0000,0.0000,16.5269,16.5272,0 +3370,0.0000,0.0000,16.3122,16.3125,0 +3371,0.0000,0.0000,7.3949,7.3952,0 +3372,0.0000,0.0000,9.7595,9.7599,0 +3373,0.0000,0.0000,16.5149,16.5152,0 +3374,0.0000,0.0000,16.4693,16.4696,0 +3375,0.0000,0.0000,7.3250,7.3253,0 +3376,0.0000,0.0000,9.6587,9.6591,0 +3377,0.0000,0.0000,16.5928,16.5931,0 +3378,0.0000,0.0000,16.7403,16.7406,1 +3379,0.0000,0.0000,16.5959,16.5962,0 +3380,0.0000,0.0000,16.6984,16.6987,1 +3381,0.0000,0.0000,16.6910,16.6913,1 +3382,0.0000,0.0000,16.6869,16.6872,1 +3383,0.0000,0.0000,16.7014,16.7017,1 +3384,0.0000,0.0000,16.6332,16.6335,0 +3385,0.0000,0.0000,16.6366,16.6369,0 +3386,0.0000,0.0000,16.6400,16.6403,0 +3387,0.0000,0.0000,16.6631,16.6634,0 +3388,0.0000,0.0000,16.6886,16.6889,1 +3389,0.0000,0.0000,16.6721,16.6724,1 +3390,0.0000,0.0000,16.6866,16.6869,1 +3391,0.0000,0.0000,16.7049,16.7052,1 +3392,0.0000,0.0000,16.6382,16.6385,0 +3393,0.0000,0.0000,16.7024,16.7027,1 +3394,0.0000,0.0000,16.6835,16.6838,1 +3395,0.0000,0.0000,16.6490,16.6493,0 +3396,0.0000,0.0000,16.6771,16.6774,1 +3397,0.0000,0.0000,16.6264,16.6267,0 +3398,0.0000,0.0000,16.6572,16.6575,0 +3399,0.0000,0.0000,16.7026,16.7029,1 +3400,0.0000,0.0000,16.6576,16.6580,0 +3401,0.0000,0.0000,16.7040,16.7043,1 +3402,0.0000,0.0000,16.6113,16.6116,0 +3403,0.0000,0.0000,16.6553,16.6556,0 +3404,0.0000,0.0000,16.7082,16.7085,1 +3405,0.0000,0.0000,16.6684,16.6687,1 +3406,0.0000,0.0000,16.7436,16.7439,1 +3407,0.0000,0.0000,16.5405,16.5408,0 +3408,0.0000,0.0000,7.1968,7.1971,0 +3409,0.0000,0.0000,9.5904,9.5907,0 +3410,0.0000,0.0000,16.6674,16.6677,1 +3411,0.0000,0.0000,16.5954,16.5957,0 +3412,0.0000,0.0000,16.7245,16.7248,1 +3413,0.0000,0.0000,16.6571,16.6575,0 +3414,0.0000,0.0000,16.6594,16.6597,0 +3415,0.0000,0.0000,16.6691,16.6694,1 +3416,0.0000,0.0000,16.6730,16.6733,1 +3417,0.0000,0.0000,16.6702,16.6705,1 +3418,0.0000,0.0000,16.6572,16.6575,0 +3419,0.0000,0.0000,16.7501,16.7504,1 +3420,0.0000,0.0000,16.5916,16.5919,0 +3421,0.0000,0.0000,16.7573,16.7576,1 +3422,0.0000,0.0000,16.6239,16.6242,0 +3423,0.0000,0.0000,16.6350,16.6353,0 +3424,0.0000,0.0000,16.6884,16.6887,1 +3425,0.0000,0.0000,16.6370,16.6374,0 +3426,0.0000,0.0000,16.6961,16.6964,1 +3427,0.0000,0.0000,16.6597,16.6600,0 +3428,0.0000,0.0000,16.7408,16.7411,1 +3429,0.0000,0.0000,16.7907,16.7910,1 +3430,0.0000,0.0000,16.5448,16.5451,0 +3431,0.0000,0.0000,16.6298,16.6301,0 +3432,0.0000,0.0000,16.6746,16.6749,1 +3433,0.0000,0.0000,16.6738,16.6741,1 +3434,0.0000,0.0000,16.7312,16.7315,1 +3435,0.0000,0.0000,16.5358,16.5360,0 +3436,0.0000,0.0000,16.6404,16.6407,0 +3437,0.0000,0.0000,16.6897,16.6900,1 +3438,0.0000,0.0000,16.7519,16.7522,1 +3439,0.0000,0.0000,16.6554,16.6557,0 +3440,0.0000,0.0000,16.6686,16.6689,1 +3441,0.0000,0.0000,16.6554,16.6556,0 +3442,0.0000,0.0000,16.6647,16.6650,0 +3443,0.0000,0.0000,16.6870,16.6873,1 +3444,0.0000,0.0000,16.7208,16.7211,1 +3445,0.0000,0.0000,16.6209,16.6212,0 +3446,0.0000,0.0000,16.7142,16.7145,1 +3447,0.0000,0.0000,16.6331,16.6334,0 +3448,0.0000,0.0000,16.6323,16.6326,0 +3449,0.0000,0.0000,16.6892,16.6895,1 +3450,0.0000,0.0000,16.6750,16.6753,1 +3451,0.0000,0.0000,16.6700,16.6703,1 +3452,0.0000,0.0000,16.6718,16.6721,1 +3453,0.0000,0.0000,16.7094,16.7097,1 +3454,0.0000,0.0000,16.6258,16.6260,0 +3455,0.0000,0.0000,16.6858,16.6861,1 +3456,0.0000,0.0000,16.6819,16.6822,1 +3457,0.0000,0.0000,16.6499,16.6502,0 +3458,0.0000,0.0000,16.6728,16.6731,1 +3459,0.0000,0.0000,16.7097,16.7100,1 +3460,0.0000,0.0000,16.7178,16.7180,1 +3461,0.0000,0.0000,16.5940,16.5943,0 +3462,0.0000,0.0000,16.6979,16.6982,1 +3463,0.0000,0.0000,16.6454,16.6457,0 +3464,0.0000,0.0000,16.6719,16.6722,1 +3465,0.0000,0.0000,16.6908,16.6911,1 +3466,0.0000,0.0000,16.6821,16.6824,1 +3467,0.0000,0.0000,16.6476,16.6479,0 +3468,0.0000,0.0000,16.7443,16.7446,1 +3469,0.0000,0.0000,16.6323,16.6326,0 +3470,0.0000,0.0000,16.6794,16.6797,1 +3471,0.0000,0.0000,16.6210,16.6213,0 +3472,0.0000,0.0000,16.6588,16.6591,0 +3473,0.0000,0.0000,16.6570,16.6573,0 +3474,0.0000,0.0000,16.7322,16.7325,1 +3475,0.0000,0.0000,16.6838,16.6841,1 +3476,0.0000,0.0000,16.6567,16.6570,0 +3477,0.0000,0.0000,16.6454,16.6457,0 +3478,0.0000,0.0000,16.6604,16.6607,0 +3479,0.0000,0.0000,16.6554,16.6557,0 +3480,0.0000,0.0000,16.6524,16.6527,0 +3481,0.0000,0.0000,16.9884,16.9887,1 +3482,0.0000,0.0000,16.5329,16.5332,0 +3483,0.0000,0.0000,16.5557,16.5560,0 +3484,0.0000,0.0000,16.6462,16.6465,0 +3485,0.0000,0.0000,16.6438,16.6441,0 +3486,0.0000,0.0000,16.6815,16.6818,1 +3487,0.0000,0.0000,16.7495,16.7498,1 +3488,0.0000,0.0000,16.6798,16.6801,1 +3489,0.0000,0.0000,16.5750,16.5753,0 +3490,0.0000,0.0000,16.6767,16.6770,1 +3491,0.0000,0.0000,16.6892,16.6895,1 +3492,0.0000,0.0000,16.7033,16.7036,1 +3493,0.0000,0.0000,16.6325,16.6328,0 +3494,0.0000,0.0000,16.6369,16.6372,0 +3495,0.0000,0.0000,16.6875,16.6878,1 +3496,0.0000,0.0000,16.7104,16.7107,1 +3497,0.0000,0.0000,16.6391,16.6394,0 +3498,0.0000,0.0000,16.7373,16.7376,1 +3499,0.0000,0.0000,16.6598,16.6601,0 +3500,0.0000,0.0000,16.6411,16.6414,0 +3501,0.0000,0.0000,16.7354,16.7357,1 +3502,0.0000,0.0000,16.6126,16.6129,0 +3503,0.0000,0.0000,16.6637,16.6639,0 +3504,0.0000,0.0000,16.6334,16.6338,0 +3505,0.0000,0.0000,16.6998,16.7001,1 +3506,0.0000,0.0000,16.6552,16.6554,0 +3507,0.0000,0.0000,16.7111,16.7113,1 +3508,0.0000,0.0000,16.7213,16.7216,1 +3509,0.0000,0.0000,16.6461,16.6464,0 +3510,0.0000,0.0000,16.5978,16.5981,0 +3511,0.0000,0.0000,16.6443,16.6446,0 +3512,0.0000,0.0000,16.7863,16.7866,1 +3513,0.0000,0.0000,16.6074,16.6077,0 +3514,0.0000,0.0000,16.6771,16.6774,1 +3515,0.0000,0.0000,16.6341,16.6345,0 +3516,0.0000,0.0000,16.6584,16.6587,0 +3517,0.0000,0.0000,16.6875,16.6878,1 +3518,0.0000,0.0000,16.6834,16.6837,1 +3519,0.0000,0.0000,16.6509,16.6512,0 +3520,0.0000,0.0000,16.6910,16.6913,1 +3521,0.0000,0.0000,16.6433,16.6436,0 +3522,0.0000,0.0000,16.6679,16.6682,1 +3523,0.0000,0.0000,16.6864,16.6867,1 +3524,0.0000,0.0000,16.6989,16.6992,1 +3525,0.0000,0.0000,16.6864,16.6867,1 +3526,0.0000,0.0000,16.6337,16.6340,0 +3527,0.0000,0.0000,16.4354,16.4357,0 +3528,0.0000,0.0000,7.2304,7.2307,0 +3529,0.0000,0.0000,9.8052,9.8055,0 +3530,0.0000,0.0000,16.5864,16.5867,0 +3531,0.0000,0.0000,16.6966,16.6969,1 +3532,0.0000,0.0000,16.6055,16.6058,0 +3533,0.0000,0.0000,16.7318,16.7321,1 +3534,0.0000,0.0000,16.5817,16.5820,0 +3535,0.0000,0.0000,16.6954,16.6957,1 +3536,0.0000,0.0000,16.6431,16.6434,0 +3537,0.0000,0.0000,16.8955,16.8958,1 +3538,0.0000,0.0000,16.4352,16.4355,0 +3539,0.0000,0.0000,16.7359,16.7362,1 +3540,0.0000,0.0000,16.6494,16.6497,0 +3541,0.0000,0.0000,16.6471,16.6474,0 +3542,0.0000,0.0000,16.7298,16.7301,1 +3543,0.0000,0.0000,16.6595,16.6598,0 +3544,0.0000,0.0000,16.6550,16.6553,0 +3545,0.0000,0.0000,16.6826,16.6829,1 +3546,0.0000,0.0000,16.2627,16.2630,0 +3547,0.0000,0.0000,7.2883,7.2886,0 +3548,0.0000,0.0000,9.8726,9.8729,0 +3549,0.0000,0.0000,16.5521,16.5524,0 +3550,0.0000,0.0000,16.6576,16.6579,0 +3551,0.0000,0.0000,16.6387,16.6390,0 +3552,0.0000,0.0000,16.6740,16.6744,1 +3553,0.0000,0.0000,16.7068,16.7071,1 +3554,0.0000,0.0000,16.6747,16.6750,1 +3555,0.0000,0.0000,16.6568,16.6571,0 +3556,0.0000,0.0000,16.6964,16.6967,1 +3557,0.0000,0.0000,16.6581,16.6584,0 +3558,0.0000,0.0000,16.7068,16.7071,1 +3559,0.0000,0.0000,16.6372,16.6375,0 +3560,0.0000,0.0000,16.6728,16.6730,1 +3561,0.0000,0.0000,16.7116,16.7119,1 +3562,0.0000,0.0000,16.6433,16.6436,0 +3563,0.0000,0.0000,16.7155,16.7158,1 +3564,0.0000,0.0000,16.6712,16.6715,1 +3565,0.0000,0.0000,16.6825,16.6828,1 +3566,0.0000,0.0000,16.6355,16.6358,0 +3567,0.0000,0.0000,16.6706,16.6709,1 +3568,0.0000,0.0000,16.6502,16.6505,0 +3569,0.0000,0.0000,16.6670,16.6673,1 +3570,0.0000,0.0000,16.7234,16.7237,1 +3571,0.0000,0.0000,16.7421,16.7425,1 +3572,0.0000,0.0000,16.5415,16.5418,0 +3573,0.0000,0.0000,16.6680,16.6683,1 +3574,0.0000,0.0000,16.6870,16.6873,1 +3575,0.0000,0.0000,16.7018,16.7021,1 +3576,0.0000,0.0000,16.6205,16.6208,0 +3577,0.0000,0.0000,16.8906,16.8909,1 +3578,0.0000,0.0000,20.7538,20.7542,1 +3579,0.0000,0.0000,12.1126,12.1128,0 +3580,0.0000,0.0000,15.4742,15.4743,0 +3581,0.0000,0.0000,16.3931,16.3933,0 +3582,0.0000,0.0000,16.4014,16.4015,0 +3583,0.0000,0.0000,8.0452,8.0454,0 +3584,0.0000,0.0000,9.2090,9.2092,0 +3585,0.0000,0.0000,18.1215,18.1218,1 +3586,0.0000,0.0000,16.6038,16.6041,0 +3587,0.0000,0.0000,16.6899,16.6902,1 +3588,0.0000,0.0000,16.7074,16.7077,1 +3589,0.0000,0.0000,16.6717,16.6720,1 +3590,0.0000,0.0000,16.6785,16.6788,1 +3591,0.0000,0.0000,16.6324,16.6327,0 +3592,0.0000,0.0000,16.6499,16.6502,0 +3593,0.0000,0.0000,16.6904,16.6907,1 +3594,0.0000,0.0000,16.6938,16.6941,1 +3595,0.0000,0.0000,16.6282,16.6285,0 +3596,0.0000,0.0000,6.9874,6.9877,0 +3597,0.0000,0.0000,12.9219,12.9222,0 +3598,0.0000,0.0000,13.7015,13.7017,0 +3599,0.0000,0.0000,16.5356,16.5359,0 +3600,0.0000,0.0000,16.5108,16.5111,0 +3601,0.0000,0.0000,16.2691,16.2694,0 +3602,0.0000,0.0000,16.6753,16.6756,1 +3603,0.0000,0.0000,16.7724,16.7727,1 +3604,0.0000,0.0000,16.6245,16.6248,0 +3605,0.0000,0.0000,16.8975,16.8978,1 +3606,0.0000,0.0000,16.5698,16.5701,0 +3607,0.0000,0.0000,16.5536,16.5539,0 +3608,0.0000,0.0000,16.6685,16.6688,1 +3609,0.0000,0.0000,16.6437,16.6440,0 +3610,0.0000,0.0000,16.5276,16.5279,0 +3611,0.0000,0.0000,7.0072,7.0075,0 +3612,0.0000,0.0000,9.8449,9.8452,0 +3613,0.0000,0.0000,16.5797,16.5800,0 +3614,0.0000,0.0000,16.6558,16.6561,0 +3615,0.0000,0.0000,16.6956,16.6959,1 +3616,0.0000,0.0000,16.7271,16.7274,1 +3617,0.0000,0.0000,16.6310,16.6313,0 +3618,0.0000,0.0000,16.6423,16.6426,0 +3619,0.0000,0.0000,16.6641,16.6644,0 +3620,0.0000,0.0000,16.7018,16.7021,1 +3621,0.0000,0.0000,16.6957,16.6960,1 +3622,0.0000,0.0000,16.7061,16.7064,1 +3623,0.0000,0.0000,16.6407,16.6410,0 +3624,0.0000,0.0000,16.6199,16.6202,0 +3625,0.0000,0.0000,16.4437,16.4441,0 +3626,0.0000,0.0000,7.2645,7.2648,0 +3627,0.0000,0.0000,9.7927,9.7930,0 +3628,0.0000,0.0000,16.5384,16.5387,0 +3629,0.0000,0.0000,16.6491,16.6494,0 +3630,0.0000,0.0000,16.6390,16.6393,0 +3631,0.0000,0.0000,16.7405,16.7408,1 +3632,0.0000,0.0000,16.6375,16.6378,0 +3633,0.0000,0.0000,16.6632,16.6635,0 +3634,0.0000,0.0000,16.6891,16.6894,1 +3635,0.0000,0.0000,16.6495,16.6498,0 +3636,0.0000,0.0000,16.6679,16.6682,1 +3637,0.0000,0.0000,16.6856,16.6859,1 +3638,0.0000,0.0000,16.7033,16.7036,1 +3639,0.0000,0.0000,16.6106,16.6109,0 +3640,0.0000,0.0000,16.8586,16.8589,1 +3641,0.0000,0.0000,16.6445,16.6448,0 +3642,0.0000,0.0000,15.2371,15.2373,0 +3643,0.0000,0.0000,16.6587,16.6588,0 +3644,0.0000,0.0000,16.5670,16.5670,0 +3645,0.0000,0.0000,16.5984,16.5986,0 +3646,0.0000,0.0000,18.2235,18.2237,1 +3647,0.0000,0.0000,16.6412,16.6415,0 +3648,0.0000,0.0000,16.6507,16.6510,0 +3649,0.0000,0.0000,16.6473,16.6476,0 +3650,0.0000,0.0000,16.6524,16.6527,0 +3651,0.0000,0.0000,16.6711,16.6714,1 +3652,0.0000,0.0000,16.6980,16.6983,1 +3653,0.0000,0.0000,16.7004,16.7007,1 +3654,0.0000,0.0000,16.7760,16.7763,1 +3655,0.0000,0.0000,16.5975,16.5978,0 +3656,0.0000,0.0000,16.5993,16.5996,0 +3657,0.0000,0.0000,16.6579,16.6582,0 +3658,0.0000,0.0000,16.6941,16.6944,1 +3659,0.0000,0.0000,16.6600,16.6603,0 +3660,0.0000,0.0000,16.7098,16.7101,1 +3661,0.0000,0.0000,16.6594,16.6596,0 +3662,0.0000,0.0000,16.5814,16.5817,0 +3663,0.0000,0.0000,16.7930,16.7933,1 +3664,0.0000,0.0000,16.6833,16.6835,1 +3665,0.0000,0.0000,16.6342,16.6345,0 +3666,0.0000,0.0000,16.6238,16.6241,0 +3667,0.0000,0.0000,16.8727,16.8730,1 +3668,0.0000,0.0000,16.5099,16.5102,0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/run_status.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/run_status.txt new file mode 100644 index 0000000..3d6ff58 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_5k60/run_status.txt @@ -0,0 +1,5 @@ +args=--synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --gpu-pattern +Computer: OOSU-IMAC +User: È«±æµ¿ +Date: 2026-05-15 1:28:10.01 +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/console.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/console.txt new file mode 100644 index 0000000..f4d4efc --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/console.txt @@ -0,0 +1,13 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=290.663 +frames=4362 +budget_ms=16.667 +p95_total_ms=9.073 +max_total_ms=9.268 +missed_frames=0 +vsync=off +static_frame=off +gpu_pattern=on +uncapped=on diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/receiver_stats.csv b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/receiver_stats.csv new file mode 100644 index 0000000..aa14415 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/receiver_stats.csv @@ -0,0 +1,4363 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,0.0000,0.0000,7.9523,7.9524,0 +1,0.0000,0.0000,0.2441,0.2442,0 +2,0.0000,0.0000,2.0331,2.0333,0 +3,0.0000,0.0000,1.9653,1.9653,0 +4,0.0000,0.0000,2.0512,2.0512,0 +5,0.0000,0.0000,2.0003,2.0004,0 +6,0.0000,0.0000,2.0016,2.0016,0 +7,0.0000,0.0000,2.0003,2.0003,0 +8,0.0000,0.0000,1.9958,1.9958,0 +9,0.0000,0.0000,1.9692,1.9692,0 +10,0.0000,0.0000,8.9576,8.9576,0 +11,0.0000,0.0000,1.9065,1.9065,0 +12,0.0000,0.0000,1.9956,1.9957,0 +13,0.0000,0.0000,1.9922,1.9922,0 +14,0.0000,0.0000,1.9252,1.9252,0 +15,0.0000,0.0000,8.8623,8.8623,0 +16,0.0000,0.0000,2.1749,2.1749,0 +17,0.0000,0.0000,1.9623,1.9623,0 +18,0.0000,0.0000,2.0072,2.0073,0 +19,0.0000,0.0000,1.8587,1.8588,0 +20,0.0000,0.0000,8.9236,8.9237,0 +21,0.0000,0.0000,2.0083,2.0085,0 +22,0.0000,0.0000,2.0067,2.0069,0 +23,0.0000,0.0000,2.0115,2.0116,0 +24,0.0000,0.0000,2.0499,2.0500,0 +25,0.0000,0.0000,9.0269,9.0270,0 +26,0.0000,0.0000,2.1986,2.1988,0 +27,0.0000,0.0000,1.9012,1.9014,0 +28,0.0000,0.0000,1.9668,1.9669,0 +29,0.0000,0.0000,1.8608,1.8610,0 +30,0.0000,0.0000,9.1172,9.1175,0 +31,0.0000,0.0000,1.9936,1.9939,0 +32,0.0000,0.0000,1.9971,1.9973,0 +33,0.0000,0.0000,1.9549,1.9551,0 +34,0.0000,0.0000,1.9328,1.9330,0 +35,0.0000,0.0000,9.0478,9.0480,0 +36,0.0000,0.0000,1.9174,1.9177,0 +37,0.0000,0.0000,2.0179,2.0182,0 +38,0.0000,0.0000,2.0170,2.0173,0 +39,0.0000,0.0000,1.8886,1.8888,0 +40,0.0000,0.0000,8.9478,8.9480,0 +41,0.0000,0.0000,2.0027,2.0030,0 +42,0.0000,0.0000,1.9993,1.9996,0 +43,0.0000,0.0000,1.9575,1.9578,0 +44,0.0000,0.0000,1.9415,1.9418,0 +45,0.0000,0.0000,9.0519,9.0521,0 +46,0.0000,0.0000,1.9862,1.9865,0 +47,0.0000,0.0000,2.0040,2.0043,0 +48,0.0000,0.0000,1.9034,1.9037,0 +49,0.0000,0.0000,2.0176,2.0179,0 +50,0.0000,0.0000,8.8919,8.8922,0 +51,0.0000,0.0000,2.0253,2.0256,0 +52,0.0000,0.0000,1.9745,1.9747,0 +53,0.0000,0.0000,2.0594,2.0597,0 +54,0.0000,0.0000,1.9539,1.9542,0 +55,0.0000,0.0000,8.9342,8.9344,0 +56,0.0000,0.0000,2.0172,2.0175,0 +57,0.0000,0.0000,1.9784,1.9787,0 +58,0.0000,0.0000,1.8046,1.8048,0 +59,0.0000,0.0000,2.0891,2.0892,0 +60,0.0000,0.0000,8.9606,8.9608,0 +61,0.0000,0.0000,1.9967,1.9969,0 +62,0.0000,0.0000,1.9483,1.9485,0 +63,0.0000,0.0000,2.1338,2.1340,0 +64,0.0000,0.0000,8.7258,8.7259,0 +65,0.0000,0.0000,2.0128,2.0130,0 +66,0.0000,0.0000,2.0391,2.0393,0 +67,0.0000,0.0000,1.9744,1.9745,0 +68,0.0000,0.0000,1.8910,1.8912,0 +69,0.0000,0.0000,9.0600,9.0601,0 +70,0.0000,0.0000,2.0027,2.0028,0 +71,0.0000,0.0000,1.9153,1.9155,0 +72,0.0000,0.0000,2.0720,2.0722,0 +73,0.0000,0.0000,1.9986,1.9987,0 +74,0.0000,0.0000,9.0513,9.0514,0 +75,0.0000,0.0000,2.1818,2.1820,0 +76,0.0000,0.0000,2.0131,2.0134,0 +77,0.0000,0.0000,2.0031,2.0034,0 +78,0.0000,0.0000,1.9369,1.9372,0 +79,0.0000,0.0000,8.9527,8.9530,0 +80,0.0000,0.0000,1.9069,1.9073,0 +81,0.0000,0.0000,1.9871,1.9874,0 +82,0.0000,0.0000,2.1579,2.1581,0 +83,0.0000,0.0000,1.8751,1.8755,0 +84,0.0000,0.0000,8.9319,8.9322,0 +85,0.0000,0.0000,2.0382,2.0385,0 +86,0.0000,0.0000,1.9928,1.9931,0 +87,0.0000,0.0000,1.9573,1.9576,0 +88,0.0000,0.0000,2.0101,2.0104,0 +89,0.0000,0.0000,8.9767,8.9770,0 +90,0.0000,0.0000,2.0630,2.0633,0 +91,0.0000,0.0000,1.8946,1.8949,0 +92,0.0000,0.0000,1.9645,1.9649,0 +93,0.0000,0.0000,2.1939,2.1942,0 +94,0.0000,0.0000,8.7320,8.7323,0 +95,0.0000,0.0000,1.9947,1.9950,0 +96,0.0000,0.0000,2.0128,2.0131,0 +97,0.0000,0.0000,1.9035,1.9038,0 +98,0.0000,0.0000,2.0162,2.0165,0 +99,0.0000,0.0000,8.9751,8.9754,0 +100,0.0000,0.0000,2.0638,2.0641,0 +101,0.0000,0.0000,1.9796,1.9799,0 +102,0.0000,0.0000,1.9067,1.9070,0 +103,0.0000,0.0000,2.0523,2.0526,0 +104,0.0000,0.0000,8.9699,8.9702,0 +105,0.0000,0.0000,1.9805,1.9808,0 +106,0.0000,0.0000,1.9896,1.9899,0 +107,0.0000,0.0000,1.8960,1.8963,0 +108,0.0000,0.0000,2.3170,2.3173,0 +109,0.0000,0.0000,8.9775,8.9779,0 +110,0.0000,0.0000,1.5614,1.5617,0 +111,0.0000,0.0000,1.9697,1.9700,0 +112,0.0000,0.0000,2.0907,2.0911,0 +113,0.0000,0.0000,8.7669,8.7672,0 +114,0.0000,0.0000,1.9058,1.9060,0 +115,0.0000,0.0000,2.0643,2.0644,0 +116,0.0000,0.0000,1.9676,1.9677,0 +117,0.0000,0.0000,2.1096,2.1097,0 +118,0.0000,0.0000,2.3013,2.3014,0 +119,0.0000,0.0000,8.8553,8.8555,0 +120,0.0000,0.0000,2.0146,2.0147,0 +121,0.0000,0.0000,1.9405,1.9407,0 +122,0.0000,0.0000,2.0736,2.0738,0 +123,0.0000,0.0000,8.7135,8.7136,0 +124,0.0000,0.0000,2.0650,2.0652,0 +125,0.0000,0.0000,1.9912,1.9915,0 +126,0.0000,0.0000,1.9593,1.9595,0 +127,0.0000,0.0000,2.0775,2.0777,0 +128,0.0000,0.0000,8.8690,8.8692,0 +129,0.0000,0.0000,1.9921,1.9922,0 +130,0.0000,0.0000,2.0136,2.0137,0 +131,0.0000,0.0000,1.9278,1.9279,0 +132,0.0000,0.0000,2.0734,2.0736,0 +133,0.0000,0.0000,8.9591,8.9594,0 +134,0.0000,0.0000,1.9866,1.9868,0 +135,0.0000,0.0000,1.9904,1.9906,0 +136,0.0000,0.0000,1.9069,1.9071,0 +137,0.0000,0.0000,9.0207,9.0208,0 +138,0.0000,0.0000,2.0011,2.0013,0 +139,0.0000,0.0000,2.0167,2.0168,0 +140,0.0000,0.0000,1.9833,1.9834,0 +141,0.0000,0.0000,1.9019,1.9021,0 +142,0.0000,0.0000,8.9017,8.9019,0 +143,0.0000,0.0000,2.0169,2.0170,0 +144,0.0000,0.0000,2.0098,2.0099,0 +145,0.0000,0.0000,1.9974,1.9975,0 +146,0.0000,0.0000,1.9219,1.9220,0 +147,0.0000,0.0000,9.0672,9.0674,0 +148,0.0000,0.0000,2.1315,2.1317,0 +149,0.0000,0.0000,2.0035,2.0038,0 +150,0.0000,0.0000,2.0726,2.0729,0 +151,0.0000,0.0000,1.9025,1.9028,0 +152,0.0000,0.0000,9.0422,9.0425,0 +153,0.0000,0.0000,1.9356,1.9359,0 +154,0.0000,0.0000,1.9965,1.9968,0 +155,0.0000,0.0000,2.0584,2.0587,0 +156,0.0000,0.0000,1.9390,1.9393,0 +157,0.0000,0.0000,9.1470,9.1473,0 +158,0.0000,0.0000,2.0063,2.0066,0 +159,0.0000,0.0000,2.0108,2.0111,0 +160,0.0000,0.0000,1.9475,1.9478,0 +161,0.0000,0.0000,2.0121,2.0124,0 +162,0.0000,0.0000,9.0919,9.0922,0 +163,0.0000,0.0000,1.9386,1.9389,0 +164,0.0000,0.0000,2.0159,2.0162,0 +165,0.0000,0.0000,1.9606,1.9609,0 +166,0.0000,0.0000,2.0639,2.0642,0 +167,0.0000,0.0000,8.7458,8.7461,0 +168,0.0000,0.0000,1.9941,1.9944,0 +169,0.0000,0.0000,1.9904,1.9907,0 +170,0.0000,0.0000,2.0128,2.0131,0 +171,0.0000,0.0000,1.9919,1.9922,0 +172,0.0000,0.0000,8.8920,8.8923,0 +173,0.0000,0.0000,1.9573,1.9576,0 +174,0.0000,0.0000,1.9969,1.9972,0 +175,0.0000,0.0000,1.9557,1.9560,0 +176,0.0000,0.0000,1.9901,1.9904,0 +177,0.0000,0.0000,9.0001,9.0004,0 +178,0.0000,0.0000,1.9999,2.0002,0 +179,0.0000,0.0000,1.9660,1.9663,0 +180,0.0000,0.0000,1.9617,1.9620,0 +181,0.0000,0.0000,2.0334,2.0337,0 +182,0.0000,0.0000,8.8690,8.8693,0 +183,0.0000,0.0000,2.0020,2.0023,0 +184,0.0000,0.0000,1.9895,1.9899,0 +185,0.0000,0.0000,1.9741,1.9745,0 +186,0.0000,0.0000,2.1987,2.1990,0 +187,0.0000,0.0000,8.7943,8.7946,0 +188,0.0000,0.0000,2.0018,2.0021,0 +189,0.0000,0.0000,2.0092,2.0095,0 +190,0.0000,0.0000,1.9160,1.9163,0 +191,0.0000,0.0000,9.1593,9.1596,0 +192,0.0000,0.0000,1.9996,1.9999,0 +193,0.0000,0.0000,1.9187,1.9190,0 +194,0.0000,0.0000,2.0293,2.0296,0 +195,0.0000,0.0000,2.0079,2.0082,0 +196,0.0000,0.0000,9.1348,9.1351,0 +197,0.0000,0.0000,1.9954,1.9957,0 +198,0.0000,0.0000,2.0130,2.0133,0 +199,0.0000,0.0000,1.9521,1.9524,0 +200,0.0000,0.0000,1.9908,1.9911,0 +201,0.0000,0.0000,8.8637,8.8640,0 +202,0.0000,0.0000,2.0241,2.0244,0 +203,0.0000,0.0000,2.0147,2.0150,0 +204,0.0000,0.0000,1.9370,1.9373,0 +205,0.0000,0.0000,2.0050,2.0053,0 +206,0.0000,0.0000,9.0194,9.0197,0 +207,0.0000,0.0000,2.0016,2.0019,0 +208,0.0000,0.0000,2.0027,2.0030,0 +209,0.0000,0.0000,1.9240,1.9243,0 +210,0.0000,0.0000,2.0092,2.0095,0 +211,0.0000,0.0000,8.9291,8.9294,0 +212,0.0000,0.0000,2.0162,2.0165,0 +213,0.0000,0.0000,1.9772,1.9775,0 +214,0.0000,0.0000,1.9508,1.9511,0 +215,0.0000,0.0000,2.0438,2.0442,0 +216,0.0000,0.0000,8.9363,8.9366,0 +217,0.0000,0.0000,1.9588,1.9591,0 +218,0.0000,0.0000,2.0379,2.0382,0 +219,0.0000,0.0000,1.9012,1.9015,0 +220,0.0000,0.0000,2.1150,2.1153,0 +221,0.0000,0.0000,9.0116,9.0119,0 +222,0.0000,0.0000,1.9936,1.9939,0 +223,0.0000,0.0000,2.0180,2.0183,0 +224,0.0000,0.0000,1.9567,1.9570,0 +225,0.0000,0.0000,9.1207,9.1210,0 +226,0.0000,0.0000,2.0572,2.0575,0 +227,0.0000,0.0000,1.9589,1.9592,0 +228,0.0000,0.0000,1.9747,1.9750,0 +229,0.0000,0.0000,2.0116,2.0119,0 +230,0.0000,0.0000,9.0244,9.0247,0 +231,0.0000,0.0000,2.0080,2.0083,0 +232,0.0000,0.0000,2.0515,2.0518,0 +233,0.0000,0.0000,1.9407,1.9410,0 +234,0.0000,0.0000,2.0049,2.0052,0 +235,0.0000,0.0000,9.0923,9.0926,0 +236,0.0000,0.0000,1.9713,1.9716,0 +237,0.0000,0.0000,2.0007,2.0011,0 +238,0.0000,0.0000,1.9518,1.9521,0 +239,0.0000,0.0000,2.1214,2.1217,0 +240,0.0000,0.0000,8.9665,8.9668,0 +241,0.0000,0.0000,1.9861,1.9865,0 +242,0.0000,0.0000,1.8963,1.8966,0 +243,0.0000,0.0000,2.0237,2.0240,0 +244,0.0000,0.0000,2.0206,2.0209,0 +245,0.0000,0.0000,8.9152,8.9155,0 +246,0.0000,0.0000,2.0522,2.0525,0 +247,0.0000,0.0000,1.9760,1.9763,0 +248,0.0000,0.0000,1.9630,1.9633,0 +249,0.0000,0.0000,9.1371,9.1374,0 +250,0.0000,0.0000,1.9959,1.9962,0 +251,0.0000,0.0000,1.9702,1.9705,0 +252,0.0000,0.0000,2.0110,2.0114,0 +253,0.0000,0.0000,1.9690,1.9693,0 +254,0.0000,0.0000,9.0296,9.0299,0 +255,0.0000,0.0000,2.0051,2.0054,0 +256,0.0000,0.0000,1.9940,1.9943,0 +257,0.0000,0.0000,2.2352,2.2356,0 +258,0.0000,0.0000,1.7478,1.7481,0 +259,0.0000,0.0000,9.0482,9.0485,0 +260,0.0000,0.0000,1.9628,1.9631,0 +261,0.0000,0.0000,2.7184,2.7187,0 +262,0.0000,0.0000,1.2604,1.2607,0 +263,0.0000,0.0000,1.9888,1.9891,0 +264,0.0000,0.0000,8.9801,8.9804,0 +265,0.0000,0.0000,2.0125,2.0128,0 +266,0.0000,0.0000,1.9532,1.9535,0 +267,0.0000,0.0000,2.0101,2.0104,0 +268,0.0000,0.0000,2.0670,2.0673,0 +269,0.0000,0.0000,8.9263,8.9266,0 +270,0.0000,0.0000,1.9905,1.9908,0 +271,0.0000,0.0000,2.0063,2.0066,0 +272,0.0000,0.0000,1.9169,1.9172,0 +273,0.0000,0.0000,1.9911,1.9914,0 +274,0.0000,0.0000,8.9413,8.9416,0 +275,0.0000,0.0000,2.0077,2.0080,0 +276,0.0000,0.0000,2.0064,2.0067,0 +277,0.0000,0.0000,1.9036,1.9039,0 +278,0.0000,0.0000,2.0661,2.0664,0 +279,0.0000,0.0000,9.0309,9.0312,0 +280,0.0000,0.0000,1.9984,1.9987,0 +281,0.0000,0.0000,1.9926,1.9929,0 +282,0.0000,0.0000,1.9512,1.9515,0 +283,0.0000,0.0000,9.1142,9.1146,0 +284,0.0000,0.0000,2.0002,2.0005,0 +285,0.0000,0.0000,1.9956,1.9959,0 +286,0.0000,0.0000,1.9396,1.9400,0 +287,0.0000,0.0000,2.0010,2.0013,0 +288,0.0000,0.0000,9.1291,9.1294,0 +289,0.0000,0.0000,1.9758,1.9761,0 +290,0.0000,0.0000,1.9849,1.9852,0 +291,0.0000,0.0000,1.9751,1.9755,0 +292,0.0000,0.0000,2.0017,2.0020,0 +293,0.0000,0.0000,9.0259,9.0262,0 +294,0.0000,0.0000,2.0096,2.0099,0 +295,0.0000,0.0000,2.0055,2.0058,0 +296,0.0000,0.0000,1.9072,1.9075,0 +297,0.0000,0.0000,1.9951,1.9954,0 +298,0.0000,0.0000,8.9969,8.9972,0 +299,0.0000,0.0000,1.9968,1.9971,0 +300,0.0000,0.0000,2.0065,2.0068,0 +301,0.0000,0.0000,1.9002,1.9006,0 +302,0.0000,0.0000,2.1109,2.1112,0 +303,0.0000,0.0000,8.8827,8.8830,0 +304,0.0000,0.0000,2.0000,2.0003,0 +305,0.0000,0.0000,1.9945,1.9948,0 +306,0.0000,0.0000,1.9016,1.9019,0 +307,0.0000,0.0000,2.0653,2.0656,0 +308,0.0000,0.0000,9.0381,9.0384,0 +309,0.0000,0.0000,1.9970,1.9973,0 +310,0.0000,0.0000,2.0155,2.0158,0 +311,0.0000,0.0000,1.9124,1.9127,0 +312,0.0000,0.0000,9.0807,9.0810,0 +313,0.0000,0.0000,1.9910,1.9912,0 +314,0.0000,0.0000,2.0109,2.0112,0 +315,0.0000,0.0000,1.9725,1.9728,0 +316,0.0000,0.0000,1.9769,1.9772,0 +317,0.0000,0.0000,9.1339,9.1342,0 +318,0.0000,0.0000,2.0024,2.0027,0 +319,0.0000,0.0000,1.9479,1.9482,0 +320,0.0000,0.0000,1.9447,1.9450,0 +321,0.0000,0.0000,2.0148,2.0151,0 +322,0.0000,0.0000,9.0364,9.0367,0 +323,0.0000,0.0000,2.0288,2.0291,0 +324,0.0000,0.0000,1.9857,1.9860,0 +325,0.0000,0.0000,1.9306,1.9309,0 +326,0.0000,0.0000,2.0557,2.0561,0 +327,0.0000,0.0000,8.9821,8.9824,0 +328,0.0000,0.0000,1.9339,1.9343,0 +329,0.0000,0.0000,2.0685,2.0688,0 +330,0.0000,0.0000,1.8874,1.8877,0 +331,0.0000,0.0000,2.0731,2.0734,0 +332,0.0000,0.0000,8.8613,8.8616,0 +333,0.0000,0.0000,2.0413,2.0416,0 +334,0.0000,0.0000,2.0196,2.0199,0 +335,0.0000,0.0000,1.9209,1.9212,0 +336,0.0000,0.0000,2.0548,2.0551,0 +337,0.0000,0.0000,9.0482,9.0485,0 +338,0.0000,0.0000,1.9591,1.9594,0 +339,0.0000,0.0000,2.0151,2.0154,0 +340,0.0000,0.0000,1.9641,1.9644,0 +341,0.0000,0.0000,9.0345,9.0348,0 +342,0.0000,0.0000,2.0121,2.0124,0 +343,0.0000,0.0000,1.9846,1.9849,0 +344,0.0000,0.0000,1.9976,1.9980,0 +345,0.0000,0.0000,1.9844,1.9847,0 +346,0.0000,0.0000,9.0204,9.0207,0 +347,0.0000,0.0000,2.0121,2.0124,0 +348,0.0000,0.0000,1.9758,1.9761,0 +349,0.0000,0.0000,2.0039,2.0042,0 +350,0.0000,0.0000,1.9977,1.9980,0 +351,0.0000,0.0000,8.9127,8.9130,0 +352,0.0000,0.0000,2.0036,2.0039,0 +353,0.0000,0.0000,2.0029,2.0032,0 +354,0.0000,0.0000,1.9860,1.9863,0 +355,0.0000,0.0000,2.0018,2.0020,0 +356,0.0000,0.0000,8.8642,8.8646,0 +357,0.0000,0.0000,2.1088,2.1091,0 +358,0.0000,0.0000,1.9635,1.9638,0 +359,0.0000,0.0000,1.9635,1.9638,0 +360,0.0000,0.0000,2.0128,2.0131,0 +361,0.0000,0.0000,8.8050,8.8053,0 +362,0.0000,0.0000,2.0095,2.0098,0 +363,0.0000,0.0000,1.9946,1.9949,0 +364,0.0000,0.0000,1.9599,1.9602,0 +365,0.0000,0.0000,2.0852,2.0855,0 +366,0.0000,0.0000,9.0143,9.0146,0 +367,0.0000,0.0000,1.9897,1.9900,0 +368,0.0000,0.0000,1.9901,1.9904,0 +369,0.0000,0.0000,1.9820,1.9823,0 +370,0.0000,0.0000,2.0403,2.0407,0 +371,0.0000,0.0000,8.9600,8.9603,0 +372,0.0000,0.0000,1.9710,1.9713,0 +373,0.0000,0.0000,2.0073,2.0076,0 +374,0.0000,0.0000,1.9633,1.9636,0 +375,0.0000,0.0000,9.0954,9.0956,0 +376,0.0000,0.0000,2.0092,2.0095,0 +377,0.0000,0.0000,2.0051,2.0054,0 +378,0.0000,0.0000,1.9807,1.9810,0 +379,0.0000,0.0000,1.9931,1.9934,0 +380,0.0000,0.0000,9.0594,9.0597,0 +381,0.0000,0.0000,2.0032,2.0036,0 +382,0.0000,0.0000,1.9927,1.9930,0 +383,0.0000,0.0000,1.9874,1.9877,0 +384,0.0000,0.0000,2.0031,2.0034,0 +385,0.0000,0.0000,8.9073,8.9076,0 +386,0.0000,0.0000,2.0090,2.0093,0 +387,0.0000,0.0000,1.9966,1.9969,0 +388,0.0000,0.0000,1.9963,1.9966,0 +389,0.0000,0.0000,2.0049,2.0052,0 +390,0.0000,0.0000,8.9646,8.9649,0 +391,0.0000,0.0000,1.9894,1.9897,0 +392,0.0000,0.0000,1.9972,1.9975,0 +393,0.0000,0.0000,1.9173,1.9176,0 +394,0.0000,0.0000,2.1355,2.1358,0 +395,0.0000,0.0000,8.9895,8.9898,0 +396,0.0000,0.0000,2.0087,2.0090,0 +397,0.0000,0.0000,1.9307,1.9310,0 +398,0.0000,0.0000,1.9295,1.9298,0 +399,0.0000,0.0000,2.1117,2.1120,0 +400,0.0000,0.0000,8.9249,8.9252,0 +401,0.0000,0.0000,1.9431,1.9434,0 +402,0.0000,0.0000,2.0597,2.0600,0 +403,0.0000,0.0000,1.8899,1.8902,0 +404,0.0000,0.0000,9.0404,9.0408,0 +405,0.0000,0.0000,1.9961,1.9964,0 +406,0.0000,0.0000,2.0203,2.0206,0 +407,0.0000,0.0000,1.9950,1.9953,0 +408,0.0000,0.0000,1.9265,1.9268,0 +409,0.0000,0.0000,9.0901,9.0903,0 +410,0.0000,0.0000,2.3709,2.3712,0 +411,0.0000,0.0000,1.6265,1.6268,0 +412,0.0000,0.0000,1.9883,1.9887,0 +413,0.0000,0.0000,1.9983,1.9986,0 +414,0.0000,0.0000,9.0451,9.0454,0 +415,0.0000,0.0000,1.9943,1.9946,0 +416,0.0000,0.0000,2.0396,2.0399,0 +417,0.0000,0.0000,1.9544,1.9547,0 +418,0.0000,0.0000,2.0008,2.0011,0 +419,0.0000,0.0000,8.9281,8.9284,0 +420,0.0000,0.0000,1.9885,1.9888,0 +421,0.0000,0.0000,2.0188,2.0191,0 +422,0.0000,0.0000,1.9560,1.9563,0 +423,0.0000,0.0000,2.0076,2.0079,0 +424,0.0000,0.0000,8.9940,8.9943,0 +425,0.0000,0.0000,2.0001,2.0004,0 +426,0.0000,0.0000,2.0702,2.0705,0 +427,0.0000,0.0000,1.8746,1.8749,0 +428,0.0000,0.0000,2.0547,2.0550,0 +429,0.0000,0.0000,8.8896,8.8899,0 +430,0.0000,0.0000,2.0049,2.0052,0 +431,0.0000,0.0000,2.0039,2.0042,0 +432,0.0000,0.0000,1.9415,1.9418,0 +433,0.0000,0.0000,2.0591,2.0594,0 +434,0.0000,0.0000,8.9220,8.9223,0 +435,0.0000,0.0000,2.0094,2.0097,0 +436,0.0000,0.0000,2.0189,2.0192,0 +437,0.0000,0.0000,1.9645,1.9648,0 +438,0.0000,0.0000,9.0541,9.0544,0 +439,0.0000,0.0000,1.9994,1.9997,0 +440,0.0000,0.0000,2.0059,2.0062,0 +441,0.0000,0.0000,2.0568,2.0571,0 +442,0.0000,0.0000,1.9156,1.9159,0 +443,0.0000,0.0000,9.1215,9.1218,0 +444,0.0000,0.0000,1.9681,1.9684,0 +445,0.0000,0.0000,2.0365,2.0368,0 +446,0.0000,0.0000,1.9804,1.9807,0 +447,0.0000,0.0000,2.0049,2.0052,0 +448,0.0000,0.0000,8.9262,8.9265,0 +449,0.0000,0.0000,2.0048,2.0051,0 +450,0.0000,0.0000,2.0029,2.0032,0 +451,0.0000,0.0000,2.0182,2.0185,0 +452,0.0000,0.0000,1.9040,1.9044,0 +453,0.0000,0.0000,9.0987,9.0991,0 +454,0.0000,0.0000,1.9517,1.9520,0 +455,0.0000,0.0000,2.0119,2.0122,0 +456,0.0000,0.0000,1.9344,1.9347,0 +457,0.0000,0.0000,2.0619,2.0622,0 +458,0.0000,0.0000,8.9811,8.9814,0 +459,0.0000,0.0000,2.0128,2.0131,0 +460,0.0000,0.0000,1.9994,1.9997,0 +461,0.0000,0.0000,1.8928,1.8931,0 +462,0.0000,0.0000,2.0781,2.0784,0 +463,0.0000,0.0000,8.9669,8.9672,0 +464,0.0000,0.0000,2.0095,2.0098,0 +465,0.0000,0.0000,2.0176,2.0179,0 +466,0.0000,0.0000,1.8970,1.8973,0 +467,0.0000,0.0000,9.0380,9.0383,0 +468,0.0000,0.0000,1.9963,1.9966,0 +469,0.0000,0.0000,2.0065,2.0068,0 +470,0.0000,0.0000,2.0217,2.0220,0 +471,0.0000,0.0000,2.0513,2.0516,0 +472,0.0000,0.0000,9.0706,9.0709,0 +473,0.0000,0.0000,1.9124,1.9127,0 +474,0.0000,0.0000,2.0895,2.0898,0 +475,0.0000,0.0000,1.9513,1.9516,0 +476,0.0000,0.0000,2.0048,2.0051,0 +477,0.0000,0.0000,9.1221,9.1224,0 +478,0.0000,0.0000,1.9825,1.9828,0 +479,0.0000,0.0000,1.9709,1.9712,0 +480,0.0000,0.0000,1.9752,1.9756,0 +481,0.0000,0.0000,1.9978,1.9981,0 +482,0.0000,0.0000,8.8412,8.8415,0 +483,0.0000,0.0000,2.1309,2.1312,0 +484,0.0000,0.0000,2.0085,2.0088,0 +485,0.0000,0.0000,1.9258,1.9261,0 +486,0.0000,0.0000,2.0557,2.0560,0 +487,0.0000,0.0000,8.9223,8.9226,0 +488,0.0000,0.0000,1.9868,1.9871,0 +489,0.0000,0.0000,1.9975,1.9978,0 +490,0.0000,0.0000,1.9443,1.9446,0 +491,0.0000,0.0000,2.0609,2.0612,0 +492,0.0000,0.0000,8.9677,8.9680,0 +493,0.0000,0.0000,1.9953,1.9956,0 +494,0.0000,0.0000,1.9594,1.9597,0 +495,0.0000,0.0000,1.9471,1.9474,0 +496,0.0000,0.0000,9.0996,9.0999,0 +497,0.0000,0.0000,1.8780,1.8783,0 +498,0.0000,0.0000,1.9996,1.9999,0 +499,0.0000,0.0000,2.0167,2.0170,0 +500,0.0000,0.0000,1.9680,1.9683,0 +501,0.0000,0.0000,9.0599,9.0602,0 +502,0.0000,0.0000,2.0326,2.0329,0 +503,0.0000,0.0000,1.9744,1.9747,0 +504,0.0000,0.0000,1.8757,1.8760,0 +505,0.0000,0.0000,2.0823,2.0826,0 +506,0.0000,0.0000,9.0525,9.0528,0 +507,0.0000,0.0000,2.0180,2.0183,0 +508,0.0000,0.0000,2.0021,2.0025,0 +509,0.0000,0.0000,2.0106,2.0109,0 +510,0.0000,0.0000,1.9979,1.9982,0 +511,0.0000,0.0000,8.9492,8.9495,0 +512,0.0000,0.0000,2.0124,2.0127,0 +513,0.0000,0.0000,2.0354,2.0357,0 +514,0.0000,0.0000,1.9410,1.9413,0 +515,0.0000,0.0000,2.1125,2.1128,0 +516,0.0000,0.0000,8.9434,8.9437,0 +517,0.0000,0.0000,2.1357,2.1360,0 +518,0.0000,0.0000,1.8740,1.8743,0 +519,0.0000,0.0000,1.9478,1.9481,0 +520,0.0000,0.0000,2.0628,2.0631,0 +521,0.0000,0.0000,8.9274,8.9277,0 +522,0.0000,0.0000,1.9961,1.9964,0 +523,0.0000,0.0000,2.0100,2.0103,0 +524,0.0000,0.0000,1.9380,1.9384,0 +525,0.0000,0.0000,9.1370,9.1373,0 +526,0.0000,0.0000,1.9745,1.9748,0 +527,0.0000,0.0000,1.9888,1.9891,0 +528,0.0000,0.0000,2.0254,2.0257,0 +529,0.0000,0.0000,1.9226,1.9229,0 +530,0.0000,0.0000,9.1501,9.1504,0 +531,0.0000,0.0000,1.9100,1.9103,0 +532,0.0000,0.0000,1.9568,1.9571,0 +533,0.0000,0.0000,2.1637,2.1640,0 +534,0.0000,0.0000,1.8426,1.8429,0 +535,0.0000,0.0000,9.0770,9.0773,0 +536,0.0000,0.0000,1.9740,1.9744,0 +537,0.0000,0.0000,1.9912,1.9915,0 +538,0.0000,0.0000,2.0013,2.0016,0 +539,0.0000,0.0000,1.9977,1.9980,0 +540,0.0000,0.0000,8.9309,8.9312,0 +541,0.0000,0.0000,2.0264,2.0267,0 +542,0.0000,0.0000,1.9775,1.9778,0 +543,0.0000,0.0000,1.9861,1.9864,0 +544,0.0000,0.0000,1.9943,1.9946,0 +545,0.0000,0.0000,8.9904,8.9907,0 +546,0.0000,0.0000,1.9797,1.9800,0 +547,0.0000,0.0000,1.9931,1.9934,0 +548,0.0000,0.0000,1.9607,1.9610,0 +549,0.0000,0.0000,2.0401,2.0405,0 +550,0.0000,0.0000,8.9640,8.9643,0 +551,0.0000,0.0000,2.0095,2.0098,0 +552,0.0000,0.0000,2.0042,2.0045,0 +553,0.0000,0.0000,1.9008,1.9011,0 +554,0.0000,0.0000,2.1214,2.1217,0 +555,0.0000,0.0000,9.0174,9.0177,0 +556,0.0000,0.0000,2.0427,2.0430,0 +557,0.0000,0.0000,1.9698,1.9701,0 +558,0.0000,0.0000,1.9137,1.9140,0 +559,0.0000,0.0000,8.8771,8.8774,0 +560,0.0000,0.0000,2.1022,2.1025,0 +561,0.0000,0.0000,2.0141,2.0144,0 +562,0.0000,0.0000,2.0028,2.0031,0 +563,0.0000,0.0000,1.9440,1.9443,0 +564,0.0000,0.0000,9.0773,9.0776,0 +565,0.0000,0.0000,2.0564,2.0567,0 +566,0.0000,0.0000,1.9750,1.9753,0 +567,0.0000,0.0000,1.9681,1.9684,0 +568,0.0000,0.0000,2.0186,2.0189,0 +569,0.0000,0.0000,9.0544,9.0547,0 +570,0.0000,0.0000,2.0051,2.0054,0 +571,0.0000,0.0000,1.9997,2.0000,0 +572,0.0000,0.0000,1.9753,1.9756,0 +573,0.0000,0.0000,2.0028,2.0031,0 +574,0.0000,0.0000,8.9032,8.9035,0 +575,0.0000,0.0000,2.0120,2.0123,0 +576,0.0000,0.0000,2.0012,2.0015,0 +577,0.0000,0.0000,1.9311,1.9314,0 +578,0.0000,0.0000,2.0796,2.0799,0 +579,0.0000,0.0000,8.9763,8.9766,0 +580,0.0000,0.0000,2.0011,2.0014,0 +581,0.0000,0.0000,2.0094,2.0097,0 +582,0.0000,0.0000,1.9055,1.9058,0 +583,0.0000,0.0000,2.0566,2.0569,0 +584,0.0000,0.0000,8.9381,8.9384,0 +585,0.0000,0.0000,2.0830,2.0833,0 +586,0.0000,0.0000,1.9648,1.9651,0 +587,0.0000,0.0000,1.9698,1.9701,0 +588,0.0000,0.0000,8.8381,8.8384,0 +589,0.0000,0.0000,2.1121,2.1124,0 +590,0.0000,0.0000,2.0225,2.0228,0 +591,0.0000,0.0000,2.0600,2.0603,0 +592,0.0000,0.0000,1.8652,1.8655,0 +593,0.0000,0.0000,9.1526,9.1529,0 +594,0.0000,0.0000,1.9848,1.9851,0 +595,0.0000,0.0000,1.9927,1.9931,0 +596,0.0000,0.0000,1.9465,1.9468,0 +597,0.0000,0.0000,1.9950,1.9953,0 +598,0.0000,0.0000,9.1468,9.1471,0 +599,0.0000,0.0000,2.0116,2.0119,0 +600,0.0000,0.0000,2.0030,2.0033,0 +601,0.0000,0.0000,1.9940,1.9943,0 +602,0.0000,0.0000,2.1485,2.1488,0 +603,0.0000,0.0000,8.9566,8.9569,0 +604,0.0000,0.0000,1.9494,1.9497,0 +605,0.0000,0.0000,2.0577,2.0580,0 +606,0.0000,0.0000,1.9014,1.9017,0 +607,0.0000,0.0000,2.0687,2.0690,0 +608,0.0000,0.0000,8.9811,8.9814,0 +609,0.0000,0.0000,1.9904,1.9907,0 +610,0.0000,0.0000,1.9542,1.9545,0 +611,0.0000,0.0000,1.9653,1.9656,0 +612,0.0000,0.0000,9.1432,9.1435,0 +613,0.0000,0.0000,2.0005,2.0008,0 +614,0.0000,0.0000,2.0268,2.0271,0 +615,0.0000,0.0000,1.9869,1.9872,0 +616,0.0000,0.0000,1.9322,1.9325,0 +617,0.0000,0.0000,9.0906,9.0909,0 +618,0.0000,0.0000,2.0148,2.0151,0 +619,0.0000,0.0000,2.0616,2.0619,0 +620,0.0000,0.0000,1.9613,1.9616,0 +621,0.0000,0.0000,1.9999,2.0002,0 +622,0.0000,0.0000,9.1267,9.1270,0 +623,0.0000,0.0000,2.0045,2.0048,0 +624,0.0000,0.0000,2.0024,2.0027,0 +625,0.0000,0.0000,1.9338,1.9341,0 +626,0.0000,0.0000,2.0024,2.0027,0 +627,0.0000,0.0000,9.0115,9.0118,0 +628,0.0000,0.0000,1.9844,1.9847,0 +629,0.0000,0.0000,1.9906,1.9909,0 +630,0.0000,0.0000,1.9067,1.9070,0 +631,0.0000,0.0000,2.0593,2.0596,0 +632,0.0000,0.0000,8.9713,8.9716,0 +633,0.0000,0.0000,2.0079,2.0082,0 +634,0.0000,0.0000,2.0142,2.0145,0 +635,0.0000,0.0000,1.8969,1.8972,0 +636,0.0000,0.0000,2.0552,2.0555,0 +637,0.0000,0.0000,8.9651,8.9654,0 +638,0.0000,0.0000,2.0093,2.0096,0 +639,0.0000,0.0000,2.0005,2.0008,0 +640,0.0000,0.0000,1.8799,1.8802,0 +641,0.0000,0.0000,9.0031,9.0034,0 +642,0.0000,0.0000,1.9961,1.9964,0 +643,0.0000,0.0000,2.0045,2.0048,0 +644,0.0000,0.0000,2.0104,2.0107,0 +645,0.0000,0.0000,1.8912,1.8915,0 +646,0.0000,0.0000,9.0524,9.0527,0 +647,0.0000,0.0000,1.9918,1.9921,0 +648,0.0000,0.0000,2.0542,2.0545,0 +649,0.0000,0.0000,1.9958,1.9961,0 +650,0.0000,0.0000,1.9709,1.9712,0 +651,0.0000,0.0000,9.0781,9.0784,0 +652,0.0000,0.0000,2.0069,2.0072,0 +653,0.0000,0.0000,2.0507,2.0510,0 +654,0.0000,0.0000,1.9739,1.9742,0 +655,0.0000,0.0000,2.0077,2.0080,0 +656,0.0000,0.0000,9.0278,9.0282,0 +657,0.0000,0.0000,2.0084,2.0087,0 +658,0.0000,0.0000,1.9570,1.9573,0 +659,0.0000,0.0000,1.9494,1.9497,0 +660,0.0000,0.0000,1.9804,1.9807,0 +661,0.0000,0.0000,8.8899,8.8902,0 +662,0.0000,0.0000,2.0043,2.0046,0 +663,0.0000,0.0000,1.9972,1.9975,0 +664,0.0000,0.0000,1.9599,1.9602,0 +665,0.0000,0.0000,2.0546,2.0549,0 +666,0.0000,0.0000,8.9264,8.9267,0 +667,0.0000,0.0000,1.9868,1.9871,0 +668,0.0000,0.0000,1.9977,1.9980,0 +669,0.0000,0.0000,1.9672,1.9675,0 +670,0.0000,0.0000,2.0601,2.0604,0 +671,0.0000,0.0000,9.0187,9.0191,0 +672,0.0000,0.0000,1.9696,1.9699,0 +673,0.0000,0.0000,2.0187,2.0190,0 +674,0.0000,0.0000,1.9596,1.9599,0 +675,0.0000,0.0000,9.0467,9.0470,0 +676,0.0000,0.0000,1.9185,1.9188,0 +677,0.0000,0.0000,1.9939,1.9942,0 +678,0.0000,0.0000,2.0089,2.0092,0 +679,0.0000,0.0000,1.9978,1.9981,0 +680,0.0000,0.0000,9.0389,9.0392,0 +681,0.0000,0.0000,2.0014,2.0017,0 +682,0.0000,0.0000,2.0014,2.0017,0 +683,0.0000,0.0000,1.9846,1.9850,0 +684,0.0000,0.0000,2.0026,2.0029,0 +685,0.0000,0.0000,9.1420,9.1423,0 +686,0.0000,0.0000,1.9818,1.9821,0 +687,0.0000,0.0000,2.0483,2.0486,0 +688,0.0000,0.0000,1.9349,1.9352,0 +689,0.0000,0.0000,2.0038,2.0041,0 +690,0.0000,0.0000,8.9035,8.9038,0 +691,0.0000,0.0000,1.9998,2.0001,0 +692,0.0000,0.0000,1.9969,1.9972,0 +693,0.0000,0.0000,1.9760,1.9763,0 +694,0.0000,0.0000,2.0520,2.0523,0 +695,0.0000,0.0000,8.9247,8.9250,0 +696,0.0000,0.0000,2.0018,2.0021,0 +697,0.0000,0.0000,2.0467,2.0470,0 +698,0.0000,0.0000,1.9156,1.9159,0 +699,0.0000,0.0000,2.0082,2.0085,0 +700,0.0000,0.0000,9.0751,9.0754,0 +701,0.0000,0.0000,1.9671,1.9674,0 +702,0.0000,0.0000,2.0451,2.0454,0 +703,0.0000,0.0000,1.8611,1.8614,0 +704,0.0000,0.0000,9.0050,9.0053,0 +705,0.0000,0.0000,1.9516,1.9519,0 +706,0.0000,0.0000,2.0423,2.0426,0 +707,0.0000,0.0000,2.0035,2.0038,0 +708,0.0000,0.0000,1.9243,1.9246,0 +709,0.0000,0.0000,9.0296,9.0299,0 +710,0.0000,0.0000,1.9812,1.9815,0 +711,0.0000,0.0000,2.0036,2.0039,0 +712,0.0000,0.0000,1.9737,1.9740,0 +713,0.0000,0.0000,1.9794,1.9797,0 +714,0.0000,0.0000,9.1767,9.1770,0 +715,0.0000,0.0000,2.0158,2.0161,0 +716,0.0000,0.0000,2.0012,2.0015,0 +717,0.0000,0.0000,1.9413,1.9416,0 +718,0.0000,0.0000,2.0169,2.0172,0 +719,0.0000,0.0000,8.8642,8.8645,0 +720,0.0000,0.0000,2.0362,2.0365,0 +721,0.0000,0.0000,1.9643,1.9646,0 +722,0.0000,0.0000,1.9869,1.9872,0 +723,0.0000,0.0000,1.9978,1.9981,0 +724,0.0000,0.0000,8.9568,8.9571,0 +725,0.0000,0.0000,1.9946,1.9949,0 +726,0.0000,0.0000,2.0055,2.0058,0 +727,0.0000,0.0000,1.9253,1.9256,0 +728,0.0000,0.0000,2.0942,2.0945,0 +729,0.0000,0.0000,9.0071,9.0074,0 +730,0.0000,0.0000,2.0190,2.0193,0 +731,0.0000,0.0000,2.0030,2.0033,0 +732,0.0000,0.0000,1.9378,1.9381,0 +733,0.0000,0.0000,2.0499,2.0502,0 +734,0.0000,0.0000,8.9467,8.9470,0 +735,0.0000,0.0000,2.0220,2.0224,0 +736,0.0000,0.0000,1.9683,1.9686,0 +737,0.0000,0.0000,1.9171,1.9174,0 +738,0.0000,0.0000,9.0124,9.0127,0 +739,0.0000,0.0000,2.0076,2.0079,0 +740,0.0000,0.0000,2.0087,2.0090,0 +741,0.0000,0.0000,1.9985,1.9988,0 +742,0.0000,0.0000,1.9768,1.9771,0 +743,0.0000,0.0000,9.1139,9.1142,0 +744,0.0000,0.0000,2.0399,2.0402,0 +745,0.0000,0.0000,2.0144,2.0147,0 +746,0.0000,0.0000,1.9791,1.9794,0 +747,0.0000,0.0000,2.0055,2.0058,0 +748,0.0000,0.0000,9.0187,9.0190,0 +749,0.0000,0.0000,2.0508,2.0511,0 +750,0.0000,0.0000,2.0110,2.0113,0 +751,0.0000,0.0000,1.9551,1.9554,0 +752,0.0000,0.0000,1.9921,1.9924,0 +753,0.0000,0.0000,8.9298,8.9302,0 +754,0.0000,0.0000,1.9968,1.9971,0 +755,0.0000,0.0000,2.0086,2.0089,0 +756,0.0000,0.0000,1.9226,1.9229,0 +757,0.0000,0.0000,2.0271,2.0274,0 +758,0.0000,0.0000,9.0496,9.0499,0 +759,0.0000,0.0000,1.9691,1.9694,0 +760,0.0000,0.0000,2.0042,2.0045,0 +761,0.0000,0.0000,1.9057,1.9060,0 +762,0.0000,0.0000,2.0552,2.0555,0 +763,0.0000,0.0000,8.9909,8.9912,0 +764,0.0000,0.0000,2.0342,2.0345,0 +765,0.0000,0.0000,1.8712,1.8715,0 +766,0.0000,0.0000,1.9428,1.9431,0 +767,0.0000,0.0000,8.9325,8.9328,0 +768,0.0000,0.0000,2.0010,2.0013,0 +769,0.0000,0.0000,1.9882,1.9885,0 +770,0.0000,0.0000,2.0230,2.0234,0 +771,0.0000,0.0000,1.9063,1.9066,0 +772,0.0000,0.0000,9.1134,9.1138,0 +773,0.0000,0.0000,2.0120,2.0123,0 +774,0.0000,0.0000,2.0108,2.0111,0 +775,0.0000,0.0000,1.9619,1.9622,0 +776,0.0000,0.0000,1.9931,1.9934,0 +777,0.0000,0.0000,8.9232,8.9235,0 +778,0.0000,0.0000,2.0041,2.0044,0 +779,0.0000,0.0000,1.9925,1.9928,0 +780,0.0000,0.0000,2.0586,2.0589,0 +781,0.0000,0.0000,2.0088,2.0091,0 +782,0.0000,0.0000,8.9718,8.9721,0 +783,0.0000,0.0000,1.9867,1.9870,0 +784,0.0000,0.0000,2.0050,2.0053,0 +785,0.0000,0.0000,1.9594,1.9597,0 +786,0.0000,0.0000,2.0063,2.0066,0 +787,0.0000,0.0000,9.0153,9.0156,0 +788,0.0000,0.0000,1.9929,1.9932,0 +789,0.0000,0.0000,2.0072,2.0075,0 +790,0.0000,0.0000,1.9299,1.9302,0 +791,0.0000,0.0000,2.0479,2.0483,0 +792,0.0000,0.0000,8.9571,8.9574,0 +793,0.0000,0.0000,2.0031,2.0033,0 +794,0.0000,0.0000,2.0023,2.0026,0 +795,0.0000,0.0000,1.9778,1.9781,0 +796,0.0000,0.0000,1.9319,1.9322,0 +797,0.0000,0.0000,8.8641,8.8644,0 +798,0.0000,0.0000,1.9982,1.9985,0 +799,0.0000,0.0000,2.0025,2.0028,0 +800,0.0000,0.0000,1.9025,1.9028,0 +801,0.0000,0.0000,2.0517,2.0520,0 +802,0.0000,0.0000,8.9854,8.9857,0 +803,0.0000,0.0000,2.0123,2.0126,0 +804,0.0000,0.0000,2.0028,2.0031,0 +805,0.0000,0.0000,1.9552,1.9555,0 +806,0.0000,0.0000,9.0246,9.0249,0 +807,0.0000,0.0000,1.9992,1.9995,0 +808,0.0000,0.0000,1.9940,1.9943,0 +809,0.0000,0.0000,2.0396,2.0399,0 +810,0.0000,0.0000,1.9101,1.9104,0 +811,0.0000,0.0000,9.1470,9.1473,0 +812,0.0000,0.0000,2.0098,2.0101,0 +813,0.0000,0.0000,1.9955,1.9958,0 +814,0.0000,0.0000,1.9945,1.9948,0 +815,0.0000,0.0000,1.9883,1.9886,0 +816,0.0000,0.0000,9.2174,9.2177,0 +817,0.0000,0.0000,1.8769,1.8775,0 +818,0.0000,0.0000,2.0861,2.0864,0 +819,0.0000,0.0000,1.9414,1.9417,0 +820,0.0000,0.0000,1.9256,1.9259,0 +821,0.0000,0.0000,8.9423,8.9426,0 +822,0.0000,0.0000,2.0105,2.0108,0 +823,0.0000,0.0000,1.9899,1.9902,0 +824,0.0000,0.0000,1.9296,1.9299,0 +825,0.0000,0.0000,2.0459,2.0462,0 +826,0.0000,0.0000,8.8927,8.8930,0 +827,0.0000,0.0000,2.0168,2.0171,0 +828,0.0000,0.0000,2.0320,2.0323,0 +829,0.0000,0.0000,1.9122,1.9125,0 +830,0.0000,0.0000,2.0504,2.0507,0 +831,0.0000,0.0000,9.0548,9.0551,0 +832,0.0000,0.0000,1.9848,1.9851,0 +833,0.0000,0.0000,2.0111,2.0114,0 +834,0.0000,0.0000,1.9088,1.9091,0 +835,0.0000,0.0000,9.0188,9.0191,0 +836,0.0000,0.0000,2.0273,2.0276,0 +837,0.0000,0.0000,1.9738,1.9741,0 +838,0.0000,0.0000,2.0525,2.0528,0 +839,0.0000,0.0000,1.9446,1.9449,0 +840,0.0000,0.0000,9.0119,9.0123,0 +841,0.0000,0.0000,2.0059,2.0062,0 +842,0.0000,0.0000,2.0000,2.0003,0 +843,0.0000,0.0000,1.9880,1.9883,0 +844,0.0000,0.0000,2.0026,2.0029,0 +845,0.0000,0.0000,9.0620,9.0623,0 +846,0.0000,0.0000,2.0034,2.0037,0 +847,0.0000,0.0000,2.0179,2.0182,0 +848,0.0000,0.0000,1.9730,1.9733,0 +849,0.0000,0.0000,2.0294,2.0297,0 +850,0.0000,0.0000,8.9365,8.9368,0 +851,0.0000,0.0000,1.9769,1.9772,0 +852,0.0000,0.0000,2.0029,2.0033,0 +853,0.0000,0.0000,1.9245,1.9248,0 +854,0.0000,0.0000,2.0499,2.0501,0 +855,0.0000,0.0000,8.8997,8.9000,0 +856,0.0000,0.0000,1.9983,1.9986,0 +857,0.0000,0.0000,2.0139,2.0142,0 +858,0.0000,0.0000,1.9069,1.9072,0 +859,0.0000,0.0000,2.1008,2.1011,0 +860,0.0000,0.0000,9.0253,9.0256,0 +861,0.0000,0.0000,2.0513,2.0516,0 +862,0.0000,0.0000,1.9631,1.9634,0 +863,0.0000,0.0000,1.8894,1.8897,0 +864,0.0000,0.0000,9.0171,9.0174,0 +865,0.0000,0.0000,2.0257,2.0260,0 +866,0.0000,0.0000,1.9856,1.9859,0 +867,0.0000,0.0000,2.0427,2.0430,0 +868,0.0000,0.0000,1.8721,1.8724,0 +869,0.0000,0.0000,9.0383,9.0386,0 +870,0.0000,0.0000,2.0193,2.0196,0 +871,0.0000,0.0000,2.0088,2.0091,0 +872,0.0000,0.0000,1.9977,1.9980,0 +873,0.0000,0.0000,1.9749,1.9752,0 +874,0.0000,0.0000,9.0822,9.0825,0 +875,0.0000,0.0000,2.0384,2.0387,0 +876,0.0000,0.0000,1.9987,1.9990,0 +877,0.0000,0.0000,1.9629,1.9632,0 +878,0.0000,0.0000,2.0108,2.0111,0 +879,0.0000,0.0000,8.9509,8.9512,0 +880,0.0000,0.0000,2.0229,2.0232,0 +881,0.0000,0.0000,1.9609,1.9612,0 +882,0.0000,0.0000,1.9732,1.9735,0 +883,0.0000,0.0000,2.0426,2.0429,0 +884,0.0000,0.0000,8.8678,8.8681,0 +885,0.0000,0.0000,1.9937,1.9940,0 +886,0.0000,0.0000,1.9971,1.9974,0 +887,0.0000,0.0000,1.9598,1.9601,0 +888,0.0000,0.0000,2.0651,2.0654,0 +889,0.0000,0.0000,9.0029,9.0032,0 +890,0.0000,0.0000,2.0218,2.0221,0 +891,0.0000,0.0000,1.9853,1.9856,0 +892,0.0000,0.0000,1.9077,1.9080,0 +893,0.0000,0.0000,2.0472,2.0475,0 +894,0.0000,0.0000,8.9876,8.9879,0 +895,0.0000,0.0000,2.0035,2.0038,0 +896,0.0000,0.0000,2.0132,2.0135,0 +897,0.0000,0.0000,1.8990,1.8993,0 +898,0.0000,0.0000,8.9861,8.9865,0 +899,0.0000,0.0000,2.0106,2.0109,0 +900,0.0000,0.0000,2.0547,2.0550,0 +901,0.0000,0.0000,2.0836,2.0839,0 +902,0.0000,0.0000,1.7168,1.7171,0 +903,0.0000,0.0000,9.2216,9.2219,0 +904,0.0000,0.0000,1.9654,1.9657,0 +905,0.0000,0.0000,2.0405,2.0409,0 +906,0.0000,0.0000,1.9536,1.9539,0 +907,0.0000,0.0000,1.9968,1.9971,0 +908,0.0000,0.0000,9.1043,9.1046,0 +909,0.0000,0.0000,2.0043,2.0046,0 +910,0.0000,0.0000,1.9993,1.9996,0 +911,0.0000,0.0000,1.9352,1.9355,0 +912,0.0000,0.0000,2.0531,2.0534,0 +913,0.0000,0.0000,9.0047,9.0050,0 +914,0.0000,0.0000,1.9426,1.9429,0 +915,0.0000,0.0000,2.0008,2.0011,0 +916,0.0000,0.0000,1.9143,1.9146,0 +917,0.0000,0.0000,2.0404,2.0407,0 +918,0.0000,0.0000,9.0412,9.0416,0 +919,0.0000,0.0000,2.0127,2.0130,0 +920,0.0000,0.0000,2.0016,2.0019,0 +921,0.0000,0.0000,1.9234,1.9237,0 +922,0.0000,0.0000,2.0385,2.0388,0 +923,0.0000,0.0000,8.9809,8.9812,0 +924,0.0000,0.0000,2.0102,2.0105,0 +925,0.0000,0.0000,2.0065,2.0068,0 +926,0.0000,0.0000,1.9259,1.9262,0 +927,0.0000,0.0000,8.9643,8.9646,0 +928,0.0000,0.0000,2.0131,2.0134,0 +929,0.0000,0.0000,2.0452,2.0455,0 +930,0.0000,0.0000,2.0479,2.0482,0 +931,0.0000,0.0000,1.9206,1.9209,0 +932,0.0000,0.0000,9.1870,9.1873,0 +933,0.0000,0.0000,2.0102,2.0105,0 +934,0.0000,0.0000,2.0016,2.0019,0 +935,0.0000,0.0000,1.9545,1.9548,0 +936,0.0000,0.0000,2.0064,2.0067,0 +937,0.0000,0.0000,8.9712,8.9715,0 +938,0.0000,0.0000,2.0011,2.0014,0 +939,0.0000,0.0000,1.9930,1.9933,0 +940,0.0000,0.0000,1.9495,1.9498,0 +941,0.0000,0.0000,2.0075,2.0078,0 +942,0.0000,0.0000,8.9617,8.9620,0 +943,0.0000,0.0000,1.9935,1.9938,0 +944,0.0000,0.0000,1.9824,1.9827,0 +945,0.0000,0.0000,1.9618,1.9621,0 +946,0.0000,0.0000,2.0007,2.0010,0 +947,0.0000,0.0000,8.9746,8.9749,0 +948,0.0000,0.0000,2.0452,2.0455,0 +949,0.0000,0.0000,1.9693,1.9696,0 +950,0.0000,0.0000,1.9453,1.9456,0 +951,0.0000,0.0000,2.0629,2.0632,0 +952,0.0000,0.0000,8.9399,8.9402,0 +953,0.0000,0.0000,2.0067,2.0070,0 +954,0.0000,0.0000,2.0102,2.0105,0 +955,0.0000,0.0000,1.9362,1.9365,0 +956,0.0000,0.0000,9.0069,9.0072,0 +957,0.0000,0.0000,1.9813,1.9816,0 +958,0.0000,0.0000,2.0620,2.0623,0 +959,0.0000,0.0000,1.9726,1.9729,0 +960,0.0000,0.0000,1.9639,1.9642,0 +961,0.0000,0.0000,9.1142,9.1145,0 +962,0.0000,0.0000,2.0077,2.0080,0 +963,0.0000,0.0000,2.0025,2.0028,0 +964,0.0000,0.0000,1.9927,1.9930,0 +965,0.0000,0.0000,1.9964,1.9967,0 +966,0.0000,0.0000,9.0839,9.0842,0 +967,0.0000,0.0000,2.0053,2.0056,0 +968,0.0000,0.0000,1.9718,1.9721,0 +969,0.0000,0.0000,1.9777,1.9780,0 +970,0.0000,0.0000,2.0018,2.0021,0 +971,0.0000,0.0000,8.9845,8.9848,0 +972,0.0000,0.0000,1.9792,1.9795,0 +973,0.0000,0.0000,2.0098,2.0101,0 +974,0.0000,0.0000,1.9090,1.9093,0 +975,0.0000,0.0000,2.0453,2.0456,0 +976,0.0000,0.0000,8.9989,8.9992,0 +977,0.0000,0.0000,2.0292,2.0295,0 +978,0.0000,0.0000,1.9574,1.9577,0 +979,0.0000,0.0000,1.9517,1.9520,0 +980,0.0000,0.0000,2.0821,2.0824,0 +981,0.0000,0.0000,8.8974,8.8977,0 +982,0.0000,0.0000,1.9948,1.9951,0 +983,0.0000,0.0000,2.0139,2.0142,0 +984,0.0000,0.0000,1.9476,1.9479,0 +985,0.0000,0.0000,9.0066,9.0069,0 +986,0.0000,0.0000,1.9972,1.9975,0 +987,0.0000,0.0000,1.9904,1.9907,0 +988,0.0000,0.0000,2.0269,2.0272,0 +989,0.0000,0.0000,1.9575,1.9578,0 +990,0.0000,0.0000,9.2206,9.2209,0 +991,0.0000,0.0000,1.9767,1.9770,0 +992,0.0000,0.0000,2.0170,2.0173,0 +993,0.0000,0.0000,1.9800,1.9803,0 +994,0.0000,0.0000,1.9966,1.9969,0 +995,0.0000,0.0000,9.0612,9.0615,0 +996,0.0000,0.0000,1.9724,1.9727,0 +997,0.0000,0.0000,2.0058,2.0060,0 +998,0.0000,0.0000,1.9749,1.9752,0 +999,0.0000,0.0000,2.0033,2.0036,0 +1000,0.0000,0.0000,8.9505,8.9508,0 +1001,0.0000,0.0000,1.9934,1.9937,0 +1002,0.0000,0.0000,1.9964,1.9967,0 +1003,0.0000,0.0000,1.9181,1.9184,0 +1004,0.0000,0.0000,2.1117,2.1120,0 +1005,0.0000,0.0000,9.0022,9.0025,0 +1006,0.0000,0.0000,1.9551,1.9554,0 +1007,0.0000,0.0000,2.0163,2.0166,0 +1008,0.0000,0.0000,1.9311,1.9314,0 +1009,0.0000,0.0000,2.0593,2.0596,0 +1010,0.0000,0.0000,8.9178,8.9181,0 +1011,0.0000,0.0000,1.9951,1.9954,0 +1012,0.0000,0.0000,2.0062,2.0065,0 +1013,0.0000,0.0000,1.9495,1.9498,0 +1014,0.0000,0.0000,9.0111,9.0114,0 +1015,0.0000,0.0000,1.9465,1.9468,0 +1016,0.0000,0.0000,1.9901,1.9904,0 +1017,0.0000,0.0000,2.0338,2.0341,0 +1018,0.0000,0.0000,1.9565,1.9568,0 +1019,0.0000,0.0000,9.2682,9.2685,0 +1020,0.0000,0.0000,2.0114,2.0117,0 +1021,0.0000,0.0000,1.9948,1.9951,0 +1022,0.0000,0.0000,1.9477,1.9481,0 +1023,0.0000,0.0000,2.0169,2.0172,0 +1024,0.0000,0.0000,9.1100,9.1103,0 +1025,0.0000,0.0000,1.9961,1.9964,0 +1026,0.0000,0.0000,2.0142,2.0145,0 +1027,0.0000,0.0000,1.9719,1.9722,0 +1028,0.0000,0.0000,1.9719,1.9722,0 +1029,0.0000,0.0000,8.9605,8.9608,0 +1030,0.0000,0.0000,2.0114,2.0117,0 +1031,0.0000,0.0000,1.9975,1.9978,0 +1032,0.0000,0.0000,1.9231,1.9234,0 +1033,0.0000,0.0000,2.0516,2.0519,0 +1034,0.0000,0.0000,8.9725,8.9728,0 +1035,0.0000,0.0000,1.9676,1.9679,0 +1036,0.0000,0.0000,2.0911,2.0914,0 +1037,0.0000,0.0000,1.8849,1.8852,0 +1038,0.0000,0.0000,2.0596,2.0599,0 +1039,0.0000,0.0000,8.9800,8.9803,0 +1040,0.0000,0.0000,1.9839,1.9842,0 +1041,0.0000,0.0000,2.0336,2.0339,0 +1042,0.0000,0.0000,1.8453,1.8456,0 +1043,0.0000,0.0000,9.0729,9.0732,0 +1044,0.0000,0.0000,1.9985,1.9988,0 +1045,0.0000,0.0000,1.9360,1.9363,0 +1046,0.0000,0.0000,1.9916,1.9919,0 +1047,0.0000,0.0000,1.9350,1.9353,0 +1048,0.0000,0.0000,9.0876,9.0879,0 +1049,0.0000,0.0000,2.0484,2.0487,0 +1050,0.0000,0.0000,2.0033,2.0036,0 +1051,0.0000,0.0000,1.9957,1.9960,0 +1052,0.0000,0.0000,1.9545,1.9548,0 +1053,0.0000,0.0000,9.1222,9.1225,0 +1054,0.0000,0.0000,1.9537,1.9540,0 +1055,0.0000,0.0000,2.0470,2.0473,0 +1056,0.0000,0.0000,1.9725,1.9728,0 +1057,0.0000,0.0000,2.0499,2.0502,0 +1058,0.0000,0.0000,8.9965,8.9968,0 +1059,0.0000,0.0000,1.9746,1.9749,0 +1060,0.0000,0.0000,2.0303,2.0306,0 +1061,0.0000,0.0000,1.8878,1.8881,0 +1062,0.0000,0.0000,2.0620,2.0623,0 +1063,0.0000,0.0000,8.9494,8.9497,0 +1064,0.0000,0.0000,2.0059,2.0062,0 +1065,0.0000,0.0000,2.0123,2.0126,0 +1066,0.0000,0.0000,1.9614,1.9617,0 +1067,0.0000,0.0000,2.0665,2.0668,0 +1068,0.0000,0.0000,8.8739,8.8742,0 +1069,0.0000,0.0000,1.9802,1.9805,0 +1070,0.0000,0.0000,1.9884,1.9887,0 +1071,0.0000,0.0000,1.9424,1.9427,0 +1072,0.0000,0.0000,2.0774,2.0777,0 +1073,0.0000,0.0000,8.8818,8.8821,0 +1074,0.0000,0.0000,2.0499,2.0502,0 +1075,0.0000,0.0000,1.9876,1.9879,0 +1076,0.0000,0.0000,1.8930,1.8933,0 +1077,0.0000,0.0000,9.0671,9.0674,0 +1078,0.0000,0.0000,1.9448,1.9451,0 +1079,0.0000,0.0000,2.0745,2.0748,0 +1080,0.0000,0.0000,2.0453,2.0456,0 +1081,0.0000,0.0000,1.9458,1.9461,0 +1082,0.0000,0.0000,9.0027,9.0030,0 +1083,0.0000,0.0000,2.0013,2.0016,0 +1084,0.0000,0.0000,2.0674,2.0678,0 +1085,0.0000,0.0000,1.9181,1.9184,0 +1086,0.0000,0.0000,1.9780,1.9783,0 +1087,0.0000,0.0000,9.0000,9.0003,0 +1088,0.0000,0.0000,2.0513,2.0516,0 +1089,0.0000,0.0000,1.9977,1.9979,0 +1090,0.0000,0.0000,1.9441,1.9444,0 +1091,0.0000,0.0000,2.0211,2.0214,0 +1092,0.0000,0.0000,8.9427,8.9430,0 +1093,0.0000,0.0000,2.1238,2.1242,0 +1094,0.0000,0.0000,1.8905,1.8908,0 +1095,0.0000,0.0000,1.9230,1.9233,0 +1096,0.0000,0.0000,1.9989,1.9992,0 +1097,0.0000,0.0000,8.9041,8.9043,0 +1098,0.0000,0.0000,1.9987,1.9990,0 +1099,0.0000,0.0000,2.0070,2.0073,0 +1100,0.0000,0.0000,1.9754,1.9757,0 +1101,0.0000,0.0000,2.0307,2.0310,0 +1102,0.0000,0.0000,8.9529,8.9532,0 +1103,0.0000,0.0000,2.0017,2.0020,0 +1104,0.0000,0.0000,2.0089,2.0092,0 +1105,0.0000,0.0000,1.8873,1.8876,0 +1106,0.0000,0.0000,2.0296,2.0299,0 +1107,0.0000,0.0000,9.0255,9.0258,0 +1108,0.0000,0.0000,1.9922,1.9925,0 +1109,0.0000,0.0000,2.0178,2.0181,0 +1110,0.0000,0.0000,1.9184,1.9187,0 +1111,0.0000,0.0000,9.0627,9.0630,0 +1112,0.0000,0.0000,2.0047,2.0050,0 +1113,0.0000,0.0000,2.0113,2.0116,0 +1114,0.0000,0.0000,1.9926,1.9929,0 +1115,0.0000,0.0000,1.9684,1.9687,0 +1116,0.0000,0.0000,9.0721,9.0724,0 +1117,0.0000,0.0000,1.9626,1.9629,0 +1118,0.0000,0.0000,1.9983,1.9986,0 +1119,0.0000,0.0000,1.9923,1.9927,0 +1120,0.0000,0.0000,2.0089,2.0092,0 +1121,0.0000,0.0000,9.0982,9.0985,0 +1122,0.0000,0.0000,2.0085,2.0088,0 +1123,0.0000,0.0000,1.9687,1.9690,0 +1124,0.0000,0.0000,1.9760,1.9763,0 +1125,0.0000,0.0000,2.0067,2.0070,0 +1126,0.0000,0.0000,8.9326,8.9329,0 +1127,0.0000,0.0000,1.9960,1.9963,0 +1128,0.0000,0.0000,2.0068,2.0071,0 +1129,0.0000,0.0000,1.9753,1.9756,0 +1130,0.0000,0.0000,2.0478,2.0481,0 +1131,0.0000,0.0000,8.9085,8.9088,0 +1132,0.0000,0.0000,2.0036,2.0039,0 +1133,0.0000,0.0000,2.0399,2.0402,0 +1134,0.0000,0.0000,1.9016,1.9019,0 +1135,0.0000,0.0000,2.1089,2.1092,0 +1136,0.0000,0.0000,8.8989,8.8992,0 +1137,0.0000,0.0000,2.0056,2.0059,0 +1138,0.0000,0.0000,1.9963,1.9966,0 +1139,0.0000,0.0000,1.9500,1.9503,0 +1140,0.0000,0.0000,9.0507,9.0510,0 +1141,0.0000,0.0000,2.0040,2.0043,0 +1142,0.0000,0.0000,1.9941,1.9944,0 +1143,0.0000,0.0000,2.0181,2.0184,0 +1144,0.0000,0.0000,1.9841,1.9844,0 +1145,0.0000,0.0000,9.0322,9.0325,0 +1146,0.0000,0.0000,2.0097,2.0100,0 +1147,0.0000,0.0000,2.0431,2.0434,0 +1148,0.0000,0.0000,1.9642,1.9645,0 +1149,0.0000,0.0000,1.9971,1.9974,0 +1150,0.0000,0.0000,9.1864,9.1867,0 +1151,0.0000,0.0000,1.9565,1.9568,0 +1152,0.0000,0.0000,1.9792,1.9795,0 +1153,0.0000,0.0000,1.9452,1.9455,0 +1154,0.0000,0.0000,2.0298,2.0301,0 +1155,0.0000,0.0000,8.9646,8.9649,0 +1156,0.0000,0.0000,1.9983,1.9986,0 +1157,0.0000,0.0000,2.0075,2.0078,0 +1158,0.0000,0.0000,1.9088,1.9091,0 +1159,0.0000,0.0000,2.0726,2.0729,0 +1160,0.0000,0.0000,8.9796,8.9799,0 +1161,0.0000,0.0000,2.0052,2.0055,0 +1162,0.0000,0.0000,2.0067,2.0070,0 +1163,0.0000,0.0000,1.9171,1.9175,0 +1164,0.0000,0.0000,2.0683,2.0686,0 +1165,0.0000,0.0000,8.7850,8.7853,0 +1166,0.0000,0.0000,2.0060,2.0063,0 +1167,0.0000,0.0000,2.1004,2.1007,0 +1168,0.0000,0.0000,1.8981,1.8984,0 +1169,0.0000,0.0000,9.0918,9.0921,0 +1170,0.0000,0.0000,2.0336,2.0339,0 +1171,0.0000,0.0000,1.9569,1.9572,0 +1172,0.0000,0.0000,1.9982,1.9985,0 +1173,0.0000,0.0000,1.9484,1.9487,0 +1174,0.0000,0.0000,9.1629,9.1632,0 +1175,0.0000,0.0000,2.0193,2.0196,0 +1176,0.0000,0.0000,1.9998,2.0001,0 +1177,0.0000,0.0000,1.9573,1.9576,0 +1178,0.0000,0.0000,2.0124,2.0127,0 +1179,0.0000,0.0000,9.1298,9.1301,0 +1180,0.0000,0.0000,1.9938,1.9941,0 +1181,0.0000,0.0000,2.0282,2.0285,0 +1182,0.0000,0.0000,1.9480,1.9483,0 +1183,0.0000,0.0000,2.0106,2.0109,0 +1184,0.0000,0.0000,8.8950,8.8953,0 +1185,0.0000,0.0000,2.0302,2.0305,0 +1186,0.0000,0.0000,1.9659,1.9662,0 +1187,0.0000,0.0000,1.9667,1.9670,0 +1188,0.0000,0.0000,2.0182,2.0185,0 +1189,0.0000,0.0000,8.9353,8.9356,0 +1190,0.0000,0.0000,1.9372,1.9375,0 +1191,0.0000,0.0000,2.0717,2.0720,0 +1192,0.0000,0.0000,1.9641,1.9644,0 +1193,0.0000,0.0000,2.0489,2.0492,0 +1194,0.0000,0.0000,8.9982,8.9985,0 +1195,0.0000,0.0000,2.0297,2.0300,0 +1196,0.0000,0.0000,1.9657,1.9660,0 +1197,0.0000,0.0000,1.9623,1.9626,0 +1198,0.0000,0.0000,9.0156,9.0159,0 +1199,0.0000,0.0000,2.0140,2.0143,0 +1200,0.0000,0.0000,1.9917,1.9920,0 +1201,0.0000,0.0000,2.0164,2.0167,0 +1202,0.0000,0.0000,1.9892,1.9895,0 +1203,0.0000,0.0000,9.0261,9.0264,0 +1204,0.0000,0.0000,2.0437,2.0441,0 +1205,0.0000,0.0000,1.9621,1.9624,0 +1206,0.0000,0.0000,2.0035,2.0038,0 +1207,0.0000,0.0000,1.9974,1.9977,0 +1208,0.0000,0.0000,9.1061,9.1064,0 +1209,0.0000,0.0000,2.0047,2.0050,0 +1210,0.0000,0.0000,2.0453,2.0456,0 +1211,0.0000,0.0000,1.9491,1.9494,0 +1212,0.0000,0.0000,1.9909,1.9911,0 +1213,0.0000,0.0000,8.8491,8.8495,0 +1214,0.0000,0.0000,2.0520,2.0523,0 +1215,0.0000,0.0000,1.9583,1.9586,0 +1216,0.0000,0.0000,1.9323,1.9326,0 +1217,0.0000,0.0000,2.0259,2.0262,0 +1218,0.0000,0.0000,8.9661,8.9664,0 +1219,0.0000,0.0000,2.0062,2.0065,0 +1220,0.0000,0.0000,2.0312,2.0315,0 +1221,0.0000,0.0000,1.8847,1.8850,0 +1222,0.0000,0.0000,2.0643,2.0646,0 +1223,0.0000,0.0000,9.0097,9.0100,0 +1224,0.0000,0.0000,1.9960,1.9963,0 +1225,0.0000,0.0000,1.9882,1.9885,0 +1226,0.0000,0.0000,1.9531,1.9534,0 +1227,0.0000,0.0000,9.0731,9.0734,0 +1228,0.0000,0.0000,2.0075,2.0078,0 +1229,0.0000,0.0000,1.9985,1.9988,0 +1230,0.0000,0.0000,2.0073,2.0076,0 +1231,0.0000,0.0000,1.9072,1.9075,0 +1232,0.0000,0.0000,9.0721,9.0724,0 +1233,0.0000,0.0000,2.0592,2.0595,0 +1234,0.0000,0.0000,1.9933,1.9936,0 +1235,0.0000,0.0000,1.8918,1.8921,0 +1236,0.0000,0.0000,2.0601,2.0604,0 +1237,0.0000,0.0000,9.2308,9.2311,0 +1238,0.0000,0.0000,2.0146,2.0149,0 +1239,0.0000,0.0000,2.0016,2.0019,0 +1240,0.0000,0.0000,1.9467,1.9470,0 +1241,0.0000,0.0000,2.0002,2.0005,0 +1242,0.0000,0.0000,8.8662,8.8665,0 +1243,0.0000,0.0000,2.0298,2.0301,0 +1244,0.0000,0.0000,2.0410,2.0413,0 +1245,0.0000,0.0000,1.9183,1.9186,0 +1246,0.0000,0.0000,2.0068,2.0071,0 +1247,0.0000,0.0000,8.9670,8.9673,0 +1248,0.0000,0.0000,2.0073,2.0076,0 +1249,0.0000,0.0000,2.0067,2.0069,0 +1250,0.0000,0.0000,1.9181,1.9184,0 +1251,0.0000,0.0000,2.0149,2.0152,0 +1252,0.0000,0.0000,9.0317,9.0319,0 +1253,0.0000,0.0000,1.9821,1.9824,0 +1254,0.0000,0.0000,1.9841,1.9844,0 +1255,0.0000,0.0000,1.9154,1.9157,0 +1256,0.0000,0.0000,2.0138,2.0141,0 +1257,0.0000,0.0000,8.9820,8.9823,0 +1258,0.0000,0.0000,1.9513,1.9516,0 +1259,0.0000,0.0000,2.0227,2.0230,0 +1260,0.0000,0.0000,1.9392,1.9395,0 +1261,0.0000,0.0000,9.0705,9.0708,0 +1262,0.0000,0.0000,1.9931,1.9934,0 +1263,0.0000,0.0000,1.9510,1.9513,0 +1264,0.0000,0.0000,2.0847,2.0849,0 +1265,0.0000,0.0000,1.9209,1.9212,0 +1266,0.0000,0.0000,9.1212,9.1215,0 +1267,0.0000,0.0000,2.0041,2.0044,0 +1268,0.0000,0.0000,2.0102,2.0105,0 +1269,0.0000,0.0000,2.0037,2.0040,0 +1270,0.0000,0.0000,2.0056,2.0059,0 +1271,0.0000,0.0000,8.8904,8.8907,0 +1272,0.0000,0.0000,2.0090,2.0093,0 +1273,0.0000,0.0000,1.9925,1.9928,0 +1274,0.0000,0.0000,2.0064,2.0067,0 +1275,0.0000,0.0000,2.0039,2.0043,0 +1276,0.0000,0.0000,8.9891,8.9894,0 +1277,0.0000,0.0000,1.9704,1.9707,0 +1278,0.0000,0.0000,2.0376,2.0379,0 +1279,0.0000,0.0000,1.9416,1.9419,0 +1280,0.0000,0.0000,2.0334,2.0337,0 +1281,0.0000,0.0000,8.9926,8.9929,0 +1282,0.0000,0.0000,2.0405,2.0409,0 +1283,0.0000,0.0000,1.9896,1.9899,0 +1284,0.0000,0.0000,1.8665,1.8668,0 +1285,0.0000,0.0000,2.0704,2.0707,0 +1286,0.0000,0.0000,8.9427,8.9430,0 +1287,0.0000,0.0000,1.9965,1.9968,0 +1288,0.0000,0.0000,2.0107,2.0110,0 +1289,0.0000,0.0000,1.9152,1.9155,0 +1290,0.0000,0.0000,9.0574,9.0577,0 +1291,0.0000,0.0000,2.0016,2.0019,0 +1292,0.0000,0.0000,1.9702,1.9705,0 +1293,0.0000,0.0000,2.0369,2.0372,0 +1294,0.0000,0.0000,1.9512,1.9515,0 +1295,0.0000,0.0000,9.0852,9.0855,0 +1296,0.0000,0.0000,2.0020,2.0023,0 +1297,0.0000,0.0000,2.0068,2.0071,0 +1298,0.0000,0.0000,1.9709,1.9713,0 +1299,0.0000,0.0000,1.9981,1.9983,0 +1300,0.0000,0.0000,8.9974,8.9977,0 +1301,0.0000,0.0000,2.0012,2.0015,0 +1302,0.0000,0.0000,1.9956,1.9959,0 +1303,0.0000,0.0000,1.9643,1.9646,0 +1304,0.0000,0.0000,2.0367,2.0370,0 +1305,0.0000,0.0000,8.8450,8.8453,0 +1306,0.0000,0.0000,2.0010,2.0013,0 +1307,0.0000,0.0000,2.0006,2.0009,0 +1308,0.0000,0.0000,1.9872,1.9875,0 +1309,0.0000,0.0000,1.9997,2.0000,0 +1310,0.0000,0.0000,8.9488,8.9491,0 +1311,0.0000,0.0000,2.0432,2.0435,0 +1312,0.0000,0.0000,1.9754,1.9758,0 +1313,0.0000,0.0000,2.0215,2.0218,0 +1314,0.0000,0.0000,1.8837,1.8840,0 +1315,0.0000,0.0000,8.9642,8.9645,0 +1316,0.0000,0.0000,2.0419,2.0422,0 +1317,0.0000,0.0000,1.9952,1.9955,0 +1318,0.0000,0.0000,1.9077,1.9080,0 +1319,0.0000,0.0000,2.0669,2.0672,0 +1320,0.0000,0.0000,8.9634,8.9637,0 +1321,0.0000,0.0000,2.0062,2.0065,0 +1322,0.0000,0.0000,1.9621,1.9624,0 +1323,0.0000,0.0000,1.9384,1.9387,0 +1324,0.0000,0.0000,2.0685,2.0688,0 +1325,0.0000,0.0000,9.0040,9.0043,0 +1326,0.0000,0.0000,1.9606,1.9609,0 +1327,0.0000,0.0000,2.0195,2.0198,0 +1328,0.0000,0.0000,1.9616,1.9619,0 +1329,0.0000,0.0000,9.0729,9.0732,0 +1330,0.0000,0.0000,1.9207,1.9210,0 +1331,0.0000,0.0000,2.0027,2.0030,0 +1332,0.0000,0.0000,1.9702,1.9706,0 +1333,0.0000,0.0000,2.0019,2.0022,0 +1334,0.0000,0.0000,9.0754,9.0757,0 +1335,0.0000,0.0000,1.9928,1.9931,0 +1336,0.0000,0.0000,1.9949,1.9952,0 +1337,0.0000,0.0000,1.9607,1.9610,0 +1338,0.0000,0.0000,2.0113,2.0116,0 +1339,0.0000,0.0000,9.2069,9.2071,0 +1340,0.0000,0.0000,1.9678,1.9681,0 +1341,0.0000,0.0000,2.0035,2.0038,0 +1342,0.0000,0.0000,1.9205,1.9208,0 +1343,0.0000,0.0000,1.9456,1.9459,0 +1344,0.0000,0.0000,8.8004,8.8007,0 +1345,0.0000,0.0000,2.0192,2.0195,0 +1346,0.0000,0.0000,2.0038,2.0041,0 +1347,0.0000,0.0000,1.9216,1.9219,0 +1348,0.0000,0.0000,2.1427,2.1430,0 +1349,0.0000,0.0000,8.9666,8.9669,0 +1350,0.0000,0.0000,2.0112,2.0115,0 +1351,0.0000,0.0000,1.7967,1.7971,0 +1352,0.0000,0.0000,1.9146,1.9149,0 +1353,0.0000,0.0000,2.0536,2.0539,0 +1354,0.0000,0.0000,9.0189,9.0192,0 +1355,0.0000,0.0000,1.9970,1.9973,0 +1356,0.0000,0.0000,2.0227,2.0230,0 +1357,0.0000,0.0000,1.9002,1.9005,0 +1358,0.0000,0.0000,9.0677,9.0680,0 +1359,0.0000,0.0000,2.0295,2.0298,0 +1360,0.0000,0.0000,1.9251,1.9254,0 +1361,0.0000,0.0000,2.0854,2.0857,0 +1362,0.0000,0.0000,1.9059,1.9063,0 +1363,0.0000,0.0000,9.0885,9.0888,0 +1364,0.0000,0.0000,2.0211,2.0214,0 +1365,0.0000,0.0000,1.9762,1.9765,0 +1366,0.0000,0.0000,1.9622,1.9626,0 +1367,0.0000,0.0000,1.9943,1.9946,0 +1368,0.0000,0.0000,9.1936,9.1940,0 +1369,0.0000,0.0000,1.9981,1.9985,0 +1370,0.0000,0.0000,2.0177,2.0180,0 +1371,0.0000,0.0000,1.9421,1.9424,0 +1372,0.0000,0.0000,2.0432,2.0435,0 +1373,0.0000,0.0000,8.8584,8.8587,0 +1374,0.0000,0.0000,2.0623,2.0626,0 +1375,0.0000,0.0000,2.0000,2.0003,0 +1376,0.0000,0.0000,1.9037,1.9040,0 +1377,0.0000,0.0000,2.0695,2.0698,0 +1378,0.0000,0.0000,8.9720,8.9723,0 +1379,0.0000,0.0000,2.0038,2.0041,0 +1380,0.0000,0.0000,2.0130,2.0133,0 +1381,0.0000,0.0000,1.9121,1.9124,0 +1382,0.0000,0.0000,2.0537,2.0540,0 +1383,0.0000,0.0000,9.0074,9.0078,0 +1384,0.0000,0.0000,1.9923,1.9926,0 +1385,0.0000,0.0000,2.0038,2.0041,0 +1386,0.0000,0.0000,1.9514,1.9517,0 +1387,0.0000,0.0000,9.0322,9.0325,0 +1388,0.0000,0.0000,1.9962,1.9965,0 +1389,0.0000,0.0000,2.0485,2.0488,0 +1390,0.0000,0.0000,1.9928,1.9932,0 +1391,0.0000,0.0000,1.9083,1.9086,0 +1392,0.0000,0.0000,9.1317,9.1320,0 +1393,0.0000,0.0000,1.9541,1.9544,0 +1394,0.0000,0.0000,2.0133,2.0136,0 +1395,0.0000,0.0000,2.0003,2.0006,0 +1396,0.0000,0.0000,1.9946,1.9949,0 +1397,0.0000,0.0000,9.0597,9.0600,0 +1398,0.0000,0.0000,1.9737,1.9740,0 +1399,0.0000,0.0000,2.0953,2.0956,0 +1400,0.0000,0.0000,1.9358,1.9361,0 +1401,0.0000,0.0000,2.0056,2.0059,0 +1402,0.0000,0.0000,8.8615,8.8618,0 +1403,0.0000,0.0000,2.0031,2.0033,0 +1404,0.0000,0.0000,2.0083,2.0086,0 +1405,0.0000,0.0000,1.9693,1.9696,0 +1406,0.0000,0.0000,2.0162,2.0165,0 +1407,0.0000,0.0000,8.9782,8.9785,0 +1408,0.0000,0.0000,2.0071,2.0074,0 +1409,0.0000,0.0000,2.0058,2.0061,0 +1410,0.0000,0.0000,1.9266,1.9269,0 +1411,0.0000,0.0000,2.0233,2.0236,0 +1412,0.0000,0.0000,9.0212,9.0215,0 +1413,0.0000,0.0000,2.0029,2.0032,0 +1414,0.0000,0.0000,2.0156,2.0159,0 +1415,0.0000,0.0000,1.9516,1.9519,0 +1416,0.0000,0.0000,9.0241,9.0244,0 +1417,0.0000,0.0000,1.9989,1.9992,0 +1418,0.0000,0.0000,2.0107,2.0110,0 +1419,0.0000,0.0000,2.0516,2.0519,0 +1420,0.0000,0.0000,1.9383,1.9387,0 +1421,0.0000,0.0000,9.0585,9.0589,0 +1422,0.0000,0.0000,1.8757,1.8760,0 +1423,0.0000,0.0000,1.9979,1.9982,0 +1424,0.0000,0.0000,2.0078,2.0081,0 +1425,0.0000,0.0000,1.9955,1.9958,0 +1426,0.0000,0.0000,9.1177,9.1180,0 +1427,0.0000,0.0000,2.0081,2.0084,0 +1428,0.0000,0.0000,2.0712,2.0715,0 +1429,0.0000,0.0000,1.9275,1.9278,0 +1430,0.0000,0.0000,2.0915,2.0918,0 +1431,0.0000,0.0000,8.8112,8.8115,0 +1432,0.0000,0.0000,1.9969,1.9972,0 +1433,0.0000,0.0000,1.9979,1.9982,0 +1434,0.0000,0.0000,1.9686,1.9689,0 +1435,0.0000,0.0000,2.0443,2.0446,0 +1436,0.0000,0.0000,8.9404,8.9407,0 +1437,0.0000,0.0000,2.0124,2.0127,0 +1438,0.0000,0.0000,1.9934,1.9936,0 +1439,0.0000,0.0000,1.9513,1.9516,0 +1440,0.0000,0.0000,2.0546,2.0549,0 +1441,0.0000,0.0000,9.0254,9.0257,0 +1442,0.0000,0.0000,2.0393,2.0396,0 +1443,0.0000,0.0000,1.9636,1.9639,0 +1444,0.0000,0.0000,1.9623,1.9626,0 +1445,0.0000,0.0000,9.0129,9.0132,0 +1446,0.0000,0.0000,1.9912,1.9915,0 +1447,0.0000,0.0000,2.0153,2.0156,0 +1448,0.0000,0.0000,1.9952,1.9955,0 +1449,0.0000,0.0000,1.9989,1.9992,0 +1450,0.0000,0.0000,8.9799,8.9802,0 +1451,0.0000,0.0000,2.0365,2.0368,0 +1452,0.0000,0.0000,1.9673,1.9676,0 +1453,0.0000,0.0000,2.0356,2.0359,0 +1454,0.0000,0.0000,1.9648,1.9651,0 +1455,0.0000,0.0000,9.1297,9.1299,0 +1456,0.0000,0.0000,2.0095,2.0098,0 +1457,0.0000,0.0000,2.0092,2.0095,0 +1458,0.0000,0.0000,1.9869,1.9872,0 +1459,0.0000,0.0000,2.0193,2.0196,0 +1460,0.0000,0.0000,8.9668,8.9671,0 +1461,0.0000,0.0000,1.9500,1.9503,0 +1462,0.0000,0.0000,1.9851,1.9854,0 +1463,0.0000,0.0000,1.9740,1.9743,0 +1464,0.0000,0.0000,2.0152,2.0156,0 +1465,0.0000,0.0000,8.9438,8.9441,0 +1466,0.0000,0.0000,2.0069,2.0072,0 +1467,0.0000,0.0000,2.0453,2.0456,0 +1468,0.0000,0.0000,1.9198,1.9201,0 +1469,0.0000,0.0000,2.0719,2.0722,0 +1470,0.0000,0.0000,9.1093,9.1096,0 +1471,0.0000,0.0000,1.9967,1.9971,0 +1472,0.0000,0.0000,2.0091,2.0094,0 +1473,0.0000,0.0000,1.8673,1.8676,0 +1474,0.0000,0.0000,9.0672,9.0675,0 +1475,0.0000,0.0000,1.9559,1.9562,0 +1476,0.0000,0.0000,2.0113,2.0116,0 +1477,0.0000,0.0000,2.0287,2.0290,0 +1478,0.0000,0.0000,1.9186,1.9189,0 +1479,0.0000,0.0000,9.1290,9.1293,0 +1480,0.0000,0.0000,2.0035,2.0039,0 +1481,0.0000,0.0000,1.9963,1.9966,0 +1482,0.0000,0.0000,1.9481,1.9484,0 +1483,0.0000,0.0000,2.0714,2.0717,0 +1484,0.0000,0.0000,9.0886,9.0889,0 +1485,0.0000,0.0000,2.0120,2.0123,0 +1486,0.0000,0.0000,2.0396,2.0399,0 +1487,0.0000,0.0000,1.9373,1.9376,0 +1488,0.0000,0.0000,1.9530,1.9533,0 +1489,0.0000,0.0000,8.9348,8.9351,0 +1490,0.0000,0.0000,2.0124,2.0127,0 +1491,0.0000,0.0000,2.0581,2.0584,0 +1492,0.0000,0.0000,1.9086,1.9089,0 +1493,0.0000,0.0000,1.9956,1.9959,0 +1494,0.0000,0.0000,8.9302,8.9305,0 +1495,0.0000,0.0000,2.0007,2.0010,0 +1496,0.0000,0.0000,1.9965,1.9968,0 +1497,0.0000,0.0000,1.9921,1.9924,0 +1498,0.0000,0.0000,2.0296,2.0299,0 +1499,0.0000,0.0000,8.9832,8.9835,0 +1500,0.0000,0.0000,2.0111,2.0114,0 +1501,0.0000,0.0000,2.0014,2.0017,0 +1502,0.0000,0.0000,1.9548,1.9551,0 +1503,0.0000,0.0000,9.0788,9.0791,0 +1504,0.0000,0.0000,1.9708,1.9711,0 +1505,0.0000,0.0000,2.0135,2.0138,0 +1506,0.0000,0.0000,2.0092,2.0095,0 +1507,0.0000,0.0000,1.9648,1.9651,0 +1508,0.0000,0.0000,8.9184,8.9187,0 +1509,0.0000,0.0000,1.9815,1.9818,0 +1510,0.0000,0.0000,2.0033,2.0036,0 +1511,0.0000,0.0000,2.0103,2.0107,0 +1512,0.0000,0.0000,2.0818,2.0821,0 +1513,0.0000,0.0000,9.1675,9.1678,0 +1514,0.0000,0.0000,1.9994,1.9998,0 +1515,0.0000,0.0000,2.0019,2.0022,0 +1516,0.0000,0.0000,1.9378,1.9381,0 +1517,0.0000,0.0000,1.9941,1.9944,0 +1518,0.0000,0.0000,8.9520,8.9523,0 +1519,0.0000,0.0000,2.0045,2.0048,0 +1520,0.0000,0.0000,2.0026,2.0029,0 +1521,0.0000,0.0000,1.9669,1.9672,0 +1522,0.0000,0.0000,1.9152,1.9155,0 +1523,0.0000,0.0000,8.9605,8.9608,0 +1524,0.0000,0.0000,2.0010,2.0013,0 +1525,0.0000,0.0000,1.9914,1.9917,0 +1526,0.0000,0.0000,1.9133,1.9136,0 +1527,0.0000,0.0000,2.0582,2.0585,0 +1528,0.0000,0.0000,8.9301,8.9304,0 +1529,0.0000,0.0000,1.9520,1.9524,0 +1530,0.0000,0.0000,2.1442,2.1446,0 +1531,0.0000,0.0000,1.8683,1.8686,0 +1532,0.0000,0.0000,2.0626,2.0629,0 +1533,0.0000,0.0000,8.9695,8.9698,0 +1534,0.0000,0.0000,2.0060,2.0063,0 +1535,0.0000,0.0000,2.0217,2.0220,0 +1536,0.0000,0.0000,1.8945,1.8948,0 +1537,0.0000,0.0000,9.0752,9.0755,0 +1538,0.0000,0.0000,1.9099,1.9103,0 +1539,0.0000,0.0000,1.9883,1.9886,0 +1540,0.0000,0.0000,1.9998,2.0001,0 +1541,0.0000,0.0000,1.9715,1.9718,0 +1542,0.0000,0.0000,9.1562,9.1565,0 +1543,0.0000,0.0000,2.0066,2.0069,0 +1544,0.0000,0.0000,1.9049,1.9052,0 +1545,0.0000,0.0000,2.0352,2.0354,0 +1546,0.0000,0.0000,1.9947,1.9950,0 +1547,0.0000,0.0000,9.0822,9.0825,0 +1548,0.0000,0.0000,2.0115,2.0118,0 +1549,0.0000,0.0000,2.0055,2.0058,0 +1550,0.0000,0.0000,1.9710,1.9713,0 +1551,0.0000,0.0000,2.0103,2.0106,0 +1552,0.0000,0.0000,8.9185,8.9189,0 +1553,0.0000,0.0000,2.0024,2.0027,0 +1554,0.0000,0.0000,1.9973,1.9976,0 +1555,0.0000,0.0000,1.9209,1.9212,0 +1556,0.0000,0.0000,2.0111,2.0114,0 +1557,0.0000,0.0000,9.0383,9.0386,0 +1558,0.0000,0.0000,1.9891,1.9894,0 +1559,0.0000,0.0000,2.0018,2.0021,0 +1560,0.0000,0.0000,1.9143,1.9146,0 +1561,0.0000,0.0000,2.0879,2.0882,0 +1562,0.0000,0.0000,8.9023,8.9026,0 +1563,0.0000,0.0000,2.0036,2.0039,0 +1564,0.0000,0.0000,2.0005,2.0008,0 +1565,0.0000,0.0000,1.9488,1.9491,0 +1566,0.0000,0.0000,9.0155,9.0157,0 +1567,0.0000,0.0000,2.0028,2.0031,0 +1568,0.0000,0.0000,1.9897,1.9900,0 +1569,0.0000,0.0000,2.0160,2.0163,0 +1570,0.0000,0.0000,1.9441,1.9444,0 +1571,0.0000,0.0000,9.0867,9.0870,0 +1572,0.0000,0.0000,2.0250,2.0253,0 +1573,0.0000,0.0000,1.9533,1.9537,0 +1574,0.0000,0.0000,1.9657,1.9660,0 +1575,0.0000,0.0000,1.9696,1.9699,0 +1576,0.0000,0.0000,9.1203,9.1206,0 +1577,0.0000,0.0000,2.0149,2.0152,0 +1578,0.0000,0.0000,2.0051,2.0054,0 +1579,0.0000,0.0000,1.9534,1.9537,0 +1580,0.0000,0.0000,2.0049,2.0052,0 +1581,0.0000,0.0000,8.8859,8.8862,0 +1582,0.0000,0.0000,1.9958,1.9961,0 +1583,0.0000,0.0000,2.0419,2.0421,0 +1584,0.0000,0.0000,1.9506,1.9509,0 +1585,0.0000,0.0000,2.0868,2.0871,0 +1586,0.0000,0.0000,9.0372,9.0375,0 +1587,0.0000,0.0000,2.0123,2.0126,0 +1588,0.0000,0.0000,2.0024,2.0026,0 +1589,0.0000,0.0000,1.9116,1.9119,0 +1590,0.0000,0.0000,2.0538,2.0541,0 +1591,0.0000,0.0000,8.9969,8.9972,0 +1592,0.0000,0.0000,1.9695,1.9698,0 +1593,0.0000,0.0000,2.0074,2.0077,0 +1594,0.0000,0.0000,1.9024,1.9028,0 +1595,0.0000,0.0000,9.0882,9.0885,0 +1596,0.0000,0.0000,2.0104,2.0107,0 +1597,0.0000,0.0000,1.9954,1.9957,0 +1598,0.0000,0.0000,2.0297,2.0300,0 +1599,0.0000,0.0000,1.8993,1.8996,0 +1600,0.0000,0.0000,9.1777,9.1780,0 +1601,0.0000,0.0000,1.9932,1.9935,0 +1602,0.0000,0.0000,2.0140,2.0143,0 +1603,0.0000,0.0000,1.9548,1.9551,0 +1604,0.0000,0.0000,1.9875,1.9878,0 +1605,0.0000,0.0000,9.1305,9.1308,0 +1606,0.0000,0.0000,2.0626,2.0629,0 +1607,0.0000,0.0000,1.9712,1.9715,0 +1608,0.0000,0.0000,1.9448,1.9451,0 +1609,0.0000,0.0000,2.0115,2.0118,0 +1610,0.0000,0.0000,8.8637,8.8640,0 +1611,0.0000,0.0000,2.0053,2.0056,0 +1612,0.0000,0.0000,2.0397,2.0400,0 +1613,0.0000,0.0000,1.9566,1.9569,0 +1614,0.0000,0.0000,2.1082,2.1085,0 +1615,0.0000,0.0000,9.0207,9.0210,0 +1616,0.0000,0.0000,1.9974,1.9977,0 +1617,0.0000,0.0000,2.0079,2.0082,0 +1618,0.0000,0.0000,1.9243,1.9246,0 +1619,0.0000,0.0000,2.0614,2.0617,0 +1620,0.0000,0.0000,8.9200,8.9203,0 +1621,0.0000,0.0000,2.0183,2.0186,0 +1622,0.0000,0.0000,1.9934,1.9937,0 +1623,0.0000,0.0000,1.9388,1.9391,0 +1624,0.0000,0.0000,9.1167,9.1170,0 +1625,0.0000,0.0000,1.9651,1.9654,0 +1626,0.0000,0.0000,2.0729,2.0732,0 +1627,0.0000,0.0000,1.9468,1.9471,0 +1628,0.0000,0.0000,1.9456,1.9459,0 +1629,0.0000,0.0000,9.0528,9.0531,0 +1630,0.0000,0.0000,2.0084,2.0087,0 +1631,0.0000,0.0000,2.0122,2.0125,0 +1632,0.0000,0.0000,2.0062,2.0065,0 +1633,0.0000,0.0000,1.9962,1.9965,0 +1634,0.0000,0.0000,9.0121,9.0124,0 +1635,0.0000,0.0000,2.0470,2.0473,0 +1636,0.0000,0.0000,1.9790,1.9793,0 +1637,0.0000,0.0000,1.9781,1.9784,0 +1638,0.0000,0.0000,2.0064,2.0067,0 +1639,0.0000,0.0000,8.9457,8.9460,0 +1640,0.0000,0.0000,1.9792,1.9794,0 +1641,0.0000,0.0000,2.0028,2.0031,0 +1642,0.0000,0.0000,1.9618,1.9621,0 +1643,0.0000,0.0000,2.0129,2.0131,0 +1644,0.0000,0.0000,9.0472,9.0475,0 +1645,0.0000,0.0000,1.9943,1.9946,0 +1646,0.0000,0.0000,2.0092,2.0095,0 +1647,0.0000,0.0000,1.9391,1.9394,0 +1648,0.0000,0.0000,2.0575,2.0578,0 +1649,0.0000,0.0000,8.9476,8.9479,0 +1650,0.0000,0.0000,1.9112,1.9115,0 +1651,0.0000,0.0000,2.0904,2.0907,0 +1652,0.0000,0.0000,1.9166,1.9169,0 +1653,0.0000,0.0000,9.0421,9.0424,0 +1654,0.0000,0.0000,1.9935,1.9938,0 +1655,0.0000,0.0000,2.0087,2.0090,0 +1656,0.0000,0.0000,2.0143,2.0146,0 +1657,0.0000,0.0000,1.9696,1.9698,0 +1658,0.0000,0.0000,9.1142,9.1145,0 +1659,0.0000,0.0000,2.0056,2.0058,0 +1660,0.0000,0.0000,2.0170,2.0173,0 +1661,0.0000,0.0000,1.9985,1.9988,0 +1662,0.0000,0.0000,1.9998,2.0001,0 +1663,0.0000,0.0000,9.0454,9.0457,0 +1664,0.0000,0.0000,1.9924,1.9927,0 +1665,0.0000,0.0000,2.0520,2.0523,0 +1666,0.0000,0.0000,1.9493,1.9496,0 +1667,0.0000,0.0000,2.0067,2.0070,0 +1668,0.0000,0.0000,8.9734,8.9737,0 +1669,0.0000,0.0000,2.0896,2.0899,0 +1670,0.0000,0.0000,1.8775,1.8778,0 +1671,0.0000,0.0000,1.9179,1.9182,0 +1672,0.0000,0.0000,2.0244,2.0247,0 +1673,0.0000,0.0000,9.0061,9.0064,0 +1674,0.0000,0.0000,1.9958,1.9961,0 +1675,0.0000,0.0000,2.0103,2.0106,0 +1676,0.0000,0.0000,1.9557,1.9560,0 +1677,0.0000,0.0000,2.0488,2.0491,0 +1678,0.0000,0.0000,8.9343,8.9346,0 +1679,0.0000,0.0000,2.0514,2.0517,0 +1680,0.0000,0.0000,1.9685,1.9688,0 +1681,0.0000,0.0000,1.9365,1.9369,0 +1682,0.0000,0.0000,9.1049,9.1052,0 +1683,0.0000,0.0000,2.0072,2.0075,0 +1684,0.0000,0.0000,2.0074,2.0077,0 +1685,0.0000,0.0000,1.9938,1.9941,0 +1686,0.0000,0.0000,1.9786,1.9790,0 +1687,0.0000,0.0000,9.2206,9.2209,0 +1688,0.0000,0.0000,1.7635,1.7638,0 +1689,0.0000,0.0000,2.0830,2.0833,0 +1690,0.0000,0.0000,1.9846,1.9850,0 +1691,0.0000,0.0000,2.0364,2.0367,0 +1692,0.0000,0.0000,8.9744,8.9747,0 +1693,0.0000,0.0000,1.9959,1.9962,0 +1694,0.0000,0.0000,2.0005,2.0008,0 +1695,0.0000,0.0000,1.9662,1.9665,0 +1696,0.0000,0.0000,1.9963,1.9966,0 +1697,0.0000,0.0000,8.9716,8.9719,0 +1698,0.0000,0.0000,2.0083,2.0086,0 +1699,0.0000,0.0000,1.9763,1.9766,0 +1700,0.0000,0.0000,1.9395,1.9398,0 +1701,0.0000,0.0000,1.9972,1.9975,0 +1702,0.0000,0.0000,9.0229,9.0232,0 +1703,0.0000,0.0000,2.0007,2.0010,0 +1704,0.0000,0.0000,1.9874,1.9877,0 +1705,0.0000,0.0000,1.9194,1.9197,0 +1706,0.0000,0.0000,2.1040,2.1043,0 +1707,0.0000,0.0000,8.9471,8.9474,0 +1708,0.0000,0.0000,1.9994,1.9997,0 +1709,0.0000,0.0000,2.0048,2.0051,0 +1710,0.0000,0.0000,1.9709,1.9712,0 +1711,0.0000,0.0000,2.0099,2.0103,0 +1712,0.0000,0.0000,8.9233,8.9236,0 +1713,0.0000,0.0000,2.0396,2.0399,0 +1714,0.0000,0.0000,2.0144,2.0147,0 +1715,0.0000,0.0000,1.9211,1.9214,0 +1716,0.0000,0.0000,9.0311,9.0314,0 +1717,0.0000,0.0000,2.0120,2.0123,0 +1718,0.0000,0.0000,1.9948,1.9951,0 +1719,0.0000,0.0000,2.0253,2.0256,0 +1720,0.0000,0.0000,1.9953,1.9956,0 +1721,0.0000,0.0000,9.0288,9.0291,0 +1722,0.0000,0.0000,2.0417,2.0420,0 +1723,0.0000,0.0000,1.9623,1.9626,0 +1724,0.0000,0.0000,1.9475,1.9479,0 +1725,0.0000,0.0000,2.0328,2.0331,0 +1726,0.0000,0.0000,9.0505,9.0508,0 +1727,0.0000,0.0000,2.0093,2.0096,0 +1728,0.0000,0.0000,2.0087,2.0090,0 +1729,0.0000,0.0000,1.9546,1.9549,0 +1730,0.0000,0.0000,1.9469,1.9471,0 +1731,0.0000,0.0000,9.0233,9.0236,0 +1732,0.0000,0.0000,1.9992,1.9996,0 +1733,0.0000,0.0000,2.0102,2.0105,0 +1734,0.0000,0.0000,1.9128,1.9131,0 +1735,0.0000,0.0000,2.0819,2.0822,0 +1736,0.0000,0.0000,8.9800,8.9803,0 +1737,0.0000,0.0000,2.0072,2.0075,0 +1738,0.0000,0.0000,1.9965,1.9968,0 +1739,0.0000,0.0000,1.9044,1.9047,0 +1740,0.0000,0.0000,2.0049,2.0052,0 +1741,0.0000,0.0000,8.9866,8.9869,0 +1742,0.0000,0.0000,2.0127,2.0130,0 +1743,0.0000,0.0000,2.0154,2.0158,0 +1744,0.0000,0.0000,1.8760,1.8763,0 +1745,0.0000,0.0000,9.1396,9.1399,0 +1746,0.0000,0.0000,1.9231,1.9234,0 +1747,0.0000,0.0000,1.9715,1.9718,0 +1748,0.0000,0.0000,2.0008,2.0012,0 +1749,0.0000,0.0000,1.9749,1.9752,0 +1750,0.0000,0.0000,9.0717,9.0720,0 +1751,0.0000,0.0000,2.0077,2.0080,0 +1752,0.0000,0.0000,1.9986,1.9989,0 +1753,0.0000,0.0000,2.1428,2.1431,0 +1754,0.0000,0.0000,1.7960,1.7963,0 +1755,0.0000,0.0000,9.1450,9.1453,0 +1756,0.0000,0.0000,2.0170,2.0173,0 +1757,0.0000,0.0000,2.0060,2.0063,0 +1758,0.0000,0.0000,1.9390,1.9393,0 +1759,0.0000,0.0000,2.0294,2.0297,0 +1760,0.0000,0.0000,8.9107,8.9110,0 +1761,0.0000,0.0000,1.9969,1.9972,0 +1762,0.0000,0.0000,1.9734,1.9737,0 +1763,0.0000,0.0000,1.9549,1.9552,0 +1764,0.0000,0.0000,1.9958,1.9961,0 +1765,0.0000,0.0000,8.9346,8.9349,0 +1766,0.0000,0.0000,1.9991,1.9994,0 +1767,0.0000,0.0000,2.0100,2.0103,0 +1768,0.0000,0.0000,1.9202,1.9205,0 +1769,0.0000,0.0000,2.0535,2.0538,0 +1770,0.0000,0.0000,9.0338,9.0341,0 +1771,0.0000,0.0000,2.0108,2.0111,0 +1772,0.0000,0.0000,2.0089,2.0092,0 +1773,0.0000,0.0000,1.9001,1.9004,0 +1774,0.0000,0.0000,9.1540,9.1543,0 +1775,0.0000,0.0000,2.0195,2.0198,0 +1776,0.0000,0.0000,1.9524,1.9527,0 +1777,0.0000,0.0000,2.0674,2.0677,0 +1778,0.0000,0.0000,1.8839,1.8842,0 +1779,0.0000,0.0000,8.9950,8.9953,0 +1780,0.0000,0.0000,2.0014,2.0017,0 +1781,0.0000,0.0000,1.9944,1.9947,0 +1782,0.0000,0.0000,1.9826,1.9829,0 +1783,0.0000,0.0000,1.9332,1.9335,0 +1784,0.0000,0.0000,9.1627,9.1630,0 +1785,0.0000,0.0000,2.0093,2.0096,0 +1786,0.0000,0.0000,1.9897,1.9900,0 +1787,0.0000,0.0000,1.9144,1.9147,0 +1788,0.0000,0.0000,2.0001,2.0004,0 +1789,0.0000,0.0000,8.9344,8.9347,0 +1790,0.0000,0.0000,2.0535,2.0538,0 +1791,0.0000,0.0000,1.9969,1.9972,0 +1792,0.0000,0.0000,1.8891,1.8894,0 +1793,0.0000,0.0000,1.9926,1.9929,0 +1794,0.0000,0.0000,8.9772,8.9775,0 +1795,0.0000,0.0000,2.0080,2.0083,0 +1796,0.0000,0.0000,2.0195,2.0198,0 +1797,0.0000,0.0000,1.8748,1.8751,0 +1798,0.0000,0.0000,2.1187,2.1190,0 +1799,0.0000,0.0000,8.9619,8.9622,0 +1800,0.0000,0.0000,1.9954,1.9957,0 +1801,0.0000,0.0000,2.0014,2.0017,0 +1802,0.0000,0.0000,1.9024,1.9027,0 +1803,0.0000,0.0000,2.0590,2.0593,0 +1804,0.0000,0.0000,9.0364,9.0367,0 +1805,0.0000,0.0000,1.9946,1.9949,0 +1806,0.0000,0.0000,2.0371,2.0374,0 +1807,0.0000,0.0000,1.8206,1.8209,0 +1808,0.0000,0.0000,9.1011,9.1014,0 +1809,0.0000,0.0000,1.9876,1.9879,0 +1810,0.0000,0.0000,2.0121,2.0124,0 +1811,0.0000,0.0000,2.0347,2.0350,0 +1812,0.0000,0.0000,1.9180,1.9183,0 +1813,0.0000,0.0000,9.1884,9.1887,0 +1814,0.0000,0.0000,2.0028,2.0031,0 +1815,0.0000,0.0000,1.9942,1.9945,0 +1816,0.0000,0.0000,1.9680,1.9683,0 +1817,0.0000,0.0000,1.9865,1.9868,0 +1818,0.0000,0.0000,9.0844,9.0847,0 +1819,0.0000,0.0000,1.9885,1.9887,0 +1820,0.0000,0.0000,1.9832,1.9835,0 +1821,0.0000,0.0000,2.0111,2.0115,0 +1822,0.0000,0.0000,2.0038,2.0041,0 +1823,0.0000,0.0000,8.9439,8.9442,0 +1824,0.0000,0.0000,1.9590,1.9593,0 +1825,0.0000,0.0000,2.0604,2.0607,0 +1826,0.0000,0.0000,1.9217,1.9220,0 +1827,0.0000,0.0000,2.0591,2.0594,0 +1828,0.0000,0.0000,8.9716,8.9719,0 +1829,0.0000,0.0000,1.9907,1.9910,0 +1830,0.0000,0.0000,2.0052,2.0055,0 +1831,0.0000,0.0000,1.9036,1.9039,0 +1832,0.0000,0.0000,2.0541,2.0544,0 +1833,0.0000,0.0000,9.0368,9.0371,0 +1834,0.0000,0.0000,2.0197,2.0200,0 +1835,0.0000,0.0000,2.0187,2.0190,0 +1836,0.0000,0.0000,1.8626,1.8629,0 +1837,0.0000,0.0000,8.9642,8.9645,0 +1838,0.0000,0.0000,2.0413,2.0416,0 +1839,0.0000,0.0000,2.0058,2.0061,0 +1840,0.0000,0.0000,2.0049,2.0052,0 +1841,0.0000,0.0000,1.9250,1.9253,0 +1842,0.0000,0.0000,9.0733,9.0736,0 +1843,0.0000,0.0000,2.0493,2.0496,0 +1844,0.0000,0.0000,2.0050,2.0053,0 +1845,0.0000,0.0000,1.9664,1.9667,0 +1846,0.0000,0.0000,1.9780,1.9783,0 +1847,0.0000,0.0000,9.1553,9.1556,0 +1848,0.0000,0.0000,1.9980,1.9983,0 +1849,0.0000,0.0000,2.0050,2.0053,0 +1850,0.0000,0.0000,1.9445,1.9448,0 +1851,0.0000,0.0000,2.0134,2.0137,0 +1852,0.0000,0.0000,8.9344,8.9347,0 +1853,0.0000,0.0000,2.0055,2.0058,0 +1854,0.0000,0.0000,2.0096,2.0099,0 +1855,0.0000,0.0000,1.9596,1.9600,0 +1856,0.0000,0.0000,2.0498,2.0501,0 +1857,0.0000,0.0000,8.9333,8.9336,0 +1858,0.0000,0.0000,1.9712,1.9715,0 +1859,0.0000,0.0000,2.0512,2.0515,0 +1860,0.0000,0.0000,1.9055,1.9058,0 +1861,0.0000,0.0000,2.0602,2.0605,0 +1862,0.0000,0.0000,9.0264,9.0267,0 +1863,0.0000,0.0000,1.9921,1.9924,0 +1864,0.0000,0.0000,2.0144,2.0148,0 +1865,0.0000,0.0000,1.9006,1.9010,0 +1866,0.0000,0.0000,8.9732,8.9735,0 +1867,0.0000,0.0000,1.9885,1.9888,0 +1868,0.0000,0.0000,2.0258,2.0261,0 +1869,0.0000,0.0000,2.0196,2.0199,0 +1870,0.0000,0.0000,1.9247,1.9250,0 +1871,0.0000,0.0000,9.0613,9.0616,0 +1872,0.0000,0.0000,2.0195,2.0198,0 +1873,0.0000,0.0000,1.9859,1.9862,0 +1874,0.0000,0.0000,2.0589,2.0592,0 +1875,0.0000,0.0000,1.9441,1.9444,0 +1876,0.0000,0.0000,9.1603,9.1606,0 +1877,0.0000,0.0000,2.0025,2.0028,0 +1878,0.0000,0.0000,2.0086,2.0089,0 +1879,0.0000,0.0000,1.9695,1.9698,0 +1880,0.0000,0.0000,2.0095,2.0098,0 +1881,0.0000,0.0000,8.8656,8.8659,0 +1882,0.0000,0.0000,2.0148,2.0151,0 +1883,0.0000,0.0000,2.0224,2.0227,0 +1884,0.0000,0.0000,1.9501,1.9504,0 +1885,0.0000,0.0000,1.9912,1.9915,0 +1886,0.0000,0.0000,8.9521,8.9525,0 +1887,0.0000,0.0000,1.9937,1.9940,0 +1888,0.0000,0.0000,2.0062,2.0065,0 +1889,0.0000,0.0000,1.9655,1.9657,0 +1890,0.0000,0.0000,2.0430,2.0433,0 +1891,0.0000,0.0000,8.9901,8.9904,0 +1892,0.0000,0.0000,1.9910,1.9913,0 +1893,0.0000,0.0000,2.0072,2.0075,0 +1894,0.0000,0.0000,1.9311,1.9314,0 +1895,0.0000,0.0000,8.9811,8.9814,0 +1896,0.0000,0.0000,2.0029,2.0032,0 +1897,0.0000,0.0000,2.0052,2.0055,0 +1898,0.0000,0.0000,2.0243,2.0246,0 +1899,0.0000,0.0000,1.9598,1.9601,0 +1900,0.0000,0.0000,9.0059,9.0062,0 +1901,0.0000,0.0000,2.0307,2.0310,0 +1902,0.0000,0.0000,2.0049,2.0052,0 +1903,0.0000,0.0000,1.9933,1.9936,0 +1904,0.0000,0.0000,1.9668,1.9671,0 +1905,0.0000,0.0000,9.1618,9.1621,0 +1906,0.0000,0.0000,2.0061,2.0064,0 +1907,0.0000,0.0000,1.9565,1.9568,0 +1908,0.0000,0.0000,2.0123,2.0126,0 +1909,0.0000,0.0000,1.9979,1.9982,0 +1910,0.0000,0.0000,8.9346,8.9349,0 +1911,0.0000,0.0000,2.0061,2.0064,0 +1912,0.0000,0.0000,1.9614,1.9617,0 +1913,0.0000,0.0000,1.9888,1.9891,0 +1914,0.0000,0.0000,2.0021,2.0024,0 +1915,0.0000,0.0000,8.9226,8.9229,0 +1916,0.0000,0.0000,2.0414,2.0417,0 +1917,0.0000,0.0000,1.9710,1.9712,0 +1918,0.0000,0.0000,1.9696,1.9699,0 +1919,0.0000,0.0000,2.0487,2.0490,0 +1920,0.0000,0.0000,9.0634,9.0637,0 +1921,0.0000,0.0000,1.9702,1.9705,0 +1922,0.0000,0.0000,2.0092,2.0095,0 +1923,0.0000,0.0000,1.9461,1.9464,0 +1924,0.0000,0.0000,2.0122,2.0126,0 +1925,0.0000,0.0000,8.8142,8.8145,0 +1926,0.0000,0.0000,2.0016,2.0019,0 +1927,0.0000,0.0000,1.9914,1.9917,0 +1928,0.0000,0.0000,1.9708,1.9711,0 +1929,0.0000,0.0000,9.1675,9.1678,0 +1930,0.0000,0.0000,1.9958,1.9961,0 +1931,0.0000,0.0000,1.9926,1.9929,0 +1932,0.0000,0.0000,2.0164,2.0167,0 +1933,0.0000,0.0000,1.8972,1.8975,0 +1934,0.0000,0.0000,9.1220,9.1223,0 +1935,0.0000,0.0000,2.0218,2.0221,0 +1936,0.0000,0.0000,1.9974,1.9977,0 +1937,0.0000,0.0000,1.9275,1.9278,0 +1938,0.0000,0.0000,1.9951,1.9954,0 +1939,0.0000,0.0000,9.1087,9.1090,0 +1940,0.0000,0.0000,1.9976,1.9979,0 +1941,0.0000,0.0000,2.0079,2.0081,0 +1942,0.0000,0.0000,1.9078,1.9082,0 +1943,0.0000,0.0000,2.0154,2.0157,0 +1944,0.0000,0.0000,8.9727,8.9730,0 +1945,0.0000,0.0000,2.0126,2.0129,0 +1946,0.0000,0.0000,1.9992,1.9996,0 +1947,0.0000,0.0000,1.8917,1.8920,0 +1948,0.0000,0.0000,2.1199,2.1202,0 +1949,0.0000,0.0000,8.9904,8.9907,0 +1950,0.0000,0.0000,2.0067,2.0070,0 +1951,0.0000,0.0000,2.0106,2.0109,0 +1952,0.0000,0.0000,1.8976,1.8979,0 +1953,0.0000,0.0000,1.9984,1.9987,0 +1954,0.0000,0.0000,8.9127,8.9130,0 +1955,0.0000,0.0000,2.0152,2.0155,0 +1956,0.0000,0.0000,1.9957,1.9960,0 +1957,0.0000,0.0000,1.9012,1.9015,0 +1958,0.0000,0.0000,2.1516,2.1519,0 +1959,0.0000,0.0000,8.9064,8.9067,0 +1960,0.0000,0.0000,2.0310,2.0313,0 +1961,0.0000,0.0000,1.9848,1.9851,0 +1962,0.0000,0.0000,1.9002,1.9005,0 +1963,0.0000,0.0000,9.1640,9.1643,0 +1964,0.0000,0.0000,2.0038,2.0041,0 +1965,0.0000,0.0000,2.0092,2.0095,0 +1966,0.0000,0.0000,1.9611,1.9614,0 +1967,0.0000,0.0000,1.9852,1.9855,0 +1968,0.0000,0.0000,8.9385,8.9388,0 +1969,0.0000,0.0000,2.0104,2.0107,0 +1970,0.0000,0.0000,2.0502,2.0505,0 +1971,0.0000,0.0000,2.1002,2.1005,0 +1972,0.0000,0.0000,1.8758,1.8761,0 +1973,0.0000,0.0000,9.0531,9.0534,0 +1974,0.0000,0.0000,2.0066,2.0069,0 +1975,0.0000,0.0000,2.0008,2.0011,0 +1976,0.0000,0.0000,1.9762,1.9765,0 +1977,0.0000,0.0000,1.9911,1.9914,0 +1978,0.0000,0.0000,8.9361,8.9364,0 +1979,0.0000,0.0000,2.0031,2.0034,0 +1980,0.0000,0.0000,2.0311,2.0314,0 +1981,0.0000,0.0000,1.9336,1.9339,0 +1982,0.0000,0.0000,2.0376,2.0379,0 +1983,0.0000,0.0000,8.9451,8.9454,0 +1984,0.0000,0.0000,2.0367,2.0370,0 +1985,0.0000,0.0000,1.9689,1.9692,0 +1986,0.0000,0.0000,1.9263,1.9266,0 +1987,0.0000,0.0000,2.0214,2.0217,0 +1988,0.0000,0.0000,8.9211,8.9214,0 +1989,0.0000,0.0000,2.0066,2.0069,0 +1990,0.0000,0.0000,2.0416,2.0419,0 +1991,0.0000,0.0000,1.9104,1.9107,0 +1992,0.0000,0.0000,9.1163,9.1166,0 +1993,0.0000,0.0000,1.9830,1.9833,0 +1994,0.0000,0.0000,2.0518,2.0522,0 +1995,0.0000,0.0000,1.9701,1.9704,0 +1996,0.0000,0.0000,1.9860,1.9863,0 +1997,0.0000,0.0000,9.0060,9.0063,0 +1998,0.0000,0.0000,2.0021,2.0024,0 +1999,0.0000,0.0000,2.0250,2.0253,0 +2000,0.0000,0.0000,1.9890,1.9893,0 +2001,0.0000,0.0000,2.1195,2.1198,0 +2002,0.0000,0.0000,9.0274,9.0277,0 +2003,0.0000,0.0000,2.0023,2.0026,0 +2004,0.0000,0.0000,1.9960,1.9963,0 +2005,0.0000,0.0000,1.9455,1.9458,0 +2006,0.0000,0.0000,1.9940,1.9943,0 +2007,0.0000,0.0000,9.0269,9.0272,0 +2008,0.0000,0.0000,1.9739,1.9742,0 +2009,0.0000,0.0000,2.0135,2.0138,0 +2010,0.0000,0.0000,1.9078,1.9081,0 +2011,0.0000,0.0000,2.0303,2.0306,0 +2012,0.0000,0.0000,8.9177,8.9180,0 +2013,0.0000,0.0000,2.0629,2.0632,0 +2014,0.0000,0.0000,1.9484,1.9488,0 +2015,0.0000,0.0000,1.9055,1.9057,0 +2016,0.0000,0.0000,2.0548,2.0551,0 +2017,0.0000,0.0000,8.9055,8.9058,0 +2018,0.0000,0.0000,2.0019,2.0022,0 +2019,0.0000,0.0000,2.0172,2.0175,0 +2020,0.0000,0.0000,1.8753,1.8756,0 +2021,0.0000,0.0000,2.1045,2.1048,0 +2022,0.0000,0.0000,9.0097,9.0100,0 +2023,0.0000,0.0000,1.9967,1.9970,0 +2024,0.0000,0.0000,2.0092,2.0095,0 +2025,0.0000,0.0000,1.9661,1.9664,0 +2026,0.0000,0.0000,8.6464,8.6468,0 +2027,0.0000,0.0000,2.0039,2.0042,0 +2028,0.0000,0.0000,2.0471,2.0474,0 +2029,0.0000,0.0000,2.0275,2.0278,0 +2030,0.0000,0.0000,1.9590,1.9593,0 +2031,0.0000,0.0000,9.0991,9.0994,0 +2032,0.0000,0.0000,1.9982,1.9985,0 +2033,0.0000,0.0000,1.9995,1.9998,0 +2034,0.0000,0.0000,1.9766,1.9769,0 +2035,0.0000,0.0000,2.0314,2.0317,0 +2036,0.0000,0.0000,8.9336,8.9340,0 +2037,0.0000,0.0000,2.0730,2.0733,0 +2038,0.0000,0.0000,1.9918,1.9921,0 +2039,0.0000,0.0000,1.9680,1.9683,0 +2040,0.0000,0.0000,2.0222,2.0225,0 +2041,0.0000,0.0000,8.9610,8.9613,0 +2042,0.0000,0.0000,1.9722,1.9725,0 +2043,0.0000,0.0000,1.9954,1.9957,0 +2044,0.0000,0.0000,1.9339,1.9342,0 +2045,0.0000,0.0000,1.9612,1.9615,0 +2046,0.0000,0.0000,8.8816,8.8819,0 +2047,0.0000,0.0000,1.9669,1.9672,0 +2048,0.0000,0.0000,1.9887,1.9890,0 +2049,0.0000,0.0000,1.8600,1.8603,0 +2050,0.0000,0.0000,2.1001,2.1004,0 +2051,0.0000,0.0000,8.9569,8.9572,0 +2052,0.0000,0.0000,1.9940,1.9943,0 +2053,0.0000,0.0000,2.0012,2.0015,0 +2054,0.0000,0.0000,1.9324,1.9327,0 +2055,0.0000,0.0000,2.0448,2.0451,0 +2056,0.0000,0.0000,8.9477,8.9480,0 +2057,0.0000,0.0000,1.9678,1.9681,0 +2058,0.0000,0.0000,1.9972,1.9975,0 +2059,0.0000,0.0000,1.9437,1.9440,0 +2060,0.0000,0.0000,9.0898,9.0901,0 +2061,0.0000,0.0000,2.0130,2.0133,0 +2062,0.0000,0.0000,2.0073,2.0076,0 +2063,0.0000,0.0000,2.0164,2.0167,0 +2064,0.0000,0.0000,1.9389,1.9392,0 +2065,0.0000,0.0000,9.2379,9.2382,0 +2066,0.0000,0.0000,1.9706,1.9709,0 +2067,0.0000,0.0000,1.9884,1.9886,0 +2068,0.0000,0.0000,1.9561,1.9564,0 +2069,0.0000,0.0000,1.9873,1.9877,0 +2070,0.0000,0.0000,9.1251,9.1254,0 +2071,0.0000,0.0000,2.0104,2.0107,0 +2072,0.0000,0.0000,2.0000,2.0003,0 +2073,0.0000,0.0000,1.9346,1.9349,0 +2074,0.0000,0.0000,2.0589,2.0594,0 +2075,0.0000,0.0000,8.8971,8.8974,0 +2076,0.0000,0.0000,2.0183,2.0186,0 +2077,0.0000,0.0000,2.0493,2.0496,0 +2078,0.0000,0.0000,1.8744,1.8748,0 +2079,0.0000,0.0000,2.3219,2.3222,0 +2080,0.0000,0.0000,8.7916,8.7919,0 +2081,0.0000,0.0000,2.0058,2.0061,0 +2082,0.0000,0.0000,2.0100,2.0103,0 +2083,0.0000,0.0000,1.9041,1.9044,0 +2084,0.0000,0.0000,9.0357,9.0360,0 +2085,0.0000,0.0000,2.0168,2.0171,0 +2086,0.0000,0.0000,1.9855,1.9858,0 +2087,0.0000,0.0000,2.0144,2.0147,0 +2088,0.0000,0.0000,1.9236,1.9239,0 +2089,0.0000,0.0000,9.0609,9.0612,0 +2090,0.0000,0.0000,2.3789,2.3792,0 +2091,0.0000,0.0000,1.6425,1.6428,0 +2092,0.0000,0.0000,2.0348,2.0351,0 +2093,0.0000,0.0000,1.9819,1.9822,0 +2094,0.0000,0.0000,9.1446,9.1449,0 +2095,0.0000,0.0000,1.9979,1.9982,0 +2096,0.0000,0.0000,1.9923,1.9926,0 +2097,0.0000,0.0000,2.0006,2.0009,0 +2098,0.0000,0.0000,2.0030,2.0033,0 +2099,0.0000,0.0000,8.9488,8.9491,0 +2100,0.0000,0.0000,1.9989,1.9992,0 +2101,0.0000,0.0000,2.0146,2.0149,0 +2102,0.0000,0.0000,1.9407,1.9410,0 +2103,0.0000,0.0000,2.0157,2.0160,0 +2104,0.0000,0.0000,8.8911,8.8915,0 +2105,0.0000,0.0000,2.0010,2.0013,0 +2106,0.0000,0.0000,2.0064,2.0067,0 +2107,0.0000,0.0000,1.9688,1.9691,0 +2108,0.0000,0.0000,2.0113,2.0116,0 +2109,0.0000,0.0000,9.0424,9.0427,0 +2110,0.0000,0.0000,2.0051,2.0054,0 +2111,0.0000,0.0000,2.0012,2.0015,0 +2112,0.0000,0.0000,1.9042,1.9045,0 +2113,0.0000,0.0000,9.0424,9.0427,0 +2114,0.0000,0.0000,1.9828,1.9831,0 +2115,0.0000,0.0000,1.9806,1.9809,0 +2116,0.0000,0.0000,1.9988,1.9991,0 +2117,0.0000,0.0000,1.9095,1.9098,0 +2118,0.0000,0.0000,9.0255,9.0258,0 +2119,0.0000,0.0000,1.9972,1.9975,0 +2120,0.0000,0.0000,2.0007,2.0010,0 +2121,0.0000,0.0000,2.0363,2.0366,0 +2122,0.0000,0.0000,1.9627,1.9630,0 +2123,0.0000,0.0000,9.1114,9.1117,0 +2124,0.0000,0.0000,2.0031,2.0034,0 +2125,0.0000,0.0000,2.0029,2.0032,0 +2126,0.0000,0.0000,1.9970,1.9973,0 +2127,0.0000,0.0000,2.0150,2.0153,0 +2128,0.0000,0.0000,8.8847,8.8850,0 +2129,0.0000,0.0000,1.9908,1.9911,0 +2130,0.0000,0.0000,2.0334,2.0337,0 +2131,0.0000,0.0000,1.9401,1.9404,0 +2132,0.0000,0.0000,1.9836,1.9839,0 +2133,0.0000,0.0000,8.8843,8.8846,0 +2134,0.0000,0.0000,1.9819,1.9822,0 +2135,0.0000,0.0000,2.0080,2.0083,0 +2136,0.0000,0.0000,1.9737,1.9740,0 +2137,0.0000,0.0000,2.0240,2.0243,0 +2138,0.0000,0.0000,9.0000,9.0003,0 +2139,0.0000,0.0000,2.0006,2.0009,0 +2140,0.0000,0.0000,2.0071,2.0074,0 +2141,0.0000,0.0000,1.9462,1.9465,0 +2142,0.0000,0.0000,2.0527,2.0530,0 +2143,0.0000,0.0000,8.9991,8.9994,0 +2144,0.0000,0.0000,1.9486,1.9489,0 +2145,0.0000,0.0000,2.0703,2.0706,0 +2146,0.0000,0.0000,1.8854,1.8857,0 +2147,0.0000,0.0000,8.9959,8.9962,0 +2148,0.0000,0.0000,2.0103,2.0106,0 +2149,0.0000,0.0000,2.0166,2.0169,0 +2150,0.0000,0.0000,2.0047,2.0050,0 +2151,0.0000,0.0000,1.9731,1.9734,0 +2152,0.0000,0.0000,9.0594,9.0597,0 +2153,0.0000,0.0000,2.0404,2.0407,0 +2154,0.0000,0.0000,1.9640,1.9643,0 +2155,0.0000,0.0000,2.0538,2.0541,0 +2156,0.0000,0.0000,1.9612,1.9615,0 +2157,0.0000,0.0000,9.1120,9.1124,0 +2158,0.0000,0.0000,1.9907,1.9910,0 +2159,0.0000,0.0000,2.0050,2.0053,0 +2160,0.0000,0.0000,1.9600,1.9603,0 +2161,0.0000,0.0000,2.0181,2.0184,0 +2162,0.0000,0.0000,8.9703,8.9706,0 +2163,0.0000,0.0000,1.9898,1.9901,0 +2164,0.0000,0.0000,2.0111,2.0114,0 +2165,0.0000,0.0000,1.9565,1.9568,0 +2166,0.0000,0.0000,2.0721,2.0724,0 +2167,0.0000,0.0000,8.9562,8.9565,0 +2168,0.0000,0.0000,2.0062,2.0065,0 +2169,0.0000,0.0000,2.0105,2.0108,0 +2170,0.0000,0.0000,1.9519,1.9522,0 +2171,0.0000,0.0000,2.0554,2.0558,0 +2172,0.0000,0.0000,8.9491,8.9494,0 +2173,0.0000,0.0000,2.0079,2.0082,0 +2174,0.0000,0.0000,2.0039,2.0042,0 +2175,0.0000,0.0000,1.9235,1.9238,0 +2176,0.0000,0.0000,8.9760,8.9763,0 +2177,0.0000,0.0000,2.0431,2.0434,0 +2178,0.0000,0.0000,2.0020,2.0023,0 +2179,0.0000,0.0000,2.0104,2.0107,0 +2180,0.0000,0.0000,1.9356,1.9359,0 +2181,0.0000,0.0000,9.1370,9.1373,0 +2182,0.0000,0.0000,2.0051,2.0054,0 +2183,0.0000,0.0000,1.9877,1.9880,0 +2184,0.0000,0.0000,1.8933,1.8936,0 +2185,0.0000,0.0000,2.0212,2.0215,0 +2186,0.0000,0.0000,9.1694,9.1697,0 +2187,0.0000,0.0000,1.9990,1.9993,0 +2188,0.0000,0.0000,2.0002,2.0005,0 +2189,0.0000,0.0000,1.9609,1.9612,0 +2190,0.0000,0.0000,1.9939,1.9942,0 +2191,0.0000,0.0000,8.9751,8.9754,0 +2192,0.0000,0.0000,2.0083,2.0086,0 +2193,0.0000,0.0000,1.9574,1.9577,0 +2194,0.0000,0.0000,1.9442,1.9445,0 +2195,0.0000,0.0000,1.9889,1.9892,0 +2196,0.0000,0.0000,9.0229,9.0232,0 +2197,0.0000,0.0000,1.9684,1.9687,0 +2198,0.0000,0.0000,2.0044,2.0047,0 +2199,0.0000,0.0000,1.9669,1.9672,0 +2200,0.0000,0.0000,2.0483,2.0486,0 +2201,0.0000,0.0000,8.9730,8.9733,0 +2202,0.0000,0.0000,2.0037,2.0040,0 +2203,0.0000,0.0000,1.9517,1.9520,0 +2204,0.0000,0.0000,1.9831,1.9834,0 +2205,0.0000,0.0000,2.0256,2.0259,0 +2206,0.0000,0.0000,8.8991,8.8994,0 +2207,0.0000,0.0000,1.9677,1.9681,0 +2208,0.0000,0.0000,2.0196,2.0199,0 +2209,0.0000,0.0000,1.9559,1.9562,0 +2210,0.0000,0.0000,9.0486,9.0489,0 +2211,0.0000,0.0000,2.0308,2.0311,0 +2212,0.0000,0.0000,2.0038,2.0041,0 +2213,0.0000,0.0000,2.0394,2.0397,0 +2214,0.0000,0.0000,1.9624,1.9627,0 +2215,0.0000,0.0000,9.0000,9.0003,0 +2216,0.0000,0.0000,1.9552,1.9555,0 +2217,0.0000,0.0000,1.9993,1.9996,0 +2218,0.0000,0.0000,1.9910,1.9913,0 +2219,0.0000,0.0000,2.0014,2.0017,0 +2220,0.0000,0.0000,9.0223,9.0226,0 +2221,0.0000,0.0000,1.9991,1.9994,0 +2222,0.0000,0.0000,2.0254,2.0257,0 +2223,0.0000,0.0000,1.9293,1.9296,0 +2224,0.0000,0.0000,1.9781,1.9784,0 +2225,0.0000,0.0000,9.0995,9.0998,0 +2226,0.0000,0.0000,2.0376,2.0379,0 +2227,0.0000,0.0000,1.9888,1.9891,0 +2228,0.0000,0.0000,1.9156,1.9160,0 +2229,0.0000,0.0000,2.0701,2.0704,0 +2230,0.0000,0.0000,8.9470,8.9473,0 +2231,0.0000,0.0000,2.0010,2.0013,0 +2232,0.0000,0.0000,1.9894,1.9897,0 +2233,0.0000,0.0000,1.9037,1.9040,0 +2234,0.0000,0.0000,2.0508,2.0511,0 +2235,0.0000,0.0000,8.7902,8.7905,0 +2236,0.0000,0.0000,2.0019,2.0022,0 +2237,0.0000,0.0000,2.0343,2.0346,0 +2238,0.0000,0.0000,1.9644,1.9647,0 +2239,0.0000,0.0000,2.1192,2.1195,0 +2240,0.0000,0.0000,9.0771,9.0774,0 +2241,0.0000,0.0000,1.9271,1.9274,0 +2242,0.0000,0.0000,2.1069,2.1072,0 +2243,0.0000,0.0000,1.8864,1.8867,0 +2244,0.0000,0.0000,9.1649,9.1652,0 +2245,0.0000,0.0000,2.0367,2.0370,0 +2246,0.0000,0.0000,1.9638,1.9641,0 +2247,0.0000,0.0000,1.9565,1.9568,0 +2248,0.0000,0.0000,2.0019,2.0022,0 +2249,0.0000,0.0000,9.2024,9.2027,0 +2250,0.0000,0.0000,2.0231,2.0234,0 +2251,0.0000,0.0000,1.9667,1.9670,0 +2252,0.0000,0.0000,1.8873,1.8876,0 +2253,0.0000,0.0000,1.9696,1.9698,0 +2254,0.0000,0.0000,8.9975,8.9978,0 +2255,0.0000,0.0000,1.9721,1.9724,0 +2256,0.0000,0.0000,2.0488,2.0491,0 +2257,0.0000,0.0000,1.8646,1.8649,0 +2258,0.0000,0.0000,2.0596,2.0599,0 +2259,0.0000,0.0000,8.9331,8.9334,0 +2260,0.0000,0.0000,2.0570,2.0573,0 +2261,0.0000,0.0000,2.0121,2.0124,0 +2262,0.0000,0.0000,1.9048,1.9052,0 +2263,0.0000,0.0000,2.0559,2.0562,0 +2264,0.0000,0.0000,8.9242,8.9245,0 +2265,0.0000,0.0000,2.0115,2.0118,0 +2266,0.0000,0.0000,2.0148,2.0151,0 +2267,0.0000,0.0000,1.9060,1.9063,0 +2268,0.0000,0.0000,9.0816,9.0819,0 +2269,0.0000,0.0000,2.0047,2.0050,0 +2270,0.0000,0.0000,2.0094,2.0097,0 +2271,0.0000,0.0000,2.0162,2.0165,0 +2272,0.0000,0.0000,1.9729,1.9732,0 +2273,0.0000,0.0000,9.1078,9.1082,0 +2274,0.0000,0.0000,1.9683,1.9686,0 +2275,0.0000,0.0000,1.9984,1.9987,0 +2276,0.0000,0.0000,2.0096,2.0099,0 +2277,0.0000,0.0000,1.9734,1.9737,0 +2278,0.0000,0.0000,9.0842,9.0845,0 +2279,0.0000,0.0000,1.9985,1.9988,0 +2280,0.0000,0.0000,1.9982,1.9985,0 +2281,0.0000,0.0000,1.9745,1.9748,0 +2282,0.0000,0.0000,2.0083,2.0086,0 +2283,0.0000,0.0000,8.9694,8.9697,0 +2284,0.0000,0.0000,2.0003,2.0006,0 +2285,0.0000,0.0000,2.0028,2.0031,0 +2286,0.0000,0.0000,1.9605,1.9608,0 +2287,0.0000,0.0000,2.0528,2.0531,0 +2288,0.0000,0.0000,8.9621,8.9624,0 +2289,0.0000,0.0000,1.9603,1.9606,0 +2290,0.0000,0.0000,1.9939,1.9942,0 +2291,0.0000,0.0000,1.9661,1.9664,0 +2292,0.0000,0.0000,2.0521,2.0524,0 +2293,0.0000,0.0000,8.9477,8.9480,0 +2294,0.0000,0.0000,2.0043,2.0046,0 +2295,0.0000,0.0000,1.9967,1.9970,0 +2296,0.0000,0.0000,1.8835,1.8839,0 +2297,0.0000,0.0000,2.0621,2.0625,0 +2298,0.0000,0.0000,9.0074,9.0077,0 +2299,0.0000,0.0000,1.9955,1.9958,0 +2300,0.0000,0.0000,2.0150,2.0153,0 +2301,0.0000,0.0000,1.9073,1.9076,0 +2302,0.0000,0.0000,9.0452,9.0455,0 +2303,0.0000,0.0000,2.0039,2.0042,0 +2304,0.0000,0.0000,1.9735,1.9738,0 +2305,0.0000,0.0000,1.9389,1.9392,0 +2306,0.0000,0.0000,2.0652,2.0655,0 +2307,0.0000,0.0000,9.0949,9.0952,0 +2308,0.0000,0.0000,2.0049,2.0052,0 +2309,0.0000,0.0000,2.0433,2.0436,0 +2310,0.0000,0.0000,1.9099,1.9102,0 +2311,0.0000,0.0000,2.0095,2.0098,0 +2312,0.0000,0.0000,8.9378,8.9381,0 +2313,0.0000,0.0000,2.0161,2.0164,0 +2314,0.0000,0.0000,2.0809,2.0812,0 +2315,0.0000,0.0000,1.8977,1.8980,0 +2316,0.0000,0.0000,2.0054,2.0057,0 +2317,0.0000,0.0000,8.9692,8.9695,0 +2318,0.0000,0.0000,1.9989,1.9992,0 +2319,0.0000,0.0000,2.0116,2.0119,0 +2320,0.0000,0.0000,1.9156,1.9159,0 +2321,0.0000,0.0000,2.0830,2.0833,0 +2322,0.0000,0.0000,8.9221,8.9224,0 +2323,0.0000,0.0000,1.9948,1.9951,0 +2324,0.0000,0.0000,1.9399,1.9402,0 +2325,0.0000,0.0000,1.9273,1.9276,0 +2326,0.0000,0.0000,2.0401,2.0404,0 +2327,0.0000,0.0000,9.0242,9.0245,0 +2328,0.0000,0.0000,1.9978,1.9981,0 +2329,0.0000,0.0000,2.0020,2.0023,0 +2330,0.0000,0.0000,1.9004,1.9007,0 +2331,0.0000,0.0000,9.0628,9.0631,0 +2332,0.0000,0.0000,2.0071,2.0074,0 +2333,0.0000,0.0000,1.9977,1.9980,0 +2334,0.0000,0.0000,2.0110,2.0113,0 +2335,0.0000,0.0000,1.8819,1.8822,0 +2336,0.0000,0.0000,9.1751,9.1754,0 +2337,0.0000,0.0000,2.0045,2.0048,0 +2338,0.0000,0.0000,1.9943,1.9946,0 +2339,0.0000,0.0000,1.9553,1.9556,0 +2340,0.0000,0.0000,1.9959,1.9962,0 +2341,0.0000,0.0000,9.1230,9.1233,0 +2342,0.0000,0.0000,1.9957,1.9960,0 +2343,0.0000,0.0000,1.9862,1.9865,0 +2344,0.0000,0.0000,1.9825,1.9828,0 +2345,0.0000,0.0000,2.0150,2.0153,0 +2346,0.0000,0.0000,8.8945,8.8948,0 +2347,0.0000,0.0000,2.0407,2.0410,0 +2348,0.0000,0.0000,2.0088,2.0091,0 +2349,0.0000,0.0000,1.9553,1.9556,0 +2350,0.0000,0.0000,2.1229,2.1232,0 +2351,0.0000,0.0000,8.8804,8.8808,0 +2352,0.0000,0.0000,2.0513,2.0516,0 +2353,0.0000,0.0000,2.0385,2.0388,0 +2354,0.0000,0.0000,1.9438,1.9441,0 +2355,0.0000,0.0000,1.9763,1.9766,0 +2356,0.0000,0.0000,9.0010,9.0013,0 +2357,0.0000,0.0000,2.0086,2.0089,0 +2358,0.0000,0.0000,1.9858,1.9861,0 +2359,0.0000,0.0000,1.9619,1.9622,0 +2360,0.0000,0.0000,9.0479,9.0482,0 +2361,0.0000,0.0000,2.0098,2.0101,0 +2362,0.0000,0.0000,1.9931,1.9934,0 +2363,0.0000,0.0000,2.0061,2.0064,0 +2364,0.0000,0.0000,1.9688,1.9691,0 +2365,0.0000,0.0000,9.0304,9.0307,0 +2366,0.0000,0.0000,2.0103,2.0106,0 +2367,0.0000,0.0000,1.9919,1.9922,0 +2368,0.0000,0.0000,1.9625,1.9628,0 +2369,0.0000,0.0000,1.9966,1.9969,0 +2370,0.0000,0.0000,9.1451,9.1453,0 +2371,0.0000,0.0000,1.9499,1.9502,0 +2372,0.0000,0.0000,2.0119,2.0122,0 +2373,0.0000,0.0000,1.9544,1.9548,0 +2374,0.0000,0.0000,1.9933,1.9936,0 +2375,0.0000,0.0000,8.9233,8.9236,0 +2376,0.0000,0.0000,1.9935,1.9938,0 +2377,0.0000,0.0000,2.0317,2.0320,0 +2378,0.0000,0.0000,1.9383,1.9387,0 +2379,0.0000,0.0000,2.0024,2.0027,0 +2380,0.0000,0.0000,8.9468,8.9471,0 +2381,0.0000,0.0000,2.0021,2.0024,0 +2382,0.0000,0.0000,2.0066,2.0069,0 +2383,0.0000,0.0000,1.9667,1.9670,0 +2384,0.0000,0.0000,2.0461,2.0464,0 +2385,0.0000,0.0000,8.9217,8.9221,0 +2386,0.0000,0.0000,2.0106,2.0109,0 +2387,0.0000,0.0000,2.0333,2.0336,0 +2388,0.0000,0.0000,1.9035,1.9038,0 +2389,0.0000,0.0000,2.0496,2.0499,0 +2390,0.0000,0.0000,8.9152,8.9155,0 +2391,0.0000,0.0000,2.0067,2.0070,0 +2392,0.0000,0.0000,2.0132,2.0135,0 +2393,0.0000,0.0000,1.9328,1.9331,0 +2394,0.0000,0.0000,9.0184,9.0187,0 +2395,0.0000,0.0000,2.0054,2.0057,0 +2396,0.0000,0.0000,2.0105,2.0108,0 +2397,0.0000,0.0000,2.0279,2.0282,0 +2398,0.0000,0.0000,1.9057,1.9060,0 +2399,0.0000,0.0000,9.2571,9.2574,0 +2400,0.0000,0.0000,1.9818,1.9821,0 +2401,0.0000,0.0000,1.9588,1.9591,0 +2402,0.0000,0.0000,1.9804,1.9807,0 +2403,0.0000,0.0000,1.9909,1.9912,0 +2404,0.0000,0.0000,8.8883,8.8886,0 +2405,0.0000,0.0000,1.9896,1.9899,0 +2406,0.0000,0.0000,2.0080,2.0083,0 +2407,0.0000,0.0000,1.9964,1.9967,0 +2408,0.0000,0.0000,2.0086,2.0089,0 +2409,0.0000,0.0000,8.9524,8.9527,0 +2410,0.0000,0.0000,1.9696,1.9699,0 +2411,0.0000,0.0000,2.0137,2.0140,0 +2412,0.0000,0.0000,1.9733,1.9736,0 +2413,0.0000,0.0000,2.0061,2.0064,0 +2414,0.0000,0.0000,8.8479,8.8482,0 +2415,0.0000,0.0000,2.1010,2.1013,0 +2416,0.0000,0.0000,2.0227,2.0230,0 +2417,0.0000,0.0000,1.9123,1.9126,0 +2418,0.0000,0.0000,2.0630,2.0633,0 +2419,0.0000,0.0000,8.9774,8.9777,0 +2420,0.0000,0.0000,2.0033,2.0036,0 +2421,0.0000,0.0000,2.0038,2.0041,0 +2422,0.0000,0.0000,1.8892,1.8895,0 +2423,0.0000,0.0000,2.0790,2.0793,0 +2424,0.0000,0.0000,8.8819,8.8822,0 +2425,0.0000,0.0000,2.1312,2.1315,0 +2426,0.0000,0.0000,1.9990,1.9993,0 +2427,0.0000,0.0000,1.9010,1.9013,0 +2428,0.0000,0.0000,9.2504,9.2507,0 +2429,0.0000,0.0000,2.0074,2.0077,0 +2430,0.0000,0.0000,1.9258,1.9261,0 +2431,0.0000,0.0000,1.9246,1.9249,0 +2432,0.0000,0.0000,1.9929,1.9932,0 +2433,0.0000,0.0000,9.0628,9.0631,0 +2434,0.0000,0.0000,2.0104,2.0107,0 +2435,0.0000,0.0000,1.9683,1.9686,0 +2436,0.0000,0.0000,1.9850,1.9853,0 +2437,0.0000,0.0000,2.0173,2.0177,0 +2438,0.0000,0.0000,8.9817,8.9820,0 +2439,0.0000,0.0000,2.0881,2.0884,0 +2440,0.0000,0.0000,1.9276,1.9279,0 +2441,0.0000,0.0000,1.9314,1.9317,0 +2442,0.0000,0.0000,2.0686,2.0690,0 +2443,0.0000,0.0000,8.9278,8.9281,0 +2444,0.0000,0.0000,1.9855,1.9858,0 +2445,0.0000,0.0000,2.0549,2.0552,0 +2446,0.0000,0.0000,1.9101,1.9104,0 +2447,0.0000,0.0000,2.0928,2.0931,0 +2448,0.0000,0.0000,8.8942,8.8945,0 +2449,0.0000,0.0000,2.0006,2.0009,0 +2450,0.0000,0.0000,2.0071,2.0074,0 +2451,0.0000,0.0000,1.9382,1.9385,0 +2452,0.0000,0.0000,2.0545,2.0548,0 +2453,0.0000,0.0000,8.9795,8.9798,0 +2454,0.0000,0.0000,2.0051,2.0054,0 +2455,0.0000,0.0000,1.9977,1.9980,0 +2456,0.0000,0.0000,1.9053,1.9056,0 +2457,0.0000,0.0000,9.1083,9.1086,0 +2458,0.0000,0.0000,2.0157,2.0160,0 +2459,0.0000,0.0000,2.0310,2.0313,0 +2460,0.0000,0.0000,2.0048,2.0052,0 +2461,0.0000,0.0000,1.9035,1.9039,0 +2462,0.0000,0.0000,9.0793,9.0796,0 +2463,0.0000,0.0000,1.9876,1.9879,0 +2464,0.0000,0.0000,2.0380,2.0383,0 +2465,0.0000,0.0000,1.9639,1.9642,0 +2466,0.0000,0.0000,2.0072,2.0075,0 +2467,0.0000,0.0000,9.0585,9.0588,0 +2468,0.0000,0.0000,2.0104,2.0107,0 +2469,0.0000,0.0000,2.0029,2.0032,0 +2470,0.0000,0.0000,1.9426,1.9429,0 +2471,0.0000,0.0000,1.9873,1.9876,0 +2472,0.0000,0.0000,8.9638,8.9641,0 +2473,0.0000,0.0000,2.0061,2.0064,0 +2474,0.0000,0.0000,2.0154,2.0157,0 +2475,0.0000,0.0000,1.9403,1.9406,0 +2476,0.0000,0.0000,2.0788,2.0791,0 +2477,0.0000,0.0000,8.9381,8.9384,0 +2478,0.0000,0.0000,2.0108,2.0111,0 +2479,0.0000,0.0000,2.0082,2.0085,0 +2480,0.0000,0.0000,1.9408,1.9411,0 +2481,0.0000,0.0000,2.0524,2.0527,0 +2482,0.0000,0.0000,8.9326,8.9329,0 +2483,0.0000,0.0000,2.0244,2.0247,0 +2484,0.0000,0.0000,2.0194,2.0197,0 +2485,0.0000,0.0000,1.8822,1.8825,0 +2486,0.0000,0.0000,9.1190,9.1192,0 +2487,0.0000,0.0000,2.0815,2.0818,0 +2488,0.0000,0.0000,1.9388,1.9391,0 +2489,0.0000,0.0000,2.0263,2.0267,0 +2490,0.0000,0.0000,1.9206,1.9208,0 +2491,0.0000,0.0000,9.0978,9.0981,0 +2492,0.0000,0.0000,2.0512,2.0515,0 +2493,0.0000,0.0000,1.9647,1.9650,0 +2494,0.0000,0.0000,2.0028,2.0031,0 +2495,0.0000,0.0000,1.9971,1.9974,0 +2496,0.0000,0.0000,9.0378,9.0381,0 +2497,0.0000,0.0000,2.0399,2.0402,0 +2498,0.0000,0.0000,1.9627,1.9630,0 +2499,0.0000,0.0000,1.9962,1.9965,0 +2500,0.0000,0.0000,1.9853,1.9856,0 +2501,0.0000,0.0000,8.9704,8.9707,0 +2502,0.0000,0.0000,1.9924,1.9927,0 +2503,0.0000,0.0000,1.9526,1.9529,0 +2504,0.0000,0.0000,1.9087,1.9090,0 +2505,0.0000,0.0000,2.0242,2.0245,0 +2506,0.0000,0.0000,8.9668,8.9671,0 +2507,0.0000,0.0000,1.9922,1.9925,0 +2508,0.0000,0.0000,2.0022,2.0025,0 +2509,0.0000,0.0000,1.9099,1.9102,0 +2510,0.0000,0.0000,2.1356,2.1359,0 +2511,0.0000,0.0000,9.0086,9.0089,0 +2512,0.0000,0.0000,2.0024,2.0027,0 +2513,0.0000,0.0000,2.0534,2.0537,0 +2514,0.0000,0.0000,1.8660,1.8663,0 +2515,0.0000,0.0000,9.0316,9.0319,0 +2516,0.0000,0.0000,2.0056,2.0059,0 +2517,0.0000,0.0000,2.0173,2.0176,0 +2518,0.0000,0.0000,2.0165,2.0167,0 +2519,0.0000,0.0000,1.9250,1.9253,0 +2520,0.0000,0.0000,8.9867,8.9870,0 +2521,0.0000,0.0000,2.0039,2.0042,0 +2522,0.0000,0.0000,2.0318,2.0321,0 +2523,0.0000,0.0000,1.9939,1.9942,0 +2524,0.0000,0.0000,1.9572,1.9575,0 +2525,0.0000,0.0000,9.0626,9.0629,0 +2526,0.0000,0.0000,2.0018,2.0021,0 +2527,0.0000,0.0000,2.0101,2.0104,0 +2528,0.0000,0.0000,1.9965,1.9968,0 +2529,0.0000,0.0000,2.0064,2.0067,0 +2530,0.0000,0.0000,9.0130,9.0133,0 +2531,0.0000,0.0000,1.9794,1.9797,0 +2532,0.0000,0.0000,1.9920,1.9923,0 +2533,0.0000,0.0000,1.9299,1.9302,0 +2534,0.0000,0.0000,1.9942,1.9945,0 +2535,0.0000,0.0000,8.8974,8.8977,0 +2536,0.0000,0.0000,2.0031,2.0034,0 +2537,0.0000,0.0000,2.0066,2.0069,0 +2538,0.0000,0.0000,1.9631,1.9634,0 +2539,0.0000,0.0000,2.0783,2.0786,0 +2540,0.0000,0.0000,8.9250,8.9253,0 +2541,0.0000,0.0000,2.0067,2.0070,0 +2542,0.0000,0.0000,2.0219,2.0222,0 +2543,0.0000,0.0000,1.9202,1.9205,0 +2544,0.0000,0.0000,2.0886,2.0889,0 +2545,0.0000,0.0000,9.0614,9.0617,0 +2546,0.0000,0.0000,1.9972,1.9975,0 +2547,0.0000,0.0000,2.0093,2.0096,0 +2548,0.0000,0.0000,1.9188,1.9191,0 +2549,0.0000,0.0000,8.9834,8.9837,0 +2550,0.0000,0.0000,1.9865,1.9868,0 +2551,0.0000,0.0000,2.0034,2.0037,0 +2552,0.0000,0.0000,2.0532,2.0535,0 +2553,0.0000,0.0000,1.9020,1.9023,0 +2554,0.0000,0.0000,9.0794,9.0797,0 +2555,0.0000,0.0000,2.0022,2.0025,0 +2556,0.0000,0.0000,1.9880,1.9883,0 +2557,0.0000,0.0000,1.9312,1.9315,0 +2558,0.0000,0.0000,2.0138,2.0141,0 +2559,0.0000,0.0000,9.1717,9.1721,0 +2560,0.0000,0.0000,1.8313,1.8317,0 +2561,0.0000,0.0000,2.0609,2.0612,0 +2562,0.0000,0.0000,1.9461,1.9464,0 +2563,0.0000,0.0000,2.0570,2.0573,0 +2564,0.0000,0.0000,8.8983,8.8987,0 +2565,0.0000,0.0000,1.9730,1.9733,0 +2566,0.0000,0.0000,2.0181,2.0184,0 +2567,0.0000,0.0000,1.9520,1.9523,0 +2568,0.0000,0.0000,2.0116,2.0120,0 +2569,0.0000,0.0000,8.9503,8.9506,0 +2570,0.0000,0.0000,2.0035,2.0038,0 +2571,0.0000,0.0000,2.0046,2.0049,0 +2572,0.0000,0.0000,1.9506,1.9509,0 +2573,0.0000,0.0000,2.0579,2.0582,0 +2574,0.0000,0.0000,9.0264,9.0267,0 +2575,0.0000,0.0000,2.0304,2.0307,0 +2576,0.0000,0.0000,1.9784,1.9787,0 +2577,0.0000,0.0000,1.9322,1.9414,0 +2578,0.0000,0.0000,9.0633,9.0636,0 +2579,0.0000,0.0000,1.9574,1.9577,0 +2580,0.0000,0.0000,2.0119,2.0122,0 +2581,0.0000,0.0000,2.0130,2.0133,0 +2582,0.0000,0.0000,1.9730,1.9733,0 +2583,0.0000,0.0000,9.0995,9.0998,0 +2584,0.0000,0.0000,1.9990,1.9994,0 +2585,0.0000,0.0000,1.9898,1.9901,0 +2586,0.0000,0.0000,1.9547,1.9550,0 +2587,0.0000,0.0000,2.0082,2.0085,0 +2588,0.0000,0.0000,9.1807,9.1810,0 +2589,0.0000,0.0000,1.9873,1.9876,0 +2590,0.0000,0.0000,2.0016,2.0019,0 +2591,0.0000,0.0000,1.9346,1.9349,0 +2592,0.0000,0.0000,2.0347,2.0350,0 +2593,0.0000,0.0000,8.7844,8.7847,0 +2594,0.0000,0.0000,2.0413,2.0416,0 +2595,0.0000,0.0000,2.0048,2.0051,0 +2596,0.0000,0.0000,1.9201,1.9204,0 +2597,0.0000,0.0000,2.0744,2.0747,0 +2598,0.0000,0.0000,8.9672,8.9675,0 +2599,0.0000,0.0000,1.9539,1.9542,0 +2600,0.0000,0.0000,2.0545,2.0548,0 +2601,0.0000,0.0000,1.9287,1.9290,0 +2602,0.0000,0.0000,2.0754,2.0757,0 +2603,0.0000,0.0000,8.9322,8.9325,0 +2604,0.0000,0.0000,1.9738,1.9741,0 +2605,0.0000,0.0000,2.0010,2.0013,0 +2606,0.0000,0.0000,1.9519,1.9522,0 +2607,0.0000,0.0000,8.9466,8.9469,0 +2608,0.0000,0.0000,1.9709,1.9712,0 +2609,0.0000,0.0000,1.9371,1.9374,0 +2610,0.0000,0.0000,1.9749,1.9752,0 +2611,0.0000,0.0000,1.9520,1.9523,0 +2612,0.0000,0.0000,9.0619,9.0622,0 +2613,0.0000,0.0000,1.9581,1.9584,0 +2614,0.0000,0.0000,2.0489,2.0493,0 +2615,0.0000,0.0000,1.9807,1.9810,0 +2616,0.0000,0.0000,1.9660,1.9663,0 +2617,0.0000,0.0000,9.2035,9.2039,0 +2618,0.0000,0.0000,1.9859,1.9862,0 +2619,0.0000,0.0000,2.0031,2.0034,0 +2620,0.0000,0.0000,1.9517,1.9520,0 +2621,0.0000,0.0000,1.9974,1.9977,0 +2622,0.0000,0.0000,8.9053,8.9056,0 +2623,0.0000,0.0000,2.0507,2.0510,0 +2624,0.0000,0.0000,2.0615,2.0618,0 +2625,0.0000,0.0000,1.9506,1.9509,0 +2626,0.0000,0.0000,2.0044,2.0047,0 +2627,0.0000,0.0000,8.9745,8.9748,0 +2628,0.0000,0.0000,2.0148,2.0151,0 +2629,0.0000,0.0000,2.0036,2.0039,0 +2630,0.0000,0.0000,1.9205,1.9208,0 +2631,0.0000,0.0000,2.0447,2.0450,0 +2632,0.0000,0.0000,9.0311,9.0314,0 +2633,0.0000,0.0000,2.0123,2.0126,0 +2634,0.0000,0.0000,2.0167,2.0170,0 +2635,0.0000,0.0000,1.9060,1.9063,0 +2636,0.0000,0.0000,2.0652,2.0655,0 +2637,0.0000,0.0000,8.9599,8.9602,0 +2638,0.0000,0.0000,2.0052,2.0055,0 +2639,0.0000,0.0000,2.0493,2.0496,0 +2640,0.0000,0.0000,1.8043,1.8046,0 +2641,0.0000,0.0000,9.1202,9.1205,0 +2642,0.0000,0.0000,1.9595,1.9598,0 +2643,0.0000,0.0000,1.9792,1.9795,0 +2644,0.0000,0.0000,2.0075,2.0078,0 +2645,0.0000,0.0000,1.9221,1.9224,0 +2646,0.0000,0.0000,9.2439,9.2442,0 +2647,0.0000,0.0000,1.9825,1.9828,0 +2648,0.0000,0.0000,2.0237,2.0240,0 +2649,0.0000,0.0000,1.9643,1.9646,0 +2650,0.0000,0.0000,1.9926,1.9929,0 +2651,0.0000,0.0000,9.0201,9.0204,0 +2652,0.0000,0.0000,2.0097,2.0100,0 +2653,0.0000,0.0000,2.0482,2.0485,0 +2654,0.0000,0.0000,1.9413,1.9416,0 +2655,0.0000,0.0000,2.0195,2.0198,0 +2656,0.0000,0.0000,8.9562,8.9564,0 +2657,0.0000,0.0000,1.9874,1.9877,0 +2658,0.0000,0.0000,2.0061,2.0065,0 +2659,0.0000,0.0000,1.8850,1.8853,0 +2660,0.0000,0.0000,2.1068,2.1071,0 +2661,0.0000,0.0000,9.0373,9.0376,0 +2662,0.0000,0.0000,1.9183,1.9186,0 +2663,0.0000,0.0000,2.0985,2.0988,0 +2664,0.0000,0.0000,1.9133,1.9136,0 +2665,0.0000,0.0000,2.0574,2.0577,0 +2666,0.0000,0.0000,8.9758,8.9761,0 +2667,0.0000,0.0000,2.0117,2.0120,0 +2668,0.0000,0.0000,2.0106,2.0109,0 +2669,0.0000,0.0000,1.9124,1.9127,0 +2670,0.0000,0.0000,9.0139,9.0142,0 +2671,0.0000,0.0000,1.9690,1.9693,0 +2672,0.0000,0.0000,2.0106,2.0109,0 +2673,0.0000,0.0000,2.0092,2.0095,0 +2674,0.0000,0.0000,1.9357,1.9360,0 +2675,0.0000,0.0000,9.0264,9.0267,0 +2676,0.0000,0.0000,2.0121,2.0124,0 +2677,0.0000,0.0000,2.0142,2.0145,0 +2678,0.0000,0.0000,1.9718,1.9721,0 +2679,0.0000,0.0000,1.9837,1.9840,0 +2680,0.0000,0.0000,9.0158,9.0161,0 +2681,0.0000,0.0000,1.9864,1.9867,0 +2682,0.0000,0.0000,2.0133,2.0136,0 +2683,0.0000,0.0000,1.9548,1.9551,0 +2684,0.0000,0.0000,2.0017,2.0020,0 +2685,0.0000,0.0000,8.9458,8.9461,0 +2686,0.0000,0.0000,2.0114,2.0117,0 +2687,0.0000,0.0000,2.0034,2.0037,0 +2688,0.0000,0.0000,1.9842,1.9845,0 +2689,0.0000,0.0000,2.0799,2.0802,0 +2690,0.0000,0.0000,9.0057,9.0060,0 +2691,0.0000,0.0000,2.0069,2.0072,0 +2692,0.0000,0.0000,2.0047,2.0050,0 +2693,0.0000,0.0000,1.9055,1.9058,0 +2694,0.0000,0.0000,2.1015,2.1018,0 +2695,0.0000,0.0000,8.9277,8.9280,0 +2696,0.0000,0.0000,2.0149,2.0152,0 +2697,0.0000,0.0000,2.0350,2.0353,0 +2698,0.0000,0.0000,1.8722,1.8725,0 +2699,0.0000,0.0000,9.0096,9.0099,0 +2700,0.0000,0.0000,2.0142,2.0145,0 +2701,0.0000,0.0000,2.0604,2.0607,0 +2702,0.0000,0.0000,2.0032,2.0035,0 +2703,0.0000,0.0000,1.8695,1.8698,0 +2704,0.0000,0.0000,9.1229,9.1232,0 +2705,0.0000,0.0000,1.9968,1.9971,0 +2706,0.0000,0.0000,2.0113,2.0116,0 +2707,0.0000,0.0000,1.9433,1.9437,0 +2708,0.0000,0.0000,2.0002,2.0005,0 +2709,0.0000,0.0000,9.1229,9.1232,0 +2710,0.0000,0.0000,1.9946,1.9949,0 +2711,0.0000,0.0000,2.0026,2.0029,0 +2712,0.0000,0.0000,1.9478,1.9482,0 +2713,0.0000,0.0000,2.0107,2.0110,0 +2714,0.0000,0.0000,8.9098,8.9101,0 +2715,0.0000,0.0000,2.0146,2.0149,0 +2716,0.0000,0.0000,1.9994,1.9997,0 +2717,0.0000,0.0000,1.9871,1.9874,0 +2718,0.0000,0.0000,2.0039,2.0042,0 +2719,0.0000,0.0000,9.0101,9.0104,0 +2720,0.0000,0.0000,2.0024,2.0027,0 +2721,0.0000,0.0000,2.0075,2.0078,0 +2722,0.0000,0.0000,1.9512,1.9515,0 +2723,0.0000,0.0000,2.0395,2.0398,0 +2724,0.0000,0.0000,8.9329,8.9332,0 +2725,0.0000,0.0000,2.0506,2.0509,0 +2726,0.0000,0.0000,1.9677,1.9680,0 +2727,0.0000,0.0000,1.9455,1.9458,0 +2728,0.0000,0.0000,2.0437,2.0440,0 +2729,0.0000,0.0000,8.8766,8.8769,0 +2730,0.0000,0.0000,2.0038,2.0041,0 +2731,0.0000,0.0000,2.0396,2.0399,0 +2732,0.0000,0.0000,1.9190,1.9193,0 +2733,0.0000,0.0000,9.1023,9.1026,0 +2734,0.0000,0.0000,2.0096,2.0099,0 +2735,0.0000,0.0000,1.9963,1.9966,0 +2736,0.0000,0.0000,2.1214,2.1217,0 +2737,0.0000,0.0000,1.8932,1.8935,0 +2738,0.0000,0.0000,9.0639,9.0642,0 +2739,0.0000,0.0000,1.9935,1.9938,0 +2740,0.0000,0.0000,2.0664,2.0667,0 +2741,0.0000,0.0000,1.8535,1.8538,0 +2742,0.0000,0.0000,1.9995,1.9998,0 +2743,0.0000,0.0000,9.0593,9.0596,0 +2744,0.0000,0.0000,2.0174,2.0177,0 +2745,0.0000,0.0000,2.0075,2.0078,0 +2746,0.0000,0.0000,1.9869,1.9872,0 +2747,0.0000,0.0000,1.9677,1.9680,0 +2748,0.0000,0.0000,8.9968,8.9971,0 +2749,0.0000,0.0000,2.0042,2.0045,0 +2750,0.0000,0.0000,2.0147,2.0150,0 +2751,0.0000,0.0000,1.9235,1.9238,0 +2752,0.0000,0.0000,2.0355,2.0358,0 +2753,0.0000,0.0000,8.9048,8.9051,0 +2754,0.0000,0.0000,2.0257,2.0260,0 +2755,0.0000,0.0000,1.9920,1.9923,0 +2756,0.0000,0.0000,1.9180,1.9183,0 +2757,0.0000,0.0000,2.0523,2.0526,0 +2758,0.0000,0.0000,8.7914,8.7917,0 +2759,0.0000,0.0000,2.0008,2.0011,0 +2760,0.0000,0.0000,2.0007,2.0010,0 +2761,0.0000,0.0000,1.9964,1.9967,0 +2762,0.0000,0.0000,9.1765,9.1768,0 +2763,0.0000,0.0000,2.0102,2.0105,0 +2764,0.0000,0.0000,2.0059,2.0062,0 +2765,0.0000,0.0000,2.0159,2.0162,0 +2766,0.0000,0.0000,1.9360,1.9363,0 +2767,0.0000,0.0000,9.1078,9.1081,0 +2768,0.0000,0.0000,2.0065,2.0068,0 +2769,0.0000,0.0000,1.9938,1.9941,0 +2770,0.0000,0.0000,1.9752,1.9755,0 +2771,0.0000,0.0000,1.9790,1.9793,0 +2772,0.0000,0.0000,9.0067,9.0070,0 +2773,0.0000,0.0000,2.0064,2.0067,0 +2774,0.0000,0.0000,1.9992,1.9995,0 +2775,0.0000,0.0000,1.9587,1.9590,0 +2776,0.0000,0.0000,1.9955,1.9958,0 +2777,0.0000,0.0000,9.0390,9.0393,0 +2778,0.0000,0.0000,1.9904,1.9907,0 +2779,0.0000,0.0000,1.9989,1.9992,0 +2780,0.0000,0.0000,1.9053,1.9056,0 +2781,0.0000,0.0000,2.1651,2.1654,0 +2782,0.0000,0.0000,8.9598,8.9601,0 +2783,0.0000,0.0000,1.9904,1.9907,0 +2784,0.0000,0.0000,2.0279,2.0282,0 +2785,0.0000,0.0000,1.9028,1.9031,0 +2786,0.0000,0.0000,2.0504,2.0507,0 +2787,0.0000,0.0000,8.8671,8.8674,0 +2788,0.0000,0.0000,1.9791,1.9794,0 +2789,0.0000,0.0000,1.9965,1.9968,0 +2790,0.0000,0.0000,1.9629,1.9632,0 +2791,0.0000,0.0000,9.1318,9.1321,0 +2792,0.0000,0.0000,2.0040,2.0043,0 +2793,0.0000,0.0000,1.9935,1.9938,0 +2794,0.0000,0.0000,2.0154,2.0157,0 +2795,0.0000,0.0000,1.9272,1.9275,0 +2796,0.0000,0.0000,9.0257,9.0260,0 +2797,0.0000,0.0000,2.0150,2.0152,0 +2798,0.0000,0.0000,1.9972,1.9975,0 +2799,0.0000,0.0000,1.9714,1.9717,0 +2800,0.0000,0.0000,1.9922,1.9925,0 +2801,0.0000,0.0000,9.0430,9.0433,0 +2802,0.0000,0.0000,2.0381,2.0384,0 +2803,0.0000,0.0000,2.0078,2.0081,0 +2804,0.0000,0.0000,1.9530,1.9533,0 +2805,0.0000,0.0000,1.9899,1.9902,0 +2806,0.0000,0.0000,9.1852,9.1855,0 +2807,0.0000,0.0000,1.9989,1.9992,0 +2808,0.0000,0.0000,2.0085,2.0088,0 +2809,0.0000,0.0000,1.9301,1.9304,0 +2810,0.0000,0.0000,2.0599,2.0602,0 +2811,0.0000,0.0000,8.9541,8.9544,0 +2812,0.0000,0.0000,1.9951,1.9954,0 +2813,0.0000,0.0000,1.9765,1.9768,0 +2814,0.0000,0.0000,1.9224,1.9227,0 +2815,0.0000,0.0000,2.0634,2.0637,0 +2816,0.0000,0.0000,8.9635,8.9638,0 +2817,0.0000,0.0000,2.0359,2.0362,0 +2818,0.0000,0.0000,1.9178,1.9181,0 +2819,0.0000,0.0000,1.9498,1.9501,0 +2820,0.0000,0.0000,9.1331,9.1334,0 +2821,0.0000,0.0000,1.9712,1.9715,0 +2822,0.0000,0.0000,2.0440,2.0443,0 +2823,0.0000,0.0000,1.9398,1.9401,0 +2824,0.0000,0.0000,1.9942,1.9946,0 +2825,0.0000,0.0000,9.1179,9.1182,0 +2826,0.0000,0.0000,2.0153,2.0156,0 +2827,0.0000,0.0000,2.0090,2.0093,0 +2828,0.0000,0.0000,1.9567,1.9570,0 +2829,0.0000,0.0000,2.0004,2.0007,0 +2830,0.0000,0.0000,9.1270,9.1272,0 +2831,0.0000,0.0000,2.0008,2.0011,0 +2832,0.0000,0.0000,2.0046,2.0049,0 +2833,0.0000,0.0000,1.9257,1.9260,0 +2834,0.0000,0.0000,2.0193,2.0196,0 +2835,0.0000,0.0000,8.9478,8.9480,0 +2836,0.0000,0.0000,2.0036,2.0039,0 +2837,0.0000,0.0000,2.0119,2.0123,0 +2838,0.0000,0.0000,1.9151,1.9154,0 +2839,0.0000,0.0000,2.0501,2.0504,0 +2840,0.0000,0.0000,8.9454,8.9458,0 +2841,0.0000,0.0000,2.0044,2.0047,0 +2842,0.0000,0.0000,2.0067,2.0070,0 +2843,0.0000,0.0000,1.9069,1.9072,0 +2844,0.0000,0.0000,2.0737,2.0740,0 +2845,0.0000,0.0000,8.9678,8.9681,0 +2846,0.0000,0.0000,2.0069,2.0072,0 +2847,0.0000,0.0000,2.0021,2.0024,0 +2848,0.0000,0.0000,1.8663,1.8666,0 +2849,0.0000,0.0000,2.0479,2.0482,0 +2850,0.0000,0.0000,9.0353,9.0356,0 +2851,0.0000,0.0000,2.0026,2.0029,0 +2852,0.0000,0.0000,2.0168,2.0171,0 +2853,0.0000,0.0000,1.9022,1.9025,0 +2854,0.0000,0.0000,9.1726,9.1729,0 +2855,0.0000,0.0000,2.0087,2.0090,0 +2856,0.0000,0.0000,1.9959,1.9962,0 +2857,0.0000,0.0000,1.9538,1.9541,0 +2858,0.0000,0.0000,2.0109,2.0112,0 +2859,0.0000,0.0000,9.0330,9.0333,0 +2860,0.0000,0.0000,1.9994,1.9997,0 +2861,0.0000,0.0000,2.0064,2.0067,0 +2862,0.0000,0.0000,1.9967,1.9970,0 +2863,0.0000,0.0000,2.0152,2.0155,0 +2864,0.0000,0.0000,9.0455,9.0458,0 +2865,0.0000,0.0000,1.9886,1.9889,0 +2866,0.0000,0.0000,1.9915,1.9918,0 +2867,0.0000,0.0000,1.9312,1.9315,0 +2868,0.0000,0.0000,2.1018,2.1021,0 +2869,0.0000,0.0000,8.9680,8.9683,0 +2870,0.0000,0.0000,2.0439,2.0442,0 +2871,0.0000,0.0000,1.9643,1.9646,0 +2872,0.0000,0.0000,1.8722,1.8725,0 +2873,0.0000,0.0000,2.0912,2.0915,0 +2874,0.0000,0.0000,8.9676,8.9679,0 +2875,0.0000,0.0000,2.0075,2.0078,0 +2876,0.0000,0.0000,2.0000,2.0003,0 +2877,0.0000,0.0000,1.8946,1.8949,0 +2878,0.0000,0.0000,9.1511,9.1515,0 +2879,0.0000,0.0000,1.9999,2.0002,0 +2880,0.0000,0.0000,2.0011,2.0014,0 +2881,0.0000,0.0000,2.0091,2.0095,0 +2882,0.0000,0.0000,1.9269,1.9272,0 +2883,0.0000,0.0000,9.0573,9.0576,0 +2884,0.0000,0.0000,1.9994,1.9997,0 +2885,0.0000,0.0000,1.9350,1.9353,0 +2886,0.0000,0.0000,2.0190,2.0194,0 +2887,0.0000,0.0000,1.9933,1.9936,0 +2888,0.0000,0.0000,9.0117,9.0120,0 +2889,0.0000,0.0000,1.9983,1.9986,0 +2890,0.0000,0.0000,1.9935,1.9938,0 +2891,0.0000,0.0000,1.9944,1.9947,0 +2892,0.0000,0.0000,2.0059,2.0063,0 +2893,0.0000,0.0000,9.0590,9.0593,0 +2894,0.0000,0.0000,1.9937,1.9940,0 +2895,0.0000,0.0000,1.9997,2.0000,0 +2896,0.0000,0.0000,1.9311,1.9314,0 +2897,0.0000,0.0000,2.2594,2.2597,0 +2898,0.0000,0.0000,8.7790,8.7793,0 +2899,0.0000,0.0000,1.9951,1.9955,0 +2900,0.0000,0.0000,2.0064,2.0067,0 +2901,0.0000,0.0000,1.9433,1.9436,0 +2902,0.0000,0.0000,2.0683,2.0686,0 +2903,0.0000,0.0000,8.9399,8.9402,0 +2904,0.0000,0.0000,2.0084,2.0087,0 +2905,0.0000,0.0000,2.0209,2.0212,0 +2906,0.0000,0.0000,1.9456,1.9459,0 +2907,0.0000,0.0000,9.0402,9.0405,0 +2908,0.0000,0.0000,2.0075,2.0078,0 +2909,0.0000,0.0000,2.0635,2.0638,0 +2910,0.0000,0.0000,1.9630,1.9633,0 +2911,0.0000,0.0000,1.9686,1.9689,0 +2912,0.0000,0.0000,9.0591,9.0594,0 +2913,0.0000,0.0000,2.0736,2.0739,0 +2914,0.0000,0.0000,1.9308,1.9311,0 +2915,0.0000,0.0000,2.0097,2.0100,0 +2916,0.0000,0.0000,1.9921,1.9924,0 +2917,0.0000,0.0000,9.0404,9.0407,0 +2918,0.0000,0.0000,2.0056,2.0059,0 +2919,0.0000,0.0000,2.0076,2.0079,0 +2920,0.0000,0.0000,1.9365,1.9368,0 +2921,0.0000,0.0000,2.0001,2.0004,0 +2922,0.0000,0.0000,9.0082,9.0085,0 +2923,0.0000,0.0000,1.9963,1.9967,0 +2924,0.0000,0.0000,2.0014,2.0017,0 +2925,0.0000,0.0000,1.9678,1.9681,0 +2926,0.0000,0.0000,2.0455,2.0458,0 +2927,0.0000,0.0000,8.9675,8.9678,0 +2928,0.0000,0.0000,2.0031,2.0034,0 +2929,0.0000,0.0000,1.9902,1.9905,0 +2930,0.0000,0.0000,1.9379,1.9382,0 +2931,0.0000,0.0000,2.0277,2.0280,0 +2932,0.0000,0.0000,8.9766,8.9769,0 +2933,0.0000,0.0000,1.9746,1.9749,0 +2934,0.0000,0.0000,2.0414,2.0417,0 +2935,0.0000,0.0000,1.9131,1.9134,0 +2936,0.0000,0.0000,9.0544,9.0547,0 +2937,0.0000,0.0000,1.9883,1.9886,0 +2938,0.0000,0.0000,2.0126,2.0129,0 +2939,0.0000,0.0000,2.0539,2.0542,0 +2940,0.0000,0.0000,1.9407,1.9410,0 +2941,0.0000,0.0000,9.1236,9.1239,0 +2942,0.0000,0.0000,1.9741,1.9744,0 +2943,0.0000,0.0000,2.0111,2.0114,0 +2944,0.0000,0.0000,2.0114,2.0118,0 +2945,0.0000,0.0000,1.9908,1.9911,0 +2946,0.0000,0.0000,9.0842,9.0845,0 +2947,0.0000,0.0000,2.0559,2.0562,0 +2948,0.0000,0.0000,1.9753,1.9756,0 +2949,0.0000,0.0000,1.9335,1.9338,0 +2950,0.0000,0.0000,2.0107,2.0110,0 +2951,0.0000,0.0000,8.9976,8.9979,0 +2952,0.0000,0.0000,1.9954,1.9957,0 +2953,0.0000,0.0000,2.0048,2.0051,0 +2954,0.0000,0.0000,1.9352,1.9355,0 +2955,0.0000,0.0000,2.0925,2.0928,0 +2956,0.0000,0.0000,8.9356,8.9359,0 +2957,0.0000,0.0000,2.0072,2.0075,0 +2958,0.0000,0.0000,2.0303,2.0306,0 +2959,0.0000,0.0000,1.9161,1.9163,0 +2960,0.0000,0.0000,2.0589,2.0592,0 +2961,0.0000,0.0000,8.9906,8.9909,0 +2962,0.0000,0.0000,2.0006,2.0009,0 +2963,0.0000,0.0000,1.9741,1.9744,0 +2964,0.0000,0.0000,1.9625,1.9628,0 +2965,0.0000,0.0000,9.0848,9.0851,0 +2966,0.0000,0.0000,1.8912,1.8915,0 +2967,0.0000,0.0000,1.9978,1.9981,0 +2968,0.0000,0.0000,2.0121,2.0124,0 +2969,0.0000,0.0000,2.0347,2.0350,0 +2970,0.0000,0.0000,9.0012,9.0015,0 +2971,0.0000,0.0000,2.1408,2.1411,0 +2972,0.0000,0.0000,1.8683,1.8686,0 +2973,0.0000,0.0000,1.9809,1.9812,0 +2974,0.0000,0.0000,1.9773,1.9776,0 +2975,0.0000,0.0000,9.1375,9.1378,0 +2976,0.0000,0.0000,2.0004,2.0007,0 +2977,0.0000,0.0000,1.9998,2.0001,0 +2978,0.0000,0.0000,1.9568,1.9571,0 +2979,0.0000,0.0000,1.9894,1.9897,0 +2980,0.0000,0.0000,9.0547,9.0550,0 +2981,0.0000,0.0000,1.9758,1.9761,0 +2982,0.0000,0.0000,2.0102,2.0105,0 +2983,0.0000,0.0000,1.9167,1.9170,0 +2984,0.0000,0.0000,2.0585,2.0588,0 +2985,0.0000,0.0000,8.9480,8.9483,0 +2986,0.0000,0.0000,1.9961,1.9964,0 +2987,0.0000,0.0000,2.0192,2.0195,0 +2988,0.0000,0.0000,1.8968,1.8971,0 +2989,0.0000,0.0000,2.0981,2.0984,0 +2990,0.0000,0.0000,8.9521,8.9524,0 +2991,0.0000,0.0000,1.9953,1.9956,0 +2992,0.0000,0.0000,2.0177,2.0180,0 +2993,0.0000,0.0000,1.8914,1.8917,0 +2994,0.0000,0.0000,9.1838,9.1841,0 +2995,0.0000,0.0000,1.9118,1.9121,0 +2996,0.0000,0.0000,2.0086,2.0089,0 +2997,0.0000,0.0000,2.0045,2.0048,0 +2998,0.0000,0.0000,1.9431,1.9434,0 +2999,0.0000,0.0000,9.1010,9.1013,0 +3000,0.0000,0.0000,2.0070,2.0073,0 +3001,0.0000,0.0000,2.0058,2.0061,0 +3002,0.0000,0.0000,1.9566,1.9569,0 +3003,0.0000,0.0000,1.9863,1.9865,0 +3004,0.0000,0.0000,9.1059,9.1062,0 +3005,0.0000,0.0000,2.0022,2.0025,0 +3006,0.0000,0.0000,2.0106,2.0109,0 +3007,0.0000,0.0000,1.9072,1.9075,0 +3008,0.0000,0.0000,2.0421,2.0424,0 +3009,0.0000,0.0000,9.0392,9.0395,0 +3010,0.0000,0.0000,2.0034,2.0037,0 +3011,0.0000,0.0000,1.9988,1.9991,0 +3012,0.0000,0.0000,1.9448,1.9451,0 +3013,0.0000,0.0000,2.0366,2.0369,0 +3014,0.0000,0.0000,8.9623,8.9626,0 +3015,0.0000,0.0000,2.0108,2.0112,0 +3016,0.0000,0.0000,1.9990,1.9993,0 +3017,0.0000,0.0000,1.8596,1.8599,0 +3018,0.0000,0.0000,2.1118,2.1121,0 +3019,0.0000,0.0000,8.9772,8.9775,0 +3020,0.0000,0.0000,2.0071,2.0073,0 +3021,0.0000,0.0000,2.0079,2.0083,0 +3022,0.0000,0.0000,1.8667,1.8670,0 +3023,0.0000,0.0000,9.1041,9.1044,0 +3024,0.0000,0.0000,2.0333,2.0336,0 +3025,0.0000,0.0000,1.9266,1.9269,0 +3026,0.0000,0.0000,2.0159,2.0162,0 +3027,0.0000,0.0000,1.9259,1.9262,0 +3028,0.0000,0.0000,9.1213,9.1216,0 +3029,0.0000,0.0000,1.9865,1.9868,0 +3030,0.0000,0.0000,2.0323,2.0326,0 +3031,0.0000,0.0000,1.9737,1.9741,0 +3032,0.0000,0.0000,1.9505,1.9508,0 +3033,0.0000,0.0000,9.1550,9.1553,0 +3034,0.0000,0.0000,2.0074,2.0077,0 +3035,0.0000,0.0000,2.0140,2.0143,0 +3036,0.0000,0.0000,1.9493,1.9496,0 +3037,0.0000,0.0000,2.0125,2.0128,0 +3038,0.0000,0.0000,8.5672,8.5676,0 +3039,0.0000,0.0000,2.0519,2.0522,0 +3040,0.0000,0.0000,2.0141,2.0144,0 +3041,0.0000,0.0000,1.9284,1.9287,0 +3042,0.0000,0.0000,2.0727,2.0730,0 +3043,0.0000,0.0000,8.9699,8.9702,0 +3044,0.0000,0.0000,1.9956,1.9959,0 +3045,0.0000,0.0000,2.0084,2.0087,0 +3046,0.0000,0.0000,1.9187,1.9190,0 +3047,0.0000,0.0000,2.0588,2.0591,0 +3048,0.0000,0.0000,8.9622,8.9625,0 +3049,0.0000,0.0000,1.9935,1.9938,0 +3050,0.0000,0.0000,2.0004,2.0007,0 +3051,0.0000,0.0000,1.9121,1.9124,0 +3052,0.0000,0.0000,9.1361,9.1364,0 +3053,0.0000,0.0000,2.0139,2.0142,0 +3054,0.0000,0.0000,2.0048,2.0051,0 +3055,0.0000,0.0000,1.9806,1.9809,0 +3056,0.0000,0.0000,1.9159,1.9162,0 +3057,0.0000,0.0000,9.0691,9.0695,0 +3058,0.0000,0.0000,1.9952,1.9955,0 +3059,0.0000,0.0000,2.0029,2.0032,0 +3060,0.0000,0.0000,1.9660,1.9663,0 +3061,0.0000,0.0000,1.9859,1.9862,0 +3062,0.0000,0.0000,9.1269,9.1272,0 +3063,0.0000,0.0000,1.9582,1.9585,0 +3064,0.0000,0.0000,2.0568,2.0571,0 +3065,0.0000,0.0000,1.9826,1.9829,0 +3066,0.0000,0.0000,2.0098,2.0101,0 +3067,0.0000,0.0000,8.9668,8.9671,0 +3068,0.0000,0.0000,1.9952,1.9955,0 +3069,0.0000,0.0000,2.0736,2.0739,0 +3070,0.0000,0.0000,1.9120,1.9123,0 +3071,0.0000,0.0000,2.0493,2.0496,0 +3072,0.0000,0.0000,8.9410,8.9413,0 +3073,0.0000,0.0000,2.0282,2.0285,0 +3074,0.0000,0.0000,1.9654,1.9657,0 +3075,0.0000,0.0000,1.9471,1.9474,0 +3076,0.0000,0.0000,2.0490,2.0493,0 +3077,0.0000,0.0000,8.9441,8.9444,0 +3078,0.0000,0.0000,2.0030,2.0033,0 +3079,0.0000,0.0000,2.0226,2.0229,0 +3080,0.0000,0.0000,1.9525,1.9528,0 +3081,0.0000,0.0000,9.0805,9.0808,0 +3082,0.0000,0.0000,1.9912,1.9915,0 +3083,0.0000,0.0000,2.0193,2.0196,0 +3084,0.0000,0.0000,2.0321,2.0324,0 +3085,0.0000,0.0000,1.9620,1.9623,0 +3086,0.0000,0.0000,9.0377,9.0380,0 +3087,0.0000,0.0000,1.9262,1.9265,0 +3088,0.0000,0.0000,1.9987,1.9990,0 +3089,0.0000,0.0000,2.0025,2.0029,0 +3090,0.0000,0.0000,2.0129,2.0132,0 +3091,0.0000,0.0000,9.0587,9.0590,0 +3092,0.0000,0.0000,2.0149,2.0152,0 +3093,0.0000,0.0000,2.0567,2.0570,0 +3094,0.0000,0.0000,1.9267,1.9270,0 +3095,0.0000,0.0000,2.0039,2.0042,0 +3096,0.0000,0.0000,9.0333,9.0336,0 +3097,0.0000,0.0000,1.9680,1.9683,0 +3098,0.0000,0.0000,1.9928,1.9931,0 +3099,0.0000,0.0000,1.9101,1.9104,0 +3100,0.0000,0.0000,2.1522,2.1525,0 +3101,0.0000,0.0000,8.9477,8.9480,0 +3102,0.0000,0.0000,2.0026,2.0029,0 +3103,0.0000,0.0000,2.0114,2.0117,0 +3104,0.0000,0.0000,1.9246,1.9249,0 +3105,0.0000,0.0000,2.0475,2.0478,0 +3106,0.0000,0.0000,8.9657,8.9660,0 +3107,0.0000,0.0000,2.0018,2.0021,0 +3108,0.0000,0.0000,2.0157,2.0160,0 +3109,0.0000,0.0000,1.9064,1.9067,0 +3110,0.0000,0.0000,9.1303,9.1306,0 +3111,0.0000,0.0000,2.0027,2.0030,0 +3112,0.0000,0.0000,2.0041,2.0044,0 +3113,0.0000,0.0000,2.0243,2.0246,0 +3114,0.0000,0.0000,1.9493,1.9496,0 +3115,0.0000,0.0000,9.0595,9.0598,0 +3116,0.0000,0.0000,2.0594,2.0597,0 +3117,0.0000,0.0000,1.9710,1.9713,0 +3118,0.0000,0.0000,1.9925,1.9928,0 +3119,0.0000,0.0000,2.0093,2.0096,0 +3120,0.0000,0.0000,8.9268,8.9271,0 +3121,0.0000,0.0000,2.0393,2.0396,0 +3122,0.0000,0.0000,2.0042,2.0045,0 +3123,0.0000,0.0000,1.9725,1.9728,0 +3124,0.0000,0.0000,1.9669,1.9672,0 +3125,0.0000,0.0000,8.9783,8.9786,0 +3126,0.0000,0.0000,1.9922,1.9925,0 +3127,0.0000,0.0000,2.0025,2.0028,0 +3128,0.0000,0.0000,1.9351,1.9354,0 +3129,0.0000,0.0000,2.0189,2.0192,0 +3130,0.0000,0.0000,8.9463,8.9466,0 +3131,0.0000,0.0000,2.0426,2.0429,0 +3132,0.0000,0.0000,1.9589,1.9592,0 +3133,0.0000,0.0000,1.9461,1.9464,0 +3134,0.0000,0.0000,2.0625,2.0628,0 +3135,0.0000,0.0000,8.9421,8.9424,0 +3136,0.0000,0.0000,2.0077,2.0080,0 +3137,0.0000,0.0000,2.0522,2.0525,0 +3138,0.0000,0.0000,1.8949,1.8952,0 +3139,0.0000,0.0000,9.0627,9.0630,0 +3140,0.0000,0.0000,2.0127,2.0130,0 +3141,0.0000,0.0000,1.9592,1.9595,0 +3142,0.0000,0.0000,2.0402,2.0405,0 +3143,0.0000,0.0000,1.9536,1.9539,0 +3144,0.0000,0.0000,9.0120,9.0123,0 +3145,0.0000,0.0000,1.9981,1.9984,0 +3146,0.0000,0.0000,2.0278,2.0281,0 +3147,0.0000,0.0000,1.9865,1.9868,0 +3148,0.0000,0.0000,1.9912,1.9915,0 +3149,0.0000,0.0000,9.0445,9.0448,0 +3150,0.0000,0.0000,2.0010,2.0013,0 +3151,0.0000,0.0000,2.0023,2.0026,0 +3152,0.0000,0.0000,1.9727,1.9730,0 +3153,0.0000,0.0000,2.0642,2.0645,0 +3154,0.0000,0.0000,8.9811,8.9814,0 +3155,0.0000,0.0000,1.9536,1.9539,0 +3156,0.0000,0.0000,2.0019,2.0022,0 +3157,0.0000,0.0000,1.9689,1.9692,0 +3158,0.0000,0.0000,1.9715,1.9718,0 +3159,0.0000,0.0000,9.0145,9.0148,0 +3160,0.0000,0.0000,2.0047,2.0051,0 +3161,0.0000,0.0000,1.9867,1.9870,0 +3162,0.0000,0.0000,1.9072,1.9076,0 +3163,0.0000,0.0000,2.0599,2.0602,0 +3164,0.0000,0.0000,8.9747,8.9750,0 +3165,0.0000,0.0000,1.9966,1.9969,0 +3166,0.0000,0.0000,2.0112,2.0115,0 +3167,0.0000,0.0000,1.9076,1.9079,0 +3168,0.0000,0.0000,2.0609,2.0612,0 +3169,0.0000,0.0000,9.0351,9.0354,0 +3170,0.0000,0.0000,2.0116,2.0119,0 +3171,0.0000,0.0000,2.0115,2.0118,0 +3172,0.0000,0.0000,1.9105,1.9108,0 +3173,0.0000,0.0000,8.9723,8.9726,0 +3174,0.0000,0.0000,1.9869,1.9872,0 +3175,0.0000,0.0000,2.0000,2.0003,0 +3176,0.0000,0.0000,1.9961,1.9964,0 +3177,0.0000,0.0000,2.0696,2.0699,0 +3178,0.0000,0.0000,9.1173,9.1176,0 +3179,0.0000,0.0000,2.0175,2.0178,0 +3180,0.0000,0.0000,1.9976,1.9979,0 +3181,0.0000,0.0000,1.9836,1.9839,0 +3182,0.0000,0.0000,1.9882,1.9885,0 +3183,0.0000,0.0000,9.0570,9.0573,0 +3184,0.0000,0.0000,1.9994,1.9997,0 +3185,0.0000,0.0000,1.9929,1.9932,0 +3186,0.0000,0.0000,1.9231,1.9234,0 +3187,0.0000,0.0000,2.1895,2.1898,0 +3188,0.0000,0.0000,8.7694,8.7697,0 +3189,0.0000,0.0000,2.0064,2.0067,0 +3190,0.0000,0.0000,2.0126,2.0129,0 +3191,0.0000,0.0000,1.9039,1.9042,0 +3192,0.0000,0.0000,2.0303,2.0306,0 +3193,0.0000,0.0000,8.9689,8.9692,0 +3194,0.0000,0.0000,2.0153,2.0156,0 +3195,0.0000,0.0000,2.0101,2.0105,0 +3196,0.0000,0.0000,1.9056,1.9059,0 +3197,0.0000,0.0000,2.0593,2.0596,0 +3198,0.0000,0.0000,9.0348,9.0351,0 +3199,0.0000,0.0000,2.0064,2.0067,0 +3200,0.0000,0.0000,2.0059,2.0062,0 +3201,0.0000,0.0000,1.8965,1.8968,0 +3202,0.0000,0.0000,9.0042,9.0045,0 +3203,0.0000,0.0000,1.9871,1.9874,0 +3204,0.0000,0.0000,2.0163,2.0166,0 +3205,0.0000,0.0000,2.0176,2.0179,0 +3206,0.0000,0.0000,1.9548,1.9551,0 +3207,0.0000,0.0000,9.0115,9.0118,0 +3208,0.0000,0.0000,2.0505,2.0508,0 +3209,0.0000,0.0000,1.9709,1.9712,0 +3210,0.0000,0.0000,1.9884,1.9887,0 +3211,0.0000,0.0000,1.9993,1.9996,0 +3212,0.0000,0.0000,9.1506,9.1509,0 +3213,0.0000,0.0000,2.0335,2.0339,0 +3214,0.0000,0.0000,1.9703,1.9706,0 +3215,0.0000,0.0000,1.9689,1.9692,0 +3216,0.0000,0.0000,2.0018,2.0021,0 +3217,0.0000,0.0000,8.8765,8.8768,0 +3218,0.0000,0.0000,2.0044,2.0047,0 +3219,0.0000,0.0000,2.0648,2.0651,0 +3220,0.0000,0.0000,1.9043,1.9046,0 +3221,0.0000,0.0000,2.0140,2.0143,0 +3222,0.0000,0.0000,8.9104,8.9107,0 +3223,0.0000,0.0000,2.0044,2.0047,0 +3224,0.0000,0.0000,1.9910,1.9913,0 +3225,0.0000,0.0000,1.9171,1.9174,0 +3226,0.0000,0.0000,2.0874,2.0877,0 +3227,0.0000,0.0000,8.9755,8.9758,0 +3228,0.0000,0.0000,2.0005,2.0008,0 +3229,0.0000,0.0000,2.0092,2.0095,0 +3230,0.0000,0.0000,1.9412,1.9415,0 +3231,0.0000,0.0000,9.0842,9.0845,0 +3232,0.0000,0.0000,1.9463,1.9466,0 +3233,0.0000,0.0000,1.9896,1.9899,0 +3234,0.0000,0.0000,2.0000,2.0003,0 +3235,0.0000,0.0000,1.9592,1.9595,0 +3236,0.0000,0.0000,9.0421,9.0424,0 +3237,0.0000,0.0000,2.0120,2.0123,0 +3238,0.0000,0.0000,2.0018,2.0022,0 +3239,0.0000,0.0000,2.0285,2.0288,0 +3240,0.0000,0.0000,1.9617,1.9620,0 +3241,0.0000,0.0000,9.1476,9.1479,0 +3242,0.0000,0.0000,2.0279,2.0282,0 +3243,0.0000,0.0000,1.9811,1.9814,0 +3244,0.0000,0.0000,1.9826,1.9829,0 +3245,0.0000,0.0000,2.0014,2.0017,0 +3246,0.0000,0.0000,8.9040,8.9043,0 +3247,0.0000,0.0000,2.0016,2.0019,0 +3248,0.0000,0.0000,2.0515,2.0517,0 +3249,0.0000,0.0000,1.9259,1.9263,0 +3250,0.0000,0.0000,1.9410,1.9413,0 +3251,0.0000,0.0000,8.9792,8.9795,0 +3252,0.0000,0.0000,1.9750,1.9753,0 +3253,0.0000,0.0000,1.9865,1.9868,0 +3254,0.0000,0.0000,1.9663,1.9666,0 +3255,0.0000,0.0000,2.0351,2.0354,0 +3256,0.0000,0.0000,9.0065,9.0068,0 +3257,0.0000,0.0000,1.9964,1.9967,0 +3258,0.0000,0.0000,1.9977,1.9980,0 +3259,0.0000,0.0000,1.9389,1.9392,0 +3260,0.0000,0.0000,2.0660,2.0663,0 +3261,0.0000,0.0000,8.9330,8.9333,0 +3262,0.0000,0.0000,2.0022,2.0025,0 +3263,0.0000,0.0000,1.9885,1.9888,0 +3264,0.0000,0.0000,1.9167,1.9170,0 +3265,0.0000,0.0000,9.0113,9.0117,0 +3266,0.0000,0.0000,2.0099,2.0102,0 +3267,0.0000,0.0000,2.0287,2.0290,0 +3268,0.0000,0.0000,2.0623,2.0626,0 +3269,0.0000,0.0000,1.9256,1.9259,0 +3270,0.0000,0.0000,9.1258,9.1261,0 +3271,0.0000,0.0000,1.9953,1.9956,0 +3272,0.0000,0.0000,2.0079,2.0082,0 +3273,0.0000,0.0000,1.9958,1.9961,0 +3274,0.0000,0.0000,1.9916,1.9919,0 +3275,0.0000,0.0000,9.0381,9.0385,0 +3276,0.0000,0.0000,1.8777,1.8780,0 +3277,0.0000,0.0000,2.0538,2.0541,0 +3278,0.0000,0.0000,1.9548,1.9551,0 +3279,0.0000,0.0000,2.0070,2.0073,0 +3280,0.0000,0.0000,9.1748,9.1751,0 +3281,0.0000,0.0000,1.7995,1.7998,0 +3282,0.0000,0.0000,1.9590,1.9593,0 +3283,0.0000,0.0000,1.9746,1.9749,0 +3284,0.0000,0.0000,2.0384,2.0387,0 +3285,0.0000,0.0000,8.9922,8.9925,0 +3286,0.0000,0.0000,2.0370,2.0373,0 +3287,0.0000,0.0000,1.9418,1.9421,0 +3288,0.0000,0.0000,1.9512,1.9515,0 +3289,0.0000,0.0000,2.0506,2.0509,0 +3290,0.0000,0.0000,8.9327,8.9330,0 +3291,0.0000,0.0000,1.9965,1.9968,0 +3292,0.0000,0.0000,2.0394,2.0397,0 +3293,0.0000,0.0000,1.8606,1.8609,0 +3294,0.0000,0.0000,8.9989,8.9992,0 +3295,0.0000,0.0000,1.9451,1.9454,0 +3296,0.0000,0.0000,1.9990,1.9993,0 +3297,0.0000,0.0000,2.0153,2.0156,0 +3298,0.0000,0.0000,1.9243,1.9246,0 +3299,0.0000,0.0000,9.1442,9.1445,0 +3300,0.0000,0.0000,1.9931,1.9934,0 +3301,0.0000,0.0000,2.0331,2.0334,0 +3302,0.0000,0.0000,1.9735,1.9738,0 +3303,0.0000,0.0000,1.9713,1.9716,0 +3304,0.0000,0.0000,8.9932,8.9935,0 +3305,0.0000,0.0000,1.9837,1.9840,0 +3306,0.0000,0.0000,1.9832,1.9835,0 +3307,0.0000,0.0000,2.0115,2.0118,0 +3308,0.0000,0.0000,1.9425,1.9428,0 +3309,0.0000,0.0000,9.1229,9.1232,0 +3310,0.0000,0.0000,2.0105,2.0108,0 +3311,0.0000,0.0000,2.0033,2.0036,0 +3312,0.0000,0.0000,2.0494,2.0497,0 +3313,0.0000,0.0000,1.9106,1.9109,0 +3314,0.0000,0.0000,9.0118,9.0122,0 +3315,0.0000,0.0000,1.9932,1.9935,0 +3316,0.0000,0.0000,2.0257,2.0260,0 +3317,0.0000,0.0000,1.8531,1.8534,0 +3318,0.0000,0.0000,2.0596,2.0599,0 +3319,0.0000,0.0000,9.0141,9.0144,0 +3320,0.0000,0.0000,1.9991,1.9994,0 +3321,0.0000,0.0000,1.9987,1.9990,0 +3322,0.0000,0.0000,1.8955,1.8958,0 +3323,0.0000,0.0000,2.0727,2.0730,0 +3324,0.0000,0.0000,8.8759,8.8762,0 +3325,0.0000,0.0000,2.0148,2.0151,0 +3326,0.0000,0.0000,1.9988,1.9991,0 +3327,0.0000,0.0000,1.9189,1.9192,0 +3328,0.0000,0.0000,9.0979,9.0982,0 +3329,0.0000,0.0000,1.9906,1.9909,0 +3330,0.0000,0.0000,2.0083,2.0086,0 +3331,0.0000,0.0000,2.0516,2.0519,0 +3332,0.0000,0.0000,1.8746,1.8749,0 +3333,0.0000,0.0000,9.1921,9.1924,0 +3334,0.0000,0.0000,1.9605,1.9608,0 +3335,0.0000,0.0000,1.9918,1.9921,0 +3336,0.0000,0.0000,1.9664,1.9667,0 +3337,0.0000,0.0000,2.0016,2.0019,0 +3338,0.0000,0.0000,9.2111,9.2114,0 +3339,0.0000,0.0000,1.9424,1.9427,0 +3340,0.0000,0.0000,1.9717,1.9719,0 +3341,0.0000,0.0000,1.9742,1.9745,0 +3342,0.0000,0.0000,2.0000,2.0003,0 +3343,0.0000,0.0000,9.0250,9.0253,0 +3344,0.0000,0.0000,2.0065,2.0068,0 +3345,0.0000,0.0000,2.0242,2.0245,0 +3346,0.0000,0.0000,1.9399,1.9402,0 +3347,0.0000,0.0000,2.0543,2.0546,0 +3348,0.0000,0.0000,8.9512,8.9515,0 +3349,0.0000,0.0000,1.9773,1.9776,0 +3350,0.0000,0.0000,2.0325,2.0328,0 +3351,0.0000,0.0000,1.9162,1.9165,0 +3352,0.0000,0.0000,2.0438,2.0441,0 +3353,0.0000,0.0000,8.9036,8.9039,0 +3354,0.0000,0.0000,2.0034,2.0037,0 +3355,0.0000,0.0000,2.0313,2.0316,0 +3356,0.0000,0.0000,1.9070,1.9073,0 +3357,0.0000,0.0000,9.0697,9.0700,0 +3358,0.0000,0.0000,2.0095,2.0098,0 +3359,0.0000,0.0000,2.0064,2.0067,0 +3360,0.0000,0.0000,2.0459,2.0463,0 +3361,0.0000,0.0000,1.9572,1.9575,0 +3362,0.0000,0.0000,9.0879,9.0882,0 +3363,0.0000,0.0000,2.0055,2.0058,0 +3364,0.0000,0.0000,2.0280,2.0283,0 +3365,0.0000,0.0000,1.8811,1.8814,0 +3366,0.0000,0.0000,1.9906,1.9909,0 +3367,0.0000,0.0000,9.0938,9.0941,0 +3368,0.0000,0.0000,2.0055,2.0058,0 +3369,0.0000,0.0000,2.0011,2.0014,0 +3370,0.0000,0.0000,2.0747,2.0750,0 +3371,0.0000,0.0000,1.8788,1.8791,0 +3372,0.0000,0.0000,9.0483,9.0486,0 +3373,0.0000,0.0000,1.9957,1.9960,0 +3374,0.0000,0.0000,2.0123,2.0126,0 +3375,0.0000,0.0000,1.9159,1.9162,0 +3376,0.0000,0.0000,2.0558,2.0561,0 +3377,0.0000,0.0000,8.9414,8.9417,0 +3378,0.0000,0.0000,1.9964,1.9967,0 +3379,0.0000,0.0000,1.9907,1.9910,0 +3380,0.0000,0.0000,1.9483,1.9486,0 +3381,0.0000,0.0000,2.0251,2.0254,0 +3382,0.0000,0.0000,8.7692,8.7695,0 +3383,0.0000,0.0000,1.9874,1.9877,0 +3384,0.0000,0.0000,2.0011,2.0014,0 +3385,0.0000,0.0000,2.0334,2.0337,0 +3386,0.0000,0.0000,9.1045,9.1048,0 +3387,0.0000,0.0000,2.0080,2.0083,0 +3388,0.0000,0.0000,1.9890,1.9893,0 +3389,0.0000,0.0000,1.9319,1.9322,0 +3390,0.0000,0.0000,2.0156,2.0159,0 +3391,0.0000,0.0000,9.0869,9.0872,0 +3392,0.0000,0.0000,2.0176,2.0179,0 +3393,0.0000,0.0000,1.9958,1.9961,0 +3394,0.0000,0.0000,2.0036,2.0039,0 +3395,0.0000,0.0000,1.9564,1.9567,0 +3396,0.0000,0.0000,8.9918,8.9921,0 +3397,0.0000,0.0000,2.0029,2.0032,0 +3398,0.0000,0.0000,1.9966,1.9969,0 +3399,0.0000,0.0000,1.9491,1.9494,0 +3400,0.0000,0.0000,2.0452,2.0455,0 +3401,0.0000,0.0000,9.0107,9.0110,0 +3402,0.0000,0.0000,2.0081,2.0084,0 +3403,0.0000,0.0000,2.0230,2.0233,0 +3404,0.0000,0.0000,1.9234,1.9237,0 +3405,0.0000,0.0000,2.0585,2.0588,0 +3406,0.0000,0.0000,8.9516,8.9519,0 +3407,0.0000,0.0000,2.0041,2.0044,0 +3408,0.0000,0.0000,2.0009,2.0012,0 +3409,0.0000,0.0000,1.9024,1.9027,0 +3410,0.0000,0.0000,2.0760,2.0762,0 +3411,0.0000,0.0000,8.8539,8.8542,0 +3412,0.0000,0.0000,1.9995,1.9998,0 +3413,0.0000,0.0000,1.9965,1.9968,0 +3414,0.0000,0.0000,1.9555,1.9558,0 +3415,0.0000,0.0000,9.1566,9.1569,0 +3416,0.0000,0.0000,1.9944,1.9947,0 +3417,0.0000,0.0000,2.0001,2.0004,0 +3418,0.0000,0.0000,2.0064,2.0067,0 +3419,0.0000,0.0000,1.9065,1.9068,0 +3420,0.0000,0.0000,9.0433,9.0436,0 +3421,0.0000,0.0000,2.0072,2.0075,0 +3422,0.0000,0.0000,1.9987,1.9990,0 +3423,0.0000,0.0000,2.0361,2.0364,0 +3424,0.0000,0.0000,1.9126,1.9129,0 +3425,0.0000,0.0000,9.1150,9.1153,0 +3426,0.0000,0.0000,2.0060,2.0063,0 +3427,0.0000,0.0000,2.0020,2.0023,0 +3428,0.0000,0.0000,1.9377,1.9380,0 +3429,0.0000,0.0000,1.9448,1.9451,0 +3430,0.0000,0.0000,8.9894,8.9897,0 +3431,0.0000,0.0000,1.9691,1.9694,0 +3432,0.0000,0.0000,2.0392,2.0395,0 +3433,0.0000,0.0000,1.9649,1.9653,0 +3434,0.0000,0.0000,2.0479,2.0482,0 +3435,0.0000,0.0000,8.9467,8.9470,0 +3436,0.0000,0.0000,1.9990,1.9993,0 +3437,0.0000,0.0000,2.0122,2.0125,0 +3438,0.0000,0.0000,1.9229,1.9232,0 +3439,0.0000,0.0000,2.0202,2.0205,0 +3440,0.0000,0.0000,9.0015,9.0018,0 +3441,0.0000,0.0000,1.9090,1.9093,0 +3442,0.0000,0.0000,2.0222,2.0225,0 +3443,0.0000,0.0000,1.9052,1.9055,0 +3444,0.0000,0.0000,2.0413,2.0416,0 +3445,0.0000,0.0000,9.0104,9.0107,0 +3446,0.0000,0.0000,1.9755,1.9758,0 +3447,0.0000,0.0000,2.0752,2.0755,0 +3448,0.0000,0.0000,1.8815,1.8818,0 +3449,0.0000,0.0000,9.1320,9.1323,0 +3450,0.0000,0.0000,1.8815,1.8818,0 +3451,0.0000,0.0000,2.0075,2.0078,0 +3452,0.0000,0.0000,2.0157,2.0160,0 +3453,0.0000,0.0000,1.9577,1.9580,0 +3454,0.0000,0.0000,9.0175,9.0178,0 +3455,0.0000,0.0000,2.0106,2.0109,0 +3456,0.0000,0.0000,2.0086,2.0089,0 +3457,0.0000,0.0000,2.0047,2.0050,0 +3458,0.0000,0.0000,1.9838,1.9841,0 +3459,0.0000,0.0000,9.1198,9.1201,0 +3460,0.0000,0.0000,1.9985,1.9988,0 +3461,0.0000,0.0000,2.0054,2.0057,0 +3462,0.0000,0.0000,1.9974,1.9978,0 +3463,0.0000,0.0000,2.0721,2.0724,0 +3464,0.0000,0.0000,8.9362,8.9365,0 +3465,0.0000,0.0000,1.9260,1.9263,0 +3466,0.0000,0.0000,1.9998,2.0001,0 +3467,0.0000,0.0000,1.9762,1.9765,0 +3468,0.0000,0.0000,2.0028,2.0031,0 +3469,0.0000,0.0000,8.9623,8.9626,0 +3470,0.0000,0.0000,1.9943,1.9946,0 +3471,0.0000,0.0000,1.9860,1.9864,0 +3472,0.0000,0.0000,1.9166,1.9169,0 +3473,0.0000,0.0000,2.0427,2.0430,0 +3474,0.0000,0.0000,9.0036,9.0039,0 +3475,0.0000,0.0000,2.0145,2.0148,0 +3476,0.0000,0.0000,2.0273,2.0276,0 +3477,0.0000,0.0000,1.8682,1.8685,0 +3478,0.0000,0.0000,2.1042,2.1045,0 +3479,0.0000,0.0000,8.9255,8.9258,0 +3480,0.0000,0.0000,1.9883,1.9886,0 +3481,0.0000,0.0000,2.0232,2.0235,0 +3482,0.0000,0.0000,1.9052,1.9055,0 +3483,0.0000,0.0000,8.9670,8.9673,0 +3484,0.0000,0.0000,2.0011,2.0014,0 +3485,0.0000,0.0000,2.0485,2.0488,0 +3486,0.0000,0.0000,1.9726,1.9729,0 +3487,0.0000,0.0000,1.9155,1.9158,0 +3488,0.0000,0.0000,9.2550,9.2553,0 +3489,0.0000,0.0000,1.9987,1.9990,0 +3490,0.0000,0.0000,1.9943,1.9946,0 +3491,0.0000,0.0000,1.9959,1.9962,0 +3492,0.0000,0.0000,1.9926,1.9929,0 +3493,0.0000,0.0000,9.0643,9.0646,0 +3494,0.0000,0.0000,2.0010,2.0013,0 +3495,0.0000,0.0000,2.0038,2.0041,0 +3496,0.0000,0.0000,1.9562,1.9565,0 +3497,0.0000,0.0000,2.0118,2.0121,0 +3498,0.0000,0.0000,8.9112,8.9115,0 +3499,0.0000,0.0000,2.0018,2.0021,0 +3500,0.0000,0.0000,2.0070,2.0074,0 +3501,0.0000,0.0000,1.9731,1.9734,0 +3502,0.0000,0.0000,2.0038,2.0041,0 +3503,0.0000,0.0000,8.9687,8.9690,0 +3504,0.0000,0.0000,1.9900,1.9903,0 +3505,0.0000,0.0000,2.0073,2.0076,0 +3506,0.0000,0.0000,1.9752,1.9755,0 +3507,0.0000,0.0000,2.0461,2.0464,0 +3508,0.0000,0.0000,8.8757,8.8761,0 +3509,0.0000,0.0000,2.0371,2.0374,0 +3510,0.0000,0.0000,1.9808,1.9811,0 +3511,0.0000,0.0000,1.9514,1.9517,0 +3512,0.0000,0.0000,9.0177,9.0180,0 +3513,0.0000,0.0000,1.9939,1.9943,0 +3514,0.0000,0.0000,2.0056,2.0059,0 +3515,0.0000,0.0000,2.0117,2.0120,0 +3516,0.0000,0.0000,1.9575,1.9578,0 +3517,0.0000,0.0000,9.2049,9.2052,0 +3518,0.0000,0.0000,1.9823,1.9826,0 +3519,0.0000,0.0000,2.0159,2.0162,0 +3520,0.0000,0.0000,1.9860,1.9863,0 +3521,0.0000,0.0000,2.0055,2.0058,0 +3522,0.0000,0.0000,9.0444,9.0447,0 +3523,0.0000,0.0000,1.9908,1.9911,0 +3524,0.0000,0.0000,2.0706,2.0709,0 +3525,0.0000,0.0000,1.9340,1.9343,0 +3526,0.0000,0.0000,2.0037,2.0041,0 +3527,0.0000,0.0000,8.9410,8.9413,0 +3528,0.0000,0.0000,1.9414,1.9417,0 +3529,0.0000,0.0000,2.0362,2.0365,0 +3530,0.0000,0.0000,1.9462,1.9465,0 +3531,0.0000,0.0000,2.0908,2.0911,0 +3532,0.0000,0.0000,8.9436,8.9439,0 +3533,0.0000,0.0000,1.9812,1.9815,0 +3534,0.0000,0.0000,2.0325,2.0328,0 +3535,0.0000,0.0000,1.9050,1.9053,0 +3536,0.0000,0.0000,2.0651,2.0654,0 +3537,0.0000,0.0000,8.9330,8.9333,0 +3538,0.0000,0.0000,1.9644,1.9647,0 +3539,0.0000,0.0000,2.0420,2.0423,0 +3540,0.0000,0.0000,1.9133,1.9136,0 +3541,0.0000,0.0000,9.0165,9.0168,0 +3542,0.0000,0.0000,1.9930,1.9934,0 +3543,0.0000,0.0000,1.9920,1.9923,0 +3544,0.0000,0.0000,2.0130,2.0133,0 +3545,0.0000,0.0000,1.9455,1.9458,0 +3546,0.0000,0.0000,9.1494,9.1497,0 +3547,0.0000,0.0000,2.0079,2.0082,0 +3548,0.0000,0.0000,2.0014,2.0017,0 +3549,0.0000,0.0000,1.9906,1.9909,0 +3550,0.0000,0.0000,1.9826,1.9829,0 +3551,0.0000,0.0000,9.0101,9.0104,0 +3552,0.0000,0.0000,2.0021,2.0024,0 +3553,0.0000,0.0000,2.0101,2.0104,0 +3554,0.0000,0.0000,1.9843,1.9846,0 +3555,0.0000,0.0000,2.0082,2.0085,0 +3556,0.0000,0.0000,8.9092,8.9095,0 +3557,0.0000,0.0000,2.1251,2.1254,0 +3558,0.0000,0.0000,1.8717,1.8720,0 +3559,0.0000,0.0000,1.9742,1.9745,0 +3560,0.0000,0.0000,2.0290,2.0293,0 +3561,0.0000,0.0000,8.9602,8.9605,0 +3562,0.0000,0.0000,2.0067,2.0070,0 +3563,0.0000,0.0000,2.0077,2.0080,0 +3564,0.0000,0.0000,1.9623,1.9626,0 +3565,0.0000,0.0000,2.0698,2.0701,0 +3566,0.0000,0.0000,8.9758,8.9761,0 +3567,0.0000,0.0000,2.0055,2.0058,0 +3568,0.0000,0.0000,2.0019,2.0022,0 +3569,0.0000,0.0000,1.9036,1.9039,0 +3570,0.0000,0.0000,8.9831,8.9834,0 +3571,0.0000,0.0000,1.9994,1.9997,0 +3572,0.0000,0.0000,2.0250,2.0253,0 +3573,0.0000,0.0000,1.9799,1.9803,0 +3574,0.0000,0.0000,1.9406,1.9409,0 +3575,0.0000,0.0000,9.0323,9.0326,0 +3576,0.0000,0.0000,2.0099,2.0102,0 +3577,0.0000,0.0000,1.9989,1.9992,0 +3578,0.0000,0.0000,2.0480,2.0484,0 +3579,0.0000,0.0000,1.9383,1.9386,0 +3580,0.0000,0.0000,9.0626,9.0629,0 +3581,0.0000,0.0000,2.0002,2.0005,0 +3582,0.0000,0.0000,1.9957,1.9960,0 +3583,0.0000,0.0000,2.0197,2.0201,0 +3584,0.0000,0.0000,1.9885,1.9888,0 +3585,0.0000,0.0000,9.0063,9.0066,0 +3586,0.0000,0.0000,2.0102,2.0105,0 +3587,0.0000,0.0000,2.0507,2.0510,0 +3588,0.0000,0.0000,1.9290,1.9293,0 +3589,0.0000,0.0000,2.0109,2.0112,0 +3590,0.0000,0.0000,8.8309,8.8312,0 +3591,0.0000,0.0000,1.9952,1.9955,0 +3592,0.0000,0.0000,2.0229,2.0232,0 +3593,0.0000,0.0000,2.0040,2.0043,0 +3594,0.0000,0.0000,2.0764,2.0767,0 +3595,0.0000,0.0000,8.9720,8.9723,0 +3596,0.0000,0.0000,1.9970,1.9973,0 +3597,0.0000,0.0000,2.0398,2.0401,0 +3598,0.0000,0.0000,1.8729,1.8732,0 +3599,0.0000,0.0000,2.0581,2.0584,0 +3600,0.0000,0.0000,8.9745,8.9748,0 +3601,0.0000,0.0000,1.9906,1.9909,0 +3602,0.0000,0.0000,2.0394,2.0397,0 +3603,0.0000,0.0000,1.8398,1.8402,0 +3604,0.0000,0.0000,9.1425,9.1428,0 +3605,0.0000,0.0000,2.0009,2.0012,0 +3606,0.0000,0.0000,2.0118,2.0121,0 +3607,0.0000,0.0000,2.0127,2.0130,0 +3608,0.0000,0.0000,1.9392,1.9395,0 +3609,0.0000,0.0000,9.0916,9.0919,0 +3610,0.0000,0.0000,2.0054,2.0057,0 +3611,0.0000,0.0000,2.0005,2.0008,0 +3612,0.0000,0.0000,1.9948,1.9951,0 +3613,0.0000,0.0000,1.9825,1.9828,0 +3614,0.0000,0.0000,9.1061,9.1064,0 +3615,0.0000,0.0000,1.9968,1.9971,0 +3616,0.0000,0.0000,2.0044,2.0047,0 +3617,0.0000,0.0000,1.9777,1.9780,0 +3618,0.0000,0.0000,2.0128,2.0131,0 +3619,0.0000,0.0000,8.9996,8.9999,0 +3620,0.0000,0.0000,2.0015,2.0018,0 +3621,0.0000,0.0000,2.0090,2.0093,0 +3622,0.0000,0.0000,1.9105,1.9108,0 +3623,0.0000,0.0000,2.0833,2.0836,0 +3624,0.0000,0.0000,8.9734,8.9737,0 +3625,0.0000,0.0000,2.0036,2.0039,0 +3626,0.0000,0.0000,1.9935,1.9938,0 +3627,0.0000,0.0000,1.8715,1.8718,0 +3628,0.0000,0.0000,2.1265,2.1268,0 +3629,0.0000,0.0000,8.9091,8.9094,0 +3630,0.0000,0.0000,2.0088,2.0091,0 +3631,0.0000,0.0000,1.9997,2.0000,0 +3632,0.0000,0.0000,1.9032,1.9035,0 +3633,0.0000,0.0000,9.1462,9.1464,0 +3634,0.0000,0.0000,2.0049,2.0052,0 +3635,0.0000,0.0000,2.0065,2.0068,0 +3636,0.0000,0.0000,2.0095,2.0098,0 +3637,0.0000,0.0000,1.9466,1.9469,0 +3638,0.0000,0.0000,9.0979,9.0982,0 +3639,0.0000,0.0000,2.0015,2.0018,0 +3640,0.0000,0.0000,1.9902,1.9904,0 +3641,0.0000,0.0000,1.9599,1.9602,0 +3642,0.0000,0.0000,2.0137,2.0140,0 +3643,0.0000,0.0000,9.1125,9.1129,0 +3644,0.0000,0.0000,2.0093,2.0096,0 +3645,0.0000,0.0000,1.9961,1.9964,0 +3646,0.0000,0.0000,1.9391,1.9394,0 +3647,0.0000,0.0000,1.9879,1.9882,0 +3648,0.0000,0.0000,9.0769,9.0772,0 +3649,0.0000,0.0000,1.9078,1.9081,0 +3650,0.0000,0.0000,2.0028,2.0031,0 +3651,0.0000,0.0000,1.9563,1.9566,0 +3652,0.0000,0.0000,2.0181,2.0184,0 +3653,0.0000,0.0000,8.9597,8.9600,0 +3654,0.0000,0.0000,1.9978,1.9981,0 +3655,0.0000,0.0000,1.9778,1.9781,0 +3656,0.0000,0.0000,1.9434,1.9437,0 +3657,0.0000,0.0000,2.1969,2.1972,0 +3658,0.0000,0.0000,8.8009,8.8012,0 +3659,0.0000,0.0000,2.0403,2.0406,0 +3660,0.0000,0.0000,1.9649,1.9652,0 +3661,0.0000,0.0000,1.9380,1.9383,0 +3662,0.0000,0.0000,9.0404,9.0407,0 +3663,0.0000,0.0000,2.0086,2.0089,0 +3664,0.0000,0.0000,2.0447,2.0450,0 +3665,0.0000,0.0000,1.9823,1.9826,0 +3666,0.0000,0.0000,1.9772,1.9775,0 +3667,0.0000,0.0000,9.0166,9.0169,0 +3668,0.0000,0.0000,2.0189,2.0192,0 +3669,0.0000,0.0000,2.0466,2.0469,0 +3670,0.0000,0.0000,1.9661,1.9664,0 +3671,0.0000,0.0000,1.9948,1.9951,0 +3672,0.0000,0.0000,9.0743,9.0746,0 +3673,0.0000,0.0000,2.0303,2.0306,0 +3674,0.0000,0.0000,1.9823,1.9826,0 +3675,0.0000,0.0000,1.9618,1.9621,0 +3676,0.0000,0.0000,2.0191,2.0194,0 +3677,0.0000,0.0000,8.9952,8.9955,0 +3678,0.0000,0.0000,2.0113,2.0116,0 +3679,0.0000,0.0000,1.9630,1.9633,0 +3680,0.0000,0.0000,1.9238,1.9241,0 +3681,0.0000,0.0000,2.0452,2.0454,0 +3682,0.0000,0.0000,8.8701,8.8704,0 +3683,0.0000,0.0000,2.0395,2.0398,0 +3684,0.0000,0.0000,1.9621,1.9624,0 +3685,0.0000,0.0000,1.9555,1.9558,0 +3686,0.0000,0.0000,2.0491,2.0494,0 +3687,0.0000,0.0000,8.9347,8.9350,0 +3688,0.0000,0.0000,2.0101,2.0103,0 +3689,0.0000,0.0000,2.0031,2.0034,0 +3690,0.0000,0.0000,1.9379,1.9382,0 +3691,0.0000,0.0000,9.0922,9.0926,0 +3692,0.0000,0.0000,3.3848,3.3851,0 +3693,0.0000,0.0000,0.6362,0.6365,0 +3694,0.0000,0.0000,5.2176,5.2180,0 +3695,0.0000,0.0000,0.5831,0.5835,0 +3696,0.0000,0.0000,6.8617,6.8621,0 +3697,0.0000,0.0000,1.8737,1.8739,0 +3698,0.0000,0.0000,2.0747,2.0750,0 +3699,0.0000,0.0000,2.0050,2.0053,0 +3700,0.0000,0.0000,1.9626,1.9629,0 +3701,0.0000,0.0000,9.0048,9.0051,0 +3702,0.0000,0.0000,2.0379,2.0382,0 +3703,0.0000,0.0000,1.9644,1.9647,0 +3704,0.0000,0.0000,2.0138,2.0141,0 +3705,0.0000,0.0000,1.9745,1.9748,0 +3706,0.0000,0.0000,9.1236,9.1239,0 +3707,0.0000,0.0000,2.0651,2.0654,0 +3708,0.0000,0.0000,1.9844,1.9847,0 +3709,0.0000,0.0000,1.9607,1.9610,0 +3710,0.0000,0.0000,1.9624,1.9627,0 +3711,0.0000,0.0000,8.8412,8.8415,0 +3712,0.0000,0.0000,2.0897,2.0900,0 +3713,0.0000,0.0000,1.9937,1.9940,0 +3714,0.0000,0.0000,1.9302,1.9305,0 +3715,0.0000,0.0000,1.9990,1.9993,0 +3716,0.0000,0.0000,8.9681,8.9684,0 +3717,0.0000,0.0000,2.0105,2.0108,0 +3718,0.0000,0.0000,2.0202,2.0206,0 +3719,0.0000,0.0000,1.9170,1.9173,0 +3720,0.0000,0.0000,2.0789,2.0792,0 +3721,0.0000,0.0000,8.9473,8.9476,0 +3722,0.0000,0.0000,2.0013,2.0016,0 +3723,0.0000,0.0000,2.0131,2.0134,0 +3724,0.0000,0.0000,2.0110,2.0113,0 +3725,0.0000,0.0000,9.0763,9.0766,0 +3726,0.0000,0.0000,1.9993,1.9996,0 +3727,0.0000,0.0000,1.9991,1.9994,0 +3728,0.0000,0.0000,2.0160,2.0163,0 +3729,0.0000,0.0000,1.9121,1.9124,0 +3730,0.0000,0.0000,9.0092,9.0095,0 +3731,0.0000,0.0000,1.9877,1.9880,0 +3732,0.0000,0.0000,2.0050,2.0053,0 +3733,0.0000,0.0000,2.0308,2.0311,0 +3734,0.0000,0.0000,1.9357,1.9360,0 +3735,0.0000,0.0000,9.1630,9.1633,0 +3736,0.0000,0.0000,2.0052,2.0055,0 +3737,0.0000,0.0000,2.0037,2.0040,0 +3738,0.0000,0.0000,1.9445,1.9448,0 +3739,0.0000,0.0000,1.9818,1.9821,0 +3740,0.0000,0.0000,8.7895,8.7898,0 +3741,0.0000,0.0000,2.0829,2.0832,0 +3742,0.0000,0.0000,2.0369,2.0372,0 +3743,0.0000,0.0000,1.9550,1.9553,0 +3744,0.0000,0.0000,2.0202,2.0206,0 +3745,0.0000,0.0000,8.9012,8.9015,0 +3746,0.0000,0.0000,2.0032,2.0035,0 +3747,0.0000,0.0000,1.9889,1.9892,0 +3748,0.0000,0.0000,1.9303,1.9306,0 +3749,0.0000,0.0000,2.0032,2.0035,0 +3750,0.0000,0.0000,8.9686,8.9689,0 +3751,0.0000,0.0000,1.9391,1.9394,0 +3752,0.0000,0.0000,2.0161,2.0164,0 +3753,0.0000,0.0000,1.9574,1.9578,0 +3754,0.0000,0.0000,2.2867,2.2870,0 +3755,0.0000,0.0000,8.8089,8.8092,0 +3756,0.0000,0.0000,1.9745,1.9748,0 +3757,0.0000,0.0000,1.9926,1.9928,0 +3758,0.0000,0.0000,1.9349,1.9352,0 +3759,0.0000,0.0000,2.0739,2.0742,0 +3760,0.0000,0.0000,8.9724,8.9727,0 +3761,0.0000,0.0000,1.8782,1.8785,0 +3762,0.0000,0.0000,2.1404,2.1407,0 +3763,0.0000,0.0000,1.8483,1.8486,0 +3764,0.0000,0.0000,9.1094,9.1097,0 +3765,0.0000,0.0000,2.0063,2.0066,0 +3766,0.0000,0.0000,1.9955,1.9958,0 +3767,0.0000,0.0000,2.0250,2.0254,0 +3768,0.0000,0.0000,1.9003,1.9006,0 +3769,0.0000,0.0000,9.0847,9.0850,0 +3770,0.0000,0.0000,2.0043,2.0046,0 +3771,0.0000,0.0000,2.0760,2.0763,0 +3772,0.0000,0.0000,1.9376,1.9379,0 +3773,0.0000,0.0000,2.0021,2.0024,0 +3774,0.0000,0.0000,9.0908,9.0911,0 +3775,0.0000,0.0000,1.9956,1.9959,0 +3776,0.0000,0.0000,2.0082,2.0085,0 +3777,0.0000,0.0000,1.9811,1.9814,0 +3778,0.0000,0.0000,2.0716,2.0719,0 +3779,0.0000,0.0000,9.0386,9.0389,0 +3780,0.0000,0.0000,1.9931,1.9934,0 +3781,0.0000,0.0000,1.9988,1.9991,0 +3782,0.0000,0.0000,1.9580,1.9583,0 +3783,0.0000,0.0000,2.0104,2.0107,0 +3784,0.0000,0.0000,8.9291,8.9294,0 +3785,0.0000,0.0000,1.9979,1.9982,0 +3786,0.0000,0.0000,2.0110,2.0114,0 +3787,0.0000,0.0000,1.9473,1.9476,0 +3788,0.0000,0.0000,8.9891,8.9894,0 +3789,0.0000,0.0000,2.0526,2.0529,0 +3790,0.0000,0.0000,1.9938,1.9941,0 +3791,0.0000,0.0000,2.0116,2.0119,0 +3792,0.0000,0.0000,1.9048,1.9051,0 +3793,0.0000,0.0000,9.0974,9.0977,0 +3794,0.0000,0.0000,2.0529,2.0532,0 +3795,0.0000,0.0000,1.9901,1.9904,0 +3796,0.0000,0.0000,1.9511,1.9514,0 +3797,0.0000,0.0000,1.9772,1.9775,0 +3798,0.0000,0.0000,9.0393,9.0396,0 +3799,0.0000,0.0000,1.9927,1.9930,0 +3800,0.0000,0.0000,2.0064,2.0067,0 +3801,0.0000,0.0000,2.0220,2.0223,0 +3802,0.0000,0.0000,1.9576,1.9578,0 +3803,0.0000,0.0000,8.8326,8.8329,0 +3804,0.0000,0.0000,2.0645,2.0648,0 +3805,0.0000,0.0000,1.9709,1.9712,0 +3806,0.0000,0.0000,1.9972,1.9975,0 +3807,0.0000,0.0000,2.0004,2.0007,0 +3808,0.0000,0.0000,8.9761,8.9764,0 +3809,0.0000,0.0000,1.9971,1.9974,0 +3810,0.0000,0.0000,2.0034,2.0037,0 +3811,0.0000,0.0000,1.9608,1.9611,0 +3812,0.0000,0.0000,2.0117,2.0120,0 +3813,0.0000,0.0000,8.9050,8.9053,0 +3814,0.0000,0.0000,2.0348,2.0351,0 +3815,0.0000,0.0000,1.9620,1.9623,0 +3816,0.0000,0.0000,1.9597,1.9601,0 +3817,0.0000,0.0000,2.0211,2.0214,0 +3818,0.0000,0.0000,8.9583,8.9586,0 +3819,0.0000,0.0000,1.9974,1.9977,0 +3820,0.0000,0.0000,2.0064,2.0067,0 +3821,0.0000,0.0000,1.9143,1.9146,0 +3822,0.0000,0.0000,2.0438,2.0441,0 +3823,0.0000,0.0000,9.0797,9.0800,0 +3824,0.0000,0.0000,1.9850,1.9853,0 +3825,0.0000,0.0000,2.0049,2.0052,0 +3826,0.0000,0.0000,1.9213,1.9216,0 +3827,0.0000,0.0000,8.9408,8.9411,0 +3828,0.0000,0.0000,2.0655,2.0658,0 +3829,0.0000,0.0000,1.9990,1.9993,0 +3830,0.0000,0.0000,2.0047,2.0050,0 +3831,0.0000,0.0000,2.0423,2.0426,0 +3832,0.0000,0.0000,9.0272,9.0275,0 +3833,0.0000,0.0000,1.9995,1.9998,0 +3834,0.0000,0.0000,1.9992,1.9995,0 +3835,0.0000,0.0000,1.9574,1.9577,0 +3836,0.0000,0.0000,2.0329,2.0332,0 +3837,0.0000,0.0000,9.1170,9.1173,0 +3838,0.0000,0.0000,1.9969,1.9972,0 +3839,0.0000,0.0000,1.9983,1.9986,0 +3840,0.0000,0.0000,1.9199,1.9202,0 +3841,0.0000,0.0000,1.9702,1.9705,0 +3842,0.0000,0.0000,8.8634,8.8637,0 +3843,0.0000,0.0000,1.9958,1.9961,0 +3844,0.0000,0.0000,1.9892,1.9895,0 +3845,0.0000,0.0000,1.9174,1.9177,0 +3846,0.0000,0.0000,2.0608,2.0611,0 +3847,0.0000,0.0000,8.9638,8.9641,0 +3848,0.0000,0.0000,2.0016,2.0019,0 +3849,0.0000,0.0000,1.9990,1.9993,0 +3850,0.0000,0.0000,1.9013,1.9017,0 +3851,0.0000,0.0000,2.0566,2.0569,0 +3852,0.0000,0.0000,9.0595,9.0598,0 +3853,0.0000,0.0000,2.0152,2.0155,0 +3854,0.0000,0.0000,2.0200,2.0203,0 +3855,0.0000,0.0000,1.8950,1.8953,0 +3856,0.0000,0.0000,8.9893,8.9896,0 +3857,0.0000,0.0000,2.0683,2.0686,0 +3858,0.0000,0.0000,1.9536,1.9539,0 +3859,0.0000,0.0000,2.0547,2.0550,0 +3860,0.0000,0.0000,1.9373,1.9376,0 +3861,0.0000,0.0000,9.0786,9.0789,0 +3862,0.0000,0.0000,2.0002,2.0005,0 +3863,0.0000,0.0000,2.0039,2.0042,0 +3864,0.0000,0.0000,1.9508,1.9512,0 +3865,0.0000,0.0000,1.9822,1.9825,0 +3866,0.0000,0.0000,9.1800,9.1803,0 +3867,0.0000,0.0000,2.0147,2.0150,0 +3868,0.0000,0.0000,2.0014,2.0018,0 +3869,0.0000,0.0000,1.9472,1.9475,0 +3870,0.0000,0.0000,2.0017,2.0020,0 +3871,0.0000,0.0000,8.8616,8.8619,0 +3872,0.0000,0.0000,2.0492,2.0495,0 +3873,0.0000,0.0000,2.0070,2.0073,0 +3874,0.0000,0.0000,1.9184,1.9187,0 +3875,0.0000,0.0000,2.0285,2.0288,0 +3876,0.0000,0.0000,8.9632,8.9635,0 +3877,0.0000,0.0000,2.0110,2.0113,0 +3878,0.0000,0.0000,2.0022,2.0025,0 +3879,0.0000,0.0000,1.9237,1.9240,0 +3880,0.0000,0.0000,2.0497,2.0500,0 +3881,0.0000,0.0000,9.0466,9.0469,0 +3882,0.0000,0.0000,2.0020,2.0022,0 +3883,0.0000,0.0000,2.0069,2.0072,0 +3884,0.0000,0.0000,1.9101,1.9104,0 +3885,0.0000,0.0000,9.0800,9.0803,0 +3886,0.0000,0.0000,2.0036,2.0039,0 +3887,0.0000,0.0000,2.0075,2.0078,0 +3888,0.0000,0.0000,1.9750,1.9753,0 +3889,0.0000,0.0000,1.9211,1.9214,0 +3890,0.0000,0.0000,9.0729,9.0732,0 +3891,0.0000,0.0000,2.0058,2.0061,0 +3892,0.0000,0.0000,1.9983,1.9986,0 +3893,0.0000,0.0000,1.9967,1.9970,0 +3894,0.0000,0.0000,1.9816,1.9819,0 +3895,0.0000,0.0000,9.1238,9.1241,0 +3896,0.0000,0.0000,2.0000,2.0003,0 +3897,0.0000,0.0000,1.9783,1.9786,0 +3898,0.0000,0.0000,1.9875,1.9878,0 +3899,0.0000,0.0000,1.9940,1.9943,0 +3900,0.0000,0.0000,8.8954,8.8957,0 +3901,0.0000,0.0000,1.9985,1.9988,0 +3902,0.0000,0.0000,1.9895,1.9898,0 +3903,0.0000,0.0000,1.9699,1.9702,0 +3904,0.0000,0.0000,2.0074,2.0077,0 +3905,0.0000,0.0000,8.9927,8.9931,0 +3906,0.0000,0.0000,1.9898,1.9901,0 +3907,0.0000,0.0000,2.0193,2.0196,0 +3908,0.0000,0.0000,1.9103,1.9106,0 +3909,0.0000,0.0000,2.0536,2.0540,0 +3910,0.0000,0.0000,9.0226,9.0229,0 +3911,0.0000,0.0000,2.0011,2.0014,0 +3912,0.0000,0.0000,2.0135,2.0138,0 +3913,0.0000,0.0000,1.9192,1.9195,0 +3914,0.0000,0.0000,9.0240,9.0243,0 +3915,0.0000,0.0000,1.9940,1.9943,0 +3916,0.0000,0.0000,2.0163,2.0166,0 +3917,0.0000,0.0000,1.9976,1.9979,0 +3918,0.0000,0.0000,1.9239,1.9242,0 +3919,0.0000,0.0000,8.9693,8.9696,0 +3920,0.0000,0.0000,1.9996,1.9999,0 +3921,0.0000,0.0000,2.0120,2.0123,0 +3922,0.0000,0.0000,1.9917,1.9920,0 +3923,0.0000,0.0000,1.9640,1.9643,0 +3924,0.0000,0.0000,9.1648,9.1651,0 +3925,0.0000,0.0000,1.9958,1.9961,0 +3926,0.0000,0.0000,1.9257,1.9260,0 +3927,0.0000,0.0000,2.0343,2.0345,0 +3928,0.0000,0.0000,2.0085,2.0088,0 +3929,0.0000,0.0000,8.9439,8.9442,0 +3930,0.0000,0.0000,2.0072,2.0075,0 +3931,0.0000,0.0000,2.0155,2.0158,0 +3932,0.0000,0.0000,2.0016,2.0019,0 +3933,0.0000,0.0000,2.0528,2.0531,0 +3934,0.0000,0.0000,8.9337,8.9340,0 +3935,0.0000,0.0000,2.0344,2.0347,0 +3936,0.0000,0.0000,2.0114,2.0117,0 +3937,0.0000,0.0000,1.9126,1.9129,0 +3938,0.0000,0.0000,2.0141,2.0144,0 +3939,0.0000,0.0000,9.0186,9.0189,0 +3940,0.0000,0.0000,1.9923,1.9926,0 +3941,0.0000,0.0000,2.0592,2.0595,0 +3942,0.0000,0.0000,1.8581,1.8584,0 +3943,0.0000,0.0000,2.0508,2.0511,0 +3944,0.0000,0.0000,8.9345,8.9348,0 +3945,0.0000,0.0000,2.0001,2.0004,0 +3946,0.0000,0.0000,2.0144,2.0147,0 +3947,0.0000,0.0000,1.8964,1.8967,0 +3948,0.0000,0.0000,8.9723,8.9726,0 +3949,0.0000,0.0000,2.0774,2.0777,0 +3950,0.0000,0.0000,1.9708,1.9711,0 +3951,0.0000,0.0000,2.0196,2.0199,0 +3952,0.0000,0.0000,1.7313,1.7316,0 +3953,0.0000,0.0000,9.1375,9.1377,0 +3954,0.0000,0.0000,2.0185,2.0187,0 +3955,0.0000,0.0000,1.9893,1.9895,0 +3956,0.0000,0.0000,1.9676,1.9678,0 +3957,0.0000,0.0000,2.0146,2.0148,0 +3958,0.0000,0.0000,8.8552,8.8554,0 +3959,0.0000,0.0000,1.9606,1.9608,0 +3960,0.0000,0.0000,2.0097,2.0100,0 +3961,0.0000,0.0000,2.1462,2.1464,0 +3962,0.0000,0.0000,2.0155,2.0158,0 +3963,0.0000,0.0000,8.9792,8.9795,0 +3964,0.0000,0.0000,1.9723,1.9726,0 +3965,0.0000,0.0000,2.0172,2.0175,0 +3966,0.0000,0.0000,1.9660,1.9663,0 +3967,0.0000,0.0000,1.9976,1.9979,0 +3968,0.0000,0.0000,9.0623,9.0626,0 +3969,0.0000,0.0000,2.0082,2.0085,0 +3970,0.0000,0.0000,1.9994,1.9997,0 +3971,0.0000,0.0000,1.9329,1.9332,0 +3972,0.0000,0.0000,2.0344,2.0347,0 +3973,0.0000,0.0000,8.9740,8.9743,0 +3974,0.0000,0.0000,2.0133,2.0136,0 +3975,0.0000,0.0000,2.0074,2.0077,0 +3976,0.0000,0.0000,1.9025,1.9028,0 +3977,0.0000,0.0000,2.0950,2.0953,0 +3978,0.0000,0.0000,8.8272,8.8275,0 +3979,0.0000,0.0000,2.0074,2.0077,0 +3980,0.0000,0.0000,2.0055,2.0058,0 +3981,0.0000,0.0000,1.9588,1.9591,0 +3982,0.0000,0.0000,9.0678,9.0681,0 +3983,0.0000,0.0000,1.9996,1.9999,0 +3984,0.0000,0.0000,2.0564,2.0567,0 +3985,0.0000,0.0000,2.0161,2.0164,0 +3986,0.0000,0.0000,1.8616,1.8619,0 +3987,0.0000,0.0000,9.0039,9.0042,0 +3988,0.0000,0.0000,2.0477,2.0480,0 +3989,0.0000,0.0000,1.9619,1.9622,0 +3990,0.0000,0.0000,1.9806,1.9809,0 +3991,0.0000,0.0000,1.9870,1.9873,0 +3992,0.0000,0.0000,9.0063,9.0065,0 +3993,0.0000,0.0000,2.0372,2.0375,0 +3994,0.0000,0.0000,1.9742,1.9745,0 +3995,0.0000,0.0000,1.9732,1.9735,0 +3996,0.0000,0.0000,2.0046,2.0049,0 +3997,0.0000,0.0000,8.9739,8.9742,0 +3998,0.0000,0.0000,2.0059,2.0062,0 +3999,0.0000,0.0000,2.0034,2.0037,0 +4000,0.0000,0.0000,1.9755,1.9758,0 +4001,0.0000,0.0000,1.9849,1.9852,0 +4002,0.0000,0.0000,8.9073,8.9076,0 +4003,0.0000,0.0000,2.0852,2.0855,0 +4004,0.0000,0.0000,1.9115,1.9118,0 +4005,0.0000,0.0000,1.9540,1.9543,0 +4006,0.0000,0.0000,2.0303,2.0306,0 +4007,0.0000,0.0000,8.9184,8.9187,0 +4008,0.0000,0.0000,1.9788,1.9791,0 +4009,0.0000,0.0000,1.9985,1.9988,0 +4010,0.0000,0.0000,1.9607,1.9610,0 +4011,0.0000,0.0000,2.0206,2.0209,0 +4012,0.0000,0.0000,8.9535,8.9538,0 +4013,0.0000,0.0000,1.9959,1.9962,0 +4014,0.0000,0.0000,2.0025,2.0028,0 +4015,0.0000,0.0000,1.8732,1.8735,0 +4016,0.0000,0.0000,2.1089,2.1092,0 +4017,0.0000,0.0000,8.9130,8.9133,0 +4018,0.0000,0.0000,2.0017,2.0019,0 +4019,0.0000,0.0000,2.0054,2.0057,0 +4020,0.0000,0.0000,1.9361,1.9364,0 +4021,0.0000,0.0000,8.9939,8.9942,0 +4022,0.0000,0.0000,2.0042,2.0045,0 +4023,0.0000,0.0000,1.9920,1.9923,0 +4024,0.0000,0.0000,2.0169,2.0173,0 +4025,0.0000,0.0000,1.9045,1.9048,0 +4026,0.0000,0.0000,9.1107,9.1110,0 +4027,0.0000,0.0000,1.9952,1.9955,0 +4028,0.0000,0.0000,2.0153,2.0156,0 +4029,0.0000,0.0000,1.9490,1.9493,0 +4030,0.0000,0.0000,1.9782,1.9785,0 +4031,0.0000,0.0000,9.0785,9.0788,0 +4032,0.0000,0.0000,1.9973,1.9976,0 +4033,0.0000,0.0000,1.9954,1.9957,0 +4034,0.0000,0.0000,1.9577,1.9580,0 +4035,0.0000,0.0000,2.0009,2.0012,0 +4036,0.0000,0.0000,8.8759,8.8762,0 +4037,0.0000,0.0000,1.9977,1.9980,0 +4038,0.0000,0.0000,1.9966,1.9969,0 +4039,0.0000,0.0000,1.9643,1.9646,0 +4040,0.0000,0.0000,2.1132,2.1135,0 +4041,0.0000,0.0000,8.9710,8.9713,0 +4042,0.0000,0.0000,2.0145,2.0148,0 +4043,0.0000,0.0000,1.9852,1.9855,0 +4044,0.0000,0.0000,1.9040,1.9043,0 +4045,0.0000,0.0000,2.0196,2.0198,0 +4046,0.0000,0.0000,8.9591,8.9594,0 +4047,0.0000,0.0000,1.9694,1.9697,0 +4048,0.0000,0.0000,1.9990,1.9993,0 +4049,0.0000,0.0000,1.9479,1.9482,0 +4050,0.0000,0.0000,1.9428,1.9431,0 +4051,0.0000,0.0000,8.9370,8.9373,0 +4052,0.0000,0.0000,2.0055,2.0058,0 +4053,0.0000,0.0000,2.0100,2.0103,0 +4054,0.0000,0.0000,1.8957,1.8960,0 +4055,0.0000,0.0000,9.0397,9.0400,0 +4056,0.0000,0.0000,2.0103,2.0106,0 +4057,0.0000,0.0000,1.9863,1.9866,0 +4058,0.0000,0.0000,2.0118,2.0121,0 +4059,0.0000,0.0000,1.9031,1.9034,0 +4060,0.0000,0.0000,9.2094,9.2097,0 +4061,0.0000,0.0000,2.0060,2.0063,0 +4062,0.0000,0.0000,2.0132,2.0135,0 +4063,0.0000,0.0000,1.9647,1.9650,0 +4064,0.0000,0.0000,1.9882,1.9885,0 +4065,0.0000,0.0000,9.0620,9.0623,0 +4066,0.0000,0.0000,1.8874,1.8877,0 +4067,0.0000,0.0000,1.9783,1.9786,0 +4068,0.0000,0.0000,1.9913,1.9916,0 +4069,0.0000,0.0000,1.9944,1.9947,0 +4070,0.0000,0.0000,8.9551,8.9554,0 +4071,0.0000,0.0000,1.9875,1.9878,0 +4072,0.0000,0.0000,2.0063,2.0066,0 +4073,0.0000,0.0000,1.9437,1.9440,0 +4074,0.0000,0.0000,2.0091,2.0094,0 +4075,0.0000,0.0000,8.9699,8.9702,0 +4076,0.0000,0.0000,1.9872,1.9875,0 +4077,0.0000,0.0000,2.0072,2.0075,0 +4078,0.0000,0.0000,1.9255,1.9258,0 +4079,0.0000,0.0000,2.0423,2.0427,0 +4080,0.0000,0.0000,8.7483,8.7486,0 +4081,0.0000,0.0000,1.9683,1.9687,0 +4082,0.0000,0.0000,2.0232,2.0235,0 +4083,0.0000,0.0000,1.9576,1.9579,0 +4084,0.0000,0.0000,2.0224,2.0227,0 +4085,0.0000,0.0000,9.1042,9.1045,0 +4086,0.0000,0.0000,1.9988,1.9991,0 +4087,0.0000,0.0000,2.0132,2.0135,0 +4088,0.0000,0.0000,1.8657,1.8660,0 +4089,0.0000,0.0000,9.0464,9.0466,0 +4090,0.0000,0.0000,2.0025,2.0028,0 +4091,0.0000,0.0000,2.0103,2.0106,0 +4092,0.0000,0.0000,2.0096,2.0099,0 +4093,0.0000,0.0000,1.9563,1.9567,0 +4094,0.0000,0.0000,9.0080,9.0083,0 +4095,0.0000,0.0000,2.0471,2.0474,0 +4096,0.0000,0.0000,1.9698,1.9701,0 +4097,0.0000,0.0000,1.9606,1.9609,0 +4098,0.0000,0.0000,1.9547,1.9550,0 +4099,0.0000,0.0000,9.1887,9.1890,0 +4100,0.0000,0.0000,2.0170,2.0173,0 +4101,0.0000,0.0000,2.0050,2.0053,0 +4102,0.0000,0.0000,1.9224,1.9228,0 +4103,0.0000,0.0000,2.0124,2.0127,0 +4104,0.0000,0.0000,8.9478,8.9481,0 +4105,0.0000,0.0000,2.0133,2.0136,0 +4106,0.0000,0.0000,2.0006,2.0009,0 +4107,0.0000,0.0000,1.9809,1.9812,0 +4108,0.0000,0.0000,1.9657,1.9660,0 +4109,0.0000,0.0000,8.8854,8.8857,0 +4110,0.0000,0.0000,1.9917,1.9920,0 +4111,0.0000,0.0000,2.0647,2.0650,0 +4112,0.0000,0.0000,1.9108,1.9111,0 +4113,0.0000,0.0000,2.0811,2.0814,0 +4114,0.0000,0.0000,9.0142,9.0145,0 +4115,0.0000,0.0000,2.0037,2.0040,0 +4116,0.0000,0.0000,2.0063,2.0066,0 +4117,0.0000,0.0000,1.9093,1.9096,0 +4118,0.0000,0.0000,2.0736,2.0739,0 +4119,0.0000,0.0000,8.9516,8.9519,0 +4120,0.0000,0.0000,2.0174,2.0177,0 +4121,0.0000,0.0000,2.0064,2.0067,0 +4122,0.0000,0.0000,1.8990,1.8993,0 +4123,0.0000,0.0000,9.0456,9.0459,0 +4124,0.0000,0.0000,2.0024,2.0027,0 +4125,0.0000,0.0000,2.0181,2.0184,0 +4126,0.0000,0.0000,1.9996,1.9999,0 +4127,0.0000,0.0000,1.9658,1.9661,0 +4128,0.0000,0.0000,8.9362,8.9365,0 +4129,0.0000,0.0000,1.9805,1.9808,0 +4130,0.0000,0.0000,2.0276,2.0279,0 +4131,0.0000,0.0000,2.0237,2.0240,0 +4132,0.0000,0.0000,1.9234,1.9237,0 +4133,0.0000,0.0000,9.1280,9.1283,0 +4134,0.0000,0.0000,2.0046,2.0049,0 +4135,0.0000,0.0000,2.0127,2.0130,0 +4136,0.0000,0.0000,1.9422,1.9425,0 +4137,0.0000,0.0000,2.0010,2.0013,0 +4138,0.0000,0.0000,8.9750,8.9753,0 +4139,0.0000,0.0000,1.9573,1.9576,0 +4140,0.0000,0.0000,1.9859,1.9861,0 +4141,0.0000,0.0000,1.9353,1.9356,0 +4142,0.0000,0.0000,2.0331,2.0334,0 +4143,0.0000,0.0000,8.9903,8.9906,0 +4144,0.0000,0.0000,2.0086,2.0089,0 +4145,0.0000,0.0000,1.9911,1.9914,0 +4146,0.0000,0.0000,1.9246,1.9249,0 +4147,0.0000,0.0000,2.0634,2.0637,0 +4148,0.0000,0.0000,8.9477,8.9480,0 +4149,0.0000,0.0000,1.9976,1.9979,0 +4150,0.0000,0.0000,1.9757,1.9760,0 +4151,0.0000,0.0000,1.9349,1.9352,0 +4152,0.0000,0.0000,2.0615,2.0618,0 +4153,0.0000,0.0000,8.9828,8.9831,0 +4154,0.0000,0.0000,1.9938,1.9941,0 +4155,0.0000,0.0000,2.0021,2.0024,0 +4156,0.0000,0.0000,1.9010,1.9013,0 +4157,0.0000,0.0000,9.0801,9.0804,0 +4158,0.0000,0.0000,2.0990,2.0993,0 +4159,0.0000,0.0000,1.9614,1.9617,0 +4160,0.0000,0.0000,2.0084,2.0087,0 +4161,0.0000,0.0000,1.9315,1.9318,0 +4162,0.0000,0.0000,9.1391,9.1394,0 +4163,0.0000,0.0000,1.9757,1.9760,0 +4164,0.0000,0.0000,2.0065,2.0068,0 +4165,0.0000,0.0000,1.9564,1.9567,0 +4166,0.0000,0.0000,1.9903,1.9906,0 +4167,0.0000,0.0000,9.1162,9.1165,0 +4168,0.0000,0.0000,1.9703,1.9706,0 +4169,0.0000,0.0000,2.0159,2.0162,0 +4170,0.0000,0.0000,1.9649,1.9652,0 +4171,0.0000,0.0000,2.0328,2.0331,0 +4172,0.0000,0.0000,9.0493,9.0497,0 +4173,0.0000,0.0000,1.9990,1.9993,0 +4174,0.0000,0.0000,2.0130,2.0133,0 +4175,0.0000,0.0000,1.9268,1.9271,0 +4176,0.0000,0.0000,2.0596,2.0599,0 +4177,0.0000,0.0000,8.9507,8.9510,0 +4178,0.0000,0.0000,1.9174,1.9177,0 +4179,0.0000,0.0000,2.0908,2.0911,0 +4180,0.0000,0.0000,1.8664,1.8667,0 +4181,0.0000,0.0000,9.1168,9.1171,0 +4182,0.0000,0.0000,1.9942,1.9945,0 +4183,0.0000,0.0000,1.9912,1.9915,0 +4184,0.0000,0.0000,2.0147,2.0150,0 +4185,0.0000,0.0000,1.9111,1.9114,0 +4186,0.0000,0.0000,9.0851,9.0854,0 +4187,0.0000,0.0000,1.9978,1.9981,0 +4188,0.0000,0.0000,2.0250,2.0253,0 +4189,0.0000,0.0000,1.9148,1.9151,0 +4190,0.0000,0.0000,2.0543,2.0546,0 +4191,0.0000,0.0000,9.0207,9.0210,0 +4192,0.0000,0.0000,1.9965,1.9968,0 +4193,0.0000,0.0000,2.0372,2.0375,0 +4194,0.0000,0.0000,1.9659,1.9662,0 +4195,0.0000,0.0000,1.9931,1.9934,0 +4196,0.0000,0.0000,8.8781,8.8784,0 +4197,0.0000,0.0000,2.0077,2.0080,0 +4198,0.0000,0.0000,1.9984,1.9987,0 +4199,0.0000,0.0000,1.9656,1.9659,0 +4200,0.0000,0.0000,2.0026,2.0029,0 +4201,0.0000,0.0000,8.9644,8.9647,0 +4202,0.0000,0.0000,2.0467,2.0470,0 +4203,0.0000,0.0000,1.9601,1.9604,0 +4204,0.0000,0.0000,1.9571,1.9574,0 +4205,0.0000,0.0000,2.0471,2.0474,0 +4206,0.0000,0.0000,8.9389,8.9392,0 +4207,0.0000,0.0000,1.9620,1.9623,0 +4208,0.0000,0.0000,2.0189,2.0192,0 +4209,0.0000,0.0000,1.9383,1.9386,0 +4210,0.0000,0.0000,2.0613,2.0617,0 +4211,0.0000,0.0000,8.9212,8.9215,0 +4212,0.0000,0.0000,2.0052,2.0055,0 +4213,0.0000,0.0000,2.0069,2.0073,0 +4214,0.0000,0.0000,1.9463,1.9466,0 +4215,0.0000,0.0000,9.0506,9.0509,0 +4216,0.0000,0.0000,1.9721,1.9724,0 +4217,0.0000,0.0000,2.0050,2.0053,0 +4218,0.0000,0.0000,2.0410,2.0413,0 +4219,0.0000,0.0000,1.9434,1.9437,0 +4220,0.0000,0.0000,9.1236,9.1239,0 +4221,0.0000,0.0000,1.9706,1.9709,0 +4222,0.0000,0.0000,1.9952,1.9955,0 +4223,0.0000,0.0000,2.0421,2.0424,0 +4224,0.0000,0.0000,1.9430,1.9433,0 +4225,0.0000,0.0000,9.0766,9.0769,0 +4226,0.0000,0.0000,1.9512,1.9515,0 +4227,0.0000,0.0000,2.0069,2.0072,0 +4228,0.0000,0.0000,1.9813,1.9816,0 +4229,0.0000,0.0000,2.0030,2.0033,0 +4230,0.0000,0.0000,8.9421,8.9424,0 +4231,0.0000,0.0000,2.0358,2.0361,0 +4232,0.0000,0.0000,1.9970,1.9973,0 +4233,0.0000,0.0000,1.9357,1.9360,0 +4234,0.0000,0.0000,2.0417,2.0420,0 +4235,0.0000,0.0000,8.8936,8.8939,0 +4236,0.0000,0.0000,1.9957,1.9960,0 +4237,0.0000,0.0000,2.0063,2.0066,0 +4238,0.0000,0.0000,1.9107,1.9110,0 +4239,0.0000,0.0000,2.0323,2.0326,0 +4240,0.0000,0.0000,9.0210,9.0213,0 +4241,0.0000,0.0000,2.0060,2.0063,0 +4242,0.0000,0.0000,1.9970,1.9973,0 +4243,0.0000,0.0000,1.8580,1.8583,0 +4244,0.0000,0.0000,2.0877,2.0880,0 +4245,0.0000,0.0000,8.9265,8.9268,0 +4246,0.0000,0.0000,2.0012,2.0015,0 +4247,0.0000,0.0000,1.9981,1.9984,0 +4248,0.0000,0.0000,1.9512,1.9515,0 +4249,0.0000,0.0000,9.0165,9.0168,0 +4250,0.0000,0.0000,2.0016,2.0019,0 +4251,0.0000,0.0000,1.9895,1.9898,0 +4252,0.0000,0.0000,2.0201,2.0204,0 +4253,0.0000,0.0000,1.9717,1.9720,0 +4254,0.0000,0.0000,9.0920,9.0923,0 +4255,0.0000,0.0000,2.0086,2.0089,0 +4256,0.0000,0.0000,2.0109,2.0112,0 +4257,0.0000,0.0000,1.9835,1.9839,0 +4258,0.0000,0.0000,1.9932,1.9935,0 +4259,0.0000,0.0000,8.9959,8.9962,0 +4260,0.0000,0.0000,2.0149,2.0152,0 +4261,0.0000,0.0000,2.0028,2.0031,0 +4262,0.0000,0.0000,1.9561,1.9564,0 +4263,0.0000,0.0000,1.9990,1.9993,0 +4264,0.0000,0.0000,8.9118,8.9121,0 +4265,0.0000,0.0000,2.0303,2.0306,0 +4266,0.0000,0.0000,1.9717,1.9720,0 +4267,0.0000,0.0000,1.9752,1.9755,0 +4268,0.0000,0.0000,1.9794,1.9797,0 +4269,0.0000,0.0000,8.9886,8.9889,0 +4270,0.0000,0.0000,1.9626,1.9629,0 +4271,0.0000,0.0000,2.0530,2.0533,0 +4272,0.0000,0.0000,1.9153,1.9156,0 +4273,0.0000,0.0000,2.0423,2.0426,0 +4274,0.0000,0.0000,8.9822,8.9825,0 +4275,0.0000,0.0000,1.9615,1.9618,0 +4276,0.0000,0.0000,1.9963,1.9966,0 +4277,0.0000,0.0000,1.9146,1.9149,0 +4278,0.0000,0.0000,2.0549,2.0552,0 +4279,0.0000,0.0000,8.9464,8.9467,0 +4280,0.0000,0.0000,2.0400,2.0403,0 +4281,0.0000,0.0000,2.0211,2.0214,0 +4282,0.0000,0.0000,1.8950,1.8953,0 +4283,0.0000,0.0000,9.0515,9.0518,0 +4284,0.0000,0.0000,2.0018,2.0021,0 +4285,0.0000,0.0000,2.0703,2.0705,0 +4286,0.0000,0.0000,2.0380,2.0383,0 +4287,0.0000,0.0000,1.8899,1.8902,0 +4288,0.0000,0.0000,8.9656,8.9659,0 +4289,0.0000,0.0000,2.0306,2.0310,0 +4290,0.0000,0.0000,2.1042,2.1045,0 +4291,0.0000,0.0000,1.9428,1.9431,0 +4292,0.0000,0.0000,2.0075,2.0078,0 +4293,0.0000,0.0000,9.1660,9.1663,0 +4294,0.0000,0.0000,1.9411,1.9414,0 +4295,0.0000,0.0000,2.0083,2.0086,0 +4296,0.0000,0.0000,1.9556,1.9559,0 +4297,0.0000,0.0000,1.9885,1.9888,0 +4298,0.0000,0.0000,8.9685,8.9688,0 +4299,0.0000,0.0000,1.9884,1.9887,0 +4300,0.0000,0.0000,2.0142,2.0145,0 +4301,0.0000,0.0000,1.9116,1.9119,0 +4302,0.0000,0.0000,2.0605,2.0608,0 +4303,0.0000,0.0000,8.9850,8.9853,0 +4304,0.0000,0.0000,2.0386,2.0389,0 +4305,0.0000,0.0000,1.9742,1.9745,0 +4306,0.0000,0.0000,1.9148,1.9151,0 +4307,0.0000,0.0000,2.0928,2.0931,0 +4308,0.0000,0.0000,8.8549,8.8552,0 +4309,0.0000,0.0000,2.0145,2.0148,0 +4310,0.0000,0.0000,2.0371,2.0374,0 +4311,0.0000,0.0000,1.8632,1.8634,0 +4312,0.0000,0.0000,8.9724,8.9727,0 +4313,0.0000,0.0000,2.0197,2.0200,0 +4314,0.0000,0.0000,2.0299,2.0302,0 +4315,0.0000,0.0000,1.9760,1.9763,0 +4316,0.0000,0.0000,1.9503,1.9507,0 +4317,0.0000,0.0000,9.0240,9.0243,0 +4318,0.0000,0.0000,2.0106,2.0109,0 +4319,0.0000,0.0000,2.0327,2.0330,0 +4320,0.0000,0.0000,1.9890,1.9893,0 +4321,0.0000,0.0000,2.0051,2.0055,0 +4322,0.0000,0.0000,8.9897,8.9900,0 +4323,0.0000,0.0000,2.0443,2.0446,0 +4324,0.0000,0.0000,1.9714,1.9717,0 +4325,0.0000,0.0000,2.0033,2.0036,0 +4326,0.0000,0.0000,1.9959,1.9962,0 +4327,0.0000,0.0000,8.9382,8.9385,0 +4328,0.0000,0.0000,2.0123,2.0126,0 +4329,0.0000,0.0000,1.9653,1.9656,0 +4330,0.0000,0.0000,1.9828,1.9831,0 +4331,0.0000,0.0000,2.0037,2.0040,0 +4332,0.0000,0.0000,8.9758,8.9761,0 +4333,0.0000,0.0000,1.9868,1.9871,0 +4334,0.0000,0.0000,2.0046,2.0049,0 +4335,0.0000,0.0000,1.9693,1.9696,0 +4336,0.0000,0.0000,1.9991,1.9994,0 +4337,0.0000,0.0000,8.8467,8.8470,0 +4338,0.0000,0.0000,2.0075,2.0078,0 +4339,0.0000,0.0000,2.0025,2.0028,0 +4340,0.0000,0.0000,2.0396,2.0399,0 +4341,0.0000,0.0000,1.9333,1.9336,0 +4342,0.0000,0.0000,8.9275,8.9278,0 +4343,0.0000,0.0000,1.9987,1.9990,0 +4344,0.0000,0.0000,2.0016,2.0019,0 +4345,0.0000,0.0000,1.9078,1.9081,0 +4346,0.0000,0.0000,2.0642,2.0645,0 +4347,0.0000,0.0000,9.0006,9.0009,0 +4348,0.0000,0.0000,1.9997,2.0000,0 +4349,0.0000,0.0000,2.0212,2.0215,0 +4350,0.0000,0.0000,1.9161,1.9164,0 +4351,0.0000,0.0000,9.0785,9.0788,0 +4352,0.0000,0.0000,1.9542,1.9545,0 +4353,0.0000,0.0000,2.0064,2.0067,0 +4354,0.0000,0.0000,2.0246,2.0249,0 +4355,0.0000,0.0000,1.9442,1.9445,0 +4356,0.0000,0.0000,9.0847,9.0850,0 +4357,0.0000,0.0000,1.9984,1.9987,0 +4358,0.0000,0.0000,2.0077,2.0080,0 +4359,0.0000,0.0000,1.9623,1.9626,0 +4360,0.0000,0.0000,1.9884,1.9887,0 +4361,0.0000,0.0000,9.1025,9.1028,0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/run_status.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/run_status.txt new file mode 100644 index 0000000..e2b6c83 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/gpu_pattern_uncapped_5k60/run_status.txt @@ -0,0 +1,5 @@ +args=--synthetic --resolution 5120x2880 --fps 60 --duration 15 --fullscreen --gpu-pattern --no-vsync --uncapped +Computer: OOSU-IMAC +User: È«±æµ¿ +Date: 2026-05-15 1:29:10.19 +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/console.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/console.txt new file mode 100644 index 0000000..34d95b3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/console.txt @@ -0,0 +1,13 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=61.749 +frames=3705 +budget_ms=16.667 +p95_total_ms=16.803 +max_total_ms=83.628 +missed_frames=1684 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/receiver_stats.csv b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/receiver_stats.csv new file mode 100644 index 0000000..ad61d6c --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/receiver_stats.csv @@ -0,0 +1,3706 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,14.9110,62.3470,6.3696,83.6277,1 +1,0.0000,0.0000,12.1306,12.1307,0 +2,0.0000,0.0000,16.6930,16.6931,1 +3,0.0000,0.0000,16.5234,16.5234,0 +4,0.0000,0.0000,16.8691,16.8692,1 +5,0.0000,0.0000,16.6171,16.6172,0 +6,0.0000,0.0000,16.6933,16.6933,1 +7,0.0000,0.0000,17.6791,17.6793,1 +8,0.0000,0.0000,16.7055,16.7057,1 +9,0.0000,0.0000,17.7101,17.7103,1 +10,0.0000,0.0000,16.5644,16.5648,0 +11,0.0000,0.0000,15.2255,15.2257,0 +12,0.0000,0.0000,16.7357,16.7359,1 +13,0.0000,0.0000,16.5467,16.5469,0 +14,0.0000,0.0000,16.7008,16.7009,1 +15,0.0000,0.0000,15.9152,15.9154,0 +16,0.0000,0.0000,8.4845,8.4846,0 +17,0.0000,0.0000,8.3347,8.3349,0 +18,0.0000,0.0000,16.6414,16.6415,0 +19,0.0000,0.0000,16.6539,16.6540,0 +20,0.0000,0.0000,16.6600,16.6601,0 +21,0.0000,0.0000,18.6190,18.6192,1 +22,0.0000,0.0000,16.8195,16.8198,1 +23,0.0000,0.0000,16.6024,16.6027,0 +24,0.0000,0.0000,16.6643,16.6646,0 +25,0.0000,0.0000,16.6704,16.6707,1 +26,0.0000,0.0000,16.6593,16.6596,0 +27,0.0000,0.0000,16.6839,16.6842,1 +28,0.0000,0.0000,16.7318,16.7321,1 +29,0.0000,0.0000,16.6596,16.6599,0 +30,0.0000,0.0000,16.6692,16.6695,1 +31,0.0000,0.0000,16.7386,16.7389,1 +32,0.0000,0.0000,16.5561,16.5564,0 +33,0.0000,0.0000,16.7319,16.7322,1 +34,0.0000,0.0000,16.6276,16.6279,0 +35,0.0000,0.0000,16.5903,16.5906,0 +36,0.0000,0.0000,16.7202,16.7205,1 +37,0.0000,0.0000,16.6851,16.6854,1 +38,0.0000,0.0000,16.6308,16.6311,0 +39,0.0000,0.0000,16.6775,16.6778,1 +40,0.0000,0.0000,16.6721,16.6724,1 +41,0.0000,0.0000,16.6701,16.6704,1 +42,0.0000,0.0000,16.7383,16.7386,1 +43,0.0000,0.0000,16.6308,16.6311,0 +44,0.0000,0.0000,16.7736,16.7739,1 +45,0.0000,0.0000,15.7787,15.7790,0 +46,0.0000,0.0000,15.7475,15.7476,0 +47,0.0000,0.0000,18.5004,18.5005,1 +48,0.0000,0.0000,16.6015,16.6019,0 +49,0.0000,0.0000,16.5761,16.5764,0 +50,0.0000,0.0000,16.6718,16.6721,1 +51,0.0000,0.0000,16.6099,16.6102,0 +52,0.0000,0.0000,16.8243,16.8246,1 +53,0.0000,0.0000,16.6093,16.6096,0 +54,0.0000,0.0000,16.7303,16.7306,1 +55,0.0000,0.0000,16.6604,16.6607,0 +56,0.0000,0.0000,16.6063,16.6066,0 +57,0.0000,0.0000,16.7385,16.7388,1 +58,0.0000,0.0000,16.5890,16.5893,0 +59,0.0000,0.0000,16.7271,16.7274,1 +60,0.0000,0.0000,16.6374,16.6377,0 +61,0.0000,0.0000,16.6895,16.6898,1 +62,0.0000,0.0000,16.6587,16.6590,0 +63,0.0000,0.0000,16.6812,16.6816,1 +64,0.0000,0.0000,16.6715,16.6717,1 +65,0.0000,0.0000,16.6483,16.6486,0 +66,0.0000,0.0000,16.6662,16.6665,0 +67,0.0000,0.0000,16.7131,16.7134,1 +68,0.0000,0.0000,16.6324,16.6327,0 +69,0.0000,0.0000,16.6582,16.6585,0 +70,0.0000,0.0000,16.7247,16.7250,1 +71,0.0000,0.0000,16.6805,16.6809,1 +72,0.0000,0.0000,16.6293,16.6296,0 +73,0.0000,0.0000,16.6326,16.6330,0 +74,0.0000,0.0000,16.6760,16.6763,1 +75,0.0000,0.0000,16.6468,16.6471,0 +76,0.0000,0.0000,16.6945,16.6948,1 +77,0.0000,0.0000,15.3732,15.3734,0 +78,0.0000,0.0000,16.5895,16.5896,0 +79,0.0000,0.0000,16.7011,16.7012,1 +80,0.0000,0.0000,16.6552,16.6553,0 +81,0.0000,0.0000,18.0297,18.0299,1 +82,0.0000,0.0000,16.6687,16.6690,1 +83,0.0000,0.0000,16.5929,16.5932,0 +84,0.0000,0.0000,7.7162,7.7165,0 +85,0.0000,0.0000,9.1181,9.1184,0 +86,0.0000,0.0000,16.6215,16.6218,0 +87,0.0000,0.0000,16.6537,16.6540,0 +88,0.0000,0.0000,16.6368,16.6371,0 +89,0.0000,0.0000,16.7345,16.7348,1 +90,0.0000,0.0000,16.5678,16.5681,0 +91,0.0000,0.0000,16.7980,16.7983,1 +92,0.0000,0.0000,16.6935,16.6938,1 +93,0.0000,0.0000,16.5888,16.5891,0 +94,0.0000,0.0000,16.7596,16.7599,1 +95,0.0000,0.0000,16.6434,16.6437,0 +96,0.0000,0.0000,16.5697,16.5700,0 +97,0.0000,0.0000,16.7898,16.7901,1 +98,0.0000,0.0000,16.6511,16.6514,0 +99,0.0000,0.0000,16.3489,16.3492,0 +100,0.0000,0.0000,7.8085,7.8088,0 +101,0.0000,0.0000,9.1736,9.1739,0 +102,0.0000,0.0000,16.6546,16.6549,0 +103,0.0000,0.0000,16.5829,16.5832,0 +104,0.0000,0.0000,16.7311,16.7313,1 +105,0.0000,0.0000,16.6940,16.6943,1 +106,0.0000,0.0000,16.7141,16.7144,1 +107,0.0000,0.0000,16.5989,16.5992,0 +108,0.0000,0.0000,16.6413,16.6416,0 +109,0.0000,0.0000,16.6369,16.6372,0 +110,0.0000,0.0000,16.7752,16.7755,1 +111,0.0000,0.0000,16.6880,16.6883,1 +112,0.0000,0.0000,16.6329,16.6332,0 +113,0.0000,0.0000,16.6594,16.6597,0 +114,0.0000,0.0000,16.5873,16.5876,0 +115,0.0000,0.0000,16.2725,16.2728,0 +116,0.0000,0.0000,7.9609,7.9612,0 +117,0.0000,0.0000,9.2022,9.2025,0 +118,0.0000,0.0000,16.6229,16.6232,0 +119,0.0000,0.0000,16.6989,16.6992,1 +120,0.0000,0.0000,16.6422,16.6425,0 +121,0.0000,0.0000,16.6502,16.6505,0 +122,0.0000,0.0000,16.6901,16.6904,1 +123,0.0000,0.0000,16.6952,16.6955,1 +124,0.0000,0.0000,16.7113,16.7116,1 +125,0.0000,0.0000,16.6711,16.6714,1 +126,0.0000,0.0000,16.6180,16.6183,0 +127,0.0000,0.0000,16.7762,16.7765,1 +128,0.0000,0.0000,16.6889,16.6893,1 +129,0.0000,0.0000,16.6018,16.6021,0 +130,0.0000,0.0000,16.7050,16.7053,1 +131,0.0000,0.0000,16.5532,16.5535,0 +132,0.0000,0.0000,16.7291,16.7294,1 +133,0.0000,0.0000,16.7165,16.7168,1 +134,0.0000,0.0000,16.6430,16.6433,0 +135,0.0000,0.0000,16.9810,16.9814,1 +136,0.0000,0.0000,16.4723,16.4726,0 +137,0.0000,0.0000,16.5208,16.5211,0 +138,0.0000,0.0000,16.8259,16.8262,1 +139,0.0000,0.0000,16.5606,16.5609,0 +140,0.0000,0.0000,16.6107,16.6111,0 +141,0.0000,0.0000,16.7569,16.7572,1 +142,0.0000,0.0000,16.6904,16.6907,1 +143,0.0000,0.0000,16.7035,16.7038,1 +144,0.0000,0.0000,16.5605,16.5608,0 +145,0.0000,0.0000,16.7463,16.7465,1 +146,0.0000,0.0000,16.5858,16.5861,0 +147,0.0000,0.0000,16.6148,16.6151,0 +148,0.0000,0.0000,16.7570,16.7573,1 +149,0.0000,0.0000,16.5793,16.5796,0 +150,0.0000,0.0000,16.7410,16.7413,1 +151,0.0000,0.0000,16.7003,16.7006,1 +152,0.0000,0.0000,16.5924,16.5927,0 +153,0.0000,0.0000,16.6933,16.6936,1 +154,0.0000,0.0000,16.6638,16.6642,0 +155,0.0000,0.0000,16.6462,16.6465,0 +156,0.0000,0.0000,16.6716,16.6719,1 +157,0.0000,0.0000,16.6720,16.6723,1 +158,0.0000,0.0000,16.7125,16.7128,1 +159,0.0000,0.0000,16.6993,16.6996,1 +160,0.0000,0.0000,16.6035,16.6038,0 +161,0.0000,0.0000,16.7661,16.7664,1 +162,0.0000,0.0000,16.5973,16.5976,0 +163,0.0000,0.0000,16.6893,16.6896,1 +164,0.0000,0.0000,16.7468,16.7471,1 +165,0.0000,0.0000,16.5720,16.5723,0 +166,0.0000,0.0000,16.7202,16.7205,1 +167,0.0000,0.0000,16.7142,16.7145,1 +168,0.0000,0.0000,16.6970,16.6973,1 +169,0.0000,0.0000,16.5533,16.5536,0 +170,0.0000,0.0000,16.6612,16.6615,0 +171,0.0000,0.0000,16.6666,16.6669,1 +172,0.0000,0.0000,16.6994,16.6998,1 +173,0.0000,0.0000,16.6365,16.6368,0 +174,0.0000,0.0000,16.7165,16.7168,1 +175,0.0000,0.0000,16.6610,16.6613,0 +176,0.0000,0.0000,16.7311,16.7314,1 +177,0.0000,0.0000,16.6036,16.6039,0 +178,0.0000,0.0000,16.8280,16.8283,1 +179,0.0000,0.0000,16.6348,16.6351,0 +180,0.0000,0.0000,16.5161,16.5164,0 +181,0.0000,0.0000,16.7079,16.7083,1 +182,0.0000,0.0000,16.7355,16.7358,1 +183,0.0000,0.0000,16.5598,16.5601,0 +184,0.0000,0.0000,15.2895,15.2898,0 +185,0.0000,0.0000,16.7225,16.7226,1 +186,0.0000,0.0000,16.6581,16.6582,0 +187,0.0000,0.0000,16.7819,16.7820,1 +188,0.0000,0.0000,18.2673,18.2675,1 +189,0.0000,0.0000,16.4718,16.4721,0 +190,0.0000,0.0000,16.6190,16.6193,0 +191,0.0000,0.0000,16.5511,16.5514,0 +192,0.0000,0.0000,16.6973,16.6976,1 +193,0.0000,0.0000,16.7269,16.7272,1 +194,0.0000,0.0000,16.6135,16.6138,0 +195,0.0000,0.0000,16.6574,16.6577,0 +196,0.0000,0.0000,16.7278,16.7281,1 +197,0.0000,0.0000,16.7411,16.7414,1 +198,0.0000,0.0000,16.7198,16.7201,1 +199,0.0000,0.0000,16.6423,16.6427,0 +200,0.0000,0.0000,16.6734,16.6737,1 +201,0.0000,0.0000,16.5467,16.5470,0 +202,0.0000,0.0000,16.7310,16.7313,1 +203,0.0000,0.0000,16.6870,16.6873,1 +204,0.0000,0.0000,16.6266,16.6269,0 +205,0.0000,0.0000,16.6380,16.6383,0 +206,0.0000,0.0000,16.6845,16.6848,1 +207,0.0000,0.0000,16.6469,16.6472,0 +208,0.0000,0.0000,16.7432,16.7435,1 +209,0.0000,0.0000,16.6624,16.6627,0 +210,0.0000,0.0000,16.5442,16.5446,0 +211,0.0000,0.0000,16.7343,16.7346,1 +212,0.0000,0.0000,16.6627,16.6630,0 +213,0.0000,0.0000,16.6802,16.6805,1 +214,0.0000,0.0000,16.6452,16.6455,0 +215,0.0000,0.0000,16.6952,16.6955,1 +216,0.0000,0.0000,16.6634,16.6637,0 +217,0.0000,0.0000,16.7111,16.7114,1 +218,0.0000,0.0000,16.7464,16.7467,1 +219,0.0000,0.0000,16.4857,16.4860,0 +220,0.0000,0.0000,16.6626,16.6629,0 +221,0.0000,0.0000,16.7826,16.7829,1 +222,0.0000,0.0000,16.6807,16.6810,1 +223,0.0000,0.0000,16.6317,16.6320,0 +224,0.0000,0.0000,16.6949,16.6952,1 +225,0.0000,0.0000,16.7899,16.7902,1 +226,0.0000,0.0000,16.9239,16.9242,1 +227,0.0000,0.0000,16.3812,16.3815,0 +228,0.0000,0.0000,16.6009,16.6012,0 +229,0.0000,0.0000,16.6530,16.6533,0 +230,0.0000,0.0000,16.7189,16.7192,1 +231,0.0000,0.0000,16.5804,16.5807,0 +232,0.0000,0.0000,16.7238,16.7241,1 +233,0.0000,0.0000,16.7149,16.7152,1 +234,0.0000,0.0000,16.6364,16.6368,0 +235,0.0000,0.0000,16.6354,16.6357,0 +236,0.0000,0.0000,16.7883,16.7886,1 +237,0.0000,0.0000,16.6574,16.6578,0 +238,0.0000,0.0000,16.5640,16.5642,0 +239,0.0000,0.0000,16.4529,16.4532,0 +240,0.0000,0.0000,7.5174,7.5177,0 +241,0.0000,0.0000,9.5366,9.5369,0 +242,0.0000,0.0000,16.5442,16.5445,0 +243,0.0000,0.0000,16.7468,16.7471,1 +244,0.0000,0.0000,16.6337,16.6341,0 +245,0.0000,0.0000,16.5951,16.5954,0 +246,0.0000,0.0000,16.7305,16.7308,1 +247,0.0000,0.0000,16.6428,16.6431,0 +248,0.0000,0.0000,16.4852,16.4855,0 +249,0.0000,0.0000,7.7931,7.7934,0 +250,0.0000,0.0000,9.0721,9.0724,0 +251,0.0000,0.0000,16.3596,16.3599,0 +252,0.0000,0.0000,7.8564,7.8567,0 +253,0.0000,0.0000,9.1396,9.1399,0 +254,0.0000,0.0000,16.6505,16.6508,0 +255,0.0000,0.0000,16.6643,16.6646,0 +256,0.0000,0.0000,16.7643,16.7646,1 +257,0.0000,0.0000,16.6016,16.6019,0 +258,0.0000,0.0000,16.6032,16.6035,0 +259,0.0000,0.0000,16.6897,16.6900,1 +260,0.0000,0.0000,16.6534,16.6537,0 +261,0.0000,0.0000,16.6913,16.6916,1 +262,0.0000,0.0000,16.6437,16.6440,0 +263,0.0000,0.0000,16.7317,16.7320,1 +264,0.0000,0.0000,16.6692,16.6695,1 +265,0.0000,0.0000,16.6177,16.6180,0 +266,0.0000,0.0000,16.6560,16.6563,0 +267,0.0000,0.0000,16.6712,16.6715,1 +268,0.0000,0.0000,16.6997,16.7001,1 +269,0.0000,0.0000,16.7213,16.7216,1 +270,0.0000,0.0000,16.7435,16.7438,1 +271,0.0000,0.0000,16.4763,16.4766,0 +272,0.0000,0.0000,16.7172,16.7175,1 +273,0.0000,0.0000,16.7669,16.7672,1 +274,0.0000,0.0000,16.5881,16.5884,0 +275,0.0000,0.0000,16.7855,16.7858,1 +276,0.0000,0.0000,16.6585,16.6588,0 +277,0.0000,0.0000,16.5750,16.5753,0 +278,0.0000,0.0000,16.7332,16.7335,1 +279,0.0000,0.0000,16.5258,16.5261,0 +280,0.0000,0.0000,16.7477,16.7480,1 +281,0.0000,0.0000,16.7290,16.7293,1 +282,0.0000,0.0000,16.7191,16.7194,1 +283,0.0000,0.0000,16.6240,16.6243,0 +284,0.0000,0.0000,16.6661,16.6664,0 +285,0.0000,0.0000,16.6387,16.6390,0 +286,0.0000,0.0000,16.7133,16.7136,1 +287,0.0000,0.0000,16.6899,16.6902,1 +288,0.0000,0.0000,16.7056,16.7059,1 +289,0.0000,0.0000,16.5651,16.5654,0 +290,0.0000,0.0000,16.6463,16.6466,0 +291,0.0000,0.0000,16.7581,16.7584,1 +292,0.0000,0.0000,16.6202,16.6205,0 +293,0.0000,0.0000,16.6994,16.6998,1 +294,0.0000,0.0000,16.6526,16.6529,0 +295,0.0000,0.0000,16.6340,16.6343,0 +296,0.0000,0.0000,16.6516,16.6519,0 +297,0.0000,0.0000,16.7144,16.7147,1 +298,0.0000,0.0000,16.7025,16.7028,1 +299,0.0000,0.0000,16.8831,16.8834,1 +300,0.0000,0.0000,15.2742,15.2745,0 +301,0.0000,0.0000,15.9969,15.9971,0 +302,0.0000,0.0000,16.6117,16.6118,0 +303,0.0000,0.0000,17.9668,17.9670,1 +304,0.0000,0.0000,7.8862,7.8864,0 +305,0.0000,0.0000,9.3651,9.3654,0 +306,0.0000,0.0000,16.6932,16.6935,1 +307,0.0000,0.0000,16.5896,16.5899,0 +308,0.0000,0.0000,16.7797,16.7800,1 +309,0.0000,0.0000,16.5863,16.5867,0 +310,0.0000,0.0000,16.6425,16.6428,0 +311,0.0000,0.0000,16.6625,16.6628,0 +312,0.0000,0.0000,16.9842,16.9845,1 +313,0.0000,0.0000,16.7107,16.7110,1 +314,0.0000,0.0000,16.4492,16.4495,0 +315,0.0000,0.0000,16.5826,16.5829,0 +316,0.0000,0.0000,16.7245,16.7248,1 +317,0.0000,0.0000,16.7349,16.7352,1 +318,0.0000,0.0000,16.6977,16.6980,1 +319,0.0000,0.0000,16.7327,16.7330,1 +320,0.0000,0.0000,16.1647,16.1649,0 +321,0.0000,0.0000,15.8156,15.8158,0 +322,0.0000,0.0000,16.6817,16.6819,1 +323,0.0000,0.0000,16.6114,16.6116,0 +324,0.0000,0.0000,17.7319,17.7321,1 +325,0.0000,0.0000,16.8849,16.8852,1 +326,0.0000,0.0000,16.6945,16.6948,1 +327,0.0000,0.0000,16.5769,16.5772,0 +328,0.0000,0.0000,16.6638,16.6641,0 +329,0.0000,0.0000,16.7091,16.7094,1 +330,0.0000,0.0000,16.7155,16.7158,1 +331,0.0000,0.0000,16.5931,16.5934,0 +332,0.0000,0.0000,16.6806,16.6809,1 +333,0.0000,0.0000,16.6732,16.6735,1 +334,0.0000,0.0000,16.3829,16.3832,0 +335,0.0000,0.0000,7.9619,7.9622,0 +336,0.0000,0.0000,9.1009,9.1012,0 +337,0.0000,0.0000,16.5717,16.5720,0 +338,0.0000,0.0000,16.6567,16.6570,0 +339,0.0000,0.0000,16.6923,16.6926,1 +340,0.0000,0.0000,16.6527,16.6530,0 +341,0.0000,0.0000,16.7752,16.7755,1 +342,0.0000,0.0000,16.6444,16.6447,0 +343,0.0000,0.0000,16.6065,16.6068,0 +344,0.0000,0.0000,16.7225,16.7228,1 +345,0.0000,0.0000,16.5642,16.5645,0 +346,0.0000,0.0000,16.7046,16.7049,1 +347,0.0000,0.0000,16.6341,16.6344,0 +348,0.0000,0.0000,16.6681,16.6684,1 +349,0.0000,0.0000,16.7340,16.7343,1 +350,0.0000,0.0000,16.7437,16.7440,1 +351,0.0000,0.0000,16.6236,16.6239,0 +352,0.0000,0.0000,16.6310,16.6313,0 +353,0.0000,0.0000,16.7384,16.7387,1 +354,0.0000,0.0000,16.5617,16.5620,0 +355,0.0000,0.0000,16.7347,16.7350,1 +356,0.0000,0.0000,16.6239,16.6242,0 +357,0.0000,0.0000,16.6644,16.6647,0 +358,0.0000,0.0000,16.6830,16.6833,1 +359,0.0000,0.0000,16.6629,16.6632,0 +360,0.0000,0.0000,16.6416,16.6419,0 +361,0.0000,0.0000,16.8015,16.8018,1 +362,0.0000,0.0000,16.5801,16.5805,0 +363,0.0000,0.0000,16.6728,16.6731,1 +364,0.0000,0.0000,16.6866,16.6869,1 +365,0.0000,0.0000,16.7008,16.7011,1 +366,0.0000,0.0000,16.6531,16.6534,0 +367,0.0000,0.0000,16.6873,16.6876,1 +368,0.0000,0.0000,16.6346,16.6349,0 +369,0.0000,0.0000,16.7261,16.7264,1 +370,0.0000,0.0000,16.6436,16.6439,0 +371,0.0000,0.0000,15.2646,15.2649,0 +372,0.0000,0.0000,16.6646,16.6648,0 +373,0.0000,0.0000,17.7545,17.7547,1 +374,0.0000,0.0000,7.9778,7.9781,0 +375,0.0000,0.0000,9.2372,9.2376,0 +376,0.0000,0.0000,16.5617,16.5620,0 +377,0.0000,0.0000,16.6817,16.6820,1 +378,0.0000,0.0000,16.5265,16.5268,0 +379,0.0000,0.0000,16.7404,16.7407,1 +380,0.0000,0.0000,16.5393,16.5396,0 +381,0.0000,0.0000,16.7587,16.7590,1 +382,0.0000,0.0000,16.7174,16.7177,1 +383,0.0000,0.0000,16.8150,16.8153,1 +384,0.0000,0.0000,16.4658,16.4661,0 +385,0.0000,0.0000,16.4587,16.4590,0 +386,0.0000,0.0000,7.6526,7.6529,0 +387,0.0000,0.0000,9.3482,9.3485,0 +388,0.0000,0.0000,16.1610,16.1612,0 +389,0.0000,0.0000,15.6690,15.6692,0 +390,0.0000,0.0000,16.6508,16.6509,0 +391,0.0000,0.0000,16.6488,16.6490,0 +392,0.0000,0.0000,18.0703,18.0705,1 +393,0.0000,0.0000,16.6599,16.6602,0 +394,0.0000,0.0000,16.7216,16.7219,1 +395,0.0000,0.0000,16.6500,16.6503,0 +396,0.0000,0.0000,16.7129,16.7132,1 +397,0.0000,0.0000,16.6159,16.6162,0 +398,0.0000,0.0000,16.7632,16.7635,1 +399,0.0000,0.0000,16.6507,16.6510,0 +400,0.0000,0.0000,16.6697,16.6700,1 +401,0.0000,0.0000,16.6786,16.6789,1 +402,0.0000,0.0000,16.6230,16.6234,0 +403,0.0000,0.0000,16.6913,16.6916,1 +404,0.0000,0.0000,16.7068,16.7071,1 +405,0.0000,0.0000,16.6940,16.6943,1 +406,0.0000,0.0000,16.5744,16.5747,0 +407,0.0000,0.0000,16.7682,16.7685,1 +408,0.0000,0.0000,16.6706,16.6709,1 +409,0.0000,0.0000,16.5924,16.5927,0 +410,0.0000,0.0000,16.6508,16.6511,0 +411,0.0000,0.0000,16.7233,16.7236,1 +412,0.0000,0.0000,16.5816,16.5819,0 +413,0.0000,0.0000,16.7934,16.7938,1 +414,0.0000,0.0000,16.6753,16.6756,1 +415,0.0000,0.0000,16.6275,16.6278,0 +416,0.0000,0.0000,16.6989,16.6993,1 +417,0.0000,0.0000,16.6200,16.6203,0 +418,0.0000,0.0000,16.5748,16.5751,0 +419,0.0000,0.0000,16.7217,16.7220,1 +420,0.0000,0.0000,16.6550,16.6553,0 +421,0.0000,0.0000,16.7006,16.7009,1 +422,0.0000,0.0000,16.4217,16.4221,0 +423,0.0000,0.0000,7.6976,7.6979,0 +424,0.0000,0.0000,9.2458,9.2461,0 +425,0.0000,0.0000,16.6428,16.6431,0 +426,0.0000,0.0000,16.7020,16.7023,1 +427,0.0000,0.0000,16.6406,16.6409,0 +428,0.0000,0.0000,16.6342,16.6345,0 +429,0.0000,0.0000,16.7080,16.7083,1 +430,0.0000,0.0000,16.6377,16.6381,0 +431,0.0000,0.0000,16.7362,16.7365,1 +432,0.0000,0.0000,16.6474,16.6477,0 +433,0.0000,0.0000,16.7622,16.7625,1 +434,0.0000,0.0000,16.5299,16.5302,0 +435,0.0000,0.0000,16.7243,16.7246,1 +436,0.0000,0.0000,16.7469,16.7473,1 +437,0.0000,0.0000,16.5687,16.5690,0 +438,0.0000,0.0000,16.2964,16.2967,0 +439,0.0000,0.0000,8.0826,8.0829,0 +440,0.0000,0.0000,9.0172,9.0175,0 +441,0.0000,0.0000,16.6318,16.6321,0 +442,0.0000,0.0000,16.7506,16.7509,1 +443,0.0000,0.0000,16.6483,16.6486,0 +444,0.0000,0.0000,16.6190,16.6193,0 +445,0.0000,0.0000,16.5961,16.5964,0 +446,0.0000,0.0000,16.7695,16.7698,1 +447,0.0000,0.0000,16.6570,16.6573,0 +448,0.0000,0.0000,16.7399,16.7403,1 +449,0.0000,0.0000,16.5729,16.5732,0 +450,0.0000,0.0000,16.6529,16.6532,0 +451,0.0000,0.0000,16.6872,16.6875,1 +452,0.0000,0.0000,16.6735,16.6738,1 +453,0.0000,0.0000,16.8513,16.8516,1 +454,0.0000,0.0000,16.5352,16.5355,0 +455,0.0000,0.0000,16.6769,16.6773,1 +456,0.0000,0.0000,16.6878,16.6881,1 +457,0.0000,0.0000,16.5610,16.5613,0 +458,0.0000,0.0000,16.7270,16.7273,1 +459,0.0000,0.0000,16.6551,16.6554,0 +460,0.0000,0.0000,16.6808,16.6811,1 +461,0.0000,0.0000,16.6395,16.6398,0 +462,0.0000,0.0000,16.6835,16.6838,1 +463,0.0000,0.0000,16.7061,16.7064,1 +464,0.0000,0.0000,16.7155,16.7158,1 +465,0.0000,0.0000,16.6039,16.6042,0 +466,0.0000,0.0000,16.6819,16.6822,1 +467,0.0000,0.0000,16.7161,16.7164,1 +468,0.0000,0.0000,16.6341,16.6344,0 +469,0.0000,0.0000,16.6818,16.6821,1 +470,0.0000,0.0000,16.7862,16.7865,1 +471,0.0000,0.0000,16.5256,16.5259,0 +472,0.0000,0.0000,16.7235,16.7238,1 +473,0.0000,0.0000,16.6362,16.6365,0 +474,0.0000,0.0000,16.7760,16.7763,1 +475,0.0000,0.0000,16.5938,16.5941,0 +476,0.0000,0.0000,16.7151,16.7154,1 +477,0.0000,0.0000,16.5771,16.5774,0 +478,0.0000,0.0000,16.6491,16.6494,0 +479,0.0000,0.0000,16.6778,16.6781,1 +480,0.0000,0.0000,16.7251,16.7254,1 +481,0.0000,0.0000,16.6278,16.6281,0 +482,0.0000,0.0000,16.6605,16.6608,0 +483,0.0000,0.0000,16.6842,16.6845,1 +484,0.0000,0.0000,16.6848,16.6851,1 +485,0.0000,0.0000,16.7245,16.7248,1 +486,0.0000,0.0000,16.6765,16.6768,1 +487,0.0000,0.0000,16.6207,16.6210,0 +488,0.0000,0.0000,16.7328,16.7331,1 +489,0.0000,0.0000,16.6470,16.6473,0 +490,0.0000,0.0000,16.5904,16.5907,0 +491,0.0000,0.0000,16.6798,16.6801,1 +492,0.0000,0.0000,16.6512,16.6515,0 +493,0.0000,0.0000,16.6952,16.6955,1 +494,0.0000,0.0000,16.6700,16.6703,1 +495,0.0000,0.0000,16.8610,16.8613,1 +496,0.0000,0.0000,16.5265,16.5268,0 +497,0.0000,0.0000,16.7665,16.7668,1 +498,0.0000,0.0000,16.4893,16.4896,0 +499,0.0000,0.0000,16.7120,16.7123,1 +500,0.0000,0.0000,16.6564,16.6567,0 +501,0.0000,0.0000,16.7545,16.7548,1 +502,0.0000,0.0000,16.6099,16.6102,0 +503,0.0000,0.0000,16.7344,16.7347,1 +504,0.0000,0.0000,16.6637,16.6640,0 +505,0.0000,0.0000,16.6417,16.6420,0 +506,0.0000,0.0000,16.6408,16.6411,0 +507,0.0000,0.0000,16.7232,16.7235,1 +508,0.0000,0.0000,16.6876,16.6879,1 +509,0.0000,0.0000,16.6538,16.6540,0 +510,0.0000,0.0000,16.6985,16.6988,1 +511,0.0000,0.0000,16.6610,16.6613,0 +512,0.0000,0.0000,16.6151,16.6154,0 +513,0.0000,0.0000,16.2961,16.2964,0 +514,0.0000,0.0000,7.5871,7.5874,0 +515,0.0000,0.0000,9.5236,9.5239,0 +516,0.0000,0.0000,16.6011,16.6014,0 +517,0.0000,0.0000,16.6674,16.6677,1 +518,0.0000,0.0000,16.6568,16.6572,0 +519,0.0000,0.0000,16.6848,16.6851,1 +520,0.0000,0.0000,16.6451,16.6454,0 +521,0.0000,0.0000,16.7280,16.7284,1 +522,0.0000,0.0000,16.5966,16.5969,0 +523,0.0000,0.0000,16.3798,16.3801,0 +524,0.0000,0.0000,7.7446,7.7449,0 +525,0.0000,0.0000,9.3219,9.3222,0 +526,0.0000,0.0000,16.6144,16.6147,0 +527,0.0000,0.0000,16.6507,16.6510,0 +528,0.0000,0.0000,16.6734,16.6737,1 +529,0.0000,0.0000,16.6971,16.6974,1 +530,0.0000,0.0000,16.6448,16.6451,0 +531,0.0000,0.0000,16.6543,16.6546,0 +532,0.0000,0.0000,16.6518,16.6521,0 +533,0.0000,0.0000,16.6981,16.6984,1 +534,0.0000,0.0000,16.6603,16.6606,0 +535,0.0000,0.0000,16.6447,16.6450,0 +536,0.0000,0.0000,16.7702,16.7705,1 +537,0.0000,0.0000,16.5955,16.5958,0 +538,0.0000,0.0000,16.7372,16.7375,1 +539,0.0000,0.0000,16.7230,16.7233,1 +540,0.0000,0.0000,16.3207,16.3680,0 +541,0.0000,0.0000,7.8727,7.8730,0 +542,0.0000,0.0000,9.0670,9.0673,0 +543,0.0000,0.0000,16.6972,16.6975,1 +544,0.0000,0.0000,16.5695,16.5698,0 +545,0.0000,0.0000,16.6880,16.6883,1 +546,0.0000,0.0000,16.6179,16.6182,0 +547,0.0000,0.0000,16.7879,16.7882,1 +548,0.0000,0.0000,16.5886,16.5890,0 +549,0.0000,0.0000,16.7478,16.7482,1 +550,0.0000,0.0000,16.6405,16.6408,0 +551,0.0000,0.0000,16.6295,16.6298,0 +552,0.0000,0.0000,16.6711,16.6714,1 +553,0.0000,0.0000,16.6705,16.6708,1 +554,0.0000,0.0000,16.6978,16.6981,1 +555,0.0000,0.0000,16.6365,16.6368,0 +556,0.0000,0.0000,16.6665,16.6668,1 +557,0.0000,0.0000,16.6982,16.6985,1 +558,0.0000,0.0000,16.6636,16.6639,0 +559,0.0000,0.0000,16.6595,16.6598,0 +560,0.0000,0.0000,16.9482,16.9485,1 +561,0.0000,0.0000,16.5200,16.5203,0 +562,0.0000,0.0000,16.6259,16.6262,0 +563,0.0000,0.0000,16.6100,16.6103,0 +564,0.0000,0.0000,16.7231,16.7234,1 +565,0.0000,0.0000,16.7072,16.7075,1 +566,0.0000,0.0000,16.5893,16.5896,0 +567,0.0000,0.0000,16.7249,16.7252,1 +568,0.0000,0.0000,16.6374,16.6377,0 +569,0.0000,0.0000,16.5332,16.5335,0 +570,0.0000,0.0000,16.7546,16.7549,1 +571,0.0000,0.0000,16.7963,16.7966,1 +572,0.0000,0.0000,16.6042,16.6045,0 +573,0.0000,0.0000,16.6734,16.6738,1 +574,0.0000,0.0000,16.6103,16.6106,0 +575,0.0000,0.0000,16.7446,16.7450,1 +576,0.0000,0.0000,16.6215,16.6218,0 +577,0.0000,0.0000,16.7452,16.7455,1 +578,0.0000,0.0000,16.6159,16.6162,0 +579,0.0000,0.0000,16.6747,16.6750,1 +580,0.0000,0.0000,16.6936,16.6939,1 +581,0.0000,0.0000,16.5965,16.5968,0 +582,0.0000,0.0000,16.6662,16.6665,0 +583,0.0000,0.0000,16.7217,16.7220,1 +584,0.0000,0.0000,16.6216,16.6219,0 +585,0.0000,0.0000,16.7370,16.7373,1 +586,0.0000,0.0000,16.6841,16.6844,1 +587,0.0000,0.0000,16.5946,16.5949,0 +588,0.0000,0.0000,16.6699,16.6702,1 +589,0.0000,0.0000,16.6650,16.6654,0 +590,0.0000,0.0000,16.6919,16.6922,1 +591,0.0000,0.0000,16.6757,16.6760,1 +592,0.0000,0.0000,16.6715,16.6719,1 +593,0.0000,0.0000,16.6937,16.6940,1 +594,0.0000,0.0000,16.6713,16.6716,1 +595,0.0000,0.0000,16.6138,16.6141,0 +596,0.0000,0.0000,16.7492,16.7497,1 +597,0.0000,0.0000,16.6418,16.6421,0 +598,0.0000,0.0000,16.6288,16.6291,0 +599,0.0000,0.0000,16.6627,16.6630,0 +600,0.0000,0.0000,16.6582,16.6585,0 +601,0.0000,0.0000,16.6241,16.6244,0 +602,0.0000,0.0000,16.7726,16.7729,1 +603,0.0000,0.0000,16.6868,16.6872,1 +604,0.0000,0.0000,16.6392,16.6396,0 +605,0.0000,0.0000,16.6446,16.6449,0 +606,0.0000,0.0000,16.6741,16.6744,1 +607,0.0000,0.0000,16.7802,16.7805,1 +608,0.0000,0.0000,16.6011,16.6014,0 +609,0.0000,0.0000,16.7954,16.7957,1 +610,0.0000,0.0000,17.1266,17.1269,1 +611,0.0000,0.0000,14.8550,14.8553,0 +612,0.0000,0.0000,16.6788,16.6790,1 +613,0.0000,0.0000,16.6870,16.6873,1 +614,0.0000,0.0000,17.8519,17.8521,1 +615,0.0000,0.0000,16.6567,16.6570,0 +616,0.0000,0.0000,16.7728,16.7731,1 +617,0.0000,0.0000,16.6943,16.6946,1 +618,0.0000,0.0000,16.5792,16.5795,0 +619,0.0000,0.0000,16.7065,16.7068,1 +620,0.0000,0.0000,16.6133,16.6136,0 +621,0.0000,0.0000,16.6856,16.6859,1 +622,0.0000,0.0000,16.7594,16.7597,1 +623,0.0000,0.0000,16.6353,16.6356,0 +624,0.0000,0.0000,16.6635,16.6638,0 +625,0.0000,0.0000,16.5947,16.5950,0 +626,0.0000,0.0000,16.7571,16.7574,1 +627,0.0000,0.0000,16.5982,16.5985,0 +628,0.0000,0.0000,16.6583,16.6586,0 +629,0.0000,0.0000,16.7586,16.7589,1 +630,0.0000,0.0000,16.6213,16.6217,0 +631,0.0000,0.0000,16.6969,16.6972,1 +632,0.0000,0.0000,16.6386,16.6389,0 +633,0.0000,0.0000,16.6848,16.6851,1 +634,0.0000,0.0000,16.6560,16.6563,0 +635,0.0000,0.0000,16.6838,16.6841,1 +636,0.0000,0.0000,16.6389,16.6393,0 +637,0.0000,0.0000,16.6666,16.6669,1 +638,0.0000,0.0000,16.6109,16.6112,0 +639,0.0000,0.0000,16.8873,16.8876,1 +640,0.0000,0.0000,16.5378,16.5381,0 +641,0.0000,0.0000,16.6494,16.6497,0 +642,0.0000,0.0000,16.7045,16.7048,1 +643,0.0000,0.0000,16.6647,16.6650,0 +644,0.0000,0.0000,16.7321,16.7324,1 +645,0.0000,0.0000,16.6046,16.6049,0 +646,0.0000,0.0000,16.7140,16.7143,1 +647,0.0000,0.0000,16.6510,16.6513,0 +648,0.0000,0.0000,16.6239,16.6242,0 +649,0.0000,0.0000,16.6678,16.6681,1 +650,0.0000,0.0000,16.7401,16.7404,1 +651,0.0000,0.0000,16.6097,16.6100,0 +652,0.0000,0.0000,16.5541,16.5544,0 +653,0.0000,0.0000,7.6001,7.6004,0 +654,0.0000,0.0000,9.2683,9.2686,0 +655,0.0000,0.0000,16.6565,16.6568,0 +656,0.0000,0.0000,16.7159,16.7162,1 +657,0.0000,0.0000,16.3290,16.3293,0 +658,0.0000,0.0000,7.4491,7.4494,0 +659,0.0000,0.0000,9.5567,9.5570,0 +660,0.0000,0.0000,16.5673,16.5676,0 +661,0.0000,0.0000,16.6949,16.6952,1 +662,0.0000,0.0000,16.6374,16.6377,0 +663,0.0000,0.0000,16.6978,16.6981,1 +664,0.0000,0.0000,16.7319,16.7322,1 +665,0.0000,0.0000,16.6361,16.6364,0 +666,0.0000,0.0000,16.6488,16.6491,0 +667,0.0000,0.0000,16.6349,16.6353,0 +668,0.0000,0.0000,16.7178,16.7181,1 +669,0.0000,0.0000,16.6556,16.6559,0 +670,0.0000,0.0000,16.6302,16.6305,0 +671,0.0000,0.0000,16.6564,16.6567,0 +672,0.0000,0.0000,16.8032,16.8035,1 +673,0.0000,0.0000,16.6550,16.6553,0 +674,0.0000,0.0000,16.6417,16.6420,0 +675,0.0000,0.0000,16.5989,16.5992,0 +676,0.0000,0.0000,16.6752,16.6755,1 +677,0.0000,0.0000,16.7836,16.7840,1 +678,0.0000,0.0000,16.7290,16.7293,1 +679,0.0000,0.0000,16.5392,16.5396,0 +680,0.0000,0.0000,16.6699,16.6702,1 +681,0.0000,0.0000,16.6595,16.6598,0 +682,0.0000,0.0000,16.7256,16.7259,1 +683,0.0000,0.0000,16.6055,16.6058,0 +684,0.0000,0.0000,16.6798,16.6801,1 +685,0.0000,0.0000,16.6428,16.6431,0 +686,0.0000,0.0000,15.3020,15.3022,0 +687,0.0000,0.0000,16.6792,16.6795,1 +688,0.0000,0.0000,16.6553,16.6554,0 +689,0.0000,0.0000,16.6095,16.6097,0 +690,0.0000,0.0000,18.1146,18.1148,1 +691,0.0000,0.0000,16.6887,16.6890,1 +692,0.0000,0.0000,16.6182,16.6185,0 +693,0.0000,0.0000,16.6932,16.6935,1 +694,0.0000,0.0000,16.6518,16.6521,0 +695,0.0000,0.0000,16.7115,16.7118,1 +696,0.0000,0.0000,16.6596,16.6599,0 +697,0.0000,0.0000,16.7277,16.7280,1 +698,0.0000,0.0000,16.6004,16.6007,0 +699,0.0000,0.0000,16.6998,16.7001,1 +700,0.0000,0.0000,16.7670,16.7673,1 +701,0.0000,0.0000,16.6515,16.6518,0 +702,0.0000,0.0000,16.6854,16.6857,1 +703,0.0000,0.0000,16.7134,16.7137,1 +704,0.0000,0.0000,16.4558,16.4561,0 +705,0.0000,0.0000,16.3296,16.3299,0 +706,0.0000,0.0000,8.1063,8.1066,0 +707,0.0000,0.0000,8.9934,8.9937,0 +708,0.0000,0.0000,16.3052,16.3055,0 +709,0.0000,0.0000,7.8613,7.8616,0 +710,0.0000,0.0000,9.2611,9.2614,0 +711,0.0000,0.0000,16.5190,16.5193,0 +712,0.0000,0.0000,16.7565,16.7568,1 +713,0.0000,0.0000,16.6333,16.6336,0 +714,0.0000,0.0000,16.6488,16.6491,0 +715,0.0000,0.0000,16.7749,16.7752,1 +716,0.0000,0.0000,16.5785,16.5788,0 +717,0.0000,0.0000,16.7550,16.7553,1 +718,0.0000,0.0000,16.6648,16.6652,0 +719,0.0000,0.0000,16.6077,16.6080,0 +720,0.0000,0.0000,16.7510,16.7513,1 +721,0.0000,0.0000,16.8035,16.8038,1 +722,0.0000,0.0000,16.7884,16.7887,1 +723,0.0000,0.0000,15.1092,15.1095,0 +724,0.0000,0.0000,16.6839,16.6841,1 +725,0.0000,0.0000,15.9543,15.9545,0 +726,0.0000,0.0000,8.2611,8.2612,0 +727,0.0000,0.0000,8.8268,8.8268,0 +728,0.0000,0.0000,16.1018,16.1019,0 +729,0.0000,0.0000,3.3277,3.3278,0 +730,0.0000,0.0000,13.5871,13.5872,0 +731,0.0000,0.0000,16.6786,16.6786,1 +732,0.0000,0.0000,16.7481,16.7482,1 +733,0.0000,0.0000,16.5933,16.5934,0 +734,0.0000,0.0000,16.6413,16.6415,0 +735,0.0000,0.0000,16.7440,16.7441,1 +736,0.0000,0.0000,16.4401,16.4402,0 +737,0.0000,0.0000,16.6510,16.6511,0 +738,0.0000,0.0000,16.6472,16.6472,0 +739,0.0000,0.0000,16.6827,16.6828,1 +740,0.0000,0.0000,16.6165,16.6167,0 +741,0.0000,0.0000,18.5011,18.5012,1 +742,0.0000,0.0000,16.8552,16.8555,1 +743,0.0000,0.0000,16.8568,16.8571,1 +744,0.0000,0.0000,16.7521,16.7524,1 +745,0.0000,0.0000,16.4743,16.4746,0 +746,0.0000,0.0000,17.0461,17.0464,1 +747,0.0000,0.0000,16.4157,16.4160,0 +748,0.0000,0.0000,16.5725,16.5728,0 +749,0.0000,0.0000,16.6896,16.6899,1 +750,0.0000,0.0000,16.7168,16.7171,1 +751,0.0000,0.0000,16.5658,16.5661,0 +752,0.0000,0.0000,16.7999,16.8002,1 +753,0.0000,0.0000,16.6715,16.6718,1 +754,0.0000,0.0000,16.6108,16.6111,0 +755,0.0000,0.0000,16.5364,16.5366,0 +756,0.0000,0.0000,15.4011,15.4013,0 +757,0.0000,0.0000,16.6278,16.6279,0 +758,0.0000,0.0000,16.4301,16.4304,0 +759,0.0000,0.0000,8.5063,8.5065,0 +760,0.0000,0.0000,8.4657,8.4659,0 +761,0.0000,0.0000,16.6651,16.6652,0 +762,0.0000,0.0000,16.6192,16.6193,0 +763,0.0000,0.0000,16.7230,16.7231,1 +764,0.0000,0.0000,16.7025,16.7027,1 +765,0.0000,0.0000,16.6440,16.6443,0 +766,0.0000,0.0000,16.6752,16.6754,1 +767,0.0000,0.0000,18.0179,18.0181,1 +768,0.0000,0.0000,16.7672,16.7676,1 +769,0.0000,0.0000,16.6170,16.6173,0 +770,0.0000,0.0000,16.6619,16.6622,0 +771,0.0000,0.0000,16.5742,16.5745,0 +772,0.0000,0.0000,16.6863,16.6866,1 +773,0.0000,0.0000,16.6678,16.6681,1 +774,0.0000,0.0000,16.7125,16.7128,1 +775,0.0000,0.0000,16.7439,16.7442,1 +776,0.0000,0.0000,16.6450,16.6453,0 +777,0.0000,0.0000,16.6342,16.6345,0 +778,0.0000,0.0000,16.6561,16.6564,0 +779,0.0000,0.0000,16.6682,16.6685,1 +780,0.0000,0.0000,16.6943,16.6946,1 +781,0.0000,0.0000,16.6609,16.6612,0 +782,0.0000,0.0000,16.6628,16.6631,0 +783,0.0000,0.0000,16.6796,16.6799,1 +784,0.0000,0.0000,16.6583,16.6586,0 +785,0.0000,0.0000,16.7074,16.7077,1 +786,0.0000,0.0000,16.7600,16.7603,1 +787,0.0000,0.0000,16.6570,16.6573,0 +788,0.0000,0.0000,16.6596,16.6599,0 +789,0.0000,0.0000,16.6132,16.6135,0 +790,0.0000,0.0000,16.6847,16.6850,1 +791,0.0000,0.0000,16.6101,16.6104,0 +792,0.0000,0.0000,16.6118,16.6121,0 +793,0.0000,0.0000,16.7247,16.7250,1 +794,0.0000,0.0000,15.5112,15.5114,0 +795,0.0000,0.0000,16.6879,16.6880,1 +796,0.0000,0.0000,16.6874,16.6876,1 +797,0.0000,0.0000,16.6639,16.6640,0 +798,0.0000,0.0000,17.8475,17.8477,1 +799,0.0000,0.0000,16.7246,16.7249,1 +800,0.0000,0.0000,16.7403,16.7406,1 +801,0.0000,0.0000,16.5205,16.5208,0 +802,0.0000,0.0000,16.7537,16.7540,1 +803,0.0000,0.0000,16.6704,16.6707,1 +804,0.0000,0.0000,16.6311,16.6314,0 +805,0.0000,0.0000,16.6683,16.6686,1 +806,0.0000,0.0000,16.6574,16.6577,0 +807,0.0000,0.0000,16.3298,16.3301,0 +808,0.0000,0.0000,7.9021,7.9024,0 +809,0.0000,0.0000,9.2453,9.2457,0 +810,0.0000,0.0000,16.4654,16.4657,0 +811,0.0000,0.0000,16.6909,16.6912,1 +812,0.0000,0.0000,16.7005,16.7008,1 +813,0.0000,0.0000,16.6647,16.6650,0 +814,0.0000,0.0000,16.7260,16.7263,1 +815,0.0000,0.0000,15.4650,15.4653,0 +816,0.0000,0.0000,16.6911,16.6913,1 +817,0.0000,0.0000,16.6560,16.6561,0 +818,0.0000,0.0000,16.6060,16.6062,0 +819,0.0000,0.0000,16.7180,16.7183,1 +820,0.0000,0.0000,16.6580,16.6582,0 +821,0.0000,0.0000,16.6855,16.6858,1 +822,0.0000,0.0000,16.6551,16.6552,0 +823,0.0000,0.0000,16.6662,16.6663,0 +824,0.0000,0.0000,16.6335,16.6337,0 +825,0.0000,0.0000,17.9123,17.9125,1 +826,0.0000,0.0000,16.6334,16.6337,0 +827,0.0000,0.0000,16.6943,16.6946,1 +828,0.0000,0.0000,16.6791,16.6794,1 +829,0.0000,0.0000,16.6487,16.6491,0 +830,0.0000,0.0000,16.6877,16.6880,1 +831,0.0000,0.0000,16.7079,16.7082,1 +832,0.0000,0.0000,7.3366,7.3369,0 +833,0.0000,0.0000,9.4715,9.4718,0 +834,0.0000,0.0000,16.5708,16.5711,0 +835,0.0000,0.0000,16.6917,16.6920,1 +836,0.0000,0.0000,16.6507,16.6510,0 +837,0.0000,0.0000,16.5932,16.5935,0 +838,0.0000,0.0000,16.6914,16.6918,1 +839,0.0000,0.0000,16.7569,16.7572,1 +840,0.0000,0.0000,16.5895,16.5898,0 +841,0.0000,0.0000,16.6927,16.6930,1 +842,0.0000,0.0000,16.6677,16.6680,1 +843,0.0000,0.0000,16.5966,16.5969,0 +844,0.0000,0.0000,16.7361,16.7364,1 +845,0.0000,0.0000,16.7039,16.7042,1 +846,0.0000,0.0000,16.6525,16.6529,0 +847,0.0000,0.0000,16.4375,16.4378,0 +848,0.0000,0.0000,7.6654,7.6657,0 +849,0.0000,0.0000,9.2934,9.2937,0 +850,0.0000,0.0000,16.6275,16.6278,0 +851,0.0000,0.0000,16.5905,16.5908,0 +852,0.0000,0.0000,16.6901,16.6904,1 +853,0.0000,0.0000,16.6098,16.6101,0 +854,0.0000,0.0000,16.7685,16.7688,1 +855,0.0000,0.0000,16.5984,16.5987,0 +856,0.0000,0.0000,16.7105,16.7108,1 +857,0.0000,0.0000,16.4723,16.4726,0 +858,0.0000,0.0000,15.6875,15.6877,0 +859,0.0000,0.0000,16.0789,16.0791,0 +860,0.0000,0.0000,8.3899,8.3901,0 +861,0.0000,0.0000,8.8972,8.8974,0 +862,0.0000,0.0000,16.6345,16.6347,0 +863,0.0000,0.0000,16.6634,16.6637,0 +864,0.0000,0.0000,16.6250,16.6252,0 +865,0.0000,0.0000,16.7326,16.7327,1 +866,0.0000,0.0000,17.8997,17.8999,1 +867,0.0000,0.0000,16.7532,16.7535,1 +868,0.0000,0.0000,16.5427,16.5430,0 +869,0.0000,0.0000,16.7327,16.7330,1 +870,0.0000,0.0000,16.5559,16.5562,0 +871,0.0000,0.0000,16.7693,16.7696,1 +872,0.0000,0.0000,16.7007,16.7010,1 +873,0.0000,0.0000,16.6316,16.6319,0 +874,0.0000,0.0000,16.5720,16.5723,0 +875,0.0000,0.0000,16.7158,16.7161,1 +876,0.0000,0.0000,16.6788,16.6791,1 +877,0.0000,0.0000,16.6590,16.6593,0 +878,0.0000,0.0000,16.7381,16.7384,1 +879,0.0000,0.0000,16.5707,16.5710,0 +880,0.0000,0.0000,16.7375,16.7378,1 +881,0.0000,0.0000,16.6322,16.6325,0 +882,0.0000,0.0000,16.6930,16.6933,1 +883,0.0000,0.0000,16.6529,16.6532,0 +884,0.0000,0.0000,16.6687,16.6690,1 +885,0.0000,0.0000,16.7729,16.7733,1 +886,0.0000,0.0000,16.6045,16.6048,0 +887,0.0000,0.0000,16.6829,16.6832,1 +888,0.0000,0.0000,16.6169,16.6172,0 +889,0.0000,0.0000,16.6764,16.6767,1 +890,0.0000,0.0000,16.6793,16.6796,1 +891,0.0000,0.0000,16.7257,16.7260,1 +892,0.0000,0.0000,16.6578,16.6581,0 +893,0.0000,0.0000,16.6308,16.6311,0 +894,0.0000,0.0000,16.7220,16.7223,1 +895,0.0000,0.0000,16.6934,16.6937,1 +896,0.0000,0.0000,16.6417,16.6420,0 +897,0.0000,0.0000,16.7096,16.7099,1 +898,0.0000,0.0000,16.6071,16.6074,0 +899,0.0000,0.0000,16.6808,16.6812,1 +900,0.0000,0.0000,16.6586,16.6589,0 +901,0.0000,0.0000,16.6282,16.6285,0 +902,0.0000,0.0000,16.6893,16.6896,1 +903,0.0000,0.0000,16.6222,16.6225,0 +904,0.0000,0.0000,16.7369,16.7372,1 +905,0.0000,0.0000,16.6463,16.6466,0 +906,0.0000,0.0000,16.6633,16.6636,0 +907,0.0000,0.0000,16.7016,16.7019,1 +908,0.0000,0.0000,16.6844,16.6847,1 +909,0.0000,0.0000,16.6723,16.6726,1 +910,0.0000,0.0000,16.6898,16.6901,1 +911,0.0000,0.0000,16.6295,16.6298,0 +912,0.0000,0.0000,16.7861,16.7864,1 +913,0.0000,0.0000,16.5767,16.5770,0 +914,0.0000,0.0000,16.7096,16.7099,1 +915,0.0000,0.0000,16.6090,16.6093,0 +916,0.0000,0.0000,16.6628,16.6631,0 +917,0.0000,0.0000,16.6657,16.6660,0 +918,0.0000,0.0000,16.6946,16.6949,1 +919,0.0000,0.0000,16.7310,16.7313,1 +920,0.0000,0.0000,16.6319,16.6322,0 +921,0.0000,0.0000,16.6812,16.6815,1 +922,0.0000,0.0000,16.6326,16.6329,0 +923,0.0000,0.0000,16.6732,16.6736,1 +924,0.0000,0.0000,16.6425,16.6430,0 +925,0.0000,0.0000,16.7441,16.7444,1 +926,0.0000,0.0000,16.6679,16.6682,1 +927,0.0000,0.0000,16.6181,16.6184,0 +928,0.0000,0.0000,16.6871,16.6874,1 +929,0.0000,0.0000,16.6928,16.6931,1 +930,0.0000,0.0000,16.6349,16.6352,0 +931,0.0000,0.0000,16.9545,16.9548,1 +932,0.0000,0.0000,16.5475,16.5478,0 +933,0.0000,0.0000,16.6449,16.6452,0 +934,0.0000,0.0000,16.5600,16.5604,0 +935,0.0000,0.0000,16.6761,16.6764,1 +936,0.0000,0.0000,16.6429,16.6432,0 +937,0.0000,0.0000,16.6365,16.6368,0 +938,0.0000,0.0000,16.7105,16.7108,1 +939,0.0000,0.0000,16.6618,16.6621,0 +940,0.0000,0.0000,15.4453,15.4456,0 +941,0.0000,0.0000,17.7454,17.7456,1 +942,0.0000,0.0000,7.7220,7.7223,0 +943,0.0000,0.0000,9.1561,9.1564,0 +944,0.0000,0.0000,16.6644,16.6647,0 +945,0.0000,0.0000,16.6624,16.6627,0 +946,0.0000,0.0000,16.6598,16.6601,0 +947,0.0000,0.0000,16.7064,16.7067,1 +948,0.0000,0.0000,16.6909,16.6912,1 +949,0.0000,0.0000,16.6710,16.6713,1 +950,0.0000,0.0000,16.6141,16.6144,0 +951,0.0000,0.0000,16.6596,16.6599,0 +952,0.0000,0.0000,16.6657,16.6660,0 +953,0.0000,0.0000,16.6462,16.6465,0 +954,0.0000,0.0000,16.7453,16.7456,1 +955,0.0000,0.0000,16.5864,16.5867,0 +956,0.0000,0.0000,16.6972,16.6975,1 +957,0.0000,0.0000,16.6703,16.6706,1 +958,0.0000,0.0000,16.6602,16.6605,0 +959,0.0000,0.0000,16.7187,16.7190,1 +960,0.0000,0.0000,16.6529,16.6532,0 +961,0.0000,0.0000,16.6644,16.6647,0 +962,0.0000,0.0000,16.7087,16.7090,1 +963,0.0000,0.0000,16.7229,16.7231,1 +964,0.0000,0.0000,16.8952,16.8955,1 +965,0.0000,0.0000,16.5488,16.5491,0 +966,0.0000,0.0000,16.4356,16.4360,0 +967,0.0000,0.0000,16.3356,16.3359,0 +968,0.0000,0.0000,8.0096,8.0099,0 +969,0.0000,0.0000,9.0360,9.0363,0 +970,0.0000,0.0000,16.7078,16.7081,1 +971,0.0000,0.0000,16.6283,16.6286,0 +972,0.0000,0.0000,16.6588,16.6591,0 +973,0.0000,0.0000,16.6244,16.6247,0 +974,0.0000,0.0000,16.7012,16.7015,1 +975,0.0000,0.0000,16.7396,16.7399,1 +976,0.0000,0.0000,16.5811,16.5814,0 +977,0.0000,0.0000,16.7418,16.7421,1 +978,0.0000,0.0000,16.6226,16.6229,0 +979,0.0000,0.0000,16.7150,16.7153,1 +980,0.0000,0.0000,16.7523,16.7526,1 +981,0.0000,0.0000,16.8126,16.8129,1 +982,0.0000,0.0000,16.4009,16.4012,0 +983,0.0000,0.0000,16.7234,16.7237,1 +984,0.0000,0.0000,16.6255,16.6258,0 +985,0.0000,0.0000,16.7078,16.7081,1 +986,0.0000,0.0000,16.6498,16.6501,0 +987,0.0000,0.0000,16.7396,16.7399,1 +988,0.0000,0.0000,16.5896,16.5899,0 +989,0.0000,0.0000,16.7253,16.7256,1 +990,0.0000,0.0000,16.6372,16.6375,0 +991,0.0000,0.0000,16.6526,16.6529,0 +992,0.0000,0.0000,16.7456,16.7459,1 +993,0.0000,0.0000,16.5860,16.5863,0 +994,0.0000,0.0000,16.6895,16.6898,1 +995,0.0000,0.0000,16.6409,16.6412,0 +996,0.0000,0.0000,16.6856,16.6859,1 +997,0.0000,0.0000,16.7921,16.7924,1 +998,0.0000,0.0000,16.5877,16.5880,0 +999,0.0000,0.0000,16.6695,16.6698,1 +1000,0.0000,0.0000,16.6924,16.6927,1 +1001,0.0000,0.0000,16.5923,16.5926,0 +1002,0.0000,0.0000,16.6894,16.6897,1 +1003,0.0000,0.0000,16.6991,16.6994,1 +1004,0.0000,0.0000,16.7066,16.7069,1 +1005,0.0000,0.0000,16.6065,16.6068,0 +1006,0.0000,0.0000,16.6538,16.6541,0 +1007,0.0000,0.0000,16.7343,16.7346,1 +1008,0.0000,0.0000,16.6622,16.6625,0 +1009,0.0000,0.0000,16.6445,16.6448,0 +1010,0.0000,0.0000,16.6820,16.6823,1 +1011,0.0000,0.0000,16.6583,16.6586,0 +1012,0.0000,0.0000,16.6729,16.6732,1 +1013,0.0000,0.0000,16.6653,16.6656,0 +1014,0.0000,0.0000,16.7038,16.7041,1 +1015,0.0000,0.0000,16.6143,16.6146,0 +1016,0.0000,0.0000,16.7341,16.7344,1 +1017,0.0000,0.0000,16.6197,16.6200,0 +1018,0.0000,0.0000,16.7595,16.7598,1 +1019,0.0000,0.0000,16.5904,16.5907,0 +1020,0.0000,0.0000,16.7438,16.7441,1 +1021,0.0000,0.0000,16.7079,16.7082,1 +1022,0.0000,0.0000,16.6062,16.6065,0 +1023,0.0000,0.0000,16.6568,16.6571,0 +1024,0.0000,0.0000,16.7003,16.7006,1 +1025,0.0000,0.0000,16.6825,16.6828,1 +1026,0.0000,0.0000,16.6639,16.6642,0 +1027,0.0000,0.0000,16.5997,16.6000,0 +1028,0.0000,0.0000,16.7883,16.7886,1 +1029,0.0000,0.0000,16.5926,16.5929,0 +1030,0.0000,0.0000,16.5704,16.5707,0 +1031,0.0000,0.0000,16.7090,16.7093,1 +1032,0.0000,0.0000,16.7003,16.7006,1 +1033,0.0000,0.0000,16.6794,16.6797,1 +1034,0.0000,0.0000,16.6400,16.6403,0 +1035,0.0000,0.0000,16.6860,16.6864,1 +1036,0.0000,0.0000,16.6622,16.6625,0 +1037,0.0000,0.0000,16.6452,16.6455,0 +1038,0.0000,0.0000,16.7019,16.7022,1 +1039,0.0000,0.0000,16.6592,16.6593,0 +1040,0.0000,0.0000,16.6709,16.6712,1 +1041,0.0000,0.0000,16.6810,16.6813,1 +1042,0.0000,0.0000,16.6748,16.6751,1 +1043,0.0000,0.0000,16.6683,16.6686,1 +1044,0.0000,0.0000,16.6292,16.6295,0 +1045,0.0000,0.0000,16.6986,16.6989,1 +1046,0.0000,0.0000,16.6585,16.6588,0 +1047,0.0000,0.0000,16.7186,16.7189,1 +1048,0.0000,0.0000,16.6578,16.6581,0 +1049,0.0000,0.0000,16.6464,16.6467,0 +1050,0.0000,0.0000,16.6641,16.6644,0 +1051,0.0000,0.0000,16.8007,16.8011,1 +1052,0.0000,0.0000,16.6694,16.6697,1 +1053,0.0000,0.0000,16.5463,16.5466,0 +1054,0.0000,0.0000,16.6908,16.6912,1 +1055,0.0000,0.0000,16.7437,16.7440,1 +1056,0.0000,0.0000,16.5835,16.5838,0 +1057,0.0000,0.0000,16.6857,16.6860,1 +1058,0.0000,0.0000,16.6498,16.6501,0 +1059,0.0000,0.0000,16.7459,16.7462,1 +1060,0.0000,0.0000,16.6835,16.6838,1 +1061,0.0000,0.0000,16.6905,16.6908,1 +1062,0.0000,0.0000,16.6950,16.6953,1 +1063,0.0000,0.0000,16.5509,16.5512,0 +1064,0.0000,0.0000,15.0417,15.0419,0 +1065,0.0000,0.0000,16.7018,16.7020,1 +1066,0.0000,0.0000,16.7970,16.7972,1 +1067,0.0000,0.0000,16.5708,16.5709,0 +1068,0.0000,0.0000,16.6253,16.6254,0 +1069,0.0000,0.0000,18.2998,18.3000,1 +1070,0.0000,0.0000,16.6865,16.6867,1 +1071,0.0000,0.0000,16.6541,16.6544,0 +1072,0.0000,0.0000,16.6723,16.6726,1 +1073,0.0000,0.0000,16.7586,16.7589,1 +1074,0.0000,0.0000,16.5648,16.5651,0 +1075,0.0000,0.0000,16.6552,16.6555,0 +1076,0.0000,0.0000,16.7473,16.7476,1 +1077,0.0000,0.0000,16.6900,16.6903,1 +1078,0.0000,0.0000,16.6037,16.6040,0 +1079,0.0000,0.0000,16.7211,16.7214,1 +1080,0.0000,0.0000,16.3936,16.3939,0 +1081,0.0000,0.0000,7.5763,7.5766,0 +1082,0.0000,0.0000,9.3546,9.3549,0 +1083,0.0000,0.0000,16.6963,16.6966,1 +1084,0.0000,0.0000,16.8357,16.8360,1 +1085,0.0000,0.0000,16.4803,16.4806,0 +1086,0.0000,0.0000,16.7435,16.7438,1 +1087,0.0000,0.0000,16.5644,16.5647,0 +1088,0.0000,0.0000,16.6467,16.6470,0 +1089,0.0000,0.0000,16.7179,16.7182,1 +1090,0.0000,0.0000,16.7036,16.7039,1 +1091,0.0000,0.0000,15.4678,15.4681,0 +1092,0.0000,0.0000,16.6609,16.6611,0 +1093,0.0000,0.0000,16.6522,16.6524,0 +1094,0.0000,0.0000,16.6438,16.6441,0 +1095,0.0000,0.0000,16.7499,16.7501,1 +1096,0.0000,0.0000,16.5682,16.5684,0 +1097,0.0000,0.0000,16.6766,16.6768,1 +1098,0.0000,0.0000,16.7205,16.7207,1 +1099,0.0000,0.0000,16.6683,16.6685,1 +1100,0.0000,0.0000,16.7861,16.7864,1 +1101,0.0000,0.0000,17.7359,17.7362,1 +1102,0.0000,0.0000,16.6524,16.6527,0 +1103,0.0000,0.0000,16.6931,16.6934,1 +1104,0.0000,0.0000,16.7544,16.7547,1 +1105,0.0000,0.0000,16.5825,16.5828,0 +1106,0.0000,0.0000,16.6516,16.6519,0 +1107,0.0000,0.0000,16.7202,16.7205,1 +1108,0.0000,0.0000,16.6941,16.6944,1 +1109,0.0000,0.0000,16.5897,16.5900,0 +1110,0.0000,0.0000,16.7491,16.7494,1 +1111,0.0000,0.0000,16.6004,16.6007,0 +1112,0.0000,0.0000,16.7264,16.7267,1 +1113,0.0000,0.0000,16.6479,16.6482,0 +1114,0.0000,0.0000,16.8972,16.8975,1 +1115,0.0000,0.0000,16.4857,16.4860,0 +1116,0.0000,0.0000,16.6311,16.6314,0 +1117,0.0000,0.0000,16.6646,16.6649,0 +1118,0.0000,0.0000,16.6254,16.6257,0 +1119,0.0000,0.0000,16.7466,16.7469,1 +1120,0.0000,0.0000,16.6370,16.6373,0 +1121,0.0000,0.0000,16.6486,16.6489,0 +1122,0.0000,0.0000,16.6048,16.6051,0 +1123,0.0000,0.0000,7.4966,7.4969,0 +1124,0.0000,0.0000,9.2834,9.2839,0 +1125,0.0000,0.0000,16.6646,16.6649,0 +1126,0.0000,0.0000,16.7360,16.7364,1 +1127,0.0000,0.0000,16.5510,16.5513,0 +1128,0.0000,0.0000,16.6330,16.6333,0 +1129,0.0000,0.0000,16.6626,16.6629,0 +1130,0.0000,0.0000,16.6462,16.6465,0 +1131,0.0000,0.0000,16.7542,16.7545,1 +1132,0.0000,0.0000,16.7098,16.7102,1 +1133,0.0000,0.0000,16.7035,16.7038,1 +1134,0.0000,0.0000,16.6054,16.6057,0 +1135,0.0000,0.0000,16.6814,16.6817,1 +1136,0.0000,0.0000,16.7671,16.7674,1 +1137,0.0000,0.0000,16.6271,16.6274,0 +1138,0.0000,0.0000,16.3001,16.3004,0 +1139,0.0000,0.0000,7.7188,7.7191,0 +1140,0.0000,0.0000,9.3147,9.3150,0 +1141,0.0000,0.0000,16.6275,16.6278,0 +1142,0.0000,0.0000,16.6302,16.6305,0 +1143,0.0000,0.0000,16.6737,16.6740,1 +1144,0.0000,0.0000,16.7495,16.7498,1 +1145,0.0000,0.0000,16.6048,16.6051,0 +1146,0.0000,0.0000,16.6840,16.6843,1 +1147,0.0000,0.0000,16.6603,16.6606,0 +1148,0.0000,0.0000,16.6641,16.6644,0 +1149,0.0000,0.0000,16.7524,16.7528,1 +1150,0.0000,0.0000,16.6243,16.6246,0 +1151,0.0000,0.0000,16.6303,16.6306,0 +1152,0.0000,0.0000,16.7655,16.7658,1 +1153,0.0000,0.0000,16.7795,16.7798,1 +1154,0.0000,0.0000,16.6200,16.6203,0 +1155,0.0000,0.0000,16.6281,16.6284,0 +1156,0.0000,0.0000,16.5885,16.5888,0 +1157,0.0000,0.0000,16.6780,16.6783,1 +1158,0.0000,0.0000,16.7259,16.7262,1 +1159,0.0000,0.0000,16.6420,16.6423,0 +1160,0.0000,0.0000,16.6857,16.6860,1 +1161,0.0000,0.0000,16.6308,16.6311,0 +1162,0.0000,0.0000,16.7513,16.7516,1 +1163,0.0000,0.0000,16.6500,16.6503,0 +1164,0.0000,0.0000,16.6763,16.6765,1 +1165,0.0000,0.0000,16.5800,16.5803,0 +1166,0.0000,0.0000,16.7391,16.7394,1 +1167,0.0000,0.0000,16.6142,16.6145,0 +1168,0.0000,0.0000,16.7523,16.7527,1 +1169,0.0000,0.0000,16.5864,16.5867,0 +1170,0.0000,0.0000,16.7164,16.7167,1 +1171,0.0000,0.0000,16.6989,16.6992,1 +1172,0.0000,0.0000,16.5864,16.5867,0 +1173,0.0000,0.0000,16.7202,16.7205,1 +1174,0.0000,0.0000,16.6711,16.6714,1 +1175,0.0000,0.0000,16.6184,16.6187,0 +1176,0.0000,0.0000,16.6873,16.6876,1 +1177,0.0000,0.0000,16.5889,16.5892,0 +1178,0.0000,0.0000,7.4298,7.4301,0 +1179,0.0000,0.0000,9.3719,9.3721,0 +1180,0.0000,0.0000,16.6342,16.6344,0 +1181,0.0000,0.0000,15.1892,15.1893,0 +1182,0.0000,0.0000,16.6672,16.6674,1 +1183,0.0000,0.0000,18.1330,18.1332,1 +1184,0.0000,0.0000,16.4724,16.4727,0 +1185,0.0000,0.0000,7.5172,7.5175,0 +1186,0.0000,0.0000,9.4383,9.4386,0 +1187,0.0000,0.0000,16.6436,16.6439,0 +1188,0.0000,0.0000,16.6135,16.6138,0 +1189,0.0000,0.0000,16.6742,16.6745,1 +1190,0.0000,0.0000,16.6381,16.6384,0 +1191,0.0000,0.0000,16.7762,16.7766,1 +1192,0.0000,0.0000,16.6363,16.6366,0 +1193,0.0000,0.0000,16.7016,16.7019,1 +1194,0.0000,0.0000,16.6541,16.6544,0 +1195,0.0000,0.0000,16.6240,16.6244,0 +1196,0.0000,0.0000,16.7111,16.7114,1 +1197,0.0000,0.0000,16.7022,16.7025,1 +1198,0.0000,0.0000,14.9913,14.9916,0 +1199,0.0000,0.0000,16.5857,16.5858,0 +1200,0.0000,0.0000,17.9823,17.9825,1 +1201,0.0000,0.0000,7.9258,7.9261,0 +1202,0.0000,0.0000,9.2819,9.2822,0 +1203,0.0000,0.0000,16.4386,16.4389,0 +1204,0.0000,0.0000,16.6895,16.6898,1 +1205,0.0000,0.0000,16.7119,16.7122,1 +1206,0.0000,0.0000,16.6862,16.6865,1 +1207,0.0000,0.0000,16.6556,16.6559,0 +1208,0.0000,0.0000,16.6593,16.6596,0 +1209,0.0000,0.0000,16.6782,16.6785,1 +1210,0.0000,0.0000,16.7369,16.7372,1 +1211,0.0000,0.0000,16.6120,16.6123,0 +1212,0.0000,0.0000,16.7409,16.7412,1 +1213,0.0000,0.0000,16.6642,16.6645,0 +1214,0.0000,0.0000,16.5712,16.5715,0 +1215,0.0000,0.0000,16.7306,16.7309,1 +1216,0.0000,0.0000,16.6729,16.6732,1 +1217,0.0000,0.0000,16.7019,16.7021,1 +1218,0.0000,0.0000,16.6668,16.6671,1 +1219,0.0000,0.0000,16.7185,16.7188,1 +1220,0.0000,0.0000,16.6460,16.6463,0 +1221,0.0000,0.0000,16.5810,16.5813,0 +1222,0.0000,0.0000,16.6246,16.6249,0 +1223,0.0000,0.0000,16.8084,16.8087,1 +1224,0.0000,0.0000,16.5831,16.5834,0 +1225,0.0000,0.0000,16.7641,16.7646,1 +1226,0.0000,0.0000,16.6628,16.6631,0 +1227,0.0000,0.0000,16.6777,16.6780,1 +1228,0.0000,0.0000,16.5967,16.5970,0 +1229,0.0000,0.0000,16.7226,16.7229,1 +1230,0.0000,0.0000,16.6863,16.6866,1 +1231,0.0000,0.0000,16.6642,16.6645,0 +1232,0.0000,0.0000,16.6576,16.6579,0 +1233,0.0000,0.0000,16.6133,16.6136,0 +1234,0.0000,0.0000,16.7739,16.7742,1 +1235,0.0000,0.0000,16.6137,16.6141,0 +1236,0.0000,0.0000,16.7036,16.7039,1 +1237,0.0000,0.0000,16.6036,16.6039,0 +1238,0.0000,0.0000,16.6612,16.6615,0 +1239,0.0000,0.0000,16.7319,16.7322,1 +1240,0.0000,0.0000,16.6242,16.6245,0 +1241,0.0000,0.0000,16.7418,16.7421,1 +1242,0.0000,0.0000,16.5870,16.5873,0 +1243,0.0000,0.0000,16.6385,16.6388,0 +1244,0.0000,0.0000,16.7606,16.7609,1 +1245,0.0000,0.0000,16.6198,16.6201,0 +1246,0.0000,0.0000,16.6952,16.6955,1 +1247,0.0000,0.0000,16.6758,16.6761,1 +1248,0.0000,0.0000,15.4524,15.4527,0 +1249,0.0000,0.0000,16.6309,16.6311,0 +1250,0.0000,0.0000,16.7430,16.7432,1 +1251,0.0000,0.0000,16.6408,16.6409,0 +1252,0.0000,0.0000,16.3393,16.3395,0 +1253,0.0000,0.0000,8.4787,8.4789,0 +1254,0.0000,0.0000,9.6103,9.6105,0 +1255,0.0000,0.0000,16.7514,16.7517,1 +1256,0.0000,0.0000,16.7624,16.7627,1 +1257,0.0000,0.0000,16.7334,16.7337,1 +1258,0.0000,0.0000,16.5274,16.5277,0 +1259,0.0000,0.0000,16.6963,16.6966,1 +1260,0.0000,0.0000,16.6243,16.6246,0 +1261,0.0000,0.0000,16.6918,16.6921,1 +1262,0.0000,0.0000,16.6029,16.6032,0 +1263,0.0000,0.0000,16.7940,16.7943,1 +1264,0.0000,0.0000,16.6058,16.6061,0 +1265,0.0000,0.0000,16.6439,16.6442,0 +1266,0.0000,0.0000,16.6949,16.6952,1 +1267,0.0000,0.0000,16.6896,16.6899,1 +1268,0.0000,0.0000,16.6583,16.6586,0 +1269,0.0000,0.0000,16.6641,16.6645,0 +1270,0.0000,0.0000,16.5552,16.5555,0 +1271,0.0000,0.0000,7.7444,7.7447,0 +1272,0.0000,0.0000,9.0925,9.0928,0 +1273,0.0000,0.0000,16.6925,16.6928,1 +1274,0.0000,0.0000,16.7176,16.7179,1 +1275,0.0000,0.0000,16.5616,16.5619,0 +1276,0.0000,0.0000,16.6760,16.6763,1 +1277,0.0000,0.0000,16.6819,16.6822,1 +1278,0.0000,0.0000,16.6519,16.6522,0 +1279,0.0000,0.0000,16.7834,16.7837,1 +1280,0.0000,0.0000,16.6381,16.6385,0 +1281,0.0000,0.0000,16.6302,16.6305,0 +1282,0.0000,0.0000,16.6275,16.6278,0 +1283,0.0000,0.0000,16.7624,16.7627,1 +1284,0.0000,0.0000,16.5663,16.5666,0 +1285,0.0000,0.0000,16.6548,16.6551,0 +1286,0.0000,0.0000,16.4160,16.4163,0 +1287,0.0000,0.0000,7.8935,7.8938,0 +1288,0.0000,0.0000,9.0884,9.0887,0 +1289,0.0000,0.0000,18.8287,18.8290,1 +1290,0.0000,0.0000,13.3268,13.3271,0 +1291,0.0000,0.0000,16.7273,16.7276,1 +1292,0.0000,0.0000,16.5508,16.5509,0 +1293,0.0000,0.0000,16.5014,16.5015,0 +1294,0.0000,0.0000,16.1662,16.1664,0 +1295,0.0000,0.0000,18.0533,18.0535,1 +1296,0.0000,0.0000,16.6552,16.6555,0 +1297,0.0000,0.0000,16.6669,16.6671,1 +1298,0.0000,0.0000,16.6539,16.6542,0 +1299,0.0000,0.0000,16.7028,16.7030,1 +1300,0.0000,0.0000,16.7714,16.7717,1 +1301,0.0000,0.0000,16.6533,16.6536,0 +1302,0.0000,0.0000,16.7554,16.7557,1 +1303,0.0000,0.0000,16.4911,16.4914,0 +1304,0.0000,0.0000,16.6719,16.6721,1 +1305,0.0000,0.0000,16.6117,16.6120,0 +1306,0.0000,0.0000,17.2877,17.2880,1 +1307,0.0000,0.0000,16.3281,16.3283,0 +1308,0.0000,0.0000,16.4812,16.4815,0 +1309,0.0000,0.0000,16.8501,16.8504,1 +1310,0.0000,0.0000,15.1784,15.1786,0 +1311,0.0000,0.0000,16.5934,16.5935,0 +1312,0.0000,0.0000,16.6857,16.6858,1 +1313,0.0000,0.0000,18.0183,18.0184,1 +1314,0.0000,0.0000,16.6727,16.6729,1 +1315,0.0000,0.0000,16.6927,16.6928,1 +1316,0.0000,0.0000,16.6466,16.6467,0 +1317,0.0000,0.0000,16.6574,16.6576,0 +1318,0.0000,0.0000,16.6864,16.6866,1 +1319,0.0000,0.0000,16.6676,16.6678,1 +1320,0.0000,0.0000,16.6769,16.6772,1 +1321,0.0000,0.0000,16.5554,16.5556,0 +1322,0.0000,0.0000,16.7875,16.7878,1 +1323,0.0000,0.0000,16.7028,16.7031,1 +1324,0.0000,0.0000,16.6731,16.6734,1 +1325,0.0000,0.0000,16.6108,16.6111,0 +1326,0.0000,0.0000,16.5887,16.5889,0 +1327,0.0000,0.0000,7.9193,7.9195,0 +1328,0.0000,0.0000,8.8989,8.8990,0 +1329,0.0000,0.0000,16.6497,16.6500,0 +1330,0.0000,0.0000,16.6328,16.6330,0 +1331,0.0000,0.0000,16.6671,16.6673,1 +1332,0.0000,0.0000,16.7395,16.7398,1 +1333,0.0000,0.0000,16.5922,16.5923,0 +1334,0.0000,0.0000,17.2659,17.2661,1 +1335,0.0000,0.0000,16.6993,16.6996,1 +1336,0.0000,0.0000,16.7191,16.7194,1 +1337,0.0000,0.0000,16.5739,16.5742,0 +1338,0.0000,0.0000,16.9556,16.9559,1 +1339,0.0000,0.0000,16.6086,16.6089,0 +1340,0.0000,0.0000,16.5000,16.5003,0 +1341,0.0000,0.0000,16.7328,16.7331,1 +1342,0.0000,0.0000,16.6153,16.6156,0 +1343,0.0000,0.0000,16.5663,16.5666,0 +1344,0.0000,0.0000,16.6887,16.6890,1 +1345,0.0000,0.0000,16.7262,16.7265,1 +1346,0.0000,0.0000,16.4194,16.4197,0 +1347,0.0000,0.0000,7.8348,7.8351,0 +1348,0.0000,0.0000,9.1562,9.1565,0 +1349,0.0000,0.0000,16.5978,16.5981,0 +1350,0.0000,0.0000,16.7458,16.7461,1 +1351,0.0000,0.0000,16.7947,16.7950,1 +1352,0.0000,0.0000,16.5690,16.5693,0 +1353,0.0000,0.0000,16.5875,16.5878,0 +1354,0.0000,0.0000,16.6992,16.6995,1 +1355,0.0000,0.0000,16.6550,16.6553,0 +1356,0.0000,0.0000,16.6753,16.6756,1 +1357,0.0000,0.0000,16.8298,16.8301,1 +1358,0.0000,0.0000,16.8667,16.8670,1 +1359,0.0000,0.0000,16.4369,16.4372,0 +1360,0.0000,0.0000,16.5254,16.5257,0 +1361,0.0000,0.0000,16.7183,16.7186,1 +1362,0.0000,0.0000,16.6070,16.6073,0 +1363,0.0000,0.0000,16.6420,16.6424,0 +1364,0.0000,0.0000,16.7840,16.7843,1 +1365,0.0000,0.0000,16.5773,16.5776,0 +1366,0.0000,0.0000,16.6614,16.6617,0 +1367,0.0000,0.0000,16.6955,16.6959,1 +1368,0.0000,0.0000,16.6367,16.6370,0 +1369,0.0000,0.0000,16.7564,16.7567,1 +1370,0.0000,0.0000,15.4555,15.4557,0 +1371,0.0000,0.0000,16.6354,16.6355,0 +1372,0.0000,0.0000,17.9014,17.9017,1 +1373,0.0000,0.0000,16.6775,16.6778,1 +1374,0.0000,0.0000,16.6619,16.6622,0 +1375,0.0000,0.0000,16.6308,16.6312,0 +1376,0.0000,0.0000,16.7161,16.7164,1 +1377,0.0000,0.0000,16.5439,16.5442,0 +1378,0.0000,0.0000,16.7402,16.7404,1 +1379,0.0000,0.0000,16.6359,16.6362,0 +1380,0.0000,0.0000,16.6827,16.6830,1 +1381,0.0000,0.0000,16.6861,16.6864,1 +1382,0.0000,0.0000,16.6300,16.6303,0 +1383,0.0000,0.0000,16.6574,16.6578,0 +1384,0.0000,0.0000,16.7104,16.7107,1 +1385,0.0000,0.0000,16.7105,16.7108,1 +1386,0.0000,0.0000,16.6114,16.6117,0 +1387,0.0000,0.0000,16.7997,16.8000,1 +1388,0.0000,0.0000,16.6537,16.6540,0 +1389,0.0000,0.0000,16.7048,16.7052,1 +1390,0.0000,0.0000,16.5631,16.5634,0 +1391,0.0000,0.0000,16.6522,16.6525,0 +1392,0.0000,0.0000,16.7308,16.7311,1 +1393,0.0000,0.0000,16.5917,16.5920,0 +1394,0.0000,0.0000,16.7255,16.7258,1 +1395,0.0000,0.0000,16.6209,16.6212,0 +1396,0.0000,0.0000,16.7227,16.7230,1 +1397,0.0000,0.0000,16.6201,16.6204,0 +1398,0.0000,0.0000,16.6665,16.6668,1 +1399,0.0000,0.0000,16.7078,16.7081,1 +1400,0.0000,0.0000,16.6451,16.6454,0 +1401,0.0000,0.0000,16.7082,16.7085,1 +1402,0.0000,0.0000,16.6506,16.6509,0 +1403,0.0000,0.0000,16.6789,16.6793,1 +1404,0.0000,0.0000,16.3080,16.3083,0 +1405,0.0000,0.0000,7.6630,7.6633,0 +1406,0.0000,0.0000,9.4437,9.4440,0 +1407,0.0000,0.0000,16.6402,16.6405,0 +1408,0.0000,0.0000,16.6624,16.6627,0 +1409,0.0000,0.0000,16.6014,16.6017,0 +1410,0.0000,0.0000,16.6832,16.6835,1 +1411,0.0000,0.0000,16.6818,16.6821,1 +1412,0.0000,0.0000,16.6595,16.6598,0 +1413,0.0000,0.0000,16.7146,16.7149,1 +1414,0.0000,0.0000,16.6172,16.6175,0 +1415,0.0000,0.0000,16.6724,16.6727,1 +1416,0.0000,0.0000,16.6845,16.6848,1 +1417,0.0000,0.0000,16.6264,16.6267,0 +1418,0.0000,0.0000,16.6877,16.6880,1 +1419,0.0000,0.0000,16.7306,16.7309,1 +1420,0.0000,0.0000,15.4999,15.5002,0 +1421,0.0000,0.0000,16.5862,16.5864,0 +1422,0.0000,0.0000,16.8778,16.8779,1 +1423,0.0000,0.0000,16.5260,16.5261,0 +1424,0.0000,0.0000,17.8486,17.8488,1 +1425,0.0000,0.0000,16.7863,16.7866,1 +1426,0.0000,0.0000,15.3863,15.3866,0 +1427,0.0000,0.0000,16.6235,16.6236,0 +1428,0.0000,0.0000,17.9039,17.9042,1 +1429,0.0000,0.0000,16.6297,16.6300,0 +1430,0.0000,0.0000,16.6670,16.6673,1 +1431,0.0000,0.0000,16.7007,16.7010,1 +1432,0.0000,0.0000,16.6835,16.6838,1 +1433,0.0000,0.0000,16.6666,16.6669,1 +1434,0.0000,0.0000,16.7024,16.7027,1 +1435,0.0000,0.0000,16.6625,16.6628,0 +1436,0.0000,0.0000,16.6049,16.6052,0 +1437,0.0000,0.0000,16.6964,16.6967,1 +1438,0.0000,0.0000,16.6933,16.6937,1 +1439,0.0000,0.0000,16.7244,16.7247,1 +1440,0.0000,0.0000,16.8043,16.8046,1 +1441,0.0000,0.0000,16.5762,16.5765,0 +1442,0.0000,0.0000,16.5588,16.5592,0 +1443,0.0000,0.0000,16.7039,16.7042,1 +1444,0.0000,0.0000,16.7023,16.7026,1 +1445,0.0000,0.0000,16.6055,16.6059,0 +1446,0.0000,0.0000,16.6885,16.6888,1 +1447,0.0000,0.0000,16.6533,16.6537,0 +1448,0.0000,0.0000,16.6445,16.6448,0 +1449,0.0000,0.0000,16.6816,16.6819,1 +1450,0.0000,0.0000,16.7416,16.7420,1 +1451,0.0000,0.0000,16.6045,16.6048,0 +1452,0.0000,0.0000,16.6782,16.6786,1 +1453,0.0000,0.0000,16.6745,16.6748,1 +1454,0.0000,0.0000,16.6710,16.6713,1 +1455,0.0000,0.0000,16.6765,16.6769,1 +1456,0.0000,0.0000,16.6708,16.6711,1 +1457,0.0000,0.0000,16.7012,16.7015,1 +1458,0.0000,0.0000,16.6301,16.6304,0 +1459,0.0000,0.0000,16.7200,16.7203,1 +1460,0.0000,0.0000,16.5810,16.5813,0 +1461,0.0000,0.0000,16.6821,16.6824,1 +1462,0.0000,0.0000,16.7448,16.7451,1 +1463,0.0000,0.0000,16.7745,16.7748,1 +1464,0.0000,0.0000,16.5313,16.5316,0 +1465,0.0000,0.0000,16.6435,16.6438,0 +1466,0.0000,0.0000,16.5809,16.5812,0 +1467,0.0000,0.0000,16.9203,16.9206,1 +1468,0.0000,0.0000,16.5535,16.5539,0 +1469,0.0000,0.0000,15.4104,15.4107,0 +1470,0.0000,0.0000,16.6754,16.6756,1 +1471,0.0000,0.0000,17.9186,17.9188,1 +1472,0.0000,0.0000,16.7046,16.7049,1 +1473,0.0000,0.0000,16.6293,16.6296,0 +1474,0.0000,0.0000,16.6123,16.6126,0 +1475,0.0000,0.0000,16.7345,16.7348,1 +1476,0.0000,0.0000,16.7330,16.7333,1 +1477,0.0000,0.0000,16.6297,16.6300,0 +1478,0.0000,0.0000,16.6761,16.6764,1 +1479,0.0000,0.0000,16.6097,16.6100,0 +1480,0.0000,0.0000,16.7484,16.7487,1 +1481,0.0000,0.0000,16.6988,16.6991,1 +1482,0.0000,0.0000,16.6278,16.6281,0 +1483,0.0000,0.0000,16.6262,16.6265,0 +1484,0.0000,0.0000,16.7070,16.7073,1 +1485,0.0000,0.0000,16.7310,16.7313,1 +1486,0.0000,0.0000,16.5738,16.5741,0 +1487,0.0000,0.0000,16.8294,16.8296,1 +1488,0.0000,0.0000,16.4493,16.4496,0 +1489,0.0000,0.0000,16.6542,16.6545,0 +1490,0.0000,0.0000,16.6829,16.6832,1 +1491,0.0000,0.0000,16.6703,16.6706,1 +1492,0.0000,0.0000,16.7430,16.7433,1 +1493,0.0000,0.0000,16.7433,16.7436,1 +1494,0.0000,0.0000,16.5834,16.5837,0 +1495,0.0000,0.0000,15.3059,15.3061,0 +1496,0.0000,0.0000,16.6464,16.6466,0 +1497,0.0000,0.0000,18.0467,18.0469,1 +1498,0.0000,0.0000,16.6787,16.6790,1 +1499,0.0000,0.0000,16.7163,16.7166,1 +1500,0.0000,0.0000,16.6553,16.6556,0 +1501,0.0000,0.0000,16.6646,16.6649,0 +1502,0.0000,0.0000,16.6258,16.6261,0 +1503,0.0000,0.0000,16.6691,16.6694,1 +1504,0.0000,0.0000,16.6670,16.6673,1 +1505,0.0000,0.0000,16.8040,16.8043,1 +1506,0.0000,0.0000,16.5998,16.6001,0 +1507,0.0000,0.0000,16.6463,16.6466,0 +1508,0.0000,0.0000,16.3782,16.3785,0 +1509,0.0000,0.0000,7.6751,7.6754,0 +1510,0.0000,0.0000,9.3457,9.3460,0 +1511,0.0000,0.0000,16.7077,16.7080,1 +1512,0.0000,0.0000,16.6599,16.6602,0 +1513,0.0000,0.0000,16.6737,16.6741,1 +1514,0.0000,0.0000,16.5755,16.5758,0 +1515,0.0000,0.0000,16.7007,16.7010,1 +1516,0.0000,0.0000,16.6550,16.6553,0 +1517,0.0000,0.0000,16.6394,16.6397,0 +1518,0.0000,0.0000,16.6639,16.6642,0 +1519,0.0000,0.0000,16.7817,16.7820,1 +1520,0.0000,0.0000,16.6301,16.6304,0 +1521,0.0000,0.0000,16.7131,16.7134,1 +1522,0.0000,0.0000,16.5934,16.5937,0 +1523,0.0000,0.0000,16.6827,16.6830,1 +1524,0.0000,0.0000,16.7150,16.7153,1 +1525,0.0000,0.0000,16.6355,16.6358,0 +1526,0.0000,0.0000,16.6053,16.6056,0 +1527,0.0000,0.0000,16.4058,16.4061,0 +1528,0.0000,0.0000,7.6835,7.6838,0 +1529,0.0000,0.0000,9.3389,9.3392,0 +1530,0.0000,0.0000,16.6142,16.6145,0 +1531,0.0000,0.0000,16.6686,16.6689,1 +1532,0.0000,0.0000,16.7064,16.7067,1 +1533,0.0000,0.0000,16.6794,16.6797,1 +1534,0.0000,0.0000,16.6523,16.6526,0 +1535,0.0000,0.0000,16.6973,16.6976,1 +1536,0.0000,0.0000,16.6158,16.6161,0 +1537,0.0000,0.0000,16.7674,16.7678,1 +1538,0.0000,0.0000,16.6013,16.6016,0 +1539,0.0000,0.0000,16.6896,16.6899,1 +1540,0.0000,0.0000,16.7018,16.7021,1 +1541,0.0000,0.0000,16.6566,16.6569,0 +1542,0.0000,0.0000,16.6569,16.6571,0 +1543,0.0000,0.0000,16.7102,16.7105,1 +1544,0.0000,0.0000,16.6960,16.6963,1 +1545,0.0000,0.0000,16.4417,16.4420,0 +1546,0.0000,0.0000,16.8065,16.8068,1 +1547,0.0000,0.0000,16.6923,16.6926,1 +1548,0.0000,0.0000,16.6547,16.6550,0 +1549,0.0000,0.0000,16.6061,16.6064,0 +1550,0.0000,0.0000,16.7655,16.7658,1 +1551,0.0000,0.0000,16.6626,16.6629,0 +1552,0.0000,0.0000,16.5940,16.5943,0 +1553,0.0000,0.0000,16.6500,16.6503,0 +1554,0.0000,0.0000,16.7806,16.7809,1 +1555,0.0000,0.0000,16.6505,16.6508,0 +1556,0.0000,0.0000,16.6908,16.6911,1 +1557,0.0000,0.0000,16.6479,16.6482,0 +1558,0.0000,0.0000,16.6807,16.6810,1 +1559,0.0000,0.0000,16.6736,16.6739,1 +1560,0.0000,0.0000,16.6037,16.6040,0 +1561,0.0000,0.0000,16.6838,16.6841,1 +1562,0.0000,0.0000,16.7348,16.7351,1 +1563,0.0000,0.0000,16.6131,16.6134,0 +1564,0.0000,0.0000,16.6393,16.6396,0 +1565,0.0000,0.0000,16.7608,16.7611,1 +1566,0.0000,0.0000,16.6479,16.6482,0 +1567,0.0000,0.0000,16.8557,16.8560,1 +1568,0.0000,0.0000,17.1219,17.1222,1 +1569,0.0000,0.0000,21.1798,21.1801,1 +1570,0.0000,0.0000,10.0444,10.0446,0 +1571,0.0000,0.0000,16.7640,16.7642,1 +1572,0.0000,0.0000,16.3925,16.3926,0 +1573,0.0000,0.0000,16.6386,16.6387,0 +1574,0.0000,0.0000,18.2783,18.2785,1 +1575,0.0000,0.0000,16.7748,16.7751,1 +1576,0.0000,0.0000,16.7199,16.7202,1 +1577,0.0000,0.0000,16.6444,16.6447,0 +1578,0.0000,0.0000,16.7128,16.7131,1 +1579,0.0000,0.0000,16.6193,16.6196,0 +1580,0.0000,0.0000,16.6555,16.6558,0 +1581,0.0000,0.0000,16.6340,16.6343,0 +1582,0.0000,0.0000,16.6481,16.6484,0 +1583,0.0000,0.0000,16.7056,16.7059,1 +1584,0.0000,0.0000,16.7229,16.7232,1 +1585,0.0000,0.0000,16.6320,16.6323,0 +1586,0.0000,0.0000,16.7084,16.7087,1 +1587,0.0000,0.0000,16.6405,16.6408,0 +1588,0.0000,0.0000,16.6962,16.6965,1 +1589,0.0000,0.0000,16.6392,16.6395,0 +1590,0.0000,0.0000,16.6117,16.6120,0 +1591,0.0000,0.0000,16.6773,16.6776,1 +1592,0.0000,0.0000,16.7010,16.7013,1 +1593,0.0000,0.0000,16.7299,16.7302,1 +1594,0.0000,0.0000,16.6150,16.6153,0 +1595,0.0000,0.0000,16.4820,16.4823,0 +1596,0.0000,0.0000,7.5368,7.5371,0 +1597,0.0000,0.0000,9.4790,9.4793,0 +1598,0.0000,0.0000,16.5169,16.5172,0 +1599,0.0000,0.0000,16.6759,16.6762,1 +1600,0.0000,0.0000,16.6485,16.6488,0 +1601,0.0000,0.0000,16.6994,16.6997,1 +1602,0.0000,0.0000,16.6783,16.6787,1 +1603,0.0000,0.0000,16.6610,16.6613,0 +1604,0.0000,0.0000,16.7153,16.7156,1 +1605,0.0000,0.0000,16.5898,16.5901,0 +1606,0.0000,0.0000,16.6706,16.6709,1 +1607,0.0000,0.0000,16.7086,16.7089,1 +1608,0.0000,0.0000,16.8557,16.8560,1 +1609,0.0000,0.0000,16.7390,16.7393,1 +1610,0.0000,0.0000,16.4384,16.4387,0 +1611,0.0000,0.0000,16.6749,16.6752,1 +1612,0.0000,0.0000,16.6635,16.6638,0 +1613,0.0000,0.0000,16.6935,16.6938,1 +1614,0.0000,0.0000,16.6583,16.6586,0 +1615,0.0000,0.0000,16.6817,16.6821,1 +1616,0.0000,0.0000,16.6792,16.6795,1 +1617,0.0000,0.0000,16.6401,16.6404,0 +1618,0.0000,0.0000,16.5871,16.5874,0 +1619,0.0000,0.0000,16.7962,16.7965,1 +1620,0.0000,0.0000,16.5695,16.5698,0 +1621,0.0000,0.0000,16.7308,16.7311,1 +1622,0.0000,0.0000,16.6169,16.6172,0 +1623,0.0000,0.0000,16.6356,16.6359,0 +1624,0.0000,0.0000,16.6703,16.6706,1 +1625,0.0000,0.0000,16.7054,16.7057,1 +1626,0.0000,0.0000,16.7206,16.7209,1 +1627,0.0000,0.0000,16.6822,16.6825,1 +1628,0.0000,0.0000,16.5997,16.6000,0 +1629,0.0000,0.0000,16.7293,16.7296,1 +1630,0.0000,0.0000,16.8174,16.8177,1 +1631,0.0000,0.0000,16.5245,16.5248,0 +1632,0.0000,0.0000,16.5909,16.5912,0 +1633,0.0000,0.0000,15.5883,15.5885,0 +1634,0.0000,0.0000,16.6298,16.6299,0 +1635,0.0000,0.0000,16.6830,16.6833,1 +1636,0.0000,0.0000,16.6653,16.6656,0 +1637,0.0000,0.0000,17.8313,17.8315,1 +1638,0.0000,0.0000,16.6872,16.6875,1 +1639,0.0000,0.0000,16.6561,16.6564,0 +1640,0.0000,0.0000,16.6705,16.6707,1 +1641,0.0000,0.0000,16.6816,16.6819,1 +1642,0.0000,0.0000,16.7015,16.7018,1 +1643,0.0000,0.0000,16.6112,16.6115,0 +1644,0.0000,0.0000,16.7247,16.7250,1 +1645,0.0000,0.0000,16.6735,16.6739,1 +1646,0.0000,0.0000,16.6631,16.6635,0 +1647,0.0000,0.0000,16.6328,16.6330,0 +1648,0.0000,0.0000,16.7901,16.7904,1 +1649,0.0000,0.0000,16.6017,16.6020,0 +1650,0.0000,0.0000,16.6017,16.6020,0 +1651,0.0000,0.0000,16.7520,16.7523,1 +1652,0.0000,0.0000,16.6200,16.6203,0 +1653,0.0000,0.0000,16.6556,16.6559,0 +1654,0.0000,0.0000,16.6882,16.6885,1 +1655,0.0000,0.0000,16.6609,16.6612,0 +1656,0.0000,0.0000,16.7145,16.7148,1 +1657,0.0000,0.0000,16.6592,16.6595,0 +1658,0.0000,0.0000,16.7153,16.7156,1 +1659,0.0000,0.0000,16.5867,16.5870,0 +1660,0.0000,0.0000,16.7298,16.7301,1 +1661,0.0000,0.0000,16.6636,16.6639,0 +1662,0.0000,0.0000,16.6461,16.6464,0 +1663,0.0000,0.0000,16.6819,16.6822,1 +1664,0.0000,0.0000,16.7214,16.7216,1 +1665,0.0000,0.0000,16.6194,16.6197,0 +1666,0.0000,0.0000,16.6484,16.6487,0 +1667,0.0000,0.0000,16.7374,16.7377,1 +1668,0.0000,0.0000,16.8838,16.8841,1 +1669,0.0000,0.0000,16.4115,16.4119,0 +1670,0.0000,0.0000,16.6614,16.6618,0 +1671,0.0000,0.0000,16.6162,16.6165,0 +1672,0.0000,0.0000,16.6873,16.6876,1 +1673,0.0000,0.0000,16.6748,16.6751,1 +1674,0.0000,0.0000,16.6473,16.6476,0 +1675,0.0000,0.0000,7.7665,7.7668,0 +1676,0.0000,0.0000,13.9515,13.9519,0 +1677,0.0000,0.0000,12.2324,12.2327,0 +1678,0.0000,0.0000,14.9591,14.9593,0 +1679,0.0000,0.0000,17.1316,17.1317,1 +1680,0.0000,0.0000,16.1344,16.1346,0 +1681,0.0000,0.0000,16.0025,16.0027,0 +1682,0.0000,0.0000,16.5912,16.5913,0 +1683,0.0000,0.0000,16.6454,16.6455,0 +1684,0.0000,0.0000,16.7090,16.7090,1 +1685,0.0000,0.0000,18.6227,18.6229,1 +1686,0.0000,0.0000,16.8573,16.8576,1 +1687,0.0000,0.0000,16.5916,16.5919,0 +1688,0.0000,0.0000,16.6660,16.6664,0 +1689,0.0000,0.0000,15.5060,15.5063,0 +1690,0.0000,0.0000,15.9645,15.9648,0 +1691,0.0000,0.0000,16.7105,16.7106,1 +1692,0.0000,0.0000,18.3832,18.3834,1 +1693,0.0000,0.0000,16.7102,16.7105,1 +1694,0.0000,0.0000,16.7106,16.7109,1 +1695,0.0000,0.0000,16.7154,16.7157,1 +1696,0.0000,0.0000,16.6299,16.6302,0 +1697,0.0000,0.0000,16.6656,16.6659,0 +1698,0.0000,0.0000,16.6940,16.6943,1 +1699,0.0000,0.0000,16.6252,16.6255,0 +1700,0.0000,0.0000,16.6654,16.6657,0 +1701,0.0000,0.0000,16.8671,16.8674,1 +1702,0.0000,0.0000,16.7557,16.7560,1 +1703,0.0000,0.0000,16.3683,16.3686,0 +1704,0.0000,0.0000,16.6421,16.6425,0 +1705,0.0000,0.0000,16.6652,16.6655,0 +1706,0.0000,0.0000,16.8548,16.8551,1 +1707,0.0000,0.0000,16.7697,16.7700,1 +1708,0.0000,0.0000,16.6557,16.6560,0 +1709,0.0000,0.0000,16.7079,16.7082,1 +1710,0.0000,0.0000,15.3792,15.3795,0 +1711,0.0000,0.0000,16.5303,16.5304,0 +1712,0.0000,0.0000,16.1225,16.1226,0 +1713,0.0000,0.0000,16.5756,16.5756,0 +1714,0.0000,0.0000,16.7219,16.7220,1 +1715,0.0000,0.0000,16.6885,16.6886,1 +1716,0.0000,0.0000,16.6462,16.6463,0 +1717,0.0000,0.0000,20.1530,20.1531,1 +1718,0.0000,0.0000,13.3905,13.3905,0 +1719,0.0000,0.0000,16.5421,16.5423,0 +1720,0.0000,0.0000,22.9447,22.9448,1 +1721,0.0000,0.0000,10.3053,10.3055,0 +1722,0.0000,0.0000,18.1067,18.1068,1 +1723,0.0000,0.0000,15.2171,15.2172,0 +1724,0.0000,0.0000,16.6726,16.6726,1 +1725,0.0000,0.0000,16.7676,16.7676,1 +1726,0.0000,0.0000,16.4293,16.4295,0 +1727,0.0000,0.0000,16.1604,16.1605,0 +1728,0.0000,0.0000,1.9205,1.9206,0 +1729,0.0000,0.0000,15.3440,15.3441,0 +1730,0.0000,0.0000,16.9398,16.9399,1 +1731,0.0000,0.0000,16.5759,16.5759,0 +1732,0.0000,0.0000,16.7541,16.7542,1 +1733,0.0000,0.0000,16.6544,16.6544,0 +1734,0.0000,0.0000,16.3097,16.3098,0 +1735,0.0000,0.0000,16.5954,16.5955,0 +1736,0.0000,0.0000,16.7137,16.7138,1 +1737,0.0000,0.0000,18.1191,18.1192,1 +1738,0.0000,0.0000,15.5275,15.5277,0 +1739,0.0000,0.0000,16.7795,16.7796,1 +1740,0.0000,0.0000,16.5439,16.5440,0 +1741,0.0000,0.0000,16.7329,16.7330,1 +1742,0.0000,0.0000,16.5928,16.5929,0 +1743,0.0000,0.0000,16.6202,16.6203,0 +1744,0.0000,0.0000,16.4199,16.4200,0 +1745,0.0000,0.0000,2.0553,2.0557,0 +1746,0.0000,0.0000,16.7450,16.7453,1 +1747,0.0000,0.0000,16.6065,16.6068,0 +1748,0.0000,0.0000,16.6201,16.6204,0 +1749,0.0000,0.0000,16.7279,16.7282,1 +1750,0.0000,0.0000,16.6619,16.6622,0 +1751,0.0000,0.0000,16.6154,16.6157,0 +1752,0.0000,0.0000,16.6512,16.6515,0 +1753,0.0000,0.0000,16.6954,16.6957,1 +1754,0.0000,0.0000,16.6394,16.6397,0 +1755,0.0000,0.0000,16.6906,16.6909,1 +1756,0.0000,0.0000,16.7963,16.7966,1 +1757,0.0000,0.0000,16.6593,16.6596,0 +1758,0.0000,0.0000,16.5529,16.5532,0 +1759,0.0000,0.0000,16.7480,16.7483,1 +1760,0.0000,0.0000,16.6077,16.6080,0 +1761,0.0000,0.0000,16.6498,16.6501,0 +1762,0.0000,0.0000,16.7382,16.7385,1 +1763,0.0000,0.0000,16.7113,16.7116,1 +1764,0.0000,0.0000,16.6772,16.6776,1 +1765,0.0000,0.0000,16.5763,16.5766,0 +1766,0.0000,0.0000,16.7395,16.7398,1 +1767,0.0000,0.0000,16.6678,16.6681,1 +1768,0.0000,0.0000,16.5838,16.5841,0 +1769,0.0000,0.0000,16.9022,16.9025,1 +1770,0.0000,0.0000,16.5792,16.5796,0 +1771,0.0000,0.0000,16.5269,16.5272,0 +1772,0.0000,0.0000,16.9328,16.9331,1 +1773,0.0000,0.0000,15.5083,15.5086,0 +1774,0.0000,0.0000,16.5011,16.5014,0 +1775,0.0000,0.0000,16.6645,16.6647,0 +1776,0.0000,0.0000,16.6480,16.6481,0 +1777,0.0000,0.0000,16.6115,16.6117,0 +1778,0.0000,0.0000,16.7366,16.7368,1 +1779,0.0000,0.0000,16.6467,16.6468,0 +1780,0.0000,0.0000,16.6773,16.6775,1 +1781,0.0000,0.0000,17.8625,17.8627,1 +1782,0.0000,0.0000,16.5902,16.5905,0 +1783,0.0000,0.0000,16.7611,16.7615,1 +1784,0.0000,0.0000,16.6938,16.6941,1 +1785,0.0000,0.0000,16.6758,16.6761,1 +1786,0.0000,0.0000,16.5759,16.5762,0 +1787,0.0000,0.0000,16.7165,16.7168,1 +1788,0.0000,0.0000,16.6663,16.6666,0 +1789,0.0000,0.0000,16.7225,16.7228,1 +1790,0.0000,0.0000,16.6617,16.6620,0 +1791,0.0000,0.0000,16.6150,16.6153,0 +1792,0.0000,0.0000,16.6668,16.6671,1 +1793,0.0000,0.0000,16.6496,16.6499,0 +1794,0.0000,0.0000,16.6695,16.6698,1 +1795,0.0000,0.0000,16.6500,16.6503,0 +1796,0.0000,0.0000,16.6772,16.6775,1 +1797,0.0000,0.0000,16.6383,16.6386,0 +1798,0.0000,0.0000,16.6879,16.6882,1 +1799,0.0000,0.0000,16.6780,16.6783,1 +1800,0.0000,0.0000,16.4958,16.4961,0 +1801,0.0000,0.0000,7.6018,7.6021,0 +1802,0.0000,0.0000,9.3802,9.3805,0 +1803,0.0000,0.0000,16.5834,16.5837,0 +1804,0.0000,0.0000,16.6690,16.6693,1 +1805,0.0000,0.0000,16.6869,16.6872,1 +1806,0.0000,0.0000,16.6401,16.6404,0 +1807,0.0000,0.0000,16.7575,16.7578,1 +1808,0.0000,0.0000,16.5957,16.5960,0 +1809,0.0000,0.0000,16.8400,16.8403,1 +1810,0.0000,0.0000,16.5173,16.5176,0 +1811,0.0000,0.0000,16.6388,16.6391,0 +1812,0.0000,0.0000,16.6818,16.6821,1 +1813,0.0000,0.0000,16.6758,16.6761,1 +1814,0.0000,0.0000,16.6528,16.6531,0 +1815,0.0000,0.0000,16.6321,16.6324,0 +1816,0.0000,0.0000,16.7519,16.7522,1 +1817,0.0000,0.0000,16.5969,16.5972,0 +1818,0.0000,0.0000,16.6765,16.6768,1 +1819,0.0000,0.0000,16.8235,16.8238,1 +1820,0.0000,0.0000,16.5766,16.5769,0 +1821,0.0000,0.0000,16.6589,16.6592,0 +1822,0.0000,0.0000,16.6396,16.6399,0 +1823,0.0000,0.0000,16.6606,16.6609,0 +1824,0.0000,0.0000,16.8003,16.8006,1 +1825,0.0000,0.0000,16.7130,16.7133,1 +1826,0.0000,0.0000,16.6714,16.6718,1 +1827,0.0000,0.0000,16.5694,16.5697,0 +1828,0.0000,0.0000,16.6812,16.6815,1 +1829,0.0000,0.0000,16.6115,16.6118,0 +1830,0.0000,0.0000,16.6565,16.6568,0 +1831,0.0000,0.0000,16.7092,16.7095,1 +1832,0.0000,0.0000,16.6391,16.6394,0 +1833,0.0000,0.0000,16.6815,16.6818,1 +1834,0.0000,0.0000,16.7403,16.7406,1 +1835,0.0000,0.0000,16.7005,16.7008,1 +1836,0.0000,0.0000,16.6031,16.6034,0 +1837,0.0000,0.0000,16.6344,16.6347,0 +1838,0.0000,0.0000,16.7153,16.7156,1 +1839,0.0000,0.0000,16.8057,16.8060,1 +1840,0.0000,0.0000,16.6058,16.6061,0 +1841,0.0000,0.0000,15.1740,15.1742,0 +1842,0.0000,0.0000,16.6849,16.6850,1 +1843,0.0000,0.0000,16.5850,16.5852,0 +1844,0.0000,0.0000,16.7203,16.7206,1 +1845,0.0000,0.0000,17.7059,17.7061,1 +1846,0.0000,0.0000,17.0019,17.0022,1 +1847,0.0000,0.0000,16.7113,16.7116,1 +1848,0.0000,0.0000,16.9767,16.9770,1 +1849,0.0000,0.0000,16.4780,16.4783,0 +1850,0.0000,0.0000,16.6225,16.6228,0 +1851,0.0000,0.0000,16.6484,16.6487,0 +1852,0.0000,0.0000,17.4068,17.4071,1 +1853,0.0000,0.0000,16.0777,16.0780,0 +1854,0.0000,0.0000,16.6416,16.6419,0 +1855,0.0000,0.0000,16.4947,16.4950,0 +1856,0.0000,0.0000,16.8190,16.8193,1 +1857,0.0000,0.0000,16.5993,16.5996,0 +1858,0.0000,0.0000,16.6296,16.6299,0 +1859,0.0000,0.0000,16.7482,16.7484,1 +1860,0.0000,0.0000,16.5648,16.5651,0 +1861,0.0000,0.0000,16.6547,16.6550,0 +1862,0.0000,0.0000,16.7588,16.7591,1 +1863,0.0000,0.0000,16.5906,16.5910,0 +1864,0.0000,0.0000,16.7276,16.7279,1 +1865,0.0000,0.0000,16.6611,16.6614,0 +1866,0.0000,0.0000,16.6440,16.6443,0 +1867,0.0000,0.0000,16.7262,16.7265,1 +1868,0.0000,0.0000,16.5889,16.5892,0 +1869,0.0000,0.0000,16.7075,16.7078,1 +1870,0.0000,0.0000,16.6597,16.6600,0 +1871,0.0000,0.0000,16.6550,16.6553,0 +1872,0.0000,0.0000,16.7123,16.7127,1 +1873,0.0000,0.0000,16.5955,16.5958,0 +1874,0.0000,0.0000,16.7740,16.7743,1 +1875,0.0000,0.0000,16.6276,16.6279,0 +1876,0.0000,0.0000,16.6661,16.6664,0 +1877,0.0000,0.0000,16.7106,16.7109,1 +1878,0.0000,0.0000,16.6422,16.6425,0 +1879,0.0000,0.0000,16.6286,16.6289,0 +1880,0.0000,0.0000,16.6631,16.6634,0 +1881,0.0000,0.0000,16.7070,16.7073,1 +1882,0.0000,0.0000,16.6183,16.6186,0 +1883,0.0000,0.0000,16.4802,16.4805,0 +1884,0.0000,0.0000,7.6567,7.6570,0 +1885,0.0000,0.0000,9.3340,9.3343,0 +1886,0.0000,0.0000,16.6170,16.6174,0 +1887,0.0000,0.0000,16.5849,16.5852,0 +1888,0.0000,0.0000,16.7096,16.7100,1 +1889,0.0000,0.0000,16.6615,16.6618,0 +1890,0.0000,0.0000,16.6730,16.6733,1 +1891,0.0000,0.0000,16.6574,16.6577,0 +1892,0.0000,0.0000,16.7124,16.7127,1 +1893,0.0000,0.0000,16.6729,16.6732,1 +1894,0.0000,0.0000,16.6473,16.6476,0 +1895,0.0000,0.0000,16.6998,16.7001,1 +1896,0.0000,0.0000,16.6633,16.6636,0 +1897,0.0000,0.0000,16.6281,16.6284,0 +1898,0.0000,0.0000,16.6694,16.6697,1 +1899,0.0000,0.0000,16.4010,16.4013,0 +1900,0.0000,0.0000,7.4836,7.4839,0 +1901,0.0000,0.0000,9.6717,9.6720,0 +1902,0.0000,0.0000,16.4979,16.4982,0 +1903,0.0000,0.0000,16.6339,16.6342,0 +1904,0.0000,0.0000,16.6745,16.6748,1 +1905,0.0000,0.0000,16.6754,16.6757,1 +1906,0.0000,0.0000,16.6524,16.6527,0 +1907,0.0000,0.0000,16.6935,16.6938,1 +1908,0.0000,0.0000,16.6884,16.6887,1 +1909,0.0000,0.0000,16.7305,16.7308,1 +1910,0.0000,0.0000,16.6056,16.6059,0 +1911,0.0000,0.0000,16.7163,16.7166,1 +1912,0.0000,0.0000,16.6933,16.6936,1 +1913,0.0000,0.0000,16.5568,16.5571,0 +1914,0.0000,0.0000,16.7246,16.7249,1 +1915,0.0000,0.0000,16.7897,16.7900,1 +1916,0.0000,0.0000,16.6508,16.6511,0 +1917,0.0000,0.0000,16.5042,16.5045,0 +1918,0.0000,0.0000,16.7149,16.7152,1 +1919,0.0000,0.0000,16.6513,16.6516,0 +1920,0.0000,0.0000,16.6901,16.6904,1 +1921,0.0000,0.0000,16.6740,16.6743,1 +1922,0.0000,0.0000,16.6834,16.6837,1 +1923,0.0000,0.0000,16.6380,16.6383,0 +1924,0.0000,0.0000,16.6539,16.6542,0 +1925,0.0000,0.0000,16.7110,16.7113,1 +1926,0.0000,0.0000,16.6759,16.6762,1 +1927,0.0000,0.0000,16.6413,16.6416,0 +1928,0.0000,0.0000,16.7140,16.7143,1 +1929,0.0000,0.0000,16.6524,16.6527,0 +1930,0.0000,0.0000,16.6944,16.6947,1 +1931,0.0000,0.0000,16.7137,16.7141,1 +1932,0.0000,0.0000,16.7004,16.7007,1 +1933,0.0000,0.0000,16.6587,16.6590,0 +1934,0.0000,0.0000,16.6186,16.6189,0 +1935,0.0000,0.0000,16.6385,16.6388,0 +1936,0.0000,0.0000,16.6487,16.6490,0 +1937,0.0000,0.0000,16.7460,16.7463,1 +1938,0.0000,0.0000,16.6369,16.6372,0 +1939,0.0000,0.0000,16.6501,16.6504,0 +1940,0.0000,0.0000,16.7184,16.7187,1 +1941,0.0000,0.0000,16.6181,16.6184,0 +1942,0.0000,0.0000,16.6340,16.6343,0 +1943,0.0000,0.0000,16.6953,16.6956,1 +1944,0.0000,0.0000,16.6259,16.6262,0 +1945,0.0000,0.0000,16.7225,16.7228,1 +1946,0.0000,0.0000,16.7360,16.7363,1 +1947,0.0000,0.0000,16.6596,16.6600,0 +1948,0.0000,0.0000,16.7006,16.7009,1 +1949,0.0000,0.0000,16.7069,16.7072,1 +1950,0.0000,0.0000,16.6036,16.6039,0 +1951,0.0000,0.0000,16.6174,16.6177,0 +1952,0.0000,0.0000,16.6764,16.6767,1 +1953,0.0000,0.0000,16.6916,16.6919,1 +1954,0.0000,0.0000,16.6366,16.6369,0 +1955,0.0000,0.0000,16.7355,16.7358,1 +1956,0.0000,0.0000,16.5935,16.5938,0 +1957,0.0000,0.0000,16.7360,16.7363,1 +1958,0.0000,0.0000,16.7018,16.7021,1 +1959,0.0000,0.0000,16.6269,16.6272,0 +1960,0.0000,0.0000,16.6433,16.6436,0 +1961,0.0000,0.0000,16.6647,16.6650,0 +1962,0.0000,0.0000,16.6600,16.6604,0 +1963,0.0000,0.0000,16.7076,16.7079,1 +1964,0.0000,0.0000,16.7771,16.7774,1 +1965,0.0000,0.0000,16.5988,16.5991,0 +1966,0.0000,0.0000,16.6120,16.6123,0 +1967,0.0000,0.0000,16.6759,16.6762,1 +1968,0.0000,0.0000,16.6275,16.6278,0 +1969,0.0000,0.0000,16.7039,16.7043,1 +1970,0.0000,0.0000,16.8504,16.8507,1 +1971,0.0000,0.0000,16.6300,16.6303,0 +1972,0.0000,0.0000,16.6251,16.6255,0 +1973,0.0000,0.0000,16.6534,16.6537,0 +1974,0.0000,0.0000,16.5577,16.5580,0 +1975,0.0000,0.0000,16.7140,16.7143,1 +1976,0.0000,0.0000,16.7237,16.7241,1 +1977,0.0000,0.0000,16.6460,16.6463,0 +1978,0.0000,0.0000,16.6246,16.6249,0 +1979,0.0000,0.0000,16.7269,16.7272,1 +1980,0.0000,0.0000,16.7300,16.7303,1 +1981,0.0000,0.0000,16.6575,16.6578,0 +1982,0.0000,0.0000,16.6949,16.6952,1 +1983,0.0000,0.0000,16.5886,16.5889,0 +1984,0.0000,0.0000,16.7018,16.7021,1 +1985,0.0000,0.0000,16.6133,16.6136,0 +1986,0.0000,0.0000,16.6673,16.6676,1 +1987,0.0000,0.0000,16.7650,16.7653,1 +1988,0.0000,0.0000,16.5771,16.5774,0 +1989,0.0000,0.0000,16.7338,16.7341,1 +1990,0.0000,0.0000,16.6374,16.6377,0 +1991,0.0000,0.0000,16.6955,16.6958,1 +1992,0.0000,0.0000,16.6166,16.6169,0 +1993,0.0000,0.0000,16.6810,16.6813,1 +1994,0.0000,0.0000,16.7251,16.7254,1 +1995,0.0000,0.0000,16.5988,16.5992,0 +1996,0.0000,0.0000,16.7111,16.7114,1 +1997,0.0000,0.0000,16.6457,16.6460,0 +1998,0.0000,0.0000,16.6270,16.6273,0 +1999,0.0000,0.0000,16.7697,16.7700,1 +2000,0.0000,0.0000,16.6320,16.6323,0 +2001,0.0000,0.0000,16.5904,16.5907,0 +2002,0.0000,0.0000,16.7372,16.7375,1 +2003,0.0000,0.0000,16.7206,16.7209,1 +2004,0.0000,0.0000,16.6539,16.6542,0 +2005,0.0000,0.0000,16.6383,16.6386,0 +2006,0.0000,0.0000,16.7241,16.7244,1 +2007,0.0000,0.0000,16.6038,16.6040,0 +2008,0.0000,0.0000,16.6626,16.6629,0 +2009,0.0000,0.0000,16.6738,16.6741,1 +2010,0.0000,0.0000,16.6937,16.6940,1 +2011,0.0000,0.0000,16.6979,16.6982,1 +2012,0.0000,0.0000,16.6232,16.6236,0 +2013,0.0000,0.0000,16.7436,16.7439,1 +2014,0.0000,0.0000,16.6182,16.6185,0 +2015,0.0000,0.0000,16.6483,16.6485,0 +2016,0.0000,0.0000,16.6592,16.6595,0 +2017,0.0000,0.0000,16.6404,16.6407,0 +2018,0.0000,0.0000,16.8374,16.8377,1 +2019,0.0000,0.0000,16.5746,16.5749,0 +2020,0.0000,0.0000,16.6554,16.6557,0 +2021,0.0000,0.0000,16.7000,16.7003,1 +2022,0.0000,0.0000,16.6144,16.6147,0 +2023,0.0000,0.0000,16.5586,16.5589,0 +2024,0.0000,0.0000,7.6478,7.6481,0 +2025,0.0000,0.0000,9.2056,9.2059,0 +2026,0.0000,0.0000,16.6727,16.6731,1 +2027,0.0000,0.0000,16.6956,16.6959,1 +2028,0.0000,0.0000,16.6261,16.6264,0 +2029,0.0000,0.0000,16.7024,16.7027,1 +2030,0.0000,0.0000,16.6096,16.6099,0 +2031,0.0000,0.0000,16.7300,16.7303,1 +2032,0.0000,0.0000,16.7051,16.7054,1 +2033,0.0000,0.0000,16.5658,16.5661,0 +2034,0.0000,0.0000,16.8200,16.8203,1 +2035,0.0000,0.0000,16.7795,16.7798,1 +2036,0.0000,0.0000,16.4781,16.4784,0 +2037,0.0000,0.0000,16.7299,16.7303,1 +2038,0.0000,0.0000,15.3868,15.3871,0 +2039,0.0000,0.0000,16.6340,16.6341,0 +2040,0.0000,0.0000,16.7040,16.7042,1 +2041,0.0000,0.0000,17.8682,17.8684,1 +2042,0.0000,0.0000,16.6626,16.6630,0 +2043,0.0000,0.0000,16.6609,16.6612,0 +2044,0.0000,0.0000,16.7874,16.7877,1 +2045,0.0000,0.0000,16.6457,16.6460,0 +2046,0.0000,0.0000,16.6891,16.6894,1 +2047,0.0000,0.0000,16.5872,16.5875,0 +2048,0.0000,0.0000,16.6401,16.6404,0 +2049,0.0000,0.0000,16.6896,16.6899,1 +2050,0.0000,0.0000,16.6763,16.6766,1 +2051,0.0000,0.0000,16.6213,16.6216,0 +2052,0.0000,0.0000,16.6910,16.6913,1 +2053,0.0000,0.0000,16.7080,16.7083,1 +2054,0.0000,0.0000,16.6157,16.6160,0 +2055,0.0000,0.0000,16.6242,16.6245,0 +2056,0.0000,0.0000,16.7888,16.7891,1 +2057,0.0000,0.0000,16.6210,16.6213,0 +2058,0.0000,0.0000,16.6994,16.6997,1 +2059,0.0000,0.0000,16.7240,16.7243,1 +2060,0.0000,0.0000,16.6531,16.6534,0 +2061,0.0000,0.0000,16.5789,16.5792,0 +2062,0.0000,0.0000,16.6986,16.6989,1 +2063,0.0000,0.0000,16.7265,16.7268,1 +2064,0.0000,0.0000,16.6506,16.6509,0 +2065,0.0000,0.0000,16.8099,16.8102,1 +2066,0.0000,0.0000,16.5542,16.5545,0 +2067,0.0000,0.0000,16.6481,16.6484,0 +2068,0.0000,0.0000,16.6945,16.7242,1 +2069,0.0000,0.0000,16.6025,16.6028,0 +2070,0.0000,0.0000,16.6221,16.6225,0 +2071,0.0000,0.0000,16.7631,16.7634,1 +2072,0.0000,0.0000,16.6401,16.6404,0 +2073,0.0000,0.0000,16.8875,16.8878,1 +2074,0.0000,0.0000,16.4729,16.4732,0 +2075,0.0000,0.0000,16.6666,16.6669,1 +2076,0.0000,0.0000,16.6687,16.6690,1 +2077,0.0000,0.0000,16.7167,16.7170,1 +2078,0.0000,0.0000,16.6642,16.6645,0 +2079,0.0000,0.0000,16.6275,16.6278,0 +2080,0.0000,0.0000,16.7158,16.7161,1 +2081,0.0000,0.0000,16.6060,16.6063,0 +2082,0.0000,0.0000,16.6465,16.6468,0 +2083,0.0000,0.0000,16.6836,16.6839,1 +2084,0.0000,0.0000,16.6719,16.6722,1 +2085,0.0000,0.0000,16.7754,16.7757,1 +2086,0.0000,0.0000,16.5379,16.5382,0 +2087,0.0000,0.0000,16.7563,16.7568,1 +2088,0.0000,0.0000,16.6721,16.6724,1 +2089,0.0000,0.0000,16.6558,16.6562,0 +2090,0.0000,0.0000,16.7747,16.7750,1 +2091,0.0000,0.0000,16.5643,16.5646,0 +2092,0.0000,0.0000,16.6541,16.6544,0 +2093,0.0000,0.0000,16.7325,16.7328,1 +2094,0.0000,0.0000,16.6441,16.6444,0 +2095,0.0000,0.0000,16.5580,16.5583,0 +2096,0.0000,0.0000,16.8316,16.8320,1 +2097,0.0000,0.0000,16.5623,16.5626,0 +2098,0.0000,0.0000,16.6777,16.6780,1 +2099,0.0000,0.0000,16.7076,16.7079,1 +2100,0.0000,0.0000,16.6910,16.6912,1 +2101,0.0000,0.0000,16.6939,16.6942,1 +2102,0.0000,0.0000,16.7017,16.7020,1 +2103,0.0000,0.0000,16.6143,16.6147,0 +2104,0.0000,0.0000,16.6024,16.6027,0 +2105,0.0000,0.0000,16.7357,16.7360,1 +2106,0.0000,0.0000,16.7009,16.7012,1 +2107,0.0000,0.0000,16.6574,16.6577,0 +2108,0.0000,0.0000,16.6007,16.6010,0 +2109,0.0000,0.0000,16.6769,16.6772,1 +2110,0.0000,0.0000,16.6699,16.6702,1 +2111,0.0000,0.0000,16.7311,16.7314,1 +2112,0.0000,0.0000,16.6947,16.6950,1 +2113,0.0000,0.0000,16.5269,16.5273,0 +2114,0.0000,0.0000,16.8416,16.8420,1 +2115,0.0000,0.0000,18.8585,18.8588,1 +2116,0.0000,0.0000,14.4420,14.4423,0 +2117,0.0000,0.0000,16.6770,16.6773,1 +2118,0.0000,0.0000,16.5971,16.5974,0 +2119,0.0000,0.0000,16.7145,16.7148,1 +2120,0.0000,0.0000,16.6278,16.6281,0 +2121,0.0000,0.0000,16.7355,16.7358,1 +2122,0.0000,0.0000,16.6197,16.6200,0 +2123,0.0000,0.0000,16.7413,16.7416,1 +2124,0.0000,0.0000,16.6012,16.6015,0 +2125,0.0000,0.0000,16.6665,16.6668,1 +2126,0.0000,0.0000,16.6729,16.6732,1 +2127,0.0000,0.0000,16.6878,16.6881,1 +2128,0.0000,0.0000,16.6053,16.6056,0 +2129,0.0000,0.0000,16.6604,16.6607,0 +2130,0.0000,0.0000,16.6759,16.6762,1 +2131,0.0000,0.0000,16.7702,16.7705,1 +2132,0.0000,0.0000,16.6154,16.6158,0 +2133,0.0000,0.0000,16.7114,16.7117,1 +2134,0.0000,0.0000,16.6080,16.6083,0 +2135,0.0000,0.0000,16.6587,16.6591,0 +2136,0.0000,0.0000,16.6457,16.6460,0 +2137,0.0000,0.0000,16.6782,16.6785,1 +2138,0.0000,0.0000,16.8107,16.8110,1 +2139,0.0000,0.0000,16.5665,16.5668,0 +2140,0.0000,0.0000,16.4336,16.4339,0 +2141,0.0000,0.0000,7.7381,7.7384,0 +2142,0.0000,0.0000,9.1880,9.1883,0 +2143,0.0000,0.0000,16.6646,16.6649,0 +2144,0.0000,0.0000,16.6746,16.6749,1 +2145,0.0000,0.0000,16.7127,16.7130,1 +2146,0.0000,0.0000,16.6166,16.6169,0 +2147,0.0000,0.0000,16.6466,16.6469,0 +2148,0.0000,0.0000,16.6154,16.6157,0 +2149,0.0000,0.0000,16.7648,16.7651,1 +2150,0.0000,0.0000,16.6477,16.6480,0 +2151,0.0000,0.0000,16.6889,16.6892,1 +2152,0.0000,0.0000,16.6518,16.6521,0 +2153,0.0000,0.0000,16.6502,16.6505,0 +2154,0.0000,0.0000,16.7492,16.7495,1 +2155,0.0000,0.0000,16.7358,16.7361,1 +2156,0.0000,0.0000,16.6693,16.6696,1 +2157,0.0000,0.0000,16.6279,16.6282,0 +2158,0.0000,0.0000,16.6372,16.6375,0 +2159,0.0000,0.0000,16.6195,16.6198,0 +2160,0.0000,0.0000,16.6345,16.6348,0 +2161,0.0000,0.0000,16.7594,16.7597,1 +2162,0.0000,0.0000,16.6271,16.6274,0 +2163,0.0000,0.0000,16.6044,16.6047,0 +2164,0.0000,0.0000,16.7782,16.7785,1 +2165,0.0000,0.0000,16.4109,16.4112,0 +2166,0.0000,0.0000,7.7423,7.7426,0 +2167,0.0000,0.0000,9.2285,9.2289,0 +2168,0.0000,0.0000,16.4209,16.4212,0 +2169,0.0000,0.0000,15.1423,15.1424,0 +2170,0.0000,0.0000,16.6487,16.6488,0 +2171,0.0000,0.0000,16.6646,16.6647,0 +2172,0.0000,0.0000,8.5206,8.5207,0 +2173,0.0000,0.0000,8.2948,8.2949,0 +2174,0.0000,0.0000,16.6171,16.6172,0 +2175,0.0000,0.0000,16.6893,16.6894,1 +2176,0.0000,0.0000,16.6525,16.6526,0 +2177,0.0000,0.0000,18.2921,18.2924,1 +2178,0.0000,0.0000,16.7285,16.7288,1 +2179,0.0000,0.0000,16.6190,16.6193,0 +2180,0.0000,0.0000,16.6483,16.6486,0 +2181,0.0000,0.0000,16.7676,16.7679,1 +2182,0.0000,0.0000,16.6028,16.6031,0 +2183,0.0000,0.0000,16.7724,16.7727,1 +2184,0.0000,0.0000,16.7160,16.7163,1 +2185,0.0000,0.0000,16.4978,16.4981,0 +2186,0.0000,0.0000,16.6958,16.6962,1 +2187,0.0000,0.0000,16.6366,16.6369,0 +2188,0.0000,0.0000,16.8241,16.8244,1 +2189,0.0000,0.0000,16.6336,16.6339,0 +2190,0.0000,0.0000,16.6117,16.6120,0 +2191,0.0000,0.0000,16.6585,16.6589,0 +2192,0.0000,0.0000,16.6224,16.6227,0 +2193,0.0000,0.0000,16.6443,16.6446,0 +2194,0.0000,0.0000,16.7788,16.7791,1 +2195,0.0000,0.0000,16.7089,16.7092,1 +2196,0.0000,0.0000,16.5718,16.5721,0 +2197,0.0000,0.0000,16.7308,16.7311,1 +2198,0.0000,0.0000,16.6475,16.6479,0 +2199,0.0000,0.0000,16.6978,16.6981,1 +2200,0.0000,0.0000,16.6215,16.6218,0 +2201,0.0000,0.0000,16.6846,16.6849,1 +2202,0.0000,0.0000,16.7036,16.7039,1 +2203,0.0000,0.0000,16.6814,16.6817,1 +2204,0.0000,0.0000,16.6449,16.6452,0 +2205,0.0000,0.0000,16.6552,16.6555,0 +2206,0.0000,0.0000,16.6479,16.6482,0 +2207,0.0000,0.0000,16.5139,16.5142,0 +2208,0.0000,0.0000,7.7707,7.7710,0 +2209,0.0000,0.0000,9.1115,9.1118,0 +2210,0.0000,0.0000,16.2932,16.2935,0 +2211,0.0000,0.0000,7.9228,7.9231,0 +2212,0.0000,0.0000,9.1457,9.1460,0 +2213,0.0000,0.0000,16.5894,16.5898,0 +2214,0.0000,0.0000,16.7290,16.7293,1 +2215,0.0000,0.0000,16.6648,16.6652,0 +2216,0.0000,0.0000,16.6892,16.6895,1 +2217,0.0000,0.0000,16.6732,16.6735,1 +2218,0.0000,0.0000,16.6161,16.6164,0 +2219,0.0000,0.0000,16.6823,16.6826,1 +2220,0.0000,0.0000,16.9419,16.9422,1 +2221,0.0000,0.0000,16.4159,16.4162,0 +2222,0.0000,0.0000,16.7780,16.7783,1 +2223,0.0000,0.0000,16.5869,16.5872,0 +2224,0.0000,0.0000,16.5755,16.5758,0 +2225,0.0000,0.0000,16.3666,16.3670,0 +2226,0.0000,0.0000,7.7788,7.7791,0 +2227,0.0000,0.0000,9.3103,9.3106,0 +2228,0.0000,0.0000,16.6442,16.6445,0 +2229,0.0000,0.0000,16.5999,16.6002,0 +2230,0.0000,0.0000,16.7405,16.7408,1 +2231,0.0000,0.0000,16.6472,16.6474,0 +2232,0.0000,0.0000,16.6973,16.6976,1 +2233,0.0000,0.0000,16.6358,16.6362,0 +2234,0.0000,0.0000,16.6688,16.6691,1 +2235,0.0000,0.0000,16.5987,16.5990,0 +2236,0.0000,0.0000,16.6895,16.6898,1 +2237,0.0000,0.0000,16.6643,16.6646,0 +2238,0.0000,0.0000,16.7100,16.7103,1 +2239,0.0000,0.0000,16.6647,16.6649,0 +2240,0.0000,0.0000,16.6528,16.6531,0 +2241,0.0000,0.0000,16.6664,16.6667,1 +2242,0.0000,0.0000,16.6493,16.6496,0 +2243,0.0000,0.0000,7.3656,7.3659,0 +2244,0.0000,0.0000,9.4112,9.4115,0 +2245,0.0000,0.0000,16.6013,16.6016,0 +2246,0.0000,0.0000,16.6735,16.6738,1 +2247,0.0000,0.0000,16.7101,16.7104,1 +2248,0.0000,0.0000,16.6345,16.6348,0 +2249,0.0000,0.0000,16.7547,16.7550,1 +2250,0.0000,0.0000,16.5747,16.5750,0 +2251,0.0000,0.0000,16.6745,16.6749,1 +2252,0.0000,0.0000,16.7046,16.7049,1 +2253,0.0000,0.0000,16.6241,16.6244,0 +2254,0.0000,0.0000,16.6635,16.6638,0 +2255,0.0000,0.0000,16.6932,16.6935,1 +2256,0.0000,0.0000,16.6616,16.6619,0 +2257,0.0000,0.0000,16.6832,16.6835,1 +2258,0.0000,0.0000,16.7078,16.7081,1 +2259,0.0000,0.0000,16.6220,16.6223,0 +2260,0.0000,0.0000,16.6595,16.6598,0 +2261,0.0000,0.0000,16.9050,16.9053,1 +2262,0.0000,0.0000,16.5113,16.5116,0 +2263,0.0000,0.0000,16.6336,16.6339,0 +2264,0.0000,0.0000,16.3209,16.3212,0 +2265,0.0000,0.0000,7.5716,7.5719,0 +2266,0.0000,0.0000,9.5442,9.5445,0 +2267,0.0000,0.0000,16.6414,16.6417,0 +2268,0.0000,0.0000,16.4956,16.4959,0 +2269,0.0000,0.0000,16.7620,16.7623,1 +2270,0.0000,0.0000,16.6664,16.6667,1 +2271,0.0000,0.0000,16.6773,16.6776,1 +2272,0.0000,0.0000,16.6775,16.6778,1 +2273,0.0000,0.0000,16.6496,16.6499,0 +2274,0.0000,0.0000,16.7481,16.7484,1 +2275,0.0000,0.0000,16.5946,16.5949,0 +2276,0.0000,0.0000,16.6934,16.6937,1 +2277,0.0000,0.0000,16.6970,16.6973,1 +2278,0.0000,0.0000,16.5991,16.5994,0 +2279,0.0000,0.0000,16.6959,16.6961,1 +2280,0.0000,0.0000,16.7654,16.7657,1 +2281,0.0000,0.0000,16.6099,16.6102,0 +2282,0.0000,0.0000,16.5715,16.5719,0 +2283,0.0000,0.0000,16.7036,16.7039,1 +2284,0.0000,0.0000,16.6779,16.6782,1 +2285,0.0000,0.0000,16.7132,16.7135,1 +2286,0.0000,0.0000,16.6996,16.7000,1 +2287,0.0000,0.0000,16.6582,16.6585,0 +2288,0.0000,0.0000,16.6230,16.6233,0 +2289,0.0000,0.0000,16.7386,16.7389,1 +2290,0.0000,0.0000,16.6660,16.6663,0 +2291,0.0000,0.0000,16.6284,16.6287,0 +2292,0.0000,0.0000,16.7847,16.7849,1 +2293,0.0000,0.0000,16.5605,16.5608,0 +2294,0.0000,0.0000,16.8036,16.8039,1 +2295,0.0000,0.0000,16.5534,16.5537,0 +2296,0.0000,0.0000,16.6977,16.6980,1 +2297,0.0000,0.0000,16.6091,16.6094,0 +2298,0.0000,0.0000,16.7000,16.7003,1 +2299,0.0000,0.0000,16.7001,16.7004,1 +2300,0.0000,0.0000,16.6371,16.6374,0 +2301,0.0000,0.0000,16.6815,16.6818,1 +2302,0.0000,0.0000,16.7016,16.7019,1 +2303,0.0000,0.0000,16.6401,16.6404,0 +2304,0.0000,0.0000,16.6996,16.6999,1 +2305,0.0000,0.0000,16.6379,16.6382,0 +2306,0.0000,0.0000,16.6343,16.6346,0 +2307,0.0000,0.0000,16.6432,16.6435,0 +2308,0.0000,0.0000,16.6845,16.6848,1 +2309,0.0000,0.0000,16.7297,16.7300,1 +2310,0.0000,0.0000,16.6136,16.6139,0 +2311,0.0000,0.0000,16.7492,16.7495,1 +2312,0.0000,0.0000,16.6067,16.6070,0 +2313,0.0000,0.0000,16.6950,16.6953,1 +2314,0.0000,0.0000,16.6653,16.6656,0 +2315,0.0000,0.0000,16.6110,16.6113,0 +2316,0.0000,0.0000,16.6956,16.6959,1 +2317,0.0000,0.0000,16.7340,16.7343,1 +2318,0.0000,0.0000,16.6843,16.6846,1 +2319,0.0000,0.0000,16.6962,16.6965,1 +2320,0.0000,0.0000,16.6091,16.6094,0 +2321,0.0000,0.0000,16.6108,16.6111,0 +2322,0.0000,0.0000,16.7612,16.7615,1 +2323,0.0000,0.0000,16.7006,16.7009,1 +2324,0.0000,0.0000,16.5560,16.5563,0 +2325,0.0000,0.0000,16.7521,16.7524,1 +2326,0.0000,0.0000,16.7069,16.7072,1 +2327,0.0000,0.0000,16.5416,16.5419,0 +2328,0.0000,0.0000,16.7683,16.7686,1 +2329,0.0000,0.0000,16.6096,16.6099,0 +2330,0.0000,0.0000,16.3185,16.3187,0 +2331,0.0000,0.0000,7.7932,7.7934,0 +2332,0.0000,0.0000,7.9216,7.9218,0 +2333,0.0000,0.0000,16.6556,16.6557,0 +2334,0.0000,0.0000,16.6617,16.6618,0 +2335,0.0000,0.0000,16.6565,16.6567,0 +2336,0.0000,0.0000,16.6600,16.6602,0 +2337,0.0000,0.0000,16.6188,16.6189,0 +2338,0.0000,0.0000,16.7118,16.7119,1 +2339,0.0000,0.0000,16.6666,16.6668,1 +2340,0.0000,0.0000,16.6882,16.6883,1 +2341,0.0000,0.0000,18.0700,18.0702,1 +2342,0.0000,0.0000,16.8043,16.8046,1 +2343,0.0000,0.0000,16.5041,16.5044,0 +2344,0.0000,0.0000,17.0341,17.0344,1 +2345,0.0000,0.0000,16.4838,16.4842,0 +2346,0.0000,0.0000,16.3831,16.3834,0 +2347,0.0000,0.0000,7.7037,7.7040,0 +2348,0.0000,0.0000,9.1402,9.1405,0 +2349,0.0000,0.0000,16.6743,16.6746,1 +2350,0.0000,0.0000,16.6999,16.7003,1 +2351,0.0000,0.0000,16.6824,16.6827,1 +2352,0.0000,0.0000,16.5693,16.5696,0 +2353,0.0000,0.0000,16.6491,16.6494,0 +2354,0.0000,0.0000,16.6871,16.6874,1 +2355,0.0000,0.0000,16.6606,16.6609,0 +2356,0.0000,0.0000,16.7559,16.7562,1 +2357,0.0000,0.0000,16.5917,16.5920,0 +2358,0.0000,0.0000,16.7176,16.7179,1 +2359,0.0000,0.0000,16.6082,16.6085,0 +2360,0.0000,0.0000,16.7751,16.7754,1 +2361,0.0000,0.0000,16.5622,16.5625,0 +2362,0.0000,0.0000,16.7289,16.7293,1 +2363,0.0000,0.0000,16.7863,16.7866,1 +2364,0.0000,0.0000,16.5501,16.5504,0 +2365,0.0000,0.0000,16.7295,16.7298,1 +2366,0.0000,0.0000,16.6209,16.6212,0 +2367,0.0000,0.0000,16.6856,16.6859,1 +2368,0.0000,0.0000,16.6232,16.6235,0 +2369,0.0000,0.0000,16.7107,16.7110,1 +2370,0.0000,0.0000,16.6384,16.6387,0 +2371,0.0000,0.0000,16.6334,16.6337,0 +2372,0.0000,0.0000,16.6299,16.6302,0 +2373,0.0000,0.0000,16.7300,16.7303,1 +2374,0.0000,0.0000,16.6984,16.6987,1 +2375,0.0000,0.0000,16.6511,16.6514,0 +2376,0.0000,0.0000,15.2735,15.2737,0 +2377,0.0000,0.0000,16.6675,16.6677,1 +2378,0.0000,0.0000,18.0585,18.0587,1 +2379,0.0000,0.0000,16.7668,16.7671,1 +2380,0.0000,0.0000,16.7028,16.7031,1 +2381,0.0000,0.0000,16.6673,16.6676,1 +2382,0.0000,0.0000,16.6222,16.6225,0 +2383,0.0000,0.0000,16.6517,16.6520,0 +2384,0.0000,0.0000,16.6481,16.6484,0 +2385,0.0000,0.0000,16.6835,16.6838,1 +2386,0.0000,0.0000,16.7034,16.7037,1 +2387,0.0000,0.0000,16.5807,16.5810,0 +2388,0.0000,0.0000,16.7191,16.7194,1 +2389,0.0000,0.0000,16.6383,16.6386,0 +2390,0.0000,0.0000,16.7840,16.7843,1 +2391,0.0000,0.0000,16.5923,16.5926,0 +2392,0.0000,0.0000,15.4556,15.4559,0 +2393,0.0000,0.0000,16.6729,16.6732,1 +2394,0.0000,0.0000,16.6664,16.6665,0 +2395,0.0000,0.0000,16.6276,16.6278,0 +2396,0.0000,0.0000,17.9265,17.9267,1 +2397,0.0000,0.0000,16.7086,16.7089,1 +2398,0.0000,0.0000,16.6586,16.6589,0 +2399,0.0000,0.0000,16.3659,16.3662,0 +2400,0.0000,0.0000,7.8628,7.8631,0 +2401,0.0000,0.0000,9.0659,9.0662,0 +2402,0.0000,0.0000,16.7668,16.7672,1 +2403,0.0000,0.0000,16.6365,16.6368,0 +2404,0.0000,0.0000,16.5670,16.5673,0 +2405,0.0000,0.0000,16.8048,16.8051,1 +2406,0.0000,0.0000,16.8947,16.8951,1 +2407,0.0000,0.0000,16.3838,16.3841,0 +2408,0.0000,0.0000,16.6093,16.6096,0 +2409,0.0000,0.0000,16.6756,16.6759,1 +2410,0.0000,0.0000,16.5647,16.5650,0 +2411,0.0000,0.0000,7.7301,7.7304,0 +2412,0.0000,0.0000,9.1757,9.1760,0 +2413,0.0000,0.0000,16.6958,16.6961,1 +2414,0.0000,0.0000,16.5686,16.5689,0 +2415,0.0000,0.0000,16.7697,16.7700,1 +2416,0.0000,0.0000,16.6116,16.6119,0 +2417,0.0000,0.0000,16.6089,16.6092,0 +2418,0.0000,0.0000,16.6728,16.6731,1 +2419,0.0000,0.0000,16.6609,16.6612,0 +2420,0.0000,0.0000,16.6659,16.6662,0 +2421,0.0000,0.0000,16.6644,16.6647,0 +2422,0.0000,0.0000,16.6560,16.6563,0 +2423,0.0000,0.0000,16.7386,16.7389,1 +2424,0.0000,0.0000,16.6916,16.6919,1 +2425,0.0000,0.0000,16.5962,16.5965,0 +2426,0.0000,0.0000,16.6375,16.6378,0 +2427,0.0000,0.0000,16.6537,16.6540,0 +2428,0.0000,0.0000,16.6480,16.6484,0 +2429,0.0000,0.0000,16.7928,16.7931,1 +2430,0.0000,0.0000,16.6751,16.6755,1 +2431,0.0000,0.0000,16.7080,16.7083,1 +2432,0.0000,0.0000,16.5802,16.5805,0 +2433,0.0000,0.0000,16.6668,16.6672,1 +2434,0.0000,0.0000,16.6490,16.6493,0 +2435,0.0000,0.0000,16.6783,16.6786,1 +2436,0.0000,0.0000,16.7247,16.7250,1 +2437,0.0000,0.0000,16.7280,16.7284,1 +2438,0.0000,0.0000,16.5808,16.5811,0 +2439,0.0000,0.0000,16.7145,16.7149,1 +2440,0.0000,0.0000,16.5898,16.5901,0 +2441,0.0000,0.0000,16.6994,16.6997,1 +2442,0.0000,0.0000,16.6643,16.6646,0 +2443,0.0000,0.0000,16.6761,16.6764,1 +2444,0.0000,0.0000,16.6726,16.6729,1 +2445,0.0000,0.0000,16.7477,16.7480,1 +2446,0.0000,0.0000,16.6975,16.6978,1 +2447,0.0000,0.0000,16.5943,16.5946,0 +2448,0.0000,0.0000,16.9160,16.9163,1 +2449,0.0000,0.0000,16.6234,16.6238,0 +2450,0.0000,0.0000,16.5301,16.5305,0 +2451,0.0000,0.0000,15.4320,15.4322,0 +2452,0.0000,0.0000,16.7577,16.7580,1 +2453,0.0000,0.0000,8.6739,8.6742,0 +2454,0.0000,0.0000,9.1486,9.1489,0 +2455,0.0000,0.0000,16.6492,16.6496,0 +2456,0.0000,0.0000,16.6338,16.6341,0 +2457,0.0000,0.0000,16.6587,16.6590,0 +2458,0.0000,0.0000,16.7655,16.7658,1 +2459,0.0000,0.0000,16.5973,16.5977,0 +2460,0.0000,0.0000,16.6280,16.6283,0 +2461,0.0000,0.0000,16.4825,16.4828,0 +2462,0.0000,0.0000,7.6483,7.6486,0 +2463,0.0000,0.0000,9.3168,9.3171,0 +2464,0.0000,0.0000,16.7393,16.7396,1 +2465,0.0000,0.0000,16.6511,16.6513,0 +2466,0.0000,0.0000,16.6140,16.6143,0 +2467,0.0000,0.0000,16.4051,16.4054,0 +2468,0.0000,0.0000,7.8024,7.8027,0 +2469,0.0000,0.0000,9.0827,9.0830,0 +2470,0.0000,0.0000,16.5166,16.5169,0 +2471,0.0000,0.0000,7.6579,7.6582,0 +2472,0.0000,0.0000,9.2390,9.2393,0 +2473,0.0000,0.0000,16.6487,16.6490,0 +2474,0.0000,0.0000,16.5391,16.5394,0 +2475,0.0000,0.0000,16.7688,16.7691,1 +2476,0.0000,0.0000,16.7640,16.7644,1 +2477,0.0000,0.0000,16.5486,16.5489,0 +2478,0.0000,0.0000,16.6405,16.6408,0 +2479,0.0000,0.0000,16.6561,16.6564,0 +2480,0.0000,0.0000,16.5856,16.5859,0 +2481,0.0000,0.0000,7.3680,7.3683,0 +2482,0.0000,0.0000,9.4655,9.4658,0 +2483,0.0000,0.0000,16.7100,16.7103,1 +2484,0.0000,0.0000,16.6361,16.6364,0 +2485,0.0000,0.0000,16.5890,16.5893,0 +2486,0.0000,0.0000,16.6451,16.6454,0 +2487,0.0000,0.0000,16.7580,16.7583,1 +2488,0.0000,0.0000,16.6017,16.6020,0 +2489,0.0000,0.0000,16.7232,16.7235,1 +2490,0.0000,0.0000,16.6477,16.6480,0 +2491,0.0000,0.0000,16.6586,16.6589,0 +2492,0.0000,0.0000,16.7402,16.7405,1 +2493,0.0000,0.0000,16.6537,16.6540,0 +2494,0.0000,0.0000,16.6297,16.6300,0 +2495,0.0000,0.0000,16.6379,16.6382,0 +2496,0.0000,0.0000,16.4172,16.4176,0 +2497,0.0000,0.0000,7.6314,7.6317,0 +2498,0.0000,0.0000,9.4093,9.4096,0 +2499,0.0000,0.0000,16.7443,16.7446,1 +2500,0.0000,0.0000,16.5987,16.5991,0 +2501,0.0000,0.0000,16.5895,16.5898,0 +2502,0.0000,0.0000,16.6915,16.6918,1 +2503,0.0000,0.0000,16.6314,16.6317,0 +2504,0.0000,0.0000,16.6891,16.6894,1 +2505,0.0000,0.0000,16.6561,16.6565,0 +2506,0.0000,0.0000,16.6873,16.6876,1 +2507,0.0000,0.0000,16.6835,16.6838,1 +2508,0.0000,0.0000,16.6666,16.6669,1 +2509,0.0000,0.0000,16.6106,16.6110,0 +2510,0.0000,0.0000,16.6866,16.6869,1 +2511,0.0000,0.0000,16.6777,16.6780,1 +2512,0.0000,0.0000,16.3161,16.3164,0 +2513,0.0000,0.0000,7.7480,7.7483,0 +2514,0.0000,0.0000,9.5826,9.5829,0 +2515,0.0000,0.0000,16.3977,16.3980,0 +2516,0.0000,0.0000,16.7461,16.7464,1 +2517,0.0000,0.0000,16.6326,16.6329,0 +2518,0.0000,0.0000,16.6182,16.6185,0 +2519,0.0000,0.0000,16.6277,16.6280,0 +2520,0.0000,0.0000,16.7053,16.7056,1 +2521,0.0000,0.0000,16.6565,16.6568,0 +2522,0.0000,0.0000,16.6597,16.6600,0 +2523,0.0000,0.0000,16.7079,16.7082,1 +2524,0.0000,0.0000,16.6796,16.6799,1 +2525,0.0000,0.0000,16.6954,16.6957,1 +2526,0.0000,0.0000,16.6298,16.6301,0 +2527,0.0000,0.0000,16.7110,16.7113,1 +2528,0.0000,0.0000,16.6750,16.6753,1 +2529,0.0000,0.0000,16.6972,16.6975,1 +2530,0.0000,0.0000,16.5825,16.5828,0 +2531,0.0000,0.0000,16.6659,16.6662,0 +2532,0.0000,0.0000,16.7681,16.7684,1 +2533,0.0000,0.0000,16.6262,16.6265,0 +2534,0.0000,0.0000,16.6266,16.6269,0 +2535,0.0000,0.0000,16.6967,16.6970,1 +2536,0.0000,0.0000,16.6671,16.6674,1 +2537,0.0000,0.0000,16.6641,16.6644,0 +2538,0.0000,0.0000,16.7358,16.7361,1 +2539,0.0000,0.0000,16.6311,16.6314,0 +2540,0.0000,0.0000,16.7070,16.7073,1 +2541,0.0000,0.0000,16.6355,16.6358,0 +2542,0.0000,0.0000,16.6922,16.6925,1 +2543,0.0000,0.0000,16.7263,16.7266,1 +2544,0.0000,0.0000,16.5912,16.5915,0 +2545,0.0000,0.0000,16.6287,16.6290,0 +2546,0.0000,0.0000,16.7335,16.7338,1 +2547,0.0000,0.0000,16.6340,16.6343,0 +2548,0.0000,0.0000,16.7031,16.7034,1 +2549,0.0000,0.0000,16.6344,16.6347,0 +2550,0.0000,0.0000,16.7504,16.7507,1 +2551,0.0000,0.0000,16.5883,16.5886,0 +2552,0.0000,0.0000,16.7382,16.7385,1 +2553,0.0000,0.0000,16.6364,16.6367,0 +2554,0.0000,0.0000,16.7094,16.7097,1 +2555,0.0000,0.0000,16.6030,16.6033,0 +2556,0.0000,0.0000,16.7447,16.7450,1 +2557,0.0000,0.0000,16.5715,16.5718,0 +2558,0.0000,0.0000,16.6573,16.6576,0 +2559,0.0000,0.0000,16.7146,16.7149,1 +2560,0.0000,0.0000,16.6507,16.6510,0 +2561,0.0000,0.0000,16.7148,16.7151,1 +2562,0.0000,0.0000,16.7568,16.7572,1 +2563,0.0000,0.0000,38.1644,38.1646,1 +2564,0.0000,0.0000,10.1450,10.1452,0 +2565,0.0000,0.0000,16.4001,16.4002,0 +2566,0.0000,0.0000,16.5674,16.5676,0 +2567,0.0000,0.0000,18.5979,18.5981,1 +2568,0.0000,0.0000,16.7506,16.7509,1 +2569,0.0000,0.0000,16.6676,16.6679,1 +2570,0.0000,0.0000,16.6164,16.6167,0 +2571,0.0000,0.0000,16.6552,16.6555,0 +2572,0.0000,0.0000,16.6802,16.6805,1 +2573,0.0000,0.0000,16.6857,16.6861,1 +2574,0.0000,0.0000,16.6651,16.6654,0 +2575,0.0000,0.0000,16.6473,16.6476,0 +2576,0.0000,0.0000,16.7326,16.7329,1 +2577,0.0000,0.0000,16.8322,16.8325,1 +2578,0.0000,0.0000,16.6515,16.6518,0 +2579,0.0000,0.0000,16.5173,16.5177,0 +2580,0.0000,0.0000,16.7015,16.7018,1 +2581,0.0000,0.0000,16.6419,16.6422,0 +2582,0.0000,0.0000,16.8140,16.8143,1 +2583,0.0000,0.0000,16.5049,16.5052,0 +2584,0.0000,0.0000,16.8994,16.8997,1 +2585,0.0000,0.0000,16.6664,16.6667,1 +2586,0.0000,0.0000,16.4270,16.4273,0 +2587,0.0000,0.0000,16.3522,16.3525,0 +2588,0.0000,0.0000,8.0576,8.0579,0 +2589,0.0000,0.0000,8.9976,8.9979,0 +2590,0.0000,0.0000,16.6244,16.6247,0 +2591,0.0000,0.0000,16.6955,16.6959,1 +2592,0.0000,0.0000,16.6627,16.6630,0 +2593,0.0000,0.0000,16.6827,16.6830,1 +2594,0.0000,0.0000,16.8739,16.8742,1 +2595,0.0000,0.0000,16.4866,16.4870,0 +2596,0.0000,0.0000,16.7075,16.7078,1 +2597,0.0000,0.0000,16.9017,16.9020,1 +2598,0.0000,0.0000,18.8336,18.8340,1 +2599,0.0000,0.0000,14.3998,14.4002,0 +2600,0.0000,0.0000,16.5687,16.5690,0 +2601,0.0000,0.0000,16.6444,16.6447,0 +2602,0.0000,0.0000,16.5745,16.5748,0 +2603,0.0000,0.0000,16.7259,16.7262,1 +2604,0.0000,0.0000,16.7050,16.7053,1 +2605,0.0000,0.0000,16.7025,16.7028,1 +2606,0.0000,0.0000,16.5502,16.5506,0 +2607,0.0000,0.0000,16.7567,16.7570,1 +2608,0.0000,0.0000,16.6668,16.6671,1 +2609,0.0000,0.0000,16.5843,16.5846,0 +2610,0.0000,0.0000,16.7347,16.7350,1 +2611,0.0000,0.0000,16.5845,16.5848,0 +2612,0.0000,0.0000,16.7005,16.7008,1 +2613,0.0000,0.0000,16.7201,16.7204,1 +2614,0.0000,0.0000,16.6288,16.6291,0 +2615,0.0000,0.0000,16.6517,16.6520,0 +2616,0.0000,0.0000,16.4553,16.4556,0 +2617,0.0000,0.0000,7.6405,7.6408,0 +2618,0.0000,0.0000,9.2907,9.2910,0 +2619,0.0000,0.0000,16.6384,16.6387,0 +2620,0.0000,0.0000,16.7162,16.7165,1 +2621,0.0000,0.0000,16.6841,16.6844,1 +2622,0.0000,0.0000,16.6018,16.6021,0 +2623,0.0000,0.0000,16.6564,16.6567,0 +2624,0.0000,0.0000,16.7841,16.7844,1 +2625,0.0000,0.0000,16.6293,16.6296,0 +2626,0.0000,0.0000,16.7023,16.7026,1 +2627,0.0000,0.0000,16.6415,16.6418,0 +2628,0.0000,0.0000,16.7156,16.7159,1 +2629,0.0000,0.0000,16.5767,16.5770,0 +2630,0.0000,0.0000,16.6550,16.6553,0 +2631,0.0000,0.0000,16.6301,16.6304,0 +2632,0.0000,0.0000,16.6416,16.6419,0 +2633,0.0000,0.0000,16.7595,16.7598,1 +2634,0.0000,0.0000,16.6925,16.6928,1 +2635,0.0000,0.0000,16.6343,16.6346,0 +2636,0.0000,0.0000,16.7663,16.7666,1 +2637,0.0000,0.0000,16.6048,16.6051,0 +2638,0.0000,0.0000,16.6825,16.6828,1 +2639,0.0000,0.0000,16.6346,16.6349,0 +2640,0.0000,0.0000,16.6800,16.6803,1 +2641,0.0000,0.0000,16.8195,16.8199,1 +2642,0.0000,0.0000,16.7130,16.7133,1 +2643,0.0000,0.0000,16.3395,16.3397,0 +2644,0.0000,0.0000,15.2489,15.2491,0 +2645,0.0000,0.0000,18.2282,18.2283,1 +2646,0.0000,0.0000,16.5920,16.5923,0 +2647,0.0000,0.0000,16.7608,16.7611,1 +2648,0.0000,0.0000,16.7108,16.7111,1 +2649,0.0000,0.0000,16.6420,16.6423,0 +2650,0.0000,0.0000,16.6720,16.6723,1 +2651,0.0000,0.0000,16.6511,16.6514,0 +2652,0.0000,0.0000,16.6929,16.6932,1 +2653,0.0000,0.0000,16.6522,16.6525,0 +2654,0.0000,0.0000,16.6178,16.6181,0 +2655,0.0000,0.0000,16.5280,16.5284,0 +2656,0.0000,0.0000,7.7431,7.7434,0 +2657,0.0000,0.0000,9.1566,9.1569,0 +2658,0.0000,0.0000,16.6331,16.6335,0 +2659,0.0000,0.0000,16.6508,16.6511,0 +2660,0.0000,0.0000,15.0982,15.0984,0 +2661,0.0000,0.0000,16.6810,16.6812,1 +2662,0.0000,0.0000,16.6389,16.6391,0 +2663,0.0000,0.0000,16.6323,16.6324,0 +2664,0.0000,0.0000,18.2824,18.2826,1 +2665,0.0000,0.0000,16.6724,16.6727,1 +2666,0.0000,0.0000,16.7410,16.7413,1 +2667,0.0000,0.0000,16.5953,16.5956,0 +2668,0.0000,0.0000,16.7332,16.7335,1 +2669,0.0000,0.0000,16.6458,16.6461,0 +2670,0.0000,0.0000,16.7151,16.7155,1 +2671,0.0000,0.0000,16.6060,16.6063,0 +2672,0.0000,0.0000,16.6961,16.6964,1 +2673,0.0000,0.0000,16.4039,16.4043,0 +2674,0.0000,0.0000,7.6664,7.6667,0 +2675,0.0000,0.0000,9.3176,9.3179,0 +2676,0.0000,0.0000,16.5937,16.5940,0 +2677,0.0000,0.0000,16.6651,16.6653,0 +2678,0.0000,0.0000,16.6624,16.6627,0 +2679,0.0000,0.0000,16.6603,16.6606,0 +2680,0.0000,0.0000,16.6943,16.6946,1 +2681,0.0000,0.0000,16.6820,16.6823,1 +2682,0.0000,0.0000,16.6859,16.6862,1 +2683,0.0000,0.0000,16.7266,16.7269,1 +2684,0.0000,0.0000,16.6442,16.6445,0 +2685,0.0000,0.0000,16.5813,16.5816,0 +2686,0.0000,0.0000,16.7773,16.7776,1 +2687,0.0000,0.0000,16.6288,16.6291,0 +2688,0.0000,0.0000,16.6534,16.6537,0 +2689,0.0000,0.0000,16.7376,16.7379,1 +2690,0.0000,0.0000,16.7095,16.7098,1 +2691,0.0000,0.0000,16.5048,16.5052,0 +2692,0.0000,0.0000,16.7794,16.7797,1 +2693,0.0000,0.0000,16.7136,16.7139,1 +2694,0.0000,0.0000,16.6841,16.6844,1 +2695,0.0000,0.0000,16.8269,16.8272,1 +2696,0.0000,0.0000,16.6610,16.6614,0 +2697,0.0000,0.0000,16.5297,16.5300,0 +2698,0.0000,0.0000,15.6030,15.6032,0 +2699,0.0000,0.0000,16.4895,16.4897,0 +2700,0.0000,0.0000,17.8052,17.8054,1 +2701,0.0000,0.0000,16.7663,16.7666,1 +2702,0.0000,0.0000,16.6610,16.6613,0 +2703,0.0000,0.0000,16.6152,16.6155,0 +2704,0.0000,0.0000,16.7223,16.7226,1 +2705,0.0000,0.0000,16.6287,16.6290,0 +2706,0.0000,0.0000,16.6354,16.6357,0 +2707,0.0000,0.0000,16.6940,16.6943,1 +2708,0.0000,0.0000,16.6867,16.6870,1 +2709,0.0000,0.0000,16.6903,16.6906,1 +2710,0.0000,0.0000,16.4563,16.4566,0 +2711,0.0000,0.0000,7.5337,7.5341,0 +2712,0.0000,0.0000,9.3632,9.3635,0 +2713,0.0000,0.0000,16.6480,16.6483,0 +2714,0.0000,0.0000,16.6678,16.6681,1 +2715,0.0000,0.0000,16.6083,16.6086,0 +2716,0.0000,0.0000,16.7566,16.7569,1 +2717,0.0000,0.0000,16.6050,16.6053,0 +2718,0.0000,0.0000,16.8906,16.8909,1 +2719,0.0000,0.0000,16.5299,16.5302,0 +2720,0.0000,0.0000,16.6099,16.6102,0 +2721,0.0000,0.0000,16.6719,16.6722,1 +2722,0.0000,0.0000,16.6830,16.6833,1 +2723,0.0000,0.0000,16.6954,16.6957,1 +2724,0.0000,0.0000,16.7015,16.7018,1 +2725,0.0000,0.0000,16.6216,16.6219,0 +2726,0.0000,0.0000,16.7790,16.7793,1 +2727,0.0000,0.0000,16.6724,16.6727,1 +2728,0.0000,0.0000,16.5481,16.5484,0 +2729,0.0000,0.0000,16.6713,16.6716,1 +2730,0.0000,0.0000,16.4537,16.4540,0 +2731,0.0000,0.0000,7.6705,7.6708,0 +2732,0.0000,0.0000,9.3137,9.3140,0 +2733,0.0000,0.0000,15.2748,15.2751,0 +2734,0.0000,0.0000,16.5596,16.5598,0 +2735,0.0000,0.0000,18.0334,18.0336,1 +2736,0.0000,0.0000,16.6237,16.6240,0 +2737,0.0000,0.0000,16.7905,16.7908,1 +2738,0.0000,0.0000,16.6546,16.6549,0 +2739,0.0000,0.0000,16.6574,16.6577,0 +2740,0.0000,0.0000,16.6945,16.6948,1 +2741,0.0000,0.0000,16.6579,16.6582,0 +2742,0.0000,0.0000,16.7111,16.7114,1 +2743,0.0000,0.0000,16.6549,16.6552,0 +2744,0.0000,0.0000,16.6671,16.6674,1 +2745,0.0000,0.0000,16.6284,16.6287,0 +2746,0.0000,0.0000,16.7230,16.7233,1 +2747,0.0000,0.0000,16.6292,16.6295,0 +2748,0.0000,0.0000,16.6339,16.6342,0 +2749,0.0000,0.0000,16.7222,16.7225,1 +2750,0.0000,0.0000,16.6054,16.6057,0 +2751,0.0000,0.0000,16.7012,16.7015,1 +2752,0.0000,0.0000,16.7167,16.7170,1 +2753,0.0000,0.0000,16.5933,16.5936,0 +2754,0.0000,0.0000,16.7077,16.7080,1 +2755,0.0000,0.0000,16.7320,16.7323,1 +2756,0.0000,0.0000,16.6489,16.6492,0 +2757,0.0000,0.0000,16.6015,16.6018,0 +2758,0.0000,0.0000,16.7643,16.7646,1 +2759,0.0000,0.0000,16.8673,16.8676,1 +2760,0.0000,0.0000,16.4309,16.4312,0 +2761,0.0000,0.0000,16.6622,16.6625,0 +2762,0.0000,0.0000,16.6626,16.6629,0 +2763,0.0000,0.0000,16.6527,16.6530,0 +2764,0.0000,0.0000,16.7866,16.7869,1 +2765,0.0000,0.0000,16.5533,16.5536,0 +2766,0.0000,0.0000,16.7139,16.7142,1 +2767,0.0000,0.0000,16.6802,16.6805,1 +2768,0.0000,0.0000,16.7087,16.7090,1 +2769,0.0000,0.0000,16.5823,16.5826,0 +2770,0.0000,0.0000,16.6715,16.6718,1 +2771,0.0000,0.0000,16.7323,16.7326,1 +2772,0.0000,0.0000,16.6510,16.6513,0 +2773,0.0000,0.0000,16.6585,16.6588,0 +2774,0.0000,0.0000,16.3961,16.3964,0 +2775,0.0000,0.0000,7.5926,7.5929,0 +2776,0.0000,0.0000,9.4225,9.4228,0 +2777,0.0000,0.0000,16.5988,16.5991,0 +2778,0.0000,0.0000,16.6542,16.6545,0 +2779,0.0000,0.0000,16.6748,16.6751,1 +2780,0.0000,0.0000,16.9171,16.9174,1 +2781,0.0000,0.0000,16.4492,16.4495,0 +2782,0.0000,0.0000,16.7530,16.7533,1 +2783,0.0000,0.0000,16.6296,16.6299,0 +2784,0.0000,0.0000,16.6150,16.6153,0 +2785,0.0000,0.0000,16.6250,16.6253,0 +2786,0.0000,0.0000,16.7812,16.7815,1 +2787,0.0000,0.0000,16.6804,16.6807,1 +2788,0.0000,0.0000,15.4015,15.4018,0 +2789,0.0000,0.0000,16.6289,16.6290,0 +2790,0.0000,0.0000,17.8804,17.8806,1 +2791,0.0000,0.0000,16.6559,16.6562,0 +2792,0.0000,0.0000,16.6675,16.6678,1 +2793,0.0000,0.0000,16.8732,16.8735,1 +2794,0.0000,0.0000,16.5409,16.5412,0 +2795,0.0000,0.0000,16.6365,16.6368,0 +2796,0.0000,0.0000,16.7369,16.7372,1 +2797,0.0000,0.0000,16.6128,16.6131,0 +2798,0.0000,0.0000,16.9652,16.9655,1 +2799,0.0000,0.0000,16.5866,16.5869,0 +2800,0.0000,0.0000,16.7160,16.7163,1 +2801,0.0000,0.0000,15.2360,15.2363,0 +2802,0.0000,0.0000,16.6779,16.6781,1 +2803,0.0000,0.0000,17.9010,17.9012,1 +2804,0.0000,0.0000,16.5619,16.5622,0 +2805,0.0000,0.0000,16.7459,16.7462,1 +2806,0.0000,0.0000,15.2324,15.2326,0 +2807,0.0000,0.0000,16.7175,16.7177,1 +2808,0.0000,0.0000,16.1604,16.1606,0 +2809,0.0000,0.0000,8.7300,8.7302,0 +2810,0.0000,0.0000,9.8107,9.8109,0 +2811,0.0000,0.0000,16.6257,16.6260,0 +2812,0.0000,0.0000,16.6666,16.6669,1 +2813,0.0000,0.0000,16.7192,16.7195,1 +2814,0.0000,0.0000,16.7257,16.7260,1 +2815,0.0000,0.0000,16.6348,16.6351,0 +2816,0.0000,0.0000,16.6557,16.6560,0 +2817,0.0000,0.0000,16.6466,16.6469,0 +2818,0.0000,0.0000,16.6517,16.6520,0 +2819,0.0000,0.0000,16.7385,16.7388,1 +2820,0.0000,0.0000,16.6316,16.6319,0 +2821,0.0000,0.0000,16.6968,16.6972,1 +2822,0.0000,0.0000,16.6238,16.6241,0 +2823,0.0000,0.0000,16.7565,16.7568,1 +2824,0.0000,0.0000,16.6403,16.6406,0 +2825,0.0000,0.0000,16.6108,16.6111,0 +2826,0.0000,0.0000,16.8516,16.8519,1 +2827,0.0000,0.0000,16.5991,16.5994,0 +2828,0.0000,0.0000,16.5984,16.5988,0 +2829,0.0000,0.0000,16.6436,16.6439,0 +2830,0.0000,0.0000,16.7674,16.7677,1 +2831,0.0000,0.0000,16.5920,16.5923,0 +2832,0.0000,0.0000,16.6464,16.6468,0 +2833,0.0000,0.0000,16.7385,16.7388,1 +2834,0.0000,0.0000,16.6416,16.6419,0 +2835,0.0000,0.0000,16.6272,16.6275,0 +2836,0.0000,0.0000,16.7531,16.7534,1 +2837,0.0000,0.0000,16.6500,16.6503,0 +2838,0.0000,0.0000,16.6705,16.6708,1 +2839,0.0000,0.0000,16.6539,16.6542,0 +2840,0.0000,0.0000,16.7087,16.7090,1 +2841,0.0000,0.0000,16.6531,16.6534,0 +2842,0.0000,0.0000,16.7053,16.7056,1 +2843,0.0000,0.0000,16.6345,16.6348,0 +2844,0.0000,0.0000,16.5699,16.5702,0 +2845,0.0000,0.0000,16.6798,16.6801,1 +2846,0.0000,0.0000,16.7311,16.7314,1 +2847,0.0000,0.0000,16.6360,16.6363,0 +2848,0.0000,0.0000,16.6795,16.6798,1 +2849,0.0000,0.0000,16.6941,16.6944,1 +2850,0.0000,0.0000,15.4897,15.4900,0 +2851,0.0000,0.0000,16.6819,16.6821,1 +2852,0.0000,0.0000,16.6597,16.6598,0 +2853,0.0000,0.0000,16.6832,16.6835,1 +2854,0.0000,0.0000,17.8179,17.8181,1 +2855,0.0000,0.0000,16.7055,16.7058,1 +2856,0.0000,0.0000,16.8267,16.8270,1 +2857,0.0000,0.0000,16.5339,16.5343,0 +2858,0.0000,0.0000,16.6780,16.6783,1 +2859,0.0000,0.0000,16.5839,16.5843,0 +2860,0.0000,0.0000,16.6695,16.6698,1 +2861,0.0000,0.0000,16.7202,16.7205,1 +2862,0.0000,0.0000,16.6114,16.6117,0 +2863,0.0000,0.0000,16.6823,16.6826,1 +2864,0.0000,0.0000,16.7233,16.7236,1 +2865,0.0000,0.0000,16.6327,16.6330,0 +2866,0.0000,0.0000,16.7093,16.7096,1 +2867,0.0000,0.0000,16.6894,16.6897,1 +2868,0.0000,0.0000,16.5816,16.5819,0 +2869,0.0000,0.0000,16.7296,16.7300,1 +2870,0.0000,0.0000,16.6291,16.6294,0 +2871,0.0000,0.0000,16.7178,16.7181,1 +2872,0.0000,0.0000,16.6088,16.6092,0 +2873,0.0000,0.0000,16.8797,16.8800,1 +2874,0.0000,0.0000,16.5033,16.5036,0 +2875,0.0000,0.0000,16.6420,16.6423,0 +2876,0.0000,0.0000,16.6631,16.6634,0 +2877,0.0000,0.0000,16.7982,16.7985,1 +2878,0.0000,0.0000,16.6173,16.6176,0 +2879,0.0000,0.0000,16.5901,16.5904,0 +2880,0.0000,0.0000,16.6925,16.6928,1 +2881,0.0000,0.0000,16.6854,16.6857,1 +2882,0.0000,0.0000,16.7002,16.7005,1 +2883,0.0000,0.0000,16.6453,16.6456,0 +2884,0.0000,0.0000,16.6379,16.6382,0 +2885,0.0000,0.0000,16.7348,16.7351,1 +2886,0.0000,0.0000,16.7052,16.7055,1 +2887,0.0000,0.0000,7.5881,7.5884,0 +2888,0.0000,0.0000,9.2106,9.2109,0 +2889,0.0000,0.0000,15.6029,15.6031,0 +2890,0.0000,0.0000,15.5876,15.5877,0 +2891,0.0000,0.0000,16.6516,16.6517,0 +2892,0.0000,0.0000,16.7059,16.7060,1 +2893,0.0000,0.0000,16.5550,16.5551,0 +2894,0.0000,0.0000,16.6839,16.6840,1 +2895,0.0000,0.0000,16.6943,16.6944,1 +2896,0.0000,0.0000,18.6561,18.6563,1 +2897,0.0000,0.0000,16.6647,16.6649,0 +2898,0.0000,0.0000,16.6572,16.6576,0 +2899,0.0000,0.0000,16.6851,16.6854,1 +2900,0.0000,0.0000,16.6822,16.6826,1 +2901,0.0000,0.0000,16.6214,16.6217,0 +2902,0.0000,0.0000,16.8157,16.8160,1 +2903,0.0000,0.0000,16.6189,16.6193,0 +2904,0.0000,0.0000,16.5955,16.5958,0 +2905,0.0000,0.0000,16.7033,16.7037,1 +2906,0.0000,0.0000,16.6673,16.6676,1 +2907,0.0000,0.0000,16.7366,16.7369,1 +2908,0.0000,0.0000,16.5998,16.6001,0 +2909,0.0000,0.0000,16.5890,16.5893,0 +2910,0.0000,0.0000,7.6773,7.6776,0 +2911,0.0000,0.0000,9.1862,9.1865,0 +2912,0.0000,0.0000,16.5952,16.5955,0 +2913,0.0000,0.0000,16.6950,16.6953,1 +2914,0.0000,0.0000,16.6105,16.6109,0 +2915,0.0000,0.0000,16.8004,16.8007,1 +2916,0.0000,0.0000,16.6437,16.6440,0 +2917,0.0000,0.0000,16.5653,16.5656,0 +2918,0.0000,0.0000,16.7177,16.7181,1 +2919,0.0000,0.0000,16.7282,16.7285,1 +2920,0.0000,0.0000,16.6449,16.6452,0 +2921,0.0000,0.0000,16.6278,16.6281,0 +2922,0.0000,0.0000,16.7018,16.7021,1 +2923,0.0000,0.0000,16.7239,16.7242,1 +2924,0.0000,0.0000,16.5536,16.5539,0 +2925,0.0000,0.0000,16.6187,16.6190,0 +2926,0.0000,0.0000,16.6411,16.6414,0 +2927,0.0000,0.0000,16.6667,16.6671,1 +2928,0.0000,0.0000,16.6391,16.6394,0 +2929,0.0000,0.0000,7.7679,7.7682,0 +2930,0.0000,0.0000,9.1131,9.1134,0 +2931,0.0000,0.0000,16.4283,16.4286,0 +2932,0.0000,0.0000,7.6467,7.6470,0 +2933,0.0000,0.0000,9.3219,9.3222,0 +2934,0.0000,0.0000,16.5599,16.5602,0 +2935,0.0000,0.0000,16.6233,16.6236,0 +2936,0.0000,0.0000,16.7087,16.7090,1 +2937,0.0000,0.0000,16.7959,16.7962,1 +2938,0.0000,0.0000,16.8917,16.8920,1 +2939,0.0000,0.0000,16.3703,16.3706,0 +2940,0.0000,0.0000,16.6637,16.6641,0 +2941,0.0000,0.0000,16.6783,16.6786,1 +2942,0.0000,0.0000,16.6511,16.6514,0 +2943,0.0000,0.0000,16.6078,16.6081,0 +2944,0.0000,0.0000,16.7344,16.7347,1 +2945,0.0000,0.0000,16.5662,16.5665,0 +2946,0.0000,0.0000,16.8332,16.8335,1 +2947,0.0000,0.0000,16.5826,16.5829,0 +2948,0.0000,0.0000,16.6806,16.6809,1 +2949,0.0000,0.0000,16.7608,16.7611,1 +2950,0.0000,0.0000,16.6291,16.6295,0 +2951,0.0000,0.0000,16.5270,16.5273,0 +2952,0.0000,0.0000,16.7393,16.7396,1 +2953,0.0000,0.0000,16.9041,16.9044,1 +2954,0.0000,0.0000,16.6728,16.6732,1 +2955,0.0000,0.0000,16.4993,16.4996,0 +2956,0.0000,0.0000,16.7119,16.7123,1 +2957,0.0000,0.0000,16.6850,16.6853,1 +2958,0.0000,0.0000,16.6096,16.6099,0 +2959,0.0000,0.0000,16.6392,16.6395,0 +2960,0.0000,0.0000,16.2857,16.2860,0 +2961,0.0000,0.0000,7.9713,7.9716,0 +2962,0.0000,0.0000,9.1131,9.1134,0 +2963,0.0000,0.0000,16.6061,16.6064,0 +2964,0.0000,0.0000,16.7419,16.7422,1 +2965,0.0000,0.0000,16.6214,16.6217,0 +2966,0.0000,0.0000,16.9206,16.9209,1 +2967,0.0000,0.0000,16.5227,16.5230,0 +2968,0.0000,0.0000,16.6035,16.6038,0 +2969,0.0000,0.0000,16.6154,16.6157,0 +2970,0.0000,0.0000,16.6848,16.6851,1 +2971,0.0000,0.0000,16.7160,16.7163,1 +2972,0.0000,0.0000,16.6451,16.6454,0 +2973,0.0000,0.0000,16.6393,16.6396,0 +2974,0.0000,0.0000,16.8502,16.8505,1 +2975,0.0000,0.0000,16.5695,16.5698,0 +2976,0.0000,0.0000,16.5782,16.5785,0 +2977,0.0000,0.0000,15.3552,15.3555,0 +2978,0.0000,0.0000,16.6769,16.6771,1 +2979,0.0000,0.0000,16.6331,16.6332,0 +2980,0.0000,0.0000,16.6122,16.6124,0 +2981,0.0000,0.0000,16.7412,16.7413,1 +2982,0.0000,0.0000,16.6544,16.6546,0 +2983,0.0000,0.0000,16.6030,16.6032,0 +2984,0.0000,0.0000,16.7222,16.7223,1 +2985,0.0000,0.0000,18.0844,18.0846,1 +2986,0.0000,0.0000,16.6477,16.6480,0 +2987,0.0000,0.0000,16.4500,16.4503,0 +2988,0.0000,0.0000,7.6101,7.6104,0 +2989,0.0000,0.0000,9.3083,9.3086,0 +2990,0.0000,0.0000,16.6657,16.6660,0 +2991,0.0000,0.0000,16.6918,16.6921,1 +2992,0.0000,0.0000,16.6204,16.6207,0 +2993,0.0000,0.0000,16.6770,16.6773,1 +2994,0.0000,0.0000,16.6555,16.6559,0 +2995,0.0000,0.0000,16.6565,16.6568,0 +2996,0.0000,0.0000,16.6595,16.6598,0 +2997,0.0000,0.0000,16.6977,16.6980,1 +2998,0.0000,0.0000,16.7522,16.7525,1 +2999,0.0000,0.0000,16.5978,16.5981,0 +3000,0.0000,0.0000,15.1932,15.1935,0 +3001,0.0000,0.0000,16.6710,16.6711,1 +3002,0.0000,0.0000,18.0817,18.0819,1 +3003,0.0000,0.0000,16.3933,16.3936,0 +3004,0.0000,0.0000,7.7600,7.7602,0 +3005,0.0000,0.0000,9.3547,9.3550,0 +3006,0.0000,0.0000,16.5225,16.5228,0 +3007,0.0000,0.0000,16.6906,16.6909,1 +3008,0.0000,0.0000,16.7343,16.7346,1 +3009,0.0000,0.0000,16.6040,16.6043,0 +3010,0.0000,0.0000,16.6977,16.6980,1 +3011,0.0000,0.0000,16.7258,16.7261,1 +3012,0.0000,0.0000,16.6477,16.6480,0 +3013,0.0000,0.0000,16.7139,16.7142,1 +3014,0.0000,0.0000,16.6217,16.6220,0 +3015,0.0000,0.0000,16.6740,16.6743,1 +3016,0.0000,0.0000,16.6963,16.6966,1 +3017,0.0000,0.0000,16.6939,16.6942,1 +3018,0.0000,0.0000,16.5997,16.6001,0 +3019,0.0000,0.0000,16.7520,16.7523,1 +3020,0.0000,0.0000,16.6630,16.6633,0 +3021,0.0000,0.0000,16.6210,16.6213,0 +3022,0.0000,0.0000,15.1812,15.1815,0 +3023,0.0000,0.0000,16.6920,16.6922,1 +3024,0.0000,0.0000,18.0708,18.0710,1 +3025,0.0000,0.0000,16.6456,16.6459,0 +3026,0.0000,0.0000,16.7006,16.7009,1 +3027,0.0000,0.0000,16.6330,16.6333,0 +3028,0.0000,0.0000,16.7375,16.7378,1 +3029,0.0000,0.0000,16.6706,16.6709,1 +3030,0.0000,0.0000,16.7502,16.7505,1 +3031,0.0000,0.0000,16.6222,16.6225,0 +3032,0.0000,0.0000,16.6383,16.6386,0 +3033,0.0000,0.0000,16.6906,16.6909,1 +3034,0.0000,0.0000,16.7095,16.7098,1 +3035,0.0000,0.0000,7.3730,7.3733,0 +3036,0.0000,0.0000,9.3564,9.3567,0 +3037,0.0000,0.0000,16.6049,16.6052,0 +3038,0.0000,0.0000,15.4676,15.4679,0 +3039,0.0000,0.0000,16.6520,16.6522,0 +3040,0.0000,0.0000,17.8507,17.8510,1 +3041,0.0000,0.0000,16.6504,16.6507,0 +3042,0.0000,0.0000,16.7090,16.7093,1 +3043,0.0000,0.0000,16.6587,16.6591,0 +3044,0.0000,0.0000,16.6755,16.6758,1 +3045,0.0000,0.0000,16.6308,16.6311,0 +3046,0.0000,0.0000,16.6943,16.6947,1 +3047,0.0000,0.0000,16.6504,16.6507,0 +3048,0.0000,0.0000,16.7233,16.7236,1 +3049,0.0000,0.0000,16.6266,16.6269,0 +3050,0.0000,0.0000,16.5125,16.5128,0 +3051,0.0000,0.0000,7.7999,7.8002,0 +3052,0.0000,0.0000,9.1240,9.1243,0 +3053,0.0000,0.0000,16.6340,16.6344,0 +3054,0.0000,0.0000,16.6342,16.6345,0 +3055,0.0000,0.0000,16.6534,16.6537,0 +3056,0.0000,0.0000,16.7101,16.7104,1 +3057,0.0000,0.0000,16.6577,16.6580,0 +3058,0.0000,0.0000,16.6587,16.6590,0 +3059,0.0000,0.0000,16.7296,16.7299,1 +3060,0.0000,0.0000,16.6398,16.6401,0 +3061,0.0000,0.0000,16.7212,16.7215,1 +3062,0.0000,0.0000,16.5814,16.5817,0 +3063,0.0000,0.0000,16.8068,16.8071,1 +3064,0.0000,0.0000,16.5971,16.5974,0 +3065,0.0000,0.0000,16.6298,16.6301,0 +3066,0.0000,0.0000,16.3472,16.3475,0 +3067,0.0000,0.0000,7.9572,7.9575,0 +3068,0.0000,0.0000,9.1173,9.1177,0 +3069,0.0000,0.0000,16.6120,16.6123,0 +3070,0.0000,0.0000,16.6553,16.6556,0 +3071,0.0000,0.0000,16.6291,16.6294,0 +3072,0.0000,0.0000,16.7414,16.7417,1 +3073,0.0000,0.0000,16.6013,16.6016,0 +3074,0.0000,0.0000,16.7338,16.7342,1 +3075,0.0000,0.0000,16.6223,16.6226,0 +3076,0.0000,0.0000,16.6491,16.6494,0 +3077,0.0000,0.0000,16.6286,16.6289,0 +3078,0.0000,0.0000,16.7449,16.7452,1 +3079,0.0000,0.0000,16.6607,16.6610,0 +3080,0.0000,0.0000,16.7155,16.7158,1 +3081,0.0000,0.0000,16.7262,16.7265,1 +3082,0.0000,0.0000,16.6663,16.6667,1 +3083,0.0000,0.0000,16.6581,16.6584,0 +3084,0.0000,0.0000,16.6482,16.6485,0 +3085,0.0000,0.0000,16.5930,16.5933,0 +3086,0.0000,0.0000,16.7165,16.7168,1 +3087,0.0000,0.0000,16.7190,16.7193,1 +3088,0.0000,0.0000,16.9406,16.9409,1 +3089,0.0000,0.0000,16.5408,16.5411,0 +3090,0.0000,0.0000,16.6066,16.6069,0 +3091,0.0000,0.0000,16.8082,16.8085,1 +3092,0.0000,0.0000,16.5704,16.5707,0 +3093,0.0000,0.0000,16.5460,16.5464,0 +3094,0.0000,0.0000,16.6214,16.6217,0 +3095,0.0000,0.0000,16.6277,16.6280,0 +3096,0.0000,0.0000,16.7485,16.7488,1 +3097,0.0000,0.0000,16.6641,16.6644,0 +3098,0.0000,0.0000,16.5925,16.5928,0 +3099,0.0000,0.0000,16.8732,16.8735,1 +3100,0.0000,0.0000,16.5470,16.5473,0 +3101,0.0000,0.0000,16.6336,16.6339,0 +3102,0.0000,0.0000,16.7217,16.7220,1 +3103,0.0000,0.0000,16.5912,16.5915,0 +3104,0.0000,0.0000,16.7281,16.7284,1 +3105,0.0000,0.0000,16.7012,16.7016,1 +3106,0.0000,0.0000,16.6739,16.6742,1 +3107,0.0000,0.0000,16.6395,16.6399,0 +3108,0.0000,0.0000,16.6252,16.6255,0 +3109,0.0000,0.0000,16.6815,16.6817,1 +3110,0.0000,0.0000,16.7056,16.7059,1 +3111,0.0000,0.0000,16.6948,16.6951,1 +3112,0.0000,0.0000,16.5907,16.5910,0 +3113,0.0000,0.0000,16.7071,16.7076,1 +3114,0.0000,0.0000,16.7072,16.7075,1 +3115,0.0000,0.0000,16.5964,16.5967,0 +3116,0.0000,0.0000,16.6797,16.6801,1 +3117,0.0000,0.0000,16.7379,16.7382,1 +3118,0.0000,0.0000,16.5059,16.5062,0 +3119,0.0000,0.0000,16.7477,16.7480,1 +3120,0.0000,0.0000,16.7178,16.7181,1 +3121,0.0000,0.0000,16.7634,16.7637,1 +3122,0.0000,0.0000,16.5978,16.5981,0 +3123,0.0000,0.0000,16.6732,16.6735,1 +3124,0.0000,0.0000,16.6532,16.6535,0 +3125,0.0000,0.0000,16.6124,16.6127,0 +3126,0.0000,0.0000,16.7221,16.7224,1 +3127,0.0000,0.0000,16.6527,16.6530,0 +3128,0.0000,0.0000,16.6561,16.6564,0 +3129,0.0000,0.0000,16.7049,16.7052,1 +3130,0.0000,0.0000,16.6611,16.6615,0 +3131,0.0000,0.0000,16.6139,16.6141,0 +3132,0.0000,0.0000,16.7153,16.7156,1 +3133,0.0000,0.0000,16.6819,16.6823,1 +3134,0.0000,0.0000,16.6528,16.6531,0 +3135,0.0000,0.0000,16.8548,16.8551,1 +3136,0.0000,0.0000,16.5232,16.5236,0 +3137,0.0000,0.0000,16.7597,16.7600,1 +3138,0.0000,0.0000,16.7100,16.7103,1 +3139,0.0000,0.0000,15.0193,15.0196,0 +3140,0.0000,0.0000,16.6932,16.6933,1 +3141,0.0000,0.0000,16.6288,16.6290,0 +3142,0.0000,0.0000,16.6066,16.6067,0 +3143,0.0000,0.0000,18.2465,18.2466,1 +3144,0.0000,0.0000,16.7227,16.7230,1 +3145,0.0000,0.0000,16.6642,16.6646,0 +3146,0.0000,0.0000,16.6310,16.6313,0 +3147,0.0000,0.0000,16.7248,16.7251,1 +3148,0.0000,0.0000,16.6918,16.6921,1 +3149,0.0000,0.0000,16.6315,16.6318,0 +3150,0.0000,0.0000,16.6975,16.6978,1 +3151,0.0000,0.0000,16.8709,16.8712,1 +3152,0.0000,0.0000,16.4764,16.4767,0 +3153,0.0000,0.0000,16.3931,16.3935,0 +3154,0.0000,0.0000,7.5035,7.5038,0 +3155,0.0000,0.0000,9.4714,9.4717,0 +3156,0.0000,0.0000,16.6397,16.6400,0 +3157,0.0000,0.0000,16.6481,16.6485,0 +3158,0.0000,0.0000,16.8026,16.8029,1 +3159,0.0000,0.0000,16.5528,16.5531,0 +3160,0.0000,0.0000,16.5999,16.6002,0 +3161,0.0000,0.0000,16.6873,16.6876,1 +3162,0.0000,0.0000,16.6885,16.6888,1 +3163,0.0000,0.0000,16.6423,16.6426,0 +3164,0.0000,0.0000,16.7452,16.7455,1 +3165,0.0000,0.0000,16.5797,16.5800,0 +3166,0.0000,0.0000,16.7286,16.7289,1 +3167,0.0000,0.0000,16.6524,16.6527,0 +3168,0.0000,0.0000,16.6868,16.6871,1 +3169,0.0000,0.0000,16.6290,16.6293,0 +3170,0.0000,0.0000,16.7610,16.7613,1 +3171,0.0000,0.0000,16.6409,16.6412,0 +3172,0.0000,0.0000,16.6398,16.6401,0 +3173,0.0000,0.0000,16.6664,16.6667,1 +3174,0.0000,0.0000,16.6405,16.6408,0 +3175,0.0000,0.0000,16.7447,16.7451,1 +3176,0.0000,0.0000,16.6885,16.6888,1 +3177,0.0000,0.0000,16.6042,16.6045,0 +3178,0.0000,0.0000,16.6491,16.6495,0 +3179,0.0000,0.0000,16.6552,16.6555,0 +3180,0.0000,0.0000,16.7009,16.7012,1 +3181,0.0000,0.0000,16.6894,16.6897,1 +3182,0.0000,0.0000,16.6602,16.6605,0 +3183,0.0000,0.0000,16.6772,16.6775,1 +3184,0.0000,0.0000,16.6358,16.6361,0 +3185,0.0000,0.0000,16.6614,16.6617,0 +3186,0.0000,0.0000,16.7468,16.7471,1 +3187,0.0000,0.0000,16.5600,16.5603,0 +3188,0.0000,0.0000,16.7134,16.7137,1 +3189,0.0000,0.0000,16.6127,16.6130,0 +3190,0.0000,0.0000,16.7038,16.7041,1 +3191,0.0000,0.0000,16.6773,16.6776,1 +3192,0.0000,0.0000,16.7053,16.7056,1 +3193,0.0000,0.0000,16.7250,16.7253,1 +3194,0.0000,0.0000,16.4120,16.4123,0 +3195,0.0000,0.0000,7.5523,7.5526,0 +3196,0.0000,0.0000,9.4199,9.4202,0 +3197,0.0000,0.0000,16.5578,16.5581,0 +3198,0.0000,0.0000,16.7304,16.7307,1 +3199,0.0000,0.0000,16.7476,16.7479,1 +3200,0.0000,0.0000,16.7002,16.7005,1 +3201,0.0000,0.0000,16.6125,16.6128,0 +3202,0.0000,0.0000,16.6767,16.6770,1 +3203,0.0000,0.0000,16.6088,16.6091,0 +3204,0.0000,0.0000,16.6316,16.6319,0 +3205,0.0000,0.0000,16.7941,16.7944,1 +3206,0.0000,0.0000,16.6676,16.6679,1 +3207,0.0000,0.0000,16.7552,16.7555,1 +3208,0.0000,0.0000,16.6468,16.6471,0 +3209,0.0000,0.0000,16.5489,16.5492,0 +3210,0.0000,0.0000,16.7075,16.7078,1 +3211,0.0000,0.0000,16.5893,16.5896,0 +3212,0.0000,0.0000,16.3288,16.3291,0 +3213,0.0000,0.0000,7.9335,7.9338,0 +3214,0.0000,0.0000,9.2095,9.2098,0 +3215,0.0000,0.0000,16.5327,16.5330,0 +3216,0.0000,0.0000,16.6600,16.6603,0 +3217,0.0000,0.0000,16.6609,16.6612,0 +3218,0.0000,0.0000,16.6634,16.6637,0 +3219,0.0000,0.0000,16.8090,16.8093,1 +3220,0.0000,0.0000,16.5943,16.5946,0 +3221,0.0000,0.0000,16.6658,16.6661,0 +3222,0.0000,0.0000,16.6323,16.6326,0 +3223,0.0000,0.0000,16.6736,16.6739,1 +3224,0.0000,0.0000,16.7073,16.7076,1 +3225,0.0000,0.0000,16.7491,16.7494,1 +3226,0.0000,0.0000,16.6122,16.6125,0 +3227,0.0000,0.0000,16.7153,16.7156,1 +3228,0.0000,0.0000,16.5844,16.5847,0 +3229,0.0000,0.0000,16.7293,16.7296,1 +3230,0.0000,0.0000,16.6496,16.6499,0 +3231,0.0000,0.0000,16.6902,16.6905,1 +3232,0.0000,0.0000,7.5002,7.5005,0 +3233,0.0000,0.0000,9.2112,9.2115,0 +3234,0.0000,0.0000,16.6553,16.6556,0 +3235,0.0000,0.0000,16.5823,16.5826,0 +3236,0.0000,0.0000,16.6430,16.6433,0 +3237,0.0000,0.0000,16.7693,16.7696,1 +3238,0.0000,0.0000,16.6588,16.6591,0 +3239,0.0000,0.0000,16.6606,16.6609,0 +3240,0.0000,0.0000,16.6494,16.6497,0 +3241,0.0000,0.0000,16.6343,16.6346,0 +3242,0.0000,0.0000,16.6706,16.6709,1 +3243,0.0000,0.0000,16.7456,16.7459,1 +3244,0.0000,0.0000,16.5990,16.5993,0 +3245,0.0000,0.0000,16.6517,16.6520,0 +3246,0.0000,0.0000,16.6946,16.6949,1 +3247,0.0000,0.0000,16.4217,16.4220,0 +3248,0.0000,0.0000,7.7602,7.7605,0 +3249,0.0000,0.0000,9.1930,9.1933,0 +3250,0.0000,0.0000,16.6292,16.6295,0 +3251,0.0000,0.0000,16.7636,16.7639,1 +3252,0.0000,0.0000,16.5674,16.5677,0 +3253,0.0000,0.0000,16.7378,16.7381,1 +3254,0.0000,0.0000,16.6173,16.6176,0 +3255,0.0000,0.0000,16.6541,16.6544,0 +3256,0.0000,0.0000,16.7276,16.7279,1 +3257,0.0000,0.0000,16.7129,16.7132,1 +3258,0.0000,0.0000,16.6062,16.6065,0 +3259,0.0000,0.0000,16.7144,16.7147,1 +3260,0.0000,0.0000,16.6087,16.6090,0 +3261,0.0000,0.0000,16.7340,16.7344,1 +3262,0.0000,0.0000,16.5702,16.5705,0 +3263,0.0000,0.0000,16.3137,16.3140,0 +3264,0.0000,0.0000,7.9019,7.9022,0 +3265,0.0000,0.0000,9.2515,9.2518,0 +3266,0.0000,0.0000,16.6016,16.6019,0 +3267,0.0000,0.0000,16.6443,16.6446,0 +3268,0.0000,0.0000,16.6488,16.6491,0 +3269,0.0000,0.0000,16.7155,16.7158,1 +3270,0.0000,0.0000,16.6462,16.6465,0 +3271,0.0000,0.0000,16.7175,16.7178,1 +3272,0.0000,0.0000,16.6434,16.6438,0 +3273,0.0000,0.0000,16.7040,16.7043,1 +3274,0.0000,0.0000,16.6036,16.6039,0 +3275,0.0000,0.0000,16.6786,16.6789,1 +3276,0.0000,0.0000,16.6501,16.6504,0 +3277,0.0000,0.0000,16.8026,16.8029,1 +3278,0.0000,0.0000,16.6132,16.6135,0 +3279,0.0000,0.0000,16.6204,16.6207,0 +3280,0.0000,0.0000,16.6996,16.6999,1 +3281,0.0000,0.0000,16.6847,16.6850,1 +3282,0.0000,0.0000,16.6363,16.6366,0 +3283,0.0000,0.0000,16.7240,16.7243,1 +3284,0.0000,0.0000,16.5963,16.5966,0 +3285,0.0000,0.0000,16.7110,16.7113,1 +3286,0.0000,0.0000,16.6830,16.6832,1 +3287,0.0000,0.0000,16.6398,16.6402,0 +3288,0.0000,0.0000,16.6727,16.6731,1 +3289,0.0000,0.0000,16.7387,16.7390,1 +3290,0.0000,0.0000,16.5932,16.5935,0 +3291,0.0000,0.0000,16.7023,16.7026,1 +3292,0.0000,0.0000,16.8449,16.8452,1 +3293,0.0000,0.0000,16.4675,16.4678,0 +3294,0.0000,0.0000,16.6425,16.6428,0 +3295,0.0000,0.0000,16.8105,16.8108,1 +3296,0.0000,0.0000,16.5859,16.5862,0 +3297,0.0000,0.0000,16.6869,16.6872,1 +3298,0.0000,0.0000,16.6939,16.6942,1 +3299,0.0000,0.0000,16.6658,16.6661,0 +3300,0.0000,0.0000,16.6546,16.6549,0 +3301,0.0000,0.0000,16.6057,16.6060,0 +3302,0.0000,0.0000,16.7092,16.7095,1 +3303,0.0000,0.0000,16.7117,16.7120,1 +3304,0.0000,0.0000,16.6254,16.6257,0 +3305,0.0000,0.0000,16.6998,16.7001,1 +3306,0.0000,0.0000,16.6311,16.6314,0 +3307,0.0000,0.0000,16.6451,16.6454,0 +3308,0.0000,0.0000,17.0599,17.0602,1 +3309,0.0000,0.0000,16.3653,16.3656,0 +3310,0.0000,0.0000,16.6237,16.6240,0 +3311,0.0000,0.0000,16.7194,16.7197,1 +3312,0.0000,0.0000,16.6824,16.6827,1 +3313,0.0000,0.0000,16.5967,16.5970,0 +3314,0.0000,0.0000,17.0857,17.0860,1 +3315,0.0000,0.0000,16.2878,16.2881,0 +3316,0.0000,0.0000,16.7260,16.7263,1 +3317,0.0000,0.0000,16.3859,16.3862,0 +3318,0.0000,0.0000,7.5531,7.5534,0 +3319,0.0000,0.0000,9.3641,9.3644,0 +3320,0.0000,0.0000,16.6759,16.6762,1 +3321,0.0000,0.0000,16.6808,16.6811,1 +3322,0.0000,0.0000,16.5864,16.5867,0 +3323,0.0000,0.0000,16.6565,16.6568,0 +3324,0.0000,0.0000,16.7414,16.7417,1 +3325,0.0000,0.0000,16.7483,16.7486,1 +3326,0.0000,0.0000,16.5897,16.5900,0 +3327,0.0000,0.0000,16.6399,16.6402,0 +3328,0.0000,0.0000,16.7707,16.7710,1 +3329,0.0000,0.0000,16.6042,16.6045,0 +3330,0.0000,0.0000,16.6030,16.6033,0 +3331,0.0000,0.0000,16.6758,16.6761,1 +3332,0.0000,0.0000,16.6612,16.6615,0 +3333,0.0000,0.0000,16.7317,16.7320,1 +3334,0.0000,0.0000,16.7246,16.7249,1 +3335,0.0000,0.0000,16.5974,16.5977,0 +3336,0.0000,0.0000,16.6278,16.6281,0 +3337,0.0000,0.0000,16.7271,16.7274,1 +3338,0.0000,0.0000,16.8738,16.8741,1 +3339,0.0000,0.0000,16.4598,16.4601,0 +3340,0.0000,0.0000,16.7386,16.7390,1 +3341,0.0000,0.0000,16.6634,16.6637,0 +3342,0.0000,0.0000,16.5924,16.5927,0 +3343,0.0000,0.0000,16.7118,16.7121,1 +3344,0.0000,0.0000,16.6817,16.6820,1 +3345,0.0000,0.0000,16.6155,16.6158,0 +3346,0.0000,0.0000,16.7824,16.7827,1 +3347,0.0000,0.0000,16.7413,16.7416,1 +3348,0.0000,0.0000,16.5224,16.5227,0 +3349,0.0000,0.0000,16.6601,16.6604,0 +3350,0.0000,0.0000,16.5652,16.5655,0 +3351,0.0000,0.0000,16.8376,16.8379,1 +3352,0.0000,0.0000,16.5618,16.5621,0 +3353,0.0000,0.0000,16.6288,16.6291,0 +3354,0.0000,0.0000,16.6726,16.6729,1 +3355,0.0000,0.0000,16.6523,16.6526,0 +3356,0.0000,0.0000,16.7748,16.7751,1 +3357,0.0000,0.0000,16.6630,16.6633,0 +3358,0.0000,0.0000,16.6958,16.6961,1 +3359,0.0000,0.0000,16.6458,16.6461,0 +3360,0.0000,0.0000,16.6641,16.6644,0 +3361,0.0000,0.0000,16.6484,16.6487,0 +3362,0.0000,0.0000,16.6383,16.6387,0 +3363,0.0000,0.0000,7.6370,7.6373,0 +3364,0.0000,0.0000,9.1447,9.1450,0 +3365,0.0000,0.0000,16.6605,16.6608,0 +3366,0.0000,0.0000,16.6145,16.6149,0 +3367,0.0000,0.0000,16.6409,16.6412,0 +3368,0.0000,0.0000,16.7510,16.7513,1 +3369,0.0000,0.0000,16.5863,16.5866,0 +3370,0.0000,0.0000,16.6902,16.6905,1 +3371,0.0000,0.0000,16.5828,16.5831,0 +3372,0.0000,0.0000,16.7694,16.7697,1 +3373,0.0000,0.0000,16.6880,16.6883,1 +3374,0.0000,0.0000,16.6465,16.6468,0 +3375,0.0000,0.0000,16.6515,16.6518,0 +3376,0.0000,0.0000,16.6740,16.6744,1 +3377,0.0000,0.0000,16.8113,16.8116,1 +3378,0.0000,0.0000,16.3528,16.3531,0 +3379,0.0000,0.0000,7.5626,7.5629,0 +3380,0.0000,0.0000,9.3780,9.3783,0 +3381,0.0000,0.0000,16.6160,16.6163,0 +3382,0.0000,0.0000,16.7150,16.7153,1 +3383,0.0000,0.0000,16.5987,16.5990,0 +3384,0.0000,0.0000,16.8278,16.8281,1 +3385,0.0000,0.0000,16.6132,16.6135,0 +3386,0.0000,0.0000,16.6557,16.6561,0 +3387,0.0000,0.0000,16.6133,16.6136,0 +3388,0.0000,0.0000,16.6760,16.6763,1 +3389,0.0000,0.0000,16.6586,16.6589,0 +3390,0.0000,0.0000,16.7633,16.7636,1 +3391,0.0000,0.0000,16.6494,16.6497,0 +3392,0.0000,0.0000,16.5794,16.5797,0 +3393,0.0000,0.0000,16.7494,16.7497,1 +3394,0.0000,0.0000,16.3031,16.3035,0 +3395,0.0000,0.0000,7.6615,7.6618,0 +3396,0.0000,0.0000,9.3732,9.3735,0 +3397,0.0000,0.0000,16.6125,16.6128,0 +3398,0.0000,0.0000,16.7808,16.7812,1 +3399,0.0000,0.0000,16.5610,16.5613,0 +3400,0.0000,0.0000,16.7067,16.7070,1 +3401,0.0000,0.0000,16.7040,16.7043,1 +3402,0.0000,0.0000,16.5918,16.5921,0 +3403,0.0000,0.0000,16.7044,16.7047,1 +3404,0.0000,0.0000,16.7250,16.7253,1 +3405,0.0000,0.0000,16.5907,16.5910,0 +3406,0.0000,0.0000,16.6983,16.6986,1 +3407,0.0000,0.0000,16.7389,16.7392,1 +3408,0.0000,0.0000,16.5879,16.5882,0 +3409,0.0000,0.0000,16.6573,16.6576,0 +3410,0.0000,0.0000,16.7711,16.7714,1 +3411,0.0000,0.0000,16.6327,16.6330,0 +3412,0.0000,0.0000,16.5794,16.5797,0 +3413,0.0000,0.0000,16.7479,16.7482,1 +3414,0.0000,0.0000,16.6510,16.6514,0 +3415,0.0000,0.0000,16.6575,16.6578,0 +3416,0.0000,0.0000,16.7364,16.7367,1 +3417,0.0000,0.0000,16.6698,16.6701,1 +3418,0.0000,0.0000,16.5624,16.5627,0 +3419,0.0000,0.0000,16.6665,16.6668,1 +3420,0.0000,0.0000,16.6695,16.6698,1 +3421,0.0000,0.0000,16.6205,16.6207,0 +3422,0.0000,0.0000,16.7362,16.7365,1 +3423,0.0000,0.0000,16.7751,16.7754,1 +3424,0.0000,0.0000,16.6283,16.6286,0 +3425,0.0000,0.0000,16.6524,16.6527,0 +3426,0.0000,0.0000,16.7574,16.7577,1 +3427,0.0000,0.0000,16.5828,16.5831,0 +3428,0.0000,0.0000,16.5834,16.5837,0 +3429,0.0000,0.0000,16.7220,16.7223,1 +3430,0.0000,0.0000,16.6665,16.6668,1 +3431,0.0000,0.0000,16.8907,16.8910,1 +3432,0.0000,0.0000,16.5425,16.5429,0 +3433,0.0000,0.0000,16.6071,16.6074,0 +3434,0.0000,0.0000,16.6948,16.6951,1 +3435,0.0000,0.0000,16.6270,16.6273,0 +3436,0.0000,0.0000,16.6875,16.6878,1 +3437,0.0000,0.0000,16.7542,16.7545,1 +3438,0.0000,0.0000,16.5968,16.5971,0 +3439,0.0000,0.0000,16.6840,16.6843,1 +3440,0.0000,0.0000,16.6483,16.6486,0 +3441,0.0000,0.0000,16.3511,16.3514,0 +3442,0.0000,0.0000,7.9194,7.9197,0 +3443,0.0000,0.0000,9.0385,9.0389,0 +3444,0.0000,0.0000,16.3506,16.3509,0 +3445,0.0000,0.0000,7.7726,7.7729,0 +3446,0.0000,0.0000,9.3434,9.3437,0 +3447,0.0000,0.0000,16.5210,16.5213,0 +3448,0.0000,0.0000,16.6593,16.6596,0 +3449,0.0000,0.0000,16.7245,16.7248,1 +3450,0.0000,0.0000,16.6595,16.6598,0 +3451,0.0000,0.0000,16.6887,16.6890,1 +3452,0.0000,0.0000,16.6313,16.6316,0 +3453,0.0000,0.0000,16.6317,16.6320,0 +3454,0.0000,0.0000,16.7082,16.7085,1 +3455,0.0000,0.0000,16.6702,16.6705,1 +3456,0.0000,0.0000,16.7207,16.7210,1 +3457,0.0000,0.0000,16.6894,16.6897,1 +3458,0.0000,0.0000,16.6029,16.6032,0 +3459,0.0000,0.0000,16.6988,16.6991,1 +3460,0.0000,0.0000,16.6563,16.6566,0 +3461,0.0000,0.0000,16.7299,16.7302,1 +3462,0.0000,0.0000,16.6360,16.6363,0 +3463,0.0000,0.0000,16.7738,16.7741,1 +3464,0.0000,0.0000,16.6391,16.6394,0 +3465,0.0000,0.0000,16.5872,16.5875,0 +3466,0.0000,0.0000,16.6242,16.6245,0 +3467,0.0000,0.0000,16.8483,16.8486,1 +3468,0.0000,0.0000,16.5621,16.5624,0 +3469,0.0000,0.0000,16.6825,16.6828,1 +3470,0.0000,0.0000,16.6480,16.6483,0 +3471,0.0000,0.0000,16.6936,16.6939,1 +3472,0.0000,0.0000,16.6711,16.6715,1 +3473,0.0000,0.0000,16.6796,16.6799,1 +3474,0.0000,0.0000,16.6320,16.6323,0 +3475,0.0000,0.0000,16.7129,16.7132,1 +3476,0.0000,0.0000,16.6944,16.6947,1 +3477,0.0000,0.0000,16.5844,16.5847,0 +3478,0.0000,0.0000,16.7560,16.7563,1 +3479,0.0000,0.0000,16.6166,16.6169,0 +3480,0.0000,0.0000,16.6517,16.6520,0 +3481,0.0000,0.0000,16.7600,16.7603,1 +3482,0.0000,0.0000,17.1800,17.1803,1 +3483,0.0000,0.0000,16.1510,16.1513,0 +3484,0.0000,0.0000,16.6880,16.6883,1 +3485,0.0000,0.0000,16.5839,16.5842,0 +3486,0.0000,0.0000,16.6888,16.6891,1 +3487,0.0000,0.0000,16.6989,16.6992,1 +3488,0.0000,0.0000,16.6969,16.6972,1 +3489,0.0000,0.0000,16.5941,16.5944,0 +3490,0.0000,0.0000,16.6755,16.6758,1 +3491,0.0000,0.0000,16.6996,16.6999,1 +3492,0.0000,0.0000,16.6962,16.6964,1 +3493,0.0000,0.0000,16.6884,16.6887,1 +3494,0.0000,0.0000,16.6824,16.6827,1 +3495,0.0000,0.0000,16.5991,16.5995,0 +3496,0.0000,0.0000,16.5737,16.5740,0 +3497,0.0000,0.0000,7.7843,7.7846,0 +3498,0.0000,0.0000,8.9844,8.9847,0 +3499,0.0000,0.0000,16.7237,16.7240,1 +3500,0.0000,0.0000,16.5893,16.5896,0 +3501,0.0000,0.0000,16.6972,16.6975,1 +3502,0.0000,0.0000,16.6282,16.6285,0 +3503,0.0000,0.0000,16.6771,16.6774,1 +3504,0.0000,0.0000,16.6734,16.6737,1 +3505,0.0000,0.0000,16.7346,16.7349,1 +3506,0.0000,0.0000,16.6449,16.6452,0 +3507,0.0000,0.0000,16.5877,16.5880,0 +3508,0.0000,0.0000,16.7171,16.7174,1 +3509,0.0000,0.0000,16.6616,16.6619,0 +3510,0.0000,0.0000,16.6697,16.6700,1 +3511,0.0000,0.0000,16.7003,16.7006,1 +3512,0.0000,0.0000,16.7317,16.7320,1 +3513,0.0000,0.0000,16.6739,16.6742,1 +3514,0.0000,0.0000,16.6051,16.6054,0 +3515,0.0000,0.0000,16.7376,16.7380,1 +3516,0.0000,0.0000,7.5918,7.5921,0 +3517,0.0000,0.0000,9.0916,9.0919,0 +3518,0.0000,0.0000,16.6235,16.6238,0 +3519,0.0000,0.0000,16.5954,16.5957,0 +3520,0.0000,0.0000,16.6742,16.6746,1 +3521,0.0000,0.0000,16.7365,16.7368,1 +3522,0.0000,0.0000,16.6296,16.6299,0 +3523,0.0000,0.0000,16.6867,16.6870,1 +3524,0.0000,0.0000,16.6020,16.6023,0 +3525,0.0000,0.0000,16.9951,16.9954,1 +3526,0.0000,0.0000,16.4887,16.4891,0 +3527,0.0000,0.0000,16.6309,16.6313,0 +3528,0.0000,0.0000,16.6215,16.6218,0 +3529,0.0000,0.0000,16.7015,16.7018,1 +3530,0.0000,0.0000,16.6953,16.6956,1 +3531,0.0000,0.0000,16.7752,16.7755,1 +3532,0.0000,0.0000,16.6230,16.6233,0 +3533,0.0000,0.0000,16.6217,16.6220,0 +3534,0.0000,0.0000,16.5201,16.5204,0 +3535,0.0000,0.0000,16.8211,16.8214,1 +3536,0.0000,0.0000,16.7519,16.7522,1 +3537,0.0000,0.0000,7.1338,7.1340,0 +3538,0.0000,0.0000,9.5271,9.5274,0 +3539,0.0000,0.0000,16.7054,16.7057,1 +3540,0.0000,0.0000,16.6127,16.6130,0 +3541,0.0000,0.0000,16.5783,16.5786,0 +3542,0.0000,0.0000,16.6703,16.6706,1 +3543,0.0000,0.0000,16.7374,16.7378,1 +3544,0.0000,0.0000,16.4693,16.4696,0 +3545,0.0000,0.0000,7.7468,7.7471,0 +3546,0.0000,0.0000,9.2238,9.2241,0 +3547,0.0000,0.0000,16.6080,16.6083,0 +3548,0.0000,0.0000,16.5738,16.5741,0 +3549,0.0000,0.0000,16.5001,16.5004,0 +3550,0.0000,0.0000,7.7554,7.7557,0 +3551,0.0000,0.0000,9.1449,9.1452,0 +3552,0.0000,0.0000,16.6740,16.6743,1 +3553,0.0000,0.0000,16.5698,16.5701,0 +3554,0.0000,0.0000,16.7876,16.7879,1 +3555,0.0000,0.0000,16.6039,16.6042,0 +3556,0.0000,0.0000,16.6355,16.6358,0 +3557,0.0000,0.0000,16.8308,16.8311,1 +3558,0.0000,0.0000,16.6499,16.6502,0 +3559,0.0000,0.0000,15.1517,15.1520,0 +3560,0.0000,0.0000,16.6477,16.6478,0 +3561,0.0000,0.0000,16.6874,16.6875,1 +3562,0.0000,0.0000,16.1073,16.1074,0 +3563,0.0000,0.0000,18.6179,18.6180,1 +3564,0.0000,0.0000,16.7109,16.7112,1 +3565,0.0000,0.0000,16.3107,16.3109,0 +3566,0.0000,0.0000,8.1231,8.1233,0 +3567,0.0000,0.0000,9.2109,9.2111,0 +3568,0.0000,0.0000,16.4574,16.4576,0 +3569,0.0000,0.0000,16.9839,16.9842,1 +3570,0.0000,0.0000,16.5656,16.5659,0 +3571,0.0000,0.0000,16.8021,16.8024,1 +3572,0.0000,0.0000,16.6085,16.6088,0 +3573,0.0000,0.0000,16.7810,16.7813,1 +3574,0.0000,0.0000,16.5555,16.5558,0 +3575,0.0000,0.0000,16.6584,16.6587,0 +3576,0.0000,0.0000,16.6339,16.6342,0 +3577,0.0000,0.0000,16.6634,16.6639,0 +3578,0.0000,0.0000,16.7237,16.7240,1 +3579,0.0000,0.0000,16.6261,16.6264,0 +3580,0.0000,0.0000,16.6896,16.6900,1 +3581,0.0000,0.0000,16.6850,16.6853,1 +3582,0.0000,0.0000,16.6362,16.6365,0 +3583,0.0000,0.0000,16.6374,16.6377,0 +3584,0.0000,0.0000,16.7545,16.7548,1 +3585,0.0000,0.0000,16.6817,16.6820,1 +3586,0.0000,0.0000,16.6392,16.6395,0 +3587,0.0000,0.0000,16.6816,16.6819,1 +3588,0.0000,0.0000,16.6436,16.6439,0 +3589,0.0000,0.0000,16.7125,16.7128,1 +3590,0.0000,0.0000,16.5959,16.5962,0 +3591,0.0000,0.0000,16.6876,16.6879,1 +3592,0.0000,0.0000,16.7438,16.7441,1 +3593,0.0000,0.0000,16.5996,16.5999,0 +3594,0.0000,0.0000,16.7639,16.7642,1 +3595,0.0000,0.0000,16.7430,16.7433,1 +3596,0.0000,0.0000,16.5922,16.5925,0 +3597,0.0000,0.0000,16.6244,16.6247,0 +3598,0.0000,0.0000,16.6191,16.6194,0 +3599,0.0000,0.0000,16.7592,16.7595,1 +3600,0.0000,0.0000,16.5882,16.5885,0 +3601,0.0000,0.0000,16.2651,16.2655,0 +3602,0.0000,0.0000,16.8162,16.8165,1 +3603,0.0000,0.0000,16.5638,16.5641,0 +3604,0.0000,0.0000,16.3687,16.3691,0 +3605,0.0000,0.0000,16.5809,16.5812,0 +3606,0.0000,0.0000,16.7438,16.7441,1 +3607,0.0000,0.0000,16.5798,16.5801,0 +3608,0.0000,0.0000,16.7514,16.7517,1 +3609,0.0000,0.0000,16.5981,16.5984,0 +3610,0.0000,0.0000,16.6972,16.6975,1 +3611,0.0000,0.0000,16.6945,16.6948,1 +3612,0.0000,0.0000,16.5956,16.5959,0 +3613,0.0000,0.0000,16.7524,16.7527,1 +3614,0.0000,0.0000,16.6044,16.6047,0 +3615,0.0000,0.0000,16.6765,16.6768,1 +3616,0.0000,0.0000,16.7154,16.7157,1 +3617,0.0000,0.0000,16.6423,16.6426,0 +3618,0.0000,0.0000,16.7066,16.7069,1 +3619,0.0000,0.0000,16.7020,16.7023,1 +3620,0.0000,0.0000,16.5309,16.5312,0 +3621,0.0000,0.0000,16.6944,16.6947,1 +3622,0.0000,0.0000,16.7085,16.7088,1 +3623,0.0000,0.0000,16.6684,16.6687,1 +3624,0.0000,0.0000,16.6657,16.6660,0 +3625,0.0000,0.0000,16.4093,16.4096,0 +3626,0.0000,0.0000,7.5507,7.5510,0 +3627,0.0000,0.0000,9.4077,9.4080,0 +3628,0.0000,0.0000,16.6937,16.6940,1 +3629,0.0000,0.0000,16.6448,16.6451,0 +3630,0.0000,0.0000,16.6241,16.6244,0 +3631,0.0000,0.0000,16.7039,16.7042,1 +3632,0.0000,0.0000,16.6187,16.6190,0 +3633,0.0000,0.0000,16.7021,16.7024,1 +3634,0.0000,0.0000,16.6716,16.6719,1 +3635,0.0000,0.0000,16.6799,16.6802,1 +3636,0.0000,0.0000,16.7385,16.7388,1 +3637,0.0000,0.0000,16.5929,16.5932,0 +3638,0.0000,0.0000,16.6045,16.6048,0 +3639,0.0000,0.0000,7.4615,7.4618,0 +3640,0.0000,0.0000,9.3613,9.3616,0 +3641,0.0000,0.0000,16.6009,16.6012,0 +3642,0.0000,0.0000,16.6180,16.6183,0 +3643,0.0000,0.0000,16.6682,16.6685,1 +3644,0.0000,0.0000,16.7013,16.7016,1 +3645,0.0000,0.0000,16.6661,16.6664,0 +3646,0.0000,0.0000,16.6629,16.6632,0 +3647,0.0000,0.0000,16.6865,16.6868,1 +3648,0.0000,0.0000,15.4973,15.4975,0 +3649,0.0000,0.0000,16.6318,16.6320,0 +3650,0.0000,0.0000,16.7524,16.7525,1 +3651,0.0000,0.0000,16.7274,16.7275,1 +3652,0.0000,0.0000,16.6307,16.6309,0 +3653,0.0000,0.0000,16.6863,16.6865,1 +3654,0.0000,0.0000,16.6162,16.6164,0 +3655,0.0000,0.0000,17.5654,17.5656,1 +3656,0.0000,0.0000,7.7929,7.7932,0 +3657,0.0000,0.0000,9.5167,9.5170,0 +3658,0.0000,0.0000,16.5081,16.5084,0 +3659,0.0000,0.0000,16.4477,16.4480,0 +3660,0.0000,0.0000,16.7224,16.7227,1 +3661,0.0000,0.0000,16.6935,16.6938,1 +3662,0.0000,0.0000,16.6739,16.6742,1 +3663,0.0000,0.0000,16.6204,16.6207,0 +3664,0.0000,0.0000,16.7156,16.7159,1 +3665,0.0000,0.0000,16.6730,16.6733,1 +3666,0.0000,0.0000,16.6233,16.6236,0 +3667,0.0000,0.0000,16.6433,16.6436,0 +3668,0.0000,0.0000,16.7976,16.7980,1 +3669,0.0000,0.0000,16.5937,16.5940,0 +3670,0.0000,0.0000,16.6806,16.6809,1 +3671,0.0000,0.0000,16.5834,16.5837,0 +3672,0.0000,0.0000,16.6695,16.6698,1 +3673,0.0000,0.0000,16.7095,16.7098,1 +3674,0.0000,0.0000,16.6511,16.6514,0 +3675,0.0000,0.0000,16.6900,16.6903,1 +3676,0.0000,0.0000,16.6385,16.6388,0 +3677,0.0000,0.0000,16.6789,16.6792,1 +3678,0.0000,0.0000,16.6896,16.6899,1 +3679,0.0000,0.0000,16.7437,16.7440,1 +3680,0.0000,0.0000,16.6333,16.6336,0 +3681,0.0000,0.0000,16.6846,16.6849,1 +3682,0.0000,0.0000,16.6881,16.6884,1 +3683,0.0000,0.0000,16.3853,16.3856,0 +3684,0.0000,0.0000,7.5662,7.5665,0 +3685,0.0000,0.0000,9.4652,9.4656,0 +3686,0.0000,0.0000,16.5759,16.5762,0 +3687,0.0000,0.0000,16.6584,16.6587,0 +3688,0.0000,0.0000,16.6160,16.6163,0 +3689,0.0000,0.0000,16.6856,16.6859,1 +3690,0.0000,0.0000,16.6898,16.6901,1 +3691,0.0000,0.0000,16.6679,16.6682,1 +3692,0.0000,0.0000,16.7223,16.7226,1 +3693,0.0000,0.0000,16.6297,16.6300,0 +3694,0.0000,0.0000,16.5941,16.5944,0 +3695,0.0000,0.0000,16.7793,16.7796,1 +3696,0.0000,0.0000,16.6298,16.6301,0 +3697,0.0000,0.0000,16.6301,16.6304,0 +3698,0.0000,0.0000,16.7328,16.7331,1 +3699,0.0000,0.0000,16.6715,16.6718,1 +3700,0.0000,0.0000,16.6841,16.6844,1 +3701,0.0000,0.0000,7.5344,7.5347,0 +3702,0.0000,0.0000,9.2573,9.2576,0 +3703,0.0000,0.0000,16.5783,16.5786,0 +3704,0.0000,0.0000,16.5928,16.5930,0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/run_status.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/run_status.txt new file mode 100644 index 0000000..cb84872 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/static_once_upload_5k60/run_status.txt @@ -0,0 +1,5 @@ +args=--synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --static-frame +Computer: OOSU-IMAC +User: È«±æµ¿ +Date: 2026-05-15 1:27:09.82 +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_console.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_console.txt new file mode 100644 index 0000000..c86746f --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_console.txt @@ -0,0 +1,52 @@ +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=29.979 +frames=1799 +budget_ms=16.667 +p95_total_ms=34.257 +max_total_ms=96.751 +missed_frames=1799 +vsync=on +static_frame=off +gpu_pattern=off +uncapped=off +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=61.749 +frames=3705 +budget_ms=16.667 +p95_total_ms=16.803 +max_total_ms=83.628 +missed_frames=1684 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=61.140 +frames=3669 +budget_ms=16.667 +p95_total_ms=16.794 +max_total_ms=29.818 +missed_frames=1724 +vsync=on +static_frame=off +gpu_pattern=on +uncapped=off +iBridge Plan A synthetic renderer +resolution=5120x2880 +target_fps=60 +actual_fps=290.663 +frames=4362 +budget_ms=16.667 +p95_total_ms=9.073 +max_total_ms=9.268 +missed_frames=0 +vsync=off +static_frame=off +gpu_pattern=on +uncapped=on diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_status.txt b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_status.txt new file mode 100644 index 0000000..59328a7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/suite_status.txt @@ -0,0 +1,8 @@ +suite_started +2026-05-15 1:26:08.76 +running dynamic_5k60 +running static_once_upload_5k60 +running gpu_pattern_5k60 +running gpu_pattern_uncapped_5k60 +suite_finished +2026-05-15 1:29:25.35 diff --git a/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/summary.md b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/summary.md new file mode 100644 index 0000000..99f7df3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/summary.md @@ -0,0 +1,67 @@ +# Experiment Report — Windows Receiver Isolation Suite + +Date: 2026-05-15 01:26 KST +Prompt: `prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md` +Branch: `feat/plan-a-5k60-benchmark` +Hardware: iMac Late 2015 Windows receiver, AMD Radeon R9 M380 2GB +Transport: none +Mode: local synthetic D3D11 render isolation + +## Goal + +Separate the Windows receiver's 5K60 bottleneck into: + +- CPU synthetic frame fill +- full 5120x2880 BGRA texture upload +- D3D11 draw/present on the iMac 5K panel + +## Setup + +- Windows 10 Pro +- Display mode: 5120x2880 @ 60Hz +- GPU: AMD Radeon R9 M380 +- Build: MSVC manual build, `apps\receiver-windows\build\manual\ibridge-receiver.exe` +- Runs launched through Windows Task Scheduler into the active `í™ê¸¸ë™` console session. + +## Commands + +```cmd +ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen +ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --static-frame +ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --gpu-pattern +ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 15 --fullscreen --gpu-pattern --no-vsync --uncapped +``` + +## Results + +| Mode | Actual fps | Avg fill ms | Avg upload ms | Avg draw/present ms | Avg total ms | P95 total ms | Max total ms | Missed frames | +|---|---:|---:|---:|---:|---:|---:|---:|---:| +| dynamic_5k60 | 29.979 | 14.4046 | 18.6822 | 0.2685 | 33.3555 | 34.2572 | 96.7510 | 1799 / 1799 | +| static_once_upload_5k60 | 61.749 | 0.0040 | 0.0168 | 16.1721 | 16.1932 | 16.8029 | 83.6277 | 1684 / 3705 | +| gpu_pattern_5k60 | 61.140 | 0.0000 | 0.0000 | 16.3543 | 16.3546 | 16.7943 | 29.8179 | 1724 / 3669 | +| gpu_pattern_uncapped_5k60 | 290.663 | 0.0000 | 0.0000 | 3.4389 | 3.4392 | 9.0732 | 9.2685 | 0 / 4362 | + +## Interpretation + +The iMac can present 5K frames at approximately 60Hz when CPU fill and full-frame texture upload are removed. The unthrottled GPU-pattern run reached 290 fps, which means the D3D11 shader/draw/present ceiling is not the main blocker. + +The dynamic full-frame CPU-filled BGRA path is not viable for Plan A 5K60. It averaged 33.36 ms per frame and only reached 29.98 fps in this suite. The two largest measured costs were: + +- CPU synthetic fill: about 14.40 ms +- full 5K BGRA texture upload: about 18.68 ms + +The static and GPU-pattern vsync runs report many frames slightly above the strict 16.667 ms budget because vsync pacing jitters around the threshold. They still delivered about 61 fps. The uncapped run confirms the renderer can draw much faster when not synchronized to the display. + +## Decision + +- [x] Continue Windows Receiver implementation +- [x] Mark dynamic CPU-filled full-frame upload as a failed Plan A receiver path +- [ ] Do not declare all near-raw paths failed yet + +Plan A can only continue if future paths avoid per-frame CPU fill and avoid full BGRA upload, for example GPU-side generation, dirty rects, hardware surfaces, or lower-copy formats. For the external display product path, this result pushes the project toward Plan B compressed/hardware-decoded frames unless transport/capture experiments reveal a better low-copy raw path. + +## Next + +- Add a lightweight HUD or overlay that exposes current mode/fps/timing during receiver runs. +- Add network receive scaffolding after receiver local benchmark metrics are stable. +- Proceed through Prompt 09 review gate before moving to macOS Primary. diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/console.txt b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/console.txt new file mode 100644 index 0000000..ea74448 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/console.txt @@ -0,0 +1,14 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=2 +codec=h264 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +avg_generate_ms=4.894 +avg_encode_latency_ms=119.916 +p95_encode_latency_ms=151.081 +max_encode_latency_ms=157.933 +payload_bytes=44277068 +csv=benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv new file mode 100644 index 0000000..525490a --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_bytes,status +0,10.7881,105.1395,487719,0 +1,6.4500,37.1718,384828,0 +2,6.2809,39.1798,399455,0 +3,5.4894,40.8632,396826,0 +4,5.0351,71.2432,394128,0 +5,5.4370,67.5115,388492,0 +6,5.1368,70.3427,388350,0 +7,4.7562,100.8004,385583,0 +8,4.6201,101.3053,315286,0 +9,7.5425,87.7802,375602,0 +10,6.1274,109.8555,377431,0 +11,6.2080,101.3746,378602,0 +12,4.4020,90.7394,368043,0 +13,4.4204,110.1941,376395,0 +14,4.4255,101.1659,378613,0 +15,4.4271,96.5579,378188,0 +16,4.5061,108.7091,324678,0 +17,4.5090,103.2590,363424,0 +18,4.5139,93.2230,370721,0 +19,4.6703,112.2675,374715,0 +20,4.3982,103.4377,367020,0 +21,4.4397,95.8071,372804,0 +22,4.4512,112.3140,376374,0 +23,4.6305,104.5225,377357,0 +24,4.6012,95.5194,310702,0 +25,4.7846,113.8140,371114,0 +26,4.6195,105.5452,372447,0 +27,4.3589,97.3039,372508,0 +28,4.4681,115.4863,345339,0 +29,4.3753,107.1508,366914,0 +30,4.3865,98.7147,368097,0 +31,4.3875,117.4072,367574,0 +32,4.4206,108.4125,312636,0 +33,4.4060,100.7971,352262,0 +34,4.4489,117.3033,359138,0 +35,4.4683,113.3402,363616,0 +36,4.3309,99.0061,365263,0 +37,4.5219,121.3800,367791,0 +38,6.7215,110.8536,368651,0 +39,4.5762,105.1725,369252,0 +40,4.6180,118.6307,302462,0 +41,4.4985,112.8330,367270,0 +42,4.4948,102.9607,370119,0 +43,4.5067,122.1945,372645,0 +44,4.5499,113.1145,363946,0 +45,4.5119,104.9147,372586,0 +46,4.4733,123.3719,373617,0 +47,4.4300,114.6997,374606,0 +48,4.6776,105.4991,322713,0 +49,4.5961,124.0353,361924,0 +50,4.9110,117.7727,370218,0 +51,4.6116,110.4464,372573,0 +52,4.5397,128.6557,364655,0 +53,4.4860,116.9550,372618,0 +54,4.5194,108.0138,376191,0 +55,4.6097,126.4259,376569,0 +56,4.7299,117.8613,311086,0 +57,4.6948,109.3718,369287,0 +58,4.8066,127.8467,372075,0 +59,4.7428,119.3105,373379,0 +60,4.6263,115.6241,681630,0 +61,4.6076,132.6900,348091,0 +62,4.6224,124.2726,377531,0 +63,4.4843,115.8773,379743,0 +64,4.5378,133.8964,326563,0 +65,4.5754,125.4436,361914,0 +66,4.5088,117.0725,367500,0 +67,4.5793,135.3861,369745,0 +68,4.9412,126.3575,369812,0 +69,4.7466,118.1463,372275,0 +70,4.5867,136.5432,372720,0 +71,4.7718,127.7726,371564,0 +72,5.0068,118.9382,304684,0 +73,5.1197,137.4325,368032,0 +74,4.9377,128.9982,372076,0 +75,4.9062,120.5494,373769,0 +76,5.0073,139.0211,363693,0 +77,4.9623,130.4712,372390,0 +78,4.7132,122.3117,375268,0 +79,4.8556,140.6575,375540,0 +80,4.9334,131.9077,323631,0 +81,4.8343,123.3286,362166,0 +82,5.0412,145.3565,369798,0 +83,4.9991,131.1660,373726,0 +84,4.9496,125.4038,363050,0 +85,5.2462,141.9888,372795,0 +86,4.9800,135.8042,376370,0 +87,5.0572,126.4656,377978,0 +88,4.9998,143.4830,311114,0 +89,4.9236,135.9113,370124,0 +90,4.8403,126.8164,372423,0 +91,5.0103,145.4882,372911,0 +92,5.0752,136.7485,345137,0 +93,4.9800,128.3565,367081,0 +94,5.0012,146.6940,367282,0 +95,4.8688,138.4295,366630,0 +96,4.9322,129.4995,313090,0 +97,5.0546,151.0700,353345,0 +98,4.9561,138.0048,364266,0 +99,5.0542,131.8982,368717,0 +100,5.1418,148.8275,371156,0 +101,5.0183,142.3035,373257,0 +102,5.0354,131.6079,375279,0 +103,4.9535,151.2882,374532,0 +104,4.8541,142.1924,302922,0 +105,4.9459,134.0613,373949,0 +106,4.9432,152.6280,376060,0 +107,4.8835,144.2058,378398,0 +108,4.9387,135.3969,370093,0 +109,4.9429,153.9488,378577,0 +110,5.0605,145.5023,381204,0 +111,4.8898,137.3265,382301,0 +112,4.9710,155.5510,329087,0 +113,4.9911,147.0743,367889,0 +114,4.9223,138.3480,377338,0 +115,4.9984,156.5726,378513,0 +116,4.8690,148.1686,372870,0 +117,4.8801,139.6305,378845,0 +118,4.8432,157.9333,381514,0 +119,4.7955,149.2025,382633,0 diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/summary.md b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/summary.md new file mode 100644 index 0000000..f410fca --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/summary.md @@ -0,0 +1,40 @@ +# Experiment Report — Primary Synthetic 1440p60 H.264 Encode + +Date: 2026-05-15 01:40 KST +Prompt: `prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md` +Branch: `feat/plan-a-5k60-benchmark` +Hardware: MacBook Air M1, macOS 14.5 +Mode: synthetic BGRA source, VideoToolbox H.264 + +## Goal + +Verify that the macOS Primary CLI can generate synthetic 2560x1440 frames at 60fps target and encode them with VideoToolbox H.264 while writing diagnostics CSV. + +## Command + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv +``` + +## Results + +| Metric | Value | +|---|---:| +| frames requested | 120 | +| frames encoded | 120 | +| failed frames | 0 | +| avg generate | 4.894 ms | +| avg encode latency | 119.916 ms | +| p95 encode latency | 151.081 ms | +| max encode latency | 157.933 ms | +| payload bytes | 44,277,068 | + +## Interpretation + +The H.264 path is functional and writes diagnostics, but the measured callback latency is too high for an external-display target. The next Primary revision should tune VideoToolbox for lower latency and measure whether per-frame completion, lower queue depth, or additional compression properties reduce callback delay. + +## Decision + +- [x] Continue Primary implementation +- [ ] Accept current latency for product use +- [x] Needs low-latency tuning diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/console.txt b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/console.txt new file mode 100644 index 0000000..2bb8802 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/console.txt @@ -0,0 +1,14 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=2 +codec=hevc +frames_requested=120 +frames_encoded=120 +failed_frames=0 +avg_generate_ms=4.892 +avg_encode_latency_ms=133.649 +p95_encode_latency_ms=162.608 +max_encode_latency_ms=169.744 +payload_bytes=43277169 +csv=benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv new file mode 100644 index 0000000..6ef0ce1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_bytes,status +0,6.7365,102.6096,451943,0 +1,6.5375,61.7965,338263,0 +2,6.4835,63.9681,359308,0 +3,5.2225,67.2982,348726,0 +4,4.9984,96.5583,354684,0 +5,5.3593,87.6337,361366,0 +6,4.9805,91.0984,359123,0 +7,4.7558,120.5411,362422,0 +8,7.4864,108.8830,332059,0 +9,7.8588,103.9869,364604,0 +10,6.5890,119.3372,367646,0 +11,4.3862,114.6559,365198,0 +12,4.3781,104.9502,367309,0 +13,4.3428,122.8877,366511,0 +14,4.6983,114.2210,366655,0 +15,4.4770,106.7780,373605,0 +16,4.4536,123.7273,344276,0 +17,4.5076,115.9216,373169,0 +18,4.4600,107.8893,378534,0 +19,4.3894,124.7390,373173,0 +20,4.4520,116.7570,236652,0 +21,4.3943,108.8056,399407,0 +22,4.5710,125.6025,373171,0 +23,4.4466,117.9865,371713,0 +24,4.4854,112.9249,351140,0 +25,4.6841,126.4262,368743,0 +26,4.4546,122.4975,371221,0 +27,4.4216,109.6230,368132,0 +28,4.4190,129.3999,369803,0 +29,4.3391,120.4813,368396,0 +30,4.4063,113.1552,368071,0 +31,4.4330,131.1379,369943,0 +32,4.4545,120.9880,327792,0 +33,4.4039,114.0408,361858,0 +34,4.4709,130.5915,368441,0 +35,4.3292,123.1350,359296,0 +36,4.4720,114.7258,228642,0 +37,4.8008,134.0755,389208,0 +38,4.7637,123.9343,367046,0 +39,4.5847,118.8697,365641,0 +40,4.6534,131.9230,332652,0 +41,4.4420,129.2114,365276,0 +42,4.5678,115.5902,368391,0 +43,4.5825,135.8245,367299,0 +44,4.5439,126.5058,365065,0 +45,4.5243,119.1583,366667,0 +46,4.5371,135.6675,363814,0 +47,4.7340,127.7203,374504,0 +48,4.7799,119.6095,343311,0 +49,4.7265,138.5573,373636,0 +50,4.5188,128.5380,380205,0 +51,4.5557,121.4401,370763,0 +52,4.3600,138.2242,236545,0 +53,4.4588,130.3644,397633,0 +54,4.4551,122.2028,374743,0 +55,4.4287,139.6010,370650,0 +56,4.6525,131.4513,349701,0 +57,4.6716,123.4545,370262,0 +58,4.7117,145.4161,371574,0 +59,4.6325,137.6467,368558,0 +60,4.5706,128.5950,543764,0 +61,4.5617,145.7205,345741,0 +62,4.4918,137.8659,366487,0 +63,4.6095,129.6209,366621,0 +64,4.5084,147.1799,323436,0 +65,4.5890,139.1326,363316,0 +66,4.4081,131.2444,369161,0 +67,4.5168,148.2318,359928,0 +68,4.5874,140.4092,227336,0 +69,4.9125,131.9100,387711,0 +70,5.0769,148.9343,367603,0 +71,5.0701,141.1124,365199,0 +72,5.1472,132.8721,332667,0 +73,5.0940,150.6055,364454,0 +74,4.9301,145.5750,368058,0 +75,5.1155,133.0641,364801,0 +76,5.1077,152.7899,367207,0 +77,5.0000,144.2405,365249,0 +78,5.0132,136.1525,364887,0 +79,5.0154,153.2392,372560,0 +80,5.0178,146.1207,344566,0 +81,4.9673,136.9211,372139,0 +82,5.2952,154.4185,379853,0 +83,4.9914,146.6356,371012,0 +84,4.9855,138.5467,235746,0 +85,5.0133,155.6937,401050,0 +86,4.9496,147.7783,375390,0 +87,5.0554,139.5833,370862,0 +88,4.9871,156.9929,351421,0 +89,5.0515,148.9562,369792,0 +90,5.0743,140.9035,370538,0 +91,5.0322,158.4859,367208,0 +92,4.9847,150.5297,370894,0 +93,4.9949,142.4810,369602,0 +94,5.0417,159.6582,368989,0 +95,5.0211,153.6958,370505,0 +96,5.0585,142.6134,329887,0 +97,5.3650,162.6070,363599,0 +98,5.0542,152.4280,370808,0 +99,5.2810,145.2194,361616,0 +100,5.0900,162.2565,232500,0 +101,5.0222,154.5965,391675,0 +102,5.0177,146.3698,367268,0 +103,5.0451,164.0157,370987,0 +104,4.9960,156.1668,335064,0 +105,5.0436,147.9972,364431,0 +106,5.0360,165.4304,369614,0 +107,5.1965,157.4125,369351,0 +108,5.0625,149.4885,369494,0 +109,5.0800,167.1933,369890,0 +110,5.1040,159.3577,370393,0 +111,5.0512,153.4866,377217,0 +112,5.1189,167.2212,352331,0 +113,5.1432,160.8522,376384,0 +114,5.0558,152.0356,382895,0 +115,5.0055,169.7436,374742,0 +116,5.0115,161.6614,240328,0 +117,5.0377,153.8578,403389,0 +118,4.9188,162.6207,377594,0 +119,4.9952,154.6159,375820,0 diff --git a/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/summary.md b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/summary.md new file mode 100644 index 0000000..bf07dc8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/summary.md @@ -0,0 +1,40 @@ +# Experiment Report — Primary Synthetic 1440p60 HEVC Encode + +Date: 2026-05-15 01:40 KST +Prompt: `prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md` +Branch: `feat/plan-a-5k60-benchmark` +Hardware: MacBook Air M1, macOS 14.5 +Mode: synthetic BGRA source, VideoToolbox HEVC + +## Goal + +Verify that the macOS Primary CLI can generate synthetic 2560x1440 frames at 60fps target and encode them with VideoToolbox HEVC while writing diagnostics CSV. + +## Command + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec hevc --csv benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv +``` + +## Results + +| Metric | Value | +|---|---:| +| frames requested | 120 | +| frames encoded | 120 | +| failed frames | 0 | +| avg generate | 4.892 ms | +| avg encode latency | 133.649 ms | +| p95 encode latency | 162.608 ms | +| max encode latency | 169.744 ms | +| payload bytes | 43,277,169 | + +## Interpretation + +The HEVC path is functional and writes diagnostics. In this first run it had slightly higher callback latency than H.264. The payload size was similar to H.264 for the synthetic pattern, so codec quality/bitrate decisions need screen-content tests rather than this pattern alone. + +## Decision + +- [x] Continue Primary implementation +- [ ] Accept current latency for product use +- [x] Needs low-latency tuning and screen-content tests diff --git a/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_console.txt b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_console.txt new file mode 100644 index 0000000..c38fe17 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_console.txt @@ -0,0 +1,17 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=1 +codec=h264 +frames_requested=60 +frames_encoded=60 +failed_frames=60 +avg_generate_ms=18.679 +avg_encode_latency_ms=8.780 +p95_encode_latency_ms=9.649 +max_encode_latency_ms=68.168 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=0 +send_target=100.86.52.88:48320 +csv=benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_stats.csv b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_stats.csv new file mode 100644 index 0000000..624e763 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,22.8299,68.1683,0.0000,0,-10279 +1,20.5115,7.5683,0.0000,0,-10279 +2,17.8570,7.3271,0.0000,0,-10279 +3,17.0738,7.3547,0.0000,0,-10279 +4,16.8333,7.3673,0.0000,0,-10279 +5,16.6877,7.2820,0.0000,0,-10279 +6,16.6842,7.3689,0.0000,0,-10279 +7,16.9473,7.2984,0.0000,0,-10279 +8,16.6059,7.3810,0.0000,0,-10279 +9,16.6282,7.3137,0.0000,0,-10279 +10,16.7941,7.2767,0.0000,0,-10279 +11,16.6399,7.3238,0.0000,0,-10279 +12,16.6807,7.3221,0.0000,0,-10279 +13,16.8448,7.3133,0.0000,0,-10279 +14,16.7638,7.2675,0.0000,0,-10279 +15,16.7108,7.3346,0.0000,0,-10279 +16,16.9268,7.4192,0.0000,0,-10279 +17,16.7663,7.3048,0.0000,0,-10279 +18,16.7244,7.3278,0.0000,0,-10279 +19,17.2955,7.6350,0.0000,0,-10279 +20,17.9093,7.8416,0.0000,0,-10279 +21,24.2581,8.2942,0.0000,0,-10279 +22,29.0482,8.2125,0.0000,0,-10279 +23,31.0883,8.0685,0.0000,0,-10279 +24,22.1054,7.9965,0.0000,0,-10279 +25,17.2776,7.2082,0.0000,0,-10279 +26,16.6008,7.1021,0.0000,0,-10279 +27,16.4289,7.0570,0.0000,0,-10279 +28,16.5051,7.6359,0.0000,0,-10279 +29,17.0120,7.6922,0.0000,0,-10279 +30,17.0255,7.3313,0.0000,0,-10279 +31,16.6517,7.2611,0.0000,0,-10279 +32,16.5524,7.3871,0.0000,0,-10279 +33,16.7067,6.9967,0.0000,0,-10279 +34,16.5878,7.2520,0.0000,0,-10279 +35,16.8083,7.2482,0.0000,0,-10279 +36,16.5103,7.2652,0.0000,0,-10279 +37,16.6511,8.1259,0.0000,0,-10279 +38,23.2342,8.2806,0.0000,0,-10279 +39,19.8950,9.6489,0.0000,0,-10279 +40,19.7013,9.6576,0.0000,0,-10279 +41,18.3894,9.1235,0.0000,0,-10279 +42,18.5102,7.4241,0.0000,0,-10279 +43,17.7252,7.1762,0.0000,0,-10279 +44,17.0919,7.1923,0.0000,0,-10279 +45,16.7371,8.4012,0.0000,0,-10279 +46,18.4113,8.7964,0.0000,0,-10279 +47,17.2199,7.3287,0.0000,0,-10279 +48,17.0627,7.8189,0.0000,0,-10279 +49,17.4273,7.5413,0.0000,0,-10279 +50,17.1323,7.4861,0.0000,0,-10279 +51,20.2847,8.3008,0.0000,0,-10279 +52,48.4268,7.6754,0.0000,0,-10279 +53,18.2412,7.3581,0.0000,0,-10279 +54,17.9288,7.3395,0.0000,0,-10279 +55,17.1137,7.3216,0.0000,0,-10279 +56,17.1317,7.6023,0.0000,0,-10279 +57,17.5086,9.6236,0.0000,0,-10279 +58,18.7541,13.2366,0.0000,0,-10279 +59,18.2985,8.5446,0.0000,0,-10279 diff --git a/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/receiver_stats.csv b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/receiver_stats.csv new file mode 100644 index 0000000..8cbbd77 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/receiver_stats.csv @@ -0,0 +1 @@ +frame_id,payload_len,dropped_before,missing_before,receive_ms,width,height,fps_target,codec,flags diff --git a/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/summary.md b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/summary.md new file mode 100644 index 0000000..076bf1b --- /dev/null +++ b/benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/summary.md @@ -0,0 +1,27 @@ +# Plan B 5K60 H.264 TCP Attempt + +Prompt: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +Command: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 5120x2880 --fps 60 --duration 1 --codec h264 --send-host 100.86.52.88 --send-port 48320 --csv benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/primary_stats.csv +``` + +Result: + +| Metric | Value | +|---|---:| +| Frames requested | 60 | +| Failed frames | 60 | +| Status | -10279 for every frame | +| Payload bytes | 0 | +| Avg synthetic generation | 18.679 ms | +| Avg encode callback latency | 8.780 ms | +| Receiver frames | 0 | + +Classification: + +- `encode bottleneck`: H.264 5120x2880 frames did not produce compressed payloads on this MacBook Air VideoToolbox path. +- `transport/decode/render`: not reached for H.264 because payload bytes were zero. + diff --git a/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_console.txt b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_console.txt new file mode 100644 index 0000000..6dc0108 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_console.txt @@ -0,0 +1,37 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=1 +codec=hevc +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=18.945 +avg_encode_latency_ms=116.081 +p95_encode_latency_ms=187.861 +max_encode_latency_ms=193.921 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=87013939 +send_target=none +csv=benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_stats.csv +real 1.49 +user 0.87 +sys 0.37 + 145260544 maximum resident set size + 0 average shared memory size + 0 average unshared data size + 0 average unshared stack size + 219902 page reclaims + 6 page faults + 0 swaps + 0 block input operations + 0 block output operations + 0 messages sent + 0 messages received + 0 signals received + 3 voluntary context switches + 2207 involuntary context switches + 13019298682 instructions retired + 3777807973 cycles elapsed + 304400512 peak memory footprint diff --git a/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_stats.csv b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_stats.csv new file mode 100644 index 0000000..1e193f5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,21.3241,116.8713,0.0000,1993738,0 +1,47.7064,46.7071,0.0000,999595,0 +2,20.2327,47.6713,0.0000,1497381,0 +3,18.2502,50.1284,0.0000,1433336,0 +4,16.8133,54.3154,0.0000,1443524,0 +5,16.9155,58.1495,0.0000,1453662,0 +6,17.0963,61.9871,0.0000,1472366,0 +7,16.6462,66.4019,0.0000,1465819,0 +8,16.9378,70.3638,0.0000,1338485,0 +9,17.1310,74.1813,0.0000,1458262,0 +10,16.9147,78.1568,0.0000,1482990,0 +11,19.8828,79.1491,0.0000,1478451,0 +12,18.1220,81.9771,0.0000,1484477,0 +13,16.9322,86.0007,0.0000,1493092,0 +14,17.5327,89.6948,0.0000,1488057,0 +15,16.7970,93.7217,0.0000,1530760,0 +16,17.3576,97.3199,0.0000,1388117,0 +17,17.0279,101.4645,0.0000,1474376,0 +18,17.6791,104.5248,0.0000,1522424,0 +19,31.5076,93.8042,0.0000,1501376,0 +20,27.3115,87.5287,0.0000,946771,0 +21,26.7485,81.7800,0.0000,1601943,0 +22,22.0453,80.5216,0.0000,1490798,0 +23,17.1583,84.3457,0.0000,1498757,0 +24,17.0469,92.2196,0.0000,1391059,0 +25,16.5216,92.6994,0.0000,1479491,0 +26,16.7215,96.8518,0.0000,1495372,0 +27,16.8178,101.0617,0.0000,1482796,0 +28,16.5898,105.3225,0.0000,1490803,0 +29,22.6053,103.6631,0.0000,1488968,0 +30,20.8742,103.7094,0.0000,1482338,0 +31,17.8881,106.8415,0.0000,1512593,0 +32,16.8493,110.9795,0.0000,1322886,0 +33,16.9747,114.8998,0.0000,1440756,0 +34,17.0551,118.6478,0.0000,1484028,0 +35,20.2707,119.3222,0.0000,1453490,0 +36,17.9945,122.3755,0.0000,898320,0 +37,17.4804,125.9684,0.0000,1585354,0 +38,16.9981,129.7916,0.0000,1491053,0 +39,21.0250,129.8562,0.0000,1491357,0 +40,17.3185,133.3635,0.0000,1349341,0 +41,16.9530,137.3529,0.0000,1458718,0 +42,16.8591,141.4460,0.0000,1482387,0 +43,17.1129,145.3005,0.0000,1484322,0 +44,16.8547,149.3755,0.0000,1489588,0 +45,22.7978,147.4829,0.0000,1487984,0 +46,17.2605,151.2064,0.0000,1493734,0 +47,16.7124,155.4052,0.0000,1531401,0 +48,16.5605,159.7610,0.0000,1387157,0 +49,17.1738,163.5672,0.0000,1475704,0 +50,17.4750,166.9952,0.0000,1524294,0 +51,17.1080,170.8010,0.0000,1501067,0 +52,17.6833,174.1376,0.0000,955166,0 +53,17.6375,177.5694,0.0000,1603341,0 +54,17.6982,180.8745,0.0000,1496203,0 +55,17.6248,184.3359,0.0000,1506433,0 +56,17.5269,187.6934,0.0000,1391783,0 +57,17.6292,191.0368,0.0000,1478934,0 +58,19.8050,192.2715,0.0000,1499433,0 +59,19.1124,193.9208,0.0000,1487728,0 diff --git a/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/summary.md b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/summary.md new file mode 100644 index 0000000..84cef91 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/summary.md @@ -0,0 +1,28 @@ +# Plan B 5K60 HEVC Local Encode + +Prompt: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +Command: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 5120x2880 --fps 60 --duration 1 --codec hevc --csv benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/primary_stats.csv +``` + +Result: + +| Metric | Value | +|---|---:| +| Frames requested | 60 | +| Failed frames | 0 | +| Payload bytes | 87,013,939 | +| Avg synthetic generation | 18.945 ms | +| Avg encode callback latency | 116.081 ms | +| P95 encode callback latency | 187.861 ms | +| Max encode callback latency | 193.921 ms | +| Wall time | 1.49 s | + +Classification: + +- `encode latency bottleneck`: HEVC can encode 5K frames, but callback latency is already far above a 16.667 ms 60Hz frame budget. +- `bitrate pressure`: default bitrate emitted about 87 MB for one second of synthetic 5K60 frames. + diff --git a/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_console.txt b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_console.txt new file mode 100644 index 0000000..40dd825 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_console.txt @@ -0,0 +1,39 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=17.878 +avg_encode_latency_ms=149.548 +p95_encode_latency_ms=207.439 +max_encode_latency_ms=207.771 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15356893 +send_target=none +csv=benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_stats.csv +real 2.34 +user 0.86 +sys 0.41 + 150798336 maximum resident set size + 0 average shared memory size + 0 average unshared data size + 0 average unshared stack size + 216817 page reclaims + 1691 page faults + 0 swaps + 0 block input operations + 0 block output operations + 0 messages sent + 0 messages received + 0 signals received + 557 voluntary context switches + 1555 involuntary context switches + 13408419754 instructions retired + 3894265920 cycles elapsed + 350963904 peak memory footprint +exit=0 diff --git a/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_stats.csv b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_stats.csv new file mode 100644 index 0000000..ba17b08 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,23.2775,101.5140,0.0000,141367,0 +1,27.9160,58.5122,0.0000,133339,0 +2,23.2676,56.2198,0.0000,155294,0 +3,17.2164,59.9775,0.0000,150551,0 +4,16.8266,64.1735,0.0000,171375,0 +5,17.0654,68.1201,0.0000,178766,0 +6,17.0824,72.1170,0.0000,219263,0 +7,17.8976,75.2857,0.0000,259177,0 +8,18.2888,77.8984,0.0000,272534,0 +9,18.2295,80.6902,0.0000,266045,0 +10,17.9715,83.7165,0.0000,271685,0 +11,17.3943,87.3458,0.0000,273171,0 +12,17.6690,90.7056,0.0000,266525,0 +13,16.6628,95.0734,0.0000,279697,0 +14,17.2315,98.8506,0.0000,284138,0 +15,16.9217,102.9726,0.0000,282920,0 +16,16.7142,107.3387,0.0000,188066,0 +17,17.7007,110.7361,0.0000,257468,0 +18,17.8732,113.8003,0.0000,258162,0 +19,16.7810,118.0857,0.0000,286207,0 +20,16.8262,122.4260,0.0000,346802,0 +21,16.7296,126.6592,0.0000,246965,0 +22,18.1945,129.4922,0.0000,283172,0 +23,17.7238,132.8196,0.0000,270870,0 +24,18.0763,135.7830,0.0000,250811,0 +25,16.9804,139.8385,0.0000,267537,0 +26,16.8120,144.0705,0.0000,356796,0 +27,16.6975,148.4297,0.0000,267156,0 +28,16.8338,152.5404,0.0000,280715,0 +29,16.6623,156.9075,0.0000,287846,0 +30,17.0726,160.9117,0.0000,295351,0 +31,17.2325,164.6425,0.0000,300078,0 +32,17.2350,168.4502,0.0000,185813,0 +33,18.5935,170.9148,0.0000,207033,0 +34,19.5167,172.3940,0.0000,245584,0 +35,18.1310,175.2251,0.0000,294334,0 +36,17.5684,178.7295,0.0000,356295,0 +37,16.9781,182.7577,0.0000,247936,0 +38,17.4524,186.3598,0.0000,274080,0 +39,17.3762,189.9897,0.0000,272327,0 +40,16.7623,194.2716,0.0000,256632,0 +41,17.3623,197.9107,0.0000,267642,0 +42,17.1384,201.7982,0.0000,280488,0 +43,17.3460,205.4944,0.0000,285366,0 +44,17.7167,206.5832,0.0000,279886,0 +45,17.4023,207.1589,0.0000,293251,0 +46,17.8478,206.8346,0.0000,236465,0 +47,17.8071,206.7728,0.0000,309156,0 +48,17.9044,206.7527,0.0000,154635,0 +49,18.0411,206.2331,0.0000,223437,0 +50,17.9886,206.7805,0.0000,203357,0 +51,17.9849,206.9130,0.0000,322697,0 +52,18.5897,204.7368,0.0000,284342,0 +53,17.7784,207.1904,0.0000,275094,0 +54,17.3185,207.6465,0.0000,228465,0 +55,17.9123,207.1668,0.0000,231336,0 +56,17.8114,207.5724,0.0000,216852,0 +57,17.9714,207.3740,0.0000,295481,0 +58,17.6829,207.7713,0.0000,286851,0 +59,17.6221,207.4324,0.0000,292209,0 diff --git a/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/summary.md b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/summary.md new file mode 100644 index 0000000..4d6bcdf --- /dev/null +++ b/benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/summary.md @@ -0,0 +1,27 @@ +# Plan B 5K60 HEVC 120Mbps Local Encode + +Prompt: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +Command: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 5120x2880 --fps 60 --duration 1 --codec hevc --bitrate-mbps 120 --csv benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/primary_stats.csv +``` + +Result: + +| Metric | Value | +|---|---:| +| Frames requested | 60 | +| Failed frames | 0 | +| Payload bytes | 15,356,893 | +| Avg synthetic generation | 17.878 ms | +| Avg encode callback latency | 149.548 ms | +| P95 encode callback latency | 207.439 ms | +| Max encode callback latency | 207.771 ms | +| Wall time | 2.34 s | + +Classification: + +- `encode latency bottleneck`: bitrate limiting reduces payload size, but encode callback latency remains far beyond the 60Hz budget. + diff --git a/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_console.txt b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_console.txt new file mode 100644 index 0000000..000a60b --- /dev/null +++ b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_console.txt @@ -0,0 +1,39 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=35.342 +avg_encode_latency_ms=5840.621 +p95_encode_latency_ms=10097.037 +max_encode_latency_ms=11008.292 +avg_send_ms=636.270 +p95_send_ms=1338.004 +payload_bytes=15356893 +send_target=100.86.52.88:48320 +csv=benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_stats.csv +real 38.60 +user 1.73 +sys 0.64 + 172343296 maximum resident set size + 0 average shared memory size + 0 average unshared data size + 0 average unshared stack size + 219384 page reclaims + 11 page faults + 0 swaps + 0 block input operations + 0 block output operations + 61 messages sent + 0 messages received + 0 signals received + 2883 voluntary context switches + 1762 involuntary context switches + 12858032379 instructions retired + 3682637354 cycles elapsed + 307038720 peak memory footprint +exit=0 diff --git a/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_stats.csv b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_stats.csv new file mode 100644 index 0000000..71ee41d --- /dev/null +++ b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,20.6209,102.9753,75.3427,141367,0 +1,27.2591,122.8279,390.2025,133339,0 +2,18.6573,494.6500,202.8281,155294,0 +3,17.2864,682.4120,196.9577,150551,0 +4,18.2222,862.0714,1.9519,171375,0 +5,21.4239,802.8016,95.7261,178766,0 +6,17.6621,881.3212,107.0507,219263,0 +7,16.5372,972.1311,1331.4575,259177,0 +8,16.7233,2287.6838,613.2230,272534,0 +9,16.4217,2885.2535,1006.8757,266045,0 +10,16.6930,3876.1863,745.6467,271685,0 +11,16.1837,4606.6544,477.3259,273171,0 +12,30.9228,4761.1592,411.7541,266525,0 +13,39.5632,4959.6868,528.6625,279697,0 +14,46.3545,5284.6485,409.9611,284138,0 +15,26.3626,5668.9844,712.5545,282920,0 +16,21.2961,6331.7717,304.0688,188066,0 +17,23.2402,6527.3683,502.2039,257468,0 +18,37.2251,5684.1697,949.7307,258162,0 +19,39.0771,6018.7930,679.2902,286207,0 +20,41.6190,5688.3705,919.0291,346802,0 +21,41.6722,5861.0893,662.1255,246965,0 +22,42.6506,6045.2185,691.4865,283172,0 +23,44.0725,6322.5354,608.6876,270870,0 +24,39.8855,6407.5245,499.7000,250811,0 +25,39.6168,6497.8321,812.7322,267537,0 +26,40.9588,6595.6122,1029.5383,356796,0 +27,44.5926,7317.9859,704.2544,267156,0 +28,43.1912,7520.9890,440.2848,280715,0 +29,43.0938,7012.2503,488.7540,287846,0 +30,39.8975,6825.2662,507.1032,295351,0 +31,20.5583,6433.0719,413.0888,300078,0 +32,33.0784,6171.8417,504.7550,185813,0 +33,41.6195,5976.2983,413.6679,207033,0 +34,37.8600,5785.8582,220.8052,245584,0 +35,33.9168,5511.1778,1019.7026,294334,0 +36,39.6488,5711.0896,715.9886,356295,0 +37,38.2191,5400.7300,625.5546,247936,0 +38,44.1616,5315.5275,401.4332,274080,0 +39,43.5688,5276.9260,511.9332,272327,0 +40,42.5570,5301.1479,613.4427,256632,0 +41,43.0511,5405.8645,607.6078,267642,0 +42,44.2910,5600.5418,2250.2036,280488,0 +43,45.3488,7343.7500,714.5869,285366,0 +44,40.4352,7650.4913,923.3672,279886,0 +45,39.8967,8353.5506,921.5122,293251,0 +46,42.7837,8251.7047,822.2987,236465,0 +47,43.1233,8355.2877,1220.4228,309156,0 +48,43.0229,8950.9585,1521.2235,154635,0 +49,43.3895,10070.3874,1121.5621,223437,0 +50,42.6102,10680.1839,533.5305,203357,0 +51,40.1329,10603.3747,1009.8147,322697,0 +52,38.1020,11008.2921,507.5109,284342,0 +53,43.5640,9259.3332,529.3763,275094,0 +54,43.1602,9074.3888,288.9298,228465,0 +55,40.5918,8443.2395,301.0290,231336,0 +56,35.6078,7828.7073,209.4081,216852,0 +57,40.2923,7210.7837,1462.3918,295481,0 +58,42.8750,7449.5034,177.4928,286851,0 +59,44.0690,6105.0522,507.0720,292209,0 diff --git a/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/receiver_stats.csv b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/receiver_stats.csv new file mode 100644 index 0000000..7fcb0fd --- /dev/null +++ b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/receiver_stats.csv @@ -0,0 +1,61 @@ +frame_id,payload_len,dropped_before,missing_before,receive_ms,width,height,fps_target,codec,flags +0,141367,0,0,820.0350,5120,2880,60,2,5 +1,133339,0,0,303.7022,5120,2880,60,2,5 +2,155294,0,0,213.6812,5120,2880,60,2,5 +3,150551,0,0,203.8822,5120,2880,60,2,5 +4,171375,0,0,123.8309,5120,2880,60,2,5 +5,178766,0,0,691.3584,5120,2880,60,2,5 +6,219263,0,0,223.3205,5120,2880,60,2,5 +7,259177,0,0,409.4171,5120,2880,60,2,5 +8,272534,0,0,802.0457,5120,2880,60,2,5 +9,266045,0,0,817.9944,5120,2880,60,2,5 +10,271685,0,0,615.1212,5120,2880,60,2,5 +11,273171,0,0,425.7732,5120,2880,60,2,5 +12,266525,0,0,408.9421,5120,2880,60,2,5 +13,279697,0,0,601.9466,5120,2880,60,2,5 +14,284138,0,0,615.6705,5120,2880,60,2,5 +15,282920,0,0,522.7893,5120,2880,60,2,5 +16,188066,0,0,312.3485,5120,2880,60,2,5 +17,257468,0,0,591.9765,5120,2880,60,2,5 +18,258162,0,0,841.3843,5120,2880,60,2,5 +19,286207,0,0,801.5340,5120,2880,60,2,5 +20,346802,0,0,852.5724,5120,2880,60,2,5 +21,246965,0,0,717.1047,5120,2880,60,2,5 +22,283172,0,0,676.6967,5120,2880,60,2,5 +23,270870,0,0,616.2199,5120,2880,60,2,5 +24,250811,0,0,634.9903,5120,2880,60,2,5 +25,267537,0,0,598.1652,5120,2880,60,2,5 +26,356796,0,0,1225.1644,5120,2880,60,2,5 +27,267156,0,0,434.9819,5120,2880,60,2,5 +28,280715,0,0,586.5444,5120,2880,60,2,5 +29,287846,0,0,405.5951,5120,2880,60,2,5 +30,295351,0,0,620.3447,5120,2880,60,2,5 +31,300078,0,0,429.7086,5120,2880,60,2,5 +32,185813,0,0,391.2116,5120,2880,60,2,5 +33,207033,0,0,310.7399,5120,2880,60,2,5 +34,245584,0,0,529.1162,5120,2880,60,2,5 +35,294334,0,0,812.7919,5120,2880,60,2,5 +36,356295,0,0,603.6255,5120,2880,60,2,5 +37,247936,0,0,712.1100,5120,2880,60,2,5 +38,274080,0,0,408.7452,5120,2880,60,2,5 +39,272327,0,0,713.8451,5120,2880,60,2,5 +40,256632,0,0,535.7319,5120,2880,60,2,5 +41,267642,0,0,2126.7866,5120,2880,60,2,5 +42,280488,0,0,823.3105,5120,2880,60,2,5 +43,285366,0,0,916.5642,5120,2880,60,2,5 +44,279886,0,0,821.3450,5120,2880,60,2,5 +45,293251,0,0,923.7663,5120,2880,60,2,5 +46,236465,0,0,1020.8460,5120,2880,60,2,5 +47,309156,0,0,2255.9134,5120,2880,60,2,5 +48,154635,0,0,632.7521,5120,2880,60,2,5 +49,223437,0,0,808.2179,5120,2880,60,2,5 +50,203357,0,0,728.8062,5120,2880,60,2,5 +51,322697,0,0,821.6872,5120,2880,60,2,5 +52,284342,0,0,511.0199,5120,2880,60,2,5 +53,275094,0,0,384.3591,5120,2880,60,2,5 +54,228465,0,0,332.6477,5120,2880,60,2,5 +55,231336,0,0,306.5573,5120,2880,60,2,5 +56,216852,0,0,1128.2725,5120,2880,60,2,5 +57,295481,0,0,419.3818,5120,2880,60,2,5 +58,286851,0,0,405.7343,5120,2880,60,2,5 +59,292209,0,0,1200.4482,5120,2880,60,2,5 diff --git a/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/summary.md b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/summary.md new file mode 100644 index 0000000..36d8529 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/summary.md @@ -0,0 +1,41 @@ +# Plan B 5K60 HEVC 120Mbps TCP Transport + +Prompt: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +Primary command: + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 5120x2880 --fps 60 --duration 1 --codec hevc --bitrate-mbps 120 --send-host 100.86.52.88 --send-port 48320 --csv benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/primary_stats.csv +``` + +Receiver command: + +```powershell +ibridge-receiver.exe --transport-sink --port 48320 --duration 60 --csv C:\dev\iBridge\benchmarks\runs\2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp\receiver_stats.csv +``` + +Result: + +| Metric | Value | +|---|---:| +| Primary frames encoded | 60 | +| Primary failed frames | 0 | +| Primary payload bytes | 15,356,893 | +| Primary avg generate | 35.342 ms | +| Primary avg encode callback latency | 5,840.621 ms | +| Primary max encode callback latency | 11,008.292 ms | +| Primary avg send | 636.270 ms | +| Primary max send | 2,250.204 ms | +| Receiver frames received | 60 | +| Receiver payload bytes | 15,356,893 | +| Receiver missing frames | 0 | +| Receiver avg receive | 662.186 ms | +| Receiver measured throughput | 3.092 Mbps | +| Wall time | 38.60 s | + +Classification: + +- `transport bottleneck`: TCP over the current Tailscale path is far below the throughput required for even a 120Mbps 5K60 compressed stream. +- `encode latency bottleneck`: blocking sends from the encode callback inflate callback latency, so transport must be decoupled from encode before product latency can be measured fairly. +- `decode/render bottleneck`: not measured in this run because the receiver sink intentionally validates transport only. + diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_console.txt new file mode 100644 index 0000000..758258d --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_console.txt @@ -0,0 +1,18 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=5.389 +avg_encode_latency_ms=16.876 +p95_encode_latency_ms=40.961 +max_encode_latency_ms=92.924 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15758016 +send_target=none +csv=benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_stats.csv new file mode 100644 index 0000000..f0bfce8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p.primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,7.3163,92.9241,0.0000,91300,0 +1,5.2839,33.9394,0.0000,130430,0 +2,5.4232,37.3170,0.0000,147720,0 +3,5.3445,40.7923,0.0000,157200,0 +4,5.1348,44.4130,0.0000,189228,0 +5,5.1126,39.8486,0.0000,201830,0 +6,4.5567,44.1688,0.0000,244877,0 +7,4.7905,40.1891,0.0000,268558,0 +8,5.1654,30.9054,0.0000,277846,0 +9,5.1194,23.5090,0.0000,320261,0 +10,5.1125,15.3985,0.0000,352386,0 +11,5.1294,11.5979,0.0000,374158,0 +12,5.1153,11.6021,0.0000,374610,0 +13,5.2808,11.4712,0.0000,368444,0 +14,4.8194,11.2320,0.0000,364077,0 +15,7.7798,11.6192,0.0000,372597,0 +16,9.1198,11.7092,0.0000,309083,0 +17,8.4482,11.5648,0.0000,300576,0 +18,6.9865,11.5917,0.0000,315525,0 +19,5.2425,11.5646,0.0000,321247,0 +20,6.5585,11.4942,0.0000,367848,0 +21,4.4729,11.3274,0.0000,317665,0 +22,4.8472,11.5195,0.0000,324453,0 +23,5.0701,11.5639,0.0000,291031,0 +24,5.1932,11.4814,0.0000,276846,0 +25,5.2817,11.5470,0.0000,290982,0 +26,5.3812,11.5068,0.0000,297847,0 +27,5.1213,11.4707,0.0000,299660,0 +28,5.2494,11.5102,0.0000,300785,0 +29,5.0934,11.5345,0.0000,307620,0 +30,5.3705,11.5268,0.0000,265280,0 +31,5.1850,11.5960,0.0000,282638,0 +32,5.3904,11.4441,0.0000,189317,0 +33,5.1922,11.5039,0.0000,212469,0 +34,5.4438,11.5312,0.0000,232914,0 +35,5.3139,12.3535,0.0000,256095,0 +36,7.9893,13.0620,0.0000,267832,0 +37,5.3805,14.8111,0.0000,263437,0 +38,5.1811,11.4908,0.0000,263695,0 +39,5.1647,11.5120,0.0000,228113,0 +40,5.2520,11.6318,0.0000,225119,0 +41,5.2375,11.5453,0.0000,278609,0 +42,5.5297,11.4848,0.0000,276970,0 +43,5.3412,11.4924,0.0000,224642,0 +44,5.4100,11.5411,0.0000,233681,0 +45,5.3629,11.4813,0.0000,242300,0 +46,5.2133,11.5477,0.0000,240401,0 +47,5.3586,11.9276,0.0000,255108,0 +48,5.1966,11.4671,0.0000,209555,0 +49,4.8050,11.5657,0.0000,175088,0 +50,4.5270,11.1613,0.0000,197953,0 +51,4.4504,11.3239,0.0000,236114,0 +52,4.4514,11.3600,0.0000,247885,0 +53,4.4795,11.2116,0.0000,242389,0 +54,4.4961,11.4798,0.0000,241387,0 +55,4.5095,11.4949,0.0000,242407,0 +56,4.4188,11.3220,0.0000,237359,0 +57,4.8518,11.3942,0.0000,243267,0 +58,5.1205,11.5143,0.0000,252574,0 +59,5.1851,11.4429,0.0000,236728,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.console.txt new file mode 100644 index 0000000..fea8feb --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.console.txt @@ -0,0 +1,16 @@ +iBridge Plan A synthetic renderer +source_resolution=2560x1440 +output_resolution=5120x2880 +target_fps=60 +actual_fps=59.994 +frames=480 +budget_ms=16.667 +p95_total_ms=17.459 +max_total_ms=23.271 +missed_frames=230 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +scale_mode=linear +hud=on diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.receiver_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.receiver_stats.csv new file mode 100644 index 0000000..2676235 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_linear.receiver_stats.csv @@ -0,0 +1,481 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,4.9403,12.9608,5.3693,23.2706,1 +1,0.0000,0.0000,1.7357,1.7359,0 +2,0.0000,0.0000,16.3282,16.3283,0 +3,0.0000,0.0000,16.7493,16.7494,1 +4,0.0000,0.0000,15.1030,15.1033,0 +5,0.0000,0.0000,16.8827,16.8828,1 +6,0.0000,0.0000,16.5055,16.5057,0 +7,0.0000,0.0000,16.6301,16.6301,0 +8,0.0000,0.0000,18.0009,18.0011,1 +9,0.0000,0.0000,16.6305,16.6309,0 +10,0.0000,0.0000,16.6220,16.6224,0 +11,0.0000,0.0000,16.7787,16.7790,1 +12,0.0000,0.0000,16.6936,16.6941,1 +13,0.0000,0.0000,15.6579,15.6585,0 +14,0.0000,0.0000,16.6148,16.6152,0 +15,0.0000,0.0000,16.9147,16.9151,1 +16,0.0000,0.0000,16.4426,16.4430,0 +17,0.0000,0.0000,17.0382,17.0387,1 +18,0.0000,0.0000,16.4013,16.4016,0 +19,0.0000,0.0000,15.7114,15.7118,0 +20,0.0000,0.0000,16.5805,16.5807,0 +21,0.0000,0.0000,16.6428,16.6430,0 +22,0.0000,0.0000,16.6652,16.6654,0 +23,0.0000,0.0000,17.6404,17.6407,1 +24,0.0000,0.0000,16.7488,16.7493,1 +25,0.0000,0.0000,16.6584,16.6587,0 +26,0.0000,0.0000,15.7806,15.7810,0 +27,0.0000,0.0000,16.6672,16.6674,1 +28,0.0000,0.0000,17.2528,17.2532,1 +29,0.0000,0.0000,16.7507,16.7511,1 +30,0.0000,0.0000,16.7694,16.7697,1 +31,0.0000,0.0000,14.9016,14.9020,0 +32,0.0000,0.0000,16.9467,16.9470,1 +33,0.0000,0.0000,16.5905,16.5908,0 +34,0.0000,0.0000,16.4896,16.4899,0 +35,0.0000,0.0000,16.6027,16.6030,0 +36,0.0000,0.0000,16.7529,16.7533,1 +37,0.0000,0.0000,16.4973,16.4977,0 +38,0.0000,0.0000,16.8396,16.8399,1 +39,0.0000,0.0000,16.7254,16.7259,1 +40,0.0000,0.0000,16.7280,16.7283,1 +41,0.0000,0.0000,15.5522,15.5525,0 +42,0.0000,0.0000,16.8681,16.8685,1 +43,0.0000,0.0000,17.4716,17.4720,1 +44,0.0000,0.0000,16.6002,16.6007,0 +45,0.0000,0.0000,16.7158,16.7163,1 +46,0.0000,0.0000,16.5937,16.5940,0 +47,0.0000,0.0000,16.9071,16.9074,1 +48,0.0000,0.0000,15.5905,15.5909,0 +49,0.0000,0.0000,16.4934,16.4935,0 +50,0.0000,0.0000,16.9032,16.9033,1 +51,0.0000,0.0000,16.8033,16.8036,1 +52,0.0000,0.0000,16.3062,16.3066,0 +53,0.0000,0.0000,16.6560,16.6562,0 +54,0.0000,0.0000,16.7113,16.7115,1 +55,0.0000,0.0000,16.5902,16.5902,0 +56,0.0000,0.0000,16.5900,16.5903,0 +57,0.0000,0.0000,16.6964,16.6965,1 +58,0.0000,0.0000,16.7100,16.7101,1 +59,0.0000,0.0000,16.6390,16.6392,0 +60,0.0000,0.0000,16.8450,16.8451,1 +61,0.0000,0.0000,15.9485,15.9487,0 +62,0.0000,0.0000,17.8653,17.8655,1 +63,0.0000,0.0000,16.6155,16.6160,0 +64,0.0000,0.0000,16.7007,16.7013,1 +65,0.0000,0.0000,16.5610,16.5614,0 +66,0.0000,0.0000,16.9504,16.9510,1 +67,0.0000,0.0000,16.5931,16.5934,0 +68,0.0000,0.0000,16.7555,16.7560,1 +69,0.0000,0.0000,16.4716,16.4720,0 +70,0.0000,0.0000,16.6277,16.6281,0 +71,0.0000,0.0000,16.7040,16.7044,1 +72,0.0000,0.0000,16.6657,16.6662,0 +73,0.0000,0.0000,16.0379,16.0382,0 +74,0.0000,0.0000,16.6819,16.6821,1 +75,0.0000,0.0000,17.2759,17.2762,1 +76,0.0000,0.0000,16.6240,16.6245,0 +77,0.0000,0.0000,16.7650,16.7653,1 +78,0.0000,0.0000,16.1195,16.1198,0 +79,0.0000,0.0000,16.3465,16.3466,0 +80,0.0000,0.0000,17.6675,17.6678,1 +81,0.0000,0.0000,16.7203,16.7207,1 +82,0.0000,0.0000,15.7761,15.7764,0 +83,0.0000,0.0000,16.5351,16.5353,0 +84,0.0000,0.0000,16.5770,16.5773,0 +85,0.0000,0.0000,16.7123,16.7125,1 +86,0.0000,0.0000,16.5894,16.5896,0 +87,0.0000,0.0000,16.9362,16.9365,1 +88,0.0000,0.0000,16.6377,16.6380,0 +89,0.0000,0.0000,16.2428,16.2430,0 +90,0.0000,0.0000,16.5253,16.5254,0 +91,0.0000,0.0000,17.4954,17.4957,1 +92,0.0000,0.0000,16.5051,16.5056,0 +93,0.0000,0.0000,16.6646,16.6650,0 +94,0.0000,0.0000,16.8124,16.8129,1 +95,0.0000,0.0000,16.8780,16.8784,1 +96,0.0000,0.0000,16.4691,16.4695,0 +97,0.0000,0.0000,16.5392,16.5395,0 +98,0.0000,0.0000,16.6609,16.6612,0 +99,0.0000,0.0000,16.5995,16.6000,0 +100,0.0000,0.0000,16.7627,16.7631,1 +101,0.0000,0.0000,16.8310,16.8314,1 +102,0.0000,0.0000,16.5697,16.5702,0 +103,0.0000,0.0000,16.7512,16.7516,1 +104,0.0000,0.0000,16.5274,16.5278,0 +105,0.0000,0.0000,16.7152,16.7155,1 +106,0.0000,0.0000,16.5768,16.5773,0 +107,0.0000,0.0000,16.7345,16.7349,1 +108,0.0000,0.0000,16.7636,16.7640,1 +109,0.0000,0.0000,16.7274,16.7278,1 +110,0.0000,0.0000,16.5649,16.5652,0 +111,0.0000,0.0000,16.5604,16.5608,0 +112,0.0000,0.0000,16.6787,16.6791,1 +113,0.0000,0.0000,16.7635,16.7639,1 +114,0.0000,0.0000,16.5720,16.5724,0 +115,0.0000,0.0000,16.7013,16.7018,1 +116,0.0000,0.0000,15.9792,15.9794,0 +117,0.0000,0.0000,16.6166,16.6169,0 +118,0.0000,0.0000,16.6191,16.6193,0 +119,0.0000,0.0000,16.6494,16.6497,0 +120,0.0000,0.0000,16.7024,16.7027,1 +121,0.0000,0.0000,15.6547,15.6550,0 +122,0.0000,0.0000,17.4205,17.4208,1 +123,0.0000,0.0000,16.7985,16.7990,1 +124,0.0000,0.0000,16.6329,16.6332,0 +125,0.0000,0.0000,15.7759,15.7762,0 +126,0.0000,0.0000,16.4265,16.4267,0 +127,0.0000,0.0000,16.6224,16.6227,0 +128,0.0000,0.0000,16.7532,16.7534,1 +129,0.0000,0.0000,16.7276,16.7277,1 +130,0.0000,0.0000,16.5939,16.5941,0 +131,0.0000,0.0000,17.7444,17.7446,1 +132,0.0000,0.0000,16.6087,16.6091,0 +133,0.0000,0.0000,16.5617,16.5623,0 +134,0.0000,0.0000,16.7338,16.7341,1 +135,0.0000,0.0000,16.7185,16.7189,1 +136,0.0000,0.0000,16.6478,16.6482,0 +137,0.0000,0.0000,16.7397,16.7401,1 +138,0.0000,0.0000,16.6735,16.6738,1 +139,0.0000,0.0000,16.5609,16.5613,0 +140,0.0000,0.0000,16.6242,16.6246,0 +141,0.0000,0.0000,16.6802,16.6807,1 +142,0.0000,0.0000,16.6649,16.6654,0 +143,0.0000,0.0000,16.7396,16.7401,1 +144,0.0000,0.0000,16.6934,16.6939,1 +145,0.0000,0.0000,16.5466,16.5471,0 +146,0.0000,0.0000,16.6967,16.6972,1 +147,0.0000,0.0000,16.5970,16.5973,0 +148,0.0000,0.0000,16.6300,16.6304,0 +149,0.0000,0.0000,16.7789,16.7793,1 +150,0.0000,0.0000,16.8258,16.8261,1 +151,0.0000,0.0000,14.9370,14.9376,0 +152,0.0000,0.0000,15.9453,15.9457,0 +153,0.0000,0.0000,16.8221,16.8224,1 +154,0.0000,0.0000,16.3381,16.3384,0 +155,0.0000,0.0000,16.6731,16.6734,1 +156,0.0000,0.0000,16.6923,16.6925,1 +157,0.0000,0.0000,16.7352,16.7353,1 +158,0.0000,0.0000,17.4660,17.4662,1 +159,0.0000,0.0000,16.0517,16.0520,0 +160,0.0000,0.0000,16.2618,16.2620,0 +161,0.0000,0.0000,17.5150,17.5153,1 +162,0.0000,0.0000,16.6361,16.6365,0 +163,0.0000,0.0000,16.7185,16.7190,1 +164,0.0000,0.0000,16.8049,16.8052,1 +165,0.0000,0.0000,16.7025,16.7029,1 +166,0.0000,0.0000,16.6330,16.6334,0 +167,0.0000,0.0000,15.7846,15.7849,0 +168,0.0000,0.0000,16.6546,16.6548,0 +169,0.0000,0.0000,17.4549,17.4552,1 +170,0.0000,0.0000,16.6307,16.6311,0 +171,0.0000,0.0000,16.8216,16.8219,1 +172,0.0000,0.0000,16.7127,16.7131,1 +173,0.0000,0.0000,16.5919,16.5924,0 +174,0.0000,0.0000,15.9900,15.9903,0 +175,0.0000,0.0000,16.4607,16.4610,0 +176,0.0000,0.0000,16.7041,16.7044,1 +177,0.0000,0.0000,16.8561,16.8564,1 +178,0.0000,0.0000,17.2459,17.2464,1 +179,0.0000,0.0000,16.8132,16.8136,1 +180,0.0000,0.0000,16.5470,16.5474,0 +181,0.0000,0.0000,14.2732,14.2737,0 +182,0.0000,0.0000,16.5703,16.5706,0 +183,0.0000,0.0000,16.7151,16.7153,1 +184,0.0000,0.0000,16.5637,16.5640,0 +185,0.0000,0.0000,17.8642,17.8644,1 +186,0.0000,0.0000,16.0683,16.0687,0 +187,0.0000,0.0000,16.3052,16.3054,0 +188,0.0000,0.0000,16.6136,16.6139,0 +189,0.0000,0.0000,16.6255,16.6257,0 +190,0.0000,0.0000,17.2867,17.2871,1 +191,0.0000,0.0000,16.6314,16.6319,0 +192,0.0000,0.0000,16.9042,16.9046,1 +193,0.0000,0.0000,16.6401,16.6405,0 +194,0.0000,0.0000,15.7258,15.7262,0 +195,0.0000,0.0000,16.6555,16.6557,0 +196,0.0000,0.0000,16.3335,16.3336,0 +197,0.0000,0.0000,17.8220,17.8221,1 +198,0.0000,0.0000,16.7386,16.7392,1 +199,0.0000,0.0000,16.7911,16.7915,1 +200,0.0000,0.0000,16.6198,16.6201,0 +201,0.0000,0.0000,15.7416,15.7420,0 +202,0.0000,0.0000,16.5622,16.5624,0 +203,0.0000,0.0000,16.6357,16.6359,0 +204,0.0000,0.0000,17.3268,17.3271,1 +205,0.0000,0.0000,17.0434,17.0437,1 +206,0.0000,0.0000,16.6045,16.6048,0 +207,0.0000,0.0000,16.7479,16.7483,1 +208,0.0000,0.0000,15.8116,15.8119,0 +209,0.0000,0.0000,16.6020,16.6022,0 +210,0.0000,0.0000,17.5503,17.5506,1 +211,0.0000,0.0000,14.9765,14.9770,0 +212,0.0000,0.0000,16.6000,16.6004,0 +213,0.0000,0.0000,16.6796,16.6801,1 +214,0.0000,0.0000,16.7341,16.7344,1 +215,0.0000,0.0000,15.7830,15.7833,0 +216,0.0000,0.0000,16.6925,16.6927,1 +217,0.0000,0.0000,16.5715,16.5717,0 +218,0.0000,0.0000,16.6280,16.6282,0 +219,0.0000,0.0000,17.5444,17.5447,1 +220,0.0000,0.0000,16.8053,16.8057,1 +221,0.0000,0.0000,16.5844,16.5849,0 +222,0.0000,0.0000,16.2224,16.2227,0 +223,0.0000,0.0000,16.2779,16.2782,0 +224,0.0000,0.0000,16.2965,16.2967,0 +225,0.0000,0.0000,16.5605,16.5607,0 +226,0.0000,0.0000,17.8862,17.8864,1 +227,0.0000,0.0000,16.7274,16.7278,1 +228,0.0000,0.0000,16.7615,16.7619,1 +229,0.0000,0.0000,16.7044,16.7049,1 +230,0.0000,0.0000,15.5671,15.5673,0 +231,0.0000,0.0000,16.5862,16.5864,0 +232,0.0000,0.0000,17.8327,17.8329,1 +233,0.0000,0.0000,16.6149,16.6153,0 +234,0.0000,0.0000,16.7279,16.7283,1 +235,0.0000,0.0000,16.6232,16.6235,0 +236,0.0000,0.0000,16.6580,16.6583,0 +237,0.0000,0.0000,15.7941,15.7944,0 +238,0.0000,0.0000,16.7121,16.7123,1 +239,0.0000,0.0000,16.5243,16.5245,0 +240,0.0000,0.0000,17.4764,17.4767,1 +241,0.0000,0.0000,15.1325,15.1331,0 +242,0.0000,0.0000,16.6210,16.6213,0 +243,0.0000,0.0000,16.7379,16.7383,1 +244,0.0000,0.0000,16.5744,16.5748,0 +245,0.0000,0.0000,16.6371,16.6376,0 +246,0.0000,0.0000,16.6168,16.6172,0 +247,0.0000,0.0000,16.6407,16.6411,0 +248,0.0000,0.0000,16.6997,16.7000,1 +249,0.0000,0.0000,16.7134,16.7137,1 +250,0.0000,0.0000,16.6277,16.6284,0 +251,0.0000,0.0000,16.6306,16.6310,0 +252,0.0000,0.0000,16.6139,16.6143,0 +253,0.0000,0.0000,16.7533,16.7538,1 +254,0.0000,0.0000,16.7602,16.7606,1 +255,0.0000,0.0000,16.7975,16.7979,1 +256,0.0000,0.0000,16.5427,16.5431,0 +257,0.0000,0.0000,15.8315,15.8318,0 +258,0.0000,0.0000,16.7134,16.7136,1 +259,0.0000,0.0000,17.4562,17.4565,1 +260,0.0000,0.0000,16.6533,16.6538,0 +261,0.0000,0.0000,16.6582,16.6585,0 +262,0.0000,0.0000,16.6662,16.6667,1 +263,0.0000,0.0000,16.6815,16.6820,1 +264,0.0000,0.0000,16.0015,16.0018,0 +265,0.0000,0.0000,16.5380,16.5383,0 +266,0.0000,0.0000,17.3486,17.3489,1 +267,0.0000,0.0000,16.7298,16.7302,1 +268,0.0000,0.0000,16.6501,16.6506,0 +269,0.0000,0.0000,16.6863,16.6867,1 +270,0.0000,0.0000,16.8719,16.8723,1 +271,0.0000,0.0000,13.9201,13.9206,0 +272,0.0000,0.0000,16.6082,16.6084,0 +273,0.0000,0.0000,16.3874,16.3875,0 +274,0.0000,0.0000,16.6060,16.6062,0 +275,0.0000,0.0000,16.6896,16.6897,1 +276,0.0000,0.0000,16.6168,16.6171,0 +277,0.0000,0.0000,16.7254,16.7256,1 +278,0.0000,0.0000,16.6466,16.6466,0 +279,0.0000,0.0000,16.6620,16.6621,0 +280,0.0000,0.0000,16.6791,16.6793,1 +281,0.0000,0.0000,16.7233,16.7234,1 +282,0.0000,0.0000,17.7273,17.7275,1 +283,0.0000,0.0000,16.7412,16.7416,1 +284,0.0000,0.0000,16.6584,16.6587,0 +285,0.0000,0.0000,16.8626,16.8630,1 +286,0.0000,0.0000,16.5264,16.5270,0 +287,0.0000,0.0000,16.5904,16.5907,0 +288,0.0000,0.0000,16.6308,16.6312,0 +289,0.0000,0.0000,16.7220,16.7224,1 +290,0.0000,0.0000,16.6862,16.6866,1 +291,0.0000,0.0000,16.8780,16.8784,1 +292,0.0000,0.0000,16.4686,16.4689,0 +293,0.0000,0.0000,15.7182,15.7185,0 +294,0.0000,0.0000,16.6829,16.6830,1 +295,0.0000,0.0000,16.6388,16.6391,0 +296,0.0000,0.0000,17.5780,17.5782,1 +297,0.0000,0.0000,16.7455,16.7460,1 +298,0.0000,0.0000,16.6931,16.6935,1 +299,0.0000,0.0000,16.7409,16.7413,1 +300,0.0000,0.0000,16.6700,16.6704,1 +301,0.0000,0.0000,14.7995,14.8000,0 +302,0.0000,0.0000,16.6320,16.6324,0 +303,0.0000,0.0000,16.7686,16.7690,1 +304,0.0000,0.0000,16.6640,16.6644,0 +305,0.0000,0.0000,16.5939,16.5943,0 +306,0.0000,0.0000,16.6339,16.6343,0 +307,0.0000,0.0000,16.6591,16.6594,0 +308,0.0000,0.0000,16.7961,16.7966,1 +309,0.0000,0.0000,16.6426,16.6430,0 +310,0.0000,0.0000,16.5634,16.5639,0 +311,0.0000,0.0000,16.6853,16.6857,1 +312,0.0000,0.0000,15.9440,15.9443,0 +313,0.0000,0.0000,16.6678,16.6679,1 +314,0.0000,0.0000,16.5854,16.5855,0 +315,0.0000,0.0000,16.7203,16.7206,1 +316,0.0000,0.0000,16.5565,16.5566,0 +317,0.0000,0.0000,16.7103,16.7104,1 +318,0.0000,0.0000,16.6260,16.6262,0 +319,0.0000,0.0000,16.8257,16.8259,1 +320,0.0000,0.0000,16.6706,16.6708,1 +321,0.0000,0.0000,16.1063,16.1065,0 +322,0.0000,0.0000,16.7630,16.7631,1 +323,0.0000,0.0000,17.2442,17.2443,1 +324,0.0000,0.0000,16.7368,16.7370,1 +325,0.0000,0.0000,17.1726,17.1729,1 +326,0.0000,0.0000,16.7451,16.7454,1 +327,0.0000,0.0000,16.0201,16.0205,0 +328,0.0000,0.0000,16.6303,16.6305,0 +329,0.0000,0.0000,16.5300,16.5303,0 +330,0.0000,0.0000,16.7486,16.7489,1 +331,0.0000,0.0000,15.7168,15.7173,0 +332,0.0000,0.0000,16.6466,16.6470,0 +333,0.0000,0.0000,16.7296,16.7300,1 +334,0.0000,0.0000,15.8894,15.8897,0 +335,0.0000,0.0000,16.5475,16.5477,0 +336,0.0000,0.0000,16.5834,16.5835,0 +337,0.0000,0.0000,16.8554,16.8557,1 +338,0.0000,0.0000,17.4578,17.4581,1 +339,0.0000,0.0000,16.6564,16.6568,0 +340,0.0000,0.0000,16.7295,16.7299,1 +341,0.0000,0.0000,15.7784,15.7787,0 +342,0.0000,0.0000,16.6927,16.6930,1 +343,0.0000,0.0000,16.5294,16.5296,0 +344,0.0000,0.0000,16.6112,16.6113,0 +345,0.0000,0.0000,17.5983,17.5986,1 +346,0.0000,0.0000,16.7416,16.7420,1 +347,0.0000,0.0000,16.6822,16.6825,1 +348,0.0000,0.0000,15.8489,15.8492,0 +349,0.0000,0.0000,16.5847,16.5850,0 +350,0.0000,0.0000,16.6594,16.6596,0 +351,0.0000,0.0000,16.6829,16.6832,1 +352,0.0000,0.0000,16.7354,16.7357,1 +353,0.0000,0.0000,16.7241,16.7243,1 +354,0.0000,0.0000,16.2622,16.2623,0 +355,0.0000,0.0000,16.6935,16.6936,1 +356,0.0000,0.0000,16.7707,16.7709,1 +357,0.0000,0.0000,16.8044,16.8046,1 +358,0.0000,0.0000,17.4887,17.4892,1 +359,0.0000,0.0000,16.7456,16.7460,1 +360,0.0000,0.0000,16.6539,16.6542,0 +361,0.0000,0.0000,14.8889,14.8895,0 +362,0.0000,0.0000,16.6985,16.6989,1 +363,0.0000,0.0000,16.6751,16.6754,1 +364,0.0000,0.0000,16.6106,16.6110,0 +365,0.0000,0.0000,16.6528,16.6532,0 +366,0.0000,0.0000,16.7118,16.7122,1 +367,0.0000,0.0000,16.6022,16.6026,0 +368,0.0000,0.0000,16.8403,16.8409,1 +369,0.0000,0.0000,16.6071,16.6074,0 +370,0.0000,0.0000,16.5971,16.5975,0 +371,0.0000,0.0000,16.6742,16.6746,1 +372,0.0000,0.0000,16.7657,16.7662,1 +373,0.0000,0.0000,16.5214,16.5219,0 +374,0.0000,0.0000,16.6333,16.6338,0 +375,0.0000,0.0000,16.0632,16.0635,0 +376,0.0000,0.0000,16.6735,16.6736,1 +377,0.0000,0.0000,17.4111,17.4114,1 +378,0.0000,0.0000,16.6407,16.6411,0 +379,0.0000,0.0000,16.6935,16.6939,1 +380,0.0000,0.0000,16.5117,16.5123,0 +381,0.0000,0.0000,16.6801,16.6805,1 +382,0.0000,0.0000,16.8789,16.8792,1 +383,0.0000,0.0000,16.5852,16.5855,0 +384,0.0000,0.0000,15.7344,15.7347,0 +385,0.0000,0.0000,16.5143,16.5144,0 +386,0.0000,0.0000,17.7167,17.7169,1 +387,0.0000,0.0000,16.5382,16.5387,0 +388,0.0000,0.0000,16.6735,16.6738,1 +389,0.0000,0.0000,16.9503,16.9507,1 +390,0.0000,0.0000,16.4844,16.4848,0 +391,0.0000,0.0000,15.0444,15.0449,0 +392,0.0000,0.0000,16.7699,16.7703,1 +393,0.0000,0.0000,16.4328,16.4331,0 +394,0.0000,0.0000,16.6109,16.6114,0 +395,0.0000,0.0000,16.6808,16.6814,1 +396,0.0000,0.0000,17.0461,17.0465,1 +397,0.0000,0.0000,16.4507,16.4511,0 +398,0.0000,0.0000,16.6740,16.6744,1 +399,0.0000,0.0000,15.8706,15.8709,0 +400,0.0000,0.0000,16.7078,16.7080,1 +401,0.0000,0.0000,17.3300,17.3303,1 +402,0.0000,0.0000,16.6152,16.6157,0 +403,0.0000,0.0000,16.7884,16.7887,1 +404,0.0000,0.0000,16.6035,16.6040,0 +405,0.0000,0.0000,16.7689,16.7693,1 +406,0.0000,0.0000,15.7021,15.7025,0 +407,0.0000,0.0000,16.6342,16.6343,0 +408,0.0000,0.0000,16.7204,16.7207,1 +409,0.0000,0.0000,16.5342,16.5344,0 +410,0.0000,0.0000,16.7767,16.7770,1 +411,0.0000,0.0000,16.7494,16.7496,1 +412,0.0000,0.0000,16.4851,16.4852,0 +413,0.0000,0.0000,17.4832,17.4835,1 +414,0.0000,0.0000,16.8514,16.8517,1 +415,0.0000,0.0000,16.6692,16.6696,1 +416,0.0000,0.0000,16.7743,16.7746,1 +417,0.0000,0.0000,15.7376,15.7380,0 +418,0.0000,0.0000,16.7485,16.7487,1 +419,0.0000,0.0000,16.4613,16.4616,0 +420,0.0000,0.0000,16.7243,16.7245,1 +421,0.0000,0.0000,15.8887,15.8893,0 +422,0.0000,0.0000,16.6882,16.6887,1 +423,0.0000,0.0000,16.5572,16.5577,0 +424,0.0000,0.0000,16.5655,16.5660,0 +425,0.0000,0.0000,16.7200,16.7203,1 +426,0.0000,0.0000,16.6915,16.6918,1 +427,0.0000,0.0000,16.7215,16.7220,1 +428,0.0000,0.0000,16.6389,16.6393,0 +429,0.0000,0.0000,16.6638,16.6642,0 +430,0.0000,0.0000,16.6314,16.6318,0 +431,0.0000,0.0000,16.7823,16.7828,1 +432,0.0000,0.0000,16.7583,16.7586,1 +433,0.0000,0.0000,16.5386,16.5391,0 +434,0.0000,0.0000,16.5999,16.6005,0 +435,0.0000,0.0000,16.8121,16.8127,1 +436,0.0000,0.0000,16.5431,16.5436,0 +437,0.0000,0.0000,16.7511,16.7516,1 +438,0.0000,0.0000,16.6932,16.6936,1 +439,0.0000,0.0000,16.7512,16.7516,1 +440,0.0000,0.0000,16.4590,16.4594,0 +441,0.0000,0.0000,16.7526,16.7530,1 +442,0.0000,0.0000,16.7904,16.7909,1 +443,0.0000,0.0000,16.4767,16.4771,0 +444,0.0000,0.0000,16.7941,16.7944,1 +445,0.0000,0.0000,16.6469,16.6473,0 +446,0.0000,0.0000,16.7125,16.7129,1 +447,0.0000,0.0000,16.7131,16.7134,1 +448,0.0000,0.0000,16.5043,16.5046,0 +449,0.0000,0.0000,16.5477,16.5481,0 +450,0.0000,0.0000,16.7285,16.7290,1 +451,0.0000,0.0000,14.9800,14.9805,0 +452,0.0000,0.0000,16.7891,16.7896,1 +453,0.0000,0.0000,16.7843,16.7848,1 +454,0.0000,0.0000,16.4580,16.4584,0 +455,0.0000,0.0000,15.6317,15.6320,0 +456,0.0000,0.0000,16.6064,16.6065,0 +457,0.0000,0.0000,16.5967,16.5968,0 +458,0.0000,0.0000,17.6252,17.6254,1 +459,0.0000,0.0000,16.9212,16.9216,1 +460,0.0000,0.0000,16.7371,16.7375,1 +461,0.0000,0.0000,16.6248,16.6252,0 +462,0.0000,0.0000,16.5062,16.5066,0 +463,0.0000,0.0000,16.6991,16.6996,1 +464,0.0000,0.0000,16.6740,16.6744,1 +465,0.0000,0.0000,15.9870,15.9875,0 +466,0.0000,0.0000,16.5579,16.5581,0 +467,0.0000,0.0000,16.8543,16.8545,1 +468,0.0000,0.0000,16.7204,16.7206,1 +469,0.0000,0.0000,16.5516,16.5519,0 +470,0.0000,0.0000,16.6329,16.6332,0 +471,0.0000,0.0000,16.6455,16.6458,0 +472,0.0000,0.0000,16.7116,16.7118,1 +473,0.0000,0.0000,17.4245,17.4248,1 +474,0.0000,0.0000,16.5999,16.6002,0 +475,0.0000,0.0000,16.7252,16.7256,1 +476,0.0000,0.0000,16.7937,16.7940,1 +477,0.0000,0.0000,16.5143,16.5147,0 +478,0.0000,0.0000,16.6639,16.6645,0 +479,0.0000,0.0000,16.6040,16.6045,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.console.txt new file mode 100644 index 0000000..88efdf2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.console.txt @@ -0,0 +1,16 @@ +iBridge Plan A synthetic renderer +source_resolution=2560x1440 +output_resolution=5120x2880 +target_fps=60 +actual_fps=59.881 +frames=480 +budget_ms=16.667 +p95_total_ms=17.476 +max_total_ms=25.163 +missed_frames=241 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +scale_mode=nearest +hud=on diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.receiver_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.receiver_stats.csv new file mode 100644 index 0000000..567ff64 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/1440p_nearest.receiver_stats.csv @@ -0,0 +1,481 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,4.9156,13.9974,6.2501,25.1634,1 +1,0.0000,0.0000,13.2280,13.2283,0 +2,0.0000,0.0000,16.1541,16.1543,0 +3,0.0000,0.0000,16.8735,16.8737,1 +4,0.0000,0.0000,14.9855,14.9857,0 +5,0.0000,0.0000,16.8894,16.8895,1 +6,0.0000,0.0000,16.6233,16.6234,0 +7,0.0000,0.0000,16.3309,16.3311,0 +8,0.0000,0.0000,17.9456,17.9459,1 +9,0.0000,0.0000,16.6209,16.6213,0 +10,0.0000,0.0000,16.6655,16.6659,0 +11,0.0000,0.0000,16.8535,16.8540,1 +12,0.0000,0.0000,16.0819,16.0824,0 +13,0.0000,0.0000,16.4554,16.4557,0 +14,0.0000,0.0000,16.7686,16.7690,1 +15,0.0000,0.0000,16.4854,16.4859,0 +16,0.0000,0.0000,16.8488,16.8492,1 +17,0.0000,0.0000,16.7229,16.7232,1 +18,0.0000,0.0000,16.4830,16.4834,0 +19,0.0000,0.0000,16.7524,16.7529,1 +20,0.0000,0.0000,16.5312,16.5316,0 +21,0.0000,0.0000,16.7271,16.7274,1 +22,0.0000,0.0000,16.6772,16.6777,1 +23,0.0000,0.0000,16.8034,16.8039,1 +24,0.0000,0.0000,16.4481,16.4485,0 +25,0.0000,0.0000,16.9872,16.9875,1 +26,0.0000,0.0000,16.5454,16.5457,0 +27,0.0000,0.0000,15.5922,15.5926,0 +28,0.0000,0.0000,16.7353,16.7355,1 +29,0.0000,0.0000,16.5097,16.5099,0 +30,0.0000,0.0000,16.6202,16.6204,0 +31,0.0000,0.0000,15.8850,15.8853,0 +32,0.0000,0.0000,16.8427,16.8429,1 +33,0.0000,0.0000,16.4744,16.4745,0 +34,0.0000,0.0000,16.7791,16.7792,1 +35,0.0000,0.0000,16.5335,16.5336,0 +36,0.0000,0.0000,17.6397,17.6400,1 +37,0.0000,0.0000,16.7677,16.7680,1 +38,0.0000,0.0000,16.5293,16.5298,0 +39,0.0000,0.0000,16.7800,16.7804,1 +40,0.0000,0.0000,16.7942,16.7946,1 +41,0.0000,0.0000,16.6986,16.6991,1 +42,0.0000,0.0000,15.6807,15.6810,0 +43,0.0000,0.0000,16.6907,16.6909,1 +44,0.0000,0.0000,16.6969,16.6970,1 +45,0.0000,0.0000,16.2548,16.2550,0 +46,0.0000,0.0000,16.9371,16.9373,1 +47,0.0000,0.0000,16.6732,16.6733,1 +48,0.0000,0.0000,16.2932,16.2932,0 +49,0.0000,0.0000,16.6776,16.6777,1 +50,0.0000,0.0000,16.6223,16.6225,0 +51,0.0000,0.0000,17.2077,17.2078,1 +52,0.0000,0.0000,16.7209,16.7212,1 +53,0.0000,0.0000,17.4868,17.4872,1 +54,0.0000,0.0000,15.9238,15.9242,0 +55,0.0000,0.0000,16.6016,16.6018,0 +56,0.0000,0.0000,16.6471,16.6473,0 +57,0.0000,0.0000,16.6056,16.6059,0 +58,0.0000,0.0000,16.6616,16.6619,0 +59,0.0000,0.0000,16.6522,16.6525,0 +60,0.0000,0.0000,16.8345,16.8347,1 +61,0.0000,0.0000,15.4438,15.4442,0 +62,0.0000,0.0000,16.5927,16.5929,0 +63,0.0000,0.0000,17.2989,17.2991,1 +64,0.0000,0.0000,16.7385,16.7390,1 +65,0.0000,0.0000,16.6138,16.6141,0 +66,0.0000,0.0000,16.7391,16.7395,1 +67,0.0000,0.0000,16.7179,16.7184,1 +68,0.0000,0.0000,16.6796,16.6799,1 +69,0.0000,0.0000,15.7327,15.7330,0 +70,0.0000,0.0000,16.6703,16.6705,1 +71,0.0000,0.0000,17.5984,17.5987,1 +72,0.0000,0.0000,16.4765,16.4770,0 +73,0.0000,0.0000,16.7269,16.7273,1 +74,0.0000,0.0000,16.6917,16.6921,1 +75,0.0000,0.0000,16.7907,16.7910,1 +76,0.0000,0.0000,15.9769,15.9771,0 +77,0.0000,0.0000,16.6076,16.6079,0 +78,0.0000,0.0000,16.5632,16.5635,0 +79,0.0000,0.0000,16.6103,16.6106,0 +80,0.0000,0.0000,16.7398,16.7401,1 +81,0.0000,0.0000,16.6650,16.6653,0 +82,0.0000,0.0000,16.7789,16.7792,1 +83,0.0000,0.0000,16.7188,16.7191,1 +84,0.0000,0.0000,16.4639,16.4642,0 +85,0.0000,0.0000,16.7416,16.7417,1 +86,0.0000,0.0000,16.5828,16.5830,0 +87,0.0000,0.0000,16.7737,16.7739,1 +88,0.0000,0.0000,16.7478,16.7480,1 +89,0.0000,0.0000,16.7669,16.7670,1 +90,0.0000,0.0000,16.1460,16.1462,0 +91,0.0000,0.0000,16.0523,16.0526,0 +92,0.0000,0.0000,16.5304,16.5305,0 +93,0.0000,0.0000,16.4656,16.4658,0 +94,0.0000,0.0000,17.8035,17.8038,1 +95,0.0000,0.0000,16.7656,16.7660,1 +96,0.0000,0.0000,16.8597,16.8601,1 +97,0.0000,0.0000,16.0109,16.0112,0 +98,0.0000,0.0000,16.5408,16.5410,0 +99,0.0000,0.0000,17.2400,17.2404,1 +100,0.0000,0.0000,16.7667,16.7671,1 +101,0.0000,0.0000,16.5944,16.5948,0 +102,0.0000,0.0000,16.8140,16.8144,1 +103,0.0000,0.0000,16.7295,16.7300,1 +104,0.0000,0.0000,16.6124,16.6128,0 +105,0.0000,0.0000,16.4723,16.4728,0 +106,0.0000,0.0000,16.2442,16.2448,0 +107,0.0000,0.0000,16.4973,16.4975,0 +108,0.0000,0.0000,16.2506,16.2508,0 +109,0.0000,0.0000,16.6705,16.6707,1 +110,0.0000,0.0000,16.6551,16.6552,0 +111,0.0000,0.0000,16.7123,16.7124,1 +112,0.0000,0.0000,17.6744,17.6746,1 +113,0.0000,0.0000,16.7120,16.7123,1 +114,0.0000,0.0000,16.5917,16.5920,0 +115,0.0000,0.0000,16.7386,16.7391,1 +116,0.0000,0.0000,16.7246,16.7250,1 +117,0.0000,0.0000,16.6855,16.6858,1 +118,0.0000,0.0000,16.5960,16.5965,0 +119,0.0000,0.0000,16.7171,16.7176,1 +120,0.0000,0.0000,16.5913,16.5917,0 +121,0.0000,0.0000,14.9773,14.9779,0 +122,0.0000,0.0000,16.5798,16.5802,0 +123,0.0000,0.0000,16.7558,16.7562,1 +124,0.0000,0.0000,15.9934,15.9938,0 +125,0.0000,0.0000,16.4468,16.4470,0 +126,0.0000,0.0000,16.5500,16.5503,0 +127,0.0000,0.0000,16.6513,16.6515,0 +128,0.0000,0.0000,17.5776,17.5779,1 +129,0.0000,0.0000,16.8091,16.8095,1 +130,0.0000,0.0000,16.5830,16.5836,0 +131,0.0000,0.0000,16.7915,16.7919,1 +132,0.0000,0.0000,15.7625,15.7628,0 +133,0.0000,0.0000,16.6322,16.6324,0 +134,0.0000,0.0000,16.6443,16.6445,0 +135,0.0000,0.0000,17.4589,17.4591,1 +136,0.0000,0.0000,16.7790,16.7793,1 +137,0.0000,0.0000,16.6130,16.6134,0 +138,0.0000,0.0000,16.4621,16.4624,0 +139,0.0000,0.0000,16.7888,16.7893,1 +140,0.0000,0.0000,16.7822,16.7826,1 +141,0.0000,0.0000,16.5670,16.5675,0 +142,0.0000,0.0000,16.7028,16.7032,1 +143,0.0000,0.0000,16.7045,16.7048,1 +144,0.0000,0.0000,16.7885,16.7888,1 +145,0.0000,0.0000,16.7403,16.7408,1 +146,0.0000,0.0000,15.8364,15.8367,0 +147,0.0000,0.0000,16.5096,16.5097,0 +148,0.0000,0.0000,16.2561,16.2563,0 +149,0.0000,0.0000,16.7362,16.7363,1 +150,0.0000,0.0000,17.7524,17.7527,1 +151,0.0000,0.0000,15.0771,15.0777,0 +152,0.0000,0.0000,16.6281,16.6284,0 +153,0.0000,0.0000,15.5975,15.5979,0 +154,0.0000,0.0000,16.6519,16.6521,0 +155,0.0000,0.0000,17.6270,17.6273,1 +156,0.0000,0.0000,16.9015,16.9018,1 +157,0.0000,0.0000,16.4364,16.4367,0 +158,0.0000,0.0000,16.9158,16.9162,1 +159,0.0000,0.0000,16.4538,16.4542,0 +160,0.0000,0.0000,15.6500,15.6503,0 +161,0.0000,0.0000,16.7385,16.7387,1 +162,0.0000,0.0000,16.5016,16.5018,0 +163,0.0000,0.0000,16.7026,16.7027,1 +164,0.0000,0.0000,16.6782,16.6784,1 +165,0.0000,0.0000,16.7930,16.7933,1 +166,0.0000,0.0000,16.7456,16.7457,1 +167,0.0000,0.0000,16.5533,16.5534,0 +168,0.0000,0.0000,17.5836,17.5839,1 +169,0.0000,0.0000,16.9169,16.9172,1 +170,0.0000,0.0000,16.5485,16.5488,0 +171,0.0000,0.0000,16.5518,16.5522,0 +172,0.0000,0.0000,16.9035,16.9039,1 +173,0.0000,0.0000,16.6248,16.6253,0 +174,0.0000,0.0000,16.5400,16.5404,0 +175,0.0000,0.0000,16.7783,16.7787,1 +176,0.0000,0.0000,16.5399,16.5403,0 +177,0.0000,0.0000,16.7106,16.7110,1 +178,0.0000,0.0000,16.1809,16.1813,0 +179,0.0000,0.0000,16.4266,16.4269,0 +180,0.0000,0.0000,17.3500,17.3503,1 +181,0.0000,0.0000,14.9984,14.9989,0 +182,0.0000,0.0000,16.6031,16.6035,0 +183,0.0000,0.0000,16.7608,16.7611,1 +184,0.0000,0.0000,16.6738,16.6743,1 +185,0.0000,0.0000,16.4829,16.4833,0 +186,0.0000,0.0000,16.8786,16.8790,1 +187,0.0000,0.0000,16.1259,16.1262,0 +188,0.0000,0.0000,16.3459,16.3461,0 +189,0.0000,0.0000,16.6440,16.6443,0 +190,0.0000,0.0000,16.5547,16.5549,0 +191,0.0000,0.0000,17.5124,17.5127,1 +192,0.0000,0.0000,16.7814,16.7818,1 +193,0.0000,0.0000,16.7328,16.7333,1 +194,0.0000,0.0000,16.6248,16.6253,0 +195,0.0000,0.0000,16.6078,16.6082,0 +196,0.0000,0.0000,16.7131,16.7136,1 +197,0.0000,0.0000,16.5974,16.5977,0 +198,0.0000,0.0000,16.6094,16.6099,0 +199,0.0000,0.0000,16.6767,16.6771,1 +200,0.0000,0.0000,16.6584,16.6588,0 +201,0.0000,0.0000,16.7596,16.7601,1 +202,0.0000,0.0000,16.5584,16.5588,0 +203,0.0000,0.0000,16.7122,16.7127,1 +204,0.0000,0.0000,16.6927,16.6930,1 +205,0.0000,0.0000,16.7878,16.7882,1 +206,0.0000,0.0000,16.7760,16.7764,1 +207,0.0000,0.0000,16.5609,16.5614,0 +208,0.0000,0.0000,16.6631,16.6635,0 +209,0.0000,0.0000,16.7222,16.7227,1 +210,0.0000,0.0000,16.5130,16.5134,0 +211,0.0000,0.0000,14.9186,14.9191,0 +212,0.0000,0.0000,16.7719,16.7723,1 +213,0.0000,0.0000,16.6523,16.6527,0 +214,0.0000,0.0000,16.6415,16.6420,0 +215,0.0000,0.0000,16.6580,16.6584,0 +216,0.0000,0.0000,15.7136,15.7140,0 +217,0.0000,0.0000,16.6929,16.6931,1 +218,0.0000,0.0000,16.5518,16.5520,0 +219,0.0000,0.0000,16.7330,16.7332,1 +220,0.0000,0.0000,16.7225,16.7227,1 +221,0.0000,0.0000,16.6341,16.6342,0 +222,0.0000,0.0000,16.7036,16.7038,1 +223,0.0000,0.0000,16.6203,16.6205,0 +224,0.0000,0.0000,17.5930,17.5932,1 +225,0.0000,0.0000,16.6321,16.6325,0 +226,0.0000,0.0000,16.7163,16.7167,1 +227,0.0000,0.0000,16.7156,16.7160,1 +228,0.0000,0.0000,16.8022,16.8025,1 +229,0.0000,0.0000,16.5241,16.5245,0 +230,0.0000,0.0000,16.7419,16.7423,1 +231,0.0000,0.0000,16.4685,16.4689,0 +232,0.0000,0.0000,16.8043,16.8047,1 +233,0.0000,0.0000,16.6409,16.6413,0 +234,0.0000,0.0000,16.6955,16.6959,1 +235,0.0000,0.0000,16.7718,16.7721,1 +236,0.0000,0.0000,16.6123,16.6127,0 +237,0.0000,0.0000,16.6885,16.6891,1 +238,0.0000,0.0000,15.5538,15.5541,0 +239,0.0000,0.0000,16.5623,16.5624,0 +240,0.0000,0.0000,17.6749,17.6752,1 +241,0.0000,0.0000,15.0758,15.0763,0 +242,0.0000,0.0000,16.6019,16.6023,0 +243,0.0000,0.0000,16.7248,16.7253,1 +244,0.0000,0.0000,16.6662,16.6667,1 +245,0.0000,0.0000,16.5897,16.5901,0 +246,0.0000,0.0000,16.8314,16.8317,1 +247,0.0000,0.0000,16.5135,16.5139,0 +248,0.0000,0.0000,16.6541,16.6544,0 +249,0.0000,0.0000,16.7621,16.7626,1 +250,0.0000,0.0000,16.6212,16.6217,0 +251,0.0000,0.0000,16.7638,16.7642,1 +252,0.0000,0.0000,16.6730,16.6735,1 +253,0.0000,0.0000,16.7372,16.7375,1 +254,0.0000,0.0000,16.4850,16.4855,0 +255,0.0000,0.0000,16.7572,16.7576,1 +256,0.0000,0.0000,15.9575,15.9579,0 +257,0.0000,0.0000,16.8878,16.8881,1 +258,0.0000,0.0000,16.1073,16.1075,0 +259,0.0000,0.0000,16.7009,16.7010,1 +260,0.0000,0.0000,16.5621,16.5624,0 +261,0.0000,0.0000,17.7034,17.7037,1 +262,0.0000,0.0000,16.7191,16.7195,1 +263,0.0000,0.0000,16.6753,16.6758,1 +264,0.0000,0.0000,16.6724,16.6727,1 +265,0.0000,0.0000,16.5872,16.5876,0 +266,0.0000,0.0000,16.7442,16.7445,1 +267,0.0000,0.0000,16.6830,16.6834,1 +268,0.0000,0.0000,16.8079,16.8083,1 +269,0.0000,0.0000,16.7140,16.7144,1 +270,0.0000,0.0000,15.7623,15.7627,0 +271,0.0000,0.0000,15.6224,15.6227,0 +272,0.0000,0.0000,16.5768,16.5771,0 +273,0.0000,0.0000,16.5411,16.5413,0 +274,0.0000,0.0000,16.7486,16.7487,1 +275,0.0000,0.0000,16.6293,16.6295,0 +276,0.0000,0.0000,17.4750,17.4753,1 +277,0.0000,0.0000,15.9873,15.9876,0 +278,0.0000,0.0000,16.7616,16.7618,1 +279,0.0000,0.0000,16.5249,16.5251,0 +280,0.0000,0.0000,16.6778,16.6781,1 +281,0.0000,0.0000,17.5991,17.5994,1 +282,0.0000,0.0000,16.5032,16.5036,0 +283,0.0000,0.0000,16.8024,16.8028,1 +284,0.0000,0.0000,16.6162,16.6165,0 +285,0.0000,0.0000,16.6298,16.6302,0 +286,0.0000,0.0000,16.3574,16.3577,0 +287,0.0000,0.0000,16.0615,16.0618,0 +288,0.0000,0.0000,17.4860,17.4863,1 +289,0.0000,0.0000,16.7107,16.7111,1 +290,0.0000,0.0000,16.6629,16.6632,0 +291,0.0000,0.0000,16.6839,16.6843,1 +292,0.0000,0.0000,16.7622,16.7626,1 +293,0.0000,0.0000,16.5705,16.5709,0 +294,0.0000,0.0000,15.9105,15.9109,0 +295,0.0000,0.0000,16.6013,16.6015,0 +296,0.0000,0.0000,16.2478,16.2480,0 +297,0.0000,0.0000,16.7493,16.7493,1 +298,0.0000,0.0000,16.6246,16.6248,0 +299,0.0000,0.0000,16.7302,16.7304,1 +300,0.0000,0.0000,16.7620,16.7621,1 +301,0.0000,0.0000,16.0121,16.0124,0 +302,0.0000,0.0000,16.6083,16.6085,0 +303,0.0000,0.0000,17.7254,17.7257,1 +304,0.0000,0.0000,16.7389,16.7393,1 +305,0.0000,0.0000,16.7594,16.7599,1 +306,0.0000,0.0000,16.7842,16.7846,1 +307,0.0000,0.0000,16.5752,16.5755,0 +308,0.0000,0.0000,16.6493,16.6496,0 +309,0.0000,0.0000,16.6640,16.6645,0 +310,0.0000,0.0000,16.5387,16.5391,0 +311,0.0000,0.0000,16.7156,16.7160,1 +312,0.0000,0.0000,16.6699,16.6703,1 +313,0.0000,0.0000,16.7433,16.7437,1 +314,0.0000,0.0000,16.7431,16.7434,1 +315,0.0000,0.0000,16.5165,16.5168,0 +316,0.0000,0.0000,16.6460,16.6464,0 +317,0.0000,0.0000,16.7022,16.7025,1 +318,0.0000,0.0000,16.6390,16.6394,0 +319,0.0000,0.0000,16.7773,16.7778,1 +320,0.0000,0.0000,16.5920,16.5924,0 +321,0.0000,0.0000,16.7459,16.7463,1 +322,0.0000,0.0000,15.5353,15.5357,0 +323,0.0000,0.0000,16.6634,16.6635,0 +324,0.0000,0.0000,16.5553,16.5555,0 +325,0.0000,0.0000,16.6471,16.6473,0 +326,0.0000,0.0000,17.0196,17.0198,1 +327,0.0000,0.0000,16.4715,16.4717,0 +328,0.0000,0.0000,16.7595,16.7596,1 +329,0.0000,0.0000,16.6084,16.6085,0 +330,0.0000,0.0000,17.6669,17.6671,1 +331,0.0000,0.0000,14.9843,14.9849,0 +332,0.0000,0.0000,16.6168,16.6172,0 +333,0.0000,0.0000,16.7991,16.7996,1 +334,0.0000,0.0000,16.6607,16.6611,0 +335,0.0000,0.0000,15.6575,15.6578,0 +336,0.0000,0.0000,16.6756,16.6758,1 +337,0.0000,0.0000,16.6450,16.6453,0 +338,0.0000,0.0000,16.6746,16.6748,1 +339,0.0000,0.0000,17.5376,17.5379,1 +340,0.0000,0.0000,16.6789,16.6792,1 +341,0.0000,0.0000,16.7829,16.7833,1 +342,0.0000,0.0000,16.7074,16.7079,1 +343,0.0000,0.0000,16.5613,16.5616,0 +344,0.0000,0.0000,16.7049,16.7052,1 +345,0.0000,0.0000,16.7748,16.7753,1 +346,0.0000,0.0000,16.4836,16.4841,0 +347,0.0000,0.0000,16.7235,16.7240,1 +348,0.0000,0.0000,16.7788,16.7791,1 +349,0.0000,0.0000,15.8585,15.8589,0 +350,0.0000,0.0000,16.5406,16.5408,0 +351,0.0000,0.0000,17.4631,17.4634,1 +352,0.0000,0.0000,16.5313,16.5317,0 +353,0.0000,0.0000,16.7347,16.7351,1 +354,0.0000,0.0000,16.6861,16.6865,1 +355,0.0000,0.0000,16.7619,16.7622,1 +356,0.0000,0.0000,16.7220,16.7223,1 +357,0.0000,0.0000,15.9193,15.9197,0 +358,0.0000,0.0000,16.7846,16.7849,1 +359,0.0000,0.0000,16.4441,16.4444,0 +360,0.0000,0.0000,16.7257,16.7258,1 +361,0.0000,0.0000,15.6344,15.6348,0 +362,0.0000,0.0000,17.3618,17.3620,1 +363,0.0000,0.0000,16.6935,16.6940,1 +364,0.0000,0.0000,16.6701,16.6706,1 +365,0.0000,0.0000,16.6320,16.6324,0 +366,0.0000,0.0000,16.6310,16.6314,0 +367,0.0000,0.0000,16.7021,16.7024,1 +368,0.0000,0.0000,16.6716,16.6720,1 +369,0.0000,0.0000,16.8369,16.8373,1 +370,0.0000,0.0000,16.5555,16.5560,0 +371,0.0000,0.0000,16.6313,16.6318,0 +372,0.0000,0.0000,16.6927,16.6931,1 +373,0.0000,0.0000,16.5944,16.5948,0 +374,0.0000,0.0000,16.6695,16.6699,1 +375,0.0000,0.0000,16.7130,16.7135,1 +376,0.0000,0.0000,16.8124,16.8127,1 +377,0.0000,0.0000,16.6895,16.6898,1 +378,0.0000,0.0000,16.5602,16.5606,0 +379,0.0000,0.0000,16.5733,16.5737,0 +380,0.0000,0.0000,16.6526,16.6530,0 +381,0.0000,0.0000,16.7200,16.7204,1 +382,0.0000,0.0000,16.5647,16.5650,0 +383,0.0000,0.0000,16.7929,16.7932,1 +384,0.0000,0.0000,16.7093,16.7096,1 +385,0.0000,0.0000,16.7448,16.7452,1 +386,0.0000,0.0000,16.5949,16.5953,0 +387,0.0000,0.0000,16.7019,16.7023,1 +388,0.0000,0.0000,16.5583,16.5588,0 +389,0.0000,0.0000,16.6951,16.6956,1 +390,0.0000,0.0000,16.7100,16.7104,1 +391,0.0000,0.0000,13.9354,13.9358,0 +392,0.0000,0.0000,16.7777,16.7779,1 +393,0.0000,0.0000,16.4899,16.4901,0 +394,0.0000,0.0000,16.7476,16.7479,1 +395,0.0000,0.0000,16.6597,16.6599,0 +396,0.0000,0.0000,16.6160,16.6163,0 +397,0.0000,0.0000,16.8883,16.8887,1 +398,0.0000,0.0000,16.6239,16.6241,0 +399,0.0000,0.0000,16.6687,16.6689,1 +400,0.0000,0.0000,17.3068,17.3071,1 +401,0.0000,0.0000,16.6699,16.6703,1 +402,0.0000,0.0000,16.5515,16.5518,0 +403,0.0000,0.0000,16.8256,16.8260,1 +404,0.0000,0.0000,16.6013,16.6017,0 +405,0.0000,0.0000,16.7098,16.7103,1 +406,0.0000,0.0000,16.7449,16.7452,1 +407,0.0000,0.0000,15.8427,15.8431,0 +408,0.0000,0.0000,16.5355,16.5358,0 +409,0.0000,0.0000,17.5812,17.5815,1 +410,0.0000,0.0000,16.5485,16.5490,0 +411,0.0000,0.0000,16.8316,16.8321,1 +412,0.0000,0.0000,16.7918,16.7922,1 +413,0.0000,0.0000,16.4218,16.4221,0 +414,0.0000,0.0000,16.7320,16.7324,1 +415,0.0000,0.0000,16.5998,16.6003,0 +416,0.0000,0.0000,16.7216,16.7219,1 +417,0.0000,0.0000,16.5553,16.5557,0 +418,0.0000,0.0000,16.9398,16.9401,1 +419,0.0000,0.0000,16.4493,16.4498,0 +420,0.0000,0.0000,16.6370,16.6375,0 +421,0.0000,0.0000,14.2037,14.2043,0 +422,0.0000,0.0000,16.6217,16.6219,0 +423,0.0000,0.0000,17.4588,17.4591,1 +424,0.0000,0.0000,16.7553,16.7556,1 +425,0.0000,0.0000,16.7697,16.7702,1 +426,0.0000,0.0000,16.6788,16.6792,1 +427,0.0000,0.0000,16.5967,16.5972,0 +428,0.0000,0.0000,16.6561,16.6565,0 +429,0.0000,0.0000,16.6995,16.6999,1 +430,0.0000,0.0000,16.6022,16.6027,0 +431,0.0000,0.0000,16.7101,16.7104,1 +432,0.0000,0.0000,16.5487,16.5491,0 +433,0.0000,0.0000,16.8915,16.8920,1 +434,0.0000,0.0000,16.4740,16.4744,0 +435,0.0000,0.0000,16.7357,16.7361,1 +436,0.0000,0.0000,16.6811,16.6816,1 +437,0.0000,0.0000,16.6465,16.6469,0 +438,0.0000,0.0000,16.6520,16.6525,0 +439,0.0000,0.0000,16.8094,16.8099,1 +440,0.0000,0.0000,16.6175,16.6178,0 +441,0.0000,0.0000,15.6185,15.6188,0 +442,0.0000,0.0000,16.6596,16.6598,0 +443,0.0000,0.0000,16.5317,16.5318,0 +444,0.0000,0.0000,16.6299,16.6301,0 +445,0.0000,0.0000,17.7377,17.7379,1 +446,0.0000,0.0000,16.8939,16.8943,1 +447,0.0000,0.0000,15.8015,15.8018,0 +448,0.0000,0.0000,16.2422,16.2424,0 +449,0.0000,0.0000,16.6726,16.6728,1 +450,0.0000,0.0000,17.7505,17.7507,1 +451,0.0000,0.0000,14.9890,14.9896,0 +452,0.0000,0.0000,16.7668,16.7673,1 +453,0.0000,0.0000,16.6225,16.6230,0 +454,0.0000,0.0000,16.7158,16.7162,1 +455,0.0000,0.0000,16.6935,16.6939,1 +456,0.0000,0.0000,16.5518,16.5522,0 +457,0.0000,0.0000,16.6315,16.6320,0 +458,0.0000,0.0000,16.7195,16.7199,1 +459,0.0000,0.0000,16.6041,16.6044,0 +460,0.0000,0.0000,16.8361,16.8366,1 +461,0.0000,0.0000,16.5732,16.5735,0 +462,0.0000,0.0000,16.5779,16.5782,0 +463,0.0000,0.0000,16.6755,16.6759,1 +464,0.0000,0.0000,16.7393,16.7396,1 +465,0.0000,0.0000,15.8928,15.8932,0 +466,0.0000,0.0000,16.5922,16.5925,0 +467,0.0000,0.0000,16.8254,16.8256,1 +468,0.0000,0.0000,16.4954,16.4956,0 +469,0.0000,0.0000,16.4546,16.4547,0 +470,0.0000,0.0000,17.7555,17.7558,1 +471,0.0000,0.0000,16.6529,16.6532,0 +472,0.0000,0.0000,16.6030,16.6034,0 +473,0.0000,0.0000,16.8067,16.8071,1 +474,0.0000,0.0000,16.5900,16.5905,0 +475,0.0000,0.0000,15.9230,15.9233,0 +476,0.0000,0.0000,16.6681,16.6683,1 +477,0.0000,0.0000,16.5584,16.5586,0 +478,0.0000,0.0000,16.6282,16.6283,0 +479,0.0000,0.0000,16.8424,16.8426,1 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_console.txt new file mode 100644 index 0000000..154d087 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_console.txt @@ -0,0 +1,18 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=8.520 +avg_encode_latency_ms=14.738 +p95_encode_latency_ms=23.564 +max_encode_latency_ms=76.184 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15467082 +send_target=none +csv=benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_stats.csv new file mode 100644 index 0000000..6ab9a7d --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800.primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,9.3846,76.1842,0.0000,108448,0 +1,9.1886,27.5015,0.0000,138079,0 +2,13.1687,22.7738,0.0000,163072,0 +3,8.1496,23.2531,0.0000,181028,0 +4,8.8238,22.7557,0.0000,214439,0 +5,7.6839,23.5288,0.0000,236441,0 +6,7.9716,24.2389,0.0000,293428,0 +7,7.0415,23.2367,0.0000,308894,0 +8,7.7635,12.9215,0.0000,281645,0 +9,7.7785,12.6775,0.0000,291445,0 +10,7.7770,12.5384,0.0000,380694,0 +11,7.8188,12.4578,0.0000,354400,0 +12,7.6764,12.4515,0.0000,349364,0 +13,7.8172,12.3640,0.0000,352724,0 +14,7.8261,12.3883,0.0000,345045,0 +15,7.7760,12.3967,0.0000,415670,0 +16,7.9878,12.3621,0.0000,331675,0 +17,7.8678,12.1270,0.0000,274663,0 +18,7.9886,12.1547,0.0000,296620,0 +19,7.9487,12.1367,0.0000,293165,0 +20,7.9323,12.1964,0.0000,370286,0 +21,7.8461,12.4636,0.0000,335471,0 +22,7.4269,12.4885,0.0000,340517,0 +23,7.8187,12.4012,0.0000,336210,0 +24,7.0581,12.1460,0.0000,244823,0 +25,8.1197,12.6717,0.0000,290134,0 +26,12.2043,12.3818,0.0000,290346,0 +27,14.0620,12.4662,0.0000,255833,0 +28,11.5606,12.5991,0.0000,261196,0 +29,13.3925,12.4500,0.0000,266864,0 +30,8.4527,12.5421,0.0000,268572,0 +31,11.4848,12.1011,0.0000,276911,0 +32,7.5002,12.4959,0.0000,199572,0 +33,7.4089,12.0811,0.0000,156730,0 +34,7.8566,12.5361,0.0000,179398,0 +35,14.5352,12.8106,0.0000,174540,0 +36,8.7292,12.6854,0.0000,208324,0 +37,8.1513,12.2786,0.0000,187229,0 +38,7.9921,12.1645,0.0000,197134,0 +39,7.9632,12.3906,0.0000,197514,0 +40,7.9158,12.2715,0.0000,222126,0 +41,7.8593,12.2391,0.0000,220537,0 +42,7.9625,12.2049,0.0000,226007,0 +43,7.9837,11.9986,0.0000,227895,0 +44,7.9480,12.4930,0.0000,225493,0 +45,7.7674,12.2858,0.0000,230656,0 +46,7.8912,12.1520,0.0000,230688,0 +47,7.9308,12.0598,0.0000,237368,0 +48,7.9419,12.0288,0.0000,219070,0 +49,8.0142,12.1970,0.0000,195623,0 +50,7.9947,12.1370,0.0000,203064,0 +51,7.9045,12.1197,0.0000,252382,0 +52,7.9447,12.3011,0.0000,291805,0 +53,7.8662,12.1587,0.0000,261585,0 +54,7.8270,12.1846,0.0000,267221,0 +55,7.8709,11.9610,0.0000,264550,0 +56,7.7974,12.0913,0.0000,247332,0 +57,7.8663,12.0180,0.0000,259780,0 +58,8.0391,12.1473,0.0000,267691,0 +59,7.9554,12.4022,0.0000,267666,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.console.txt new file mode 100644 index 0000000..ff982de --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.console.txt @@ -0,0 +1,16 @@ +iBridge Plan A synthetic renderer +source_resolution=3200x1800 +output_resolution=5120x2880 +target_fps=60 +actual_fps=59.885 +frames=480 +budget_ms=16.667 +p95_total_ms=17.477 +max_total_ms=31.456 +missed_frames=220 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +scale_mode=linear +hud=on diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.receiver_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.receiver_stats.csv new file mode 100644 index 0000000..e6cefc4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/3200x1800_linear.receiver_stats.csv @@ -0,0 +1,481 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,7.6868,17.3963,6.3726,31.4558,1 +1,0.0000,0.0000,7.9217,7.9218,0 +2,0.0000,0.0000,16.1076,16.1078,0 +3,0.0000,0.0000,15.0754,15.0755,0 +4,0.0000,0.0000,16.7145,16.7147,1 +5,0.0000,0.0000,16.7128,16.7128,1 +6,0.0000,0.0000,18.0994,18.0996,1 +7,0.0000,0.0000,16.6681,16.6684,1 +8,0.0000,0.0000,16.5493,16.5496,0 +9,0.0000,0.0000,16.7128,16.7131,1 +10,0.0000,0.0000,16.4554,16.4557,0 +11,0.0000,0.0000,16.2948,16.2951,0 +12,0.0000,0.0000,16.1735,16.1738,0 +13,0.0000,0.0000,16.6456,16.6460,0 +14,0.0000,0.0000,16.5984,16.5987,0 +15,0.0000,0.0000,16.6108,16.6111,0 +16,0.0000,0.0000,16.7554,16.7558,1 +17,0.0000,0.0000,16.8329,16.8332,1 +18,0.0000,0.0000,16.4890,16.4893,0 +19,0.0000,0.0000,16.6412,16.6415,0 +20,0.0000,0.0000,16.5780,16.5785,0 +21,0.0000,0.0000,16.7769,16.7772,1 +22,0.0000,0.0000,16.7708,16.7712,1 +23,0.0000,0.0000,16.7185,16.7188,1 +24,0.0000,0.0000,15.9309,15.9311,0 +25,0.0000,0.0000,16.7065,16.7067,1 +26,0.0000,0.0000,17.3665,17.3667,1 +27,0.0000,0.0000,16.7169,16.7174,1 +28,0.0000,0.0000,16.5440,16.5443,0 +29,0.0000,0.0000,16.8622,16.8626,1 +30,0.0000,0.0000,16.9433,16.9438,1 +31,0.0000,0.0000,13.8526,13.8530,0 +32,0.0000,0.0000,15.5992,15.5996,0 +33,0.0000,0.0000,16.4432,16.4434,0 +34,0.0000,0.0000,16.5654,16.5656,0 +35,0.0000,0.0000,17.9945,17.9947,1 +36,0.0000,0.0000,16.6849,16.6852,1 +37,0.0000,0.0000,16.7636,16.7640,1 +38,0.0000,0.0000,16.6675,16.6678,1 +39,0.0000,0.0000,16.6314,16.6318,0 +40,0.0000,0.0000,16.6548,16.6551,0 +41,0.0000,0.0000,16.5257,16.5261,0 +42,0.0000,0.0000,16.6946,16.6950,1 +43,0.0000,0.0000,16.7804,16.7807,1 +44,0.0000,0.0000,16.7266,16.7270,1 +45,0.0000,0.0000,16.6229,16.6233,0 +46,0.0000,0.0000,15.6902,15.6906,0 +47,0.0000,0.0000,16.5007,16.5008,0 +48,0.0000,0.0000,16.6404,16.6406,0 +49,0.0000,0.0000,16.6648,16.6649,0 +50,0.0000,0.0000,17.9251,17.9253,1 +51,0.0000,0.0000,15.6426,15.6430,0 +52,0.0000,0.0000,16.6661,16.6662,0 +53,0.0000,0.0000,16.8139,16.8141,1 +54,0.0000,0.0000,16.2637,16.2637,0 +55,0.0000,0.0000,17.1212,17.1213,1 +56,0.0000,0.0000,16.5372,16.5375,0 +57,0.0000,0.0000,16.7761,16.7763,1 +58,0.0000,0.0000,16.8454,16.8456,1 +59,0.0000,0.0000,16.5943,16.5946,0 +60,0.0000,0.0000,16.1312,16.1314,0 +61,0.0000,0.0000,16.0686,16.0688,0 +62,0.0000,0.0000,16.6449,16.6451,0 +63,0.0000,0.0000,16.6205,16.6206,0 +64,0.0000,0.0000,17.8083,17.8085,1 +65,0.0000,0.0000,16.9856,16.9861,1 +66,0.0000,0.0000,16.5630,16.5634,0 +67,0.0000,0.0000,16.5041,16.5044,0 +68,0.0000,0.0000,15.9683,15.9686,0 +69,0.0000,0.0000,17.3387,17.3391,1 +70,0.0000,0.0000,16.6885,16.6888,1 +71,0.0000,0.0000,16.6764,16.6767,1 +72,0.0000,0.0000,16.7153,16.7156,1 +73,0.0000,0.0000,16.6381,16.6385,0 +74,0.0000,0.0000,16.7732,16.7736,1 +75,0.0000,0.0000,16.6266,16.6271,0 +76,0.0000,0.0000,16.5395,16.5399,0 +77,0.0000,0.0000,16.6328,16.6332,0 +78,0.0000,0.0000,16.8557,16.8561,1 +79,0.0000,0.0000,16.7569,16.7574,1 +80,0.0000,0.0000,16.5285,16.5289,0 +81,0.0000,0.0000,16.7788,16.7791,1 +82,0.0000,0.0000,16.5098,16.5103,0 +83,0.0000,0.0000,16.5861,16.5865,0 +84,0.0000,0.0000,16.6704,16.6708,1 +85,0.0000,0.0000,16.7255,16.7260,1 +86,0.0000,0.0000,16.9646,16.9650,1 +87,0.0000,0.0000,15.7600,15.7603,0 +88,0.0000,0.0000,16.5221,16.5223,0 +89,0.0000,0.0000,17.4860,17.4863,1 +90,0.0000,0.0000,16.5551,16.5554,0 +91,0.0000,0.0000,15.0548,15.0553,0 +92,0.0000,0.0000,16.6002,16.6006,0 +93,0.0000,0.0000,16.8047,16.8052,1 +94,0.0000,0.0000,16.3273,16.3276,0 +95,0.0000,0.0000,16.1973,16.1976,0 +96,0.0000,0.0000,17.2952,17.2955,1 +97,0.0000,0.0000,16.6747,16.6752,1 +98,0.0000,0.0000,16.0420,16.0424,0 +99,0.0000,0.0000,16.5346,16.5349,0 +100,0.0000,0.0000,16.8840,16.8842,1 +101,0.0000,0.0000,16.7488,16.7490,1 +102,0.0000,0.0000,16.3881,16.3883,0 +103,0.0000,0.0000,16.8617,16.8620,1 +104,0.0000,0.0000,17.2585,17.2590,1 +105,0.0000,0.0000,15.8872,15.8874,0 +106,0.0000,0.0000,16.7498,16.7501,1 +107,0.0000,0.0000,16.7195,16.7197,1 +108,0.0000,0.0000,16.7106,16.7108,1 +109,0.0000,0.0000,16.2994,16.2995,0 +110,0.0000,0.0000,16.5632,16.5633,0 +111,0.0000,0.0000,17.1115,17.1116,1 +112,0.0000,0.0000,16.5599,16.5601,0 +113,0.0000,0.0000,16.7804,16.7807,1 +114,0.0000,0.0000,17.4576,17.4578,1 +115,0.0000,0.0000,16.5670,16.5674,0 +116,0.0000,0.0000,16.5886,16.5890,0 +117,0.0000,0.0000,16.8217,16.8221,1 +118,0.0000,0.0000,16.4571,16.4575,0 +119,0.0000,0.0000,16.9323,16.9326,1 +120,0.0000,0.0000,15.8103,15.8107,0 +121,0.0000,0.0000,15.6603,15.6606,0 +122,0.0000,0.0000,16.6036,16.6039,0 +123,0.0000,0.0000,16.7442,16.7444,1 +124,0.0000,0.0000,16.5186,16.5189,0 +125,0.0000,0.0000,17.4130,17.4133,1 +126,0.0000,0.0000,16.6897,16.6900,1 +127,0.0000,0.0000,16.7039,16.7043,1 +128,0.0000,0.0000,16.8172,16.8175,1 +129,0.0000,0.0000,16.6795,16.6799,1 +130,0.0000,0.0000,16.6543,16.6547,0 +131,0.0000,0.0000,16.5300,16.5304,0 +132,0.0000,0.0000,16.5331,16.5334,0 +133,0.0000,0.0000,16.7644,16.7647,1 +134,0.0000,0.0000,16.5675,16.5679,0 +135,0.0000,0.0000,16.9077,16.9081,1 +136,0.0000,0.0000,15.7617,15.7620,0 +137,0.0000,0.0000,16.6587,16.6589,0 +138,0.0000,0.0000,16.6059,16.6062,0 +139,0.0000,0.0000,16.7113,16.7116,1 +140,0.0000,0.0000,17.3944,17.3948,1 +141,0.0000,0.0000,16.7018,16.7022,1 +142,0.0000,0.0000,16.8526,16.8531,1 +143,0.0000,0.0000,15.8008,15.8012,0 +144,0.0000,0.0000,16.7205,16.7207,1 +145,0.0000,0.0000,16.5321,16.5322,0 +146,0.0000,0.0000,16.5987,16.5989,0 +147,0.0000,0.0000,16.7551,16.7553,1 +148,0.0000,0.0000,16.6225,16.6227,0 +149,0.0000,0.0000,16.8089,16.8091,1 +150,0.0000,0.0000,16.6788,16.6789,1 +151,0.0000,0.0000,15.6587,15.6589,0 +152,0.0000,0.0000,16.6403,16.6406,0 +153,0.0000,0.0000,16.6429,16.6432,0 +154,0.0000,0.0000,17.5038,17.5041,1 +155,0.0000,0.0000,16.6722,16.6727,1 +156,0.0000,0.0000,16.7398,16.7402,1 +157,0.0000,0.0000,16.7522,16.7526,1 +158,0.0000,0.0000,16.5728,16.5731,0 +159,0.0000,0.0000,15.8852,15.8856,0 +160,0.0000,0.0000,16.6260,16.6262,0 +161,0.0000,0.0000,16.6313,16.6316,0 +162,0.0000,0.0000,16.6482,16.6485,0 +163,0.0000,0.0000,16.7017,16.7019,1 +164,0.0000,0.0000,16.6974,16.6976,1 +165,0.0000,0.0000,16.5410,16.5412,0 +166,0.0000,0.0000,16.8659,16.8662,1 +167,0.0000,0.0000,17.4288,17.4292,1 +168,0.0000,0.0000,15.9404,15.9407,0 +169,0.0000,0.0000,16.5977,16.5979,0 +170,0.0000,0.0000,17.6152,17.6154,1 +171,0.0000,0.0000,16.4678,16.4681,0 +172,0.0000,0.0000,16.7991,16.7994,1 +173,0.0000,0.0000,16.5806,16.5810,0 +174,0.0000,0.0000,16.6768,16.6772,1 +175,0.0000,0.0000,16.2647,16.2650,0 +176,0.0000,0.0000,16.2184,16.2186,0 +177,0.0000,0.0000,16.3264,16.3266,0 +178,0.0000,0.0000,16.9144,16.9145,1 +179,0.0000,0.0000,16.7457,16.7459,1 +180,0.0000,0.0000,16.6326,16.6328,0 +181,0.0000,0.0000,16.6937,16.6941,1 +182,0.0000,0.0000,16.7165,16.7168,1 +183,0.0000,0.0000,16.4611,16.4614,0 +184,0.0000,0.0000,16.8572,16.8575,1 +185,0.0000,0.0000,16.7248,16.7251,1 +186,0.0000,0.0000,16.4948,16.4953,0 +187,0.0000,0.0000,16.6643,16.6647,0 +188,0.0000,0.0000,16.6451,16.6456,0 +189,0.0000,0.0000,16.7846,16.7851,1 +190,0.0000,0.0000,16.6514,16.6518,0 +191,0.0000,0.0000,16.6738,16.6742,1 +192,0.0000,0.0000,16.6635,16.6639,0 +193,0.0000,0.0000,16.2820,16.2823,0 +194,0.0000,0.0000,15.8850,15.8852,0 +195,0.0000,0.0000,17.6100,17.6102,1 +196,0.0000,0.0000,16.6871,16.6874,1 +197,0.0000,0.0000,16.8835,16.8840,1 +198,0.0000,0.0000,16.5873,16.5876,0 +199,0.0000,0.0000,16.7365,16.7369,1 +200,0.0000,0.0000,16.6282,16.6285,0 +201,0.0000,0.0000,15.7636,15.7639,0 +202,0.0000,0.0000,16.6074,16.6075,0 +203,0.0000,0.0000,16.6705,16.6707,1 +204,0.0000,0.0000,17.4624,17.4627,1 +205,0.0000,0.0000,17.0865,17.0868,1 +206,0.0000,0.0000,16.4775,16.4779,0 +207,0.0000,0.0000,16.4737,16.4741,0 +208,0.0000,0.0000,16.6922,16.6926,1 +209,0.0000,0.0000,16.7629,16.7632,1 +210,0.0000,0.0000,16.5748,16.5751,0 +211,0.0000,0.0000,15.1060,15.1065,0 +212,0.0000,0.0000,16.6636,16.6639,0 +213,0.0000,0.0000,15.7880,15.7883,0 +214,0.0000,0.0000,16.6920,16.6922,1 +215,0.0000,0.0000,16.5302,16.5305,0 +216,0.0000,0.0000,16.7080,16.7082,1 +217,0.0000,0.0000,17.4766,17.4768,1 +218,0.0000,0.0000,16.7189,16.7193,1 +219,0.0000,0.0000,16.1727,16.1731,0 +220,0.0000,0.0000,16.5391,16.5392,0 +221,0.0000,0.0000,16.6638,16.6641,0 +222,0.0000,0.0000,16.5584,16.5586,0 +223,0.0000,0.0000,16.6192,16.6194,0 +224,0.0000,0.0000,16.7053,16.7055,1 +225,0.0000,0.0000,16.9208,16.9210,1 +226,0.0000,0.0000,16.5063,16.5066,0 +227,0.0000,0.0000,16.7347,16.7349,1 +228,0.0000,0.0000,16.5447,16.5450,0 +229,0.0000,0.0000,16.6507,16.6509,0 +230,0.0000,0.0000,16.6790,16.6793,1 +231,0.0000,0.0000,16.5324,16.5327,0 +232,0.0000,0.0000,16.7803,16.7806,1 +233,0.0000,0.0000,17.5102,17.5106,1 +234,0.0000,0.0000,16.6408,16.6411,0 +235,0.0000,0.0000,15.9808,15.9811,0 +236,0.0000,0.0000,16.4773,16.4776,0 +237,0.0000,0.0000,17.4683,17.4686,1 +238,0.0000,0.0000,16.6623,16.6627,0 +239,0.0000,0.0000,16.6099,16.6103,0 +240,0.0000,0.0000,16.7634,16.7637,1 +241,0.0000,0.0000,14.9993,15.0000,0 +242,0.0000,0.0000,15.8533,15.8536,0 +243,0.0000,0.0000,16.4437,16.4439,0 +244,0.0000,0.0000,17.5438,17.5440,1 +245,0.0000,0.0000,16.6911,16.6916,1 +246,0.0000,0.0000,16.6835,16.6838,1 +247,0.0000,0.0000,16.8346,16.8351,1 +248,0.0000,0.0000,16.6947,16.6951,1 +249,0.0000,0.0000,15.6274,15.6277,0 +250,0.0000,0.0000,16.5699,16.5701,0 +251,0.0000,0.0000,16.5863,16.5864,0 +252,0.0000,0.0000,16.7490,16.7493,1 +253,0.0000,0.0000,16.6358,16.6360,0 +254,0.0000,0.0000,16.8691,16.8693,1 +255,0.0000,0.0000,17.5186,17.5189,1 +256,0.0000,0.0000,15.8675,15.8679,0 +257,0.0000,0.0000,16.5311,16.5313,0 +258,0.0000,0.0000,16.8635,16.8637,1 +259,0.0000,0.0000,16.6407,16.6410,0 +260,0.0000,0.0000,16.6323,16.6326,0 +261,0.0000,0.0000,16.6901,16.6902,1 +262,0.0000,0.0000,16.6582,16.6585,0 +263,0.0000,0.0000,16.9232,16.9234,1 +264,0.0000,0.0000,16.5634,16.5636,0 +265,0.0000,0.0000,16.6318,16.6320,0 +266,0.0000,0.0000,16.4995,16.4997,0 +267,0.0000,0.0000,16.7575,16.7578,1 +268,0.0000,0.0000,16.8733,16.8735,1 +269,0.0000,0.0000,17.3824,17.3826,1 +270,0.0000,0.0000,16.8269,16.8272,1 +271,0.0000,0.0000,14.6880,14.6887,0 +272,0.0000,0.0000,16.5218,16.5223,0 +273,0.0000,0.0000,16.5963,16.5967,0 +274,0.0000,0.0000,16.7183,16.7187,1 +275,0.0000,0.0000,16.8281,16.8285,1 +276,0.0000,0.0000,16.6177,16.6181,0 +277,0.0000,0.0000,16.6671,16.6675,1 +278,0.0000,0.0000,15.7000,15.7003,0 +279,0.0000,0.0000,16.6744,16.6746,1 +280,0.0000,0.0000,17.4442,17.4445,1 +281,0.0000,0.0000,16.7163,16.7166,1 +282,0.0000,0.0000,16.8258,16.8263,1 +283,0.0000,0.0000,16.0033,16.0037,0 +284,0.0000,0.0000,16.3826,16.3829,0 +285,0.0000,0.0000,17.5158,17.5160,1 +286,0.0000,0.0000,16.6731,16.6736,1 +287,0.0000,0.0000,16.6102,16.6106,0 +288,0.0000,0.0000,16.6841,16.6846,1 +289,0.0000,0.0000,16.7117,16.7122,1 +290,0.0000,0.0000,16.6576,16.6579,0 +291,0.0000,0.0000,16.6936,16.6941,1 +292,0.0000,0.0000,16.6875,16.6879,1 +293,0.0000,0.0000,16.6587,16.6592,0 +294,0.0000,0.0000,16.7182,16.7186,1 +295,0.0000,0.0000,16.7074,16.7077,1 +296,0.0000,0.0000,16.5127,16.5131,0 +297,0.0000,0.0000,16.7182,16.7186,1 +298,0.0000,0.0000,15.6724,15.6727,0 +299,0.0000,0.0000,16.6507,16.6509,0 +300,0.0000,0.0000,16.4663,16.4664,0 +301,0.0000,0.0000,16.2636,16.2639,0 +302,0.0000,0.0000,16.6281,16.6283,0 +303,0.0000,0.0000,17.5928,17.5930,1 +304,0.0000,0.0000,16.8244,16.8247,1 +305,0.0000,0.0000,16.6075,16.6078,0 +306,0.0000,0.0000,16.5959,16.5962,0 +307,0.0000,0.0000,16.8817,16.8820,1 +308,0.0000,0.0000,16.5844,16.5849,0 +309,0.0000,0.0000,16.6455,16.6458,0 +310,0.0000,0.0000,17.0197,17.0201,1 +311,0.0000,0.0000,16.4806,16.4809,0 +312,0.0000,0.0000,16.7116,16.7123,1 +313,0.0000,0.0000,16.6508,16.6513,0 +314,0.0000,0.0000,16.5136,16.5139,0 +315,0.0000,0.0000,16.6650,16.6655,0 +316,0.0000,0.0000,16.7562,16.7567,1 +317,0.0000,0.0000,16.5909,16.5913,0 +318,0.0000,0.0000,16.9376,16.9381,1 +319,0.0000,0.0000,15.8446,15.8449,0 +320,0.0000,0.0000,16.4007,16.4010,0 +321,0.0000,0.0000,16.4989,16.4990,0 +322,0.0000,0.0000,16.7141,16.7143,1 +323,0.0000,0.0000,16.6023,16.6025,0 +324,0.0000,0.0000,16.7228,16.7230,1 +325,0.0000,0.0000,17.6430,17.6433,1 +326,0.0000,0.0000,16.6201,16.6205,0 +327,0.0000,0.0000,16.6854,16.6857,1 +328,0.0000,0.0000,16.7196,16.7200,1 +329,0.0000,0.0000,16.6179,16.6182,0 +330,0.0000,0.0000,16.6696,16.6699,1 +331,0.0000,0.0000,15.0710,15.0716,0 +332,0.0000,0.0000,16.5826,16.5830,0 +333,0.0000,0.0000,16.6044,16.6047,0 +334,0.0000,0.0000,15.9123,15.9127,0 +335,0.0000,0.0000,16.5484,16.5486,0 +336,0.0000,0.0000,16.6362,16.6364,0 +337,0.0000,0.0000,16.6152,16.6154,0 +338,0.0000,0.0000,16.7401,16.7403,1 +339,0.0000,0.0000,16.7957,16.7959,1 +340,0.0000,0.0000,16.6528,16.6530,0 +341,0.0000,0.0000,16.6004,16.6006,0 +342,0.0000,0.0000,16.6174,16.6176,0 +343,0.0000,0.0000,17.4860,17.4862,1 +344,0.0000,0.0000,16.7429,16.7433,1 +345,0.0000,0.0000,16.7406,16.7411,1 +346,0.0000,0.0000,15.9417,15.9420,0 +347,0.0000,0.0000,16.3986,16.3987,0 +348,0.0000,0.0000,16.5827,16.5829,0 +349,0.0000,0.0000,16.6496,16.6499,0 +350,0.0000,0.0000,16.7153,16.7155,1 +351,0.0000,0.0000,16.6407,16.6409,0 +352,0.0000,0.0000,16.5750,16.5753,0 +353,0.0000,0.0000,16.8219,16.8220,1 +354,0.0000,0.0000,16.7759,16.7760,1 +355,0.0000,0.0000,16.5205,16.5206,0 +356,0.0000,0.0000,17.6410,17.6413,1 +357,0.0000,0.0000,16.7197,16.7201,1 +358,0.0000,0.0000,16.5983,16.5988,0 +359,0.0000,0.0000,16.6236,16.6241,0 +360,0.0000,0.0000,16.8766,16.8770,1 +361,0.0000,0.0000,13.6890,13.6894,0 +362,0.0000,0.0000,16.6647,16.6648,0 +363,0.0000,0.0000,16.3338,16.3341,0 +364,0.0000,0.0000,16.5895,16.5896,0 +365,0.0000,0.0000,16.7534,16.7535,1 +366,0.0000,0.0000,17.9032,17.9035,1 +367,0.0000,0.0000,16.7172,16.7175,1 +368,0.0000,0.0000,15.7316,15.7319,0 +369,0.0000,0.0000,16.6747,16.6748,1 +370,0.0000,0.0000,16.5008,16.5010,0 +371,0.0000,0.0000,16.6451,16.6453,0 +372,0.0000,0.0000,16.7829,16.7830,1 +373,0.0000,0.0000,16.7066,16.7068,1 +374,0.0000,0.0000,16.7402,16.7405,1 +375,0.0000,0.0000,16.6609,16.6610,0 +376,0.0000,0.0000,16.6539,16.6541,0 +377,0.0000,0.0000,16.6184,16.6185,0 +378,0.0000,0.0000,16.6390,16.6392,0 +379,0.0000,0.0000,16.7004,16.7007,1 +380,0.0000,0.0000,16.6567,16.6569,0 +381,0.0000,0.0000,16.7601,16.7602,1 +382,0.0000,0.0000,16.6211,16.6212,0 +383,0.0000,0.0000,16.6744,16.6746,1 +384,0.0000,0.0000,16.5270,16.5274,0 +385,0.0000,0.0000,16.6513,16.6516,0 +386,0.0000,0.0000,17.6979,17.6981,1 +387,0.0000,0.0000,16.7489,16.7492,1 +388,0.0000,0.0000,16.6525,16.6528,0 +389,0.0000,0.0000,16.6989,16.6993,1 +390,0.0000,0.0000,15.7437,15.7440,0 +391,0.0000,0.0000,15.8293,15.8295,0 +392,0.0000,0.0000,16.6271,16.6272,0 +393,0.0000,0.0000,16.6639,16.6640,0 +394,0.0000,0.0000,16.8438,16.8439,1 +395,0.0000,0.0000,16.5704,16.5706,0 +396,0.0000,0.0000,16.7236,16.7237,1 +397,0.0000,0.0000,16.5550,16.5551,0 +398,0.0000,0.0000,16.6676,16.6679,1 +399,0.0000,0.0000,17.6972,17.6975,1 +400,0.0000,0.0000,16.6023,16.6026,0 +401,0.0000,0.0000,16.7054,16.7058,1 +402,0.0000,0.0000,16.0651,16.0654,0 +403,0.0000,0.0000,16.5309,16.5311,0 +404,0.0000,0.0000,16.6399,16.6402,0 +405,0.0000,0.0000,16.6864,16.6866,1 +406,0.0000,0.0000,16.6632,16.6635,0 +407,0.0000,0.0000,16.6058,16.6060,0 +408,0.0000,0.0000,16.7334,16.7336,1 +409,0.0000,0.0000,16.6526,16.6529,0 +410,0.0000,0.0000,16.6899,16.6901,1 +411,0.0000,0.0000,17.4263,17.4266,1 +412,0.0000,0.0000,16.6621,16.6626,0 +413,0.0000,0.0000,16.6401,16.6404,0 +414,0.0000,0.0000,16.8201,16.8206,1 +415,0.0000,0.0000,16.4950,16.4954,0 +416,0.0000,0.0000,16.7561,16.7565,1 +417,0.0000,0.0000,16.8501,16.8505,1 +418,0.0000,0.0000,15.4975,15.4978,0 +419,0.0000,0.0000,16.6685,16.6686,1 +420,0.0000,0.0000,16.5867,16.5868,0 +421,0.0000,0.0000,15.9839,15.9842,0 +422,0.0000,0.0000,17.4097,17.4099,1 +423,0.0000,0.0000,16.6672,16.6675,1 +424,0.0000,0.0000,16.6795,16.6800,1 +425,0.0000,0.0000,16.6789,16.6792,1 +426,0.0000,0.0000,16.6874,16.6877,1 +427,0.0000,0.0000,16.6517,16.6520,0 +428,0.0000,0.0000,16.6565,16.6568,0 +429,0.0000,0.0000,16.6515,16.6518,0 +430,0.0000,0.0000,16.8498,16.8502,1 +431,0.0000,0.0000,16.0002,16.0004,0 +432,0.0000,0.0000,16.5820,16.5822,0 +433,0.0000,0.0000,16.6276,16.6278,0 +434,0.0000,0.0000,16.6647,16.6649,0 +435,0.0000,0.0000,17.5395,17.5398,1 +436,0.0000,0.0000,16.6847,16.6852,1 +437,0.0000,0.0000,16.7888,16.7891,1 +438,0.0000,0.0000,16.6913,16.6918,1 +439,0.0000,0.0000,16.6515,16.6519,0 +440,0.0000,0.0000,16.5525,16.5529,0 +441,0.0000,0.0000,16.6119,16.6122,0 +442,0.0000,0.0000,16.6984,16.6989,1 +443,0.0000,0.0000,16.6667,16.6671,1 +444,0.0000,0.0000,16.7356,16.7359,1 +445,0.0000,0.0000,15.8998,15.9002,0 +446,0.0000,0.0000,16.6899,16.6901,1 +447,0.0000,0.0000,16.3206,16.3209,0 +448,0.0000,0.0000,16.5781,16.5783,0 +449,0.0000,0.0000,17.7376,17.7378,1 +450,0.0000,0.0000,16.6575,16.6579,0 +451,0.0000,0.0000,15.1553,15.1558,0 +452,0.0000,0.0000,16.6650,16.6655,0 +453,0.0000,0.0000,15.7884,15.7888,0 +454,0.0000,0.0000,16.5898,16.5900,0 +455,0.0000,0.0000,16.3306,16.3307,0 +456,0.0000,0.0000,17.8439,17.8441,1 +457,0.0000,0.0000,16.5831,16.5835,0 +458,0.0000,0.0000,16.7777,16.7780,1 +459,0.0000,0.0000,16.6280,16.6284,0 +460,0.0000,0.0000,15.7956,15.7959,0 +461,0.0000,0.0000,16.5573,16.5575,0 +462,0.0000,0.0000,16.5830,16.5832,0 +463,0.0000,0.0000,16.6662,16.6664,0 +464,0.0000,0.0000,16.9908,16.9910,1 +465,0.0000,0.0000,16.8815,16.8817,1 +466,0.0000,0.0000,16.5629,16.5632,0 +467,0.0000,0.0000,16.3650,16.3653,0 +468,0.0000,0.0000,16.5746,16.5747,0 +469,0.0000,0.0000,16.6670,16.6671,1 +470,0.0000,0.0000,16.6645,16.6646,0 +471,0.0000,0.0000,17.7091,17.7093,1 +472,0.0000,0.0000,16.7073,16.7078,1 +473,0.0000,0.0000,16.6923,16.6927,1 +474,0.0000,0.0000,16.5666,16.5670,0 +475,0.0000,0.0000,16.8327,16.8331,1 +476,0.0000,0.0000,16.5174,16.5178,0 +477,0.0000,0.0000,16.7176,16.7179,1 +478,0.0000,0.0000,16.5937,16.5940,0 +479,0.0000,0.0000,17.0399,17.0403,1 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_console.txt new file mode 100644 index 0000000..4d40365 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_console.txt @@ -0,0 +1,18 @@ +iBridge Primary synthetic encoder +resolution=4096x2304 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=12.332 +avg_encode_latency_ms=27.231 +p95_encode_latency_ms=48.752 +max_encode_latency_ms=83.662 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15568675 +send_target=none +csv=benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_stats.csv new file mode 100644 index 0000000..411542f --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304.primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,13.9440,83.6618,0.0000,115336,0 +1,13.6553,32.5544,0.0000,121536,0 +2,12.4351,33.5730,0.0000,153106,0 +3,12.5768,34.5710,0.0000,159388,0 +4,11.2054,36.9319,0.0000,170173,0 +5,10.8571,39.3761,0.0000,180211,0 +6,11.3178,41.7314,0.0000,221755,0 +7,11.2062,44.5087,0.0000,272896,0 +8,11.0215,46.2871,0.0000,303762,0 +9,11.1760,48.6141,0.0000,315085,0 +10,11.1889,51.0691,0.0000,319456,0 +11,11.8377,52.5857,0.0000,250346,0 +12,11.6966,48.6305,0.0000,263855,0 +13,11.3517,46.0155,0.0000,273818,0 +14,11.1654,42.8975,0.0000,282947,0 +15,11.2704,39.5730,0.0000,280874,0 +16,11.2991,36.4948,0.0000,249180,0 +17,11.2867,33.3761,0.0000,182050,0 +18,11.9418,29.4920,0.0000,244172,0 +19,12.0750,26.3980,0.0000,373779,0 +20,11.9580,23.3431,0.0000,409824,0 +21,11.8399,20.2108,0.0000,314642,0 +22,11.9490,18.6471,0.0000,331268,0 +23,11.7952,18.8385,0.0000,267757,0 +24,11.8901,18.9330,0.0000,252668,0 +25,12.1827,19.1863,0.0000,277138,0 +26,18.4895,19.6410,0.0000,281198,0 +27,16.4521,19.4355,0.0000,286474,0 +28,22.3937,20.2171,0.0000,288581,0 +29,18.0987,19.4291,0.0000,295032,0 +30,16.8618,20.1953,0.0000,297337,0 +31,12.2220,21.3714,0.0000,302292,0 +32,11.0472,23.8396,0.0000,196185,0 +33,10.9464,26.3385,0.0000,194298,0 +34,11.3341,22.6698,0.0000,247164,0 +35,11.6941,19.1820,0.0000,302626,0 +36,11.8430,18.8803,0.0000,347248,0 +37,11.8765,18.9153,0.0000,318939,0 +38,11.7670,18.4774,0.0000,257781,0 +39,11.5823,18.6298,0.0000,275801,0 +40,12.0585,19.0666,0.0000,196080,0 +41,11.7594,19.0523,0.0000,296982,0 +42,11.8202,19.5071,0.0000,282900,0 +43,11.9949,18.8054,0.0000,281344,0 +44,11.9163,18.7896,0.0000,219288,0 +45,11.6528,18.9579,0.0000,235499,0 +46,11.8852,18.9926,0.0000,311179,0 +47,11.9217,18.8746,0.0000,228690,0 +48,11.9243,19.2491,0.0000,205705,0 +49,12.0071,18.9234,0.0000,200644,0 +50,11.8135,18.8898,0.0000,196170,0 +51,11.8627,18.9931,0.0000,323569,0 +52,11.8596,19.0227,0.0000,361767,0 +53,11.8499,18.8597,0.0000,261735,0 +54,11.7885,18.8626,0.0000,225325,0 +55,11.7081,18.8609,0.0000,230781,0 +56,11.7824,18.8415,0.0000,203918,0 +57,11.7888,18.8794,0.0000,306804,0 +58,11.9355,18.9690,0.0000,214289,0 +59,11.8816,18.7659,0.0000,308028,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.console.txt new file mode 100644 index 0000000..b3d3684 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.console.txt @@ -0,0 +1,16 @@ +iBridge Plan A synthetic renderer +source_resolution=4096x2304 +output_resolution=5120x2880 +target_fps=60 +actual_fps=59.777 +frames=479 +budget_ms=16.667 +p95_total_ms=17.473 +max_total_ms=38.184 +missed_frames=223 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +scale_mode=linear +hud=on diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.receiver_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.receiver_stats.csv new file mode 100644 index 0000000..9857283 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4096x2304_linear.receiver_stats.csv @@ -0,0 +1,480 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,12.9234,19.8588,5.4018,38.1842,1 +1,0.0000,0.0000,11.7493,11.7494,0 +2,0.0000,0.0000,16.5743,16.5744,0 +3,0.0000,0.0000,15.0827,15.0828,0 +4,0.0000,0.0000,16.5795,16.5797,0 +5,0.0000,0.0000,18.2082,18.2084,1 +6,0.0000,0.0000,16.7274,16.7277,1 +7,0.0000,0.0000,16.5021,16.5026,0 +8,0.0000,0.0000,16.5266,16.5270,0 +9,0.0000,0.0000,16.8565,16.8570,1 +10,0.0000,0.0000,16.4951,16.4954,0 +11,0.0000,0.0000,15.9453,15.9458,0 +12,0.0000,0.0000,16.7375,16.7380,1 +13,0.0000,0.0000,16.7378,16.7382,1 +14,0.0000,0.0000,16.4976,16.4980,0 +15,0.0000,0.0000,16.6356,16.6361,0 +16,0.0000,0.0000,16.5417,16.5420,0 +17,0.0000,0.0000,16.7373,16.7377,1 +18,0.0000,0.0000,16.6596,16.6601,0 +19,0.0000,0.0000,16.9816,16.9820,1 +20,0.0000,0.0000,16.4096,16.4099,0 +21,0.0000,0.0000,16.7307,16.7311,1 +22,0.0000,0.0000,16.5802,16.5807,0 +23,0.0000,0.0000,16.7884,16.7887,1 +24,0.0000,0.0000,16.4017,16.4021,0 +25,0.0000,0.0000,16.8375,16.8382,1 +26,0.0000,0.0000,16.6983,16.6987,1 +27,0.0000,0.0000,16.7195,16.7200,1 +28,0.0000,0.0000,16.7036,16.7040,1 +29,0.0000,0.0000,16.5514,16.5518,0 +30,0.0000,0.0000,16.5973,16.5977,0 +31,0.0000,0.0000,15.0996,15.1001,0 +32,0.0000,0.0000,16.6101,16.6106,0 +33,0.0000,0.0000,16.6571,16.6574,0 +34,0.0000,0.0000,16.7396,16.7399,1 +35,0.0000,0.0000,16.5928,16.5931,0 +36,0.0000,0.0000,16.0751,16.0754,0 +37,0.0000,0.0000,16.1166,16.1169,0 +38,0.0000,0.0000,16.7431,16.7433,1 +39,0.0000,0.0000,16.5912,16.5915,0 +40,0.0000,0.0000,16.7157,16.7159,1 +41,0.0000,0.0000,16.8869,16.8871,1 +42,0.0000,0.0000,16.4017,16.4019,0 +43,0.0000,0.0000,17.9864,17.9866,1 +44,0.0000,0.0000,16.6341,16.6344,0 +45,0.0000,0.0000,16.5531,16.5536,0 +46,0.0000,0.0000,16.6429,16.6434,0 +47,0.0000,0.0000,16.6622,16.6626,0 +48,0.0000,0.0000,16.8379,16.8385,1 +49,0.0000,0.0000,16.7390,16.7394,1 +50,0.0000,0.0000,16.5596,16.5599,0 +51,0.0000,0.0000,16.5375,16.5380,0 +52,0.0000,0.0000,16.7705,16.7709,1 +53,0.0000,0.0000,16.5394,16.5398,0 +54,0.0000,0.0000,16.6796,16.6800,1 +55,0.0000,0.0000,16.8641,16.8645,1 +56,0.0000,0.0000,16.5346,16.5349,0 +57,0.0000,0.0000,15.9101,15.9103,0 +58,0.0000,0.0000,16.4834,16.4836,0 +59,0.0000,0.0000,17.5244,17.5246,1 +60,0.0000,0.0000,16.6011,16.6015,0 +61,0.0000,0.0000,15.2576,15.2581,0 +62,0.0000,0.0000,16.5507,16.5510,0 +63,0.0000,0.0000,15.9058,15.9061,0 +64,0.0000,0.0000,16.1664,16.1666,0 +65,0.0000,0.0000,16.6413,16.6414,0 +66,0.0000,0.0000,17.5992,17.5994,1 +67,0.0000,0.0000,16.7100,16.7104,1 +68,0.0000,0.0000,16.7730,16.7735,1 +69,0.0000,0.0000,16.5566,16.5569,0 +70,0.0000,0.0000,16.7212,16.7216,1 +71,0.0000,0.0000,16.5727,16.5730,0 +72,0.0000,0.0000,17.0050,17.0054,1 +73,0.0000,0.0000,16.5664,16.5669,0 +74,0.0000,0.0000,16.6817,16.6822,1 +75,0.0000,0.0000,16.8272,16.8277,1 +76,0.0000,0.0000,16.6093,16.6097,0 +77,0.0000,0.0000,15.9668,15.9671,0 +78,0.0000,0.0000,16.7170,16.7172,1 +79,0.0000,0.0000,16.5184,16.5187,0 +80,0.0000,0.0000,16.6674,16.6677,1 +81,0.0000,0.0000,16.5817,16.5822,0 +82,0.0000,0.0000,16.6958,16.6961,1 +83,0.0000,0.0000,16.8228,16.8231,1 +84,0.0000,0.0000,16.6860,16.6862,1 +85,0.0000,0.0000,16.5142,16.5145,0 +86,0.0000,0.0000,17.4695,17.4698,1 +87,0.0000,0.0000,16.6266,16.6270,0 +88,0.0000,0.0000,16.6051,16.6055,0 +89,0.0000,0.0000,16.8352,16.8356,1 +90,0.0000,0.0000,16.7213,16.7217,1 +91,0.0000,0.0000,14.8343,14.8348,0 +92,0.0000,0.0000,16.5411,16.5415,0 +93,0.0000,0.0000,16.6341,16.6345,0 +94,0.0000,0.0000,16.7097,16.7101,1 +95,0.0000,0.0000,16.7133,16.7138,1 +96,0.0000,0.0000,16.8221,16.8225,1 +97,0.0000,0.0000,16.6344,16.6348,0 +98,0.0000,0.0000,16.7159,16.7164,1 +99,0.0000,0.0000,15.6722,15.6725,0 +100,0.0000,0.0000,16.4536,16.4538,0 +101,0.0000,0.0000,16.6269,16.6271,0 +102,0.0000,0.0000,17.7421,17.7423,1 +103,0.0000,0.0000,16.8501,16.8504,1 +104,0.0000,0.0000,16.6405,16.6409,0 +105,0.0000,0.0000,16.6802,16.6806,1 +106,0.0000,0.0000,16.4533,16.4537,0 +107,0.0000,0.0000,16.8841,16.8846,1 +108,0.0000,0.0000,15.6100,15.6104,0 +109,0.0000,0.0000,17.7263,17.7265,1 +110,0.0000,0.0000,16.5678,16.5683,0 +111,0.0000,0.0000,16.6988,16.6993,1 +112,0.0000,0.0000,16.5295,16.5299,0 +113,0.0000,0.0000,16.5972,16.5976,0 +114,0.0000,0.0000,16.8513,16.8516,1 +115,0.0000,0.0000,16.5870,16.5874,0 +116,0.0000,0.0000,16.7299,16.7302,1 +117,0.0000,0.0000,16.6419,16.6424,0 +118,0.0000,0.0000,16.8590,16.8594,1 +119,0.0000,0.0000,16.5046,16.5050,0 +120,0.0000,0.0000,16.5365,16.5370,0 +121,0.0000,0.0000,15.0309,15.0313,0 +122,0.0000,0.0000,16.6442,16.6446,0 +123,0.0000,0.0000,16.7631,16.7634,1 +124,0.0000,0.0000,16.5061,16.5066,0 +125,0.0000,0.0000,16.8293,16.8297,1 +126,0.0000,0.0000,16.8564,16.8567,1 +127,0.0000,0.0000,15.6899,15.6902,0 +128,0.0000,0.0000,16.6902,16.6904,1 +129,0.0000,0.0000,16.4163,16.4165,0 +130,0.0000,0.0000,16.6627,16.6629,0 +131,0.0000,0.0000,16.6444,16.6445,0 +132,0.0000,0.0000,16.7085,16.7087,1 +133,0.0000,0.0000,16.3576,16.3576,0 +134,0.0000,0.0000,16.7317,16.7318,1 +135,0.0000,0.0000,17.3187,17.3189,1 +136,0.0000,0.0000,16.5752,16.5755,0 +137,0.0000,0.0000,16.7457,16.7460,1 +138,0.0000,0.0000,16.6886,16.6888,1 +139,0.0000,0.0000,16.6769,16.6771,1 +140,0.0000,0.0000,16.8377,16.8380,1 +141,0.0000,0.0000,16.4624,16.4627,0 +142,0.0000,0.0000,17.2444,17.2447,1 +143,0.0000,0.0000,16.6983,16.6987,1 +144,0.0000,0.0000,16.6514,16.6518,0 +145,0.0000,0.0000,16.6177,16.6181,0 +146,0.0000,0.0000,16.8085,16.8089,1 +147,0.0000,0.0000,16.6906,16.6909,1 +148,0.0000,0.0000,16.6083,16.6088,0 +149,0.0000,0.0000,16.5487,16.5491,0 +150,0.0000,0.0000,16.8283,16.8288,1 +151,0.0000,0.0000,14.8766,14.8772,0 +152,0.0000,0.0000,16.6619,16.6623,0 +153,0.0000,0.0000,16.7867,16.7871,1 +154,0.0000,0.0000,15.6164,15.6167,0 +155,0.0000,0.0000,16.6364,16.6367,0 +156,0.0000,0.0000,17.6620,17.6623,1 +157,0.0000,0.0000,16.5847,16.5851,0 +158,0.0000,0.0000,16.7446,16.7450,1 +159,0.0000,0.0000,16.5571,16.5575,0 +160,0.0000,0.0000,16.8686,16.8690,1 +161,0.0000,0.0000,16.3593,16.3596,0 +162,0.0000,0.0000,16.1154,16.1157,0 +163,0.0000,0.0000,17.3908,17.3911,1 +164,0.0000,0.0000,16.5609,16.5614,0 +165,0.0000,0.0000,16.7190,16.7195,1 +166,0.0000,0.0000,16.7118,16.7121,1 +167,0.0000,0.0000,16.0570,16.0575,0 +168,0.0000,0.0000,16.7007,16.7010,1 +169,0.0000,0.0000,16.6924,16.6927,1 +170,0.0000,0.0000,16.4929,16.4931,0 +171,0.0000,0.0000,16.8227,16.8229,1 +172,0.0000,0.0000,17.3667,17.3671,1 +173,0.0000,0.0000,16.5496,16.5501,0 +174,0.0000,0.0000,16.7181,16.7185,1 +175,0.0000,0.0000,16.7499,16.7504,1 +176,0.0000,0.0000,15.6954,15.6957,0 +177,0.0000,0.0000,16.5462,16.5464,0 +178,0.0000,0.0000,16.6943,16.6944,1 +179,0.0000,0.0000,16.6875,16.6877,1 +180,0.0000,0.0000,17.4910,17.4913,1 +181,0.0000,0.0000,14.9923,14.9929,0 +182,0.0000,0.0000,16.8348,16.8352,1 +183,0.0000,0.0000,16.6639,16.6643,0 +184,0.0000,0.0000,16.5879,16.5882,0 +185,0.0000,0.0000,16.5922,16.5926,0 +186,0.0000,0.0000,16.7096,16.7101,1 +187,0.0000,0.0000,16.5912,16.5917,0 +188,0.0000,0.0000,16.7242,16.7248,1 +189,0.0000,0.0000,15.9505,15.9507,0 +190,0.0000,0.0000,16.2563,16.2565,0 +191,0.0000,0.0000,16.8021,16.8021,1 +192,0.0000,0.0000,16.5327,16.5328,0 +193,0.0000,0.0000,16.7046,16.7048,1 +194,0.0000,0.0000,17.7319,17.7322,1 +195,0.0000,0.0000,16.9060,16.9065,1 +196,0.0000,0.0000,16.4610,16.4613,0 +197,0.0000,0.0000,16.7292,16.7296,1 +198,0.0000,0.0000,15.8743,15.8745,0 +199,0.0000,0.0000,16.7155,16.7157,1 +200,0.0000,0.0000,16.5259,16.5261,0 +201,0.0000,0.0000,17.4754,17.4757,1 +202,0.0000,0.0000,16.6570,16.6574,0 +203,0.0000,0.0000,16.7096,16.7101,1 +204,0.0000,0.0000,16.5867,16.5871,0 +205,0.0000,0.0000,16.7706,16.7710,1 +206,0.0000,0.0000,16.6544,16.6548,0 +207,0.0000,0.0000,16.6159,16.6163,0 +208,0.0000,0.0000,16.7605,16.7609,1 +209,0.0000,0.0000,16.7492,16.7496,1 +210,0.0000,0.0000,16.6444,16.6448,0 +211,0.0000,0.0000,15.0022,15.0027,0 +212,0.0000,0.0000,15.7234,15.7236,0 +213,0.0000,0.0000,16.6114,16.6117,0 +214,0.0000,0.0000,17.3854,17.3857,1 +215,0.0000,0.0000,16.8056,16.8061,1 +216,0.0000,0.0000,16.7851,16.7854,1 +217,0.0000,0.0000,16.6912,16.6916,1 +218,0.0000,0.0000,16.5107,16.5111,0 +219,0.0000,0.0000,16.6462,16.6466,0 +220,0.0000,0.0000,16.6413,16.6416,0 +221,0.0000,0.0000,16.6128,16.6134,0 +222,0.0000,0.0000,16.7369,16.7372,1 +223,0.0000,0.0000,17.0695,17.0699,1 +224,0.0000,0.0000,16.2230,16.2234,0 +225,0.0000,0.0000,15.9721,15.9722,0 +226,0.0000,0.0000,16.5207,16.5209,0 +227,0.0000,0.0000,16.7052,16.7054,1 +228,0.0000,0.0000,17.6171,17.6173,1 +229,0.0000,0.0000,16.6730,16.6737,1 +230,0.0000,0.0000,16.7557,16.7563,1 +231,0.0000,0.0000,16.6211,16.6214,0 +232,0.0000,0.0000,15.7549,15.7552,0 +233,0.0000,0.0000,16.6058,16.6061,0 +234,0.0000,0.0000,16.5889,16.5890,0 +235,0.0000,0.0000,17.6823,17.6827,1 +236,0.0000,0.0000,16.5855,16.5860,0 +237,0.0000,0.0000,16.7851,16.7856,1 +238,0.0000,0.0000,16.6323,16.6326,0 +239,0.0000,0.0000,16.5757,16.5761,0 +240,0.0000,0.0000,16.7086,16.7089,1 +241,0.0000,0.0000,15.0335,15.0340,0 +242,0.0000,0.0000,16.3605,16.3607,0 +243,0.0000,0.0000,16.1376,16.1379,0 +244,0.0000,0.0000,17.5886,17.5888,1 +245,0.0000,0.0000,16.5783,16.5789,0 +246,0.0000,0.0000,16.0135,16.0139,0 +247,0.0000,0.0000,16.5352,16.5354,0 +248,0.0000,0.0000,16.7343,16.7345,1 +249,0.0000,0.0000,16.6199,16.6201,0 +250,0.0000,0.0000,17.3686,17.3689,1 +251,0.0000,0.0000,16.6518,16.6523,0 +252,0.0000,0.0000,16.8849,16.8853,1 +253,0.0000,0.0000,16.4351,16.4356,0 +254,0.0000,0.0000,16.6761,16.6765,1 +255,0.0000,0.0000,16.6845,16.6849,1 +256,0.0000,0.0000,16.6927,16.6931,1 +257,0.0000,0.0000,16.7169,16.7174,1 +258,0.0000,0.0000,16.5586,16.5591,0 +259,0.0000,0.0000,15.9492,15.9497,0 +260,0.0000,0.0000,16.7002,16.7004,1 +261,0.0000,0.0000,16.5535,16.5538,0 +262,0.0000,0.0000,17.4759,17.4762,1 +263,0.0000,0.0000,16.6022,16.6025,0 +264,0.0000,0.0000,16.7259,16.7262,1 +265,0.0000,0.0000,16.8045,16.8049,1 +266,0.0000,0.0000,16.6709,16.6712,1 +267,0.0000,0.0000,16.7864,16.7868,1 +268,0.0000,0.0000,16.5198,16.5203,0 +269,0.0000,0.0000,16.5964,16.5968,0 +270,0.0000,0.0000,16.6232,16.6235,0 +271,0.0000,0.0000,15.0587,15.0593,0 +272,0.0000,0.0000,16.6499,16.6503,0 +273,0.0000,0.0000,16.5310,16.5314,0 +274,0.0000,0.0000,16.6766,16.6770,1 +275,0.0000,0.0000,16.8849,16.8854,1 +276,0.0000,0.0000,16.6043,16.6047,0 +277,0.0000,0.0000,16.5822,16.5827,0 +278,0.0000,0.0000,16.6639,16.6645,0 +279,0.0000,0.0000,16.7375,16.7379,1 +280,0.0000,0.0000,15.8440,15.8444,0 +281,0.0000,0.0000,16.5910,16.5912,0 +282,0.0000,0.0000,16.6192,16.6194,0 +283,0.0000,0.0000,16.7135,16.7138,1 +284,0.0000,0.0000,17.4779,17.4783,1 +285,0.0000,0.0000,16.6823,16.6828,1 +286,0.0000,0.0000,16.9645,16.9650,1 +287,0.0000,0.0000,16.5150,16.5153,0 +288,0.0000,0.0000,16.6611,16.6615,0 +289,0.0000,0.0000,16.6896,16.6900,1 +290,0.0000,0.0000,16.7645,16.7649,1 +291,0.0000,0.0000,16.3767,16.3771,0 +292,0.0000,0.0000,16.8446,16.8450,1 +293,0.0000,0.0000,16.5990,16.5994,0 +294,0.0000,0.0000,16.7296,16.7301,1 +295,0.0000,0.0000,15.7166,15.7170,0 +296,0.0000,0.0000,16.7685,16.7686,1 +297,0.0000,0.0000,16.1684,16.1686,0 +298,0.0000,0.0000,16.5996,16.5998,0 +299,0.0000,0.0000,16.6850,16.6851,1 +300,0.0000,0.0000,17.4706,17.4708,1 +301,0.0000,0.0000,15.5880,15.5884,0 +302,0.0000,0.0000,16.5512,16.5515,0 +303,0.0000,0.0000,16.5685,16.5689,0 +304,0.0000,0.0000,16.7171,16.7175,1 +305,0.0000,0.0000,16.8251,16.8254,1 +306,0.0000,0.0000,16.9972,16.9977,1 +307,0.0000,0.0000,16.8325,16.8328,1 +308,0.0000,0.0000,16.6526,16.6530,0 +309,0.0000,0.0000,15.7770,15.7774,0 +310,0.0000,0.0000,16.7680,16.7682,1 +311,0.0000,0.0000,16.6033,16.6035,0 +312,0.0000,0.0000,16.6208,16.6209,0 +313,0.0000,0.0000,16.3048,16.3050,0 +314,0.0000,0.0000,16.6878,16.6880,1 +315,0.0000,0.0000,17.9956,17.9959,1 +316,0.0000,0.0000,16.7058,16.7061,1 +317,0.0000,0.0000,16.5149,16.5153,0 +318,0.0000,0.0000,16.6093,16.6098,0 +319,0.0000,0.0000,16.6277,16.6281,0 +320,0.0000,0.0000,16.6699,16.6702,1 +321,0.0000,0.0000,16.7697,16.7701,1 +322,0.0000,0.0000,16.7989,16.7993,1 +323,0.0000,0.0000,16.4577,16.4580,0 +324,0.0000,0.0000,16.6238,16.6241,0 +325,0.0000,0.0000,16.6426,16.6429,0 +326,0.0000,0.0000,16.7091,16.7095,1 +327,0.0000,0.0000,16.6797,16.6802,1 +328,0.0000,0.0000,16.7607,16.7611,1 +329,0.0000,0.0000,16.6294,16.6297,0 +330,0.0000,0.0000,16.7274,16.7277,1 +331,0.0000,0.0000,14.0367,14.0370,0 +332,0.0000,0.0000,16.5637,16.5639,0 +333,0.0000,0.0000,16.6228,16.6231,0 +334,0.0000,0.0000,16.6474,16.6476,0 +335,0.0000,0.0000,16.8106,16.8109,1 +336,0.0000,0.0000,16.7617,16.7619,1 +337,0.0000,0.0000,16.6610,16.6612,0 +338,0.0000,0.0000,16.5458,16.5461,0 +339,0.0000,0.0000,16.6338,16.6341,0 +340,0.0000,0.0000,16.6768,16.6771,1 +341,0.0000,0.0000,16.6737,16.6738,1 +342,0.0000,0.0000,17.4899,17.4901,1 +343,0.0000,0.0000,16.0514,16.0517,0 +344,0.0000,0.0000,16.8780,16.8782,1 +345,0.0000,0.0000,16.0245,16.0247,0 +346,0.0000,0.0000,16.6486,16.6487,0 +347,0.0000,0.0000,16.7065,16.7066,1 +348,0.0000,0.0000,16.6235,16.6237,0 +349,0.0000,0.0000,17.6783,17.6786,1 +350,0.0000,0.0000,16.6759,16.6762,1 +351,0.0000,0.0000,16.7523,16.7526,1 +352,0.0000,0.0000,16.8457,16.8460,1 +353,0.0000,0.0000,16.6061,16.6064,0 +354,0.0000,0.0000,16.5382,16.5386,0 +355,0.0000,0.0000,16.6441,16.6444,0 +356,0.0000,0.0000,16.8774,16.8778,1 +357,0.0000,0.0000,16.6409,16.6412,0 +358,0.0000,0.0000,15.8298,15.8302,0 +359,0.0000,0.0000,16.5795,16.5796,0 +360,0.0000,0.0000,16.2519,16.2521,0 +361,0.0000,0.0000,17.4723,17.4726,1 +362,0.0000,0.0000,16.5278,16.5282,0 +363,0.0000,0.0000,16.7767,16.7772,1 +364,0.0000,0.0000,16.7548,16.7551,1 +365,0.0000,0.0000,16.4764,16.4768,0 +366,0.0000,0.0000,16.7698,16.7703,1 +367,0.0000,0.0000,16.5543,16.5547,0 +368,0.0000,0.0000,16.6921,16.6926,1 +369,0.0000,0.0000,16.6666,16.6670,1 +370,0.0000,0.0000,16.7574,16.7578,1 +371,0.0000,0.0000,16.7794,16.7797,1 +372,0.0000,0.0000,15.8983,15.8986,0 +373,0.0000,0.0000,16.5441,16.5443,0 +374,0.0000,0.0000,16.6583,16.6585,0 +375,0.0000,0.0000,16.6820,16.6823,1 +376,0.0000,0.0000,17.3471,17.3475,1 +377,0.0000,0.0000,16.7029,16.7035,1 +378,0.0000,0.0000,16.6702,16.6706,1 +379,0.0000,0.0000,16.0291,16.0295,0 +380,0.0000,0.0000,16.6398,16.6400,0 +381,0.0000,0.0000,16.6101,16.6103,0 +382,0.0000,0.0000,16.5973,16.5976,0 +383,0.0000,0.0000,16.6812,16.6815,1 +384,0.0000,0.0000,16.7124,16.7126,1 +385,0.0000,0.0000,17.5246,17.5250,1 +386,0.0000,0.0000,16.7328,16.7332,1 +387,0.0000,0.0000,16.5509,16.5513,0 +388,0.0000,0.0000,16.6248,16.6253,0 +389,0.0000,0.0000,16.5734,16.5739,0 +390,0.0000,0.0000,16.7204,16.7209,1 +391,0.0000,0.0000,15.0308,15.0314,0 +392,0.0000,0.0000,16.6148,16.6152,0 +393,0.0000,0.0000,16.8001,16.8004,1 +394,0.0000,0.0000,16.5734,16.5738,0 +395,0.0000,0.0000,16.6380,16.6384,0 +396,0.0000,0.0000,16.6164,16.6168,0 +397,0.0000,0.0000,16.6331,16.6334,0 +398,0.0000,0.0000,16.7996,16.8000,1 +399,0.0000,0.0000,16.7010,16.7014,1 +400,0.0000,0.0000,16.7331,16.7334,1 +401,0.0000,0.0000,16.5310,16.5314,0 +402,0.0000,0.0000,16.6094,16.6099,0 +403,0.0000,0.0000,16.6266,16.6271,0 +404,0.0000,0.0000,16.7126,16.7131,1 +405,0.0000,0.0000,16.6372,16.6376,0 +406,0.0000,0.0000,16.7694,16.7698,1 +407,0.0000,0.0000,16.7213,16.7217,1 +408,0.0000,0.0000,15.9694,15.9697,0 +409,0.0000,0.0000,16.5301,16.5304,0 +410,0.0000,0.0000,16.6397,16.6400,0 +411,0.0000,0.0000,16.6809,16.6811,1 +412,0.0000,0.0000,17.4818,17.4822,1 +413,0.0000,0.0000,16.7371,16.7376,1 +414,0.0000,0.0000,16.4999,16.5003,0 +415,0.0000,0.0000,16.6822,16.6826,1 +416,0.0000,0.0000,16.6338,16.6342,0 +417,0.0000,0.0000,16.7347,16.7352,1 +418,0.0000,0.0000,16.6298,16.6303,0 +419,0.0000,0.0000,16.7173,16.7177,1 +420,0.0000,0.0000,16.7884,16.7887,1 +421,0.0000,0.0000,14.9285,14.9291,0 +422,0.0000,0.0000,15.9815,15.9819,0 +423,0.0000,0.0000,16.4024,16.4027,0 +424,0.0000,0.0000,16.5733,16.5734,0 +425,0.0000,0.0000,16.6548,16.6551,0 +426,0.0000,0.0000,17.4960,17.4963,1 +427,0.0000,0.0000,16.8486,16.8491,1 +428,0.0000,0.0000,16.6755,16.6759,1 +429,0.0000,0.0000,16.5208,16.5213,0 +430,0.0000,0.0000,16.6830,16.6835,1 +431,0.0000,0.0000,16.8341,16.8344,1 +432,0.0000,0.0000,16.4894,16.4897,0 +433,0.0000,0.0000,16.6736,16.6739,1 +434,0.0000,0.0000,16.6425,16.6430,0 +435,0.0000,0.0000,16.6724,16.6730,1 +436,0.0000,0.0000,16.6767,16.6772,1 +437,0.0000,0.0000,16.0960,16.0963,0 +438,0.0000,0.0000,16.5784,16.5786,0 +439,0.0000,0.0000,17.3315,17.3319,1 +440,0.0000,0.0000,16.7900,16.7904,1 +441,0.0000,0.0000,16.5436,16.5439,0 +442,0.0000,0.0000,16.8306,16.8311,1 +443,0.0000,0.0000,16.4883,16.4886,0 +444,0.0000,0.0000,16.7569,16.7574,1 +445,0.0000,0.0000,16.6379,16.6383,0 +446,0.0000,0.0000,16.5838,16.5842,0 +447,0.0000,0.0000,16.6634,16.6638,0 +448,0.0000,0.0000,16.6294,16.6299,0 +449,0.0000,0.0000,16.2173,16.2177,0 +450,0.0000,0.0000,16.4998,16.5000,0 +451,0.0000,0.0000,15.6421,15.6424,0 +452,0.0000,0.0000,16.6541,16.6544,0 +453,0.0000,0.0000,16.6463,16.6465,0 +454,0.0000,0.0000,16.6239,16.6241,0 +455,0.0000,0.0000,16.8827,16.8830,1 +456,0.0000,0.0000,16.5148,16.5150,0 +457,0.0000,0.0000,17.5068,17.5071,1 +458,0.0000,0.0000,16.6781,16.6785,1 +459,0.0000,0.0000,16.6230,16.6234,0 +460,0.0000,0.0000,16.6998,16.7003,1 +461,0.0000,0.0000,16.6643,16.6647,0 +462,0.0000,0.0000,16.7669,16.7673,1 +463,0.0000,0.0000,16.7626,16.7631,1 +464,0.0000,0.0000,16.4808,16.4812,0 +465,0.0000,0.0000,16.6432,16.6437,0 +466,0.0000,0.0000,16.6699,16.6704,1 +467,0.0000,0.0000,15.9898,15.9901,0 +468,0.0000,0.0000,16.6457,16.6459,0 +469,0.0000,0.0000,16.7658,16.7661,1 +470,0.0000,0.0000,16.7227,16.7231,1 +471,0.0000,0.0000,16.5374,16.5377,0 +472,0.0000,0.0000,16.6616,16.6619,0 +473,0.0000,0.0000,17.5737,17.5740,1 +474,0.0000,0.0000,16.4807,16.4812,0 +475,0.0000,0.0000,16.6878,16.6882,1 +476,0.0000,0.0000,16.0510,16.0514,0 +477,0.0000,0.0000,16.6716,16.6719,1 +478,0.0000,0.0000,17.3354,17.3357,1 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_console.txt new file mode 100644 index 0000000..322f04f --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_console.txt @@ -0,0 +1,18 @@ +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=120 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +avg_generate_ms=10.963 +avg_encode_latency_ms=21.164 +p95_encode_latency_ms=38.345 +max_encode_latency_ms=74.856 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15521173 +send_target=none +csv=benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_stats.csv diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_stats.csv new file mode 100644 index 0000000..f343dda --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k.primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,send_ms,payload_bytes,status +0,12.5815,74.8562,0.0000,118218,0 +1,12.4870,29.5330,0.0000,139964,0 +2,11.1526,30.2882,0.0000,163076,0 +3,10.9801,31.5283,0.0000,171678,0 +4,9.9949,33.2631,0.0000,189546,0 +5,9.6670,35.6455,0.0000,221023,0 +6,9.5695,38.2490,0.0000,283459,0 +7,9.8098,40.1641,0.0000,336525,0 +8,9.5938,42.2302,0.0000,302927,0 +9,10.7065,34.9745,0.0000,262629,0 +10,10.5557,30.9192,0.0000,281302,0 +11,10.6493,25.8695,0.0000,286624,0 +12,10.5363,21.6167,0.0000,286361,0 +13,10.4941,16.6339,0.0000,295295,0 +14,10.5273,16.7899,0.0000,298452,0 +15,10.5042,16.8535,0.0000,303521,0 +16,10.5189,16.8305,0.0000,203194,0 +17,10.6224,16.7708,0.0000,199225,0 +18,10.6955,16.8951,0.0000,272248,0 +19,10.6778,17.0057,0.0000,310403,0 +20,10.5670,16.9693,0.0000,357732,0 +21,10.5184,16.8350,0.0000,332347,0 +22,10.5076,16.7939,0.0000,335954,0 +23,10.5958,16.5430,0.0000,274905,0 +24,10.8157,17.0702,0.0000,266837,0 +25,10.7722,17.0160,0.0000,287719,0 +26,10.1819,16.9457,0.0000,290203,0 +27,16.0781,17.3867,0.0000,297264,0 +28,17.9383,18.0651,0.0000,295833,0 +29,12.9485,17.2614,0.0000,303427,0 +30,14.0778,19.2017,0.0000,304637,0 +31,15.6884,17.9101,0.0000,312125,0 +32,12.8276,17.0110,0.0000,161459,0 +33,9.6751,16.6002,0.0000,208334,0 +34,9.9548,17.0885,0.0000,214849,0 +35,10.4413,17.0199,0.0000,324876,0 +36,10.4942,16.9851,0.0000,340602,0 +37,10.5345,16.6098,0.0000,255827,0 +38,10.4579,16.8667,0.0000,282685,0 +39,10.4113,16.8884,0.0000,287994,0 +40,10.3863,16.6279,0.0000,205925,0 +41,10.5480,16.4064,0.0000,239160,0 +42,10.5177,16.4247,0.0000,249212,0 +43,10.0541,16.4530,0.0000,246220,0 +44,10.3868,16.3248,0.0000,246686,0 +45,10.5519,16.5299,0.0000,251393,0 +46,11.2298,17.1376,0.0000,254285,0 +47,10.6283,17.0408,0.0000,259685,0 +48,9.9086,16.7708,0.0000,173276,0 +49,10.3817,21.2007,0.0000,173677,0 +50,10.4447,17.1286,0.0000,226587,0 +51,10.7790,17.2510,0.0000,268483,0 +52,10.5993,16.8371,0.0000,316572,0 +53,10.4065,16.7553,0.0000,288595,0 +54,10.5378,16.9690,0.0000,235177,0 +55,10.4592,16.8698,0.0000,249383,0 +56,10.5131,16.8039,0.0000,224626,0 +57,10.5045,16.8748,0.0000,244312,0 +58,10.4991,16.7185,0.0000,250893,0 +59,10.6088,16.7072,0.0000,255747,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.console.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.console.txt new file mode 100644 index 0000000..2da2c07 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.console.txt @@ -0,0 +1,16 @@ +iBridge Plan A synthetic renderer +source_resolution=3840x2160 +output_resolution=5120x2880 +target_fps=60 +actual_fps=59.840 +frames=479 +budget_ms=16.667 +p95_total_ms=17.418 +max_total_ms=35.613 +missed_frames=232 +vsync=on +static_frame=on +gpu_pattern=off +uncapped=off +scale_mode=linear +hud=on diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.receiver_stats.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.receiver_stats.csv new file mode 100644 index 0000000..4a99f86 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/4k_linear.receiver_stats.csv @@ -0,0 +1,480 @@ +frame_id,fill_ms,upload_ms,draw_present_ms,total_ms,missed_budget +0,11.1885,17.6973,6.7270,35.6130,1 +1,0.0000,0.0000,8.4785,8.4787,0 +2,0.0000,0.0000,16.4622,16.4623,0 +3,0.0000,0.0000,16.5646,16.5648,0 +4,0.0000,0.0000,15.5057,15.5059,0 +5,0.0000,0.0000,17.8149,17.8151,1 +6,0.0000,0.0000,16.5377,16.5381,0 +7,0.0000,0.0000,16.7770,16.7773,1 +8,0.0000,0.0000,16.5395,16.5398,0 +9,0.0000,0.0000,16.5971,16.5974,0 +10,0.0000,0.0000,16.8748,16.8751,1 +11,0.0000,0.0000,16.3318,16.3321,0 +12,0.0000,0.0000,16.5731,16.5735,0 +13,0.0000,0.0000,16.6852,16.6855,1 +14,0.0000,0.0000,16.6682,16.6685,1 +15,0.0000,0.0000,16.6679,16.6683,1 +16,0.0000,0.0000,16.5345,16.5348,0 +17,0.0000,0.0000,16.6628,16.6631,0 +18,0.0000,0.0000,16.6095,16.6099,0 +19,0.0000,0.0000,16.5886,16.5892,0 +20,0.0000,0.0000,16.9230,16.9233,1 +21,0.0000,0.0000,16.6546,16.6551,0 +22,0.0000,0.0000,16.6485,16.6489,0 +23,0.0000,0.0000,16.5138,16.5141,0 +24,0.0000,0.0000,16.7411,16.7414,1 +25,0.0000,0.0000,16.6410,16.6414,0 +26,0.0000,0.0000,16.5213,16.5216,0 +27,0.0000,0.0000,16.8889,16.8893,1 +28,0.0000,0.0000,16.7027,16.7031,1 +29,0.0000,0.0000,16.4486,16.4489,0 +30,0.0000,0.0000,16.6739,16.6743,1 +31,0.0000,0.0000,14.9611,14.9616,0 +32,0.0000,0.0000,16.7353,16.7357,1 +33,0.0000,0.0000,16.6701,16.6705,1 +34,0.0000,0.0000,16.6076,16.6080,0 +35,0.0000,0.0000,16.7208,16.7213,1 +36,0.0000,0.0000,16.0202,16.0205,0 +37,0.0000,0.0000,16.5536,16.5537,0 +38,0.0000,0.0000,17.4042,17.4045,1 +39,0.0000,0.0000,16.5947,16.5951,0 +40,0.0000,0.0000,16.6559,16.6565,0 +41,0.0000,0.0000,16.7381,16.7385,1 +42,0.0000,0.0000,16.7459,16.7462,1 +43,0.0000,0.0000,15.9947,15.9951,0 +44,0.0000,0.0000,16.4793,16.4796,0 +45,0.0000,0.0000,17.4170,17.4173,1 +46,0.0000,0.0000,16.5919,16.5923,0 +47,0.0000,0.0000,16.8230,16.8235,1 +48,0.0000,0.0000,16.7595,16.7599,1 +49,0.0000,0.0000,16.4361,16.4364,0 +50,0.0000,0.0000,16.8974,16.8979,1 +51,0.0000,0.0000,16.4446,16.4450,0 +52,0.0000,0.0000,16.8711,16.8714,1 +53,0.0000,0.0000,16.5129,16.5132,0 +54,0.0000,0.0000,16.5859,16.5864,0 +55,0.0000,0.0000,16.6696,16.6699,1 +56,0.0000,0.0000,16.0187,16.0190,0 +57,0.0000,0.0000,17.5066,17.5070,1 +58,0.0000,0.0000,16.7732,16.7735,1 +59,0.0000,0.0000,15.5450,15.5453,0 +60,0.0000,0.0000,16.6427,16.6429,0 +61,0.0000,0.0000,15.8632,15.8635,0 +62,0.0000,0.0000,16.5580,16.5583,0 +63,0.0000,0.0000,17.6626,17.6628,1 +64,0.0000,0.0000,16.8266,16.8269,1 +65,0.0000,0.0000,16.5562,16.5567,0 +66,0.0000,0.0000,16.6181,16.6184,0 +67,0.0000,0.0000,16.7353,16.7356,1 +68,0.0000,0.0000,16.6178,16.6184,0 +69,0.0000,0.0000,16.6540,16.6543,0 +70,0.0000,0.0000,16.8642,16.8646,1 +71,0.0000,0.0000,16.5632,16.5635,0 +72,0.0000,0.0000,16.5795,16.5801,0 +73,0.0000,0.0000,16.7851,16.7855,1 +74,0.0000,0.0000,16.5256,16.5260,0 +75,0.0000,0.0000,16.7381,16.7384,1 +76,0.0000,0.0000,16.6161,16.6165,0 +77,0.0000,0.0000,16.8433,16.8437,1 +78,0.0000,0.0000,16.5636,16.5640,0 +79,0.0000,0.0000,16.5895,16.5900,0 +80,0.0000,0.0000,16.7345,16.7349,1 +81,0.0000,0.0000,16.6072,16.6077,0 +82,0.0000,0.0000,16.7794,16.7798,1 +83,0.0000,0.0000,16.6148,16.6152,0 +84,0.0000,0.0000,16.7583,16.7587,1 +85,0.0000,0.0000,16.7433,16.7436,1 +86,0.0000,0.0000,16.4431,16.4436,0 +87,0.0000,0.0000,16.7529,16.7533,1 +88,0.0000,0.0000,16.6129,16.6132,0 +89,0.0000,0.0000,16.6539,16.6543,0 +90,0.0000,0.0000,16.8102,16.8106,1 +91,0.0000,0.0000,14.8275,14.8280,0 +92,0.0000,0.0000,16.8913,16.8917,1 +93,0.0000,0.0000,15.6967,15.6970,0 +94,0.0000,0.0000,16.6771,16.6774,1 +95,0.0000,0.0000,17.3972,17.3975,1 +96,0.0000,0.0000,16.6041,16.6046,0 +97,0.0000,0.0000,16.6758,16.6763,1 +98,0.0000,0.0000,16.6191,16.6195,0 +99,0.0000,0.0000,16.6084,16.6089,0 +100,0.0000,0.0000,16.7607,16.7611,1 +101,0.0000,0.0000,16.6772,16.6776,1 +102,0.0000,0.0000,16.6363,16.6368,0 +103,0.0000,0.0000,16.6109,16.6112,0 +104,0.0000,0.0000,16.6607,16.6611,0 +105,0.0000,0.0000,16.9298,16.9301,1 +106,0.0000,0.0000,15.6710,15.6713,0 +107,0.0000,0.0000,16.7192,16.7195,1 +108,0.0000,0.0000,17.3710,17.3713,1 +109,0.0000,0.0000,16.7195,16.7199,1 +110,0.0000,0.0000,16.5741,16.5747,0 +111,0.0000,0.0000,16.8456,16.8460,1 +112,0.0000,0.0000,16.7097,16.7102,1 +113,0.0000,0.0000,15.9560,15.9563,0 +114,0.0000,0.0000,16.5045,16.5048,0 +115,0.0000,0.0000,17.3635,17.3638,1 +116,0.0000,0.0000,16.6905,16.6909,1 +117,0.0000,0.0000,16.6254,16.6258,0 +118,0.0000,0.0000,16.8541,16.8544,1 +119,0.0000,0.0000,16.7471,16.7475,1 +120,0.0000,0.0000,15.5789,15.5793,0 +121,0.0000,0.0000,15.8580,15.8583,0 +122,0.0000,0.0000,16.3257,16.3259,0 +123,0.0000,0.0000,16.6666,16.6667,1 +124,0.0000,0.0000,17.9759,17.9762,1 +125,0.0000,0.0000,16.8147,16.8152,1 +126,0.0000,0.0000,16.7270,16.7274,1 +127,0.0000,0.0000,16.5863,16.5868,0 +128,0.0000,0.0000,16.6041,16.6044,0 +129,0.0000,0.0000,16.5578,16.5582,0 +130,0.0000,0.0000,16.7059,16.7063,1 +131,0.0000,0.0000,16.6086,16.6089,0 +132,0.0000,0.0000,16.7662,16.7667,1 +133,0.0000,0.0000,16.6006,16.6009,0 +134,0.0000,0.0000,16.7271,16.7276,1 +135,0.0000,0.0000,16.6061,16.6064,0 +136,0.0000,0.0000,16.7723,16.7727,1 +137,0.0000,0.0000,16.5072,16.5077,0 +138,0.0000,0.0000,16.7454,16.7458,1 +139,0.0000,0.0000,16.5859,16.5863,0 +140,0.0000,0.0000,16.7877,16.7882,1 +141,0.0000,0.0000,16.7429,16.7433,1 +142,0.0000,0.0000,16.4585,16.4589,0 +143,0.0000,0.0000,16.7383,16.7387,1 +144,0.0000,0.0000,16.7175,16.7181,1 +145,0.0000,0.0000,16.6057,16.6061,0 +146,0.0000,0.0000,16.7869,16.7873,1 +147,0.0000,0.0000,15.9248,15.9251,0 +148,0.0000,0.0000,16.6667,16.6669,1 +149,0.0000,0.0000,16.3712,16.3713,0 +150,0.0000,0.0000,16.7859,16.7860,1 +151,0.0000,0.0000,17.0115,17.0119,1 +152,0.0000,0.0000,16.4986,16.4990,0 +153,0.0000,0.0000,16.6790,16.6794,1 +154,0.0000,0.0000,16.8298,16.8302,1 +155,0.0000,0.0000,15.7917,15.7919,0 +156,0.0000,0.0000,16.1899,16.1900,0 +157,0.0000,0.0000,16.6737,16.6738,1 +158,0.0000,0.0000,17.5936,17.5938,1 +159,0.0000,0.0000,16.6841,16.6844,1 +160,0.0000,0.0000,16.7096,16.7099,1 +161,0.0000,0.0000,16.5802,16.5806,0 +162,0.0000,0.0000,16.7706,16.7710,1 +163,0.0000,0.0000,16.6148,16.6152,0 +164,0.0000,0.0000,16.7472,16.7477,1 +165,0.0000,0.0000,16.6025,16.6028,0 +166,0.0000,0.0000,16.6858,16.6862,1 +167,0.0000,0.0000,16.5773,16.5776,0 +168,0.0000,0.0000,16.7970,16.7973,1 +169,0.0000,0.0000,16.0653,16.0656,0 +170,0.0000,0.0000,16.7188,16.7190,1 +171,0.0000,0.0000,16.6513,16.6515,0 +172,0.0000,0.0000,16.6228,16.6231,0 +173,0.0000,0.0000,17.5143,17.5146,1 +174,0.0000,0.0000,16.6981,16.6985,1 +175,0.0000,0.0000,16.8002,16.8005,1 +176,0.0000,0.0000,16.6907,16.6911,1 +177,0.0000,0.0000,16.7246,16.7251,1 +178,0.0000,0.0000,16.4084,16.4090,0 +179,0.0000,0.0000,16.8116,16.8121,1 +180,0.0000,0.0000,16.5756,16.5759,0 +181,0.0000,0.0000,14.9690,14.9695,0 +182,0.0000,0.0000,16.8237,16.8240,1 +183,0.0000,0.0000,16.5163,16.5167,0 +184,0.0000,0.0000,16.5990,16.5994,0 +185,0.0000,0.0000,16.6354,16.6357,0 +186,0.0000,0.0000,16.7161,16.7165,1 +187,0.0000,0.0000,16.6545,16.6550,0 +188,0.0000,0.0000,16.6486,16.6491,0 +189,0.0000,0.0000,16.7374,16.7380,1 +190,0.0000,0.0000,16.4378,16.4381,0 +191,0.0000,0.0000,16.0321,16.0322,0 +192,0.0000,0.0000,17.4747,17.4750,1 +193,0.0000,0.0000,16.6846,16.6851,1 +194,0.0000,0.0000,16.6003,16.6007,0 +195,0.0000,0.0000,16.7378,16.7382,1 +196,0.0000,0.0000,16.9604,16.9610,1 +197,0.0000,0.0000,16.5531,16.5534,0 +198,0.0000,0.0000,16.5680,16.5684,0 +199,0.0000,0.0000,16.3058,16.3061,0 +200,0.0000,0.0000,16.1117,16.1120,0 +201,0.0000,0.0000,17.4968,17.4971,1 +202,0.0000,0.0000,16.6377,16.6382,0 +203,0.0000,0.0000,16.8559,16.8565,1 +204,0.0000,0.0000,16.6740,16.6743,1 +205,0.0000,0.0000,15.7664,15.7667,0 +206,0.0000,0.0000,16.5321,16.5322,0 +207,0.0000,0.0000,16.7544,16.7546,1 +208,0.0000,0.0000,16.5348,16.5350,0 +209,0.0000,0.0000,16.7021,16.7023,1 +210,0.0000,0.0000,16.8795,16.8798,1 +211,0.0000,0.0000,15.5259,15.5263,0 +212,0.0000,0.0000,16.5743,16.5745,0 +213,0.0000,0.0000,16.6534,16.6536,0 +214,0.0000,0.0000,17.5159,17.5161,1 +215,0.0000,0.0000,16.8183,16.8188,1 +216,0.0000,0.0000,16.5554,16.5558,0 +217,0.0000,0.0000,16.7745,16.7749,1 +218,0.0000,0.0000,16.6867,16.6870,1 +219,0.0000,0.0000,16.7967,16.7971,1 +220,0.0000,0.0000,16.5343,16.5347,0 +221,0.0000,0.0000,16.6110,16.6114,0 +222,0.0000,0.0000,16.7711,16.7716,1 +223,0.0000,0.0000,16.5488,16.5491,0 +224,0.0000,0.0000,16.8112,16.8117,1 +225,0.0000,0.0000,16.7062,16.7066,1 +226,0.0000,0.0000,16.5451,16.5454,0 +227,0.0000,0.0000,16.7160,16.7163,1 +228,0.0000,0.0000,16.4810,16.4814,0 +229,0.0000,0.0000,16.7868,16.7872,1 +230,0.0000,0.0000,16.6241,16.6245,0 +231,0.0000,0.0000,16.8212,16.8216,1 +232,0.0000,0.0000,16.5963,16.5967,0 +233,0.0000,0.0000,16.8032,16.8036,1 +234,0.0000,0.0000,15.7731,15.7735,0 +235,0.0000,0.0000,16.7513,16.7515,1 +236,0.0000,0.0000,17.2810,17.2814,1 +237,0.0000,0.0000,16.7333,16.7336,1 +238,0.0000,0.0000,16.6255,16.6260,0 +239,0.0000,0.0000,16.6182,16.6185,0 +240,0.0000,0.0000,16.5981,16.5985,0 +241,0.0000,0.0000,15.1420,15.1425,0 +242,0.0000,0.0000,16.6013,16.6017,0 +243,0.0000,0.0000,16.6346,16.6351,0 +244,0.0000,0.0000,16.6969,16.6973,1 +245,0.0000,0.0000,16.5093,16.5098,0 +246,0.0000,0.0000,17.0162,17.0165,1 +247,0.0000,0.0000,16.4452,16.4455,0 +248,0.0000,0.0000,16.6815,16.6820,1 +249,0.0000,0.0000,16.6382,16.6385,0 +250,0.0000,0.0000,16.6516,16.6520,0 +251,0.0000,0.0000,16.7084,16.7088,1 +252,0.0000,0.0000,16.8287,16.8290,1 +253,0.0000,0.0000,16.6799,16.6803,1 +254,0.0000,0.0000,16.7495,16.7499,1 +255,0.0000,0.0000,15.6300,15.6303,0 +256,0.0000,0.0000,16.6337,16.6339,0 +257,0.0000,0.0000,16.6506,16.6509,0 +258,0.0000,0.0000,16.6638,16.6641,0 +259,0.0000,0.0000,17.5674,17.5677,1 +260,0.0000,0.0000,16.6494,16.6499,0 +261,0.0000,0.0000,15.9186,15.9189,0 +262,0.0000,0.0000,16.5471,16.5473,0 +263,0.0000,0.0000,17.5264,17.5267,1 +264,0.0000,0.0000,16.6764,16.6767,1 +265,0.0000,0.0000,16.5877,16.5881,0 +266,0.0000,0.0000,16.8136,16.8140,1 +267,0.0000,0.0000,16.6622,16.6625,0 +268,0.0000,0.0000,15.8775,15.8777,0 +269,0.0000,0.0000,16.5921,16.5924,0 +270,0.0000,0.0000,17.4427,17.4429,1 +271,0.0000,0.0000,15.0461,15.0466,0 +272,0.0000,0.0000,16.5440,16.5444,0 +273,0.0000,0.0000,16.7538,16.7542,1 +274,0.0000,0.0000,16.6272,16.6275,0 +275,0.0000,0.0000,16.1395,16.1398,0 +276,0.0000,0.0000,16.5863,16.5865,0 +277,0.0000,0.0000,16.5495,16.5497,0 +278,0.0000,0.0000,16.6516,16.6519,0 +279,0.0000,0.0000,17.4224,17.4227,1 +280,0.0000,0.0000,16.7869,16.7874,1 +281,0.0000,0.0000,16.6928,16.6933,1 +282,0.0000,0.0000,15.6829,15.6832,0 +283,0.0000,0.0000,16.7185,16.7190,1 +284,0.0000,0.0000,17.5690,17.5692,1 +285,0.0000,0.0000,16.5888,16.5893,0 +286,0.0000,0.0000,16.5895,16.5898,0 +287,0.0000,0.0000,16.7141,16.7145,1 +288,0.0000,0.0000,16.7932,16.7935,1 +289,0.0000,0.0000,16.0773,16.0777,0 +290,0.0000,0.0000,16.5014,16.5017,0 +291,0.0000,0.0000,17.3719,17.3721,1 +292,0.0000,0.0000,16.6273,16.6277,0 +293,0.0000,0.0000,16.6692,16.6697,1 +294,0.0000,0.0000,16.8812,16.8815,1 +295,0.0000,0.0000,16.5355,16.5358,0 +296,0.0000,0.0000,16.6962,16.6966,1 +297,0.0000,0.0000,16.6381,16.6385,0 +298,0.0000,0.0000,16.6676,16.6681,1 +299,0.0000,0.0000,16.6439,16.6443,0 +300,0.0000,0.0000,16.5605,16.5609,0 +301,0.0000,0.0000,14.9739,14.9745,0 +302,0.0000,0.0000,16.6454,16.6459,0 +303,0.0000,0.0000,16.6547,16.6553,0 +304,0.0000,0.0000,16.7099,16.7104,1 +305,0.0000,0.0000,16.6515,16.6520,0 +306,0.0000,0.0000,16.7418,16.7423,1 +307,0.0000,0.0000,16.5611,16.5614,0 +308,0.0000,0.0000,16.8052,16.8055,1 +309,0.0000,0.0000,16.7192,16.7197,1 +310,0.0000,0.0000,16.6828,16.6832,1 +311,0.0000,0.0000,16.4712,16.4715,0 +312,0.0000,0.0000,16.7443,16.7449,1 +313,0.0000,0.0000,16.5747,16.5751,0 +314,0.0000,0.0000,16.6606,16.6611,0 +315,0.0000,0.0000,16.6556,16.6560,0 +316,0.0000,0.0000,16.8107,16.8111,1 +317,0.0000,0.0000,16.7052,16.7056,1 +318,0.0000,0.0000,16.7182,16.7186,1 +319,0.0000,0.0000,16.4336,16.4340,0 +320,0.0000,0.0000,16.6743,16.6747,1 +321,0.0000,0.0000,16.6433,16.6437,0 +322,0.0000,0.0000,16.7636,16.7640,1 +323,0.0000,0.0000,16.7009,16.7012,1 +324,0.0000,0.0000,16.5760,16.5764,0 +325,0.0000,0.0000,16.9129,16.9133,1 +326,0.0000,0.0000,16.6117,16.6121,0 +327,0.0000,0.0000,16.4878,16.4883,0 +328,0.0000,0.0000,16.7179,16.7183,1 +329,0.0000,0.0000,16.6050,16.6055,0 +330,0.0000,0.0000,16.7796,16.7801,1 +331,0.0000,0.0000,14.3590,14.3597,0 +332,0.0000,0.0000,16.4755,16.4757,0 +333,0.0000,0.0000,17.4021,17.4023,1 +334,0.0000,0.0000,16.0258,16.0260,0 +335,0.0000,0.0000,16.4428,16.4430,0 +336,0.0000,0.0000,16.8193,16.8195,1 +337,0.0000,0.0000,16.6058,16.6060,0 +338,0.0000,0.0000,16.6976,16.6978,1 +339,0.0000,0.0000,16.5453,16.5456,0 +340,0.0000,0.0000,16.6927,16.6929,1 +341,0.0000,0.0000,16.6292,16.6294,0 +342,0.0000,0.0000,17.4189,17.4193,1 +343,0.0000,0.0000,16.8767,16.8771,1 +344,0.0000,0.0000,16.5348,16.5352,0 +345,0.0000,0.0000,16.6722,16.6727,1 +346,0.0000,0.0000,16.6405,16.6408,0 +347,0.0000,0.0000,16.7013,16.7016,1 +348,0.0000,0.0000,16.6668,16.6672,1 +349,0.0000,0.0000,16.7504,16.7509,1 +350,0.0000,0.0000,16.6163,16.6167,0 +351,0.0000,0.0000,16.8713,16.8717,1 +352,0.0000,0.0000,16.5428,16.5432,0 +353,0.0000,0.0000,16.7840,16.7845,1 +354,0.0000,0.0000,16.4605,16.4609,0 +355,0.0000,0.0000,16.7495,16.7499,1 +356,0.0000,0.0000,16.5699,16.5703,0 +357,0.0000,0.0000,16.7963,16.7967,1 +358,0.0000,0.0000,16.6522,16.6527,0 +359,0.0000,0.0000,16.6991,16.6994,1 +360,0.0000,0.0000,16.5939,16.5943,0 +361,0.0000,0.0000,14.5364,14.5367,0 +362,0.0000,0.0000,16.1314,16.1316,0 +363,0.0000,0.0000,17.5315,17.5318,1 +364,0.0000,0.0000,16.7138,16.7143,1 +365,0.0000,0.0000,16.1839,16.1842,0 +366,0.0000,0.0000,16.4818,16.4821,0 +367,0.0000,0.0000,16.1779,16.1780,0 +368,0.0000,0.0000,16.6647,16.6648,0 +369,0.0000,0.0000,17.7841,17.7843,1 +370,0.0000,0.0000,16.7035,16.7038,1 +371,0.0000,0.0000,16.6610,16.6616,0 +372,0.0000,0.0000,16.6510,16.6514,0 +373,0.0000,0.0000,16.6305,16.6309,0 +374,0.0000,0.0000,16.7655,16.7659,1 +375,0.0000,0.0000,16.5926,16.5930,0 +376,0.0000,0.0000,16.6731,16.6735,1 +377,0.0000,0.0000,16.6860,16.6863,1 +378,0.0000,0.0000,16.7590,16.7595,1 +379,0.0000,0.0000,16.1521,16.1523,0 +380,0.0000,0.0000,16.3438,16.3439,0 +381,0.0000,0.0000,16.7187,16.7189,1 +382,0.0000,0.0000,16.5477,16.5479,0 +383,0.0000,0.0000,17.4929,17.4932,1 +384,0.0000,0.0000,16.6366,16.6371,0 +385,0.0000,0.0000,16.7566,16.7571,1 +386,0.0000,0.0000,16.7948,16.7952,1 +387,0.0000,0.0000,16.4802,16.4806,0 +388,0.0000,0.0000,16.6903,16.6908,1 +389,0.0000,0.0000,16.6143,16.6149,0 +390,0.0000,0.0000,16.7071,16.7075,1 +391,0.0000,0.0000,15.0301,15.0307,0 +392,0.0000,0.0000,16.6671,16.6676,1 +393,0.0000,0.0000,16.6528,16.6532,0 +394,0.0000,0.0000,16.7326,16.7330,1 +395,0.0000,0.0000,16.6059,16.6063,0 +396,0.0000,0.0000,16.6936,16.6940,1 +397,0.0000,0.0000,16.7390,16.7394,1 +398,0.0000,0.0000,16.5070,16.5074,0 +399,0.0000,0.0000,16.6391,16.6394,0 +400,0.0000,0.0000,16.6721,16.6726,1 +401,0.0000,0.0000,16.8623,16.8627,1 +402,0.0000,0.0000,16.6458,16.6463,0 +403,0.0000,0.0000,15.8061,15.8064,0 +404,0.0000,0.0000,16.5709,16.5711,0 +405,0.0000,0.0000,17.4540,17.4543,1 +406,0.0000,0.0000,16.7060,16.7065,1 +407,0.0000,0.0000,16.7872,16.7876,1 +408,0.0000,0.0000,15.7826,15.7830,0 +409,0.0000,0.0000,16.7486,16.7488,1 +410,0.0000,0.0000,17.4291,17.4293,1 +411,0.0000,0.0000,16.5815,16.5820,0 +412,0.0000,0.0000,16.7226,16.7231,1 +413,0.0000,0.0000,16.7084,16.7089,1 +414,0.0000,0.0000,16.8070,16.8074,1 +415,0.0000,0.0000,15.5821,15.5824,0 +416,0.0000,0.0000,16.6057,16.6058,0 +417,0.0000,0.0000,16.4330,16.4332,0 +418,0.0000,0.0000,16.5506,16.5506,0 +419,0.0000,0.0000,17.8919,17.8921,1 +420,0.0000,0.0000,16.7200,16.7204,1 +421,0.0000,0.0000,14.9770,14.9776,0 +422,0.0000,0.0000,16.6729,16.6733,1 +423,0.0000,0.0000,16.6666,16.6670,1 +424,0.0000,0.0000,16.5631,16.5634,0 +425,0.0000,0.0000,16.7174,16.7178,1 +426,0.0000,0.0000,16.7188,16.7192,1 +427,0.0000,0.0000,16.6915,16.6920,1 +428,0.0000,0.0000,16.7070,16.7073,1 +429,0.0000,0.0000,16.9692,16.9696,1 +430,0.0000,0.0000,15.7168,15.7171,0 +431,0.0000,0.0000,16.5326,16.5329,0 +432,0.0000,0.0000,16.6311,16.6312,0 +433,0.0000,0.0000,16.7178,16.7181,1 +434,0.0000,0.0000,16.6516,16.6518,0 +435,0.0000,0.0000,17.3800,17.3803,1 +436,0.0000,0.0000,16.6378,16.6383,0 +437,0.0000,0.0000,16.6730,16.6735,1 +438,0.0000,0.0000,16.6550,16.6555,0 +439,0.0000,0.0000,16.6988,16.6993,1 +440,0.0000,0.0000,16.6877,16.6881,1 +441,0.0000,0.0000,16.6600,16.6604,0 +442,0.0000,0.0000,15.8819,15.8822,0 +443,0.0000,0.0000,16.7277,16.7278,1 +444,0.0000,0.0000,16.4792,16.4794,0 +445,0.0000,0.0000,16.7333,16.7336,1 +446,0.0000,0.0000,16.6741,16.6743,1 +447,0.0000,0.0000,16.5727,16.5730,0 +448,0.0000,0.0000,16.7632,16.7636,1 +449,0.0000,0.0000,16.8347,16.8348,1 +450,0.0000,0.0000,17.3877,17.3881,1 +451,0.0000,0.0000,15.0678,15.0683,0 +452,0.0000,0.0000,16.5067,16.5071,0 +453,0.0000,0.0000,16.6271,16.6276,0 +454,0.0000,0.0000,16.7083,16.7088,1 +455,0.0000,0.0000,16.7130,16.7134,1 +456,0.0000,0.0000,16.7522,16.7525,1 +457,0.0000,0.0000,15.9896,15.9899,0 +458,0.0000,0.0000,16.5443,16.5445,0 +459,0.0000,0.0000,16.6296,16.6298,0 +460,0.0000,0.0000,16.6312,16.6315,0 +461,0.0000,0.0000,16.6390,16.6393,0 +462,0.0000,0.0000,17.4800,17.4803,1 +463,0.0000,0.0000,16.8024,16.8028,1 +464,0.0000,0.0000,15.7283,15.7286,0 +465,0.0000,0.0000,16.6233,16.6235,0 +466,0.0000,0.0000,16.3566,16.3567,0 +467,0.0000,0.0000,16.6421,16.6422,0 +468,0.0000,0.0000,17.5153,17.5155,1 +469,0.0000,0.0000,16.8238,16.8241,1 +470,0.0000,0.0000,16.9112,16.9116,1 +471,0.0000,0.0000,16.7519,16.7522,1 +472,0.0000,0.0000,16.5849,16.5852,0 +473,0.0000,0.0000,16.5592,16.5597,0 +474,0.0000,0.0000,16.8637,16.8641,1 +475,0.0000,0.0000,16.5391,16.5394,0 +476,0.0000,0.0000,16.6840,16.6845,1 +477,0.0000,0.0000,16.6871,16.6875,1 +478,0.0000,0.0000,15.6930,15.6933,0 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_comparison.md b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_comparison.md new file mode 100644 index 0000000..3ccf76f --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_comparison.md @@ -0,0 +1,79 @@ +# Plan C 60Hz Scaled Mode Comparison + +Prompt: `prompts/04_PLAN_C_60HZ_SCALED_MODES.md` + +Goal: compare 60Hz fallback modes for a 5120x2880 iMac output after Plan B 5K60 compressed mode showed encode and transport bottlenecks. + +## Receiver Scaled Render Test + +All receiver runs used: + +```powershell +ibridge-receiver.exe --synthetic --resolution --output-resolution 5120x2880 --fps 60 --duration 8 --fullscreen --static-frame --scale-mode --csv +``` + +These runs measure iMac-side D3D11 source-to-5K output scaling/present cost without network decode. + +| Mode | Source | Scale | Receiver fps | P95 total ms | Max total ms | Missed frames | +|---|---:|---|---:|---:|---:|---:| +| 1440p nearest | 2560x1440 | nearest | 59.881 | 17.476 | 25.163 | 241 | +| 1440p linear | 2560x1440 | linear | 59.994 | 17.459 | 23.271 | 230 | +| 3200x1800 linear | 3200x1800 | linear | 59.885 | 17.477 | 31.456 | 220 | +| 4K linear | 3840x2160 | linear | 59.840 | 17.418 | 35.613 | 232 | +| 4096x2304 linear | 4096x2304 | linear | 59.777 | 17.473 | 38.184 | 223 | + +Interpretation: + +- All static scaled render modes reached about 60fps on the iMac D3D11 path. +- 1440p nearest and linear are both viable at the local renderer/present layer. +- Higher source resolutions show larger max frame spikes, but the p95 values remain clustered around one vsync interval. + +## Primary HEVC 120Mbps Local Encode Test + +All Primary runs used: + +```bash +ibridge-primary --synthetic --resolution --fps 60 --duration 1 --codec hevc --bitrate-mbps 120 --csv +``` + +| Mode | Source | Avg generate ms | Avg encode latency ms | P95 encode latency ms | Payload bytes | +|---|---:|---:|---:|---:|---:| +| 1440p | 2560x1440 | 5.389 | 16.876 | 40.792 | 15,758,016 | +| 3200x1800 | 3200x1800 | 8.520 | 14.738 | 23.529 | 15,467,082 | +| 4K | 3840x2160 | 10.963 | 21.164 | 38.249 | 15,521,173 | +| 4096x2304 | 4096x2304 | 12.332 | 27.231 | 48.630 | 15,568,675 | + +Interpretation: + +- 3200x1800 had the best encode latency in this short synthetic HEVC run. +- 1440p had the lowest generation cost, but p95 encode latency was worse than 3200x1800 in this sample. +- 4K and 4096x2304 carry higher generation and encode latency pressure. + +## Subjective Text Quality + +Not scored yet. + +Reason: + +- The receiver does not yet decode and display compressed Primary frames. +- The current receiver scaled-render test uses a synthetic color pattern/static texture, not a code editor or terminal text scene. +- Screenshot capture samples are therefore pending rather than guessed. + +Required follow-up once decode/render exists: + +- VS Code or terminal text at small font sizes. +- Scroll test. +- Mouse movement test. +- Screenshot samples for nearest, linear, and sharpen/bicubic if added. + +## Current Default Recommendation + +Temporary engineering default: `3200x1800 @ 60fps, linear scale`. + +Reason: + +- It reached 59.885fps on the iMac static scaled renderer. +- It had the best measured HEVC encode latency among these short local Plan C encode runs. +- Text quality is still unverified, so this is not a user-facing default yet. + +Fallback candidate: `2560x1440 @ 60fps, nearest scale` for exact 2x integer scaling once text screenshots are available. diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_metrics.csv b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_metrics.csv new file mode 100644 index 0000000..37ff0e3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_metrics.csv @@ -0,0 +1,6 @@ +mode,source,scale,receiver_fps,receiver_p95_ms,receiver_max_ms,receiver_missed,primary_avg_generate_ms,primary_avg_encode_ms,primary_p95_encode_ms,payload_bytes +1440p_nearest,2560x1440,nearest,59.881,17.476,25.163,241,5.389,16.876,40.792,15758016 +1440p_linear,2560x1440,linear,59.994,17.459,23.271,230,5.389,16.876,40.792,15758016 +3200x1800_linear,3200x1800,linear,59.885,17.477,31.456,220,8.520,14.738,23.529,15467082 +4k_linear,3840x2160,linear,59.840,17.418,35.613,232,10.963,21.164,38.249,15521173 +4096x2304_linear,4096x2304,linear,59.777,17.473,38.184,223,12.332,27.231,48.630,15568675 diff --git a/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/suite_status.txt b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/suite_status.txt new file mode 100644 index 0000000..01f1098 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/suite_status.txt @@ -0,0 +1,5 @@ +1440p_nearest LastTaskResult=0 State=3 +1440p_linear LastTaskResult=0 State=3 +3200x1800_linear LastTaskResult=0 State=3 +4k_linear LastTaskResult=0 State=3 +4096x2304_linear LastTaskResult=0 State=3 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.csv new file mode 100644 index 0000000..cb13eb3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,33.6128,75.7548,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12902 +1,35.9560,8.2292,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +2,31.0126,8.1211,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +3,18.3657,7.6255,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +4,17.7123,7.8099,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +5,17.0188,7.5964,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +6,17.3127,7.6079,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +7,17.0655,7.7587,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +8,17.5172,7.4617,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +9,16.9804,7.2804,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +10,16.9346,7.3125,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +11,17.0329,7.3423,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +12,17.0415,8.4830,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +13,24.8425,10.3353,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +14,27.1702,9.5618,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +15,20.1013,7.6159,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +16,17.1857,7.1669,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +17,16.9157,7.1898,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +18,16.9298,7.1315,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +19,17.1172,7.4287,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +20,17.3328,7.3545,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +21,16.9079,7.3950,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +22,16.8038,7.3241,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +23,16.9961,7.3504,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +24,17.0633,7.7362,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +25,17.0547,7.7940,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +26,17.3078,7.9318,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +27,17.2926,9.2502,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +28,17.6345,8.1605,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +29,17.8815,8.6107,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +30,18.1667,8.1218,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +31,17.9297,7.3320,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +32,17.8641,7.3021,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +33,17.7603,7.4989,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +34,17.9768,7.6757,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +35,18.2645,7.5654,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +36,17.5084,7.9834,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +37,17.1420,8.5328,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +38,17.0637,7.2560,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +39,17.0225,8.0579,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +40,18.8259,8.0639,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +41,18.0573,7.6344,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +42,18.5975,7.5689,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +43,18.0123,7.4986,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +44,18.8002,7.6561,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +45,18.2433,8.3918,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +46,18.8262,8.5160,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +47,22.4564,8.1854,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +48,20.9905,7.8304,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +49,19.7995,8.7080,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +50,105.1160,20.5802,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +51,30.6378,10.0590,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +52,22.1803,9.5413,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +53,22.1634,8.3764,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +54,21.4718,8.6420,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +55,20.1320,7.3945,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +56,17.7825,9.6802,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +57,18.3417,7.8445,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +58,17.8677,8.5200,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +59,17.8158,7.5197,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.txt new file mode 100644 index 0000000..d6f70cd --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=1 +codec=h264 +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=60 +frames_encoded=60 +failed_frames=60 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=20.815 +avg_encode_latency_ms=9.321 +p95_encode_latency_ms=10.073 +max_encode_latency_ms=75.755 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=0 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/h264_5120x2880_120mbps_probe.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.csv new file mode 100644 index 0000000..b197bbc --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.6786,178.4587,0.1065,0.0000,0,0,0.0000,0,0.0000,0,1,0,71222,0 +1,9.8172,125.0560,0.0458,0.0000,0,0,0.0000,0,0.0000,0,0,0,50414,0 +2,13.0117,134.2287,0.0277,0.0000,0,0,0.0000,0,0.0000,0,0,0,55379,0 +3,46.7516,109.7023,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,51120,0 +4,24.9138,106.7440,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,50292,0 +5,6.8254,99.7146,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,49309,0 +6,5.7489,105.2513,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,48533,0 +7,5.2329,105.6529,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,49653,0 +8,5.3713,105.4635,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,40240,0 +9,5.2677,105.4724,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,47751,0 +10,4.6014,106.3024,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,48085,0 +11,5.3642,105.3247,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48072,0 +12,4.4788,106.4138,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44821,0 +13,4.4612,106.5869,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,46950,0 +14,4.9003,106.2185,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46607,0 +15,4.6151,106.5070,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44627,0 +16,5.3318,105.8313,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,37846,0 +17,5.2884,105.8536,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,45285,0 +18,4.9935,106.1082,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45274,0 +19,4.5087,106.6456,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,45042,0 +20,5.1407,105.9011,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,45271,0 +21,4.8535,106.3650,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,43132,0 +22,4.8417,106.1593,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45375,0 +23,5.1748,105.8308,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46340,0 +24,4.8491,106.2604,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,40505,0 +25,4.8697,106.2578,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44883,0 +26,5.2339,105.8155,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,45407,0 +27,4.9681,106.2223,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45004,0 +28,4.8905,106.1753,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45057,0 +29,5.1746,105.6865,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46614,0 +30,4.9437,106.3336,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,45940,0 +31,4.8683,106.0993,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,47289,0 +32,5.1095,105.8065,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,33059,0 +33,4.5719,107.2090,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,46497,0 +34,4.5754,107.0772,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,44715,0 +35,5.0239,105.7407,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,43732,0 +36,4.5489,107.5803,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,45044,0 +37,4.8531,106.0479,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,44152,0 +38,6.8903,102.6997,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,45204,0 +39,6.4979,103.5600,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45531,0 +40,8.5960,102.2258,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,38796,0 +41,7.5009,102.1375,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46116,0 +42,4.5097,106.8822,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,45075,0 +43,4.9973,106.2456,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45343,0 +44,5.0989,106.0414,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,43585,0 +45,4.8500,106.4326,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,44144,0 +46,4.8415,106.3040,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,45781,0 +47,4.9456,106.2034,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,44140,0 +48,4.8566,106.2267,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,37231,0 +49,4.8582,106.2783,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,43703,0 +50,4.9108,106.1937,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,43732,0 +51,5.0472,106.0973,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,44653,0 +52,4.8785,106.1437,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44301,0 +53,4.9071,106.2881,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,42558,0 +54,4.8946,106.2545,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44805,0 +55,4.5249,106.7699,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,45832,0 +56,4.9532,106.0633,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,40712,0 +57,4.9019,106.3558,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44440,0 +58,4.9000,106.3082,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,44434,0 +59,4.9688,106.1975,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44295,0 +60,4.8627,105.0940,0.0325,0.0000,0,0,0.0000,0,0.0000,0,1,0,83955,0 +61,4.8280,103.4335,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44156,0 +62,5.0065,103.3597,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48351,0 +63,4.8652,103.4958,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48829,0 +64,4.8566,103.5573,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,39714,0 +65,5.1290,104.5357,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,50205,0 +66,4.9047,106.4515,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48685,0 +67,4.9230,106.3450,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +68,4.9600,106.2359,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,46883,0 +69,4.8935,106.3621,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,46570,0 +70,4.8418,106.2584,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48456,0 +71,4.9783,106.2384,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46943,0 +72,4.8314,106.2888,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,42343,0 +73,4.8338,106.3542,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,46750,0 +74,4.8460,106.2320,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46685,0 +75,4.9229,106.1801,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,46317,0 +76,4.8920,106.1835,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44854,0 +77,4.9432,106.2355,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,45625,0 +78,4.8362,106.1753,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,46335,0 +79,4.7946,106.1339,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45188,0 +80,4.8924,106.2241,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,37502,0 +81,4.8966,106.2705,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44963,0 +82,4.7512,106.1663,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44769,0 +83,4.8792,106.3294,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45206,0 +84,4.9187,106.5002,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45461,0 +85,4.8230,106.4910,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,43193,0 +86,4.9309,106.4511,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44947,0 +87,4.9742,106.6144,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,45517,0 +88,4.8336,106.6837,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,41232,0 +89,4.9808,106.3958,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,45127,0 +90,5.0487,106.2536,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,44489,0 +91,4.8293,106.2972,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44913,0 +92,5.1927,106.1896,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,44095,0 +93,4.9569,106.1707,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,46010,0 +94,4.8331,106.2300,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,45650,0 +95,5.2405,105.8900,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46198,0 +96,4.9526,106.3145,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,33968,0 +97,4.8917,106.1029,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,47414,0 +98,5.0922,106.1706,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,47477,0 +99,4.9751,106.4581,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,45976,0 +100,4.9147,106.2832,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,46368,0 +101,5.4550,105.8236,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46444,0 +102,5.0182,106.3233,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,47485,0 +103,4.8280,106.5992,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,47382,0 +104,5.3188,105.9122,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,41507,0 +105,4.9761,106.3665,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47550,0 +106,4.8030,106.5836,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,47735,0 +107,5.3233,105.8655,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,47927,0 +108,5.2731,105.6980,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,45599,0 +109,5.0477,106.2809,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,47517,0 +110,5.4872,105.8125,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,48375,0 +111,4.9588,106.3717,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46564,0 +112,4.9433,106.5117,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,39748,0 +113,5.2158,106.0335,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,47830,0 +114,5.0128,106.2148,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,47011,0 +115,5.0310,106.2182,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47838,0 +116,5.3303,105.8553,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46819,0 +117,4.9375,106.2086,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46291,0 +118,4.8721,106.3083,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,46579,0 +119,5.3910,105.7237,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,47732,0 +120,4.9572,105.0577,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,81833,0 +121,4.8850,103.3272,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,45433,0 +122,5.3180,103.1177,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,50054,0 +123,4.9932,103.3090,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,51080,0 +124,4.8467,103.3700,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49848,0 +125,5.3380,104.0014,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,52189,0 +126,5.0146,106.1036,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,50838,0 +127,4.9338,105.8667,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,51699,0 +128,5.0104,106.0924,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,42077,0 +129,4.9454,106.2832,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,53191,0 +130,4.8469,106.2003,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,50081,0 +131,5.0364,106.0493,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48218,0 +132,4.8672,106.5513,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48348,0 +133,4.7663,106.3758,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48568,0 +134,5.0379,106.0600,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48790,0 +135,4.9572,106.2315,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,49419,0 +136,4.8079,106.3928,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43179,0 +137,4.9360,105.9631,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,50117,0 +138,4.9686,106.3240,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,49378,0 +139,4.8800,106.3960,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,48909,0 +140,4.8744,106.3781,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,47301,0 +141,4.8666,106.4287,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,49201,0 +142,4.8254,106.4481,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49122,0 +143,4.9521,106.1250,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47963,0 +144,4.8862,106.2654,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,40703,0 +145,4.8035,106.3556,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49041,0 +146,4.9782,106.0071,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,47076,0 +147,4.8820,106.2927,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48030,0 +148,4.8521,106.1722,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,47073,0 +149,4.9923,106.0331,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46426,0 +150,4.8474,106.3615,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48221,0 +151,4.7940,106.2994,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,49039,0 +152,4.9097,106.2380,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44782,0 +153,4.8445,106.5117,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48147,0 +154,4.8035,106.2720,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48522,0 +155,4.8346,106.2731,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47875,0 +156,4.9892,106.2369,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47509,0 +157,4.8685,106.2517,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49165,0 +158,4.8238,106.2336,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49815,0 +159,4.9184,106.4154,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,49945,0 +160,4.8662,106.1717,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,35917,0 +161,4.9523,106.2082,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,50975,0 +162,4.8160,106.3380,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,49290,0 +163,4.8408,106.2713,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,47243,0 +164,5.0267,105.9544,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,47612,0 +165,4.8109,107.4363,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,47940,0 +166,4.9135,106.6363,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,49043,0 +167,4.9012,107.1059,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,49188,0 +168,4.8374,107.2083,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43234,0 +169,11.8866,100.1423,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,48714,0 +170,25.1294,85.3843,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,49503,0 +171,12.4262,95.1192,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49021,0 +172,5.2370,106.1122,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48368,0 +173,5.3011,105.9040,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48413,0 +174,5.0415,106.1356,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,49642,0 +175,4.8528,106.1489,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47640,0 +176,5.3721,105.7531,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,40187,0 +177,5.0415,105.9870,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48773,0 +178,4.8426,106.3935,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,48210,0 +179,5.1589,106.0129,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48296,0 +180,4.8569,105.2583,0.0161,0.0000,0,0,0.0000,0,0.0000,0,1,0,84902,0 +181,4.9000,103.4461,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,46104,0 +182,5.2262,103.4643,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,50306,0 +183,4.8647,105.0973,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,51999,0 +184,4.8815,105.7248,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48593,0 +185,4.8502,106.8377,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,51557,0 +186,4.8338,108.7712,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,50638,0 +187,4.8624,108.8476,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,51796,0 +188,4.8339,108.4755,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,50717,0 +189,4.9425,109.0861,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51304,0 +190,4.8009,110.0612,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,51538,0 +191,5.2016,111.3309,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,52023,0 +192,4.8933,111.6128,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,36558,0 +193,4.8335,111.2056,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,52953,0 +194,4.9526,111.1306,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,50063,0 +195,4.8238,110.6167,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,49451,0 +196,5.1192,110.1563,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49489,0 +197,4.8276,110.6423,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,49749,0 +198,4.9270,110.8114,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,50521,0 +199,4.9187,109.9112,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49646,0 +200,4.9629,110.1799,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,44838,0 +201,4.8333,110.1207,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,49650,0 +202,4.8352,110.4357,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49621,0 +203,4.9507,110.4684,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,49504,0 +204,5.0128,111.4475,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48073,0 +205,4.8072,111.6205,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,49473,0 +206,4.9293,111.1719,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49655,0 +207,4.9085,110.7295,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,48602,0 +208,4.9404,109.8758,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,41124,0 +209,4.9744,108.9686,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48498,0 +210,4.8591,108.5174,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,47815,0 +211,4.9580,107.0451,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48241,0 +212,5.2006,106.3956,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48052,0 +213,4.9722,106.5343,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47335,0 +214,5.3368,105.5792,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49052,0 +215,4.9237,106.0784,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,49153,0 +216,4.5590,106.4580,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44776,0 +217,4.7475,106.2075,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,47720,0 +218,4.5343,106.4644,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47819,0 +219,4.4239,106.4925,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,48176,0 +220,4.9275,106.0425,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47569,0 +221,4.5018,106.5558,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,49096,0 +222,4.4639,106.4186,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49014,0 +223,4.7335,106.2645,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,50007,0 +224,4.5210,106.4584,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,36032,0 +225,4.4518,106.4141,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,50226,0 +226,4.8002,106.1588,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47966,0 +227,4.5018,106.5202,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,46173,0 +228,4.4757,106.4085,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,46442,0 +229,4.7611,106.1630,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47558,0 +230,4.4839,106.5409,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49284,0 +231,4.4988,106.3895,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47388,0 +232,4.8013,106.0685,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,42585,0 +233,4.5090,106.5242,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,48023,0 +234,4.6403,106.3205,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,47996,0 +235,4.8834,105.9871,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48112,0 +236,4.4548,106.4996,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,46540,0 +237,4.4882,106.4945,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47697,0 +238,4.8006,106.1301,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48036,0 +239,4.6189,106.3532,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46659,0 +240,4.3679,105.5215,0.0223,0.0000,0,0,0.0000,0,0.0000,0,1,0,77014,0 +241,4.8928,103.2996,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,46763,0 +242,4.5949,103.5863,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,49507,0 +243,4.4947,103.6645,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,50663,0 +244,4.8143,103.3449,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49761,0 +245,4.5033,104.7009,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49416,0 +246,4.5740,106.4764,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,49681,0 +247,4.4367,106.5274,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,50997,0 +248,5.0068,105.8452,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,44168,0 +249,4.5545,106.4501,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48442,0 +250,4.5628,106.3126,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,49117,0 +251,4.8475,105.9696,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48770,0 +252,4.5057,106.4062,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,47469,0 +253,4.5766,106.3297,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49594,0 +254,4.8383,105.9585,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,49010,0 +255,4.7175,106.2977,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49100,0 +256,4.5210,106.3924,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,38066,0 +257,4.8530,105.9736,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48348,0 +258,4.4931,106.4892,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47011,0 +259,4.6711,106.2555,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,44327,0 +260,4.8397,106.0155,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,45050,0 +261,4.5124,106.4184,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45410,0 +262,4.5094,106.5211,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,46169,0 +263,4.9804,105.9564,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,45937,0 +264,4.5539,106.8589,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,40377,0 +265,4.4473,106.7895,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,45454,0 +266,4.8210,106.4706,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,45850,0 +267,4.5725,106.6570,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,44964,0 +268,4.5150,106.7703,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,43861,0 +269,5.7157,105.1358,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,44178,0 +270,4.7989,106.2411,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,45031,0 +271,4.5823,106.4982,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,44306,0 +272,5.1343,105.8373,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,37709,0 +273,4.5948,106.4895,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,44461,0 +274,4.5142,106.5189,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,43846,0 +275,5.2192,105.8715,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44173,0 +276,4.8775,106.2385,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,43931,0 +277,4.3937,107.6745,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,43613,0 +278,5.0704,106.1716,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,44859,0 +279,4.6194,106.9201,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,45312,0 +280,4.5875,106.9309,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,40940,0 +281,5.0571,106.3853,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,43897,0 +282,4.7813,106.3758,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,44801,0 +283,4.4790,106.9241,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,44702,0 +284,7.1009,104.1874,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44745,0 +285,5.1535,106.2305,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,45138,0 +286,5.6206,105.5814,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,45681,0 +287,5.0092,106.8168,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46374,0 +288,4.9736,107.8716,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,33495,0 +289,5.1412,108.2347,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,46500,0 +290,5.0399,108.2492,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,44812,0 +291,4.8875,108.5640,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,43501,0 +292,5.0256,107.5755,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,44813,0 +293,5.2717,106.5926,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,43741,0 +294,5.0012,106.1243,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,44948,0 +295,5.2204,105.8382,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45391,0 +296,5.1652,106.0817,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,40293,0 +297,5.0970,106.0784,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,45562,0 +298,5.3915,106.7001,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,45778,0 +299,4.9000,106.4407,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,44769,0 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.txt new file mode 100644 index 0000000..47bb3e2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.312 +avg_encode_latency_ms=106.670 +p95_encode_latency_ms=110.437 +max_encode_latency_ms=178.459 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=14103635 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.csv new file mode 100644 index 0000000..7693c36 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,7.0030,103.1141,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,71222,0 +1,5.0264,55.9737,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,50414,0 +2,5.3440,60.7097,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,55379,0 +3,5.0060,65.7391,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,51120,0 +4,4.6651,70.9718,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,50292,0 +5,5.3157,44.7658,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,49309,0 +6,5.1988,44.6005,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,48533,0 +7,5.2194,44.4968,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,49653,0 +8,5.1831,44.3550,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,40240,0 +9,5.2730,44.3458,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,47751,0 +10,5.3573,37.8431,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48085,0 +11,5.4746,30.9830,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48072,0 +12,5.5413,24.2142,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,44821,0 +13,5.7726,17.2508,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,46950,0 +14,4.8380,11.8182,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,46607,0 +15,9.8280,12.4003,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,44627,0 +16,6.7637,11.9061,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,37846,0 +17,7.4986,12.1475,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45285,0 +18,6.1646,11.9052,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,45274,0 +19,8.2273,11.9757,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45042,0 +20,4.9227,11.8580,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,45271,0 +21,4.6222,11.7453,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,43132,0 +22,4.6517,12.3423,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,45375,0 +23,5.1773,11.7296,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46340,0 +24,5.2050,11.8280,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,40505,0 +25,5.5905,11.9053,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,44883,0 +26,5.4824,11.7370,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,45407,0 +27,5.3569,11.7415,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45004,0 +28,5.4385,11.9291,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,45057,0 +29,5.2461,12.0038,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46614,0 +30,5.2956,11.9688,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,45940,0 +31,5.2192,12.1614,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47289,0 +32,5.3232,11.8649,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,33059,0 +33,5.2170,12.1627,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,46497,0 +34,5.7294,12.3649,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,44715,0 +35,6.1860,12.1773,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,43732,0 +36,6.1992,12.5336,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,45044,0 +37,6.3742,12.2169,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,44152,0 +38,5.7764,12.1707,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,45204,0 +39,5.8823,12.0529,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,45531,0 +40,5.8393,12.2267,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,38796,0 +41,5.7767,12.1881,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,46116,0 +42,5.8554,12.1606,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,45075,0 +43,5.5153,12.2423,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,45343,0 +44,5.6327,12.0496,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,43585,0 +45,5.5373,12.1452,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,44144,0 +46,5.5321,12.2097,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,45781,0 +47,5.6355,12.0967,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,44140,0 +48,5.5987,12.2635,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,37231,0 +49,5.5425,11.8321,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,43703,0 +50,5.5907,12.0561,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,43732,0 +51,5.7809,12.2702,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,44653,0 +52,5.4865,11.9423,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,44301,0 +53,5.1591,12.1078,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,42558,0 +54,4.9661,12.1391,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,44805,0 +55,4.6627,11.8850,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45832,0 +56,4.6180,12.0001,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,40712,0 +57,5.0169,11.9794,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,44440,0 +58,4.4127,11.8979,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,44434,0 +59,5.0567,11.8413,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44295,0 +60,5.1739,10.9046,0.0279,0.0000,0,0,0.0000,0,0.0000,0,1,0,83955,0 +61,5.2447,11.8756,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,44156,0 +62,5.2598,12.0315,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,48351,0 +63,5.4526,11.8804,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,48829,0 +64,5.5802,11.8102,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,39714,0 +65,5.4447,11.8479,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,50205,0 +66,5.3748,11.9343,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,48685,0 +67,5.6786,12.0710,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +68,5.7158,11.7076,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46883,0 +69,5.6074,11.8707,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46570,0 +70,5.6151,11.7853,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48456,0 +71,5.7467,12.0277,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,46943,0 +72,5.5698,11.8658,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,42343,0 +73,5.4852,12.0309,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,46750,0 +74,5.7225,12.1580,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,46685,0 +75,5.6442,11.9807,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46317,0 +76,5.4161,11.9024,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,44854,0 +77,5.6611,11.8887,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,45625,0 +78,5.7000,12.1318,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,46335,0 +79,5.7635,12.0318,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,45188,0 +80,5.4525,11.7118,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,37502,0 +81,5.2781,12.0771,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,44963,0 +82,5.7073,11.9244,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,44769,0 +83,5.6634,11.6430,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45206,0 +84,5.6959,11.8122,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45461,0 +85,5.4550,11.8532,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43193,0 +86,5.6563,11.6419,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,44947,0 +87,5.5032,11.6790,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,45517,0 +88,5.4988,11.7713,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,41232,0 +89,5.3836,11.8224,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,45127,0 +90,5.8456,11.9326,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,44489,0 +91,5.5667,11.8147,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44913,0 +92,5.5893,11.6418,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,44095,0 +93,5.4670,11.7963,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,46010,0 +94,5.5722,11.7658,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,45650,0 +95,5.4577,11.6483,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46198,0 +96,5.5934,11.7771,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,33968,0 +97,5.5030,11.8107,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47414,0 +98,5.7561,11.6183,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,47477,0 +99,5.5917,11.6928,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,45976,0 +100,5.3960,11.7421,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46368,0 +101,5.4881,11.6278,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46444,0 +102,5.5105,11.6905,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,47485,0 +103,5.4268,11.6172,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47382,0 +104,5.6979,11.7053,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,41507,0 +105,5.5320,11.8364,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47550,0 +106,5.5316,11.6180,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47735,0 +107,5.5768,11.7230,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,47927,0 +108,5.5309,11.9019,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45599,0 +109,5.4990,11.6846,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47517,0 +110,5.3474,11.6931,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48375,0 +111,5.6011,11.8917,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,46564,0 +112,5.4910,11.6955,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,39748,0 +113,5.4468,11.7447,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,47830,0 +114,5.4980,11.6716,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47011,0 +115,5.4319,11.7973,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47838,0 +116,5.4158,11.6524,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46819,0 +117,5.5378,11.7052,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46291,0 +118,5.5961,11.7752,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46579,0 +119,5.5332,11.8740,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,47732,0 +120,5.5476,11.1200,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,81833,0 +121,5.4542,11.8932,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45433,0 +122,5.5515,11.7172,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,50054,0 +123,5.4683,11.8906,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,51080,0 +124,5.5134,12.0968,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49848,0 +125,5.4292,11.6213,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,52189,0 +126,5.2464,11.8945,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,50838,0 +127,5.6055,11.6062,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51699,0 +128,5.5220,11.6370,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,42077,0 +129,5.5667,11.8366,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,53191,0 +130,5.5231,11.6968,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,50081,0 +131,5.4560,11.6692,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48218,0 +132,5.6018,12.1203,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48348,0 +133,5.6142,11.9541,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48568,0 +134,5.5497,11.7084,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48790,0 +135,5.5702,11.6552,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49419,0 +136,5.4645,11.8942,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43179,0 +137,5.5494,11.6601,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,50117,0 +138,5.4768,11.8003,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,49378,0 +139,5.5223,11.8269,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48909,0 +140,5.5518,11.7275,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,47301,0 +141,5.4976,11.6540,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49201,0 +142,5.4837,11.7082,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49122,0 +143,5.5767,11.8127,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47963,0 +144,5.4929,12.0190,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,40703,0 +145,5.5463,11.8257,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49041,0 +146,5.6307,11.9906,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47076,0 +147,5.4432,11.7841,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,48030,0 +148,5.3044,11.7051,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,47073,0 +149,5.5623,11.6846,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,46426,0 +150,5.3168,11.7795,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48221,0 +151,5.4576,11.8677,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49039,0 +152,5.4368,11.8531,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,44782,0 +153,5.4507,12.1635,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48147,0 +154,5.4394,11.7373,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,48522,0 +155,5.3367,11.8525,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,47875,0 +156,5.5132,12.0224,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47509,0 +157,5.7064,12.0398,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,49165,0 +158,5.6606,12.0810,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,49815,0 +159,5.6112,11.8130,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49945,0 +160,5.5946,11.7294,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,35917,0 +161,5.4643,12.1434,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,50975,0 +162,5.6015,11.9481,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49290,0 +163,5.1210,11.6925,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,47243,0 +164,5.1544,12.0100,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,47612,0 +165,5.3390,11.9774,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,47940,0 +166,5.4628,11.8252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,49043,0 +167,5.3098,11.8619,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49188,0 +168,5.3549,11.7213,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43234,0 +169,5.4859,11.8457,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,48714,0 +170,5.4726,11.6720,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,49503,0 +171,5.4300,11.6952,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,49021,0 +172,5.4687,11.7738,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48368,0 +173,5.6370,11.8417,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48413,0 +174,5.4624,11.7861,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,49642,0 +175,5.3533,11.9223,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,47640,0 +176,5.5310,12.0987,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,40187,0 +177,5.7462,11.8129,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,48773,0 +178,5.2589,12.2119,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,48210,0 +179,5.6896,12.3745,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,48296,0 +180,5.8553,11.0617,0.0232,0.0000,0,0,0.0000,0,0.0000,0,1,0,84902,0 +181,5.8101,11.9114,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,46104,0 +182,5.8673,12.4881,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,50306,0 +183,5.3613,12.4376,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51999,0 +184,5.2650,12.4372,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48593,0 +185,5.3433,11.8835,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,51557,0 +186,5.3848,12.3823,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,50638,0 +187,5.3741,12.3973,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51796,0 +188,5.3815,12.1405,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,50717,0 +189,5.3678,12.2758,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51304,0 +190,5.5044,13.0002,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,51538,0 +191,5.5522,12.2184,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,52023,0 +192,5.4818,11.7870,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,36558,0 +193,5.4933,12.3213,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,52953,0 +194,5.5187,12.3873,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,50063,0 +195,5.5123,12.4710,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49451,0 +196,5.5038,12.4908,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49489,0 +197,5.4894,11.6210,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,49749,0 +198,5.3586,11.7363,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,50521,0 +199,5.5155,12.6652,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49646,0 +200,5.3625,13.2134,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44838,0 +201,5.5239,12.5753,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49650,0 +202,5.6316,12.4090,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49621,0 +203,5.5702,12.6517,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49504,0 +204,5.4773,12.5779,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48073,0 +205,5.5040,12.4254,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,49473,0 +206,5.4858,12.1235,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,49655,0 +207,5.4942,12.7610,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48602,0 +208,5.3760,12.5895,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,41124,0 +209,5.5310,12.6990,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48498,0 +210,5.5040,12.8581,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,47815,0 +211,5.5220,12.2415,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,48241,0 +212,5.4605,11.9929,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48052,0 +213,5.3899,12.4245,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47335,0 +214,5.5365,12.5274,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,49052,0 +215,5.4224,12.3364,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49153,0 +216,5.3677,12.4063,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,44776,0 +217,5.3557,11.5827,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47720,0 +218,5.4708,12.0773,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47819,0 +219,5.5497,12.3634,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,48176,0 +220,5.4444,12.5501,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47569,0 +221,5.5315,12.4230,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49096,0 +222,5.5636,11.6475,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49014,0 +223,5.4767,11.6353,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,50007,0 +224,5.5976,12.1442,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,36032,0 +225,5.5090,12.6326,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,50226,0 +226,5.4851,12.4609,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47966,0 +227,5.4604,12.5184,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46173,0 +228,5.4662,12.2348,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46442,0 +229,5.4866,12.6048,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,47558,0 +230,5.6787,12.2394,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49284,0 +231,5.5760,12.1957,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,47388,0 +232,5.4316,12.5603,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,42585,0 +233,5.4614,12.7034,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,48023,0 +234,5.3863,12.4888,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,47996,0 +235,5.4260,12.4024,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48112,0 +236,5.5535,12.0344,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,46540,0 +237,5.5200,12.6316,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47697,0 +238,5.5425,12.3996,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48036,0 +239,5.5314,12.3105,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,46659,0 +240,5.5166,11.7183,0.0233,0.0000,0,0,0.0000,0,0.0000,0,1,0,77014,0 +241,6.0724,12.6992,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,46763,0 +242,6.1018,12.6698,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49507,0 +243,5.8825,12.6049,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,50663,0 +244,5.8855,12.8730,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49761,0 +245,5.7488,11.9849,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,49416,0 +246,5.5548,14.8375,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,49681,0 +247,5.6476,12.2672,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,50997,0 +248,5.5696,13.0552,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44168,0 +249,5.5252,11.9357,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48442,0 +250,5.6611,11.7774,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49117,0 +251,5.5084,11.6252,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48770,0 +252,5.3745,12.8317,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47469,0 +253,5.6117,12.7559,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,49594,0 +254,5.6026,12.7722,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49010,0 +255,5.5838,12.4415,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,49100,0 +256,5.5920,12.6126,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,38066,0 +257,5.6283,12.0024,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,48348,0 +258,5.6191,11.9571,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47011,0 +259,5.6141,11.7248,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44327,0 +260,5.6070,11.7231,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45050,0 +261,5.6115,11.6397,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45410,0 +262,5.4771,11.5882,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46169,0 +263,5.4817,11.5698,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45937,0 +264,5.5386,11.7351,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,40377,0 +265,5.5539,11.8362,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45454,0 +266,5.7687,11.7049,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45850,0 +267,5.7430,11.7112,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,44964,0 +268,5.7570,11.7783,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,43861,0 +269,5.8457,11.9700,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,44178,0 +270,5.5146,11.6791,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,45031,0 +271,5.5658,11.8526,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44306,0 +272,5.3937,11.9564,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,37709,0 +273,5.5655,11.9978,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,44461,0 +274,5.4532,11.7220,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,43846,0 +275,5.4784,11.8674,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,44173,0 +276,5.5632,11.8330,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,43931,0 +277,5.6422,11.6374,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,43613,0 +278,5.4781,11.7805,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,44859,0 +279,5.2227,11.9038,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45312,0 +280,5.2786,12.6873,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,40940,0 +281,5.6064,12.7446,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,43897,0 +282,5.6061,12.0920,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,44801,0 +283,5.3050,12.7661,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,44702,0 +284,5.3113,11.9477,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44745,0 +285,5.4351,12.4486,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,45138,0 +286,5.3117,12.4676,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45681,0 +287,5.4914,12.2719,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46374,0 +288,5.5068,12.0506,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,33495,0 +289,5.7025,12.7076,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,46500,0 +290,5.6523,12.2980,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,44812,0 +291,6.0765,12.8511,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,43501,0 +292,5.6470,12.3929,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44813,0 +293,5.4218,12.3044,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,43741,0 +294,5.6293,12.5111,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,44948,0 +295,5.4767,12.6200,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45391,0 +296,5.4258,12.2943,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,40293,0 +297,5.6205,11.9841,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,45562,0 +298,5.4837,12.5769,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45778,0 +299,5.5350,12.8020,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44769,0 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.txt new file mode 100644 index 0000000..127d903 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.536 +avg_encode_latency_ms=13.783 +p95_encode_latency_ms=13.295 +max_encode_latency_ms=103.114 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=14103635 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_2560x1440_120mbps_seq.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.csv new file mode 100644 index 0000000..792fbff --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.2166,179.7750,0.0553,0.0000,0,0,0.0000,0,0.0000,0,1,0,112456,0 +1,12.2889,136.2152,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,81362,0 +2,49.5410,108.7247,0.0380,0.0000,0,0,0.0000,0,0.0000,0,0,0,88401,0 +3,35.5795,95.2082,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,81425,0 +4,13.6479,103.8070,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,80919,0 +5,11.1670,99.1622,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,79195,0 +6,8.1270,102.7703,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,77481,0 +7,8.0280,102.8870,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,78111,0 +8,10.4894,100.4045,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,64056,0 +9,7.2360,103.6778,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,77017,0 +10,7.5980,103.3410,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,76099,0 +11,7.5890,103.2242,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75491,0 +12,7.4443,103.5401,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,72583,0 +13,7.0781,103.9083,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74796,0 +14,6.8683,104.0421,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73442,0 +15,8.4898,102.5927,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71621,0 +16,7.9223,103.2065,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,60987,0 +17,8.0043,102.9190,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73276,0 +18,7.1281,104.1372,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73560,0 +19,7.5462,103.5383,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72564,0 +20,8.2782,102.5835,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,73039,0 +21,7.6912,103.5069,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,70173,0 +22,7.8660,103.2236,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72982,0 +23,7.9000,103.2355,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73717,0 +24,7.7720,103.4829,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,66300,0 +25,7.7695,103.3552,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,72970,0 +26,8.0703,103.0777,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72868,0 +27,7.6604,103.4503,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74685,0 +28,7.7353,103.0710,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72764,0 +29,8.1318,102.8074,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75090,0 +30,7.6591,103.5560,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74128,0 +31,7.8314,103.0232,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76926,0 +32,7.3490,104.5665,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,54294,0 +33,7.0016,104.0873,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,75589,0 +34,6.9787,103.9736,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,72478,0 +35,7.6323,103.1569,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70093,0 +36,7.9398,103.4009,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,71714,0 +37,16.0646,93.7785,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,71784,0 +38,14.4383,96.7672,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72516,0 +39,16.1616,95.1668,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73602,0 +40,12.6983,98.5340,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,62621,0 +41,7.4723,103.5270,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72470,0 +42,7.4920,103.9919,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73181,0 +43,7.7001,103.4015,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,72814,0 +44,8.0560,103.1300,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71123,0 +45,7.8640,103.4741,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70973,0 +46,8.1127,102.9626,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,73649,0 +47,8.1847,102.8871,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,71601,0 +48,7.9881,103.3673,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,61500,0 +49,7.8395,103.0992,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,71753,0 +50,8.0837,102.7653,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,70218,0 +51,7.8807,103.3430,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74253,0 +52,7.9116,103.1169,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71586,0 +53,8.0116,103.0983,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,69643,0 +54,7.2157,104.1745,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71945,0 +55,7.8330,103.5620,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,72280,0 +56,8.0368,103.1086,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,67984,0 +57,7.9891,103.3666,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71571,0 +58,7.8897,103.2716,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,71917,0 +59,8.0581,103.0572,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72405,0 +60,7.8365,100.4800,0.0228,0.0000,0,0,0.0000,0,0.0000,0,1,0,130558,0 +61,8.0264,100.1710,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70141,0 +62,8.1885,100.1885,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76203,0 +63,7.8457,100.5109,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,79889,0 +64,8.1329,100.1518,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,64605,0 +65,7.9546,103.4168,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,80602,0 +66,7.9255,103.3268,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,79371,0 +67,7.8788,103.0475,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75065,0 +68,7.9204,103.2235,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74894,0 +69,7.9898,103.3340,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75540,0 +70,8.0250,102.8810,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78601,0 +71,7.8270,103.3588,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75381,0 +72,8.0377,103.4038,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,67803,0 +73,7.9869,103.0263,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75836,0 +74,8.1534,103.0374,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75342,0 +75,7.8952,103.4140,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76838,0 +76,7.8286,103.2487,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72075,0 +77,7.8391,103.1038,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73900,0 +78,7.9648,103.2227,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,74764,0 +79,8.0906,102.7359,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73940,0 +80,7.9278,103.0701,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,62436,0 +81,8.1639,103.0652,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73706,0 +82,7.8689,103.1745,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72053,0 +83,7.9989,103.3218,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,74983,0 +84,7.8901,103.5620,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72197,0 +85,7.8178,103.4412,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,70711,0 +86,8.0549,103.3091,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,72682,0 +87,7.9357,103.6666,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73733,0 +88,7.8868,103.5691,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,66689,0 +89,8.2877,103.2844,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73436,0 +90,8.0477,103.3340,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,72583,0 +91,7.8434,103.3037,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72069,0 +92,8.3866,102.9752,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,70769,0 +93,7.9936,103.0416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74849,0 +94,7.8822,103.1184,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,73221,0 +95,8.0950,103.0588,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,75727,0 +96,7.9143,103.3735,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,55443,0 +97,7.8325,103.3598,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,77334,0 +98,8.3763,102.8478,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,72264,0 +99,7.8818,103.2790,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71819,0 +100,7.8799,103.3515,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,71444,0 +101,8.1761,103.0570,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,71773,0 +102,7.8009,103.3645,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,72929,0 +103,7.9768,103.4610,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,72091,0 +104,8.3235,103.0111,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,64798,0 +105,7.9387,103.4478,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72588,0 +106,7.8870,103.5136,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71923,0 +107,12.8880,98.4724,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,72001,0 +108,8.0638,103.0445,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,69215,0 +109,7.9722,103.3080,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,72283,0 +110,8.2012,103.0604,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72398,0 +111,7.9689,103.3285,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72108,0 +112,7.9766,103.2215,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,62124,0 +113,8.1895,103.0361,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72395,0 +114,7.9655,103.4117,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,72973,0 +115,7.9091,103.3205,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,72724,0 +116,8.0307,103.2182,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71015,0 +117,7.9666,103.4285,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70423,0 +118,7.8072,103.5536,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72393,0 +119,8.3776,102.8610,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73123,0 +120,7.8606,100.7225,0.0350,0.0000,0,0,0.0000,0,0.0000,0,1,0,127744,0 +121,7.8425,100.2967,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,69729,0 +122,8.3730,99.7757,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,75562,0 +123,8.0746,100.1466,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,79027,0 +124,8.4326,99.6576,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76639,0 +125,8.0357,102.9200,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,79800,0 +126,8.4750,102.6330,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,79251,0 +127,7.8526,103.1696,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,79225,0 +128,8.2637,102.9944,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,63646,0 +129,8.4332,102.7347,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,82206,0 +130,7.9593,102.9548,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,78537,0 +131,8.1416,103.1287,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76285,0 +132,7.9951,103.1944,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76700,0 +133,7.9195,103.1358,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,76634,0 +134,8.1543,102.8310,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77513,0 +135,8.3848,102.8449,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78448,0 +136,7.9223,103.0429,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,69594,0 +137,8.0343,103.1880,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,79665,0 +138,8.3020,102.8076,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77816,0 +139,7.8005,103.4257,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,77660,0 +140,8.0760,102.8168,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75550,0 +141,8.0446,103.2435,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77548,0 +142,7.8535,103.1238,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77996,0 +143,7.9047,103.2338,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,75516,0 +144,7.8303,103.3665,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,66467,0 +145,7.8568,103.4104,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76852,0 +146,8.1815,103.0445,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,73890,0 +147,7.9245,103.3434,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,75069,0 +148,7.8635,103.0940,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74796,0 +149,8.0162,103.0733,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74761,0 +150,8.0858,103.2409,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75949,0 +151,7.9432,102.8844,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76278,0 +152,8.2276,102.8407,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,70838,0 +153,8.1364,103.2020,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76410,0 +154,7.8543,103.2047,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75567,0 +155,8.0500,103.1669,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75585,0 +156,7.9723,103.3550,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74629,0 +157,7.9180,103.0457,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77285,0 +158,8.0550,103.1220,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,77511,0 +159,8.0119,103.3847,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,78689,0 +160,7.9402,102.9026,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,56443,0 +161,7.8506,103.4080,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,79451,0 +162,8.0160,103.4086,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,77211,0 +163,7.7959,103.1012,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,74594,0 +164,8.1217,104.5023,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75260,0 +165,7.9705,110.5311,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,75888,0 +166,7.8510,108.7829,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,78014,0 +167,8.1300,103.7141,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76354,0 +168,8.2279,103.9061,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,66202,0 +169,33.1117,77.1700,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,76029,0 +170,18.7855,80.7783,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,76761,0 +171,7.9890,94.5583,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76911,0 +172,7.4881,103.9273,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75309,0 +173,8.5893,102.5721,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76182,0 +174,7.8587,103.4938,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76798,0 +175,7.8228,103.3376,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75022,0 +176,8.0090,103.2541,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,64723,0 +177,8.0063,103.0607,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76635,0 +178,7.9388,103.1869,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74023,0 +179,8.2638,102.9130,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75593,0 +180,7.9242,100.5108,0.0214,0.0000,0,0,0.0000,0,0.0000,0,1,0,133311,0 +181,7.8970,100.8731,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,70639,0 +182,8.6318,101.3468,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,77855,0 +183,7.8355,102.9179,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,82442,0 +184,8.0325,102.4401,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76134,0 +185,7.9730,105.3255,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,79780,0 +186,8.0297,105.7173,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,80666,0 +187,7.9066,105.2631,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,80414,0 +188,8.0710,106.0844,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,79654,0 +189,7.8784,106.9194,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,80041,0 +190,8.0544,108.6512,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,79898,0 +191,7.9524,108.6526,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,81091,0 +192,7.9892,108.2403,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,58481,0 +193,8.0618,107.9775,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,83160,0 +194,8.0452,107.5335,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,78226,0 +195,8.1065,107.1825,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,78398,0 +196,7.9415,107.5611,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77344,0 +197,8.0351,107.7180,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,79166,0 +198,8.1885,106.6545,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,79244,0 +199,8.1872,107.1608,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,77866,0 +200,7.9311,106.9224,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,69811,0 +201,8.0060,106.9980,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,79067,0 +202,7.8890,107.2420,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,78329,0 +203,7.8797,108.5298,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76495,0 +204,8.1680,108.2867,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,75388,0 +205,7.8810,108.0973,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76929,0 +206,8.1168,107.5585,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,76936,0 +207,7.9702,107.1975,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74877,0 +208,7.9313,105.9302,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,63799,0 +209,8.1285,105.0513,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75021,0 +210,7.8895,104.4431,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73780,0 +211,9.4466,102.1727,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74873,0 +212,8.6596,102.7913,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,74287,0 +213,8.0394,102.8293,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,72742,0 +214,8.2112,102.7220,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,74805,0 +215,7.6356,103.3361,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74374,0 +216,6.9603,104.0990,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,70005,0 +217,7.2072,103.7404,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,73172,0 +218,7.2430,103.7245,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74278,0 +219,6.8696,104.1020,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,74860,0 +220,7.2931,103.7132,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73638,0 +221,7.1779,103.6646,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75746,0 +222,7.0120,103.9448,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75315,0 +223,7.2330,103.6591,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,76429,0 +224,7.3995,103.5655,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,56311,0 +225,7.0110,103.8974,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77262,0 +226,7.1267,103.8380,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,73505,0 +227,7.3765,103.5600,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73102,0 +228,6.7655,104.3092,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,73286,0 +229,7.3323,103.5500,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73616,0 +230,7.3987,103.6060,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75098,0 +231,6.8683,104.0335,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74328,0 +232,7.2666,103.6200,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,65015,0 +233,7.3724,103.4958,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,73682,0 +234,7.0901,103.9078,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75256,0 +235,7.3323,103.4990,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74323,0 +236,7.4853,103.5274,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,71467,0 +237,6.9565,104.1769,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,72721,0 +238,7.3744,103.5588,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73676,0 +239,7.2835,103.6809,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71784,0 +240,7.4095,100.8937,0.0248,0.0000,0,0,0.0000,0,0.0000,0,1,0,120500,0 +241,7.3082,100.7430,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72086,0 +242,7.3965,100.6023,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77097,0 +243,6.8418,101.3960,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,78969,0 +244,7.3022,100.7310,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,77287,0 +245,7.2401,103.6557,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76691,0 +246,6.8070,104.2321,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76973,0 +247,7.1072,103.7298,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78767,0 +248,7.3639,103.4278,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,68234,0 +249,6.8773,104.0831,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,76112,0 +250,6.8956,103.9939,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,81427,0 +251,7.5955,103.3192,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,78603,0 +252,6.9577,104.0073,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76429,0 +253,7.0820,103.8067,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,78538,0 +254,7.4244,103.4514,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,77932,0 +255,6.8119,104.1159,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,78614,0 +256,7.2320,103.5945,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,58755,0 +257,7.3977,103.4793,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,76582,0 +258,6.8742,104.1370,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,74709,0 +259,6.9550,103.9530,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,70219,0 +260,7.1881,103.7738,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,72152,0 +261,6.9534,104.0910,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,73058,0 +262,6.8973,104.0325,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74218,0 +263,7.2785,103.7302,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73014,0 +264,6.8046,104.5456,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,63629,0 +265,6.8468,104.3690,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,73853,0 +266,7.2566,104.0170,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74258,0 +267,6.8123,104.5139,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,71878,0 +268,6.9376,104.2899,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,70230,0 +269,7.8926,102.9714,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72109,0 +270,7.0608,103.9572,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,73320,0 +271,7.0371,103.9142,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,70905,0 +272,7.4148,103.8670,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,61180,0 +273,7.1281,103.8600,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71690,0 +274,7.0100,104.1911,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70571,0 +275,7.8951,103.4534,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,71979,0 +276,7.0385,104.2144,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70925,0 +277,6.9068,104.1325,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,69690,0 +278,7.7433,103.5753,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71815,0 +279,7.5290,103.8079,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73339,0 +280,6.9100,104.3326,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,66234,0 +281,7.7684,103.7337,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,71310,0 +282,7.0377,104.3978,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,71321,0 +283,7.3339,104.0888,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72654,0 +284,8.4393,102.9864,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71344,0 +285,7.4464,103.9985,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74947,0 +286,11.2267,101.0152,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,71700,0 +287,8.2969,104.8033,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74517,0 +288,7.8143,105.7714,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,54314,0 +289,7.9570,105.7402,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,74655,0 +290,8.1319,105.1475,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72060,0 +291,8.0397,104.3936,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,69446,0 +292,8.3851,103.2885,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,71547,0 +293,8.8029,102.3956,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,69713,0 +294,7.9028,103.0755,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,71973,0 +295,8.3566,103.0641,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,71632,0 +296,8.6103,102.4741,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,64299,0 +297,8.3043,103.2029,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,72427,0 +298,8.1897,103.4245,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,72829,0 +299,7.4422,103.8667,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,71840,0 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.txt new file mode 100644 index 0000000..b9ea587 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=8.329 +avg_encode_latency_ms=103.630 +p95_encode_latency_ms=107.535 +max_encode_latency_ms=179.775 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22315381 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.csv new file mode 100644 index 0000000..76b8fc7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0363,110.4412,0.0572,0.0000,0,0,0.0000,0,0.0000,0,1,0,112456,0 +1,7.9497,60.5997,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,81362,0 +2,8.2703,67.5717,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,88401,0 +3,7.5804,75.0081,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,81425,0 +4,8.2916,81.4032,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,80919,0 +5,8.1032,66.8417,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,79195,0 +6,7.9522,66.7028,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,77481,0 +7,7.8225,66.4993,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,78111,0 +8,7.7952,66.3044,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,64056,0 +9,7.8498,66.3053,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77017,0 +10,8.1549,65.9301,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76099,0 +11,8.2704,65.6320,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75491,0 +12,8.1595,65.5765,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,72583,0 +13,8.2532,65.4401,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,74796,0 +14,7.2741,66.2707,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73442,0 +15,11.7770,61.6032,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,71621,0 +16,14.0209,59.4403,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,60987,0 +17,13.9502,59.6060,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73276,0 +18,13.8537,59.6086,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73560,0 +19,9.8891,63.8030,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,72564,0 +20,12.6411,61.0925,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,73039,0 +21,7.1169,66.9060,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,70173,0 +22,7.4309,67.3561,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,72982,0 +23,7.7490,67.2677,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,73717,0 +24,7.7618,67.2515,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,66300,0 +25,7.7967,67.0065,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72970,0 +26,33.3554,38.3704,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,72868,0 +27,14.0353,39.0937,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74685,0 +28,6.6180,47.2047,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72764,0 +29,6.6508,55.4254,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,75090,0 +30,7.2873,57.0932,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,74128,0 +31,7.9230,54.1342,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76926,0 +32,8.0391,52.1013,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,54294,0 +33,7.8790,51.5146,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,75589,0 +34,7.7954,48.7613,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,72478,0 +35,7.8063,47.0656,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70093,0 +36,7.8543,46.0395,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71714,0 +37,7.9162,42.6916,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,71784,0 +38,7.9081,41.2135,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72516,0 +39,7.9340,39.2963,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,73602,0 +40,7.9078,37.4050,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,62621,0 +41,7.8552,35.5350,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,72470,0 +42,7.7938,33.5207,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73181,0 +43,7.8920,31.4625,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72814,0 +44,7.8438,29.6085,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71123,0 +45,7.9137,27.4277,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,70973,0 +46,7.9739,25.4695,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,73649,0 +47,7.9376,23.4575,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,71601,0 +48,7.9718,21.4367,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,61500,0 +49,7.8474,19.5678,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,71753,0 +50,7.8543,17.6472,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,70218,0 +51,7.8504,17.6153,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,74253,0 +52,7.9844,17.7572,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,71586,0 +53,7.8492,17.6693,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,69643,0 +54,7.8678,17.6404,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71945,0 +55,7.7805,17.4865,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72280,0 +56,7.9447,17.9809,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,67984,0 +57,7.8682,17.6299,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71571,0 +58,7.8789,17.5044,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,71917,0 +59,7.8373,17.4010,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72405,0 +60,7.8695,15.7783,0.0264,0.0000,0,0,0.0000,0,0.0000,0,1,0,130558,0 +61,7.9322,17.2581,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,70141,0 +62,7.8831,17.5825,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,76203,0 +63,7.9152,17.5082,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,79889,0 +64,7.8398,17.6380,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,64605,0 +65,7.8633,17.6108,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,80602,0 +66,7.8842,17.6645,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,79371,0 +67,7.9592,17.5623,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75065,0 +68,7.8495,17.5917,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,74894,0 +69,7.8763,17.5661,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75540,0 +70,7.8252,17.4782,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78601,0 +71,8.0411,17.5471,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75381,0 +72,8.0128,17.6115,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,67803,0 +73,8.0139,17.5404,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75836,0 +74,7.7322,17.3781,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75342,0 +75,7.7811,17.6015,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76838,0 +76,7.8785,17.6687,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72075,0 +77,7.9487,17.5845,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73900,0 +78,7.7560,17.4054,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74764,0 +79,7.8357,17.5549,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73940,0 +80,7.8385,17.5032,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,62436,0 +81,7.7005,17.4324,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,73706,0 +82,7.8103,17.3842,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72053,0 +83,7.9469,17.8418,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74983,0 +84,7.8383,17.6174,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72197,0 +85,7.9086,17.6915,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70711,0 +86,7.7280,17.5484,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72682,0 +87,7.8323,17.9647,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73733,0 +88,7.7841,17.2937,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,66689,0 +89,7.8887,17.7773,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73436,0 +90,7.8850,17.6556,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72583,0 +91,7.8760,17.5678,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72069,0 +92,7.7903,17.5556,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,70769,0 +93,7.7532,17.3897,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,74849,0 +94,7.8721,17.5208,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,73221,0 +95,7.8687,17.6316,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75727,0 +96,7.8476,17.5735,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,55443,0 +97,7.8368,17.5859,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,77334,0 +98,7.8627,17.5595,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72264,0 +99,7.8558,17.5187,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71819,0 +100,7.8583,17.5543,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71444,0 +101,7.8815,17.5678,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71773,0 +102,7.8869,17.5158,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,72929,0 +103,7.8199,17.6065,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72091,0 +104,7.8436,17.7110,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,64798,0 +105,7.9397,17.5760,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72588,0 +106,7.9333,17.5458,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,71923,0 +107,7.9192,17.7496,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72001,0 +108,7.8890,17.6402,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,69215,0 +109,7.8051,17.3337,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72283,0 +110,7.9265,17.7288,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72398,0 +111,7.8806,17.6015,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,72108,0 +112,7.8863,17.6877,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,62124,0 +113,7.7864,17.8213,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72395,0 +114,7.9657,17.7255,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72973,0 +115,7.9025,17.5098,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,72724,0 +116,7.8282,17.6408,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,71015,0 +117,7.8068,17.6351,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,70423,0 +118,7.7615,17.7071,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72393,0 +119,7.8499,17.6705,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73123,0 +120,7.7755,15.8820,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,127744,0 +121,7.8243,17.3749,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,69729,0 +122,7.9304,17.8524,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,75562,0 +123,7.9343,17.5180,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,79027,0 +124,7.8658,17.5683,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76639,0 +125,7.7870,17.8070,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,79800,0 +126,7.8976,17.6555,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,79251,0 +127,7.7607,17.7889,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,79225,0 +128,7.9423,17.7545,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,63646,0 +129,7.7760,17.2827,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,82206,0 +130,7.9066,17.8051,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78537,0 +131,7.9068,17.6522,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,76285,0 +132,7.8240,17.7436,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76700,0 +133,7.9411,17.7603,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,76634,0 +134,7.7614,17.7066,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77513,0 +135,7.8081,17.6682,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78448,0 +136,7.8862,17.7997,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,69594,0 +137,7.8316,17.6947,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,79665,0 +138,7.9440,17.6783,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,77816,0 +139,7.6570,17.5282,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,77660,0 +140,7.8358,17.8370,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75550,0 +141,7.9045,17.5463,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77548,0 +142,7.9233,17.5850,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,77996,0 +143,7.9417,17.8075,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75516,0 +144,7.9064,17.6230,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,66467,0 +145,7.8933,17.5377,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,76852,0 +146,7.8301,17.3610,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73890,0 +147,7.9464,17.6546,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75069,0 +148,7.8950,17.8239,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,74796,0 +149,7.8337,18.1249,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,74761,0 +150,7.9196,17.6678,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75949,0 +151,7.8250,17.6930,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76278,0 +152,7.8758,17.8618,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,70838,0 +153,7.7776,17.7261,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76410,0 +154,7.8890,17.4168,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75567,0 +155,7.7227,17.3665,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75585,0 +156,7.9027,17.8051,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74629,0 +157,7.7687,17.6665,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,77285,0 +158,7.4314,17.5256,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,77511,0 +159,6.8597,17.3336,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,78689,0 +160,6.8260,17.6133,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,56443,0 +161,6.8812,17.6311,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,79451,0 +162,6.8765,17.3962,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77211,0 +163,6.9058,17.4937,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,74594,0 +164,6.5705,17.3130,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,75260,0 +165,7.4386,17.8853,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75888,0 +166,7.6490,17.8528,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78014,0 +167,7.8995,17.6896,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76354,0 +168,7.7709,17.6677,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,66202,0 +169,7.7580,17.2855,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76029,0 +170,7.8712,17.6074,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76761,0 +171,7.9496,17.5887,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,76911,0 +172,7.8786,17.8175,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75309,0 +173,7.9507,17.9170,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76182,0 +174,7.7752,17.7455,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,76798,0 +175,7.8355,17.5917,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75022,0 +176,7.7519,17.1601,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,64723,0 +177,7.9392,17.8016,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76635,0 +178,7.9171,17.6302,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74023,0 +179,7.9525,17.7721,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75593,0 +180,7.8744,15.9856,0.0238,0.0000,0,0,0.0000,0,0.0000,0,1,0,133311,0 +181,7.7865,17.2579,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70639,0 +182,7.7448,19.7874,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77855,0 +183,7.7895,20.2425,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,82442,0 +184,7.9014,20.6236,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76134,0 +185,7.8497,20.7890,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,79780,0 +186,7.8989,20.4697,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,80666,0 +187,7.7740,20.1045,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,80414,0 +188,7.8225,19.1034,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,79654,0 +189,7.8466,19.9882,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,80041,0 +190,7.8992,20.0112,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,79898,0 +191,7.8565,19.3023,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,81091,0 +192,7.8103,18.0216,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,58481,0 +193,7.6375,17.9703,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,83160,0 +194,7.6391,18.1278,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78226,0 +195,7.9057,18.7140,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78398,0 +196,7.9375,18.6770,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,77344,0 +197,7.9337,18.6743,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,79166,0 +198,7.8990,18.8983,0.0263,0.0000,0,0,0.0000,0,0.0000,0,0,0,79244,0 +199,8.0333,19.6415,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,77866,0 +200,7.9162,18.9811,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,69811,0 +201,7.9272,18.2961,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,79067,0 +202,7.8863,18.4216,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,78329,0 +203,7.8722,18.1197,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76495,0 +204,7.9804,18.4710,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75388,0 +205,7.8519,18.0551,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76929,0 +206,7.9498,17.7138,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76936,0 +207,7.0968,17.2949,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,74877,0 +208,7.1799,17.8154,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,63799,0 +209,7.0407,17.6222,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75021,0 +210,7.0379,17.8478,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,73780,0 +211,7.6228,18.3715,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,74873,0 +212,7.7753,18.8130,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74287,0 +213,7.8268,19.5617,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,72742,0 +214,7.9601,19.1867,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,74805,0 +215,7.8645,19.5013,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,74374,0 +216,7.8878,18.2133,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70005,0 +217,7.9558,18.8934,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,73172,0 +218,7.9921,18.7135,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74278,0 +219,7.9250,18.5350,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74860,0 +220,7.8752,18.3840,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73638,0 +221,7.9780,19.2182,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,75746,0 +222,7.9538,19.6710,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,75315,0 +223,7.8919,18.9511,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,76429,0 +224,8.1469,18.5755,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,56311,0 +225,7.8954,18.9025,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,77262,0 +226,7.7959,19.1923,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,73505,0 +227,8.0128,18.5832,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73102,0 +228,7.9213,18.1483,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73286,0 +229,7.8367,17.8766,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73616,0 +230,7.8061,18.7588,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75098,0 +231,7.9129,18.4798,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74328,0 +232,7.8318,18.5710,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,65015,0 +233,7.9466,18.7599,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,73682,0 +234,7.9585,18.0989,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,75256,0 +235,8.0436,19.0236,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,74323,0 +236,7.9685,18.1977,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71467,0 +237,7.8144,19.3329,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,72721,0 +238,7.9458,19.3296,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73676,0 +239,7.8038,18.6212,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71784,0 +240,8.0471,16.8578,0.0231,0.0000,0,0,0.0000,0,0.0000,0,1,0,120500,0 +241,7.7594,17.7897,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,72086,0 +242,7.8849,18.3088,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77097,0 +243,7.7995,18.5574,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,78969,0 +244,8.0113,18.6109,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,77287,0 +245,7.8514,18.4855,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76691,0 +246,8.0640,19.2793,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,76973,0 +247,7.7289,19.9196,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,78767,0 +248,7.9074,19.5759,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,68234,0 +249,7.8439,20.2877,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,76112,0 +250,7.8479,20.1570,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,81427,0 +251,7.9473,19.6060,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,78603,0 +252,7.9378,18.8779,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76429,0 +253,7.8891,18.5963,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,78538,0 +254,7.8778,18.1534,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77932,0 +255,7.9792,19.9976,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78614,0 +256,7.8488,20.5149,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,58755,0 +257,7.8403,20.2237,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,76582,0 +258,7.9460,20.2544,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74709,0 +259,7.8030,20.6657,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,70219,0 +260,7.7252,20.9081,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,72152,0 +261,7.7603,20.6262,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73058,0 +262,7.8669,20.2132,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74218,0 +263,7.7920,20.4773,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73014,0 +264,7.7915,20.4983,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,63629,0 +265,7.9720,19.2132,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,73853,0 +266,7.8057,17.3848,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74258,0 +267,7.8662,17.6019,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,71878,0 +268,7.9353,19.6925,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,70230,0 +269,7.7433,19.5050,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72109,0 +270,7.7997,20.2756,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73320,0 +271,7.9895,20.3264,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,70905,0 +272,7.9753,19.9211,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,61180,0 +273,8.0184,20.0748,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71690,0 +274,8.0062,19.7710,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,70571,0 +275,8.0477,20.0947,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71979,0 +276,7.7960,20.0740,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,70925,0 +277,7.9292,19.9931,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,69690,0 +278,7.8080,19.4482,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,71815,0 +279,7.8744,19.9592,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,73339,0 +280,7.8764,20.3915,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,66234,0 +281,7.9202,20.0323,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71310,0 +282,7.7605,19.9943,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71321,0 +283,8.0633,19.8371,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72654,0 +284,7.8883,20.1391,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,71344,0 +285,7.8185,20.7564,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74947,0 +286,7.8457,20.8915,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71700,0 +287,8.0573,20.1625,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,74517,0 +288,7.8002,20.0588,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,54314,0 +289,8.0290,18.8905,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74655,0 +290,7.8744,19.7559,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72060,0 +291,7.8400,20.0627,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,69446,0 +292,7.9411,19.9300,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,71547,0 +293,7.9924,18.5416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,69713,0 +294,7.6080,17.9477,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71973,0 +295,7.4571,18.1809,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71632,0 +296,7.8087,18.2101,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,64299,0 +297,7.5819,19.1975,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,72427,0 +298,7.9099,19.7862,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,72829,0 +299,7.7387,19.9361,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,71840,0 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.txt new file mode 100644 index 0000000..32e6bb9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=8.031 +avg_encode_latency_ms=24.293 +p95_encode_latency_ms=65.947 +max_encode_latency_ms=110.441 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22315381 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_120mbps_seq.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.csv b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.csv new file mode 100644 index 0000000..6ec6146 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.2153,112.6808,0.0277,0.0000,0,0,0.0000,0,0.0000,0,1,0,66601,0 +1,40.1095,30.2860,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,103953,0 +2,8.9907,36.8611,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,95855,0 +3,9.9220,41.8877,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,84481,0 +4,9.3235,47.3668,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,78242,0 +5,7.9117,54.2972,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,74877,0 +6,7.7826,59.8007,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75890,0 +7,6.8333,67.2590,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,75557,0 +8,7.4435,66.4583,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,65026,0 +9,7.5954,66.0710,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74129,0 +10,8.0403,65.5179,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,73954,0 +11,7.8724,65.5930,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,73853,0 +12,7.9129,65.5477,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71862,0 +13,8.0765,65.4445,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74247,0 +14,8.0349,65.7195,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73769,0 +15,7.4643,66.2627,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,71445,0 +16,10.3082,63.3223,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,61488,0 +17,13.1163,60.7405,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71978,0 +18,12.2793,61.4653,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,70802,0 +19,10.9352,62.8360,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71945,0 +20,10.4665,62.8433,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,70449,0 +21,10.7165,63.0495,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,70707,0 +22,10.5962,62.9113,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72155,0 +23,7.1292,66.7134,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72680,0 +24,7.0084,66.8124,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,66808,0 +25,6.7245,67.2659,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71730,0 +26,7.3364,66.5181,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,71377,0 +27,7.5345,65.3697,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73421,0 +28,7.4793,63.0854,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71203,0 +29,7.7285,60.4303,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,73420,0 +30,7.8144,58.0742,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,73747,0 +31,7.9062,56.2880,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,75270,0 +32,7.9197,53.9228,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,52673,0 +33,8.0815,51.9881,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,74040,0 +34,7.9030,50.3699,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72237,0 +35,7.8904,48.3853,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,69698,0 +36,7.9946,46.2902,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72573,0 +37,8.1462,44.1629,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71414,0 +38,7.9695,42.5371,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73053,0 +39,7.7980,40.6516,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,74132,0 +40,7.8905,39.5121,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,62668,0 +41,7.8574,36.5122,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72643,0 +42,7.7137,34.9177,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,72500,0 +43,7.7759,32.7302,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71835,0 +44,7.7533,30.7367,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70476,0 +45,7.8845,28.4928,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,73589,0 +46,7.7980,26.4818,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73447,0 +47,8.1668,23.9681,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,70952,0 +48,8.1884,21.9028,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,61662,0 +49,7.6867,22.0061,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71954,0 +50,8.1496,17.4962,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,70914,0 +51,7.9633,17.5342,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72536,0 +52,6.9652,17.2475,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,70692,0 +53,6.8403,17.2524,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,69969,0 +54,6.9520,17.2481,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72098,0 +55,6.8818,17.3307,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72596,0 +56,6.8888,17.3040,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,66558,0 +57,6.9604,17.3880,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,71531,0 +58,6.9367,17.3435,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70933,0 +59,6.7272,17.3478,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,71781,0 +60,7.4087,17.4066,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,69578,0 +61,7.7463,17.5130,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74587,0 +62,7.7425,17.6399,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73116,0 +63,7.8721,17.8965,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,74462,0 +64,7.7401,17.6929,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,53575,0 +65,7.8241,17.5232,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75464,0 +66,7.7891,17.3351,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72200,0 +67,7.8740,17.4970,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70740,0 +68,7.7612,17.3916,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70520,0 +69,7.8560,17.4922,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,70389,0 +70,7.7632,17.5935,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71710,0 +71,7.7757,17.5612,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74215,0 +72,7.7922,17.4196,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,62850,0 +73,7.8435,17.4298,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,71354,0 +74,6.9073,17.3768,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,72571,0 +75,7.2075,17.3953,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72160,0 +76,7.4769,17.4457,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71806,0 +77,7.6995,17.5986,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,72451,0 +78,7.7873,17.8362,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72738,0 +79,7.7176,17.5791,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70902,0 +80,7.6517,17.3850,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,62062,0 +81,7.9112,17.5835,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72340,0 +82,7.8723,17.3315,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,70065,0 +83,7.8593,17.4920,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,71408,0 +84,7.8017,17.3111,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,70686,0 +85,8.0019,17.3575,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,69590,0 +86,7.8835,17.5343,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72207,0 +87,7.7900,17.3574,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73270,0 +88,7.8833,17.4453,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,65329,0 +89,7.8034,17.3632,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71482,0 +90,7.9184,17.3846,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72476,0 +91,7.7897,17.4936,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,72639,0 +92,7.8952,17.6288,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,70995,0 +93,7.8980,17.6219,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73026,0 +94,7.8885,17.4491,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74177,0 +95,7.7928,17.5215,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74825,0 +96,7.7265,17.3285,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,54680,0 +97,7.8172,17.5494,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74900,0 +98,7.8499,17.5535,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71517,0 +99,7.8180,17.3730,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70696,0 +100,7.8924,17.5353,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71111,0 +101,7.8621,17.5622,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71173,0 +102,7.8264,17.5667,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72251,0 +103,7.8070,17.2248,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72560,0 +104,7.8368,17.5209,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,63322,0 +105,7.7743,17.3385,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72965,0 +106,7.8441,17.6582,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,73155,0 +107,7.8805,17.6374,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,72163,0 +108,7.8824,17.4262,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,69970,0 +109,7.6241,17.2667,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71760,0 +110,7.8901,17.6923,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,72985,0 +111,7.7521,17.7305,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71157,0 +112,7.7830,17.3558,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,60884,0 +113,7.9489,17.6249,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71202,0 +114,7.8816,17.4471,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71852,0 +115,7.7402,17.6817,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72681,0 +116,7.8351,17.6109,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,70972,0 +117,7.8673,17.5780,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,69750,0 +118,7.8631,17.5015,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,72145,0 +119,7.8469,17.4702,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74111,0 +120,7.7696,15.7562,0.0252,0.0000,0,0,0.0000,0,0.0000,0,1,0,127744,0 +121,7.8258,17.4701,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,69729,0 +122,7.7633,17.4298,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75562,0 +123,7.9280,17.6849,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,79027,0 +124,7.9557,17.2499,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76639,0 +125,7.9386,17.5335,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,79800,0 +126,7.8204,17.5302,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,79251,0 +127,7.7872,17.6785,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,79225,0 +128,7.9017,17.3837,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,63646,0 +129,7.8037,17.4291,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,82206,0 +130,7.8688,17.5278,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,78537,0 +131,7.8695,17.6212,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76285,0 +132,7.8164,17.3575,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76700,0 +133,8.0427,17.4066,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,76634,0 +134,7.7269,17.3263,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,77513,0 +135,7.9394,17.8000,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,78448,0 +136,7.7513,17.7132,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,69594,0 +137,7.8302,17.6707,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,79665,0 +138,7.9265,17.7608,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77816,0 +139,7.8673,17.8517,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77660,0 +140,7.8176,17.3592,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75550,0 +141,7.8100,17.4250,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77548,0 +142,8.0606,17.5655,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,77996,0 +143,7.7722,17.4230,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75516,0 +144,7.8506,17.6811,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,66467,0 +145,7.8466,17.5627,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76852,0 +146,7.8581,17.4570,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73890,0 +147,7.7772,17.5764,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75069,0 +148,7.7802,17.6544,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74796,0 +149,7.8556,17.5322,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74761,0 +150,7.8425,17.3004,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,75949,0 +151,8.0542,17.4634,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76278,0 +152,7.7853,17.2845,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70838,0 +153,7.8861,17.8002,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,76410,0 +154,7.7938,17.6833,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75567,0 +155,7.8717,17.2658,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,75585,0 +156,7.8716,17.5383,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74629,0 +157,7.8588,17.4518,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77285,0 +158,7.7868,17.5182,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77511,0 +159,7.7583,17.6102,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,78689,0 +160,7.6035,17.3787,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,56443,0 +161,7.7580,17.6255,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,79451,0 +162,7.8287,17.3004,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77211,0 +163,7.7547,17.5618,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74594,0 +164,7.8090,17.5555,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75260,0 +165,7.8186,17.1900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75888,0 +166,8.0730,17.6796,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,78014,0 +167,7.7979,17.3314,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76354,0 +168,7.9648,17.4998,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,66202,0 +169,7.8175,17.1989,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76029,0 +170,7.7352,17.6270,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76761,0 +171,7.8054,17.6210,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,76911,0 +172,7.6483,17.4887,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75309,0 +173,7.8578,17.5469,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,76182,0 +174,7.8023,17.3233,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,76798,0 +175,8.0306,17.7212,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,75022,0 +176,7.8077,17.5400,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,64723,0 +177,7.7345,17.6616,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76635,0 +178,7.8256,17.6385,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74023,0 +179,7.4049,17.6018,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75593,0 +180,7.5454,17.4696,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74695,0 +181,7.8336,17.6158,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73835,0 +182,7.7166,18.1968,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,75495,0 +183,7.9073,17.6850,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76410,0 +184,7.4762,18.5081,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,69984,0 +185,7.8661,18.1425,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,76210,0 +186,7.8190,18.5676,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75763,0 +187,7.8425,18.2404,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75890,0 +188,7.8448,17.8813,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75338,0 +189,8.0818,18.3760,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,76058,0 +190,7.7833,18.2934,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,76747,0 +191,7.8990,18.0789,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,77244,0 +192,7.7480,18.0742,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,56984,0 +193,8.0495,17.4006,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,78761,0 +194,7.7424,17.3526,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,76343,0 +195,7.7994,18.3368,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,75705,0 +196,7.8780,18.1961,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74659,0 +197,7.8172,18.0770,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,75069,0 +198,7.9333,18.0994,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77072,0 +199,7.9965,17.9495,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76402,0 +200,7.8304,17.9414,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,66058,0 +201,7.9345,17.3188,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,77434,0 +202,7.8803,17.2860,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,75906,0 +203,7.9661,17.6935,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,76248,0 +204,7.9120,18.0783,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,74288,0 +205,7.9500,18.0309,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,76636,0 +206,7.9616,17.7933,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,76626,0 +207,7.8616,17.9465,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,73935,0 +208,7.8941,18.4611,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,62534,0 +209,7.9268,18.4368,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,74432,0 +210,7.7497,18.0295,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73336,0 +211,7.8698,18.1576,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74354,0 +212,7.7995,18.2542,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73920,0 +213,7.9003,17.9251,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,72713,0 +214,7.7924,18.1454,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75085,0 +215,7.9258,18.0392,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,74888,0 +216,7.8558,17.3582,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,68452,0 +217,7.9790,17.9020,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74636,0 +218,8.0498,18.4923,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74130,0 +219,7.8460,18.2993,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74059,0 +220,7.9030,18.1729,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73250,0 +221,7.8913,18.7810,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74548,0 +222,7.9225,18.0100,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75514,0 +223,7.8291,17.3339,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,76850,0 +224,7.9183,18.2170,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,54406,0 +225,7.8549,18.2272,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,76583,0 +226,7.8044,17.5191,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73774,0 +227,8.0690,18.0164,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,70887,0 +228,8.0350,17.4127,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72888,0 +229,7.9072,18.2683,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,72612,0 +230,7.8258,18.6797,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,75068,0 +231,7.9313,18.1848,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,73847,0 +232,7.8598,18.1723,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,65244,0 +233,7.8453,18.3675,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73822,0 +234,8.0239,18.4597,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74309,0 +235,7.9443,19.0133,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74211,0 +236,7.7285,18.9343,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,72114,0 +237,7.8500,18.7924,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73360,0 +238,7.7771,17.9308,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74638,0 +239,7.7939,18.3038,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,71231,0 +240,7.9809,16.3499,0.0278,0.0000,0,0,0.0000,0,0.0000,0,1,0,120500,0 +241,8.0900,18.1615,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,72086,0 +242,7.9722,19.0088,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77097,0 +243,7.8293,19.1289,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,78969,0 +244,7.8400,19.4083,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,77287,0 +245,7.8402,19.1616,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76691,0 +246,7.8719,19.1170,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76973,0 +247,7.8826,18.6295,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,78767,0 +248,7.9897,19.1753,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,68234,0 +249,7.8425,19.2500,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76112,0 +250,7.8429,19.1962,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,81427,0 +251,7.8622,18.5291,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,78603,0 +252,7.9337,18.8403,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,76429,0 +253,7.9100,17.4458,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,78538,0 +254,7.7719,17.4546,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77932,0 +255,7.9783,18.4625,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,78614,0 +256,7.7988,19.2793,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,58755,0 +257,7.8829,19.0430,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,76582,0 +258,7.8474,18.8699,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74709,0 +259,7.9167,19.0742,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,70219,0 +260,7.7991,19.1595,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,72152,0 +261,7.8116,19.2000,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73058,0 +262,8.0030,19.0024,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74218,0 +263,7.7967,17.8659,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,73014,0 +264,7.5558,18.4136,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,63629,0 +265,7.7360,18.9692,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73853,0 +266,7.8358,18.5794,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,74258,0 +267,8.0570,18.1825,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71878,0 +268,7.7977,19.1597,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,70230,0 +269,7.8703,19.0710,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72109,0 +270,7.8758,19.1168,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73320,0 +271,8.0314,18.6633,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,70905,0 +272,8.0121,18.7379,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,61180,0 +273,7.8038,18.8653,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,71690,0 +274,7.8918,18.7990,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,70571,0 +275,7.8290,19.1430,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71979,0 +276,7.8026,18.0433,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,70925,0 +277,7.7596,17.8773,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,69690,0 +278,7.8603,18.0731,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,71815,0 +279,7.7272,18.1815,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,73339,0 +280,7.9302,18.5345,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,66234,0 +281,7.6937,18.3951,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71310,0 +282,7.9946,18.0578,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,71321,0 +283,7.7138,17.7793,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,72654,0 +284,7.7798,18.1710,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,71344,0 +285,7.8217,18.5530,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74947,0 +286,7.8013,17.7267,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71700,0 +287,7.8134,18.1127,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74517,0 +288,8.1127,17.5447,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,54314,0 +289,7.7480,18.4090,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,74655,0 +290,7.8087,18.7945,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,72060,0 +291,7.7546,18.5134,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,69446,0 +292,7.6752,19.0099,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71547,0 +293,7.7204,19.3283,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,69713,0 +294,7.9052,18.9185,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71973,0 +295,7.7540,18.8942,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,71632,0 +296,7.8282,18.7518,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,64299,0 +297,7.7816,18.7141,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,72427,0 +298,7.8231,19.2445,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72829,0 +299,7.7906,20.8704,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,71840,0 diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.txt b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.txt new file mode 100644 index 0000000..fe3f5e4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=80 +low_latency_rate_control=on +max_keyframe_interval=120 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=8.005 +avg_encode_latency_ms=23.791 +p95_encode_latency_ms=63.425 +max_encode_latency_ms=112.681 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21962861 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0854_encoder_lowlatency/hevc_3200x1800_80mbps_kfi120_seq.csv diff --git a/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/summary.md b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/summary.md new file mode 100644 index 0000000..05e8e74 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0854_encoder_lowlatency/summary.md @@ -0,0 +1,19 @@ +# Encoder Low-Latency Probe + +Prompt: focused Plan C end-to-end pipeline spike. + +## Valid Sequential Results + +| Test | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | Result | +|---|---:|---:|---:|---:|---:|---:|---| +| HEVC 2560x1440 @ 60, 120Mbps, 5s | 300 | 0 | 13.783 | 13.295 | 103.114 | 14,103,635 | meets avg < 20ms, but has startup/outlier spike | +| HEVC 3200x1800 @ 60, 120Mbps, 5s | 300 | 0 | 24.293 | 65.947 | 110.441 | 22,315,381 | does not meet avg < 20ms in this run | +| HEVC 3200x1800 @ 60, 80Mbps, KFI 120, 5s | 300 | 0 | 23.791 | 63.425 | 112.681 | 21,962,861 | does not meet avg < 20ms in this run | +| H.264 5120x2880 @ 60, 120Mbps, 1s | 60 | 60 | 9.321 | 10.073 | 75.755 | 0 | still fails to produce payloads | + +## Notes + +- The first non-sequential HEVC files in this directory were launched in parallel and should be treated as contention smoke artifacts, not benchmark results. +- `--list-encoders` output shows the current Mac exposes `com.apple.videotoolbox.videoencoder.ave.avc`, `com.apple.videotoolbox.videoencoder.h264`, `com.apple.videotoolbox.videoencoder.ave.hevc`, and `com.apple.videotoolbox.videoencoder.hevc.vcp`. +- Low-latency rate control is now passed in `VTCompressionSessionCreate` via `encoderSpecification`, not by `VTSessionSetProperty`. +- 3200x1800 remains the engineering default candidate from prior Plan C render tests, but encoder tuning needs more matrix runs before it can be claimed below a 20ms encode average. diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/mbp_env.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/mbp_env.txt new file mode 100644 index 0000000..3d1f75d --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/mbp_env.txt @@ -0,0 +1,183 @@ +Gabriels-MacBook-Pro.local +gabriel +/Users/gabriel/Development/iBridge +ProductName: macOS +ProductVersion: 14.6.1 +BuildVersion: 23G93 +Hardware: + + Hardware Overview: + + Model Name: MacBook Pro + Model Identifier: MacBookPro18,4 + Model Number: Z15H000RNKH/A + Chip: Apple M1 Max + Total Number of Cores: 10 (8 performance and 2 efficiency) + Memory: 32 GB + System Firmware Version: 10151.140.19 + OS Loader Version: 10151.140.19 + + + + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported + +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi1: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2e + media: none + status: inactive +anpi0: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2d + media: none + status: inactive +anpi2: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2f + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0d + nd6 options=201 + media: none + status: inactive +en5: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0e + nd6 options=201 + media: none + status: inactive +en6: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0f + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:40 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:44 + media: autoselect + status: inactive +en3: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:48 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:fa:2e:69:8f:40 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 10 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 11 priority 0 path cost 0 + member: en3 flags=3 + ifmaxaddr 0 port 12 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8843 mtu 1500 + options=6460 + ether fa:4d:89:6c:4d:9e + inet6 fe80::f84d:89ff:fe6c:4d9e%ap1 prefixlen 64 scopeid 0xe + nd6 options=201 + media: autoselect +en0: flags=8863 mtu 1500 + options=6460 + ether f8:4d:89:6c:4d:9e + inet6 fe80::838:9e91:cd76:33aa%en0 prefixlen 64 secured scopeid 0xf + inet 192.168.5.31 netmask 0xffffff00 broadcast 192.168.5.255 + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8843 mtu 1500 + options=6460 + ether 22:63:17:96:3e:e5 + inet6 fe80::2063:17ff:fe96:3ee5%awdl0 prefixlen 64 scopeid 0x10 + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether 22:63:17:96:3e:e5 + inet6 fe80::2063:17ff:fe96:3ee5%llw0 prefixlen 64 scopeid 0x11 + nd6 options=201 + media: autoselect + status: inactive +utun0: flags=8051 mtu 1500 + inet6 fe80::aed4:ce62:6769:6a30%utun0 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::a7e8:8eed:e82:e3cb%utun1 prefixlen 64 scopeid 0x13 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::d850:b7ef:8987:49c9%utun2 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::fa4d:89ff:fe6c:4d9e%utun4 prefixlen 64 scopeid 0x16 + inet 100.102.202.93 --> 100.102.202.93 netmask 0xffffffff + inet6 fd7a:115c:a1e0::d35:ca5d prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::b64e:bed8:ebbb:55a8%utun5 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::36f:293b:592f:4e2%utun6 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::6cc0:5a5:426b:676d%utun7 prefixlen 64 scopeid 0x19 + nd6 options=201 diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/protocol_tests.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/protocol_tests.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/summary.md b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/summary.md new file mode 100644 index 0000000..07d7a74 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/summary.md @@ -0,0 +1,34 @@ +# MacBook Pro Environment Baseline + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +## Machine + +- Hostname: `Gabriels-MacBook-Pro.local` +- User: `gabriel` +- Model: MacBook Pro `MacBookPro18,4` +- Chip: Apple M1 Max +- CPU cores: 10 +- GPU cores: 24 +- Memory: 32 GB +- Power: AC power, battery 100% + +## Displays + +| Display | Resolution | Notes | +|---|---:|---| +| Built-in Color LCD | 3024x1964 | main display | +| TFX173T | 1080x1920 | external portrait display | +| Sidecar Display | 2360x1640 | AirPlay virtual display, iPad Air 5 candidate | +| LG IPS FULLHD | 1920x1080 | external FHD display | + +## Validation + +- `swift build --package-path apps/primary-macos -c release`: passed +- `python3 apps/shared-protocol/test_protocol_v0.py`: passed +- `ibridge-primary --list-encoders`: passed + +## Notes + +- Tailscale status shows the Windows iMac as `oosu-imac` at `100.86.52.88`. +- The environment is a better Primary candidate than the MacBook Air for sustained tests, but actual iMac receiver decode/render still needs Windows-side execution. diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/swift_build.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/swift_build.txt new file mode 100644 index 0000000..2119c1a --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/swift_build.txt @@ -0,0 +1,7 @@ +Building for production... +[0/4] Write sources +[1/4] Write swift-version--58304C5D6DBC2206.txt +[3/5] Compiling iBridgePrimary main.swift +[3/5] Write Objects.LinkFileList +[4/5] Linking ibridge-primary +Build complete! (8.28s) diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_netcheck.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_netcheck.txt new file mode 100644 index 0000000..e63480e --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_netcheck.txt @@ -0,0 +1,44 @@ +2026/05/15 09:48:37 portmap: monitor: gateway and self IP changed: gw=192.168.5.1 self=192.168.5.31 +2026/05/15 09:48:37 portmap: [v1] UPnP reply {Location:http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml Server:Net-OS 5.xx UPnP/1.0 USN:uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1}, "HTTP/1.1 200 OK\r\nCACHE-CONTROL: max-age=120\r\nST: urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nUSN: uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nEXT:\r\nSERVER: Net-OS 5.xx UPnP/1.0\r\nLOCATION: http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml\r\n\r\n" +2026/05/15 09:48:37 portmap: [v1] UPnP reply {Location:http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml Server:Net-OS 5.xx UPnP/1.0 USN:uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1}, "HTTP/1.1 200 OK\r\nCACHE-CONTROL: max-age=120\r\nST: urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nUSN: uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nEXT:\r\nSERVER: Net-OS 5.xx UPnP/1.0\r\nLOCATION: http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml\r\n\r\n" +2026/05/15 09:48:37 portmap: [v1] UPnP reply {Location:http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml Server:Net-OS 5.xx UPnP/1.0 USN:uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1}, "HTTP/1.1 200 OK\r\nCACHE-CONTROL: max-age=120\r\nST: urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nUSN: uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1\r\nEXT:\r\nSERVER: Net-OS 5.xx UPnP/1.0\r\nLOCATION: http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml\r\n\r\n" +2026/05/15 09:48:38 portmap: UPnP meta changed: [{Location:http://192.168.5.1:63430/etc/linuxigd/gatedesc.xml Server:Net-OS 5.xx UPnP/1.0 USN:uuid:fc4ec57e-b051-11db-88f8-909f333baa6e::urn:schemas-upnp-org:device:InternetGatewayDevice:1}] + +Report: + * Time: 2026-05-15T00:48:40.002859Z + * UDP: true + * IPv4: yes, 125.131.208.231:65263 + * IPv6: no, but OS has support + * MappingVariesByDestIP: false + * PortMapping: UPnP + * CaptivePortal: false + * Nearest DERP: Tokyo + * DERP latency: + - tok: 44.7ms (Tokyo) + - hkg: 69.3ms (Hong Kong) + - sin: 84.3ms (Singapore) + - sfo: 142.7ms (San Francisco) + - lax: 149.6ms (Los Angeles) + - den: 158ms (Denver) + - sea: 163.5ms (Seattle) + - ord: 171.8ms (Chicago) + - tor: 184.6ms (Toronto) + - dfw: 187.4ms (Dallas) + - nyc: 187.5ms (New York City) + - hnl: 194.9ms (Honolulu) + - mia: 195.2ms (Miami) + - iad: 198ms (Ashburn) + - syd: 208.6ms (Sydney) + - ams: 258.8ms (Amsterdam) + - blr: 258.8ms (Bengaluru) + - lhr: 261.7ms (London) + - par: 262.3ms (Paris) + - fra: 270ms (Frankfurt) + - mad: 276ms (Madrid) + - waw: 293.8ms (Warsaw) + - nue: 300.7ms (Nuremberg) + - hel: 303.1ms (Helsinki) + - dbi: 351.9ms (Dubai) + - sao: 357.3ms (São Paulo) + - jnb: 400.3ms (Johannesburg) + - nai: 454.4ms (Nairobi) diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_status.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_status.txt new file mode 100644 index 0000000..2ddec2c --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/tailscale_status.txt @@ -0,0 +1,7 @@ +100.102.202.93 gabriels-macbook-pro woosu91@ macOS - +100.94.11.28 gabriel-macbookair woosu91@ macOS offline, last seen 8m ago +100.110.60.104 gabriels-ipad woosu91@ iOS - +100.114.210.8 gabriels-mac-mini woosu91@ macOS idle, tx 1757232 rx 24678216 +100.90.208.5 ipad-air-5th-gen-wifi woosu91@ iOS - +100.88.12.67 iphone-14-pro woosu91@ iOS - +100.86.52.88 oosu-imac woosu91@ windows - diff --git a/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/video_encoders.txt b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/video_encoders.txt new file mode 100644 index 0000000..c7d7754 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x130f0f310>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.csv new file mode 100644 index 0000000..1aa53b2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.9957,101.0269,0.0278,0.0000,0,0,0.0000,0,0.0000,0,1,0,77303,0 +1,9.9646,73.0879,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,124552,0 +2,9.6642,82.7848,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,117872,0 +3,9.9671,92.3177,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,112541,0 +4,10.0738,101.3961,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,112232,0 +5,10.1189,86.6596,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,109036,0 +6,10.0064,86.4219,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107218,0 +7,9.8132,86.5516,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,103589,0 +8,10.2966,85.9452,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,94195,0 +9,10.2657,86.0407,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,103219,0 +10,9.6880,86.4784,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,105204,0 +11,9.8510,86.4886,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,104472,0 +12,9.9609,86.4000,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,106270,0 +13,9.7587,86.3265,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,106762,0 +14,9.8160,86.1427,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,109253,0 +15,10.2350,85.7329,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104243,0 +16,10.1118,85.7160,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,92766,0 +17,9.7611,85.9144,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107439,0 +18,9.6975,86.1741,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106208,0 +19,10.0157,85.9054,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105202,0 +20,10.1175,85.8628,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,107959,0 +21,9.9920,85.8403,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,106720,0 +22,9.6865,86.2480,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106334,0 +23,10.0623,85.9268,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,103275,0 +24,9.5905,86.3240,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,94135,0 +25,9.8098,86.0244,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,104735,0 +26,9.8018,86.0943,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,105732,0 +27,9.8956,85.9788,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,105490,0 +28,10.0923,85.6075,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,107768,0 +29,9.8825,85.8871,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108266,0 +30,9.8650,85.9945,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,109180,0 +31,9.8506,86.1056,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,105241,0 +32,9.8648,86.0565,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,88982,0 +33,9.7577,86.1393,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,105872,0 +34,9.9092,85.9611,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,105402,0 +35,10.3523,85.4161,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,105193,0 +36,9.9735,85.7791,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,108308,0 +37,9.7613,86.0290,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,106865,0 +38,9.9726,85.8239,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,106818,0 +39,10.0629,85.8538,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,105191,0 +40,9.6902,86.2588,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,94108,0 +41,10.3027,85.5717,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,104224,0 +42,9.7471,86.0720,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,105239,0 +43,9.7178,86.2901,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,105059,0 +44,9.6541,86.3575,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,106442,0 +45,10.0217,85.9763,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106877,0 +46,10.0338,85.8747,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,110372,0 +47,9.8432,86.0294,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105131,0 +48,9.8322,85.8107,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,93637,0 +49,10.0356,85.6404,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108053,0 +50,10.0580,85.6939,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,106044,0 +51,9.8717,85.9735,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,105642,0 +52,9.7538,86.3130,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,107891,0 +53,9.9267,86.3059,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105697,0 +54,10.0251,86.1805,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,106761,0 +55,9.6344,86.5658,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,103171,0 +56,9.5560,86.7214,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,93313,0 +57,9.7834,86.4226,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,105008,0 +58,9.7384,86.4047,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,105616,0 +59,10.2721,85.7777,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,105278,0 +60,9.7049,86.5551,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,101070,0 +61,9.9808,86.0971,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,110532,0 +62,9.7070,86.4456,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,114228,0 +63,9.7123,86.4430,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,106614,0 +64,9.8315,86.3648,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,92158,0 +65,9.8851,86.0797,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,111481,0 +66,10.3067,85.5719,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,105292,0 +67,9.7125,86.0583,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,105344,0 +68,9.7723,85.9632,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,107675,0 +69,10.4574,85.4415,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,106140,0 +70,10.0405,86.0031,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,106198,0 +71,9.7737,86.3325,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,104439,0 +72,10.6050,85.4586,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,94586,0 +73,10.2525,85.8815,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,103626,0 +74,9.9883,85.9919,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106540,0 +75,9.6729,86.1422,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,104777,0 +76,9.8405,85.9790,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,106827,0 +77,9.8843,86.0645,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,107010,0 +78,9.7878,85.9845,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,109442,0 +79,9.8897,85.9142,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,105338,0 +80,9.9415,85.8540,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,92852,0 +81,9.6883,86.1690,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,108103,0 +82,9.7839,86.0840,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,107220,0 +83,9.9413,85.9900,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,105356,0 +84,9.7870,86.2521,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,108630,0 +85,9.8075,86.1971,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,106794,0 +86,9.9067,86.1391,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,106523,0 +87,10.1967,85.6804,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,103480,0 +88,9.9193,85.9460,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,94082,0 +89,9.9048,85.9229,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,105670,0 +90,9.6868,86.2504,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,106439,0 +91,10.0299,85.8977,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105558,0 +92,10.2075,85.6670,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,108668,0 +93,9.7002,86.2009,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,108706,0 +94,9.7834,86.1049,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,110130,0 +95,9.8720,86.1096,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,105993,0 +96,9.8610,86.1290,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,89930,0 +97,9.6710,86.2956,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,107416,0 +98,10.1412,85.8238,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,106479,0 +99,9.9898,85.9887,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,106316,0 +100,10.1027,85.6285,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,109602,0 +101,10.2043,85.5490,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,108488,0 +102,9.9787,85.7968,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108487,0 +103,10.1023,85.8485,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107120,0 +104,9.6749,86.3864,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,95949,0 +105,9.9630,86.1935,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,105156,0 +106,9.9327,86.1773,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,107585,0 +107,10.0204,85.9593,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,106453,0 +108,9.6891,86.2078,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,107649,0 +109,9.9679,85.8137,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,108700,0 +110,10.1096,85.7403,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,111777,0 +111,10.0585,85.8127,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106640,0 +112,10.0866,86.3769,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,95043,0 +113,9.9666,86.6271,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,109984,0 +114,9.8715,86.8130,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,108061,0 +115,9.9251,86.5935,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,107376,0 +116,9.9413,86.5337,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,109617,0 +117,10.0044,85.8410,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,107699,0 +118,10.5218,85.1913,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,108384,0 +119,9.6257,86.0309,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105367,0 +120,9.7321,86.0093,0.0065,0.0000,0,0,0.0000,0,0.0000,0,1,0,101709,0 +121,9.9285,85.9742,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,111272,0 +122,9.8765,86.3304,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,110284,0 +123,9.6275,86.7951,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,109283,0 +124,9.6993,86.5855,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,110897,0 +125,10.0143,86.3746,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,109585,0 +126,9.7988,86.3762,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,111307,0 +127,10.0853,85.7690,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,107107,0 +128,9.7856,85.9003,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,93913,0 +129,9.7904,85.9417,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,109038,0 +130,9.8758,85.9269,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,107622,0 +131,9.8050,86.0834,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108038,0 +132,9.6825,86.4429,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,110119,0 +133,9.7820,86.6212,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,109142,0 +134,9.9310,86.4705,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,109124,0 +135,9.6867,86.6951,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,106899,0 +136,9.9449,86.4757,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,96224,0 +137,10.0605,86.1952,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,105870,0 +138,10.0160,86.0243,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,108187,0 +139,10.0244,86.0243,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,107364,0 +140,10.3475,85.7064,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,108518,0 +141,9.7672,86.0773,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,109426,0 +142,9.7803,86.2770,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,111356,0 +143,9.5606,86.4945,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,107758,0 +144,9.8752,86.3165,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,96041,0 +145,9.8371,86.3903,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,111314,0 +146,10.0376,86.1823,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,112705,0 +147,9.9190,86.2483,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,111365,0 +148,10.0876,85.9014,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,111872,0 +149,9.7833,86.1265,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,111614,0 +150,9.7814,86.1270,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,110951,0 +151,9.9801,85.9136,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,108431,0 +152,9.6667,86.4860,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,98673,0 +153,9.8927,86.3815,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,110222,0 +154,9.5451,86.7145,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,111237,0 +155,10.0935,86.3151,0.0448,0.0000,0,0,0.0000,0,0.0000,0,0,0,110103,0 +156,9.7888,86.6163,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,112646,0 +157,10.0794,86.1609,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,112883,0 +158,9.7452,86.3699,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,114382,0 +159,9.7186,86.5363,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,110579,0 +160,10.3595,85.7815,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,93938,0 +161,9.6559,86.5501,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,111791,0 +162,9.7211,86.5552,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,111115,0 +163,9.9394,86.7563,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,111336,0 +164,10.3315,86.2413,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,113775,0 +165,9.7337,86.8371,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,112571,0 +166,9.8171,86.6036,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,111947,0 +167,9.9884,86.5266,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,110514,0 +168,9.8189,86.3008,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,100018,0 +169,9.9386,86.1547,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,109038,0 +170,9.9140,86.1903,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,111684,0 +171,9.8945,86.2989,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,109684,0 +172,10.3810,85.8115,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,112110,0 +173,10.0911,86.0650,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,112399,0 +174,9.7780,86.4545,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,114418,0 +175,10.3239,85.7149,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,109899,0 +176,9.9806,86.0363,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,98258,0 +177,10.1521,85.8025,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,113055,0 +178,9.8912,85.9065,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,113605,0 +179,9.6325,86.0921,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,111368,0 +180,10.7430,85.0250,0.0064,0.0000,0,0,0.0000,0,0.0000,0,1,0,98154,0 +181,9.6029,86.1072,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,114812,0 +182,10.1216,100.1882,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,114687,0 +183,9.5747,115.3062,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,110207,0 +184,10.2515,129.0866,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,101833,0 +185,9.7257,144.3140,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,108920,0 +186,9.9239,158.6636,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,111308,0 +187,10.5153,157.9469,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,110475,0 +188,9.9288,158.7907,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,112409,0 +189,10.5400,158.4207,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,112958,0 +190,11.4009,157.2423,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,114135,0 +191,10.1218,158.9039,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,110726,0 +192,9.6481,159.5658,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,94811,0 +193,10.0587,159.1650,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,112774,0 +194,9.8605,159.5079,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,110809,0 +195,9.7310,159.8486,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,110129,0 +196,10.0030,159.2486,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,113795,0 +197,10.2246,158.9094,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,111372,0 +198,10.0647,158.8020,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,112573,0 +199,10.4324,158.1644,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,109770,0 +200,9.9429,158.5773,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,99197,0 +201,10.0697,158.6225,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,108598,0 +202,10.1565,158.6702,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,110629,0 +203,10.2073,158.6135,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,109731,0 +204,10.1485,158.6082,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,111326,0 +205,10.0574,158.5291,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,112388,0 +206,10.0518,158.5114,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,115002,0 +207,9.9568,158.4684,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,109953,0 +208,9.8481,158.6469,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,98602,0 +209,9.6525,159.0175,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,112339,0 +210,9.7014,159.2544,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,110963,0 +211,10.0838,158.6717,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,110250,0 +212,9.8665,158.8005,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,111865,0 +213,9.8339,159.0602,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,110832,0 +214,9.8920,159.2044,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,109701,0 +215,10.1579,158.9203,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,107503,0 +216,9.8124,159.3912,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,98139,0 +217,9.8972,159.6118,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,109579,0 +218,10.4394,158.8838,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,109888,0 +219,10.1623,158.7435,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,110217,0 +220,9.6411,159.0402,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,112030,0 +221,9.8378,158.7138,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,111751,0 +222,9.9236,158.6439,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,114173,0 +223,10.0061,158.7530,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,109154,0 +224,10.0374,159.0830,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,92391,0 +225,9.9999,159.2972,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,110076,0 +226,9.8850,159.2499,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,108984,0 +227,10.0240,159.1326,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,109366,0 +228,9.6599,159.4947,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,112337,0 +229,10.0899,159.0633,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,110983,0 +230,9.9516,158.8370,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,110481,0 +231,9.8681,158.7230,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,108641,0 +232,10.2737,158.4305,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,97640,0 +233,10.4339,158.0793,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,107519,0 +234,10.2818,157.9131,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,109191,0 +235,9.8965,158.6143,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,108493,0 +236,10.1120,158.6044,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,110431,0 +237,9.8662,158.6538,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,110683,0 +238,10.0303,158.7260,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,113645,0 +239,10.4848,158.3105,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,108228,0 +240,10.1310,158.3634,0.0061,0.0000,0,0,0.0000,0,0.0000,0,1,0,100177,0 +241,10.2598,158.0742,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,129929,0 +242,9.7197,158.5389,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,113242,0 +243,10.1120,158.2040,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,108705,0 +244,10.3733,157.8898,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,111479,0 +245,10.1534,158.3438,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,109577,0 +246,9.8842,158.5289,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107645,0 +247,10.0881,158.4175,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,105297,0 +248,10.1310,158.8418,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,93828,0 +249,9.8116,159.3763,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,106865,0 +250,10.1402,159.0968,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,107814,0 +251,9.9246,159.7780,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,107591,0 +252,9.8125,159.9202,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,109525,0 +253,9.9451,159.3626,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,110178,0 +254,9.8359,159.5870,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,111467,0 +255,10.1846,159.1919,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107504,0 +256,9.9537,159.3414,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,89936,0 +257,10.0961,159.4103,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,105501,0 +258,9.8284,159.3907,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,106095,0 +259,9.6649,159.4346,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,105624,0 +260,10.1230,159.2250,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,107901,0 +261,10.1999,158.8600,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,106512,0 +262,9.8310,159.0470,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107289,0 +263,9.7100,161.6946,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,105346,0 +264,9.8699,161.4828,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,94763,0 +265,9.6696,161.5670,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,103609,0 +266,9.7558,161.5248,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105963,0 +267,9.9543,161.2919,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,104213,0 +268,20.4775,147.7843,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,106817,0 +269,10.2377,158.7793,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107085,0 +270,9.8320,159.0392,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,109716,0 +271,10.0624,158.9617,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,104696,0 +272,10.0292,159.2836,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,92867,0 +273,9.9518,159.1572,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107823,0 +274,9.7784,159.0741,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,106592,0 +275,9.8893,158.7798,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,104422,0 +276,9.7784,158.6001,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,107836,0 +277,9.9502,158.1889,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,106772,0 +278,10.0542,157.8946,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106074,0 +279,10.0943,158.0490,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,103208,0 +280,9.7621,158.7996,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,93798,0 +281,9.8050,158.7836,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105426,0 +282,9.6340,158.7447,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,105713,0 +283,9.7275,159.1517,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105412,0 +284,9.8166,159.1466,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107906,0 +285,10.0797,158.6555,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,107651,0 +286,10.0587,158.5944,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,110279,0 +287,9.7806,159.0803,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,104520,0 +288,10.0545,158.5268,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,88566,0 +289,9.7332,158.9689,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106983,0 +290,9.8870,158.8150,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105479,0 +291,9.8648,159.2559,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105837,0 +292,10.0431,158.9359,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,108845,0 +293,9.8219,159.1249,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106541,0 +294,9.8864,159.0646,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,107094,0 +295,9.8447,159.3512,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,104749,0 +296,9.7885,159.0978,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,93878,0 +297,10.2735,158.7983,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,104349,0 +298,9.9717,161.8621,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,106036,0 +299,9.5767,164.9550,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,104606,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.txt new file mode 100644 index 0000000..7d68f23 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=h264 +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.988 +avg_encode_latency_ms=114.343 +p95_encode_latency_ms=159.438 +max_encode_latency_ms=164.955 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=32037694 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.csv new file mode 100644 index 0000000..4f1d267 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,19.6939,55.6874,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12902 +1,17.5834,8.3335,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +2,17.5465,8.3860,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +3,16.7286,8.4492,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +4,17.3478,8.3610,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +5,21.8175,8.3760,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +6,17.6133,8.5174,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +7,17.3110,8.1728,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +8,17.1925,8.0534,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +9,17.1998,8.0742,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +10,17.1778,7.9835,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +11,17.4093,7.8865,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +12,17.3184,8.0956,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +13,17.2738,7.8858,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +14,17.5735,7.9729,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +15,17.1652,7.9914,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +16,17.7674,7.8734,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +17,16.6824,7.9303,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +18,17.4925,8.0771,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +19,17.2999,7.9667,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +20,17.3443,7.7291,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +21,17.4474,8.7990,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +22,17.3295,7.7576,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +23,17.2225,7.9882,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +24,17.5470,7.7858,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +25,17.5143,7.8957,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +26,17.1991,7.9850,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +27,17.2469,7.9756,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +28,17.8280,7.5687,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +29,16.8717,7.9913,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +30,17.7441,7.8582,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +31,16.6973,7.9496,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +32,16.8008,8.1460,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +33,17.5664,8.0944,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +34,17.3646,7.6949,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +35,17.5726,7.6751,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +36,17.4021,7.9733,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +37,17.5587,8.0371,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +38,17.2524,8.0627,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +39,16.8976,7.8467,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +40,17.2200,8.0790,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +41,17.1516,7.9145,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +42,17.5742,8.0651,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +43,17.2662,8.1790,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +44,17.8374,8.3843,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +45,16.6555,8.1381,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +46,17.3057,7.9544,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +47,17.1680,8.4770,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +48,17.2872,8.6865,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +49,17.7287,8.2152,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +50,16.9913,8.0157,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +51,17.4975,7.9345,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +52,17.1617,7.8914,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +53,17.6184,7.8669,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +54,17.8072,7.9728,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +55,17.2405,7.9136,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +56,17.4125,7.9132,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +57,17.4177,7.8097,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +58,17.6016,7.8189,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +59,17.6823,8.0119,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +60,17.8122,7.9693,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +61,16.9103,7.9827,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +62,17.6484,8.0100,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +63,17.8284,7.6808,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +64,17.1212,8.1445,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +65,17.5236,7.9052,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +66,17.3363,7.8549,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +67,17.3805,7.8916,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +68,17.5516,8.0962,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +69,16.7249,7.9254,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +70,17.3695,8.4755,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +71,16.9578,8.3983,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +72,17.4868,8.2551,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +73,17.5271,8.4531,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +74,17.3943,8.2539,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +75,16.9408,8.3551,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +76,17.4858,8.5052,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +77,17.3274,8.3351,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +78,16.8592,8.5943,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +79,17.3471,8.3932,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +80,17.1742,8.6138,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +81,17.8666,8.6750,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +82,17.9616,8.3000,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +83,17.1236,8.3962,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +84,17.1203,8.2095,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +85,17.3274,8.4945,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +86,17.3302,8.9149,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +87,17.2213,8.3928,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +88,17.1918,7.7481,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +89,17.9425,8.6556,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +90,17.2429,8.4834,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +91,17.5443,8.3193,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +92,16.9026,8.3698,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +93,17.4425,8.2958,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +94,17.8447,8.2210,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +95,16.9677,8.4004,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +96,17.6286,8.1982,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +97,17.1780,7.6644,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +98,17.6078,7.7883,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +99,17.4086,7.9822,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +100,17.3654,8.0205,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +101,17.4185,7.8254,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +102,17.1891,7.7942,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +103,17.7068,7.9540,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +104,16.8254,7.8894,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +105,16.8932,8.5612,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +106,16.9705,7.7555,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +107,17.5879,7.8788,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +108,17.1445,7.8633,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +109,17.2346,8.0199,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +110,16.7076,8.0805,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +111,17.0039,8.1646,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +112,17.6684,7.9285,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +113,17.1840,8.0496,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +114,17.1329,8.2258,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +115,17.5165,8.2065,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +116,17.9048,7.8245,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +117,17.4205,7.9933,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +118,17.2273,7.8393,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +119,17.3612,7.9785,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +120,17.1389,7.8254,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +121,17.5057,8.0582,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +122,17.2856,7.8384,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +123,17.3830,7.9070,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +124,17.7075,7.7305,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +125,17.3659,8.2343,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +126,17.7612,7.6457,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +127,17.4132,7.8275,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +128,17.6951,7.8005,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +129,17.1525,8.0049,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +130,17.5585,7.8953,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +131,17.3987,8.1003,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +132,17.1279,7.8403,0.0002,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +133,17.5688,8.0742,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +134,16.9138,8.0610,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +135,17.5392,7.8070,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +136,17.2844,8.0683,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +137,17.2089,7.9225,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +138,17.3259,7.8234,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +139,17.3113,7.8625,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +140,17.8377,7.9443,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +141,17.5200,8.2095,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +142,17.3614,8.1450,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +143,17.6170,7.7345,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +144,17.6719,7.8938,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +145,17.4688,7.5500,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +146,17.0024,8.6658,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +147,17.4117,7.8264,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +148,17.0682,8.5739,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +149,17.6166,8.4062,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +150,17.2931,8.3386,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +151,16.9091,8.1968,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +152,17.2817,8.2600,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +153,17.2117,7.9453,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +154,17.0786,7.9780,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +155,16.8433,7.7211,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +156,17.1060,8.0464,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +157,17.2004,8.2643,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +158,19.1057,8.2250,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +159,21.1374,8.2665,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +160,17.3651,8.1907,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +161,17.5620,8.5208,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +162,17.7544,8.2896,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +163,16.9655,8.2506,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +164,17.3644,8.0766,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +165,17.1052,8.4882,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +166,17.2970,8.0835,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +167,16.9913,8.1311,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +168,16.9923,7.9545,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +169,17.5163,7.9153,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +170,17.0441,8.0148,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +171,17.6914,7.9684,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +172,17.2838,7.8443,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +173,17.7220,7.9322,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +174,17.6374,8.2017,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +175,17.3239,8.5643,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +176,16.9304,8.2054,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +177,17.0549,8.3480,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +178,17.7127,8.2777,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +179,17.2460,8.1999,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +180,17.2064,8.0490,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +181,17.4770,8.0378,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +182,18.0059,7.9095,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +183,17.2524,7.9444,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +184,16.9477,7.9457,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +185,17.4008,8.5196,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +186,17.2756,7.9504,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +187,17.3358,7.7876,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +188,18.0491,7.8881,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +189,17.5439,7.8090,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +190,17.4868,7.4388,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +191,17.0475,8.2465,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +192,17.4904,7.8793,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +193,17.0870,8.1256,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +194,17.9803,7.7692,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +195,17.5890,7.7808,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +196,17.2058,8.0570,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +197,17.2700,7.9662,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +198,16.9660,7.8241,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +199,17.5218,8.0701,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +200,17.2349,8.0848,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +201,19.6931,8.7777,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +202,19.8356,8.7585,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +203,17.4798,8.3803,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +204,17.7589,7.9163,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +205,17.9330,8.6142,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +206,17.3005,8.2025,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +207,17.5855,8.2229,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +208,16.8305,8.3893,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +209,17.7064,8.2029,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +210,17.3212,8.6838,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +211,17.5279,8.1151,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +212,18.3346,8.4329,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +213,18.2218,8.4110,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +214,17.6018,8.0962,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +215,20.3482,8.2945,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +216,19.7096,7.7753,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +217,18.4265,7.9045,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +218,17.9776,7.9840,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +219,18.1679,7.9090,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +220,17.4642,8.7182,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +221,17.8187,8.0580,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +222,18.0527,8.2822,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +223,19.2931,8.0921,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +224,17.6955,8.4425,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +225,57.2849,17.8200,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +226,28.3685,9.0264,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +227,22.2693,9.7416,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +228,20.7371,8.9083,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +229,19.4953,8.3691,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +230,19.5932,8.6999,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +231,19.5381,8.4833,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +232,20.2641,8.5518,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +233,19.7906,8.5058,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +234,18.7417,8.3724,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +235,18.6245,8.1773,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +236,18.4643,8.1836,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +237,20.0145,8.8234,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +238,22.1280,8.2645,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +239,19.4803,8.3046,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +240,42.0999,15.4978,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +241,31.7989,7.8757,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +242,22.4962,8.5482,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +243,21.3503,8.5429,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +244,20.9745,8.5130,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +245,21.8056,8.5436,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +246,22.3509,8.1075,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +247,21.6083,8.5027,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +248,22.8392,8.7581,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +249,22.5865,8.5953,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +250,21.6245,8.3550,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +251,21.5407,8.4455,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +252,19.2662,8.6678,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +253,28.6097,8.5675,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +254,21.1817,8.4980,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +255,26.6763,8.1064,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +256,19.3719,7.7867,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +257,19.4770,7.8508,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +258,20.3908,7.6245,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +259,20.5060,7.4390,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +260,19.3947,7.6223,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +261,19.2347,7.9688,0.0001,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +262,19.7526,7.8450,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +263,20.7703,8.1334,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +264,19.6462,8.0835,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +265,18.4789,7.8633,0.0002,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +266,19.2125,7.5549,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +267,18.1348,7.8433,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +268,18.3479,7.9037,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +269,18.5218,7.7250,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +270,17.9861,7.8838,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +271,18.7160,7.4319,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +272,18.6553,7.8095,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +273,18.6028,7.7133,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +274,18.3959,7.5987,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +275,18.1148,7.6197,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +276,18.2992,7.7670,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +277,18.1612,7.7617,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +278,18.0966,7.6375,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +279,17.8914,7.6815,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +280,17.8855,7.5192,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +281,18.6687,7.7656,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +282,17.7368,7.7832,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +283,18.8973,8.1376,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +284,18.1128,7.6424,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +285,18.6429,7.9261,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +286,18.8136,8.2005,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +287,17.9915,7.9810,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +288,18.5437,7.7625,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +289,18.0751,7.9675,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +290,19.2627,8.0928,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +291,18.7682,8.3605,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +292,19.9235,7.8646,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +293,18.6043,7.7373,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +294,18.4110,7.8714,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +295,18.4997,7.7253,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +296,18.3987,7.8487,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +297,17.8068,7.5157,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +298,18.2965,7.4714,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 +299,18.8466,7.5800,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,-12915 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.txt new file mode 100644 index 0000000..3f9ca88 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=5 +codec=h264 +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=300 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=18.309 +avg_encode_latency_ms=8.309 +p95_encode_latency_ms=8.684 +max_encode_latency_ms=55.687 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=0 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.csv new file mode 100644 index 0000000..034c73f --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,7.1459,107.6294,0.0289,0.0000,0,0,0.0000,0,0.0000,0,1,0,71222,0 +1,4.7006,73.1158,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,49887,0 +2,4.6405,78.3506,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,55706,0 +3,4.4110,84.5036,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,49722,0 +4,4.5963,85.0648,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,50364,0 +5,4.5027,48.4459,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,48474,0 +6,4.6428,48.0498,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,48981,0 +7,4.5431,47.9130,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,48501,0 +8,4.7191,47.6496,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,41175,0 +9,4.5173,47.8424,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,47375,0 +10,4.4726,47.9228,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,47954,0 +11,4.6682,41.5658,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,47018,0 +12,4.6162,35.0210,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45135,0 +13,4.5161,27.9510,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,46714,0 +14,4.7117,21.6587,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47365,0 +15,4.4530,15.7970,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,44938,0 +16,4.4117,13.4213,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,37065,0 +17,4.5091,13.1666,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45084,0 +18,4.6209,12.9253,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,44933,0 +19,4.4575,13.0172,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45590,0 +20,4.6439,13.0669,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45078,0 +21,4.4478,13.0556,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,44788,0 +22,4.6261,12.9953,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45559,0 +23,4.5511,12.8209,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45825,0 +24,4.3443,13.3954,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,41371,0 +25,4.5317,13.2076,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45189,0 +26,4.5523,13.6817,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,45434,0 +27,10.1649,13.5097,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46157,0 +28,7.6726,13.3219,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45333,0 +29,4.5619,13.1336,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,46027,0 +30,4.4810,14.5508,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,45507,0 +31,6.4662,13.6984,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,46761,0 +32,4.9347,13.6143,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,32376,0 +33,4.4517,13.0589,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,46809,0 +34,4.4841,13.5243,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,45526,0 +35,4.4702,13.5640,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,44258,0 +36,4.4497,13.2230,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44547,0 +37,4.4877,13.4319,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,45164,0 +38,4.5953,13.3601,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45104,0 +39,4.4146,13.0996,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45378,0 +40,4.5874,12.9950,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,39627,0 +41,4.3845,12.8927,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45220,0 +42,4.4742,13.3105,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45548,0 +43,4.4736,13.3699,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,44494,0 +44,4.5751,13.3811,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,43902,0 +45,4.5159,12.8971,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,44709,0 +46,4.5839,13.2791,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,45362,0 +47,4.5793,12.9631,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44130,0 +48,4.4768,13.3696,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,37182,0 +49,4.4229,13.0691,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45072,0 +50,4.3550,13.4141,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43600,0 +51,4.5581,13.0657,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44364,0 +52,4.8571,13.4724,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44401,0 +53,4.3945,13.2049,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,43105,0 +54,4.4520,13.1167,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,45445,0 +55,4.8419,13.3205,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44714,0 +56,4.6726,12.9605,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,40305,0 +57,4.5830,13.4092,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44454,0 +58,4.5507,13.5556,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,44566,0 +59,4.4926,13.2962,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44226,0 +60,4.7678,12.0367,0.0194,0.0000,0,0,0.0000,0,0.0000,0,1,0,83955,0 +61,4.5360,13.0708,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,44319,0 +62,4.4234,13.3622,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,48132,0 +63,4.4316,13.5959,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,49759,0 +64,4.4683,13.0230,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +65,4.3531,13.4195,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,49837,0 +66,4.7372,13.2159,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48984,0 +67,4.6037,13.0742,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46485,0 +68,4.7028,13.2000,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46287,0 +69,4.4540,13.2091,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47508,0 +70,4.4238,13.4146,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,47579,0 +71,4.4450,13.0083,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,47639,0 +72,4.3575,13.2507,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,42357,0 +73,4.4890,13.4140,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,47290,0 +74,4.5205,13.3305,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46600,0 +75,4.5542,13.3459,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45453,0 +76,4.4587,13.2457,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44284,0 +77,4.8215,13.0476,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45412,0 +78,4.7445,13.2713,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47099,0 +79,4.4890,13.0083,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,44138,0 +80,4.3653,13.0260,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,38551,0 +81,4.6573,13.3742,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46018,0 +82,4.4458,13.4535,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,43849,0 +83,4.5305,12.9993,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,45542,0 +84,4.3167,13.6343,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,44668,0 +85,4.6412,13.5062,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,43714,0 +86,4.3291,13.5707,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44951,0 +87,4.8474,13.3832,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,46255,0 +88,4.3210,13.3796,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,42114,0 +89,4.4311,12.9830,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44664,0 +90,4.4328,13.0397,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44900,0 +91,4.4145,12.9258,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44528,0 +92,4.2982,13.0882,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,43866,0 +93,4.3113,12.8813,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45664,0 +94,4.4051,13.2988,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,45486,0 +95,4.4283,13.2467,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45518,0 +96,4.3295,13.2213,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,33328,0 +97,4.4625,13.0825,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,47667,0 +98,4.3420,13.0914,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,48164,0 +99,4.3135,13.4317,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46011,0 +100,4.5130,13.2875,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,46682,0 +101,4.4986,13.0397,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46322,0 +102,4.4697,12.9828,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,47465,0 +103,4.4750,13.1608,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,47103,0 +104,4.4802,13.1415,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,40950,0 +105,4.3654,13.1435,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48371,0 +106,4.4252,13.1149,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46967,0 +107,4.4314,13.1837,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,47255,0 +108,4.4091,13.0531,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46608,0 +109,4.5002,13.2005,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,47372,0 +110,4.4325,13.0427,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,46914,0 +111,4.5891,13.4740,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,46028,0 +112,4.5285,13.0820,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,40472,0 +113,4.3708,13.2094,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47598,0 +114,4.4547,13.3360,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,47802,0 +115,4.5290,13.0650,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46879,0 +116,4.4401,13.4164,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46396,0 +117,4.6826,13.0477,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,46440,0 +118,4.5344,13.2739,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,47409,0 +119,4.4115,13.3732,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,47638,0 +120,4.3733,12.2195,0.0129,0.0000,0,0,0.0000,0,0.0000,0,1,0,81833,0 +121,4.3411,13.2859,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45364,0 +122,4.5896,13.3194,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,49924,0 +123,4.8438,13.6060,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,51026,0 +124,4.3537,13.3461,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,50329,0 +125,4.4742,13.2436,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,51765,0 +126,4.6871,13.2895,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,51818,0 +127,4.6471,13.4462,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,51577,0 +128,4.4486,13.3910,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,40836,0 +129,4.4825,13.3581,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,52261,0 +130,4.4180,13.5777,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,51256,0 +131,4.4001,13.5457,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,47729,0 +132,4.4467,13.3938,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,48665,0 +133,4.5195,13.5130,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49520,0 +134,4.5633,13.3778,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,50316,0 +135,4.6650,13.2361,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,49446,0 +136,4.4565,13.4636,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,42073,0 +137,4.3974,13.4456,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49193,0 +138,4.2780,13.4244,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,48944,0 +139,4.3824,13.1427,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,49031,0 +140,4.6705,13.1873,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47702,0 +141,4.5767,13.2430,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48216,0 +142,4.3429,13.0175,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49487,0 +143,4.3598,13.5460,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,47255,0 +144,4.2842,13.4358,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,40732,0 +145,4.5818,13.5411,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,48588,0 +146,4.4453,13.4202,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48222,0 +147,4.3145,13.3205,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48108,0 +148,4.3317,13.1003,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47634,0 +149,4.3606,13.3177,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,46377,0 +150,4.5100,13.2490,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48836,0 +151,4.3705,13.4076,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48642,0 +152,4.2854,13.4700,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,43988,0 +153,4.4193,13.4576,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,47429,0 +154,4.3791,13.3596,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47671,0 +155,4.3705,13.0743,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47890,0 +156,4.4270,13.0286,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,48033,0 +157,4.2307,13.4213,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49342,0 +158,4.3985,13.3761,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,48647,0 +159,4.5198,13.4943,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,49803,0 +160,4.4305,13.2427,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,34743,0 +161,4.2717,13.5357,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,50587,0 +162,4.2620,13.2768,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48300,0 +163,4.4097,13.2888,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48025,0 +164,4.4063,13.4539,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48018,0 +165,4.4157,13.5808,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,47846,0 +166,4.6593,13.3433,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49055,0 +167,4.5037,13.2689,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48640,0 +168,4.4137,13.5230,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,42257,0 +169,4.4967,13.2025,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48691,0 +170,4.6117,12.9495,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49487,0 +171,4.4896,13.1897,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48826,0 +172,4.4345,13.5864,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48273,0 +173,4.3811,13.4642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49233,0 +174,4.4665,13.5185,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,49103,0 +175,4.3416,13.3593,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47809,0 +176,4.4487,13.7385,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,40782,0 +177,4.5736,13.0804,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,49059,0 +178,4.3319,12.9855,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,47705,0 +179,4.2430,12.9861,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,48088,0 +180,4.7824,11.8438,0.0141,0.0000,0,0,0.0000,0,0.0000,0,1,0,84902,0 +181,4.5974,13.0243,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46069,0 +182,4.8822,29.3081,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,50732,0 +183,4.4878,37.1054,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,52784,0 +184,4.3799,46.9843,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,48841,0 +185,4.4235,56.7817,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,50965,0 +186,4.5347,68.7543,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,51196,0 +187,4.3679,76.1956,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,50908,0 +188,4.5314,87.0639,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,49582,0 +189,4.3530,97.4359,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,52095,0 +190,4.6410,107.4125,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,50727,0 +191,4.4269,118.4966,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,52015,0 +192,4.5927,129.6740,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,37420,0 +193,4.4797,129.5455,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,52133,0 +194,4.5870,129.2244,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,51523,0 +195,4.5297,129.3050,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48723,0 +196,4.5002,129.1976,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,49811,0 +197,4.4525,129.3481,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49425,0 +198,4.4787,129.3781,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,50945,0 +199,4.4020,129.8079,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,50356,0 +200,4.6701,129.6400,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,43265,0 +201,4.4865,129.7997,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,50314,0 +202,4.6348,129.6644,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,49523,0 +203,4.6116,129.7012,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49786,0 +204,4.6665,129.3958,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,48198,0 +205,4.6241,129.0594,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49503,0 +206,4.6820,129.1370,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,49668,0 +207,4.3775,129.4716,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,47801,0 +208,4.4867,129.4922,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,41833,0 +209,4.5705,129.4526,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,49809,0 +210,4.3913,129.9046,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,47558,0 +211,4.4453,129.9277,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48611,0 +212,4.7374,129.7258,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48012,0 +213,4.4548,129.8735,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,47142,0 +214,4.6711,129.5070,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48765,0 +215,4.5027,129.3607,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49713,0 +216,5.1686,128.5186,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45369,0 +217,4.5322,129.3715,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,47769,0 +218,4.5005,129.4143,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,48123,0 +219,4.6043,129.2997,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48534,0 +220,4.6193,129.5038,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,47797,0 +221,4.5778,129.5730,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,48619,0 +222,4.4793,129.6020,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,48964,0 +223,4.5235,129.5095,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,49634,0 +224,4.4086,129.7491,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,34630,0 +225,5.0728,129.1900,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,49842,0 +226,4.4384,129.7797,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,49202,0 +227,4.4277,129.7429,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,46722,0 +228,4.9168,129.2091,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47090,0 +229,4.4551,129.7158,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48006,0 +230,5.1103,128.9690,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47889,0 +231,4.4480,129.5701,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,48454,0 +232,4.7596,129.2007,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,42540,0 +233,4.8301,129.3190,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,47482,0 +234,4.5305,129.6875,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,48113,0 +235,4.7793,129.4263,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,48274,0 +236,4.9212,129.3724,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46608,0 +237,4.8089,129.6313,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,47788,0 +238,4.4799,129.9262,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,48210,0 +239,4.4932,129.6830,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,46679,0 +240,4.5720,125.7973,0.0231,0.0000,0,0,0.0000,0,0.0000,0,1,0,77014,0 +241,4.5063,125.7790,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46857,0 +242,4.5110,125.6087,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,49500,0 +243,4.6107,125.5567,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,51535,0 +244,4.9818,125.0459,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49062,0 +245,4.6252,129.3017,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,50094,0 +246,4.4436,129.5072,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,49078,0 +247,5.6793,128.3832,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,50714,0 +248,4.9112,129.4895,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,43874,0 +249,4.6490,129.7701,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,49181,0 +250,4.5448,129.7539,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,49852,0 +251,4.8155,129.5815,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,49456,0 +252,4.5866,129.6573,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,47535,0 +253,4.5728,129.4285,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,49855,0 +254,4.5106,129.9178,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,48904,0 +255,4.8863,129.5532,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,49596,0 +256,4.4798,129.7260,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,36187,0 +257,4.4828,129.8603,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,47065,0 +258,5.3347,129.0956,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,46510,0 +259,4.5301,129.6620,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,44831,0 +260,4.4790,129.8932,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45142,0 +261,4.6427,129.9392,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45602,0 +262,4.5273,130.1147,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45268,0 +263,4.5672,130.0412,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,46570,0 +264,4.5173,130.1153,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,40056,0 +265,4.3782,130.3337,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,45092,0 +266,4.5871,130.0209,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,45992,0 +267,4.4865,129.9674,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45628,0 +268,4.4510,130.0223,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,43705,0 +269,4.6565,129.8233,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,44623,0 +270,4.4868,129.9477,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,45409,0 +271,4.5211,129.9519,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,44272,0 +272,4.5728,129.7647,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,37691,0 +273,4.5383,129.7200,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,45069,0 +274,4.5626,129.5731,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,43451,0 +275,4.5493,129.6267,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,44855,0 +276,4.5040,129.9424,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,43993,0 +277,4.4337,130.0880,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,42740,0 +278,4.5240,129.9062,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,45241,0 +279,4.4878,129.8587,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44404,0 +280,4.9800,129.2862,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,40727,0 +281,4.8537,129.1850,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,43807,0 +282,4.5767,129.3456,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44683,0 +283,4.6537,129.4719,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,45142,0 +284,5.0058,129.1697,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,43927,0 +285,4.5713,129.6492,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45485,0 +286,4.5498,129.6787,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45525,0 +287,5.8703,128.3034,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,46041,0 +288,4.6878,129.4523,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,32372,0 +289,4.4190,129.6103,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,46638,0 +290,4.5384,129.5472,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,44210,0 +291,4.4673,129.6570,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,43605,0 +292,4.9116,129.3153,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,44266,0 +293,4.5100,129.5477,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,44224,0 +294,5.1477,129.1434,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45468,0 +295,4.5741,129.6398,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44887,0 +296,5.1518,129.2955,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,38762,0 +297,4.6821,129.9216,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,45883,0 +298,4.4691,132.5016,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44590,0 +299,4.6713,134.4300,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44829,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.txt new file mode 100644 index 0000000..cdb2f09 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.589 +avg_encode_latency_ms=59.218 +p95_encode_latency_ms=129.926 +max_encode_latency_ms=134.430 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=14095734 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.csv new file mode 100644 index 0000000..75b929c --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0237,109.5038,0.0350,0.0000,0,0,0.0000,0,0.0000,0,1,0,112456,0 +1,7.1155,80.1417,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,80747,0 +2,7.0980,88.5195,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,89457,0 +3,7.6312,96.2811,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,79879,0 +4,7.3790,104.2939,0.0263,0.0000,0,0,0.0000,0,0.0000,0,0,0,80419,0 +5,7.1967,69.9446,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,78490,0 +6,6.9031,69.9388,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,77680,0 +7,7.1814,69.5186,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,77704,0 +8,6.9688,69.7136,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,64797,0 +9,7.2160,69.3983,0.0319,0.0000,0,0,0.0000,0,0.0000,0,0,0,75887,0 +10,7.1035,69.7620,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,76041,0 +11,7.0029,69.9543,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,74687,0 +12,7.0529,70.0657,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,73279,0 +13,7.1102,70.1833,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,74111,0 +14,6.8706,70.4026,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,74915,0 +15,7.0813,70.0364,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71657,0 +16,7.0853,70.1371,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,60375,0 +17,7.1009,70.0080,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73301,0 +18,7.2139,69.7709,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72982,0 +19,7.1371,69.8989,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73412,0 +20,6.8655,70.2800,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72755,0 +21,7.0893,70.1251,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72660,0 +22,6.8619,70.5344,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72878,0 +23,7.1370,70.3244,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74472,0 +24,7.0201,70.5783,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,66682,0 +25,6.7911,70.7538,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73826,0 +26,6.9823,70.4565,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73427,0 +27,7.1317,70.2300,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74838,0 +28,6.9889,70.3648,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,71974,0 +29,7.0695,69.9279,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74140,0 +30,7.0570,70.1530,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74245,0 +31,7.1688,70.3766,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,75685,0 +32,6.8947,70.5954,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,52923,0 +33,6.9754,70.9849,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,76181,0 +34,6.8489,71.4360,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73665,0 +35,7.1732,69.8841,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,70089,0 +36,6.9360,68.8061,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70663,0 +37,6.9543,67.4564,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,73480,0 +38,6.6080,66.3670,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,72753,0 +39,6.6562,65.0132,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73530,0 +40,6.8338,63.3990,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,63949,0 +41,7.0292,61.8299,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73928,0 +42,6.9931,61.4446,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74581,0 +43,7.2458,59.8922,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72925,0 +44,7.2252,58.4792,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70514,0 +45,7.3719,57.7625,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,72778,0 +46,6.9139,56.0629,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73882,0 +47,6.9139,55.9585,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,70734,0 +48,6.7868,53.6048,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,60131,0 +49,7.0674,52.4149,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72882,0 +50,6.8129,51.9950,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,70946,0 +51,7.1121,49.9720,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71294,0 +52,7.2265,48.8200,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,71164,0 +53,6.7794,48.0535,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,69600,0 +54,7.5679,45.8989,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72251,0 +55,7.1842,45.0908,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75153,0 +56,6.6621,45.1751,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,65894,0 +57,7.3200,41.7665,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72015,0 +58,6.7895,41.4647,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71560,0 +59,7.0694,39.6030,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71942,0 +60,6.7798,36.8474,0.0246,0.0000,0,0,0.0000,0,0.0000,0,1,0,130558,0 +61,6.9591,35.2155,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,70304,0 +62,6.8845,33.9569,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76332,0 +63,6.8598,32.6893,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,81199,0 +64,7.0472,30.8693,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,65283,0 +65,7.1097,31.4685,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,81276,0 +66,6.8946,28.0909,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,78457,0 +67,7.1463,27.0643,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74278,0 +68,6.9170,25.9281,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75057,0 +69,6.8122,24.6330,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,75078,0 +70,6.5595,25.3682,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,76315,0 +71,6.7657,21.7220,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,77016,0 +72,6.8159,22.9629,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,67695,0 +73,6.8536,19.6151,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76093,0 +74,6.5988,19.2056,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,75979,0 +75,6.8031,18.7917,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75482,0 +76,6.8403,18.9273,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72178,0 +77,6.8291,18.5813,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73671,0 +78,7.0930,18.7011,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76256,0 +79,7.1636,18.3842,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,71622,0 +80,6.7528,18.7500,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,62642,0 +81,6.8745,18.9307,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73327,0 +82,7.2245,19.0480,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,71244,0 +83,6.9363,18.9594,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,72943,0 +84,6.6288,19.2503,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,72772,0 +85,7.0120,19.6269,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +86,6.9408,18.9002,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +87,6.8870,18.8179,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73592,0 +88,6.8337,19.7467,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,67522,0 +89,6.9776,18.4730,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,73257,0 +90,6.7176,19.4211,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73337,0 +91,6.6770,18.5616,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +92,7.0406,18.6941,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70854,0 +93,6.8500,18.8450,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73509,0 +94,6.5069,18.6733,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,73624,0 +95,7.1733,19.1940,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74277,0 +96,6.6075,18.5990,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,54284,0 +97,6.8716,18.8646,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74536,0 +98,6.8166,18.7497,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73969,0 +99,7.0040,19.0338,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,69845,0 +100,6.7138,18.9049,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,71224,0 +101,6.9857,19.0677,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,71675,0 +102,6.9495,19.2853,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72205,0 +103,6.7809,18.8818,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72119,0 +104,7.1615,18.5512,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,64051,0 +105,7.0801,19.1485,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74125,0 +106,6.8894,18.6942,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,72937,0 +107,6.9814,18.6318,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72627,0 +108,7.4397,18.8291,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70921,0 +109,7.0526,18.5128,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72471,0 +110,6.8169,18.8547,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,73026,0 +111,7.1646,18.7934,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70715,0 +112,6.9653,18.7184,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,63306,0 +113,7.0781,18.9902,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73314,0 +114,7.1017,18.7376,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70597,0 +115,7.1024,18.7134,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +116,6.7361,18.5359,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,72258,0 +117,6.8893,18.7897,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70962,0 +118,6.8032,18.6560,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72352,0 +119,6.8611,18.9119,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74922,0 +120,6.8682,16.7076,0.0280,0.0000,0,0,0.0000,0,0.0000,0,1,0,127744,0 +121,6.7492,19.1117,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,69694,0 +122,6.8920,18.5508,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76349,0 +123,6.9795,18.5865,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,78795,0 +124,6.7989,18.8475,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76246,0 +125,6.7477,18.6483,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,79268,0 +126,6.8435,18.5392,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,78917,0 +127,6.6915,18.8491,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,78593,0 +128,6.8778,18.6500,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,63367,0 +129,7.1115,18.8823,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,81497,0 +130,6.8146,18.6339,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,78992,0 +131,7.3007,19.2548,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,76537,0 +132,7.2845,19.4103,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,77589,0 +133,6.9906,19.7746,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,78333,0 +134,7.2756,19.4793,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,78752,0 +135,7.0985,18.9383,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,79371,0 +136,6.7485,18.8007,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,68337,0 +137,6.8005,18.9333,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77346,0 +138,7.4419,19.0025,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,76950,0 +139,6.5653,18.8813,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78223,0 +140,6.7908,18.8336,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76812,0 +141,6.8336,19.5049,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,77947,0 +142,6.9035,19.4239,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77942,0 +143,6.8975,18.6959,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75222,0 +144,6.7270,18.7050,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,64646,0 +145,6.7872,18.7706,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,75826,0 +146,6.9962,19.4974,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,76061,0 +147,6.9134,19.3212,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75566,0 +148,6.6754,19.0027,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74913,0 +149,6.8577,19.1206,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73725,0 +150,6.8818,19.2931,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,76647,0 +151,6.7901,19.2191,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,77095,0 +152,6.9069,18.7258,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,70623,0 +153,6.6741,18.9489,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,74958,0 +154,6.8818,18.9272,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +155,6.6690,18.4692,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76488,0 +156,6.8268,19.1370,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75142,0 +157,6.7124,19.6189,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,77369,0 +158,6.8426,19.7292,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77158,0 +159,6.5583,19.1759,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,78162,0 +160,6.8032,19.0480,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,55334,0 +161,6.8288,18.7896,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,79377,0 +162,6.7603,18.7306,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,76795,0 +163,6.6962,18.4658,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73508,0 +164,6.9047,18.3984,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,75621,0 +165,6.5937,18.7044,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75652,0 +166,7.0419,19.1209,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,77936,0 +167,7.0228,18.3356,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78331,0 +168,6.9794,18.8216,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,66639,0 +169,6.5716,19.3705,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,77752,0 +170,6.7986,18.9348,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76913,0 +171,7.2941,18.4112,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76182,0 +172,6.9932,20.0042,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +173,6.8585,18.9926,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,76453,0 +174,6.8753,18.9000,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,76220,0 +175,7.1563,19.3886,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74225,0 +176,6.7398,18.5240,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,62919,0 +177,6.7983,18.8998,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,76932,0 +178,6.8135,19.0676,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,73698,0 +179,6.8759,18.8859,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74968,0 +180,7.1467,17.1019,0.0390,0.0000,0,0,0.0000,0,0.0000,0,1,0,133311,0 +181,6.7247,19.1174,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70364,0 +182,6.7592,40.1368,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,77682,0 +183,6.8310,65.3347,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,81822,0 +184,6.8818,86.8105,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76611,0 +185,6.8874,112.7709,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,80220,0 +186,6.8848,134.6575,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,79331,0 +187,6.9091,159.1322,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,80821,0 +188,6.9970,183.2785,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,77936,0 +189,6.8621,196.2392,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,80335,0 +190,7.0630,196.0480,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,80051,0 +191,7.4520,195.3273,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,80794,0 +192,7.1292,195.4277,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,57115,0 +193,7.0515,195.2248,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,82032,0 +194,7.1795,194.4682,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,80336,0 +195,7.3370,194.3054,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76681,0 +196,6.7968,195.1746,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,77595,0 +197,6.9196,195.2369,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,77638,0 +198,7.9366,194.3463,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,79631,0 +199,7.1589,195.4890,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,79232,0 +200,7.1973,195.3651,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,68216,0 +201,7.2045,195.2467,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,79505,0 +202,7.0646,195.3785,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,78122,0 +203,7.0981,195.5619,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,77674,0 +204,7.0443,195.8494,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,75389,0 +205,7.4134,195.6176,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,76409,0 +206,6.9267,196.2713,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76328,0 +207,6.9108,196.3620,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74941,0 +208,6.9036,196.4254,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,64670,0 +209,7.1192,195.9432,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76011,0 +210,7.3585,195.6686,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74126,0 +211,6.9405,195.8559,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75635,0 +212,7.1032,195.6374,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74020,0 +213,7.0730,195.5873,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72255,0 +214,7.1285,195.7757,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74962,0 +215,6.9940,195.9230,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +216,7.3948,195.5039,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,68750,0 +217,7.3177,195.7356,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74207,0 +218,7.4425,195.6608,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,74525,0 +219,8.0076,195.0994,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74671,0 +220,7.0242,196.1340,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,74286,0 +221,7.2179,195.7944,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74646,0 +222,7.5057,195.7452,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,74505,0 +223,6.8022,196.2788,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76419,0 +224,7.7239,195.3842,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,54261,0 +225,7.0315,196.0021,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77808,0 +226,7.0768,196.0035,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,75270,0 +227,7.0304,195.6645,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72570,0 +228,7.1765,195.4758,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73527,0 +229,7.0455,195.2286,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72960,0 +230,6.8641,195.9433,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73716,0 +231,6.8265,196.0644,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74294,0 +232,7.0308,196.0074,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,65498,0 +233,6.9552,196.0067,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,74349,0 +234,7.4203,195.8168,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,73996,0 +235,7.6285,195.0506,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73802,0 +236,7.0810,195.5684,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72521,0 +237,6.8925,195.6700,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73268,0 +238,7.6211,195.2015,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74314,0 +239,6.8795,196.0987,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,71779,0 +240,7.4083,189.9376,0.0279,0.0000,0,0,0.0000,0,0.0000,0,1,0,120500,0 +241,7.0931,190.1637,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,72372,0 +242,7.9312,189.1766,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,77371,0 +243,7.0286,190.1043,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,79462,0 +244,6.9193,189.7963,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76263,0 +245,7.0850,195.3040,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,77889,0 +246,7.0638,195.4910,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76934,0 +247,7.0904,195.5275,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,78875,0 +248,7.3480,195.2608,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,68402,0 +249,7.4980,195.4969,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76787,0 +250,7.3498,195.5598,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,82317,0 +251,7.0158,196.1253,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,80340,0 +252,6.8993,196.4250,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75301,0 +253,6.8790,196.5772,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,78292,0 +254,7.5084,196.0986,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,77115,0 +255,6.8689,196.6617,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,78042,0 +256,9.0122,194.5455,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,56955,0 +257,7.2615,196.0353,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76042,0 +258,7.0485,196.7250,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73748,0 +259,8.2144,195.2170,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72200,0 +260,8.7002,194.7839,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,72021,0 +261,7.8885,195.4166,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72999,0 +262,6.9616,196.5779,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72841,0 +263,7.3357,195.6152,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73409,0 +264,7.1674,196.2375,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,64471,0 +265,7.0180,196.4536,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73881,0 +266,6.9538,196.9032,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73139,0 +267,6.9680,196.8739,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72472,0 +268,6.9086,196.8135,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,69933,0 +269,7.0963,196.1741,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,71213,0 +270,7.1038,196.0367,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,72870,0 +271,8.9182,193.9731,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,71371,0 +272,7.0110,195.5967,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,60430,0 +273,7.0148,195.6062,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72639,0 +274,7.5414,195.2560,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70744,0 +275,7.0465,195.5471,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72649,0 +276,6.9316,195.6210,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72707,0 +277,7.4472,195.1601,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,69375,0 +278,7.6534,194.9850,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72755,0 +279,6.9722,195.4567,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72778,0 +280,7.1992,195.4383,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,65953,0 +281,6.9588,195.6561,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72195,0 +282,7.1304,195.5540,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71426,0 +283,7.0270,195.7802,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72635,0 +284,7.1087,195.6811,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,70785,0 +285,8.5810,194.2603,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72864,0 +286,6.9422,195.9220,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,72671,0 +287,7.0702,195.7590,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74166,0 +288,6.8716,196.0121,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,54285,0 +289,6.8620,195.9494,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,75046,0 +290,7.0018,195.9385,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,72476,0 +291,7.8789,194.6783,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,69194,0 +292,7.8852,194.7543,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71292,0 +293,6.9126,195.9579,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71868,0 +294,6.9790,195.7980,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,73182,0 +295,6.8950,196.1257,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72456,0 +296,7.0097,196.5245,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,64568,0 +297,6.9827,196.5882,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,72870,0 +298,7.8015,198.7798,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74079,0 +299,8.1051,202.0670,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73502,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.txt new file mode 100644 index 0000000..d81dc76 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.058 +avg_encode_latency_ms=96.271 +p95_encode_latency_ms=196.283 +max_encode_latency_ms=202.067 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22320881 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.csv new file mode 100644 index 0000000..8880fe2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1541,108.6544,0.0319,0.0000,0,0,0.0000,0,0.0000,0,1,0,66601,0 +1,7.0202,76.3103,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,103451,0 +2,7.1034,84.6929,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,96965,0 +3,6.9551,93.1735,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,82402,0 +4,6.5688,101.8860,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,77610,0 +5,7.4016,69.5801,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,76434,0 +6,7.0350,69.8928,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,76654,0 +7,7.1152,69.6355,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,77034,0 +8,6.7651,69.9291,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,63440,0 +9,6.8725,69.8702,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,75382,0 +10,7.0771,69.5944,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,75552,0 +11,6.8484,69.8320,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73275,0 +12,7.1796,69.6140,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,71727,0 +13,7.0711,69.8582,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72471,0 +14,7.2755,69.5765,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74089,0 +15,6.7741,70.1775,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,72136,0 +16,6.9898,69.6682,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,61102,0 +17,6.8752,69.8481,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72104,0 +18,6.9519,69.7130,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,71406,0 +19,7.0999,69.7590,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,72082,0 +20,7.2790,69.6225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71757,0 +21,7.1871,69.8449,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70616,0 +22,7.5796,69.4183,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72556,0 +23,7.1358,69.8020,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73072,0 +24,7.1422,69.6282,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,66194,0 +25,7.2003,69.5293,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70637,0 +26,6.9071,69.8745,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,70275,0 +27,6.8250,69.9402,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70897,0 +28,6.8367,70.1232,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71265,0 +29,7.4127,69.6390,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72716,0 +30,7.0766,70.0170,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73134,0 +31,7.0545,69.9386,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76688,0 +32,7.0612,69.8687,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,53171,0 +33,7.2312,68.6455,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76475,0 +34,7.3421,67.1129,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,72523,0 +35,7.3213,65.6270,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,70236,0 +36,6.8912,64.5135,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71570,0 +37,6.8230,62.9973,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,72882,0 +38,6.9351,61.3103,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73787,0 +39,7.0330,60.4154,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,72504,0 +40,7.1385,58.6712,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,63708,0 +41,6.9516,57.2764,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,73657,0 +42,7.3001,55.5846,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,71799,0 +43,7.0160,54.7204,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,72108,0 +44,6.8870,53.5853,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,71766,0 +45,6.6805,52.7895,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,72795,0 +46,6.6369,51.7451,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,72589,0 +47,7.1723,49.9985,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,70465,0 +48,7.0234,49.0433,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,61366,0 +49,6.9478,47.9179,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73774,0 +50,6.9106,46.6674,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,70109,0 +51,7.0072,45.3672,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71592,0 +52,6.8756,44.1489,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,71158,0 +53,7.0492,42.5067,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,69835,0 +54,6.7855,41.5091,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71918,0 +55,6.8224,40.0120,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,73701,0 +56,6.9409,38.5895,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,65811,0 +57,6.7074,37.3809,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,70992,0 +58,7.3628,35.2575,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,72162,0 +59,6.8682,34.4374,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72822,0 +60,7.7008,30.0879,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,130558,0 +61,6.7651,29.9640,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,70304,0 +62,7.0443,28.0737,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76332,0 +63,6.7823,27.1403,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,81199,0 +64,7.2159,25.2345,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,65283,0 +65,6.8481,24.4360,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,81276,0 +66,7.2797,22.6073,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,78457,0 +67,6.8867,22.9623,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74278,0 +68,7.2557,19.7499,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75057,0 +69,6.7092,19.4861,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75078,0 +70,7.0665,18.7840,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,76315,0 +71,6.8238,18.3589,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,77016,0 +72,7.1673,18.8070,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,67695,0 +73,6.8218,18.4523,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,76093,0 +74,7.0296,18.6788,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,75979,0 +75,6.8647,18.8190,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,75482,0 +76,7.1605,19.0292,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72178,0 +77,6.7811,18.6350,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,73671,0 +78,7.0271,18.4015,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76256,0 +79,7.0409,18.9532,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,71622,0 +80,7.3216,19.0645,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,62642,0 +81,6.9035,18.7431,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73327,0 +82,7.0892,18.5779,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71244,0 +83,6.8857,18.9502,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,72943,0 +84,6.9090,18.7906,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,72772,0 +85,6.7408,18.7324,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +86,7.0398,18.7680,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +87,7.2808,18.5463,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73592,0 +88,7.2542,18.5445,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,67522,0 +89,6.8534,18.3938,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73257,0 +90,7.1159,18.6280,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73337,0 +91,7.3183,18.4229,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +92,6.9600,18.3172,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,70854,0 +93,6.9757,19.0583,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73509,0 +94,6.7357,18.5621,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73624,0 +95,6.7918,18.4147,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74277,0 +96,6.9903,18.7996,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,54284,0 +97,7.1920,18.8588,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74536,0 +98,6.8050,18.7395,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73969,0 +99,6.6661,18.4269,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,69845,0 +100,6.9593,18.9900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71224,0 +101,6.8935,18.4080,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71675,0 +102,6.9737,18.4525,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72205,0 +103,6.9455,18.4046,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,72119,0 +104,7.0263,18.9661,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,64051,0 +105,6.9665,18.4498,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74125,0 +106,6.7896,18.9120,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,72937,0 +107,7.1910,18.6961,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72627,0 +108,7.1021,19.3542,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,70921,0 +109,7.0084,18.4637,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72471,0 +110,7.1800,18.7184,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,73026,0 +111,7.2771,18.3205,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,70715,0 +112,7.0008,18.8005,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,63306,0 +113,7.2270,18.3930,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,73314,0 +114,7.0295,18.6712,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,70597,0 +115,7.0005,18.7786,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +116,6.7765,18.7619,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72258,0 +117,6.8140,18.8283,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,70962,0 +118,6.9205,18.6479,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72352,0 +119,7.2926,18.5009,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,74922,0 +120,7.1219,17.9710,0.0270,0.0000,0,0,0.0000,0,0.0000,0,1,0,127744,0 +121,6.9523,19.4279,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,69694,0 +122,6.7503,18.7469,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76349,0 +123,6.8460,18.4671,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,78795,0 +124,6.7922,18.8630,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,76246,0 +125,7.0365,18.3541,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,79268,0 +126,6.8433,18.9065,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,78917,0 +127,7.1449,18.3629,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,78593,0 +128,6.9157,18.7324,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,63367,0 +129,7.0361,18.3264,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,81497,0 +130,6.9418,18.6447,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78992,0 +131,7.4916,19.4613,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,76537,0 +132,6.9791,18.7217,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,77589,0 +133,6.7742,18.7731,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,78333,0 +134,6.8643,18.8521,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,78752,0 +135,7.0216,18.9090,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,79371,0 +136,6.7392,18.3897,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,68337,0 +137,6.7425,19.1548,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,77346,0 +138,7.9464,19.2035,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,76950,0 +139,6.9305,19.2305,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,78223,0 +140,6.8081,18.8672,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76812,0 +141,7.0438,19.0165,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,77947,0 +142,6.7478,18.5616,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,77942,0 +143,6.8910,18.9887,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75222,0 +144,7.0128,18.5869,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,64646,0 +145,7.2334,18.4719,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,75826,0 +146,6.7886,18.7173,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,76061,0 +147,7.3421,18.5920,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,75566,0 +148,6.8347,18.5878,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74913,0 +149,7.2700,18.4456,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,73725,0 +150,6.8969,18.6762,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76647,0 +151,7.0741,18.7273,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,77095,0 +152,6.7782,18.7380,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,70623,0 +153,7.1886,18.8185,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74958,0 +154,6.9403,18.7582,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +155,7.5441,19.3356,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76488,0 +156,6.8244,18.8822,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,75142,0 +157,7.2748,19.3152,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77369,0 +158,6.8803,18.5673,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77158,0 +159,7.3925,19.1432,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,78162,0 +160,7.0237,18.4934,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,55334,0 +161,7.1964,18.4878,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,79377,0 +162,6.6648,18.6478,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,76795,0 +163,6.9387,18.8895,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,73508,0 +164,6.7539,18.7320,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75621,0 +165,7.1869,19.1231,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75652,0 +166,6.6842,18.7175,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,77936,0 +167,7.1333,19.9864,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,78331,0 +168,6.7381,19.2677,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,66639,0 +169,6.9666,18.5033,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77752,0 +170,6.7601,18.5216,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,76913,0 +171,6.9858,19.1593,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76182,0 +172,6.8881,18.6005,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +173,7.4568,19.0535,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,76453,0 +174,6.7362,18.6330,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,76220,0 +175,7.0587,18.8543,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,74225,0 +176,6.8758,18.6015,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,62919,0 +177,7.1655,18.6306,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76932,0 +178,6.9814,18.5996,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,73698,0 +179,7.1044,19.0216,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74968,0 +180,6.7036,16.7349,0.0403,0.0000,0,0,0.0000,0,0.0000,0,1,0,133311,0 +181,6.9170,18.8631,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,70364,0 +182,6.9198,39.4691,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77682,0 +183,7.1296,63.3785,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,81822,0 +184,6.7725,87.2850,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,76611,0 +185,7.1980,110.4006,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,80220,0 +186,7.0948,134.8828,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,79331,0 +187,7.2608,158.6960,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,80821,0 +188,6.8052,183.2416,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,77936,0 +189,7.0680,195.8534,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,80335,0 +190,7.0562,196.1718,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,80051,0 +191,6.9402,195.7923,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,80794,0 +192,7.3649,194.8884,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,57115,0 +193,7.0823,195.0494,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,82032,0 +194,6.8877,196.0511,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,80336,0 +195,7.0389,195.9529,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,76681,0 +196,6.9376,196.1353,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,77595,0 +197,7.0689,196.3563,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,77638,0 +198,7.1398,196.5080,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,79631,0 +199,6.9815,196.0459,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,79232,0 +200,7.6785,194.8819,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,68216,0 +201,7.0981,195.5160,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,79505,0 +202,6.9035,195.4973,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,78122,0 +203,7.3795,194.7457,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,77674,0 +204,7.0289,194.5687,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75389,0 +205,16.3435,185.4464,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76409,0 +206,7.1447,195.1730,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,76328,0 +207,6.9452,195.9326,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,74941,0 +208,7.1126,196.7721,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,64670,0 +209,6.9443,197.4648,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,76011,0 +210,7.2272,197.2992,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74126,0 +211,6.8835,197.1282,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,75635,0 +212,7.1420,196.1711,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,74020,0 +213,7.1559,195.3815,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72255,0 +214,6.9836,195.2236,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,74962,0 +215,7.0446,195.0425,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,75889,0 +216,7.0822,194.9048,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,68750,0 +217,7.0095,194.9555,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74207,0 +218,7.0110,195.4009,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,74525,0 +219,7.2614,195.1694,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,74671,0 +220,7.5915,195.1297,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,74286,0 +221,7.0918,195.9483,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74646,0 +222,7.1555,195.7381,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,74505,0 +223,7.0639,195.7976,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,76419,0 +224,7.2093,195.6349,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,54261,0 +225,7.4914,195.3428,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,77808,0 +226,6.9375,195.8050,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,75270,0 +227,7.1692,195.4532,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,72570,0 +228,7.3028,195.2611,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,73527,0 +229,7.1005,195.4860,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72960,0 +230,7.0941,195.2045,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,73716,0 +231,6.9646,195.2537,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74294,0 +232,7.2395,194.9681,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,65498,0 +233,7.1931,195.1089,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,74349,0 +234,6.8872,195.3112,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73996,0 +235,6.9356,195.5041,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73802,0 +236,8.0298,194.4595,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72521,0 +237,7.6576,194.9660,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,73268,0 +238,7.0490,195.7415,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,74314,0 +239,7.0208,195.9859,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71779,0 +240,7.7103,189.8287,0.0312,0.0000,0,0,0.0000,0,0.0000,0,1,0,120500,0 +241,7.0670,190.6538,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,72372,0 +242,6.9287,190.5248,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77371,0 +243,7.1260,190.2716,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,79462,0 +244,7.1947,190.1492,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,76263,0 +245,7.3172,195.5411,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,77889,0 +246,6.8673,196.0949,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,76934,0 +247,6.9410,196.0939,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,78875,0 +248,9.6958,193.3730,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,68402,0 +249,6.8575,196.1190,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,76787,0 +250,6.9286,196.2507,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,82317,0 +251,6.9441,196.3295,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,80340,0 +252,7.2836,195.8957,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,75301,0 +253,7.1700,196.1378,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,78292,0 +254,7.2194,196.2175,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,77115,0 +255,7.0643,196.1560,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,78042,0 +256,7.0909,195.9834,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,56955,0 +257,7.1155,195.7562,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76042,0 +258,7.0827,195.7010,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73748,0 +259,7.2530,195.3095,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72200,0 +260,6.9724,195.5842,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72021,0 +261,6.9719,195.7585,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72999,0 +262,7.2019,196.0462,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,72841,0 +263,7.0730,196.3755,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73409,0 +264,7.0253,196.7346,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,64471,0 +265,6.9890,196.5650,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73881,0 +266,6.8523,196.6328,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73139,0 +267,7.0970,196.2738,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,72472,0 +268,6.9731,196.2352,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,69933,0 +269,7.6893,195.2712,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,71213,0 +270,6.8442,196.2245,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72870,0 +271,6.9038,196.1547,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71371,0 +272,6.9024,196.0192,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,60430,0 +273,6.9090,196.1362,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72639,0 +274,6.9198,196.1241,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,70744,0 +275,6.9487,196.2842,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72649,0 +276,7.0106,196.4548,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,72707,0 +277,6.9596,196.6098,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,69375,0 +278,7.4799,195.7848,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,72755,0 +279,6.8244,196.7503,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,72778,0 +280,7.9116,195.5660,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,65953,0 +281,6.9585,196.3237,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,72195,0 +282,8.2122,194.7331,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,71426,0 +283,6.7553,196.0957,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,72635,0 +284,7.3312,195.4141,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,70785,0 +285,6.9401,195.8099,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72864,0 +286,6.9095,195.8797,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72671,0 +287,7.1087,195.8044,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,74166,0 +288,6.9692,196.0119,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,54285,0 +289,7.0932,195.8455,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,75046,0 +290,6.8797,196.1961,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,72476,0 +291,6.8778,196.2965,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,69194,0 +292,6.8328,196.7345,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71292,0 +293,6.9208,196.7156,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71868,0 +294,7.1657,196.4800,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,73182,0 +295,6.9869,196.2886,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,72456,0 +296,8.3825,194.8161,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,64568,0 +297,7.4253,195.5958,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,72870,0 +298,7.1274,199.0877,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,74079,0 +299,7.2498,202.4831,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73502,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.txt new file mode 100644 index 0000000..beb0ebb --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=80 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.098 +avg_encode_latency_ms=95.456 +p95_encode_latency_ms=196.456 +max_encode_latency_ms=202.483 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22268615 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.csv new file mode 100644 index 0000000..37173ff --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.9447,120.5144,0.0447,0.0000,0,0,0.0000,0,0.0000,0,1,0,113740,0 +1,9.9234,92.9514,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,139821,0 +2,10.5032,103.5331,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,128054,0 +3,10.0744,114.5870,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,110210,0 +4,10.5999,124.8852,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,107044,0 +5,10.2409,95.0548,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,108059,0 +6,9.8741,95.1802,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,108724,0 +7,9.6725,95.3655,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,109172,0 +8,10.0714,94.8184,0.0305,0.0000,0,0,0.0000,0,0.0000,0,0,0,90965,0 +9,10.0243,94.9093,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106844,0 +10,10.2188,94.6570,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,104977,0 +11,10.3695,94.6151,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,104712,0 +12,10.2465,94.6985,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,101415,0 +13,9.8223,95.0661,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,104415,0 +14,10.2491,94.7985,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,103448,0 +15,9.9875,95.2177,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,101602,0 +16,10.3144,95.1710,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,85109,0 +17,10.0330,95.3161,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,103336,0 +18,10.6541,94.7929,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,99557,0 +19,10.6677,94.7023,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,102284,0 +20,10.0038,95.2715,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101343,0 +21,10.0645,94.9925,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,98999,0 +22,10.2362,94.9729,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,102658,0 +23,9.9761,95.2317,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,102063,0 +24,10.0085,95.2578,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,93231,0 +25,10.2013,94.9180,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,101382,0 +26,10.0148,95.3099,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,101553,0 +27,10.0525,95.1455,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,103035,0 +28,10.3469,94.7288,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,99772,0 +29,10.1824,94.8598,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,103243,0 +30,9.7986,95.2220,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,104421,0 +31,10.0180,94.9069,0.0882,0.0000,0,0,0.0000,0,0.0000,0,0,0,106720,0 +32,9.9822,94.8868,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,73891,0 +33,10.0027,94.8859,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,105846,0 +34,10.1211,94.8227,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101448,0 +35,10.3922,94.5516,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,99585,0 +36,9.9305,94.8423,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,100601,0 +37,10.0753,94.6969,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,99703,0 +38,9.9561,94.9344,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,103282,0 +39,10.6288,94.2297,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,102863,0 +40,9.9111,95.0250,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,87722,0 +41,9.8158,95.1133,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,102340,0 +42,10.2523,94.6203,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,103419,0 +43,9.9376,95.0230,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,102011,0 +44,10.1966,94.6934,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,99150,0 +45,10.1209,94.7188,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,103344,0 +46,9.8339,94.9360,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,101986,0 +47,10.3450,94.4450,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,100863,0 +48,9.7773,95.1763,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,85226,0 +49,10.2596,94.8062,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,99804,0 +50,9.9938,95.0608,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,99432,0 +51,9.8325,95.4278,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,100722,0 +52,9.8844,95.3945,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,100473,0 +53,10.2033,94.9755,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,97759,0 +54,10.2703,94.9478,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,101936,0 +55,10.1349,95.1944,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,101880,0 +56,10.0868,95.1790,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,93070,0 +57,9.8735,95.4905,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,101259,0 +58,10.0597,95.1854,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,100291,0 +59,10.4990,94.6947,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,100060,0 +60,10.1606,92.2461,0.0454,0.0000,0,0,0.0000,0,0.0000,0,1,0,187780,0 +61,9.9483,92.2793,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,100309,0 +62,9.8849,92.1960,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,108112,0 +63,10.5200,91.6127,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,112830,0 +64,10.2066,92.0124,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,88992,0 +65,10.6004,94.3489,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,113939,0 +66,9.8219,95.1451,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,110285,0 +67,10.1512,95.0241,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,105896,0 +68,9.8906,95.2514,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107256,0 +69,9.9067,95.2144,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,106444,0 +70,9.7437,95.4040,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,108406,0 +71,9.9156,95.2540,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,107816,0 +72,10.3649,94.7590,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,94064,0 +73,10.2331,94.7701,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,109034,0 +74,9.6528,95.4698,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,107152,0 +75,10.1158,95.0398,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106309,0 +76,10.0399,95.3047,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,101404,0 +77,10.0680,95.1373,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,104553,0 +78,10.0896,95.1081,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106981,0 +79,9.7815,95.3517,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,101430,0 +80,9.7798,95.0532,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,87869,0 +81,9.8654,94.9860,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,102982,0 +82,10.3662,94.6582,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,101548,0 +83,9.9531,95.2325,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,102488,0 +84,9.8432,95.2645,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,102597,0 +85,10.1077,95.1531,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,99739,0 +86,9.6998,95.3260,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,103064,0 +87,10.0442,94.9337,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,104379,0 +88,9.9381,95.0009,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,94609,0 +89,9.9816,95.0109,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,103293,0 +90,9.7197,95.2540,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,103148,0 +91,10.3208,94.9967,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,103453,0 +92,9.8540,95.3969,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,101065,0 +93,11.2455,99.0517,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,104070,0 +94,9.9459,100.3743,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,105460,0 +95,10.0729,100.4725,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,106230,0 +96,9.9535,100.3978,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,75421,0 +97,12.0172,98.3263,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,107563,0 +98,16.4073,88.0755,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103506,0 +99,12.4403,93.0231,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,100583,0 +100,10.0955,95.1159,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,101972,0 +101,9.9555,95.2242,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,101528,0 +102,10.1315,95.1139,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,104993,0 +103,9.9489,95.1385,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,104031,0 +104,10.0394,95.1130,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,89745,0 +105,9.9953,95.2205,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,104248,0 +106,10.0230,95.3845,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,104010,0 +107,9.9105,95.5091,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104173,0 +108,9.9936,95.5315,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,101177,0 +109,10.1413,95.2027,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,104079,0 +110,9.9157,95.3642,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,104794,0 +111,9.9174,95.3892,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,101027,0 +112,9.8839,95.3823,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,86382,0 +113,10.5575,94.5959,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,103490,0 +114,9.9577,95.4016,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,99841,0 +115,9.8987,95.8198,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,102766,0 +116,10.0085,95.5097,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,101110,0 +117,9.7310,95.7044,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,99416,0 +118,10.0033,95.3075,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,103867,0 +119,9.9781,95.2879,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,104681,0 +120,9.8134,92.5188,0.0287,0.0000,0,0,0.0000,0,0.0000,0,1,0,184156,0 +121,10.0913,92.2189,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,100981,0 +122,10.0237,92.5337,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,109099,0 +123,10.0895,92.5779,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,112505,0 +124,9.6767,92.9851,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,108535,0 +125,10.0080,95.2641,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,113127,0 +126,10.1590,95.1260,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,112435,0 +127,9.7607,95.3265,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,112240,0 +128,9.8702,95.1005,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,86457,0 +129,10.1587,94.6861,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,112849,0 +130,9.8913,94.9797,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,109289,0 +131,9.8862,95.0805,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,105995,0 +132,10.4361,94.5641,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,106200,0 +133,9.9715,95.1732,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,108753,0 +134,10.1721,95.2933,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,108027,0 +135,9.7605,95.6979,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,108406,0 +136,9.9823,95.4377,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,94279,0 +137,9.8730,95.8802,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106967,0 +138,10.0222,95.5225,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107280,0 +139,10.6549,94.6728,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,106910,0 +140,10.4121,95.0147,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104264,0 +141,10.2824,95.0880,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,106705,0 +142,9.9337,95.2781,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106653,0 +143,9.9407,95.3970,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,104223,0 +144,10.0650,95.6160,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,87843,0 +145,10.1910,95.3694,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,105420,0 +146,9.9211,95.7261,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,107504,0 +147,9.8235,95.9349,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,108510,0 +148,9.9791,95.7736,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,105814,0 +149,9.9205,95.4250,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,104500,0 +150,9.8756,95.5826,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,107841,0 +151,10.1363,95.0328,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,108272,0 +152,9.8847,95.2129,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,98778,0 +153,9.8239,95.2242,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,106059,0 +154,10.1227,94.9356,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,107904,0 +155,9.9798,94.9630,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,107764,0 +156,9.9187,95.1352,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,105948,0 +157,9.9997,94.9223,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,109028,0 +158,9.8867,95.0240,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,108540,0 +159,9.8939,95.1873,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,110411,0 +160,9.8867,95.2949,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,79242,0 +161,10.0693,95.2660,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,113291,0 +162,10.0648,95.2835,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,110622,0 +163,10.3742,95.0294,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,105000,0 +164,10.1664,95.0032,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,107312,0 +165,9.9139,95.2970,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,107302,0 +166,9.8059,95.2899,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,108873,0 +167,9.9279,95.2855,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,110054,0 +168,10.0142,95.1096,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,94324,0 +169,10.5165,94.7010,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,109269,0 +170,9.8998,95.1045,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,108382,0 +171,10.2673,94.9907,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,108853,0 +172,9.9798,95.1728,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,106367,0 +173,10.0348,95.1474,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107158,0 +174,10.3763,94.9226,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,108843,0 +175,9.9010,95.4843,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105614,0 +176,10.2429,94.9132,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,90159,0 +177,9.9125,95.1550,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,107945,0 +178,9.9124,95.1674,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105600,0 +179,10.0543,94.8286,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,107849,0 +180,9.8083,92.3855,0.1238,0.0000,0,0,0.0000,0,0.0000,0,1,0,189503,0 +181,10.0913,92.2433,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,101131,0 +182,10.0337,108.6879,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,110821,0 +183,9.6240,125.3890,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,115616,0 +184,10.0678,141.2451,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,107559,0 +185,9.7529,160.8841,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,114852,0 +186,9.9725,177.0608,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,113413,0 +187,9.7923,177.1271,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,115338,0 +188,9.9958,176.7885,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,111866,0 +189,10.0875,176.6829,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,114754,0 +190,9.9972,176.0598,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,113127,0 +191,9.9268,176.1191,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,115209,0 +192,10.1059,176.2639,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,80912,0 +193,10.2063,176.2611,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,115913,0 +194,10.1409,176.1945,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,112750,0 +195,9.9471,176.6849,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,107417,0 +196,9.9065,176.4504,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,108806,0 +197,10.0813,176.0153,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,109409,0 +198,10.0506,175.7763,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,112190,0 +199,10.0153,175.8413,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,111019,0 +200,10.2051,175.6185,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,97169,0 +201,9.8706,176.0234,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,110330,0 +202,9.8308,176.3757,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,111121,0 +203,9.6419,176.8918,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,109094,0 +204,10.0966,176.6644,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,107358,0 +205,9.7502,176.9613,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108168,0 +206,10.1677,176.7767,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108339,0 +207,10.1796,176.5177,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106377,0 +208,10.0164,176.4667,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,92285,0 +209,10.5079,175.8892,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,108655,0 +210,10.0585,176.0518,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,104652,0 +211,10.0659,175.8874,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,107334,0 +212,10.1896,175.9962,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,104894,0 +213,9.8890,176.3903,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,104034,0 +214,10.6630,175.4128,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,107173,0 +215,10.3223,175.9571,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,107872,0 +216,10.1783,175.9203,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,97808,0 +217,9.9070,176.3626,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,106254,0 +218,10.2416,176.1151,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,106883,0 +219,9.7728,176.7858,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107048,0 +220,10.2089,176.3981,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,105286,0 +221,9.7745,176.8111,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108255,0 +222,10.1260,176.0670,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,107243,0 +223,9.9476,176.2604,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,111015,0 +224,9.9702,176.2233,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,75923,0 +225,9.7645,176.5048,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,111478,0 +226,10.0879,176.2515,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,107249,0 +227,10.4641,176.0779,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,103124,0 +228,10.1355,176.3978,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,104141,0 +229,10.0960,176.3901,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,104594,0 +230,10.4540,175.8609,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,107143,0 +231,10.5613,175.6516,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,106515,0 +232,10.2822,175.6815,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,93701,0 +233,10.2538,175.5338,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,107187,0 +234,10.2950,175.6416,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,105728,0 +235,9.8726,176.2982,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,105088,0 +236,10.4679,175.6224,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,103153,0 +237,9.8919,176.3478,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,104894,0 +238,10.2652,176.2679,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,107312,0 +239,9.9080,176.3476,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103556,0 +240,10.8180,170.0950,0.0389,0.0000,0,0,0.0000,0,0.0000,0,1,0,171206,0 +241,9.9868,171.3845,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,104592,0 +242,9.7930,171.2301,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,110277,0 +243,10.0250,171.1774,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,114699,0 +244,10.2909,170.9488,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,111287,0 +245,9.9599,176.5209,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,111443,0 +246,9.9230,176.5731,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,110926,0 +247,10.8682,176.0025,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,112949,0 +248,10.3150,176.3837,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,97228,0 +249,10.2378,176.4636,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,109958,0 +250,10.4901,176.0135,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,109520,0 +251,10.2257,176.1423,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,111741,0 +252,10.6022,175.7835,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,106845,0 +253,10.1563,176.0298,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,109925,0 +254,9.7933,176.4891,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,109489,0 +255,10.5122,175.7577,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,110675,0 +256,10.2453,175.8888,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,80349,0 +257,10.1454,175.7576,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,108850,0 +258,10.0058,176.1208,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,104632,0 +259,10.0903,175.8380,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,101027,0 +260,9.9054,176.2587,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101330,0 +261,10.0075,176.2157,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,103146,0 +262,9.9540,176.5347,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,104886,0 +263,10.0663,176.6559,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,105236,0 +264,11.2480,175.7307,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,91217,0 +265,10.4061,176.4549,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,104319,0 +266,10.0877,176.9816,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104225,0 +267,10.3232,176.6160,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,103210,0 +268,10.3885,176.0713,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,99859,0 +269,10.2712,176.1114,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,101707,0 +270,10.1913,176.4331,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,103077,0 +271,9.9497,176.6003,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,100927,0 +272,10.0801,176.6728,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,84990,0 +273,10.2705,176.6368,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,100680,0 +274,10.3195,176.6877,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,99322,0 +275,10.8620,176.0208,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,102291,0 +276,10.0738,176.7664,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,100786,0 +277,9.8858,176.6550,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,98703,0 +278,10.2540,176.1045,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,101938,0 +279,10.4966,175.4716,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,102266,0 +280,10.0777,176.0684,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,92489,0 +281,10.2872,176.0550,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,101491,0 +282,9.9682,176.7723,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,101259,0 +283,10.1790,176.6854,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,101699,0 +284,10.6936,176.3915,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,100206,0 +285,10.5565,176.4276,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,103982,0 +286,10.8958,175.6915,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,103272,0 +287,9.7205,176.3363,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,105225,0 +288,9.7344,176.2711,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,75036,0 +289,10.2294,175.5446,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,107335,0 +290,10.1002,175.7537,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,101605,0 +291,10.1195,175.7715,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,99053,0 +292,10.7133,175.2143,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,99565,0 +293,9.6872,176.0343,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,100668,0 +294,10.0913,176.0008,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,101625,0 +295,9.8142,176.0335,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,103120,0 +296,10.3739,175.5203,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,90368,0 +297,9.9376,176.2945,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,103809,0 +298,10.0995,179.0422,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,102308,0 +299,10.0028,181.8367,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,101887,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.txt new file mode 100644 index 0000000..9a8adb0 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.133 +avg_encode_latency_ms=126.599 +p95_encode_latency_ms=176.685 +max_encode_latency_ms=181.837 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=31474566 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.csv b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.csv new file mode 100644 index 0000000..b7ea699 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.5643,119.1864,0.0356,0.0000,0,0,0.0000,0,0.0000,0,1,0,93727,0 +1,11.5823,93.0039,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,145930,0 +2,11.4910,105.1862,0.0370,0.0000,0,0,0.0000,0,0.0000,0,0,0,156341,0 +3,11.5195,117.3721,0.0309,0.0000,0,0,0.0000,0,0.0000,0,0,0,130011,0 +4,11.1356,129.6233,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,124939,0 +5,11.8080,106.0138,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,122116,0 +6,11.1740,106.3407,0.0252,0.0000,0,0,0.0000,0,0.0000,0,0,0,123694,0 +7,11.7289,105.5324,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,126620,0 +8,11.5768,105.6537,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,106632,0 +9,11.6181,105.7731,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,120451,0 +10,11.8620,105.4934,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,121150,0 +11,11.9836,105.3945,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,118961,0 +12,10.9857,106.3652,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,116264,0 +13,11.5148,105.5714,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,119049,0 +14,11.2377,105.7368,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,119721,0 +15,11.4065,105.6643,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,116929,0 +16,11.3595,105.6535,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,98293,0 +17,11.4878,105.5981,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,117805,0 +18,11.2833,105.7375,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,117799,0 +19,10.9737,106.0945,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,118219,0 +20,11.3183,105.8831,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,117325,0 +21,11.2451,105.9875,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,114366,0 +22,11.6755,105.4397,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,118316,0 +23,11.1139,106.2147,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,119236,0 +24,11.4496,105.8725,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,105787,0 +25,11.6022,105.6103,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,117185,0 +26,10.8961,106.3774,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,118018,0 +27,11.5696,105.8446,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,116098,0 +28,11.2680,106.1722,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,115950,0 +29,11.4451,105.9442,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,120489,0 +30,11.5064,105.9312,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,119784,0 +31,11.1819,106.0842,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,122485,0 +32,11.4704,105.5505,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,84815,0 +33,11.3937,105.5538,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,123013,0 +34,11.4002,105.5090,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,118135,0 +35,11.7249,105.1979,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,114163,0 +36,11.2586,105.8288,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,115383,0 +37,11.4896,105.5720,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,116981,0 +38,11.4913,105.7652,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,117978,0 +39,11.1058,106.0996,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,118811,0 +40,11.2029,106.0175,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,103630,0 +41,11.3267,105.8783,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,119148,0 +42,11.4793,105.8581,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,118903,0 +43,11.4462,105.7725,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,116700,0 +44,11.5974,105.5403,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,114812,0 +45,11.0905,105.9581,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,118520,0 +46,11.5235,105.4555,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,118930,0 +47,11.2962,105.7705,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,114953,0 +48,11.3522,105.6383,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,97974,0 +49,12.0055,104.9771,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,117639,0 +50,11.7676,105.1936,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,113209,0 +51,11.3149,105.5436,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,116128,0 +52,11.8179,104.9698,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,116150,0 +53,11.6011,105.2141,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,113102,0 +54,11.6436,105.2220,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,117550,0 +55,11.0256,105.8299,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,119317,0 +56,11.3553,105.4471,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,106336,0 +57,11.1559,105.6934,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,116424,0 +58,11.1981,105.7520,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,115787,0 +59,11.5929,105.3691,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,116944,0 +60,11.8313,102.3471,0.0446,0.0000,0,0,0.0000,0,0.0000,0,1,0,213663,0 +61,11.5774,102.5959,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,115347,0 +62,11.3331,102.8508,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,124861,0 +63,10.7971,103.4646,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,130458,0 +64,11.3693,102.8953,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,103841,0 +65,11.3377,106.0447,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,131823,0 +66,11.3480,106.2290,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,127948,0 +67,10.9448,106.5162,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,122282,0 +68,11.6678,105.6853,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,124338,0 +69,11.4315,105.8747,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,123637,0 +70,11.4213,105.5623,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,125421,0 +71,11.7400,105.2708,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,124733,0 +72,11.2481,105.7981,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,109460,0 +73,11.7880,105.2405,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,125517,0 +74,11.2703,106.0621,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,124281,0 +75,11.0943,106.2188,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,123297,0 +76,11.1251,106.2068,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,117360,0 +77,11.6814,105.5131,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,121034,0 +78,12.0655,105.1223,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,123779,0 +79,11.7488,105.1670,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,118327,0 +80,11.1163,105.8181,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,101889,0 +81,11.3163,105.8019,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,120551,0 +82,11.0601,106.1946,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,117547,0 +83,11.8467,105.5840,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,118520,0 +84,11.6091,105.8753,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,119002,0 +85,11.5316,105.8824,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,115553,0 +86,11.6528,105.7099,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,120628,0 +87,11.3043,106.0464,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,121170,0 +88,11.0191,106.2378,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,110538,0 +89,11.3305,105.8242,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,118745,0 +90,11.0276,106.0339,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,119179,0 +91,11.5099,105.6631,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,119252,0 +92,10.9991,106.1452,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,117336,0 +93,11.2586,105.9797,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,119699,0 +94,11.3487,106.0306,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,121101,0 +95,11.2229,106.3532,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,123065,0 +96,11.6605,106.1557,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,87322,0 +97,11.4832,106.6791,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,125186,0 +98,11.6953,106.4625,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,119936,0 +99,11.6486,106.7335,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,116225,0 +100,11.5545,106.6403,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,118192,0 +101,11.3243,106.5673,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,118097,0 +102,11.5150,106.3011,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,121511,0 +103,11.6919,106.0095,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,120184,0 +104,11.5629,105.9933,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,105138,0 +105,11.2960,106.4163,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,120621,0 +106,11.2380,106.5522,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,121533,0 +107,11.3656,106.4125,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,119806,0 +108,11.8946,105.7957,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,117136,0 +109,11.0082,106.5236,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,119047,0 +110,11.5998,105.6710,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,119999,0 +111,11.3566,105.7221,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,116875,0 +112,11.7474,105.2033,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,101369,0 +113,11.2305,105.7081,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,118647,0 +114,11.5047,105.3497,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,116504,0 +115,11.0698,105.8114,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,118608,0 +116,11.2906,105.5587,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,116941,0 +117,11.0634,105.8500,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,114428,0 +118,11.2394,105.7000,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,119769,0 +119,11.3509,105.8685,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,120444,0 +120,11.4240,103.1145,0.0546,0.0000,0,0,0.0000,0,0.0000,0,1,0,209672,0 +121,11.8587,102.8457,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,116091,0 +122,10.9579,103.8912,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,126042,0 +123,11.6713,103.2398,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,129701,0 +124,10.9470,103.7865,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,125550,0 +125,11.1833,106.1716,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,130223,0 +126,11.1630,106.1327,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,129513,0 +127,11.6194,105.7187,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,129625,0 +128,11.4976,105.7251,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,101367,0 +129,11.3629,105.9113,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,130390,0 +130,11.3848,105.9030,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,125502,0 +131,11.2351,105.9532,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,122190,0 +132,11.5103,105.4967,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,123013,0 +133,11.0257,106.1784,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,124925,0 +134,11.0623,106.2496,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,125232,0 +135,11.1218,106.2286,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,125176,0 +136,11.5437,106.0053,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,109258,0 +137,11.5790,106.0081,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,123332,0 +138,11.6662,105.8074,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,123976,0 +139,11.8202,105.6577,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,122933,0 +140,11.4585,105.9424,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,120256,0 +141,11.2034,106.1284,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,123494,0 +142,11.3174,105.9612,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,123115,0 +143,11.3927,106.1308,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,119249,0 +144,11.5062,105.8350,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,101626,0 +145,11.8489,105.6372,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,121400,0 +146,11.6218,105.7911,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,118637,0 +147,11.3435,106.2800,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,119867,0 +148,11.5825,105.8815,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,118439,0 +149,11.3248,106.3004,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,116643,0 +150,11.2663,106.3019,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,120593,0 +151,11.1587,106.3947,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,121539,0 +152,11.5448,105.8150,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,111248,0 +153,11.3948,105.9043,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,118242,0 +154,11.4246,105.6625,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,119895,0 +155,11.2559,105.9287,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,120313,0 +156,11.1835,106.1272,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,117865,0 +157,11.4841,106.0872,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,121507,0 +158,11.2825,106.2019,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,122432,0 +159,11.1212,106.3504,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,123253,0 +160,11.4420,105.9309,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,88302,0 +161,11.3520,106.0771,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,126076,0 +162,11.4821,105.6781,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,120464,0 +163,11.9654,105.3039,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,116099,0 +164,11.5958,105.8636,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,119039,0 +165,11.4714,106.0792,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,119157,0 +166,11.9986,105.4451,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,119440,0 +167,11.5304,106.1722,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,121331,0 +168,11.6823,106.0913,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,105616,0 +169,11.3310,106.3608,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,121954,0 +170,11.1813,106.3651,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,120955,0 +171,11.1925,106.1988,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,120450,0 +172,11.6574,105.7597,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,118099,0 +173,11.0107,106.2766,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,119676,0 +174,11.0625,106.2013,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,121066,0 +175,11.4521,105.8800,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,115734,0 +176,11.7526,105.6200,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,100621,0 +177,11.5652,105.6213,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,120242,0 +178,11.3100,105.9028,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,116534,0 +179,11.7659,105.3035,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,118913,0 +180,11.1885,103.0365,0.0475,0.0000,0,0,0.0000,0,0.0000,0,1,0,214595,0 +181,11.4500,102.6937,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,111676,0 +182,11.6733,120.9958,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,123432,0 +183,11.3623,139.6400,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,128406,0 +184,11.1714,158.3267,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,119283,0 +185,11.5338,179.1498,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,128148,0 +186,11.6274,197.4847,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,126169,0 +187,11.4486,197.7976,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,127746,0 +188,11.9531,197.3473,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,123910,0 +189,11.2278,198.0596,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,127684,0 +190,11.6763,197.8580,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,125737,0 +191,11.3609,198.3114,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,127914,0 +192,11.3358,198.1213,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,89372,0 +193,11.1982,198.3585,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,127685,0 +194,11.3979,198.1036,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,123952,0 +195,11.4248,197.9525,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,119054,0 +196,11.1933,197.9940,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,120641,0 +197,12.0499,197.2707,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,121886,0 +198,11.7402,197.5447,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,123633,0 +199,11.2930,198.0770,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,123577,0 +200,11.7695,197.6914,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,106558,0 +201,11.3668,198.1915,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,122239,0 +202,12.4240,197.0495,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,122907,0 +203,11.7802,197.8430,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,122141,0 +204,11.3204,198.2656,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,118930,0 +205,11.7797,197.8544,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,120589,0 +206,11.9183,197.5882,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,120615,0 +207,11.4592,197.9731,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,117849,0 +208,11.7942,197.5313,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101891,0 +209,11.3650,197.8388,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,119972,0 +210,11.1671,198.1488,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,116663,0 +211,11.1371,198.0989,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,119626,0 +212,11.0898,197.9963,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,117131,0 +213,11.7181,197.3944,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,114160,0 +214,11.3281,198.0074,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,118864,0 +215,12.3978,196.7769,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,119251,0 +216,11.5855,197.8663,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,109650,0 +217,11.3120,198.3141,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,116829,0 +218,11.8764,197.8779,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,118014,0 +219,11.3097,198.4392,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,117937,0 +220,11.3569,198.3873,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,117104,0 +221,11.9217,197.8775,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,119995,0 +222,11.5034,198.2340,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,119520,0 +223,11.7250,197.8193,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,121871,0 +224,12.2357,197.3509,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,86376,0 +225,11.6091,197.9955,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,122541,0 +226,11.6656,197.7570,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,118725,0 +227,11.2538,198.3616,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,114709,0 +228,11.6666,198.1717,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,115383,0 +229,11.4703,198.2550,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,115698,0 +230,11.3952,198.4473,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,118518,0 +231,11.3851,198.2651,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,118426,0 +232,11.6878,197.7867,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,104162,0 +233,11.8581,197.4539,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,118747,0 +234,12.5157,196.6438,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,118125,0 +235,11.3972,197.8042,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,117049,0 +236,11.6877,197.5175,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,114939,0 +237,11.6497,197.4912,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,116875,0 +238,11.5575,197.6116,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,118469,0 +239,11.8880,197.2212,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,114506,0 +240,11.2928,192.0098,0.0255,0.0000,0,0,0.0000,0,0.0000,0,1,0,193554,0 +241,11.7867,191.6371,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,115297,0 +242,11.3101,192.1127,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,122865,0 +243,11.5065,192.1212,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,127735,0 +244,11.4827,192.1841,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,123735,0 +245,11.9182,197.4967,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,123703,0 +246,11.0246,198.5166,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,123248,0 +247,11.4703,198.0805,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,125972,0 +248,11.7455,197.6551,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,108546,0 +249,11.8624,197.5069,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,121815,0 +250,11.5836,197.7130,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,121896,0 +251,12.3254,197.0147,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,124297,0 +252,12.4250,196.9194,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,118079,0 +253,11.3383,198.1579,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,122832,0 +254,11.7658,197.8247,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,121316,0 +255,11.6868,197.8198,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,123396,0 +256,11.3046,197.9898,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,89738,0 +257,11.5211,197.9125,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,122445,0 +258,11.4342,197.9025,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,121632,0 +259,11.8244,197.5115,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,116192,0 +260,11.2056,198.2119,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,116349,0 +261,11.4400,198.0671,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,118565,0 +262,11.3969,197.8999,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,119556,0 +263,11.2964,197.8708,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,119951,0 +264,11.4109,197.7324,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,105411,0 +265,12.1701,197.0525,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,119915,0 +266,11.4482,197.6552,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,121040,0 +267,11.5490,197.6206,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,118860,0 +268,11.3294,197.9626,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,114833,0 +269,11.3593,197.7845,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,117576,0 +270,12.0763,196.9921,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,118626,0 +271,11.5585,197.5278,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,115676,0 +272,11.9242,197.2712,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,97990,0 +273,10.8802,198.3351,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,117005,0 +274,11.8650,197.6637,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,116910,0 +275,11.4370,198.0905,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,118263,0 +276,11.2860,198.3077,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,116372,0 +277,11.5130,197.9584,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,114238,0 +278,12.1127,197.2731,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,117565,0 +279,11.6122,197.6118,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,118820,0 +280,11.6025,197.6827,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,108084,0 +281,11.7361,197.5031,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,116676,0 +282,11.9715,197.4247,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,116810,0 +283,12.0374,197.3845,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,117849,0 +284,11.7679,197.7511,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,117094,0 +285,11.9058,197.6215,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,119186,0 +286,11.2917,198.1514,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,118971,0 +287,11.2412,198.1798,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,121618,0 +288,11.3774,197.9417,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,84960,0 +289,11.1480,198.3527,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,123940,0 +290,11.3830,198.3196,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,118590,0 +291,11.2795,198.4084,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,113892,0 +292,11.1925,198.5693,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,115897,0 +293,11.3399,198.4013,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,116716,0 +294,11.2490,198.2707,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,118392,0 +295,11.3415,197.9674,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,118368,0 +296,11.1402,198.1253,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,102432,0 +297,15.5018,193.7099,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,119541,0 +298,11.4116,200.7387,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,118384,0 +299,11.1428,204.2275,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,117624,0 diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.txt new file mode 100644 index 0000000..28fabac --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.txt @@ -0,0 +1,25 @@ +iBridge Primary synthetic encoder +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +bitrate_mbps=120 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=11.495 +avg_encode_latency_ms=141.326 +p95_encode_latency_ms=198.312 +max_encode_latency_ms=204.227 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=35777809 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary.md b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary.md new file mode 100644 index 0000000..109ddf2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary.md @@ -0,0 +1,19 @@ +# MacBook Pro Automatic Encoder Baseline + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +This run used automatic encoder selection with low-latency rate-control enabled, matching the current default CLI behavior. + +| Test | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:| +| HEVC 2560x1440 120Mbps | 300 | 0 | 59.218 | 129.926 | 134.430 | 14,095,734 | +| HEVC 3200x1800 120Mbps | 300 | 0 | 96.271 | 196.283 | 202.067 | 22,320,881 | +| HEVC 3200x1800 80Mbps | 300 | 0 | 95.456 | 196.456 | 202.483 | 22,268,615 | +| HEVC 3840x2160 120Mbps | 300 | 0 | 126.599 | 176.685 | 181.837 | 31,474,566 | +| HEVC 4096x2304 120Mbps | 300 | 0 | 141.326 | 198.312 | 204.227 | 35,777,809 | +| H.264 3840x2160 120Mbps | 300 | 0 | 114.343 | 159.438 | 164.955 | 32,037,694 | +| H.264 5120x2880 120Mbps | 300 | 300 | 8.309 | 8.684 | 55.687 | 0 | + +## Result + +Automatic low-latency selection is not acceptable on this MacBook Pro for Plan C HEVC. H.264 5K still produces zero payloads. diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary_extract.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary_extract.txt new file mode 100644 index 0000000..f6b6353 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary_extract.txt @@ -0,0 +1,85 @@ +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_3840x2160_120mbps.txt +resolution=3840x2160 +codec=h264 +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=114.343 +p95_encode_latency_ms=159.438 +max_encode_latency_ms=164.955 +payload_bytes=32037694 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/h264_5120x2880_120mbps.txt +resolution=5120x2880 +codec=h264 +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=300 +send_failed_frames=0 +avg_encode_latency_ms=8.309 +p95_encode_latency_ms=8.684 +max_encode_latency_ms=55.687 +payload_bytes=0 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_2560x1440_120mbps.txt +resolution=2560x1440 +codec=hevc +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=59.218 +p95_encode_latency_ms=129.926 +max_encode_latency_ms=134.430 +payload_bytes=14095734 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_120mbps.txt +resolution=3200x1800 +codec=hevc +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=96.271 +p95_encode_latency_ms=196.283 +max_encode_latency_ms=202.067 +payload_bytes=22320881 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3200x1800_80mbps.txt +resolution=3200x1800 +codec=hevc +bitrate_mbps=80 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=95.456 +p95_encode_latency_ms=196.456 +max_encode_latency_ms=202.483 +payload_bytes=22268615 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_3840x2160_120mbps.txt +resolution=3840x2160 +codec=hevc +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=126.599 +p95_encode_latency_ms=176.685 +max_encode_latency_ms=181.837 +payload_bytes=31474566 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/hevc_4096x2304_120mbps.txt +resolution=4096x2304 +codec=hevc +bitrate_mbps=120 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=141.326 +p95_encode_latency_ms=198.312 +max_encode_latency_ms=204.227 +payload_bytes=35777809 +benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/video_encoders.txt diff --git a/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/video_encoders.txt b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/video_encoders.txt new file mode 100644 index 0000000..c7d7754 --- /dev/null +++ b/benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x130f0f310>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.csv new file mode 100644 index 0000000..1692c09 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,14.4202,90.8322,0.0303,0.0000,0,0,0.0000,0,0.0000,0,1,0,108886,0 +1,10.6647,63.8591,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,124867,0 +2,9.9071,73.0962,0.0488,0.0000,0,0,0.0000,0,0.0000,0,0,0,189919,0 +3,9.7321,82.5367,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,185906,0 +4,9.3251,92.3146,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,196115,0 +5,10.5224,94.8199,0.0458,0.0000,0,0,0.0000,0,0.0000,0,0,0,208592,0 +6,10.3164,103.5321,0.0343,0.0000,0,0,0.0000,0,0.0000,0,0,0,203170,0 +7,9.6445,112.8240,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,200259,0 +8,9.8311,120.9089,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,145517,0 +9,10.5419,125.5373,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,203848,0 +10,9.7041,128.3325,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,202497,0 +11,9.7028,130.6698,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,205181,0 +12,9.7405,133.0192,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,201320,0 +13,10.5856,134.5788,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,207887,0 +14,10.4057,137.2695,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,209157,0 +15,10.0029,139.7227,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,208215,0 +16,9.7403,141.4836,0.0385,0.0000,0,0,0.0000,0,0.0000,0,0,0,167824,0 +17,9.5675,143.7471,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,183983,0 +18,9.5179,147.4939,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,190929,0 +19,9.8803,148.9850,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,213088,0 +20,9.6001,150.1709,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,203435,0 +21,10.0178,152.3890,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,207728,0 +22,9.6520,155.1188,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,207989,0 +23,9.7255,157.1652,0.0331,0.0000,0,0,0.0000,0,0.0000,0,0,0,205973,0 +24,9.8960,158.5445,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,151166,0 +25,10.1960,161.5585,0.0329,0.0000,0,0,0.0000,0,0.0000,0,0,0,211527,0 +26,9.9368,164.2078,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,202589,0 +27,9.8068,166.6184,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,206828,0 +28,9.4230,168.8590,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,183428,0 +29,9.9264,170.9713,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,208027,0 +30,9.5508,173.9178,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,209531,0 +31,9.5137,175.7881,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,206425,0 +32,10.1549,175.9150,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,156782,0 +33,9.4310,179.9661,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,178828,0 +34,10.1448,181.2962,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,179962,0 +35,9.8108,184.3421,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,212056,0 +36,9.9870,185.8973,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,198720,0 +37,9.4632,188.8009,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,201920,0 +38,9.9881,190.4762,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,204666,0 +39,10.1201,192.9927,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,203219,0 +40,10.3500,193.9560,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,147648,0 +41,10.2696,197.4340,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,203470,0 +42,9.7568,200.4500,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,204892,0 +43,9.5601,202.5670,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,206839,0 +44,9.8905,204.4043,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,203385,0 +45,9.3398,207.5215,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,207642,0 +46,9.8573,209.1035,0.0342,0.0000,0,0,0.0000,0,0.0000,0,0,0,210728,0 +47,9.9671,211.1247,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,208075,0 +48,10.3499,211.7893,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,167802,0 +49,10.3080,215.0082,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,187352,0 +50,10.2293,217.4422,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,191034,0 +51,9.9942,220.0659,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,214644,0 +52,9.8716,221.9001,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,204700,0 +53,10.2857,223.8193,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,208034,0 +54,11.9901,225.2795,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,209203,0 +55,10.7515,229.3832,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,205497,0 +56,10.6564,230.0962,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,152667,0 +57,10.7123,234.2528,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,212904,0 +58,10.3715,235.2473,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,202515,0 +59,10.2026,235.3200,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,208005,0 +60,9.9444,238.8272,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,189689,0 +61,10.3344,236.8755,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,241359,0 +62,9.6636,236.5715,0.0463,0.0000,0,0,0.0000,0,0.0000,0,0,0,223970,0 +63,9.9296,236.1057,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,205797,0 +64,9.7693,234.6445,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,161302,0 +65,9.7648,236.0415,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,176697,0 +66,10.0471,235.8714,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,178595,0 +67,9.9999,235.9145,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,208985,0 +68,9.9196,235.5104,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,197192,0 +69,9.9742,236.5811,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,199730,0 +70,10.6503,234.6894,0.0353,0.0000,0,0,0.0000,0,0.0000,0,0,0,202778,0 +71,11.2394,234.1504,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,201894,0 +72,10.5168,234.1554,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,147921,0 +73,10.1537,232.8350,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,203654,0 +74,10.0524,235.5972,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,202979,0 +75,9.6217,236.2570,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,206312,0 +76,9.9860,236.0157,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,202527,0 +77,9.9322,237.6795,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,208238,0 +78,9.7637,237.0685,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,210155,0 +79,9.9951,236.4033,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,207693,0 +80,10.2570,234.4903,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,168266,0 +81,10.2854,236.0327,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,185744,0 +82,10.1830,235.9230,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,191698,0 +83,9.9440,236.0592,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,213830,0 +84,9.9261,235.7633,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,204577,0 +85,9.8145,236.7995,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,209283,0 +86,10.0292,235.5000,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,208748,0 +87,9.6477,236.0308,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,206349,0 +88,9.7018,234.9114,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,151868,0 +89,9.9288,235.8307,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,211676,0 +90,10.0330,235.7073,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,204242,0 +91,10.1745,235.3740,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,207479,0 +92,9.7703,235.6702,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,184611,0 +93,9.8398,237.6056,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,208015,0 +94,9.8310,236.6900,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,211475,0 +95,10.1341,235.9140,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,207778,0 +96,10.2260,234.5372,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,158016,0 +97,9.9807,235.9510,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,179175,0 +98,9.9774,235.8383,0.0426,0.0000,0,0,0.0000,0,0.0000,0,0,0,182498,0 +99,9.9270,236.1061,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,212063,0 +100,10.1202,235.3519,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,199613,0 +101,10.0542,236.3529,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,203259,0 +102,9.8988,235.5428,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,206744,0 +103,10.1232,235.2352,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,203468,0 +104,9.9951,234.4582,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,148664,0 +105,9.9905,236.0863,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,204741,0 +106,10.2598,235.1641,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,205792,0 +107,10.2693,234.9230,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,208373,0 +108,10.2404,235.4815,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,204790,0 +109,10.2730,236.8638,0.0416,0.0000,0,0,0.0000,0,0.0000,0,0,0,210030,0 +110,10.0908,236.3715,0.0402,0.0000,0,0,0.0000,0,0.0000,0,0,0,211488,0 +111,9.9731,236.1047,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,210357,0 +112,10.0165,234.5668,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,166972,0 +113,11.3648,234.5507,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,188556,0 +114,10.4138,235.6767,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,194200,0 +115,10.3152,235.5870,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,214441,0 +116,10.1017,235.1979,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,207161,0 +117,11.1970,235.3188,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,209479,0 +118,10.5731,234.7759,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,209759,0 +119,10.7707,234.5913,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,207095,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.txt new file mode 100644 index 0000000..cfbd421 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=h264 +encoder_id=com.apple.videotoolbox.videoencoder.ave.avc +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.098 +avg_encode_latency_ms=202.079 +p95_encode_latency_ms=236.803 +max_encode_latency_ms=238.827 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=23554835 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_h264.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_h264.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_h264.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_5120x2880_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_5120x2880_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_5120x2880_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.csv new file mode 100644 index 0000000..e43e85b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.7744,81.6062,0.0311,0.0000,0,0,0.0000,0,0.0000,0,1,0,91300,0 +1,5.1176,45.6913,0.0355,0.0000,0,0,0.0000,0,0.0000,0,0,0,133252,0 +2,4.6354,50.1338,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,141534,0 +3,4.4023,54.7695,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,153008,0 +4,4.6905,57.2866,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,187550,0 +5,4.5377,45.1401,0.0397,0.0000,0,0,0.0000,0,0.0000,0,0,0,199492,0 +6,4.5613,41.1623,0.0401,0.0000,0,0,0.0000,0,0.0000,0,0,0,238781,0 +7,4.6595,33.8820,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,261927,0 +8,4.6558,27.3640,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,275365,0 +9,4.5761,17.0990,0.0570,0.0000,0,0,0.0000,0,0.0000,0,0,0,315380,0 +10,4.7065,14.4368,0.0452,0.0000,0,0,0.0000,0,0.0000,0,0,0,343603,0 +11,4.3325,14.4141,0.0494,0.0000,0,0,0.0000,0,0.0000,0,0,0,368103,0 +12,4.3376,14.4077,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,361496,0 +13,4.3742,14.5080,0.0368,0.0000,0,0,0.0000,0,0.0000,0,0,0,354608,0 +14,4.4191,14.4987,0.0470,0.0000,0,0,0.0000,0,0.0000,0,0,0,351974,0 +15,4.6254,14.2423,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,365822,0 +16,4.4968,14.5956,0.0544,0.0000,0,0,0.0000,0,0.0000,0,0,0,306814,0 +17,4.3525,14.3837,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,337190,0 +18,4.4620,14.3189,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,328842,0 +19,4.9620,14.1911,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,302737,0 +20,4.6294,14.2242,0.0503,0.0000,0,0,0.0000,0,0.0000,0,0,0,350811,0 +21,4.5135,14.9972,0.0434,0.0000,0,0,0.0000,0,0.0000,0,0,0,341229,0 +22,4.8627,14.3503,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,342936,0 +23,4.5183,14.8089,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,348327,0 +24,4.4680,14.4594,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,289071,0 +25,4.8048,14.2637,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,308934,0 +26,4.5522,14.1772,0.0416,0.0000,0,0,0.0000,0,0.0000,0,0,0,312377,0 +27,4.5878,14.2668,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,313952,0 +28,4.4109,14.1892,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,277324,0 +29,4.6329,16.1961,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,288560,0 +30,4.4814,14.6303,0.0446,0.0000,0,0,0.0000,0,0.0000,0,0,0,293866,0 +31,4.4126,14.6791,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,300647,0 +32,4.6842,14.6010,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,204233,0 +33,4.9593,14.6370,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,200930,0 +34,4.4811,14.3554,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,217628,0 +35,4.3691,14.1904,0.0360,0.0000,0,0,0.0000,0,0.0000,0,0,0,242539,0 +36,4.7122,14.4901,0.0539,0.0000,0,0,0.0000,0,0.0000,0,0,0,260908,0 +37,4.8099,14.6803,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,256302,0 +38,4.6926,14.4098,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,257719,0 +39,5.3326,14.3291,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,256964,0 +40,4.5604,14.2238,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,213380,0 +41,4.7287,14.6301,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,270272,0 +42,4.8062,14.2928,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,270184,0 +43,4.6016,14.4910,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,221552,0 +44,4.4563,14.4809,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,227651,0 +45,4.4595,14.8744,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,234307,0 +46,4.3896,14.5260,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,236018,0 +47,4.5097,14.2069,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,246434,0 +48,4.5230,14.2982,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,205307,0 +49,4.5333,14.5760,0.0361,0.0000,0,0,0.0000,0,0.0000,0,0,0,173665,0 +50,4.4467,14.2728,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,191970,0 +51,4.5173,14.1787,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,230912,0 +52,4.5539,14.5043,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,243292,0 +53,4.8249,14.7745,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,237446,0 +54,4.4347,14.5337,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,237570,0 +55,4.4533,14.7909,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,238474,0 +56,4.6595,14.2176,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,232896,0 +57,4.3249,14.6433,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,240432,0 +58,4.5007,14.7142,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,243908,0 +59,4.4010,14.4530,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,233316,0 +60,4.4902,11.2334,0.0848,0.0000,0,0,0.0000,0,0.0000,0,1,0,490176,0 +61,4.4660,14.9465,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,209118,0 +62,4.5833,14.3010,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,227188,0 +63,4.6150,14.3492,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,202992,0 +64,4.5266,14.7223,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,151681,0 +65,4.4028,14.5218,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,156286,0 +66,4.3733,14.4179,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,194003,0 +67,4.3692,14.6684,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,226028,0 +68,4.5248,14.3767,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,235494,0 +69,4.6500,14.3612,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,268176,0 +70,4.8093,14.4556,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,262775,0 +71,4.2876,14.3824,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,259472,0 +72,4.6258,14.3116,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,249198,0 +73,4.4089,14.5477,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,262950,0 +74,4.8006,14.6028,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,270020,0 +75,4.5536,14.7035,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,255745,0 +76,18.7328,15.2438,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,256919,0 +77,6.2463,18.0257,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,261480,0 +78,4.4791,15.0009,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,263836,0 +79,4.4573,14.6612,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,276187,0 +80,4.4279,15.2000,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,196869,0 +81,4.4100,14.7262,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,172092,0 +82,4.5102,14.3664,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,190739,0 +83,4.5860,14.6939,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,265705,0 +84,4.4379,14.3363,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,271362,0 +85,4.5313,14.7900,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,264082,0 +86,4.6777,14.4293,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,264372,0 +87,4.6398,14.1113,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,263254,0 +88,4.7704,14.8912,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,257479,0 +89,4.6924,14.2406,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,267853,0 +90,4.4293,14.6790,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,270459,0 +91,4.7787,14.5422,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,257661,0 +92,4.3808,14.3289,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,257847,0 +93,4.4575,14.8088,0.0276,0.0000,0,0,0.0000,0,0.0000,0,0,0,262758,0 +94,4.5395,14.7143,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,263638,0 +95,4.4938,14.3374,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,270969,0 +96,4.4901,14.2670,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,184602,0 +97,4.4135,14.4110,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,167039,0 +98,4.4005,14.4552,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,233729,0 +99,4.3775,14.6673,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,243138,0 +100,4.3270,14.7729,0.0387,0.0000,0,0,0.0000,0,0.0000,0,0,0,262523,0 +101,4.7503,14.3326,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,257681,0 +102,4.6259,14.3144,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,260462,0 +103,4.5120,14.2867,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,260329,0 +104,4.6585,14.6715,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,248666,0 +105,4.9968,14.3750,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,264208,0 +106,4.6473,14.9150,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,272211,0 +107,4.5526,14.3953,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,235040,0 +108,4.2884,14.6970,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,239652,0 +109,4.5729,14.3826,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,241939,0 +110,4.7849,14.3043,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,246557,0 +111,4.8672,14.3673,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,250670,0 +112,4.4493,14.5331,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,238595,0 +113,4.3424,14.3241,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,175399,0 +114,4.8762,14.2720,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,241097,0 +115,4.6850,14.7515,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,209848,0 +116,4.6350,14.7716,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,246548,0 +117,4.5565,14.2862,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,275640,0 +118,4.5124,14.6278,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,271179,0 +119,4.5388,14.5645,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,269986,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.txt new file mode 100644 index 0000000..cc77f77 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.719 +avg_encode_latency_ms=17.096 +p95_encode_latency_ms=41.361 +max_encode_latency_ms=81.606 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30486622 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.csv new file mode 100644 index 0000000..26ae0dc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.4690,177.5472,0.0235,0.0000,0,0,0.0000,0,0.0000,0,1,0,39300,0 +1,4.5853,263.8675,0.0175,0.0000,0,0,0.0000,0,0.0000,0,1,0,61056,0 +2,4.5040,396.2824,0.0162,0.0000,0,0,0.0000,0,0.0000,0,1,0,67394,0 +3,4.8359,529.8402,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,60701,0 +4,4.5458,649.6701,0.0179,0.0000,0,0,0.0000,0,0.0000,0,1,0,52315,0 +5,5.1598,662.4994,0.0220,0.0000,0,0,0.0000,0,0.0000,0,1,0,60749,0 +6,4.6531,660.3750,0.0158,0.0000,0,0,0.0000,0,0.0000,0,1,0,61355,0 +7,4.8911,658.1933,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,60859,0 +8,4.7191,653.2758,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,53547,0 +9,4.6438,660.7861,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,60509,0 +10,4.4790,659.4812,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,61216,0 +11,4.6027,655.3863,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,61463,0 +12,4.6922,649.5556,0.0222,0.0000,0,0,0.0000,0,0.0000,0,1,0,48809,0 +13,4.6333,640.3836,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,61140,0 +14,4.7953,629.4834,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,61882,0 +15,4.4941,627.9367,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,61425,0 +16,4.6989,625.3347,0.0143,0.0000,0,0,0.0000,0,0.0000,0,1,0,50616,0 +17,4.4545,621.2225,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,59821,0 +18,4.4241,637.8269,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,61103,0 +19,4.6261,641.1682,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,61380,0 +20,4.5736,638.1436,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,48426,0 +21,4.5495,655.3877,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,61107,0 +22,4.6320,664.3226,0.0203,0.0000,0,0,0.0000,0,0.0000,0,1,0,61026,0 +23,7.8564,680.7214,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,61351,0 +24,4.6133,677.4203,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,47589,0 +25,4.5776,685.1783,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,60485,0 +26,4.6096,675.5327,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,60771,0 +27,4.9271,669.2035,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,60613,0 +28,4.5215,637.4757,0.0083,0.0000,0,0,0.0000,0,0.0000,0,1,0,47243,0 +29,4.6000,641.3862,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,60039,0 +30,4.6283,659.1213,0.0134,0.0000,0,0,0.0000,0,0.0000,0,1,0,61186,0 +31,4.5553,655.9148,0.0043,0.0000,0,0,0.0000,0,0.0000,0,1,0,61157,0 +32,4.6059,659.3432,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,37123,0 +33,4.5451,662.3039,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,60149,0 +34,4.6504,666.7767,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,68601,0 +35,4.6311,649.0981,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,62556,0 +36,4.8880,646.3880,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,54038,0 +37,4.6917,641.2827,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,62584,0 +38,4.5761,639.4272,0.0047,0.0000,0,0,0.0000,0,0.0000,0,1,0,62374,0 +39,4.6056,632.3102,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,62687,0 +40,4.5723,631.9316,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,54164,0 +41,4.5329,639.2209,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,62256,0 +42,4.6296,647.5079,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,62863,0 +43,4.5827,649.4965,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,63112,0 +44,4.7353,646.7328,0.0119,0.0000,0,0,0.0000,0,0.0000,0,1,0,50637,0 +45,4.4157,643.9033,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,62592,0 +46,4.5129,646.4791,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,62931,0 +47,4.5875,650.3353,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,63418,0 +48,4.6066,643.4598,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,51991,0 +49,4.6208,649.6493,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,61579,0 +50,4.4443,674.7472,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,62899,0 +51,4.4545,705.0275,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,62597,0 +52,4.5710,709.8174,0.0105,0.0000,0,0,0.0000,0,0.0000,0,1,0,49694,0 +53,4.6817,715.4033,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,62289,0 +54,4.7862,726.6751,0.0044,0.0000,0,0,0.0000,0,0.0000,0,1,0,62595,0 +55,4.5116,716.0462,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,63102,0 +56,5.0216,702.2864,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,49153,0 +57,4.4665,699.1674,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,62283,0 +58,4.6126,708.8341,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,62112,0 +59,4.5154,706.4375,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,62699,0 +60,4.6110,710.4573,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,48576,0 +61,4.6550,687.8069,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,62070,0 +62,4.7014,675.4686,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,62059,0 +63,4.5721,667.2050,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,61791,0 +64,4.4881,649.8058,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,38858,0 +65,4.6079,634.8989,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,61855,0 +66,4.5170,632.9210,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,67577,0 +67,4.6596,635.6778,0.0057,0.0000,0,0,0.0000,0,0.0000,0,1,0,60496,0 +68,4.3788,630.3731,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,53085,0 +69,4.5927,633.6692,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,60935,0 +70,4.7020,631.4035,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,61404,0 +71,4.6912,634.1134,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,61218,0 +72,4.6835,631.4732,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,53227,0 +73,4.6800,634.7585,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,60400,0 +74,4.5449,635.9486,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,61302,0 +75,4.3559,635.3779,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,61511,0 +76,4.5559,633.4618,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,48638,0 +77,4.4835,636.5459,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,61453,0 +78,4.8287,642.3124,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,61926,0 +79,4.5550,647.2316,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,61725,0 +80,4.6509,644.9619,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,50803,0 +81,4.4398,649.9945,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,59984,0 +82,4.7149,648.5030,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,61154,0 +83,4.7215,641.9623,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,61149,0 +84,4.5700,641.8496,0.0186,0.0000,0,0,0.0000,0,0.0000,0,1,0,49027,0 +85,4.5440,645.3944,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,60925,0 +86,4.5206,644.2811,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,61527,0 +87,4.5579,642.4079,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,61861,0 +88,4.6016,638.9404,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,47943,0 +89,4.5469,637.9300,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,60738,0 +90,4.5133,638.6019,0.0043,0.0000,0,0,0.0000,0,0.0000,0,1,0,60825,0 +91,4.5959,663.1267,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,61070,0 +92,4.6614,662.5236,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,47006,0 +93,4.5122,666.8733,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,60723,0 +94,4.3775,674.3792,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,60622,0 +95,4.6437,672.2656,0.0043,0.0000,0,0,0.0000,0,0.0000,0,1,0,60996,0 +96,4.5623,641.2434,0.0064,0.0000,0,0,0.0000,0,0.0000,0,1,0,37367,0 +97,4.3921,640.5438,0.0089,0.0000,0,0,0.0000,0,0.0000,0,1,0,59407,0 +98,4.4759,637.9138,0.0161,0.0000,0,0,0.0000,0,0.0000,0,1,0,68242,0 +99,4.5135,627.1281,0.0057,0.0000,0,0,0.0000,0,0.0000,0,1,0,62925,0 +100,4.6276,628.0675,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,53661,0 +101,4.7957,633.8997,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,62529,0 +102,4.5276,636.3213,0.0267,0.0000,0,0,0.0000,0,0.0000,0,1,0,62828,0 +103,4.6725,640.6223,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,63130,0 +104,4.6028,639.1985,0.0047,0.0000,0,0,0.0000,0,0.0000,0,1,0,54397,0 +105,4.6223,639.2144,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,62370,0 +106,4.5329,638.2745,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,63316,0 +107,4.5042,654.9335,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,63110,0 +108,4.5785,659.8484,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,50965,0 +109,4.6004,665.1115,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,62521,0 +110,4.5950,667.2363,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,63200,0 +111,4.7361,666.6086,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,63234,0 +112,4.6454,651.7280,0.0073,0.0000,0,0,0.0000,0,0.0000,0,1,0,52196,0 +113,4.7058,642.7957,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,61212,0 +114,4.5206,642.9434,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,62749,0 +115,4.5918,643.9496,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,62819,0 +116,4.6124,644.3255,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,51343,0 +117,4.5471,645.2605,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,62551,0 +118,4.6450,647.1526,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,62471,0 +119,4.7343,643.7601,0.0047,0.0000,0,0,0.0000,0,0.0000,0,1,0,62955,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.txt new file mode 100644 index 0000000..ec8f092 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.hevc.vcp +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.650 +avg_encode_latency_ms=643.025 +p95_encode_latency_ms=706.557 +max_encode_latency_ms=726.675 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=7050668 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.csv new file mode 100644 index 0000000..2956d9c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0990,74.4121,0.0385,0.0000,0,0,0.0000,0,0.0000,0,1,0,108448,0 +1,7.0695,38.0680,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,121598,0 +2,8.7565,37.0548,0.0326,0.0000,0,0,0.0000,0,0.0000,0,0,0,154664,0 +3,7.1863,37.9980,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,175174,0 +4,6.7152,39.1497,0.0455,0.0000,0,0,0.0000,0,0.0000,0,0,0,205332,0 +5,6.9388,38.4093,0.0344,0.0000,0,0,0.0000,0,0.0000,0,0,0,231359,0 +6,7.0203,27.7282,0.0609,0.0000,0,0,0.0000,0,0.0000,0,0,0,284150,0 +7,7.5258,18.5593,0.0516,0.0000,0,0,0.0000,0,0.0000,0,0,0,304941,0 +8,7.2345,15.2996,0.0277,0.0000,0,0,0.0000,0,0.0000,0,0,0,277617,0 +9,7.0744,15.7031,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,286623,0 +10,7.0892,15.9429,0.0674,0.0000,0,0,0.0000,0,0.0000,0,0,0,365946,0 +11,7.3276,15.2706,0.0527,0.0000,0,0,0.0000,0,0.0000,0,0,0,350138,0 +12,7.0134,15.8252,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,345367,0 +13,6.8465,15.6277,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,348168,0 +14,7.1115,15.5991,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,345637,0 +15,7.0561,15.1058,0.0587,0.0000,0,0,0.0000,0,0.0000,0,0,0,356489,0 +16,6.8044,15.8865,0.0683,0.0000,0,0,0.0000,0,0.0000,0,0,0,339699,0 +17,6.9425,15.2533,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,241442,0 +18,6.9256,15.3274,0.0561,0.0000,0,0,0.0000,0,0.0000,0,0,0,260589,0 +19,6.9389,15.7609,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,298458,0 +20,6.9435,16.3741,0.0490,0.0000,0,0,0.0000,0,0.0000,0,0,0,361134,0 +21,6.9440,15.7348,0.0525,0.0000,0,0,0.0000,0,0.0000,0,0,0,331937,0 +22,7.2460,15.7097,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,336641,0 +23,7.0385,15.7317,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,263091,0 +24,7.1309,15.8014,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,272134,0 +25,7.0651,15.5242,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,283852,0 +26,7.0548,15.7123,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,289146,0 +27,7.3328,15.3584,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,291135,0 +28,6.9170,15.9324,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,289458,0 +29,7.4409,15.2592,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,255556,0 +30,6.6920,15.7493,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,262891,0 +31,6.9607,15.5765,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,272006,0 +32,6.7966,15.8512,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,245460,0 +33,6.9242,15.1518,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,179757,0 +34,6.7872,15.9452,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,198113,0 +35,7.0165,15.1489,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,232614,0 +36,6.8632,16.3962,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,223189,0 +37,6.8563,15.5723,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,212672,0 +38,6.8284,15.5038,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,220997,0 +39,7.2674,15.8530,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,216687,0 +40,6.7830,15.6780,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,206254,0 +41,6.7433,15.8820,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,218543,0 +42,6.7619,15.5038,0.0460,0.0000,0,0,0.0000,0,0.0000,0,0,0,276560,0 +43,7.5529,15.5451,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,263539,0 +44,7.6017,15.7055,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,262523,0 +45,7.3177,15.5607,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,263307,0 +46,7.0650,15.5563,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,266372,0 +47,6.8729,15.6784,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,272818,0 +48,7.0240,15.4098,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,257532,0 +49,6.9747,15.7978,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,183731,0 +50,7.1087,15.6583,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,197494,0 +51,7.2315,15.4359,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,239021,0 +52,6.9661,16.7890,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,285798,0 +53,7.0439,15.5860,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,258493,0 +54,7.6659,15.3371,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,263038,0 +55,6.7219,15.4853,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,261527,0 +56,7.4307,15.2809,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,250038,0 +57,7.3270,15.3030,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,260575,0 +58,6.9692,16.0868,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,263532,0 +59,6.9485,15.6265,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,264522,0 +60,6.9833,12.9563,0.0535,0.0000,0,0,0.0000,0,0.0000,0,1,0,525183,0 +61,7.1684,15.7803,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,218579,0 +62,7.2116,15.4253,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,205032,0 +63,7.0343,15.8319,0.0411,0.0000,0,0,0.0000,0,0.0000,0,0,0,231842,0 +64,6.9678,15.7554,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,208945,0 +65,6.9932,15.4211,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,157652,0 +66,6.7353,15.4108,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,167160,0 +67,7.6441,15.7641,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,203065,0 +68,6.8306,15.7908,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,235941,0 +69,6.7450,15.8971,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,215309,0 +70,6.7929,15.5754,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,275925,0 +71,6.7776,15.8895,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,254740,0 +72,6.7520,15.3190,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,242092,0 +73,6.7901,15.8103,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,253671,0 +74,7.0812,15.7015,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,260640,0 +75,6.8567,15.5278,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,260184,0 +76,7.2919,15.2886,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,260063,0 +77,6.8683,15.5108,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,265703,0 +78,7.2432,15.2067,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,265056,0 +79,7.1487,15.7507,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,271657,0 +80,7.2462,15.4180,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,256049,0 +81,6.9883,15.2468,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,183989,0 +82,7.0349,15.7587,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,196768,0 +83,7.0964,15.9306,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,239387,0 +84,6.7814,16.0112,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,283866,0 +85,6.9584,15.7547,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,258277,0 +86,6.9677,15.1632,0.0453,0.0000,0,0,0.0000,0,0.0000,0,0,0,265111,0 +87,7.0728,15.2263,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,259872,0 +88,7.3049,15.5178,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,252689,0 +89,6.8107,15.3110,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,259413,0 +90,7.3223,15.3209,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,263634,0 +91,6.7736,15.9820,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,264909,0 +92,7.3238,15.4980,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,265126,0 +93,6.8094,15.5438,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,267850,0 +94,7.1742,15.6753,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,266272,0 +95,6.7733,15.7355,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,274187,0 +96,8.6023,15.6634,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,247283,0 +97,7.2367,15.6947,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,182510,0 +98,6.7950,15.3222,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,198047,0 +99,6.9488,15.6879,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,231553,0 +100,7.5056,16.4384,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,275143,0 +101,6.8620,15.5938,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,248776,0 +102,7.5072,15.4328,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,255476,0 +103,6.6439,15.8787,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,252111,0 +104,7.4500,15.7365,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,239692,0 +105,7.2782,15.2612,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,253050,0 +106,7.7555,15.5695,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,258000,0 +107,7.0230,15.1232,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,260752,0 +108,7.1426,15.8614,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,259317,0 +109,6.8422,15.5905,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,265069,0 +110,7.0050,15.8356,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,264018,0 +111,7.5361,15.2154,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,272153,0 +112,7.3662,15.4888,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,255884,0 +113,7.3673,15.8442,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,184232,0 +114,6.8655,15.3463,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,199052,0 +115,6.8059,15.4392,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,238607,0 +116,6.7545,16.4118,0.0322,0.0000,0,0,0.0000,0,0.0000,0,0,0,284990,0 +117,6.8534,15.0858,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,257891,0 +118,6.7884,15.5210,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,263234,0 +119,7.0308,15.0344,0.0289,0.0000,0,0,0.0000,0,0.0000,0,0,0,262911,0 +120,6.8829,12.4878,0.0441,0.0000,0,0,0.0000,0,0.0000,0,1,0,513353,0 +121,6.7652,15.2565,0.0490,0.0000,0,0,0.0000,0,0.0000,0,0,0,214720,0 +122,6.9834,15.0806,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,202525,0 +123,6.9997,15.2213,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,223017,0 +124,6.9147,15.9657,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,226902,0 +125,6.9730,15.4595,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,230736,0 +126,6.8990,15.6349,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,231221,0 +127,6.8933,15.9956,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,238678,0 +128,7.0045,15.6613,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,211881,0 +129,7.1823,15.5348,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,158808,0 +130,6.7953,16.1210,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,171567,0 +131,7.1358,15.2513,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,247905,0 +132,7.0994,15.9525,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,280673,0 +133,6.9200,15.2605,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,253960,0 +134,6.9332,15.7833,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,259235,0 +135,6.9104,15.2647,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,256908,0 +136,6.9002,15.3447,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,243568,0 +137,7.1208,15.1228,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,255552,0 +138,6.7007,15.6709,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,261459,0 +139,6.8235,15.3950,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,264929,0 +140,6.8492,15.5603,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,263362,0 +141,7.0842,15.7518,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,269765,0 +142,6.9337,15.9589,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,267806,0 +143,6.9020,15.1876,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,275077,0 +144,7.1218,15.2997,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,258680,0 +145,6.9036,15.3343,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,188553,0 +146,7.1352,15.4397,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,200905,0 +147,6.9244,15.2733,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,240568,0 +148,6.8005,16.7765,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,287695,0 +149,7.1171,15.0611,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,262594,0 +150,7.0191,15.8139,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,266869,0 +151,7.2032,15.3748,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,265171,0 +152,7.1137,15.2290,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,253229,0 +153,7.0134,15.5076,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,264765,0 +154,6.8226,15.7257,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,267891,0 +155,6.8279,15.1148,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,268554,0 +156,6.8018,15.5913,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,267159,0 +157,7.0823,15.8974,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,271626,0 +158,6.9280,15.1807,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,270838,0 +159,6.9274,15.2206,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,277742,0 +160,6.8858,15.9126,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,250467,0 +161,6.9015,15.8317,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,184169,0 +162,6.8013,15.3692,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,161618,0 +163,7.1140,15.5260,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,206768,0 +164,6.7718,16.6975,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,233205,0 +165,7.2084,15.3380,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,272300,0 +166,6.9427,15.6539,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,260371,0 +167,6.9882,15.7628,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,258986,0 +168,6.8476,15.7208,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,241315,0 +169,7.4231,16.2221,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,260207,0 +170,6.7858,15.6697,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,260443,0 +171,6.8792,15.8517,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,264439,0 +172,6.8297,15.8293,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,263022,0 +173,7.2047,15.6470,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,268803,0 +174,7.3403,15.2534,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,270656,0 +175,7.5762,15.9825,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,272959,0 +176,6.8297,15.6364,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,257858,0 +177,6.7283,15.2910,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,188798,0 +178,7.0341,15.9704,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,201862,0 +179,7.5209,15.7438,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,242645,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.txt new file mode 100644 index 0000000..213fbba --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.057 +avg_encode_latency_ms=16.612 +p95_encode_latency_ms=16.777 +max_encode_latency_ms=74.412 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=45558452 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt new file mode 100644 index 0000000..6add013 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt @@ -0,0 +1,4 @@ +error: VTCompressionSessionCreate failed: -12902 + +ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --list-encoders diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.csv new file mode 100644 index 0000000..5657396 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.1720,64.8160,0.0422,0.0000,0,0,0.0000,0,0.0000,0,1,0,118218,0 +1,17.4473,36.3206,0.0269,0.0000,0,0,0.0000,0,0.0000,0,0,0,111443,0 +2,21.2712,25.2812,0.0423,0.0000,0,0,0.0000,0,0.0000,0,0,0,149620,0 +3,10.9442,24.4857,0.0412,0.0000,0,0,0.0000,0,0.0000,0,0,0,179764,0 +4,10.2614,25.4244,0.0421,0.0000,0,0,0.0000,0,0.0000,0,0,0,207593,0 +5,10.0238,26.2478,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,235371,0 +6,9.6634,27.6695,0.0489,0.0000,0,0,0.0000,0,0.0000,0,0,0,283310,0 +7,10.0221,28.3636,0.0625,0.0000,0,0,0.0000,0,0.0000,0,0,0,268697,0 +8,10.3120,28.4371,0.0423,0.0000,0,0,0.0000,0,0.0000,0,0,0,240958,0 +9,9.6694,21.5774,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,256454,0 +10,9.7745,21.7157,0.0507,0.0000,0,0,0.0000,0,0.0000,0,0,0,322565,0 +11,9.6516,21.4590,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,317668,0 +12,10.0174,21.3229,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,257032,0 +13,9.5079,21.4797,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,275773,0 +14,9.9969,21.3610,0.0510,0.0000,0,0,0.0000,0,0.0000,0,0,0,278142,0 +15,10.4135,21.5089,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,283815,0 +16,10.3335,21.7815,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,193592,0 +17,9.6525,21.2811,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,238201,0 +18,9.8785,21.2750,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,242735,0 +19,10.5897,21.2392,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,286771,0 +20,9.8943,21.9335,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,338160,0 +21,10.2631,20.5960,0.0460,0.0000,0,0,0.0000,0,0.0000,0,0,0,317302,0 +22,10.0081,22.0184,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,323857,0 +23,9.6043,21.2718,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,268016,0 +24,9.4156,21.4479,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,267378,0 +25,11.1300,21.0258,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,274878,0 +26,9.7429,21.3463,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,283128,0 +27,9.4184,21.1442,0.0480,0.0000,0,0,0.0000,0,0.0000,0,0,0,286420,0 +28,9.7018,21.6985,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,282704,0 +29,9.6624,20.8932,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,293005,0 +30,9.5102,21.3565,0.0581,0.0000,0,0,0.0000,0,0.0000,0,0,0,292033,0 +31,9.6050,21.2867,0.0320,0.0000,0,0,0.0000,0,0.0000,0,0,0,296676,0 +32,9.8331,21.6920,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,202460,0 +33,10.4881,20.6667,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,190859,0 +34,10.1069,21.1975,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +35,9.6815,21.4191,0.0327,0.0000,0,0,0.0000,0,0.0000,0,0,0,300138,0 +36,9.7163,22.1412,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,338558,0 +37,10.2235,21.4122,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,311334,0 +38,9.6824,21.2194,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,263610,0 +39,9.7522,21.8248,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,272653,0 +40,9.4560,21.4435,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,257267,0 +41,10.5742,21.2550,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,275971,0 +42,9.7724,21.3158,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,281194,0 +43,10.0236,21.7856,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,285072,0 +44,10.1407,20.8083,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,281444,0 +45,9.4317,20.9425,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,288034,0 +46,10.1872,21.1721,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,232259,0 +47,9.5017,21.0992,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,233773,0 +48,9.8042,21.4857,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,158179,0 +49,9.9446,20.8986,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,159970,0 +50,9.6703,21.2676,0.0312,0.0000,0,0,0.0000,0,0.0000,0,0,0,202544,0 +51,9.8370,22.1694,0.0395,0.0000,0,0,0.0000,0,0.0000,0,0,0,313907,0 +52,10.1319,22.4092,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,343182,0 +53,10.4109,21.4737,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,267866,0 +54,10.0917,20.9731,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,283183,0 +55,10.1461,21.6791,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,224723,0 +56,10.0538,21.3320,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,216967,0 +57,9.4310,21.0969,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,225087,0 +58,9.6089,21.7750,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,232455,0 +59,10.3865,21.2745,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,234622,0 +60,10.8231,16.9479,0.0452,0.0000,0,0,0.0000,0,0.0000,0,1,0,509980,0 +61,9.8654,21.1211,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,215017,0 +62,9.7009,21.5030,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,189506,0 +63,9.5430,21.3766,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,190024,0 +64,10.0283,21.7965,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,127488,0 +65,9.6034,21.3913,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,159617,0 +66,10.1922,20.9008,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,200797,0 +67,9.8987,21.3994,0.0690,0.0000,0,0,0.0000,0,0.0000,0,0,0,311960,0 +68,10.0187,22.7225,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,336078,0 +69,9.4797,20.9464,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,256549,0 +70,9.8700,21.9217,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,275265,0 +71,9.6549,21.3045,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,274241,0 +72,9.8811,20.9859,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,259654,0 +73,9.7338,21.5070,0.0496,0.0000,0,0,0.0000,0,0.0000,0,0,0,276553,0 +74,9.5410,20.9899,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,282075,0 +75,9.4216,21.3275,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,285109,0 +76,9.9518,21.9789,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,280555,0 +77,9.6327,21.8704,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,232436,0 +78,9.4024,20.9765,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,234493,0 +79,10.1758,21.9617,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,234620,0 +80,9.8526,21.7862,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,159790,0 +81,9.3882,21.2756,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,193475,0 +82,9.8859,21.0271,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,211511,0 +83,9.9492,21.2249,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,311746,0 +84,9.9947,22.4201,0.0665,0.0000,0,0,0.0000,0,0.0000,0,0,0,344122,0 +85,9.7514,21.2304,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,267814,0 +86,9.7610,21.7095,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,282911,0 +87,9.4849,21.1150,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,226941,0 +88,9.4761,21.1135,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,217283,0 +89,9.4863,21.2437,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,226086,0 +90,9.8453,21.9061,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,233101,0 +91,9.4794,21.6397,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,235007,0 +92,9.8207,21.3253,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,232277,0 +93,10.1681,20.9612,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,238327,0 +94,9.5136,21.5162,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,239404,0 +95,9.8584,21.1938,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,244354,0 +96,10.2972,21.1843,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,162168,0 +97,9.9380,21.7168,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,191201,0 +98,9.7359,21.7208,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,205718,0 +99,9.9519,21.1687,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,307650,0 +100,9.7591,22.4508,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,340823,0 +101,10.1073,20.7425,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,260406,0 +102,9.6865,21.4635,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,275755,0 +103,10.0933,21.5260,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,275881,0 +104,9.6436,21.4472,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,259373,0 +105,9.7553,21.3909,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,276839,0 +106,9.8146,22.0529,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,282349,0 +107,9.8842,21.1345,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,287050,0 +108,9.8475,21.4140,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,226369,0 +109,10.1172,21.5755,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,232126,0 +110,9.5495,21.4397,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,235512,0 +111,10.1875,21.1475,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,238103,0 +112,9.5239,21.1055,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,160189,0 +113,9.6950,21.4001,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,196705,0 +114,9.7250,21.4183,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,213235,0 +115,9.8815,22.1301,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,312908,0 +116,9.7340,22.7521,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,285514,0 +117,10.0554,21.6598,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,279954,0 +118,9.4037,21.5010,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,288591,0 +119,9.8641,21.2433,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,228678,0 +120,9.6121,17.2680,0.0943,0.0000,0,0,0.0000,0,0.0000,0,1,0,501385,0 +121,10.2302,20.9202,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,205906,0 +122,9.5723,21.4073,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,222330,0 +123,9.7320,21.2620,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,180555,0 +124,10.3065,20.9013,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,187689,0 +125,9.4652,21.1737,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,246317,0 +126,10.1595,20.8325,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,243102,0 +127,9.8775,21.5560,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,245446,0 +128,9.5921,21.7400,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,154324,0 +129,9.8487,20.9962,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,194660,0 +130,10.4476,20.9563,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,206452,0 +131,9.5435,21.3873,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,310411,0 +132,9.7945,22.3229,0.0305,0.0000,0,0,0.0000,0,0.0000,0,0,0,341999,0 +133,9.7928,21.3428,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,259723,0 +134,10.2100,21.1414,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,275054,0 +135,9.6675,21.6824,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,276259,0 +136,10.2972,21.1614,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,261346,0 +137,9.7319,21.2546,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,278543,0 +138,9.9848,21.2101,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,284100,0 +139,9.8010,21.4997,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,286534,0 +140,9.8638,21.7829,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,285469,0 +141,9.5347,21.2891,0.0435,0.0000,0,0,0.0000,0,0.0000,0,0,0,291546,0 +142,10.1788,21.6015,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,234031,0 +143,9.4733,21.6970,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,236046,0 +144,10.0410,20.8785,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,159358,0 +145,9.8483,21.3031,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,161358,0 +146,10.5481,21.2894,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,205502,0 +147,9.8283,21.5882,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,318816,0 +148,10.1211,21.7458,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,345989,0 +149,9.5006,21.5413,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,268718,0 +150,10.1215,21.4562,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,286755,0 +151,9.6001,21.5501,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,227123,0 +152,10.0533,20.9751,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,218114,0 +153,10.7558,20.8583,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,230490,0 +154,10.4537,20.9307,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,236109,0 +155,9.6673,21.3750,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,240330,0 +156,9.9408,21.8276,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,235830,0 +157,9.4803,21.5575,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,241544,0 +158,10.0061,20.8217,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,242906,0 +159,9.6206,21.4742,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,247913,0 +160,9.8997,22.0811,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,215734,0 +161,9.5408,21.4914,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,157864,0 +162,9.7653,20.8252,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,255383,0 +163,9.6147,21.2315,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,233812,0 +164,9.7365,22.5578,0.0462,0.0000,0,0,0.0000,0,0.0000,0,0,0,301562,0 +165,9.4806,21.1763,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,276487,0 +166,9.8406,21.4506,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,285332,0 +167,10.2825,20.8505,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,280620,0 +168,10.0891,20.9849,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,209769,0 +169,9.5994,21.5370,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,226296,0 +170,10.2997,21.0057,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,228400,0 +171,9.7773,21.3067,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,237679,0 +172,10.1988,21.0042,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,232480,0 +173,9.8614,21.0580,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,239568,0 +174,10.4491,20.9493,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,241259,0 +175,9.7607,21.6417,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,243735,0 +176,10.2384,21.0251,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,212114,0 +177,9.7635,21.1157,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,162416,0 +178,9.8124,22.2348,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,260758,0 +179,9.7244,21.2503,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,241547,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.txt new file mode 100644 index 0000000..3cd6c8d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.000 +avg_encode_latency_ms=21.884 +p95_encode_latency_ms=22.839 +max_encode_latency_ms=64.816 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=45189586 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.csv b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.csv new file mode 100644 index 0000000..f4b4d4d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.2178,62.9658,0.0370,0.0000,0,0,0.0000,0,0.0000,0,1,0,115336,0 +1,11.9731,45.4702,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,93025,0 +2,11.4087,46.1223,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,120156,0 +3,11.7163,46.6023,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,138308,0 +4,11.6409,46.9905,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,165872,0 +5,11.6161,47.4872,0.0408,0.0000,0,0,0.0000,0,0.0000,0,0,0,201753,0 +6,10.8939,46.8514,0.0607,0.0000,0,0,0.0000,0,0.0000,0,0,0,245280,0 +7,11.0300,41.3426,0.0487,0.0000,0,0,0.0000,0,0.0000,0,0,0,282719,0 +8,11.9060,35.9611,0.0374,0.0000,0,0,0.0000,0,0.0000,0,0,0,225958,0 +9,11.2688,32.3197,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,242096,0 +10,11.6055,27.7864,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,239786,0 +11,11.3583,23.3694,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,243895,0 +12,11.6025,23.3793,0.0616,0.0000,0,0,0.0000,0,0.0000,0,0,0,310056,0 +13,11.1378,23.4584,0.0650,0.0000,0,0,0.0000,0,0.0000,0,0,0,314770,0 +14,11.1635,23.1698,0.0435,0.0000,0,0,0.0000,0,0.0000,0,0,0,318458,0 +15,11.0996,23.5211,0.0429,0.0000,0,0,0.0000,0,0.0000,0,0,0,248668,0 +16,11.3647,23.2934,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,221209,0 +17,11.0540,23.7093,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,165128,0 +18,11.2873,23.8382,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,224113,0 +19,11.1542,23.1381,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,335970,0 +20,11.1788,24.2881,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,386756,0 +21,11.0070,23.8752,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,301373,0 +22,12.4450,23.4277,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,311286,0 +23,11.3422,23.3867,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,250938,0 +24,11.2924,23.3942,0.0395,0.0000,0,0,0.0000,0,0.0000,0,0,0,243735,0 +25,12.0216,23.3688,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,245818,0 +26,11.5140,23.2589,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,256190,0 +27,10.8503,23.3228,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,327464,0 +28,11.2827,23.5556,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,257291,0 +29,10.9747,23.5145,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,265527,0 +30,11.0806,23.6730,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,264359,0 +31,10.8676,23.9793,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,271940,0 +32,11.2716,23.5026,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,230103,0 +33,11.1575,24.1622,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,171309,0 +34,11.1530,23.8297,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,219922,0 +35,11.7363,23.2163,0.0548,0.0000,0,0,0.0000,0,0.0000,0,0,0,340287,0 +36,11.4334,24.6328,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,384877,0 +37,11.6885,24.0561,0.0425,0.0000,0,0,0.0000,0,0.0000,0,0,0,291754,0 +38,11.3618,23.4039,0.0488,0.0000,0,0,0.0000,0,0.0000,0,0,0,312509,0 +39,11.0573,23.8377,0.0334,0.0000,0,0,0.0000,0,0.0000,0,0,0,243374,0 +40,11.2996,23.3589,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,231178,0 +41,11.0412,23.1197,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,246886,0 +42,11.1621,23.6292,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,255387,0 +43,11.6128,23.0945,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,258939,0 +44,10.8344,23.5177,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,257861,0 +45,11.4123,23.7000,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,264840,0 +46,10.8891,23.3931,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,266245,0 +47,11.4075,23.0462,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,267705,0 +48,10.7389,24.2060,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,233494,0 +49,11.5759,23.9361,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,177773,0 +50,11.4139,23.5648,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,215838,0 +51,11.1249,23.5940,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,281300,0 +52,12.4360,24.6416,0.0771,0.0000,0,0,0.0000,0,0.0000,0,0,0,346412,0 +53,11.3217,23.7773,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,318729,0 +54,11.0536,23.8298,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,263436,0 +55,10.9982,23.9387,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,257013,0 +56,10.9082,23.2912,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,247333,0 +57,11.5771,23.3405,0.0361,0.0000,0,0,0.0000,0,0.0000,0,0,0,257502,0 +58,11.0276,23.3554,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,262506,0 +59,11.5730,23.7739,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,266612,0 +60,11.0528,19.9904,0.0665,0.0000,0,0,0.0000,0,0.0000,0,1,0,583376,0 +61,10.9705,24.0292,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,246846,0 +62,11.1061,23.5721,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,217888,0 +63,11.5342,23.2360,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,180536,0 +64,12.0742,23.1396,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,188209,0 +65,11.0024,23.1211,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,146679,0 +66,11.0050,23.5867,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,182010,0 +67,11.4802,23.3946,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,275061,0 +68,11.0550,24.4284,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,344494,0 +69,11.1507,23.4369,0.0640,0.0000,0,0,0.0000,0,0.0000,0,0,0,310228,0 +70,10.8040,23.8680,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,255982,0 +71,11.4475,23.3426,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,248646,0 +72,11.0876,23.5976,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,231509,0 +73,12.1517,23.1861,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,253820,0 +74,10.8217,23.9162,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,258430,0 +75,11.6925,23.5441,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,263523,0 +76,11.3490,23.3006,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,260266,0 +77,11.3637,23.3910,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,266995,0 +78,12.2555,23.2643,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,269370,0 +79,11.1162,23.6727,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,270184,0 +80,10.8784,23.6359,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,237842,0 +81,10.8482,23.4764,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,147219,0 +82,11.8804,23.3978,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,182593,0 +83,11.2183,24.3362,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,270176,0 +84,12.7467,25.0050,0.0522,0.0000,0,0,0.0000,0,0.0000,0,0,0,349493,0 +85,12.0877,23.8716,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,318372,0 +86,12.0778,23.5640,0.0375,0.0000,0,0,0.0000,0,0.0000,0,0,0,263568,0 +87,11.9892,23.7022,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,256931,0 +88,11.4678,23.5721,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,192655,0 +89,11.4640,23.9469,0.0485,0.0000,0,0,0.0000,0,0.0000,0,0,0,263956,0 +90,12.1551,24.0800,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,263198,0 +91,11.4148,24.0075,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,269787,0 +92,11.5588,24.0032,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,205747,0 +93,11.8141,23.9462,0.0660,0.0000,0,0,0.0000,0,0.0000,0,0,0,283637,0 +94,11.8573,23.9526,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,271340,0 +95,11.7353,24.0394,0.0271,0.0000,0,0,0.0000,0,0.0000,0,0,0,218658,0 +96,11.5535,23.7832,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,244631,0 +97,11.7586,23.6882,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,169598,0 +98,11.6962,27.5661,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,214585,0 +99,11.5698,25.3198,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,271817,0 +100,23.5275,25.3820,0.0393,0.0000,0,0,0.0000,0,0.0000,0,0,0,341969,0 +101,15.2576,24.3860,0.0861,0.0000,0,0,0.0000,0,0.0000,0,0,0,309420,0 +102,11.4759,24.9193,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,253720,0 +103,11.2242,25.5620,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,248425,0 +104,11.9633,23.8695,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,176558,0 +105,11.0070,23.7094,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,259119,0 +106,11.1852,24.1237,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,257922,0 +107,11.1748,23.9193,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,266163,0 +108,11.1702,24.3696,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,259979,0 +109,11.3528,23.5927,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,269295,0 +110,11.7830,23.6908,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,209969,0 +111,11.0595,23.9506,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,278619,0 +112,11.1450,23.7424,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,237594,0 +113,11.4390,24.1017,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,151551,0 +114,11.0845,23.5864,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,181292,0 +115,10.9701,23.9369,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,274608,0 +116,11.1158,25.1238,0.0423,0.0000,0,0,0.0000,0,0.0000,0,0,0,349553,0 +117,11.8549,23.5645,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,252803,0 +118,11.1178,23.6920,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,264150,0 +119,11.1629,23.7773,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,200699,0 +120,11.2282,19.8437,0.0872,0.0000,0,0,0.0000,0,0.0000,0,1,0,482649,0 +121,11.4009,24.1024,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,246228,0 +122,11.0886,23.8032,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,213568,0 +123,11.6427,24.0235,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,179097,0 +124,11.4171,23.8858,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,226047,0 +125,11.2087,23.9089,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,221305,0 +126,11.4496,23.8296,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,230647,0 +127,11.6419,23.8607,0.0479,0.0000,0,0,0.0000,0,0.0000,0,0,0,293138,0 +128,12.1012,23.5797,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,238985,0 +129,11.7065,23.9373,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,146641,0 +130,11.7798,23.6568,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,176547,0 +131,11.1073,23.7297,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,267877,0 +132,10.9941,25.2286,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,349692,0 +133,11.2825,24.1933,0.0334,0.0000,0,0,0.0000,0,0.0000,0,0,0,310045,0 +134,11.1171,23.8162,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,255731,0 +135,11.1100,23.9686,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,249549,0 +136,11.1017,23.7709,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,235503,0 +137,11.4908,23.7745,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,253312,0 +138,11.4228,23.8555,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,258780,0 +139,11.3723,23.9495,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,264874,0 +140,11.0261,23.8398,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,262121,0 +141,11.2260,23.7633,0.0408,0.0000,0,0,0.0000,0,0.0000,0,0,0,268161,0 +142,11.3982,23.4953,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,270340,0 +143,11.6028,24.3137,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,272138,0 +144,11.5453,23.8805,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,182424,0 +145,11.2794,23.5882,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,185134,0 +146,11.1330,23.5362,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,177708,0 +147,11.4567,23.4024,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,281701,0 +148,11.1706,24.7590,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,346597,0 +149,11.0785,23.8381,0.0308,0.0000,0,0,0.0000,0,0.0000,0,0,0,321142,0 +150,11.2567,23.9939,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,261712,0 +151,11.2830,23.6886,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,258165,0 +152,10.9992,23.6823,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,192158,0 +153,10.9152,23.9151,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,267490,0 +154,11.3550,23.3490,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,263746,0 +155,11.0880,23.3026,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,270569,0 +156,11.1607,24.2121,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,207090,0 +157,11.5262,23.8133,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,283187,0 +158,11.0564,23.4447,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,274381,0 +159,11.1973,23.9330,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,217329,0 +160,11.1581,23.7823,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,241014,0 +161,11.0976,23.1503,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,168839,0 +162,10.8260,23.9645,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,215701,0 +163,11.3932,23.2658,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,272579,0 +164,11.1882,25.0334,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,343588,0 +165,11.0415,23.8211,0.0293,0.0000,0,0,0.0000,0,0.0000,0,0,0,310247,0 +166,11.0788,23.5493,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,254370,0 +167,11.2904,24.0265,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,248931,0 +168,10.9701,24.4363,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,178727,0 +169,11.2964,23.9839,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,261760,0 +170,10.8595,23.4538,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,258023,0 +171,11.1782,23.9678,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,265789,0 +172,10.9835,23.2286,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,259655,0 +173,11.2230,23.3198,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,266948,0 +174,10.9720,23.6715,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,212260,0 +175,11.0523,23.1755,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,279362,0 +176,10.6574,23.7599,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,237919,0 +177,10.7726,23.3722,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,150468,0 +178,11.0953,23.7541,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,181459,0 +179,11.4148,23.7975,0.0380,0.0000,0,0,0.0000,0,0.0000,0,0,0,275391,0 diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.txt new file mode 100644 index 0000000..a0b6446 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=4096x2304 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=11.433 +avg_encode_latency_ms=24.969 +p95_encode_latency_ms=32.502 +max_encode_latency_ms=62.966 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=45446158 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.csv diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary.md b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary.md new file mode 100644 index 0000000..3e409ec --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary.md @@ -0,0 +1,30 @@ +# MacBook Pro Encoder ID Probe + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +## Key Findings + +- Combining `--encoder-id` with `EnableLowLatencyRateControl` failed session creation with `VTCompressionSessionCreate -12902` for the tested encoder IDs. +- Forcing `com.apple.videotoolbox.videoencoder.ave.hevc` while disabling low-latency rate-control produced the best Plan C results so far. +- Forcing `com.apple.videotoolbox.videoencoder.hevc.vcp` produced very high latency and should not be used for this pipeline. + +## Useful Results + +| Test | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:| +| HEVC 2560x1440 120Mbps, `ave.hevc`, no low-latency RC | 120 | 0 | 17.096 | 41.361 | 81.606 | 30,486,622 | +| HEVC 3200x1800 120Mbps, `ave.hevc`, no low-latency RC | 180 | 0 | 16.612 | 16.777 | 74.412 | 45,558,452 | +| HEVC 3840x2160 120Mbps, `ave.hevc`, no low-latency RC | 180 | 0 | 21.884 | 22.839 | 64.816 | 45,189,586 | +| HEVC 4096x2304 120Mbps, `ave.hevc`, no low-latency RC | 180 | 0 | 24.969 | 32.502 | 62.966 | 45,446,158 | +| HEVC 2560x1440 120Mbps, `hevc.vcp`, no low-latency RC | 120 | 0 | 643.025 | 706.557 | 726.675 | 7,050,668 | +| H.264 3840x2160 120Mbps, `ave.avc`, no low-latency RC | 120 | 0 | 202.079 | 236.803 | 238.827 | 23,554,835 | + +## Decision + +For MacBook Pro Primary testing, prefer: + +```bash +--codec hevc --disable-low-latency-rate-control --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc +``` + +This is a measured machine-specific result, not yet a universal default. diff --git a/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary_extract.txt b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary_extract.txt new file mode 100644 index 0000000..393226b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary_extract.txt @@ -0,0 +1,105 @@ +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_h264.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_5120x2880_120mbps_com_apple_videotoolbox_videoencoder_ave_avc.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp.txt +error: VTCompressionSessionCreate failed: -12902 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/h264_3840x2160_120mbps_com_apple_videotoolbox_videoencoder_ave_avc_no_lowlatency.txt +resolution=3840x2160 +codec=h264 +encoder_id=com.apple.videotoolbox.videoencoder.ave.avc +low_latency_rate_control=off +frames_requested=120 +frames_encoded=120 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=202.079 +p95_encode_latency_ms=236.803 +max_encode_latency_ms=238.827 +payload_bytes=23554835 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.txt +resolution=2560x1440 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=120 +frames_encoded=120 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=17.096 +p95_encode_latency_ms=41.361 +max_encode_latency_ms=81.606 +payload_bytes=30486622 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_hevc_vcp_no_lowlatency.txt +resolution=2560x1440 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.hevc.vcp +low_latency_rate_control=off +frames_requested=120 +frames_encoded=120 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=643.025 +p95_encode_latency_ms=706.557 +max_encode_latency_ms=726.675 +payload_bytes=7050668 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_2560x1440_120mbps_com_apple_videotoolbox_videoencoder_ave_hevc_no_lowlatency.txt +resolution=2560x1440 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=120 +frames_encoded=120 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=17.096 +p95_encode_latency_ms=41.361 +max_encode_latency_ms=81.606 +payload_bytes=30486622 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3200x1800_120mbps_ave_hevc_no_lowlatency.txt +resolution=3200x1800 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=16.612 +p95_encode_latency_ms=16.777 +max_encode_latency_ms=74.412 +payload_bytes=45558452 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_3840x2160_120mbps_ave_hevc_no_lowlatency.txt +resolution=3840x2160 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=21.884 +p95_encode_latency_ms=22.839 +max_encode_latency_ms=64.816 +payload_bytes=45189586 +benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/hevc_4096x2304_120mbps_ave_hevc_no_lowlatency.txt +resolution=4096x2304 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_encode_latency_ms=24.969 +p95_encode_latency_ms=32.502 +max_encode_latency_ms=62.966 +payload_bytes=45446158 diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/nc_48320.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/nc_48320.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/nc_ssh.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/nc_ssh.txt new file mode 100644 index 0000000..f7616a2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/nc_ssh.txt @@ -0,0 +1 @@ +Connection to 100.86.52.88 port 22 [tcp/ssh] succeeded! diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ping_20_imac.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ping_20_imac.txt new file mode 100644 index 0000000..566af5f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ping_20_imac.txt @@ -0,0 +1,25 @@ +PING 100.86.52.88 (100.86.52.88): 56 data bytes +64 bytes from 100.86.52.88: icmp_seq=0 ttl=128 time=197.165 ms +64 bytes from 100.86.52.88: icmp_seq=1 ttl=128 time=39.552 ms +64 bytes from 100.86.52.88: icmp_seq=2 ttl=128 time=157.491 ms +64 bytes from 100.86.52.88: icmp_seq=3 ttl=128 time=59.211 ms +64 bytes from 100.86.52.88: icmp_seq=4 ttl=128 time=87.370 ms +64 bytes from 100.86.52.88: icmp_seq=5 ttl=128 time=55.528 ms +64 bytes from 100.86.52.88: icmp_seq=6 ttl=128 time=19.540 ms +64 bytes from 100.86.52.88: icmp_seq=7 ttl=128 time=42.739 ms +64 bytes from 100.86.52.88: icmp_seq=8 ttl=128 time=87.981 ms +64 bytes from 100.86.52.88: icmp_seq=9 ttl=128 time=197.059 ms +64 bytes from 100.86.52.88: icmp_seq=10 ttl=128 time=423.525 ms +64 bytes from 100.86.52.88: icmp_seq=11 ttl=128 time=18.850 ms +64 bytes from 100.86.52.88: icmp_seq=12 ttl=128 time=39.990 ms +64 bytes from 100.86.52.88: icmp_seq=13 ttl=128 time=115.005 ms +64 bytes from 100.86.52.88: icmp_seq=14 ttl=128 time=78.074 ms +64 bytes from 100.86.52.88: icmp_seq=15 ttl=128 time=14.484 ms +64 bytes from 100.86.52.88: icmp_seq=16 ttl=128 time=17.823 ms +64 bytes from 100.86.52.88: icmp_seq=17 ttl=128 time=173.991 ms +64 bytes from 100.86.52.88: icmp_seq=18 ttl=128 time=139.671 ms +64 bytes from 100.86.52.88: icmp_seq=19 ttl=128 time=207.521 ms + +--- 100.86.52.88 ping statistics --- +20 packets transmitted, 20 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 14.484/108.629/423.525/96.505 ms diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_default.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_default.txt new file mode 100644 index 0000000..18d5f26 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_default.txt @@ -0,0 +1 @@ +Host key verification failed. diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabriel.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabriel.txt new file mode 100644 index 0000000..18d5f26 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabriel.txt @@ -0,0 +1 @@ +Host key verification failed. diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabrieljang.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabrieljang.txt new file mode 100644 index 0000000..18d5f26 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/ssh_gabrieljang.txt @@ -0,0 +1 @@ +Host key verification failed. diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/summary.md b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/summary.md new file mode 100644 index 0000000..1de9af5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/summary.md @@ -0,0 +1,16 @@ +# MacBook Pro to iMac Tailscale Probe + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +## Result + +- Target: `100.86.52.88` (`oosu-imac`) +- `tailscale ping`: initially DERP Tokyo, then direct `14.4.153.167:1050` +- ICMP ping: 20/20 received, min/avg/max/stddev `14.484/108.629/423.525/96.505 ms` +- TCP port 22: open +- TCP port 48320: not confirmed listening during this probe +- SSH auth: blocked; MBP key is not accepted by Windows iMac SSH + +## Interpretation + +This path is usable for reachability checks but too jittery to judge display streaming quality. Live receiver tests require either Windows iMac SSH authentication from this MacBook Pro or manual receiver startup on the iMac. diff --git a/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/tailscale_ping_imac.txt b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/tailscale_ping_imac.txt new file mode 100644 index 0000000..b17c4f5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/tailscale_ping_imac.txt @@ -0,0 +1,4 @@ +pong from oosu-imac (100.86.52.88) via DERP(tok) in 465ms +pong from oosu-imac (100.86.52.88) via DERP(tok) in 146ms +pong from oosu-imac (100.86.52.88) via DERP(tok) in 199ms +pong from oosu-imac (100.86.52.88) via 14.4.153.167:1050 in 94ms diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/displays.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/displays.txt new file mode 100644 index 0000000..6d61b2b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/displays.txt @@ -0,0 +1,38 @@ +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + Sidecar Display: + Resolution: 2360 x 1640 + UI Looks like: 1180 x 820 @ 60.00Hz + Framebuffer Depth: 24-Bit Color (ARGB8888) + Mirror: Off + Connection Type: AirPlay + Virtual Device: Yes + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/image_sizes.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/image_sizes.txt new file mode 100644 index 0000000..4fcb100 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/image_sizes.txt @@ -0,0 +1,12 @@ +/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/display_1.png + pixelWidth: 3024 + pixelHeight: 1964 +/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/display_2.png + pixelWidth: 1080 + pixelHeight: 1920 +/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/display_3.png + pixelWidth: 1920 + pixelHeight: 1080 +/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/display_4.png + pixelWidth: 2360 + pixelHeight: 1640 diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_1.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_1.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_2.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_2.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_3.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_3.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_4.txt b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/screencapture_4.txt new file mode 100644 index 0000000..e69de29 diff --git a/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/summary.md b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/summary.md new file mode 100644 index 0000000..61d2afc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/summary.md @@ -0,0 +1,16 @@ +# MacBook Pro Display Capture Smoke + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +## Captured Displays + +| Capture | Pixel size | Display | +|---|---:|---| +| `display_1.png` | 3024x1964 | built-in Color LCD | +| `display_2.png` | 1080x1920 | TFX173T external portrait display | +| `display_3.png` | 1920x1080 | LG IPS FULLHD external display | +| `display_4.png` | 2360x1640 | Sidecar Display | + +## Result + +macOS `screencapture` can capture all four currently attached displays without a new permission prompt. iBridge still needs ScreenCaptureKit integration before these displays can be used as live capture sources inside the app. diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.csv b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.csv new file mode 100644 index 0000000..f6092ec --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1430,59.9342,0.0227,0.0000,0,0,0.0000,0,0.0000,0,1,0,65434,0 +1,15.5723,29.1946,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,47159,0 +2,13.3694,24.2410,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,51912,0 +3,8.8868,24.0399,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,62666,0 +4,7.1366,25.3271,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,71666,0 +5,6.9130,27.0024,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,89827,0 +6,7.1481,16.9296,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,113132,0 +7,7.0758,16.8252,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,138989,0 +8,7.0362,16.6343,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,144010,0 +9,7.3418,16.7195,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,119250,0 +10,6.9468,16.8131,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,117514,0 +11,7.1630,16.4952,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,143526,0 +12,6.9063,16.2092,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,133804,0 +13,6.9055,16.4707,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,132816,0 +14,7.3170,16.0505,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,134951,0 +15,7.3885,16.2828,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,129194,0 +16,7.0973,16.8042,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,111265,0 +17,7.0638,16.4680,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,45083,0 +18,7.2302,16.1453,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,55284,0 +19,7.2848,17.2806,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,79644,0 +20,7.6998,16.7779,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,245556,0 +21,6.9577,16.5983,0.0464,0.0000,0,0,0.0000,0,0.0000,0,0,0,199094,0 +22,7.1530,16.7986,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,199317,0 +23,6.9616,16.7606,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,159495,0 +24,7.6363,16.3352,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,116545,0 +25,7.0253,16.7825,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,128579,0 +26,7.2579,16.5054,0.0408,0.0000,0,0,0.0000,0,0.0000,0,0,0,168602,0 +27,7.8687,16.0225,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,129135,0 +28,6.9202,16.7015,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,167365,0 +29,7.0130,16.2680,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,126971,0 +30,7.3039,16.1337,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,137375,0 +31,7.3585,16.7829,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,168796,0 +32,6.7936,16.0135,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,108550,0 +33,7.1365,16.6227,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48777,0 +34,7.1850,16.1339,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,57612,0 +35,7.3354,17.3316,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,81228,0 +36,6.9047,16.1197,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,244316,0 +37,7.2229,16.3943,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,194751,0 +38,7.4367,16.0680,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,157558,0 +39,6.9698,16.5619,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,121068,0 +40,6.9481,16.7637,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,117826,0 +41,7.0232,16.5727,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,164861,0 +42,7.1006,16.0470,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,122924,0 +43,7.2702,16.9587,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,168955,0 +44,7.3533,16.5990,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,121133,0 +45,7.1448,16.5355,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,171169,0 +46,7.1119,16.3217,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,124906,0 +47,7.2465,16.1252,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133525,0 +48,7.2489,16.5269,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,109730,0 +49,7.1411,16.5288,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,46606,0 +50,6.9845,16.1819,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,58008,0 +51,7.5465,16.7638,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,82013,0 +52,7.6145,16.8434,0.0456,0.0000,0,0,0.0000,0,0.0000,0,0,0,248616,0 +53,7.2209,16.5645,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,202990,0 +54,7.0773,16.6455,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,165346,0 +55,7.2971,16.3169,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,130803,0 +56,7.0695,16.4665,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,102938,0 +57,7.4020,16.6925,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,138000,0 +58,6.9577,17.0158,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133088,0 +59,7.2296,16.1343,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,139067,0 +60,7.4415,13.6268,0.0530,0.0000,0,0,0.0000,0,0.0000,0,1,0,286317,0 +61,7.0642,16.3915,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,135407,0 +62,7.0166,16.2669,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,122149,0 +63,7.3453,16.5679,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,95341,0 +64,7.2793,16.5353,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,82265,0 +65,7.0057,16.3638,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,46889,0 +66,7.0711,16.2815,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,53587,0 +67,7.1230,16.9483,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,59437,0 +68,6.7910,16.2615,0.0329,0.0000,0,0,0.0000,0,0.0000,0,0,0,263788,0 +69,7.1282,16.8103,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,170298,0 +70,7.0104,16.8098,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,135307,0 +71,6.9759,16.4600,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,132607,0 +72,6.8221,16.3394,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,123707,0 +73,6.9075,16.3132,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,136532,0 +74,7.1102,16.1348,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,135688,0 +75,7.4480,16.5649,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,139866,0 +76,7.0878,16.5318,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,135478,0 +77,7.2702,16.0197,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,138429,0 +78,6.9752,16.0808,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,135703,0 +79,6.9242,16.7502,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,136477,0 +80,7.1363,16.2685,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,117461,0 +81,6.7483,16.1367,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46705,0 +82,7.0178,16.6400,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,57982,0 +83,7.4115,16.8335,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,239202,0 +84,6.8742,16.5186,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,166663,0 +85,7.2185,16.5245,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133997,0 +86,6.9488,16.5230,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,111793,0 +87,7.2291,16.3891,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,143899,0 +88,6.8419,16.5924,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,128485,0 +89,7.0399,16.5835,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,139508,0 +90,6.7377,16.3153,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,137830,0 +91,7.0503,16.7983,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,141342,0 +92,7.0690,16.6166,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,137908,0 +93,7.0885,16.3098,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,141158,0 +94,7.1175,16.3113,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,115485,0 +95,6.7697,16.4545,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,116371,0 +96,7.4341,16.1798,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,38466,0 +97,6.9383,16.3887,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,66646,0 +98,7.3600,16.5805,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,75861,0 +99,7.2245,16.4106,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,73249,0 +100,7.0970,17.0342,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,260141,0 +101,6.9203,16.3286,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,160681,0 +102,6.9843,16.6502,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133700,0 +103,7.3643,16.2656,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,130983,0 +104,7.2039,16.0692,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,116727,0 +105,7.2932,16.6073,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,126093,0 +106,6.9093,16.8693,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,129182,0 +107,7.0988,16.1552,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,132628,0 +108,7.4338,16.0045,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,132282,0 +109,7.0988,16.2851,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,135030,0 +110,6.9692,16.2327,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,137330,0 +111,7.7340,16.1268,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,136019,0 +112,7.4005,16.4207,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,36318,0 +113,6.8063,16.5197,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,55192,0 +114,7.0083,16.5862,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,64704,0 +115,7.2105,16.2115,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,74279,0 +116,6.9933,17.0855,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,260288,0 +117,7.3266,16.0767,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,164970,0 +118,7.0600,16.3319,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,138349,0 +119,7.2629,16.8340,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,112420,0 +120,7.1366,13.5105,0.0278,0.0000,0,0,0.0000,0,0.0000,0,1,0,271589,0 +121,7.3679,16.6230,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,130338,0 +122,6.9934,16.6121,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,121188,0 +123,7.3258,16.0987,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,98434,0 +124,7.4221,16.8733,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,102579,0 +125,7.2448,16.3215,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,124078,0 +126,7.0559,16.2422,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,126584,0 +127,7.3195,16.6488,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,126625,0 +128,6.9475,16.4704,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,37273,0 +129,7.3560,16.4963,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,59645,0 +130,7.1335,16.5252,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,68056,0 +131,7.1827,16.7029,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,76281,0 +132,6.9985,17.1532,0.0590,0.0000,0,0,0.0000,0,0.0000,0,0,0,278881,0 +133,7.1530,16.7352,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,170143,0 +134,7.3512,16.0418,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,139051,0 +135,7.1329,16.0135,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,135511,0 +136,6.8987,16.6715,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,116224,0 +137,7.0702,16.0818,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,130072,0 +138,6.8803,16.4315,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,133909,0 +139,7.7599,16.6823,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,136896,0 +140,7.5740,16.1349,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,135078,0 +141,7.4902,16.6901,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,138953,0 +142,7.7724,16.3915,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,140824,0 +143,7.6755,16.2595,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,140107,0 +144,6.8643,16.4146,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,39912,0 +145,7.2844,16.8096,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,64285,0 +146,7.3162,16.3634,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,64137,0 +147,7.3723,15.9716,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,74782,0 +148,6.8702,17.2531,0.0514,0.0000,0,0,0.0000,0,0.0000,0,0,0,261761,0 +149,7.2421,16.2320,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,167695,0 +150,7.1596,16.0709,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,140806,0 +151,7.3534,16.4625,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,139301,0 +152,7.2521,16.0638,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,125066,0 +153,7.3622,16.6442,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,131288,0 +154,7.2082,16.1489,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,136246,0 +155,7.0555,16.7137,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,138184,0 +156,6.9082,16.2231,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,136214,0 +157,7.2875,16.5878,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,139026,0 +158,7.1828,16.0547,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,142597,0 +159,7.3198,16.6686,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,116850,0 +160,7.1932,16.3377,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,36577,0 +161,7.0640,15.9240,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,59736,0 +162,6.7427,16.5233,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,67096,0 +163,6.9418,16.6010,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,76241,0 +164,6.7287,17.2336,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,266012,0 +165,7.1184,16.3842,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,163624,0 +166,7.3263,16.8299,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,133985,0 +167,7.7847,16.7535,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,110573,0 +168,7.3000,16.0736,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,118640,0 +169,7.2885,16.7474,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,128045,0 +170,7.1206,15.9865,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,132325,0 +171,7.2971,15.9274,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133902,0 +172,7.0571,16.2692,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,134215,0 +173,7.3941,16.1050,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,135551,0 +174,6.9612,16.2667,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,139399,0 +175,7.0163,16.3433,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,137717,0 +176,6.8854,16.0639,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,37225,0 +177,7.0559,16.7413,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,55969,0 +178,7.0611,16.2995,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,65771,0 +179,6.9325,16.5774,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,75404,0 diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.txt b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.txt new file mode 100644 index 0000000..0b00b93 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=3024x1964 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.260 +avg_encode_latency_ms=16.941 +p95_encode_latency_ms=17.235 +max_encode_latency_ms=59.934 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22627395 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.csv b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.csv new file mode 100644 index 0000000..381c8ff --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.7277,49.2383,0.0241,0.0000,0,0,0.0000,0,0.0000,0,1,0,72290,0 +1,2.6475,25.4597,0.0246,0.0000,0,0,0.0000,0,0.0000,0,0,0,97076,0 +2,2.5452,28.1334,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,107859,0 +3,2.6659,17.6007,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,107223,0 +4,2.4880,9.5397,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,135225,0 +5,2.5661,8.9393,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,148308,0 +6,2.5777,9.0680,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,134812,0 +7,2.5636,9.1584,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,156218,0 +8,2.4436,8.7692,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,143624,0 +9,2.6036,9.0017,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,173132,0 +10,2.5888,8.9243,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,168952,0 +11,2.6514,8.9122,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,189206,0 +12,2.5215,8.9585,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,165494,0 +13,2.5828,9.2454,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,167763,0 +14,2.5768,8.8268,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,167132,0 +15,2.4665,9.0010,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,173134,0 +16,2.5688,9.2341,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,144526,0 +17,2.9340,9.0025,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,135491,0 +18,2.5363,8.7921,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,140453,0 +19,2.5269,9.1923,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,148606,0 +20,2.5345,9.0231,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,172508,0 +21,2.5936,9.0488,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,143346,0 +22,3.1301,9.3430,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,147971,0 +23,2.5655,8.7222,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,151777,0 +24,2.6728,8.9325,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,145693,0 +25,2.5220,8.9115,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,133711,0 +26,3.0904,8.9906,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,130111,0 +27,2.5218,8.7455,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,131439,0 +28,2.7793,9.2939,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,131796,0 +29,2.5477,8.8235,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,134090,0 +30,2.6031,9.2320,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,136762,0 +31,2.5921,9.0162,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,136598,0 +32,2.5202,8.7538,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,91393,0 +33,2.4899,9.3046,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,90139,0 +34,3.7660,9.2725,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,98395,0 +35,2.5990,8.7555,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,105687,0 +36,2.6703,8.9388,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,124298,0 +37,3.9022,9.2494,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,136039,0 +38,2.6435,8.7347,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,114837,0 +39,2.6715,8.8332,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,118999,0 +40,4.2237,9.1197,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,113768,0 +41,2.6096,8.9425,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,119003,0 +42,2.6612,9.0384,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,123012,0 +43,2.6465,8.9171,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,123860,0 +44,3.7980,9.0218,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,122166,0 +45,2.6319,8.7182,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,122812,0 +46,3.8188,9.5020,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,124985,0 +47,2.5800,9.2317,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,101262,0 +48,2.6864,9.1715,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,89133,0 +49,2.5854,9.1354,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,77671,0 +50,2.6578,9.1198,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,88091,0 +51,3.2670,8.8803,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,100817,0 +52,2.5900,9.1185,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,134066,0 +53,2.6622,9.0508,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,122011,0 +54,2.7251,9.0698,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,123085,0 +55,2.5945,9.1192,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,123404,0 +56,2.5612,9.1453,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,118986,0 +57,2.5780,8.9595,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,123767,0 +58,2.6061,9.1945,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,119552,0 +59,2.5030,9.2016,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,138254,0 +60,2.5197,7.5231,0.0683,0.0000,0,0,0.0000,0,0.0000,0,1,0,277891,0 +61,2.6410,9.0624,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,117468,0 +62,2.5505,9.2502,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,113236,0 +63,2.6504,8.9502,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,94722,0 +64,2.5951,9.5187,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,83402,0 +65,2.7130,9.1540,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,75634,0 +66,2.6134,8.8922,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,84223,0 +67,2.6580,9.2435,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,101711,0 +68,2.6675,8.9471,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,127656,0 +69,2.6408,9.0463,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,118594,0 +70,2.6219,9.1970,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,119304,0 +71,2.9047,9.4057,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,138973,0 +72,2.7647,9.0025,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,128696,0 +73,2.5915,9.2462,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,135123,0 +74,2.5784,9.0555,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,139080,0 +75,2.6218,8.8425,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,138327,0 +76,2.4275,9.3086,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,137704,0 +77,2.7550,8.8046,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,137576,0 +78,2.5713,8.7610,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,138326,0 +79,2.5373,9.0403,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,141913,0 +80,2.4973,8.9158,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,92315,0 +81,2.5895,8.8690,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,108530,0 +82,2.4704,8.9808,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,111585,0 +83,2.6395,8.7855,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,126695,0 +84,2.4943,8.8026,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,139215,0 +85,2.6971,8.9713,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,134606,0 +86,4.7824,8.9526,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,136043,0 +87,2.5995,9.0188,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,136807,0 +88,3.3253,9.1336,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,132762,0 +89,5.2049,9.1499,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,139875,0 +90,2.6086,9.0008,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,132608,0 +91,2.6880,8.8097,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,133206,0 +92,2.3849,9.0922,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,132934,0 +93,2.7242,9.1190,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,134475,0 +94,4.1530,9.4696,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,136488,0 +95,2.6659,8.8762,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,118821,0 +96,2.6589,9.0432,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,94974,0 +97,3.0539,9.2536,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,90956,0 +98,2.5429,9.1164,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,111756,0 +99,2.6722,9.2432,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,129484,0 +100,2.6935,9.2514,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,134634,0 +101,2.6004,9.2114,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,130670,0 +102,2.6569,8.8873,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,132625,0 +103,3.2677,9.1847,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,133550,0 +104,2.6115,9.1285,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,128293,0 +105,2.6000,8.9177,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,133834,0 +106,2.5940,9.0823,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,137666,0 +107,2.5880,9.0699,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,118366,0 +108,2.6603,8.8229,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,119967,0 +109,2.5832,9.2736,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,122341,0 +110,2.6671,8.8793,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,124400,0 +111,2.5340,8.9105,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,126512,0 +112,2.6368,9.0171,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,94527,0 +113,2.8783,8.6900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,95597,0 +114,2.5233,8.7812,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,100718,0 +115,2.6067,9.0820,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,104043,0 +116,2.5179,8.7690,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,149881,0 +117,2.5561,8.9504,0.0484,0.0000,0,0,0.0000,0,0.0000,0,0,0,135725,0 +118,2.8935,9.1490,0.1061,0.0000,0,0,0.0000,0,0.0000,0,0,0,136240,0 +119,5.2266,9.0377,0.0350,0.0000,0,0,0.0000,0,0.0000,0,0,0,136693,0 +120,5.5782,7.6474,0.1218,0.0000,0,0,0.0000,0,0.0000,0,1,0,280250,0 +121,5.3614,8.8153,0.0333,0.0000,0,0,0.0000,0,0.0000,0,0,0,122438,0 +122,4.4340,8.8376,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,111362,0 +123,6.5588,9.0435,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,113756,0 +124,3.6190,9.0420,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,115109,0 +125,8.5166,8.8255,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,117192,0 +126,3.6919,9.0095,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,120357,0 +127,2.6067,9.1646,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,121737,0 +128,5.2764,9.9779,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,90805,0 +129,3.8632,8.8857,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,91496,0 +130,2.5540,9.0494,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,98823,0 +131,2.6020,9.7967,0.0288,0.0000,0,0,0.0000,0,0.0000,0,0,0,133623,0 +132,3.9962,9.2993,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,135915,0 +133,2.5083,9.2456,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,131952,0 +134,4.2942,8.7922,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133623,0 +135,2.5976,8.9294,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,135740,0 +136,3.9065,9.3887,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,128327,0 +137,2.4789,9.0045,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,135508,0 +138,3.6203,9.2091,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,137870,0 +139,4.4347,9.3475,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,139715,0 +140,4.1003,8.9458,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,119201,0 +141,2.5026,8.8558,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,123533,0 +142,4.9437,9.3720,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,125755,0 +143,2.5212,8.8078,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,128563,0 +144,2.5713,8.8830,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,95797,0 +145,2.6989,9.1535,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,96613,0 +146,2.8079,8.8815,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,101406,0 +147,2.5033,9.2466,0.0480,0.0000,0,0,0.0000,0,0.0000,0,0,0,105891,0 +148,3.9505,8.9936,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,150294,0 +149,2.5349,8.7766,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,136266,0 +150,2.5431,9.0580,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,137582,0 +151,5.7275,9.0625,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,137721,0 +152,2.8205,8.8554,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,132194,0 +153,2.6422,8.7971,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,121259,0 +154,3.8533,8.9504,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,119651,0 +155,3.2617,9.4837,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,120113,0 +156,3.8692,8.8486,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,119373,0 +157,6.8498,9.4027,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,121303,0 +158,2.6360,8.7464,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,123249,0 +159,4.2848,9.0072,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,123998,0 +160,2.6227,9.1648,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,94601,0 +161,5.4604,9.1446,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,92667,0 +162,2.6436,8.8202,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,113581,0 +163,4.3842,9.4697,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,124335,0 +164,2.5536,8.8588,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,138018,0 +165,2.5675,8.8108,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,133434,0 +166,2.4531,9.1898,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,133172,0 +167,2.6099,9.2557,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,135340,0 +168,2.6198,8.7733,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,109607,0 +169,2.4466,9.1270,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,142145,0 +170,2.5562,8.7643,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,115675,0 +171,2.6275,8.9059,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,119492,0 +172,2.5177,9.0161,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,120014,0 +173,2.5702,8.9323,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,122589,0 +174,3.4336,9.1799,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,122838,0 +175,2.6222,9.1006,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,126631,0 +176,3.6648,9.2218,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,95167,0 +177,2.7023,8.9911,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,95375,0 +178,2.7045,9.0549,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,102330,0 +179,2.5867,8.8936,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106948,0 diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.txt b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.txt new file mode 100644 index 0000000..0396ea0 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=1920x1080 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.026 +avg_encode_latency_ms=9.498 +p95_encode_latency_ms=9.485 +max_encode_latency_ms=49.238 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22661113 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.csv b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.csv new file mode 100644 index 0000000..958868d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.7557,67.4253,0.0155,0.0000,0,0,0.0000,0,0.0000,0,1,0,48450,0 +1,4.6948,36.0320,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,50581,0 +2,4.8386,40.6310,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,62615,0 +3,4.6247,45.5847,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,66545,0 +4,4.7972,43.6400,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,71915,0 +5,4.6571,35.5039,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,81198,0 +6,4.8030,28.1523,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,91390,0 +7,5.0306,20.4439,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,114522,0 +8,4.8221,15.0936,0.0321,0.0000,0,0,0.0000,0,0.0000,0,0,0,132469,0 +9,4.8738,14.8690,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,165980,0 +10,4.5729,15.1276,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,161298,0 +11,4.6640,15.0723,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,133978,0 +12,5.4109,14.9850,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,139029,0 +13,4.9001,14.9622,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,141697,0 +14,5.1657,15.1334,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,172046,0 +15,4.8371,14.7684,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,138762,0 +16,4.7552,14.8969,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,104472,0 +17,4.6880,14.8220,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,97582,0 +18,4.4748,14.9543,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,126736,0 +19,4.8473,15.0825,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,148594,0 +20,4.8852,14.7703,0.0436,0.0000,0,0,0.0000,0,0.0000,0,0,0,212396,0 +21,4.9733,15.0183,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,186912,0 +22,4.8690,15.0565,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,187833,0 +23,4.7093,15.0097,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,146671,0 +24,4.8551,15.3634,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,150346,0 +25,4.6996,15.3405,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,157970,0 +26,4.8865,14.9078,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,135089,0 +27,5.0674,15.2082,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,140106,0 +28,4.8963,15.1519,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,167169,0 +29,5.1491,15.1098,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,136936,0 +30,4.6945,15.2079,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,143682,0 +31,4.9249,14.9882,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,145948,0 +32,4.8338,14.7227,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,104876,0 +33,4.6607,15.1538,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,100865,0 +34,4.8340,15.3419,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,100024,0 +35,5.1242,15.1153,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,157892,0 +36,4.7814,14.8860,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,166954,0 +37,5.3142,15.4020,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,129143,0 +38,5.3945,15.3118,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,141145,0 +39,4.6796,15.2172,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,134768,0 +40,5.3762,14.8931,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,128068,0 +41,4.8878,14.8370,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,137125,0 +42,4.7712,14.9925,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,139537,0 +43,4.7997,15.1140,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,143021,0 +44,5.3395,15.3232,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,139273,0 +45,5.4089,14.9445,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,143514,0 +46,4.6578,15.1206,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,144309,0 +47,5.2192,15.2658,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,117533,0 +48,4.9780,15.0539,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,85030,0 +49,5.2032,15.3298,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,83484,0 +50,4.9145,15.2156,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,102948,0 +51,4.9542,15.4758,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,129905,0 +52,4.6412,15.3226,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,180437,0 +53,4.8874,14.8417,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,133553,0 +54,4.4727,14.9789,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,142841,0 +55,4.9095,15.3527,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,139258,0 +56,4.7090,14.9730,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,134556,0 +57,4.6669,14.9361,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,113727,0 +58,4.7349,15.1640,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,120891,0 +59,4.6461,15.2137,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,123004,0 +60,4.5813,12.0820,0.0231,0.0000,0,0,0.0000,0,0.0000,0,1,0,241277,0 +61,5.0787,14.8963,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,111519,0 +62,4.8403,15.2934,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,98287,0 +63,4.7047,14.9633,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,99685,0 +64,4.8807,15.6114,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,66731,0 +65,5.0513,15.2810,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,70857,0 +66,4.6253,15.2376,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,82944,0 +67,4.8466,15.3177,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,129148,0 +68,5.1055,15.1975,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,150897,0 +69,4.7306,15.0483,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,139378,0 +70,4.9705,15.0980,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,116055,0 +71,5.0695,15.3570,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,116078,0 +72,4.6699,15.3086,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,110705,0 +73,4.8226,15.0702,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,119011,0 +74,4.5940,14.9658,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,122810,0 +75,4.7309,14.9775,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,122364,0 +76,4.6609,15.0427,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,121208,0 +77,4.7602,15.1186,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,124430,0 +78,4.5480,15.2155,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,124181,0 +79,4.7236,15.0541,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,124602,0 +80,4.8430,14.7399,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,85062,0 +81,4.7370,14.8674,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,82933,0 +82,4.5895,15.2191,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,100701,0 +83,4.7684,14.9297,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,159407,0 +84,5.0551,15.2223,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,172302,0 +85,4.5805,14.9313,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,134616,0 +86,5.5250,15.1899,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,142837,0 +87,4.6532,15.1070,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,139946,0 +88,4.7238,14.9474,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133529,0 +89,4.6071,15.2093,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,142079,0 +90,5.0743,14.8564,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,143067,0 +91,4.6010,15.1980,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,144040,0 +92,4.6782,14.8682,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,114267,0 +93,4.7526,14.8085,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,123749,0 +94,4.7493,14.9846,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,124838,0 +95,5.1133,14.9673,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,126061,0 +96,4.7513,15.0923,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,86227,0 +97,4.7418,15.4398,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,82165,0 +98,4.6928,14.8062,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,102712,0 +99,4.9208,15.1059,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,128247,0 +100,5.0623,15.4518,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,149828,0 +101,4.6320,15.3550,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,139540,0 +102,4.8031,15.2373,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,141833,0 +103,4.9873,15.2742,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,138496,0 +104,4.8471,15.3150,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,104150,0 +105,4.5859,15.0764,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,117190,0 +106,4.9828,15.1548,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,121103,0 +107,4.5081,14.8838,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,121697,0 +108,4.6291,15.0818,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,121152,0 +109,4.6425,15.1804,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,124568,0 +110,4.9471,15.2497,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,125125,0 +111,4.6277,15.0827,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,124517,0 +112,4.6787,14.7975,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,86003,0 +113,4.8566,14.8085,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,83823,0 +114,4.8388,14.9313,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,101168,0 +115,4.7750,15.2532,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,132235,0 +116,4.7868,15.0337,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,181762,0 +117,4.9386,15.4192,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,135049,0 +118,4.6646,15.3641,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,144857,0 +119,8.9071,17.2126,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,141983,0 +120,12.5769,12.3089,0.0310,0.0000,0,0,0.0000,0,0.0000,0,1,0,268785,0 +121,4.8672,15.2238,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,122658,0 +122,4.5471,14.9140,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,114494,0 +123,4.5782,15.1604,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,95894,0 +124,4.7055,15.1040,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,123372,0 +125,4.8183,15.0033,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,123060,0 +126,4.6603,15.2500,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,124509,0 +127,5.1406,15.5864,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,124044,0 +128,5.0149,15.2343,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,83409,0 +129,4.8730,14.9467,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,67016,0 +130,4.8390,15.2603,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,80844,0 +131,4.6627,15.0622,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,127748,0 +132,4.7361,15.0099,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,180759,0 +133,4.9366,14.9295,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,130782,0 +134,4.6190,15.2446,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,142508,0 +135,4.7304,15.1905,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,136491,0 +136,4.6243,15.4852,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,129001,0 +137,4.7177,15.1013,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,137126,0 +138,4.7377,14.8402,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,141457,0 +139,4.7170,15.0040,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,142367,0 +140,4.6685,15.0440,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,140941,0 +141,4.7790,15.0444,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,116647,0 +142,4.6175,15.4069,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,121992,0 +143,4.6917,14.8851,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,124313,0 +144,4.5549,15.0649,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,86128,0 +145,4.7032,15.5828,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,84262,0 +146,4.6498,15.0775,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,102755,0 +147,4.6993,15.1845,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,131640,0 +148,4.7401,15.1263,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,151486,0 +149,4.8930,15.2320,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,141849,0 +150,4.8512,14.7858,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,145476,0 +151,4.8800,15.0537,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,142224,0 +152,5.1843,14.8535,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,135032,0 +153,4.9801,15.2240,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,141554,0 +154,4.6939,15.0132,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,115420,0 +155,4.6145,15.0789,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,123801,0 +156,4.7524,15.1335,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,121389,0 +157,4.5121,18.4867,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,125168,0 +158,8.8765,15.6730,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,126042,0 +159,6.9790,15.2939,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,128166,0 +160,4.8500,15.4540,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,114502,0 +161,4.8784,15.3662,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,68694,0 +162,4.9113,15.1539,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,110210,0 +163,4.9173,15.2027,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,123850,0 +164,4.7826,14.9957,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,151620,0 +165,4.6992,14.8705,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,143436,0 +166,4.7172,15.1511,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,143049,0 +167,4.6803,15.1479,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,116579,0 +168,4.7695,15.0827,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,117053,0 +169,4.7905,15.0727,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,125281,0 +170,4.6947,15.1999,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,126976,0 +171,4.7262,15.0289,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,127903,0 +172,4.6528,15.0760,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,124799,0 +173,4.6263,15.4307,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,129595,0 +174,4.8495,14.8783,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,128882,0 +175,4.6428,15.2204,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,123049,0 +176,4.7482,15.0660,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,89708,0 +177,4.6677,14.9955,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,68653,0 +178,4.6894,15.6869,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,110283,0 +179,4.6714,15.0793,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,132737,0 diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.txt b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.txt new file mode 100644 index 0000000..6b2a909 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=2360x1640 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.921 +avg_encode_latency_ms=16.205 +p95_encode_latency_ms=17.276 +max_encode_latency_ms=67.425 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22655097 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary.md b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary.md new file mode 100644 index 0000000..a7a589c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary.md @@ -0,0 +1,16 @@ +# MacBook Pro Display Resolution Encode Probe + +Prompt: MacBook Pro Primary comparison after MacBook Air / iMac tests. + +All tests forced `com.apple.videotoolbox.videoencoder.ave.hevc` and disabled low-latency rate-control. + +| Display-sized source | Resolution | Frames | Failed | Avg generate ms | Avg encode ms | P95 encode ms | Max encode ms | +|---|---:|---:|---:|---:|---:|---:|---:| +| Built-in XDR | 3024x1964 | 180 | 0 | 7.260 | 16.941 | 17.235 | 59.934 | +| USB-C/portrait TFX173T | 1080x1920 | 180 | 0 | 4.076 | 9.718 | 9.559 | 62.368 | +| Sidecar iPad Air 5 | 2360x1640 | 180 | 0 | 4.921 | 16.205 | 17.276 | 67.425 | +| HDMI LG FHD | 1920x1080 | 180 | 0 | 3.026 | 9.498 | 9.485 | 49.238 | + +## Result + +All current display-sized synthetic sources encode successfully under the 60Hz frame budget on average. This does not yet prove live screen capture performance; it only isolates synthetic frame generation and VideoToolbox encode for each display resolution. diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary_extract.txt b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary_extract.txt new file mode 100644 index 0000000..2eb50a1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary_extract.txt @@ -0,0 +1,56 @@ +benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/builtin_xdr_3024x1964_hevc_60mbps.txt +resolution=3024x1964 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_generate_ms=7.260 +avg_encode_latency_ms=16.941 +p95_encode_latency_ms=17.235 +max_encode_latency_ms=59.934 +payload_bytes=22627395 +benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/hdmi_lg_fhd_1920x1080_hevc_60mbps.txt +resolution=1920x1080 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_generate_ms=3.026 +avg_encode_latency_ms=9.498 +p95_encode_latency_ms=9.485 +max_encode_latency_ms=49.238 +payload_bytes=22661113 +benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/sidecar_ipad_air5_2360x1640_hevc_60mbps.txt +resolution=2360x1640 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_generate_ms=4.921 +avg_encode_latency_ms=16.205 +p95_encode_latency_ms=17.276 +max_encode_latency_ms=67.425 +payload_bytes=22655097 +benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.txt +resolution=1080x1920 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +low_latency_rate_control=off +frames_requested=180 +frames_encoded=180 +failed_frames=0 +send_failed_frames=0 +avg_generate_ms=4.076 +avg_encode_latency_ms=9.718 +p95_encode_latency_ms=9.559 +max_encode_latency_ms=62.368 +payload_bytes=22675352 diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.csv b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.csv new file mode 100644 index 0000000..3841d4a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.7731,62.3676,0.0538,0.0000,0,0,0.0000,0,0.0000,0,1,0,73308,0 +1,2.6160,25.9665,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,96839,0 +2,2.6622,28.6747,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,107480,0 +3,2.5381,31.3991,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,106759,0 +4,2.4703,19.2463,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,134405,0 +5,2.4727,9.1628,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,147843,0 +6,2.6379,9.0446,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,135079,0 +7,2.5999,9.0379,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,157342,0 +8,2.5409,9.0048,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,144200,0 +9,2.6162,9.4186,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,172296,0 +10,2.5652,9.0470,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,170144,0 +11,2.6975,9.2657,0.0427,0.0000,0,0,0.0000,0,0.0000,0,0,0,190372,0 +12,2.5713,8.9523,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,164583,0 +13,2.6004,8.9134,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,168324,0 +14,2.5517,8.8163,0.0298,0.0000,0,0,0.0000,0,0.0000,0,0,0,168165,0 +15,2.7172,8.8429,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,172158,0 +16,2.5029,8.9490,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,144952,0 +17,3.2397,9.4620,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,134371,0 +18,2.7976,9.1468,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,140435,0 +19,4.2204,9.2740,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,149895,0 +20,2.5970,9.0095,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,172383,0 +21,2.5580,9.0685,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,143312,0 +22,2.5496,9.0248,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,149471,0 +23,2.5712,9.1283,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,151390,0 +24,2.5210,9.5885,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,146264,0 +25,2.5461,9.0791,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,132546,0 +26,2.6972,9.1359,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,131058,0 +27,2.5123,9.0427,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,132488,0 +28,2.6909,9.0895,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,132186,0 +29,2.5430,8.9633,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,135044,0 +30,2.6075,9.3019,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,137073,0 +31,2.5958,9.3455,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,118606,0 +32,2.5101,9.1220,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,95263,0 +33,2.6649,9.5528,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,72977,0 +34,2.6423,9.0560,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,86845,0 +35,2.5404,9.0218,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,101128,0 +36,2.6234,9.2159,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,99974,0 +37,2.5527,8.9380,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,126223,0 +38,2.7432,9.0628,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,119887,0 +39,2.6532,9.1818,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,120631,0 +40,2.6037,9.2034,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,115446,0 +41,2.4912,9.1170,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,138526,0 +42,2.4951,8.9599,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,140157,0 +43,2.5402,9.1636,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,120052,0 +44,3.2002,9.1173,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,121879,0 +45,2.6082,9.0223,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,122670,0 +46,2.5531,9.1946,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,125134,0 +47,2.5988,9.0255,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,127381,0 +48,2.5106,9.0278,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,96201,0 +49,2.5395,8.9470,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,95202,0 +50,3.8700,9.3179,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,101907,0 +51,2.6173,8.8035,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,104555,0 +52,3.4869,8.9981,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,150506,0 +53,2.6739,8.7393,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,135984,0 +54,2.5395,9.1186,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,136999,0 +55,2.5417,8.8085,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,138763,0 +56,2.5878,8.8961,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,116150,0 +57,2.5296,8.8696,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,124027,0 +58,2.6230,8.9216,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,119130,0 +59,2.5818,8.7339,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,120102,0 +60,2.5115,7.2228,0.0195,0.0000,0,0,0.0000,0,0.0000,0,1,0,225731,0 +61,2.5575,8.9082,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,117768,0 +62,2.5093,9.0042,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,94025,0 +63,2.5106,8.8918,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,103379,0 +64,2.5757,9.0835,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,83708,0 +65,2.5408,8.7008,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,64154,0 +66,2.5154,9.0510,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,75389,0 +67,2.6079,8.7861,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,88442,0 +68,3.0147,9.1838,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,112322,0 +69,2.5874,8.9823,0.0523,0.0000,0,0,0.0000,0,0.0000,0,0,0,100616,0 +70,6.4454,9.0100,0.0493,0.0000,0,0,0.0000,0,0.0000,0,0,0,130155,0 +71,3.6216,8.9642,0.0945,0.0000,0,0,0.0000,0,0.0000,0,0,0,122215,0 +72,4.9329,8.8154,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,116328,0 +73,6.1043,9.0746,0.0745,0.0000,0,0,0.0000,0,0.0000,0,0,0,140930,0 +74,5.2952,9.1618,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,140710,0 +75,6.0591,8.9276,0.0591,0.0000,0,0,0.0000,0,0.0000,0,0,0,140167,0 +76,6.0309,9.0065,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,137917,0 +77,3.9602,9.3297,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,138715,0 +78,2.6987,8.8375,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,140076,0 +79,4.4603,8.9281,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,142310,0 +80,5.9672,9.1493,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,117630,0 +81,6.0231,10.3607,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,100908,0 +82,8.8492,9.2717,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,112152,0 +83,4.9902,8.9740,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,126138,0 +84,10.0325,9.2056,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,139663,0 +85,2.5625,9.1277,0.0586,0.0000,0,0,0.0000,0,0.0000,0,0,0,135986,0 +86,5.4240,9.1998,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,136893,0 +87,2.5729,8.9695,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,138778,0 +88,5.7620,9.2072,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,133215,0 +89,4.3363,8.8987,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,139766,0 +90,4.7764,8.9975,0.0289,0.0000,0,0,0.0000,0,0.0000,0,0,0,132932,0 +91,6.0757,8.9048,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,134419,0 +92,5.1795,9.1212,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,133303,0 +93,6.9895,9.3487,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,136258,0 +94,2.6171,9.0200,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,138036,0 +95,5.4033,8.8345,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,120389,0 +96,4.1629,8.6298,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,95763,0 +97,3.9127,8.9660,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,105090,0 +98,4.9311,9.2188,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,110755,0 +99,4.8268,9.1205,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,130183,0 +100,5.4415,9.0252,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,135728,0 +101,4.8089,8.8758,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,131810,0 +102,4.0176,8.6817,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,133237,0 +103,4.6073,9.0581,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,133458,0 +104,5.5800,9.2547,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,110947,0 +105,5.9398,9.3945,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,138048,0 +106,4.4099,9.0778,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,140440,0 +107,5.9591,8.9307,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,119701,0 +108,5.1667,8.8798,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,121927,0 +109,4.8390,8.9991,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,123452,0 +110,5.2103,8.9500,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,125703,0 +111,6.1725,8.8451,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,127868,0 +112,4.3178,9.7378,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,96060,0 +113,4.6876,9.1644,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,97134,0 +114,5.5778,8.8979,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,100568,0 +115,5.2428,9.1290,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,103886,0 +116,6.2142,9.1649,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,151278,0 +117,2.6033,8.8053,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,136775,0 +118,2.7723,9.4705,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,138114,0 +119,5.8654,8.9187,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,138720,0 +120,3.1609,7.2316,0.0281,0.0000,0,0,0.0000,0,0.0000,0,1,0,281453,0 +121,5.6950,8.8760,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,123340,0 +122,5.5404,8.8315,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,112600,0 +123,6.3918,8.8128,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,115453,0 +124,5.9050,8.9270,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,116896,0 +125,3.9127,9.0660,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,119676,0 +126,5.4185,8.8790,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,121620,0 +127,4.9598,9.2248,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,122895,0 +128,5.7621,8.8317,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,94272,0 +129,5.1291,9.0461,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,90870,0 +130,5.8398,8.9780,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,98645,0 +131,6.8730,9.1468,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,132402,0 +132,2.5466,8.9291,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,136018,0 +133,5.6134,9.1354,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,132432,0 +134,6.0379,8.9479,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,133521,0 +135,5.6078,8.9290,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,135008,0 +136,4.5681,9.1753,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,127424,0 +137,5.5135,9.1185,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,135726,0 +138,6.0514,9.0071,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,140259,0 +139,6.6356,9.2181,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,120268,0 +140,2.8952,8.9716,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,122966,0 +141,2.5610,9.0089,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,123291,0 +142,6.4994,9.0458,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,126699,0 +143,2.5184,8.9072,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,127819,0 +144,5.7538,9.5658,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,121404,0 +145,3.3256,9.0305,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,72076,0 +146,5.6643,9.2848,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,107513,0 +147,5.6139,9.5044,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,106089,0 +148,3.9148,8.7730,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,130899,0 +149,2.5186,9.3661,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,122396,0 +150,6.1252,8.9552,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,123486,0 +151,4.4988,9.4925,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,142652,0 +152,8.0357,9.0112,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,117369,0 +153,3.7165,8.7279,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,125906,0 +154,4.8553,9.2705,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,125933,0 +155,6.3261,9.0188,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,125144,0 +156,3.3235,8.8456,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,124463,0 +157,5.4180,9.2297,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,127796,0 +158,4.1938,8.8773,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,127392,0 +159,5.5232,9.5585,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,126839,0 +160,4.2390,9.0779,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,116732,0 +161,6.4637,9.2611,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,89683,0 +162,2.5112,8.8155,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,114734,0 +163,4.4715,8.8908,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,123626,0 +164,2.5387,8.7871,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,138706,0 +165,5.9944,9.0452,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,132872,0 +166,4.6556,8.7617,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,135432,0 +167,4.8884,8.9845,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,117617,0 +168,5.5336,9.1451,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,114718,0 +169,3.8545,9.0477,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,144162,0 +170,5.2990,9.1130,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,121275,0 +171,2.5085,8.8810,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,124940,0 +172,2.5842,8.8142,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,125175,0 +173,5.8890,8.9047,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,127726,0 +174,6.1915,8.8707,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,127384,0 +175,2.4734,8.9166,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,103575,0 +176,6.9078,9.0925,0.0623,0.0000,0,0,0.0000,0,0.0000,0,0,0,104545,0 +177,2.5530,9.3284,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,98113,0 +178,5.4876,9.1748,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,118120,0 +179,5.2444,8.9802,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,104669,0 diff --git a/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.txt b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.txt new file mode 100644 index 0000000..b754bdb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.txt @@ -0,0 +1,26 @@ +iBridge Primary synthetic encoder +resolution=1080x1920 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +low_latency_rate_control=off +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.076 +avg_encode_latency_ms=9.718 +p95_encode_latency_ms=9.559 +max_encode_latency_ms=62.368 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=22675352 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/usbc_tfx173t_portrait_1080x1920_hevc_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.csv new file mode 100644 index 0000000..82847a3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0977,93.7094,0.0398,0.0000,0,0,0.0000,0,0.0000,0,1,0,112456,0 +1,6.9768,77.7580,0.0247,0.0000,0,0,0.0000,0,0.0000,0,0,0,80747,0 +2,7.3487,86.0856,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,89457,0 +3,8.3252,91.1135,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,79879,0 +4,12.7127,85.1434,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,80419,0 +5,6.8757,71.1570,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,78490,0 +6,7.2433,70.5879,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,77680,0 +7,7.0884,70.8240,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,77704,0 +8,7.2468,70.8468,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,64797,0 +9,7.3904,70.7115,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,75887,0 +10,7.3172,70.9600,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,76041,0 +11,7.2450,70.8970,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,74687,0 +12,7.4485,70.4094,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,73279,0 +13,7.4445,70.5022,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,74111,0 +14,7.2057,70.4115,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74915,0 +15,7.1449,70.4575,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,71657,0 +16,7.3221,70.4822,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,60375,0 +17,7.1617,71.1576,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,73301,0 +18,7.0728,71.3878,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,72982,0 +19,7.3175,71.0534,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,73412,0 +20,7.2641,70.7903,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,72755,0 +21,7.6830,70.3558,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,72660,0 +22,7.6273,70.1419,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,72878,0 +23,7.5639,70.2985,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,74472,0 +24,7.6839,70.3851,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,66682,0 +25,11.0825,65.6161,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,73826,0 +26,8.6861,66.3774,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,73427,0 +27,6.8208,66.6368,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,74838,0 +28,6.7968,65.1483,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,71974,0 +29,7.1592,63.2348,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,74140,0 +30,7.1785,61.6287,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,74245,0 +31,7.4992,59.6422,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,75685,0 +32,8.2152,57.9790,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,52923,0 +33,7.7426,57.0096,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76181,0 +34,7.7989,55.6574,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,73665,0 +35,7.4408,55.0421,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70089,0 +36,7.3994,53.6760,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,70663,0 +37,7.3694,54.2602,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,73480,0 +38,7.0705,51.3280,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,72753,0 +39,7.4792,50.3702,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,73530,0 +40,7.5420,49.1292,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,63949,0 +41,7.3629,49.2230,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,73928,0 +42,7.0654,46.8386,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,74581,0 +43,7.0816,45.8025,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,72925,0 +44,6.9080,44.5288,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,70514,0 +45,7.1529,43.0860,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,72778,0 +46,6.9903,42.3227,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73882,0 +47,7.0922,40.7954,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,70734,0 +48,7.0271,39.6983,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,60131,0 +49,7.5031,37.7943,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,72882,0 +50,7.3367,36.5113,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,70946,0 +51,7.3537,34.9419,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,71294,0 +52,7.0575,33.8343,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,71164,0 +53,6.8811,32.4225,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,69600,0 +54,6.7462,31.0912,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,72251,0 +55,6.9522,29.3105,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,75153,0 +56,7.0449,27.7393,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,65894,0 +57,6.9160,26.3830,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,72015,0 +58,7.5127,24.2095,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,71560,0 +59,7.1517,23.2840,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,71942,0 +60,7.0486,20.4118,0.0309,0.0000,0,0,0.0000,0,0.0000,0,1,0,130558,0 +61,7.1793,19.3462,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,70304,0 +62,7.0147,19.2018,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,76332,0 +63,6.9162,18.1601,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,81199,0 +64,7.0499,18.7372,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,65283,0 +65,7.0320,18.7988,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,81276,0 +66,6.7517,18.7517,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,78457,0 +67,7.0154,18.7945,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,74278,0 +68,6.8475,18.7550,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,75057,0 +69,7.1085,18.8495,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,75078,0 +70,7.6145,18.5643,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,76315,0 +71,6.8910,18.1792,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,77016,0 +72,6.9517,18.6313,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,67695,0 +73,6.7805,18.2075,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76093,0 +74,6.6132,18.5489,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,75979,0 +75,6.7735,18.1420,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,75482,0 +76,7.3475,18.0110,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,72178,0 +77,7.1673,18.3112,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,73671,0 +78,7.3611,18.6081,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,76256,0 +79,7.0429,18.4735,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,71622,0 +80,7.6998,18.0665,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,62642,0 +81,7.6038,17.9795,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,73327,0 +82,7.2761,18.2850,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,71244,0 +83,7.3223,18.6732,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,72943,0 +84,7.3517,18.1420,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,72772,0 +85,7.1064,18.5543,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +86,6.9346,18.6681,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,72387,0 +87,7.0624,18.8510,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,73592,0 +88,6.8740,18.7857,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,67522,0 +89,7.2592,18.7206,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,73257,0 +90,7.4125,18.6224,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,73337,0 +91,8.1773,17.8543,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +92,7.7207,18.5990,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,70854,0 +93,7.5308,18.6245,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73509,0 +94,7.3083,18.4120,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,73624,0 +95,7.4350,18.0749,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,74277,0 +96,7.0981,18.5063,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,54284,0 +97,7.4455,18.0332,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,74536,0 +98,7.3803,19.0567,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,73969,0 +99,7.6532,19.0092,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,69845,0 +100,7.4052,18.9765,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,71224,0 +101,7.6253,18.7920,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,71675,0 +102,7.5331,18.6058,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,72205,0 +103,7.1574,18.8259,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,72119,0 +104,7.6187,18.4983,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,64051,0 +105,7.3386,18.8953,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,74125,0 +106,7.7736,18.6730,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,72937,0 +107,7.1716,19.0668,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,72627,0 +108,8.0597,18.4028,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,70921,0 +109,7.6545,18.3176,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,72471,0 +110,7.9911,18.1616,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,73026,0 +111,7.4208,18.7549,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,70715,0 +112,7.2778,18.6381,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,63306,0 +113,7.4761,19.1142,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,73314,0 +114,6.9688,18.3846,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,70597,0 +115,7.0646,18.6736,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,72944,0 +116,6.9056,18.6991,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,72258,0 +117,7.1352,18.2750,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,70962,0 +118,7.1664,18.2476,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,72352,0 +119,7.1279,18.4602,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,74922,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.txt new file mode 100644 index 0000000..7a348ed --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.txt @@ -0,0 +1,38 @@ +2026-05-15 10:56:56.296 ibridge-primary[89699:3185855] WARNING: AVCaptureDeviceTypeExternal is deprecated for Continuity Cameras. Please use AVCaptureDeviceTypeContinuityCamera and add NSCameraUseContinuityCameraDeviceType to your Info.plist. +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=auto +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=on +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.377 +avg_encode_latency_ms=38.214 +p95_encode_latency_ms=71.169 +max_encode_latency_ms=93.709 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=8803397 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.csv new file mode 100644 index 0000000..7b96b03 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.3745,88.2855,0.0402,0.0000,0,0,0.0000,0,0.0000,0,1,0,113740,0 +1,11.5955,71.6436,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,139821,0 +2,11.6337,81.1405,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,128054,0 +3,10.4053,91.8593,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,110210,0 +4,10.4597,102.2946,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,107044,0 +5,10.7829,94.6415,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,108059,0 +6,10.4061,94.8770,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,108724,0 +7,10.0661,94.9587,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,109172,0 +8,9.6036,95.1520,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,90965,0 +9,9.5688,95.4227,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,106844,0 +10,9.8775,95.3120,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,104977,0 +11,9.9179,95.3501,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,104712,0 +12,10.2364,95.4826,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101415,0 +13,10.5090,95.5973,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,104415,0 +14,9.8538,96.1099,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,103448,0 +15,10.2160,95.4704,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,101602,0 +16,9.6794,96.0275,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,85109,0 +17,17.7864,87.6423,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,103336,0 +18,13.9168,91.5853,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,99557,0 +19,9.9563,95.4581,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,102284,0 +20,9.8950,95.7825,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,101343,0 +21,10.0484,95.7625,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,98999,0 +22,9.6730,95.9125,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,102658,0 +23,9.5517,96.1637,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,102063,0 +24,10.0322,95.9160,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,93231,0 +25,9.9480,95.9196,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,101382,0 +26,10.2364,95.5475,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,101553,0 +27,9.7214,96.2413,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103035,0 +28,10.0415,95.6305,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,99772,0 +29,10.0905,95.8988,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,103243,0 +30,13.1860,92.6838,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,104421,0 +31,10.0409,95.8590,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,106720,0 +32,10.7116,95.2207,0.0895,0.0000,0,0,0.0000,0,0.0000,0,0,0,73891,0 +33,16.7316,89.1024,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,105846,0 +34,14.3863,90.7657,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,101448,0 +35,10.1493,95.2181,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,99585,0 +36,10.3032,95.1238,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,100601,0 +37,10.1461,95.0125,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,99703,0 +38,9.7539,95.6541,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103282,0 +39,10.0113,95.6048,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,102863,0 +40,9.8479,95.6287,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,87722,0 +41,10.0918,95.4131,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,102340,0 +42,9.9626,95.6090,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,103419,0 +43,10.2248,95.2650,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,102011,0 +44,10.4081,94.9579,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,99150,0 +45,10.3338,95.3143,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,103344,0 +46,9.8111,95.9409,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,101986,0 +47,10.1020,95.7838,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,100863,0 +48,10.2511,95.5619,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,85226,0 +49,9.9033,96.5133,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,99804,0 +50,10.2915,95.8895,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,99432,0 +51,10.0036,96.1262,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,100722,0 +52,9.9196,95.9214,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,100473,0 +53,10.1933,95.5654,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,97759,0 +54,9.9161,95.5375,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,101936,0 +55,10.2482,95.3010,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,101880,0 +56,10.1582,95.5476,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,93070,0 +57,10.1901,95.7828,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,101259,0 +58,9.8862,96.1643,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,100291,0 +59,10.0858,95.6355,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,100060,0 +60,10.1380,92.7317,0.0486,0.0000,0,0,0.0000,0,0.0000,0,1,0,187780,0 +61,10.2855,92.3932,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,100309,0 +62,9.9139,93.0130,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,108112,0 +63,9.9951,92.7358,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,112830,0 +64,9.7226,92.8550,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,88992,0 +65,10.2777,94.9752,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,113939,0 +66,9.7738,95.3740,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,110285,0 +67,10.3079,94.5113,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,105896,0 +68,9.8555,95.1125,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,107256,0 +69,10.5518,94.6506,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,106444,0 +70,11.3070,93.8498,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,108406,0 +71,10.5072,94.9302,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,107816,0 +72,10.2400,95.3020,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,94064,0 +73,10.3222,94.9685,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,109034,0 +74,10.1508,94.9512,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,107152,0 +75,10.4945,94.9022,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,106309,0 +76,10.8675,94.5461,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,101404,0 +77,10.5388,95.5662,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,104553,0 +78,10.4525,95.8815,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,106981,0 +79,10.3718,96.2720,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,101430,0 +80,10.2380,95.9130,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,87869,0 +81,10.3132,95.6095,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,102982,0 +82,10.2155,94.7871,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,101548,0 +83,10.2927,94.8807,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,102488,0 +84,10.1740,95.0520,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,102597,0 +85,10.1627,95.5050,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,99739,0 +86,10.3353,95.0512,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,103064,0 +87,10.1790,95.2609,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104379,0 +88,10.1494,94.8996,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,94609,0 +89,10.3378,94.4327,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,103293,0 +90,10.7160,93.5186,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,103148,0 +91,10.2277,94.1455,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103453,0 +92,10.3023,94.0435,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,101065,0 +93,10.0982,94.1281,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,104070,0 +94,10.0624,94.2676,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,105460,0 +95,10.0573,94.4894,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,106230,0 +96,9.9623,95.0868,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,75421,0 +97,10.0691,94.8190,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,107563,0 +98,10.1157,94.9442,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,103506,0 +99,10.0157,94.9147,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,100583,0 +100,10.7652,94.3337,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,101972,0 +101,10.3421,94.3298,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,101528,0 +102,10.5291,94.6191,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,104993,0 +103,10.0635,95.2259,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,104031,0 +104,10.4463,95.0505,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,89745,0 +105,10.6780,94.6052,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,104248,0 +106,10.2992,94.8937,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,104010,0 +107,10.6264,94.1565,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,104173,0 +108,10.2553,94.4925,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,101177,0 +109,10.1852,94.5527,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,104079,0 +110,10.5888,94.6044,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,104794,0 +111,10.7090,94.9141,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,101027,0 +112,10.4220,95.5405,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,86382,0 +113,10.2470,95.6760,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,103490,0 +114,10.1936,95.7930,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,99841,0 +115,10.7530,95.1931,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,102766,0 +116,10.4779,95.0707,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,101110,0 +117,10.9729,94.2177,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,99416,0 +118,10.2196,94.9320,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,103867,0 +119,10.3779,94.9170,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,104681,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.txt new file mode 100644 index 0000000..747c7c4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.txt @@ -0,0 +1,38 @@ +2026-05-15 10:57:07.152 ibridge-primary[89968:3186772] WARNING: AVCaptureDeviceTypeExternal is deprecated for Continuity Cameras. Please use AVCaptureDeviceTypeContinuityCamera and add NSCameraUseContinuityCameraDeviceType to your Info.plist. +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=auto +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=on +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.455 +avg_encode_latency_ms=94.576 +p95_encode_latency_ms=96.128 +max_encode_latency_ms=102.295 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=12351263 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.csv new file mode 100644 index 0000000..9ab0bcb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,20.3114,112.6609,0.0307,0.0000,0,0,0.0000,0,0.0000,0,1,0,113362,0 +1,18.0417,102.5183,0.0441,0.0000,0,0,0.0000,0,0.0000,0,0,0,156645,0 +2,17.3516,121.3103,0.0501,0.0000,0,0,0.0000,0,0.0000,0,0,0,261632,0 +3,20.0861,136.8523,0.0638,0.0000,0,0,0.0000,0,0.0000,0,0,0,167385,0 +4,18.3803,153.7938,0.0527,0.0000,0,0,0.0000,0,0.0000,0,0,0,201322,0 +5,18.0595,160.8543,0.0465,0.0000,0,0,0.0000,0,0.0000,0,0,0,188101,0 +6,18.1073,160.6424,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,190082,0 +7,17.8611,160.4998,0.0396,0.0000,0,0,0.0000,0,0.0000,0,0,0,191712,0 +8,17.7659,160.6445,0.0358,0.0000,0,0,0.0000,0,0.0000,0,0,0,161884,0 +9,17.6383,161.0298,0.0327,0.0000,0,0,0.0000,0,0.0000,0,0,0,188663,0 +10,17.6241,161.2905,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,186526,0 +11,18.2224,160.0620,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,185167,0 +12,17.6095,160.7880,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,178543,0 +13,17.7209,160.7112,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,182955,0 +14,17.4217,161.2478,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,184596,0 +15,17.7612,160.7842,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,180754,0 +16,17.2591,161.5407,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,151658,0 +17,17.4869,161.3670,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,182779,0 +18,17.5215,161.4291,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,178038,0 +19,17.7060,160.9529,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,182331,0 +20,17.9237,160.7557,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,179066,0 +21,17.8260,160.9263,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,175742,0 +22,17.6424,161.2083,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,181884,0 +23,17.3893,161.4967,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,184070,0 +24,25.5505,153.4509,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,170847,0 +25,17.7690,161.0345,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,180586,0 +26,17.5510,161.5409,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,182017,0 +27,18.6951,160.2864,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,182455,0 +28,18.1388,161.2492,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,177896,0 +29,17.5390,161.5649,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,183677,0 +30,17.7973,161.6230,0.0322,0.0000,0,0,0.0000,0,0.0000,0,0,0,183845,0 +31,18.3847,160.5598,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,187908,0 +32,18.3060,160.6913,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,129573,0 +33,18.3300,160.6378,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,191710,0 +34,17.6551,162.1260,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,181338,0 +35,18.0831,161.7359,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,177326,0 +36,17.4080,162.0566,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,179699,0 +37,17.4799,161.4991,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,180938,0 +38,18.3008,159.7887,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,184680,0 +39,18.5869,158.7176,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,183597,0 +40,19.8469,157.0172,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,162010,0 +41,18.7287,158.4899,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,185110,0 +42,17.3733,160.0959,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,184344,0 +43,18.4544,159.4291,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,183786,0 +44,17.6328,160.3122,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,177930,0 +45,17.8645,160.3422,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,183185,0 +46,17.6456,160.3793,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,184447,0 +47,17.9998,159.9727,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,178886,0 +48,17.9670,160.0813,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,153234,0 +49,18.6760,159.5104,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,182330,0 +50,18.6561,159.5406,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,177444,0 +51,18.5858,159.4134,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,182732,0 +52,17.2385,160.9321,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,179460,0 +53,18.6613,159.8889,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,175515,0 +54,17.6130,160.8085,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,182397,0 +55,17.6410,160.7676,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,183949,0 +56,17.5234,161.5128,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,169035,0 +57,17.7400,161.5643,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,180370,0 +58,18.7980,159.9828,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,181657,0 +59,17.4737,161.8826,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,181749,0 +60,17.5232,156.9844,0.0686,0.0000,0,0,0.0000,0,0.0000,0,1,0,333965,0 +61,18.0744,155.7697,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,154049,0 +62,18.4072,154.8735,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,194926,0 +63,19.4560,154.2067,0.0298,0.0000,0,0,0.0000,0,0.0000,0,0,0,204170,0 +64,19.2396,154.4887,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,158804,0 +65,17.4058,161.1160,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,204589,0 +66,18.4988,160.2644,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,196309,0 +67,17.9615,160.9848,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,191451,0 +68,19.3741,158.9433,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,193423,0 +69,19.1687,158.7385,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,192317,0 +70,18.1962,159.3957,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,195927,0 +71,17.8121,159.5185,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,194800,0 +72,17.4426,159.5273,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,169849,0 +73,17.5383,159.4192,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,193778,0 +74,17.8151,159.1071,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,192588,0 +75,19.1417,157.7878,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,189404,0 +76,17.8005,159.1842,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,185122,0 +77,18.1471,159.3486,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,191480,0 +78,17.4685,159.9959,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,190244,0 +79,17.0203,160.4356,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,185344,0 +80,18.0012,159.2915,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,157725,0 +81,17.9389,159.4506,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,186366,0 +82,17.7580,160.0043,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,183064,0 +83,19.3290,159.0399,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,186362,0 +84,18.0162,160.2011,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,183106,0 +85,17.8223,160.8334,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,180821,0 +86,18.9600,159.8912,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,185557,0 +87,18.1537,160.4918,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,187561,0 +88,18.5805,159.7870,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,170423,0 +89,18.7477,159.6162,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,183735,0 +90,18.2233,160.4095,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,184150,0 +91,17.7639,160.8523,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,184061,0 +92,17.8895,160.3759,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,183264,0 +93,17.7648,160.5590,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,187360,0 +94,18.1022,160.0108,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,187329,0 +95,17.7372,160.1724,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,191687,0 +96,18.1504,159.5737,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,135467,0 +97,18.6162,159.4088,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,191936,0 +98,17.6841,159.8965,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,185785,0 +99,17.5253,160.0937,0.0261,0.0000,0,0,0.0000,0,0.0000,0,0,0,179763,0 +100,18.3005,159.0172,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,182165,0 +101,18.3199,158.8446,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,183657,0 +102,17.6486,159.1033,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,186986,0 +103,17.8704,158.9695,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,186890,0 +104,17.9402,158.9770,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,162275,0 +105,18.1116,158.7053,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,186003,0 +106,18.4346,158.6688,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,186809,0 +107,17.9495,159.3267,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,185440,0 +108,18.3061,158.8365,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,180236,0 +109,18.5907,158.5397,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,186011,0 +110,18.1518,159.7288,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,186611,0 +111,18.0416,159.7737,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,180209,0 +112,17.8824,159.5536,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,154637,0 +113,17.6035,160.1473,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,185063,0 +114,18.0273,160.0160,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,178506,0 +115,17.9020,159.7074,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,182927,0 +116,17.8790,159.7084,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,180500,0 +117,18.1695,159.8047,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,178464,0 +118,17.7805,160.5092,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,184712,0 +119,17.7983,160.7613,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,186403,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.txt new file mode 100644 index 0000000..c02cb2b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.txt @@ -0,0 +1,38 @@ +2026-05-15 10:57:18.629 ibridge-primary[90249:3187645] WARNING: AVCaptureDeviceTypeExternal is deprecated for Continuity Cameras. Please use AVCaptureDeviceTypeContinuityCamera and add NSCameraUseContinuityCameraDeviceType to your Info.plist. +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=auto +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=on +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=18.128 +avg_encode_latency_ms=158.455 +p95_encode_latency_ms=161.564 +max_encode_latency_ms=162.126 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21915124 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.csv new file mode 100644 index 0000000..0ef4e81 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.8392,69.5737,0.1768,0.0000,0,0,0.0000,0,0.0000,0,1,0,108528,0 +1,7.3550,34.2128,0.0712,0.0000,0,0,0.0000,0,0.0000,0,0,0,121598,0 +2,6.8425,35.3044,0.0453,0.0000,0,0,0.0000,0,0.0000,0,0,0,154664,0 +3,7.0175,36.1880,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,175174,0 +4,6.5011,37.4483,0.0811,0.0000,0,0,0.0000,0,0.0000,0,0,0,205332,0 +5,6.7945,33.6697,0.0544,0.0000,0,0,0.0000,0,0.0000,0,0,0,231359,0 +6,6.8516,22.2037,0.0655,0.0000,0,0,0.0000,0,0.0000,0,0,0,284150,0 +7,6.9373,15.2439,0.0555,0.0000,0,0,0.0000,0,0.0000,0,0,0,304941,0 +8,7.3487,15.4139,0.1340,0.0000,0,0,0.0000,0,0.0000,0,0,0,277617,0 +9,7.6489,15.2347,0.0691,0.0000,0,0,0.0000,0,0.0000,0,0,0,286623,0 +10,7.9450,15.4515,0.1279,0.0000,0,0,0.0000,0,0.0000,0,0,0,365946,0 +11,7.7170,15.4325,0.0682,0.0000,0,0,0.0000,0,0.0000,0,0,0,350138,0 +12,7.4105,14.9980,0.0554,0.0000,0,0,0.0000,0,0.0000,0,0,0,345367,0 +13,7.2661,15.3820,0.1590,0.0000,0,0,0.0000,0,0.0000,0,0,0,348168,0 +14,7.3048,16.2358,0.0579,0.0000,0,0,0.0000,0,0.0000,0,0,0,345637,0 +15,7.4866,15.3105,0.0573,0.0000,0,0,0.0000,0,0.0000,0,0,0,356489,0 +16,7.2598,15.4650,0.1980,0.0000,0,0,0.0000,0,0.0000,0,0,0,339699,0 +17,7.3251,15.5309,0.0688,0.0000,0,0,0.0000,0,0.0000,0,0,0,241442,0 +18,7.0222,15.1921,0.0772,0.0000,0,0,0.0000,0,0.0000,0,0,0,260589,0 +19,7.3923,16.1066,0.0697,0.0000,0,0,0.0000,0,0.0000,0,0,0,298458,0 +20,6.8320,16.4931,0.0630,0.0000,0,0,0.0000,0,0.0000,0,0,0,361134,0 +21,7.2848,15.6170,0.0964,0.0000,0,0,0.0000,0,0.0000,0,0,0,331937,0 +22,7.2340,15.6653,0.1552,0.0000,0,0,0.0000,0,0.0000,0,0,0,336641,0 +23,7.1691,15.5700,0.1178,0.0000,0,0,0.0000,0,0.0000,0,0,0,263091,0 +24,7.1673,15.3376,0.1427,0.0000,0,0,0.0000,0,0.0000,0,0,0,272134,0 +25,7.0052,15.5134,0.0697,0.0000,0,0,0.0000,0,0.0000,0,0,0,283852,0 +26,7.3408,15.7724,0.1172,0.0000,0,0,0.0000,0,0.0000,0,0,0,289146,0 +27,7.2167,15.7548,0.1295,0.0000,0,0,0.0000,0,0.0000,0,0,0,291135,0 +28,7.0070,15.5762,0.0656,0.0000,0,0,0.0000,0,0.0000,0,0,0,289458,0 +29,7.2721,15.3107,0.1271,0.0000,0,0,0.0000,0,0.0000,0,0,0,255556,0 +30,7.0163,15.4660,0.0645,0.0000,0,0,0.0000,0,0.0000,0,0,0,262891,0 +31,7.0050,15.7782,0.0580,0.0000,0,0,0.0000,0,0.0000,0,0,0,272006,0 +32,6.8336,15.9270,0.0573,0.0000,0,0,0.0000,0,0.0000,0,0,0,245460,0 +33,7.3678,15.5262,0.0969,0.0000,0,0,0.0000,0,0.0000,0,0,0,179757,0 +34,7.2409,15.3570,0.0548,0.0000,0,0,0.0000,0,0.0000,0,0,0,198113,0 +35,6.8781,15.8503,0.0887,0.0000,0,0,0.0000,0,0.0000,0,0,0,232614,0 +36,6.8978,16.4144,0.0782,0.0000,0,0,0.0000,0,0.0000,0,0,0,223189,0 +37,7.1796,15.6169,0.0631,0.0000,0,0,0.0000,0,0.0000,0,0,0,212672,0 +38,7.3762,15.3083,0.0388,0.0000,0,0,0.0000,0,0.0000,0,0,0,220997,0 +39,7.3232,15.3725,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,216687,0 +40,7.5802,15.5341,0.0609,0.0000,0,0,0.0000,0,0.0000,0,0,0,206254,0 +41,7.3943,15.3660,0.0395,0.0000,0,0,0.0000,0,0.0000,0,0,0,218543,0 +42,7.4794,15.8362,0.0588,0.0000,0,0,0.0000,0,0.0000,0,0,0,276560,0 +43,7.3371,16.0650,0.0935,0.0000,0,0,0.0000,0,0.0000,0,0,0,263539,0 +44,7.2620,15.3114,0.0752,0.0000,0,0,0.0000,0,0.0000,0,0,0,262523,0 +45,7.2128,15.3956,0.0960,0.0000,0,0,0.0000,0,0.0000,0,0,0,263307,0 +46,7.1256,15.6133,0.0598,0.0000,0,0,0.0000,0,0.0000,0,0,0,266372,0 +47,6.7687,15.2530,0.0541,0.0000,0,0,0.0000,0,0.0000,0,0,0,272818,0 +48,6.8850,16.0523,0.0498,0.0000,0,0,0.0000,0,0.0000,0,0,0,257532,0 +49,7.9465,15.6465,0.0624,0.0000,0,0,0.0000,0,0.0000,0,0,0,183731,0 +50,7.3060,15.5548,0.0853,0.0000,0,0,0.0000,0,0.0000,0,0,0,197494,0 +51,7.2717,15.9750,0.0667,0.0000,0,0,0.0000,0,0.0000,0,0,0,239021,0 +52,7.3410,16.8972,0.0823,0.0000,0,0,0.0000,0,0.0000,0,0,0,285798,0 +53,7.5062,15.3762,0.0522,0.0000,0,0,0.0000,0,0.0000,0,0,0,258493,0 +54,7.3659,16.0409,0.0477,0.0000,0,0,0.0000,0,0.0000,0,0,0,263038,0 +55,7.5692,15.6131,0.0505,0.0000,0,0,0.0000,0,0.0000,0,0,0,261527,0 +56,7.4943,15.3851,0.0542,0.0000,0,0,0.0000,0,0.0000,0,0,0,250038,0 +57,7.2729,15.8869,0.0501,0.0000,0,0,0.0000,0,0.0000,0,0,0,260575,0 +58,7.1705,16.1060,0.0726,0.0000,0,0,0.0000,0,0.0000,0,0,0,263532,0 +59,7.3064,15.8691,0.0731,0.0000,0,0,0.0000,0,0.0000,0,0,0,264522,0 +60,6.8316,12.5222,0.2261,0.0000,0,0,0.0000,0,0.0000,0,1,0,525263,0 +61,6.7653,15.6773,0.1006,0.0000,0,0,0.0000,0,0.0000,0,0,0,218579,0 +62,6.8292,15.2723,0.1012,0.0000,0,0,0.0000,0,0.0000,0,0,0,205032,0 +63,7.0692,15.4682,0.0794,0.0000,0,0,0.0000,0,0.0000,0,0,0,231842,0 +64,7.3403,16.1693,0.0659,0.0000,0,0,0.0000,0,0.0000,0,0,0,208945,0 +65,7.3754,15.9908,0.1183,0.0000,0,0,0.0000,0,0.0000,0,0,0,157652,0 +66,7.3740,15.5771,0.0705,0.0000,0,0,0.0000,0,0.0000,0,0,0,167160,0 +67,7.3756,15.6096,0.0471,0.0000,0,0,0.0000,0,0.0000,0,0,0,203065,0 +68,7.2947,16.0140,0.0439,0.0000,0,0,0.0000,0,0.0000,0,0,0,235941,0 +69,7.4509,14.9836,0.0443,0.0000,0,0,0.0000,0,0.0000,0,0,0,215309,0 +70,7.3271,15.3563,0.0743,0.0000,0,0,0.0000,0,0.0000,0,0,0,275925,0 +71,7.5293,15.0055,0.0707,0.0000,0,0,0.0000,0,0.0000,0,0,0,254740,0 +72,7.4746,15.0676,0.0528,0.0000,0,0,0.0000,0,0.0000,0,0,0,242092,0 +73,7.3660,15.2917,0.0342,0.0000,0,0,0.0000,0,0.0000,0,0,0,253671,0 +74,7.3657,14.9912,0.0402,0.0000,0,0,0.0000,0,0.0000,0,0,0,260640,0 +75,7.3990,15.0911,0.0630,0.0000,0,0,0.0000,0,0.0000,0,0,0,260184,0 +76,7.8252,15.2767,0.0592,0.0000,0,0,0.0000,0,0.0000,0,0,0,260063,0 +77,7.5109,15.3263,0.0829,0.0000,0,0,0.0000,0,0.0000,0,0,0,265703,0 +78,7.5651,15.7675,0.0429,0.0000,0,0,0.0000,0,0.0000,0,0,0,265056,0 +79,7.4460,15.2956,0.0862,0.0000,0,0,0.0000,0,0.0000,0,0,0,271657,0 +80,7.7798,15.2197,0.0904,0.0000,0,0,0.0000,0,0.0000,0,0,0,256049,0 +81,7.4162,15.0906,0.0444,0.0000,0,0,0.0000,0,0.0000,0,0,0,183989,0 +82,7.5093,15.2278,0.0602,0.0000,0,0,0.0000,0,0.0000,0,0,0,196768,0 +83,8.3172,15.2733,0.1128,0.0000,0,0,0.0000,0,0.0000,0,0,0,239387,0 +84,7.6296,15.8943,0.0832,0.0000,0,0,0.0000,0,0.0000,0,0,0,283866,0 +85,7.3319,15.2948,0.0466,0.0000,0,0,0.0000,0,0.0000,0,0,0,258277,0 +86,7.4498,15.2436,0.0503,0.0000,0,0,0.0000,0,0.0000,0,0,0,265111,0 +87,7.3359,15.6567,0.0539,0.0000,0,0,0.0000,0,0.0000,0,0,0,259872,0 +88,7.1658,15.4058,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,252689,0 +89,7.0986,15.4336,0.0563,0.0000,0,0,0.0000,0,0.0000,0,0,0,259413,0 +90,7.1363,15.2840,0.0483,0.0000,0,0,0.0000,0,0.0000,0,0,0,263634,0 +91,7.1525,15.5142,0.0692,0.0000,0,0,0.0000,0,0.0000,0,0,0,264909,0 +92,7.1519,15.2364,0.0403,0.0000,0,0,0.0000,0,0.0000,0,0,0,265126,0 +93,7.3260,15.1777,0.0814,0.0000,0,0,0.0000,0,0.0000,0,0,0,267850,0 +94,7.1062,15.1605,0.0690,0.0000,0,0,0.0000,0,0.0000,0,0,0,266272,0 +95,7.4072,15.1344,0.0882,0.0000,0,0,0.0000,0,0.0000,0,0,0,274187,0 +96,7.7091,15.0552,0.0633,0.0000,0,0,0.0000,0,0.0000,0,0,0,247283,0 +97,7.4170,15.2856,0.0815,0.0000,0,0,0.0000,0,0.0000,0,0,0,182510,0 +98,7.2018,14.8799,0.0409,0.0000,0,0,0.0000,0,0.0000,0,0,0,198047,0 +99,7.3684,15.3826,0.0469,0.0000,0,0,0.0000,0,0.0000,0,0,0,231553,0 +100,7.3700,16.6133,0.0585,0.0000,0,0,0.0000,0,0.0000,0,0,0,275143,0 +101,7.4889,15.2112,0.0742,0.0000,0,0,0.0000,0,0.0000,0,0,0,248776,0 +102,7.0893,15.0423,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,255476,0 +103,7.5810,15.4030,0.0410,0.0000,0,0,0.0000,0,0.0000,0,0,0,252111,0 +104,7.3855,15.0148,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,239692,0 +105,7.4727,15.0238,0.0430,0.0000,0,0,0.0000,0,0.0000,0,0,0,253050,0 +106,7.7545,15.3129,0.0495,0.0000,0,0,0.0000,0,0.0000,0,0,0,258000,0 +107,7.2471,15.0088,0.0514,0.0000,0,0,0.0000,0,0.0000,0,0,0,260752,0 +108,7.3546,15.2945,0.0557,0.0000,0,0,0.0000,0,0.0000,0,0,0,259317,0 +109,7.3491,15.5445,0.0841,0.0000,0,0,0.0000,0,0.0000,0,0,0,265069,0 +110,7.7252,15.2641,0.0766,0.0000,0,0,0.0000,0,0.0000,0,0,0,264018,0 +111,7.6380,15.6092,0.0952,0.0000,0,0,0.0000,0,0.0000,0,0,0,272153,0 +112,7.5468,16.1111,0.1212,0.0000,0,0,0.0000,0,0.0000,0,0,0,255884,0 +113,7.6804,15.4352,0.0650,0.0000,0,0,0.0000,0,0.0000,0,0,0,184232,0 +114,7.3326,15.8343,0.0777,0.0000,0,0,0.0000,0,0.0000,0,0,0,199052,0 +115,7.4691,15.8108,0.0618,0.0000,0,0,0.0000,0,0.0000,0,0,0,238607,0 +116,7.4013,16.2800,0.0970,0.0000,0,0,0.0000,0,0.0000,0,0,0,284990,0 +117,7.2022,15.4825,0.0461,0.0000,0,0,0.0000,0,0.0000,0,0,0,257891,0 +118,7.2756,15.4159,0.0471,0.0000,0,0,0.0000,0,0.0000,0,0,0,263234,0 +119,7.2064,16.0502,0.0555,0.0000,0,0,0.0000,0,0.0000,0,0,0,262911,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.txt new file mode 100644 index 0000000..96ece72 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=annex-b +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.322 +avg_encode_latency_ms=16.833 +p95_encode_latency_ms=22.777 +max_encode_latency_ms=69.574 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30601275 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.csv new file mode 100644 index 0000000..cae8bc1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.6816,83.0105,0.1582,0.0000,0,0,0.0000,0,0.0000,0,1,0,118297,0 +1,10.4462,42.8028,0.0825,0.0000,0,0,0.0000,0,0.0000,0,0,0,111443,0 +2,9.9725,43.5738,0.1164,0.0000,0,0,0.0000,0,0.0000,0,0,0,149620,0 +3,9.6682,45.1095,0.0869,0.0000,0,0,0.0000,0,0.0000,0,0,0,179764,0 +4,10.0350,45.7511,0.0551,0.0000,0,0,0.0000,0,0.0000,0,0,0,207593,0 +5,9.6918,46.9343,0.0565,0.0000,0,0,0.0000,0,0.0000,0,0,0,235371,0 +6,9.9656,48.0656,0.1141,0.0000,0,0,0.0000,0,0.0000,0,0,0,283310,0 +7,9.5836,49.2206,0.0555,0.0000,0,0,0.0000,0,0.0000,0,0,0,268697,0 +8,9.7149,47.7669,0.0624,0.0000,0,0,0.0000,0,0.0000,0,0,0,240958,0 +9,9.7583,40.7509,0.0550,0.0000,0,0,0.0000,0,0.0000,0,0,0,256454,0 +10,9.9571,35.0994,0.0716,0.0000,0,0,0.0000,0,0.0000,0,0,0,322565,0 +11,9.6918,29.3565,0.0553,0.0000,0,0,0.0000,0,0.0000,0,0,0,317668,0 +12,9.9811,22.7909,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,257032,0 +13,9.5165,20.9409,0.0460,0.0000,0,0,0.0000,0,0.0000,0,0,0,275773,0 +14,9.5403,21.9456,0.0732,0.0000,0,0,0.0000,0,0.0000,0,0,0,278142,0 +15,9.8060,21.8722,0.0493,0.0000,0,0,0.0000,0,0.0000,0,0,0,283815,0 +16,10.0522,21.3521,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,193592,0 +17,9.8070,20.5870,0.0465,0.0000,0,0,0.0000,0,0.0000,0,0,0,238201,0 +18,9.7185,20.8635,0.0420,0.0000,0,0,0.0000,0,0.0000,0,0,0,242735,0 +19,9.8297,22.3909,0.0801,0.0000,0,0,0.0000,0,0.0000,0,0,0,286771,0 +20,9.6277,22.7090,0.0891,0.0000,0,0,0.0000,0,0.0000,0,0,0,338160,0 +21,9.7594,21.8660,0.0548,0.0000,0,0,0.0000,0,0.0000,0,0,0,317302,0 +22,9.9062,21.4901,0.0523,0.0000,0,0,0.0000,0,0.0000,0,0,0,323857,0 +23,9.7664,20.4921,0.0555,0.0000,0,0,0.0000,0,0.0000,0,0,0,268016,0 +24,9.8774,20.6216,0.0752,0.0000,0,0,0.0000,0,0.0000,0,0,0,267378,0 +25,9.9802,20.6480,0.0488,0.0000,0,0,0.0000,0,0.0000,0,0,0,274878,0 +26,10.1475,21.5472,0.0419,0.0000,0,0,0.0000,0,0.0000,0,0,0,283128,0 +27,9.8074,20.5977,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,286420,0 +28,9.7165,20.9730,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,282704,0 +29,9.9296,20.6594,0.0587,0.0000,0,0,0.0000,0,0.0000,0,0,0,293005,0 +30,9.7197,21.4920,0.0895,0.0000,0,0,0.0000,0,0.0000,0,0,0,292033,0 +31,9.7342,21.7002,0.1615,0.0000,0,0,0.0000,0,0.0000,0,0,0,296676,0 +32,9.7166,22.0606,0.0511,0.0000,0,0,0.0000,0,0.0000,0,0,0,202460,0 +33,9.9000,21.7460,0.0421,0.0000,0,0,0.0000,0,0.0000,0,0,0,190859,0 +34,9.9109,21.4702,0.0354,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +35,9.6531,21.5094,0.0573,0.0000,0,0,0.0000,0,0.0000,0,0,0,300138,0 +36,10.3414,21.7436,0.0576,0.0000,0,0,0.0000,0,0.0000,0,0,0,338558,0 +37,9.9229,21.0065,0.0654,0.0000,0,0,0.0000,0,0.0000,0,0,0,311334,0 +38,9.4878,21.5523,0.0485,0.0000,0,0,0.0000,0,0.0000,0,0,0,263610,0 +39,9.7445,22.1962,0.0696,0.0000,0,0,0.0000,0,0.0000,0,0,0,272653,0 +40,9.6468,22.2091,0.0612,0.0000,0,0,0.0000,0,0.0000,0,0,0,257267,0 +41,10.0823,20.6767,0.0435,0.0000,0,0,0.0000,0,0.0000,0,0,0,275971,0 +42,9.9233,21.8135,0.1234,0.0000,0,0,0.0000,0,0.0000,0,0,0,281194,0 +43,9.9223,20.9688,0.0486,0.0000,0,0,0.0000,0,0.0000,0,0,0,285072,0 +44,9.7881,21.9470,0.0433,0.0000,0,0,0.0000,0,0.0000,0,0,0,281444,0 +45,10.0329,20.8637,0.0811,0.0000,0,0,0.0000,0,0.0000,0,0,0,288034,0 +46,9.9447,22.0902,0.0533,0.0000,0,0,0.0000,0,0.0000,0,0,0,232259,0 +47,10.1452,20.7007,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,233773,0 +48,10.3389,20.7655,0.0449,0.0000,0,0,0.0000,0,0.0000,0,0,0,158179,0 +49,9.6835,20.6012,0.0296,0.0000,0,0,0.0000,0,0.0000,0,0,0,159970,0 +50,9.8682,20.4716,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,202544,0 +51,9.8101,20.2727,0.0430,0.0000,0,0,0.0000,0,0.0000,0,0,0,313907,0 +52,9.8744,21.8858,0.0930,0.0000,0,0,0.0000,0,0.0000,0,0,0,343182,0 +53,10.1380,20.4846,0.1061,0.0000,0,0,0.0000,0,0.0000,0,0,0,267866,0 +54,10.0540,20.4926,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,283183,0 +55,9.9808,21.0867,0.0511,0.0000,0,0,0.0000,0,0.0000,0,0,0,224723,0 +56,9.6479,20.3182,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,216967,0 +57,9.8064,20.5844,0.0517,0.0000,0,0,0.0000,0,0.0000,0,0,0,225087,0 +58,10.0644,21.2513,0.0502,0.0000,0,0,0.0000,0,0.0000,0,0,0,232455,0 +59,9.8264,20.6788,0.0615,0.0000,0,0,0.0000,0,0.0000,0,0,0,234622,0 +60,10.0914,18.1235,0.2295,0.0000,0,0,0.0000,0,0.0000,0,1,0,510059,0 +61,10.2770,21.3335,0.0535,0.0000,0,0,0.0000,0,0.0000,0,0,0,215017,0 +62,10.7454,22.1411,0.0895,0.0000,0,0,0.0000,0,0.0000,0,0,0,189506,0 +63,10.3652,21.6462,0.0505,0.0000,0,0,0.0000,0,0.0000,0,0,0,190024,0 +64,9.8642,21.2676,0.0757,0.0000,0,0,0.0000,0,0.0000,0,0,0,127488,0 +65,9.5676,21.0294,0.0437,0.0000,0,0,0.0000,0,0.0000,0,0,0,159617,0 +66,9.3255,20.4108,0.0398,0.0000,0,0,0.0000,0,0.0000,0,0,0,200797,0 +67,9.4165,20.8238,0.1146,0.0000,0,0,0.0000,0,0.0000,0,0,0,311960,0 +68,9.7234,22.6797,0.1369,0.0000,0,0,0.0000,0,0.0000,0,0,0,336078,0 +69,9.7303,20.9038,0.0811,0.0000,0,0,0.0000,0,0.0000,0,0,0,256549,0 +70,9.5849,20.5012,0.0989,0.0000,0,0,0.0000,0,0.0000,0,0,0,275265,0 +71,9.5245,20.3960,0.0751,0.0000,0,0,0.0000,0,0.0000,0,0,0,274241,0 +72,9.6375,20.4312,0.0581,0.0000,0,0,0.0000,0,0.0000,0,0,0,259654,0 +73,9.8317,20.6708,0.0774,0.0000,0,0,0.0000,0,0.0000,0,0,0,276553,0 +74,9.8780,20.7930,0.0904,0.0000,0,0,0.0000,0,0.0000,0,0,0,282075,0 +75,9.5730,20.3914,0.0533,0.0000,0,0,0.0000,0,0.0000,0,0,0,285109,0 +76,9.7860,20.6390,0.0427,0.0000,0,0,0.0000,0,0.0000,0,0,0,280555,0 +77,9.5394,20.6795,0.0517,0.0000,0,0,0.0000,0,0.0000,0,0,0,232436,0 +78,9.6917,20.4538,0.0371,0.0000,0,0,0.0000,0,0.0000,0,0,0,234493,0 +79,9.5704,20.7994,0.1031,0.0000,0,0,0.0000,0,0.0000,0,0,0,234620,0 +80,10.0108,20.5442,0.0403,0.0000,0,0,0.0000,0,0.0000,0,0,0,159790,0 +81,10.2887,21.0165,0.0397,0.0000,0,0,0.0000,0,0.0000,0,0,0,193475,0 +82,9.7500,21.3488,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,211511,0 +83,9.5715,20.4865,0.0600,0.0000,0,0,0.0000,0,0.0000,0,0,0,311746,0 +84,9.8493,21.4618,0.0876,0.0000,0,0,0.0000,0,0.0000,0,0,0,344122,0 +85,9.5168,20.6933,0.0566,0.0000,0,0,0.0000,0,0.0000,0,0,0,267814,0 +86,9.5335,20.6740,0.0494,0.0000,0,0,0.0000,0,0.0000,0,0,0,282911,0 +87,9.5542,20.5125,0.0810,0.0000,0,0,0.0000,0,0.0000,0,0,0,226941,0 +88,9.4704,21.2651,0.0764,0.0000,0,0,0.0000,0,0.0000,0,0,0,217283,0 +89,9.3813,20.5712,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,226086,0 +90,9.4425,20.5460,0.0432,0.0000,0,0,0.0000,0,0.0000,0,0,0,233101,0 +91,9.5269,21.3029,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,235007,0 +92,9.6170,20.3869,0.0474,0.0000,0,0,0.0000,0,0.0000,0,0,0,232277,0 +93,9.4632,20.4922,0.0570,0.0000,0,0,0.0000,0,0.0000,0,0,0,238327,0 +94,9.4086,20.6903,0.0776,0.0000,0,0,0.0000,0,0.0000,0,0,0,239404,0 +95,9.3631,20.7292,0.0845,0.0000,0,0,0.0000,0,0.0000,0,0,0,244354,0 +96,9.4625,20.4110,0.0531,0.0000,0,0,0.0000,0,0.0000,0,0,0,162168,0 +97,9.4779,20.8666,0.0455,0.0000,0,0,0.0000,0,0.0000,0,0,0,191201,0 +98,9.4599,20.8953,0.0397,0.0000,0,0,0.0000,0,0.0000,0,0,0,205718,0 +99,9.6031,21.4807,0.1379,0.0000,0,0,0.0000,0,0.0000,0,0,0,307650,0 +100,9.6887,22.9060,0.1353,0.0000,0,0,0.0000,0,0.0000,0,0,0,340823,0 +101,9.8481,20.7428,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,260406,0 +102,10.0525,20.5374,0.0975,0.0000,0,0,0.0000,0,0.0000,0,0,0,275755,0 +103,9.7592,20.8335,0.0949,0.0000,0,0,0.0000,0,0.0000,0,0,0,275881,0 +104,9.8458,21.7504,0.1059,0.0000,0,0,0.0000,0,0.0000,0,0,0,259373,0 +105,9.7942,20.9412,0.0705,0.0000,0,0,0.0000,0,0.0000,0,0,0,276839,0 +106,10.5337,21.4190,0.0795,0.0000,0,0,0.0000,0,0.0000,0,0,0,282349,0 +107,10.4194,20.9219,0.0590,0.0000,0,0,0.0000,0,0.0000,0,0,0,287050,0 +108,9.7367,20.4470,0.0894,0.0000,0,0,0.0000,0,0.0000,0,0,0,226369,0 +109,9.9200,21.3613,0.0585,0.0000,0,0,0.0000,0,0.0000,0,0,0,232126,0 +110,9.7884,20.6716,0.0448,0.0000,0,0,0.0000,0,0.0000,0,0,0,235512,0 +111,9.7494,20.4293,0.0448,0.0000,0,0,0.0000,0,0.0000,0,0,0,238103,0 +112,9.8817,20.7192,0.0556,0.0000,0,0,0.0000,0,0.0000,0,0,0,160189,0 +113,10.6861,20.4975,0.0580,0.0000,0,0,0.0000,0,0.0000,0,0,0,196705,0 +114,9.8778,20.6811,0.1090,0.0000,0,0,0.0000,0,0.0000,0,0,0,213235,0 +115,9.7523,21.1833,0.0952,0.0000,0,0,0.0000,0,0.0000,0,0,0,312908,0 +116,9.5393,21.3205,0.0937,0.0000,0,0,0.0000,0,0.0000,0,0,0,285514,0 +117,10.3811,20.9664,0.0477,0.0000,0,0,0.0000,0,0.0000,0,0,0,279954,0 +118,10.0808,21.0470,0.0532,0.0000,0,0,0.0000,0,0.0000,0,0,0,288591,0 +119,9.4375,20.5870,0.0594,0.0000,0,0,0.0000,0,0.0000,0,0,0,228678,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.txt new file mode 100644 index 0000000..948dafe --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=annex-b +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.841 +avg_encode_latency_ms=23.591 +p95_encode_latency_ms=45.142 +max_encode_latency_ms=83.010 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30370847 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.csv new file mode 100644 index 0000000..ecbaaab --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,19.3997,96.6745,0.2187,0.0000,0,0,0.0000,0,0.0000,0,1,0,141446,0 +1,20.3274,67.4437,0.2122,0.0000,0,0,0.0000,0,0.0000,0,0,0,107930,0 +2,18.2847,67.6896,0.0988,0.0000,0,0,0.0000,0,0.0000,0,0,0,128297,0 +3,22.0497,63.8782,0.0696,0.0000,0,0,0.0000,0,0.0000,0,0,0,131859,0 +4,18.1676,64.3768,0.0857,0.0000,0,0,0.0000,0,0.0000,0,0,0,159759,0 +5,18.7603,64.4561,0.0605,0.0000,0,0,0.0000,0,0.0000,0,0,0,172445,0 +6,17.4161,65.7348,0.0589,0.0000,0,0,0.0000,0,0.0000,0,0,0,221040,0 +7,17.3819,67.2049,0.0641,0.0000,0,0,0.0000,0,0.0000,0,0,0,267655,0 +8,16.9612,69.1189,0.1309,0.0000,0,0,0.0000,0,0.0000,0,0,0,302901,0 +9,17.1561,69.7303,0.0713,0.0000,0,0,0.0000,0,0.0000,0,0,0,247666,0 +10,16.5527,71.5950,0.0630,0.0000,0,0,0.0000,0,0.0000,0,0,0,248232,0 +11,16.3880,73.5866,0.0477,0.0000,0,0,0.0000,0,0.0000,0,0,0,247217,0 +12,16.7538,75.3158,0.0605,0.0000,0,0,0.0000,0,0.0000,0,0,0,238870,0 +13,16.9655,77.3847,0.0640,0.0000,0,0,0.0000,0,0.0000,0,0,0,303588,0 +14,17.3536,78.1015,0.1263,0.0000,0,0,0.0000,0,0.0000,0,0,0,287769,0 +15,16.8994,79.3654,0.0865,0.0000,0,0,0.0000,0,0.0000,0,0,0,286071,0 +16,17.6642,79.5004,0.0532,0.0000,0,0,0.0000,0,0.0000,0,0,0,185303,0 +17,17.7420,80.2803,0.0574,0.0000,0,0,0.0000,0,0.0000,0,0,0,210388,0 +18,17.1999,81.7613,0.0526,0.0000,0,0,0.0000,0,0.0000,0,0,0,263454,0 +19,17.4735,82.9523,0.0466,0.0000,0,0,0.0000,0,0.0000,0,0,0,275774,0 +20,17.6990,86.0135,0.0642,0.0000,0,0,0.0000,0,0.0000,0,0,0,333589,0 +21,17.8572,86.3776,0.0808,0.0000,0,0,0.0000,0,0.0000,0,0,0,302457,0 +22,18.0979,86.3159,0.1066,0.0000,0,0,0.0000,0,0.0000,0,0,0,252604,0 +23,17.9019,87.4775,0.0870,0.0000,0,0,0.0000,0,0.0000,0,0,0,323851,0 +24,18.5187,86.8795,0.0809,0.0000,0,0,0.0000,0,0.0000,0,0,0,242386,0 +25,18.8762,87.1270,0.1080,0.0000,0,0,0.0000,0,0.0000,0,0,0,324025,0 +26,18.4295,86.6182,0.0742,0.0000,0,0,0.0000,0,0.0000,0,0,0,250378,0 +27,17.6225,88.0769,0.0849,0.0000,0,0,0.0000,0,0.0000,0,0,0,335331,0 +28,16.4785,89.5140,0.0769,0.0000,0,0,0.0000,0,0.0000,0,0,0,252413,0 +29,16.6024,91.4514,0.0905,0.0000,0,0,0.0000,0,0.0000,0,0,0,277467,0 +30,16.6464,93.2442,0.1354,0.0000,0,0,0.0000,0,0.0000,0,0,0,281176,0 +31,16.9179,94.6685,0.0762,0.0000,0,0,0.0000,0,0.0000,0,0,0,284799,0 +32,17.6668,94.4900,0.0685,0.0000,0,0,0.0000,0,0.0000,0,0,0,177181,0 +33,17.6887,95.4647,0.0726,0.0000,0,0,0.0000,0,0.0000,0,0,0,202594,0 +34,17.6673,96.5383,0.0667,0.0000,0,0,0.0000,0,0.0000,0,0,0,236959,0 +35,17.8840,97.1713,0.0831,0.0000,0,0,0.0000,0,0.0000,0,0,0,279315,0 +36,17.5086,100.2700,0.0835,0.0000,0,0,0.0000,0,0.0000,0,0,0,326790,0 +37,17.4977,101.0177,0.0563,0.0000,0,0,0.0000,0,0.0000,0,0,0,293601,0 +38,17.5246,101.4786,0.0736,0.0000,0,0,0.0000,0,0.0000,0,0,0,242370,0 +39,19.0176,101.0721,0.0477,0.0000,0,0,0.0000,0,0.0000,0,0,0,257637,0 +40,17.8671,102.2052,0.1077,0.0000,0,0,0.0000,0,0.0000,0,0,0,309672,0 +41,17.3486,102.8323,0.0623,0.0000,0,0,0.0000,0,0.0000,0,0,0,243083,0 +42,17.1236,104.2738,0.0707,0.0000,0,0,0.0000,0,0.0000,0,0,0,262507,0 +43,17.1026,106.1147,0.0823,0.0000,0,0,0.0000,0,0.0000,0,0,0,328648,0 +44,17.0203,107.0575,0.0660,0.0000,0,0,0.0000,0,0.0000,0,0,0,251696,0 +45,16.8792,108.7460,0.1190,0.0000,0,0,0.0000,0,0.0000,0,0,0,274787,0 +46,17.6250,109.5607,0.0574,0.0000,0,0,0.0000,0,0.0000,0,0,0,275928,0 +47,17.6765,110.2117,0.0988,0.0000,0,0,0.0000,0,0.0000,0,0,0,281973,0 +48,17.2183,110.7370,0.0848,0.0000,0,0,0.0000,0,0.0000,0,0,0,188912,0 +49,17.1363,112.1320,0.0517,0.0000,0,0,0.0000,0,0.0000,0,0,0,210569,0 +50,17.4428,113.4663,0.0730,0.0000,0,0,0.0000,0,0.0000,0,0,0,244518,0 +51,16.8860,115.2880,0.0958,0.0000,0,0,0.0000,0,0.0000,0,0,0,287240,0 +52,17.1172,118.8329,0.1031,0.0000,0,0,0.0000,0,0.0000,0,0,0,336431,0 +53,16.6042,120.0424,0.0653,0.0000,0,0,0.0000,0,0.0000,0,0,0,242407,0 +54,17.1421,121.4076,0.0804,0.0000,0,0,0.0000,0,0.0000,0,0,0,269527,0 +55,16.8802,123.1443,0.0482,0.0000,0,0,0.0000,0,0.0000,0,0,0,262272,0 +56,17.4144,124.0588,0.0529,0.0000,0,0,0.0000,0,0.0000,0,0,0,261900,0 +57,17.4720,125.0786,0.0767,0.0000,0,0,0.0000,0,0.0000,0,0,0,262722,0 +58,17.3182,126.1394,0.0863,0.0000,0,0,0.0000,0,0.0000,0,0,0,267275,0 +59,17.1588,127.4838,0.0648,0.0000,0,0,0.0000,0,0.0000,0,0,0,273347,0 +60,16.8482,132.3805,0.1983,0.0000,0,0,0.0000,0,0.0000,0,1,0,553185,0 +61,17.8993,129.6746,0.0532,0.0000,0,0,0.0000,0,0.0000,0,0,0,275719,0 +62,16.8775,130.8241,0.0707,0.0000,0,0,0.0000,0,0.0000,0,0,0,206485,0 +63,16.8491,132.1224,0.1013,0.0000,0,0,0.0000,0,0.0000,0,0,0,177919,0 +64,16.8178,133.4002,0.0684,0.0000,0,0,0.0000,0,0.0000,0,0,0,129341,0 +65,16.8185,135.3288,0.0805,0.0000,0,0,0.0000,0,0.0000,0,0,0,167368,0 +66,16.6855,137.1315,0.0422,0.0000,0,0,0.0000,0,0.0000,0,0,0,173082,0 +67,17.3599,138.8116,0.0698,0.0000,0,0,0.0000,0,0.0000,0,0,0,268054,0 +68,17.1430,142.2337,0.0753,0.0000,0,0,0.0000,0,0.0000,0,0,0,304192,0 +69,16.9002,143.1483,0.0537,0.0000,0,0,0.0000,0,0.0000,0,0,0,215216,0 +70,16.7768,144.8330,0.0520,0.0000,0,0,0.0000,0,0.0000,0,0,0,235158,0 +71,16.8915,146.4348,0.0551,0.0000,0,0,0.0000,0,0.0000,0,0,0,231569,0 +72,16.7003,148.6191,0.0907,0.0000,0,0,0.0000,0,0.0000,0,0,0,285459,0 +73,16.7878,149.8087,0.0582,0.0000,0,0,0.0000,0,0.0000,0,0,0,216432,0 +74,16.6611,152.0127,0.1052,0.0000,0,0,0.0000,0,0.0000,0,0,0,294193,0 +75,16.7662,153.7272,0.1188,0.0000,0,0,0.0000,0,0.0000,0,0,0,282358,0 +76,16.7942,155.3556,0.0553,0.0000,0,0,0.0000,0,0.0000,0,0,0,278034,0 +77,16.8410,156.9861,0.0536,0.0000,0,0,0.0000,0,0.0000,0,0,0,284480,0 +78,16.4407,159.0561,0.0853,0.0000,0,0,0.0000,0,0.0000,0,0,0,288831,0 +79,16.5680,160.4172,0.0468,0.0000,0,0,0.0000,0,0.0000,0,0,0,236192,0 +80,16.9681,161.8535,0.1042,0.0000,0,0,0.0000,0,0.0000,0,0,0,205268,0 +81,17.1529,162.9859,0.0550,0.0000,0,0,0.0000,0,0.0000,0,0,0,213261,0 +82,17.0104,164.3208,0.0409,0.0000,0,0,0.0000,0,0.0000,0,0,0,199066,0 +83,17.0487,166.4831,0.0601,0.0000,0,0,0.0000,0,0.0000,0,0,0,312012,0 +84,19.2045,167.7284,0.0810,0.0000,0,0,0.0000,0,0.0000,0,0,0,345626,0 +85,17.4853,167.9445,0.0535,0.0000,0,0,0.0000,0,0.0000,0,0,0,250939,0 +86,17.4536,168.9315,0.0457,0.0000,0,0,0.0000,0,0.0000,0,0,0,272075,0 +87,17.3606,170.0825,0.0782,0.0000,0,0,0.0000,0,0.0000,0,0,0,266209,0 +88,17.2878,171.3823,0.0475,0.0000,0,0,0.0000,0,0.0000,0,0,0,266619,0 +89,17.4248,172.3819,0.0510,0.0000,0,0,0.0000,0,0.0000,0,0,0,267105,0 +90,17.7461,173.1115,0.0453,0.0000,0,0,0.0000,0,0.0000,0,0,0,275929,0 +91,17.8300,173.7760,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,279754,0 +92,17.6863,174.5036,0.0452,0.0000,0,0,0.0000,0,0.0000,0,0,0,274754,0 +93,18.4516,174.5957,0.0479,0.0000,0,0,0.0000,0,0.0000,0,0,0,287774,0 +94,17.2438,175.3808,0.0566,0.0000,0,0,0.0000,0,0.0000,0,0,0,234242,0 +95,17.0595,176.6852,0.0776,0.0000,0,0,0.0000,0,0.0000,0,0,0,246336,0 +96,16.7215,177.6686,0.0665,0.0000,0,0,0.0000,0,0.0000,0,0,0,147471,0 +97,16.8710,179.7133,0.0507,0.0000,0,0,0.0000,0,0.0000,0,0,0,217911,0 +98,16.7860,181.6002,0.0800,0.0000,0,0,0.0000,0,0.0000,0,0,0,246390,0 +99,16.4047,183.9297,0.0894,0.0000,0,0,0.0000,0,0.0000,0,0,0,287219,0 +100,17.0547,186.9504,0.0691,0.0000,0,0,0.0000,0,0.0000,0,0,0,264089,0 +101,17.1636,188.2073,0.0460,0.0000,0,0,0.0000,0,0.0000,0,0,0,253233,0 +102,16.7449,189.9873,0.0507,0.0000,0,0,0.0000,0,0.0000,0,0,0,264974,0 +103,16.7697,191.6960,0.0750,0.0000,0,0,0.0000,0,0.0000,0,0,0,262522,0 +104,18.0113,192.1643,0.0651,0.0000,0,0,0.0000,0,0.0000,0,0,0,253763,0 +105,17.2843,193.3880,0.0736,0.0000,0,0,0.0000,0,0.0000,0,0,0,260415,0 +106,16.9507,194.9677,0.0948,0.0000,0,0,0.0000,0,0.0000,0,0,0,267192,0 +107,17.1794,196.2732,0.0496,0.0000,0,0,0.0000,0,0.0000,0,0,0,272577,0 +108,16.5792,198.3429,0.0489,0.0000,0,0,0.0000,0,0.0000,0,0,0,266815,0 +109,17.0205,199.5470,0.0470,0.0000,0,0,0.0000,0,0.0000,0,0,0,223565,0 +110,17.9668,200.6045,0.0840,0.0000,0,0,0.0000,0,0.0000,0,0,0,294989,0 +111,16.6999,201.8719,0.0456,0.0000,0,0,0.0000,0,0.0000,0,0,0,232970,0 +112,16.5576,203.1750,0.0466,0.0000,0,0,0.0000,0,0.0000,0,0,0,159410,0 +113,16.6701,205.3711,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,223623,0 +114,16.4576,207.4171,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,196195,0 +115,16.7847,209.8135,0.0708,0.0000,0,0,0.0000,0,0.0000,0,0,0,308086,0 +116,16.5332,213.2220,0.0966,0.0000,0,0,0.0000,0,0.0000,0,0,0,271816,0 +117,16.5701,215.0528,0.1103,0.0000,0,0,0.0000,0,0.0000,0,0,0,262113,0 +118,16.7474,217.2175,0.3373,0.0000,0,0,0.0000,0,0.0000,0,0,0,270458,0 +119,16.3512,219.0301,0.4650,0.0000,0,0,0.0000,0,0.0000,0,0,0,215212,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.txt new file mode 100644 index 0000000..a45ee8c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=annex-b +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.318 +avg_encode_latency_ms=133.066 +p95_encode_latency_ms=205.473 +max_encode_latency_ms=219.030 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30463245 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.csv new file mode 100644 index 0000000..4c087a4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1443,67.6872,0.0323,0.0000,0,0,0.0000,0,0.0000,0,1,0,63665,0 +1,7.2923,27.4755,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,71838,0 +2,7.2215,27.6736,0.0387,0.0000,0,0,0.0000,0,0.0000,0,0,0,148781,0 +3,7.1527,28.0233,0.0477,0.0000,0,0,0.0000,0,0.0000,0,0,0,251226,0 +4,6.8439,28.5345,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,163048,0 +5,6.5940,24.9021,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,145831,0 +6,7.1758,13.5376,0.0424,0.0000,0,0,0.0000,0,0.0000,0,0,0,195563,0 +7,7.2310,10.9474,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,227545,0 +8,7.1120,10.9898,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,203787,0 +9,7.3135,11.0818,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,215525,0 +10,7.7581,10.8858,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,221575,0 +11,7.7852,10.6918,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,221996,0 +12,7.7187,10.6473,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,222933,0 +13,7.8092,11.1973,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,189072,0 +14,7.9283,11.0455,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,197810,0 +15,7.8569,11.7795,0.0385,0.0000,0,0,0.0000,0,0.0000,0,0,0,202009,0 +16,7.1287,11.4883,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,180813,0 +17,7.4817,11.4734,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,130225,0 +18,7.3289,11.5626,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,170309,0 +19,7.3377,11.3411,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,205896,0 +20,7.4291,11.8770,0.0409,0.0000,0,0,0.0000,0,0.0000,0,0,0,240189,0 +21,7.5557,11.1557,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,184678,0 +22,7.3435,11.3037,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,198454,0 +23,6.8516,11.2626,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,196511,0 +24,7.4469,10.9894,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,188404,0 +25,7.1402,11.1668,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,148855,0 +26,7.0402,11.6334,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,158139,0 +27,7.5049,11.2365,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,161328,0 +28,7.8572,11.2667,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,160478,0 +29,7.0740,11.4214,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,165748,0 +30,7.1915,11.5612,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,166009,0 +31,6.9687,11.2270,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,169371,0 +32,6.7344,11.1905,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,146840,0 +33,6.8476,11.9249,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,105073,0 +34,6.9161,11.2070,0.0419,0.0000,0,0,0.0000,0,0.0000,0,0,0,176131,0 +35,6.7490,11.5654,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,205088,0 +36,7.0668,11.3820,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,237238,0 +37,7.3802,11.6472,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,179691,0 +38,7.4674,11.2260,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,193983,0 +39,7.1921,11.7118,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,191389,0 +40,7.4905,11.6098,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,137488,0 +41,7.5829,11.2621,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,152228,0 +42,7.2547,10.9178,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,158002,0 +43,7.2110,11.2117,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,159834,0 +44,7.1200,10.9400,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,209275,0 +45,7.2070,10.8968,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,202806,0 +46,7.3405,11.0480,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,157126,0 +47,7.1827,10.9492,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,162628,0 +48,7.4359,11.0067,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,144411,0 +49,7.6915,10.9567,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,109288,0 +50,7.7364,10.9507,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,141500,0 +51,7.3978,11.4739,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,219816,0 +52,7.3749,11.4368,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,242054,0 +53,7.3224,11.5499,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,187182,0 +54,7.3438,11.0954,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,198594,0 +55,7.2657,10.9987,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,151109,0 +56,7.4260,10.9563,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,149429,0 +57,7.2969,10.7194,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,157968,0 +58,7.7311,10.9760,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,161943,0 +59,7.6916,11.6428,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,163400,0 +60,7.5364,11.3009,0.0767,0.0000,0,0,0.0000,0,0.0000,0,1,0,356689,0 +61,7.2851,12.0203,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,142832,0 +62,7.6585,11.3692,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,132670,0 +63,7.2601,11.3468,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,134694,0 +64,6.9504,11.6592,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,114788,0 +65,7.3522,11.7346,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,110235,0 +66,7.5378,11.4525,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,145468,0 +67,7.8190,11.2825,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,217115,0 +68,7.4233,11.3130,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,236415,0 +69,7.2771,11.4925,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,180392,0 +70,7.3595,11.3968,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,194240,0 +71,7.6370,11.2011,0.0462,0.0000,0,0,0.0000,0,0.0000,0,0,0,193580,0 +72,7.5370,11.6883,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,182286,0 +73,7.3964,11.6596,0.0383,0.0000,0,0,0.0000,0,0.0000,0,0,0,193250,0 +74,7.5571,11.0888,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,197788,0 +75,7.4976,11.4876,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,153039,0 +76,7.3913,11.6053,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,157778,0 +77,7.8705,11.1307,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,161651,0 +78,7.4959,11.1290,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,165536,0 +79,7.5495,10.8256,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,165233,0 +80,7.5020,10.7694,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,147028,0 +81,7.5778,11.6620,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,109577,0 +82,7.5488,10.9859,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,140320,0 +83,7.6789,11.0975,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,218949,0 +84,7.5135,11.1142,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,243601,0 +85,7.4707,11.6946,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,186323,0 +86,7.3830,11.1338,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,200890,0 +87,7.5417,11.0310,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,151869,0 +88,7.3579,11.0262,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,149442,0 +89,7.3816,10.9608,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,157704,0 +90,7.6645,10.9093,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,162013,0 +91,7.6990,11.0115,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,163621,0 +92,7.4250,11.1408,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,162752,0 +93,7.5552,11.0060,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,216980,0 +94,7.6220,10.8030,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,160318,0 +95,7.8160,10.8923,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,168718,0 +96,7.5207,10.8142,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,145261,0 +97,7.3552,11.5839,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,105180,0 +98,7.3432,11.4695,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,137751,0 +99,7.2688,11.1151,0.0411,0.0000,0,0,0.0000,0,0.0000,0,0,0,214073,0 +100,7.2732,11.0627,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,240195,0 +101,7.3507,11.2457,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,217366,0 +102,7.2508,11.9263,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,187487,0 +103,7.2101,11.0382,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,190843,0 +104,7.3337,11.6790,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,135723,0 +105,7.9796,11.0775,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,152622,0 +106,7.2580,11.0243,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,208520,0 +107,7.2985,10.9614,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,200929,0 +108,7.2558,10.8225,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,151947,0 +109,7.3542,10.9866,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,161637,0 +110,7.5910,11.2916,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,164817,0 +111,7.6283,10.9580,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,166317,0 +112,7.7392,10.9815,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,146673,0 +113,7.4933,10.7700,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,110159,0 +114,7.6871,10.7922,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,142065,0 +115,7.3934,11.3665,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,219668,0 +116,7.5667,12.1755,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,244165,0 +117,7.1604,11.4157,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,188269,0 +118,6.9675,11.2941,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,200339,0 +119,7.3112,11.0297,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,200606,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.txt new file mode 100644 index 0000000..c3922f1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.407 +avg_encode_latency_ms=12.399 +p95_encode_latency_ms=14.106 +max_encode_latency_ms=67.687 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21077521 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.csv new file mode 100644 index 0000000..c132eb8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.1083,60.9813,0.0296,0.0000,0,0,0.0000,0,0.0000,0,1,0,80375,0 +1,10.6321,33.0105,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,69273,0 +2,10.2138,32.8688,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,112403,0 +3,10.5368,32.6072,0.0279,0.0000,0,0,0.0000,0,0.0000,0,0,0,205525,0 +4,9.8892,33.0964,0.0390,0.0000,0,0,0.0000,0,0.0000,0,0,0,220973,0 +5,9.8531,33.4682,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,152284,0 +6,9.7662,25.3624,0.0516,0.0000,0,0,0.0000,0,0.0000,0,0,0,195064,0 +7,10.1693,18.9655,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,179649,0 +8,9.6288,15.2855,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,158778,0 +9,9.9890,15.1501,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,171874,0 +10,9.7321,15.7056,0.0333,0.0000,0,0,0.0000,0,0.0000,0,0,0,224192,0 +11,9.8547,15.6812,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,216388,0 +12,10.0206,14.9787,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,212904,0 +13,9.9295,15.5631,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,166322,0 +14,10.2237,15.1918,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,230166,0 +15,9.9261,14.9343,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,220415,0 +16,9.8340,14.5800,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,113641,0 +17,9.9931,14.9130,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,159261,0 +18,10.2899,14.9640,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,200308,0 +19,9.6252,14.8307,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,235305,0 +20,9.5294,15.5228,0.0431,0.0000,0,0,0.0000,0,0.0000,0,0,0,214370,0 +21,9.7720,14.9729,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,208357,0 +22,9.7709,15.7081,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,166281,0 +23,9.9254,14.8627,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,170749,0 +24,10.3411,14.9782,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,168961,0 +25,10.0943,15.3710,0.0427,0.0000,0,0,0.0000,0,0.0000,0,0,0,226315,0 +26,9.7022,15.2986,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,166752,0 +27,9.7903,14.9347,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,180905,0 +28,9.5703,14.7910,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,225861,0 +29,9.3313,14.5768,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,177537,0 +30,9.7626,14.7711,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,185200,0 +31,9.5175,15.4025,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,185680,0 +32,9.9566,14.7669,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,122898,0 +33,9.4057,14.6729,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,132475,0 +34,9.4580,14.7984,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,164607,0 +35,9.6141,14.5405,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,241806,0 +36,9.7876,14.9345,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,211301,0 +37,9.6349,14.7047,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,154607,0 +38,9.5881,14.6818,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,167050,0 +39,9.4955,14.4533,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,168603,0 +40,9.8402,14.6574,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,163114,0 +41,9.5728,14.5660,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,170272,0 +42,9.7659,15.2661,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,227364,0 +43,9.5527,14.7370,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,168914,0 +44,9.8160,14.6873,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,173656,0 +45,10.1511,14.5776,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,178830,0 +46,9.5378,14.6587,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,186599,0 +47,9.6489,14.5184,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,183053,0 +48,9.6157,14.6457,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,99665,0 +49,9.6024,14.6798,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,142113,0 +50,9.3383,14.5541,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,168638,0 +51,9.4932,14.7003,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,183765,0 +52,9.5310,14.9507,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,229919,0 +53,9.3672,14.5299,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,159830,0 +54,9.6260,15.1787,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,142449,0 +55,9.6764,14.6000,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,179752,0 +56,9.7916,14.6874,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,174019,0 +57,9.4818,14.8473,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,172650,0 +58,9.4917,14.8191,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,177474,0 +59,9.3630,14.7387,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,182818,0 +60,9.6671,14.5444,0.0490,0.0000,0,0,0.0000,0,0.0000,0,1,0,437765,0 +61,9.9453,15.5500,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,173099,0 +62,9.6568,14.7779,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,140169,0 +63,9.5939,14.8853,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,111278,0 +64,9.7749,14.6866,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,90616,0 +65,9.8407,15.5665,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,118473,0 +66,9.8320,14.6479,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,147523,0 +67,10.0657,15.1727,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,202958,0 +68,9.8340,15.3032,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,185496,0 +69,9.5215,15.5484,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,176502,0 +70,9.8497,14.9112,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,180015,0 +71,9.7809,14.5278,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,142002,0 +72,9.9175,14.7048,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,174556,0 +73,9.6410,14.6630,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,177413,0 +74,9.7167,14.6130,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,185214,0 +75,9.9041,14.7000,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,182679,0 +76,9.9312,14.5731,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,182716,0 +77,9.6916,14.5605,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,186792,0 +78,9.6505,14.6574,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,189324,0 +79,9.5676,14.4564,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,187924,0 +80,9.5390,14.6870,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,100360,0 +81,9.6443,14.6741,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,143529,0 +82,10.0327,15.0292,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,172277,0 +83,10.1118,14.7823,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,185687,0 +84,9.8966,15.1654,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,232893,0 +85,9.6201,14.8483,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,162436,0 +86,9.5382,14.4910,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,145129,0 +87,9.4741,14.8320,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,182227,0 +88,9.9142,14.9425,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,174804,0 +89,9.6106,15.7462,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,178493,0 +90,10.9839,15.0597,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,180254,0 +91,9.7078,15.6658,0.0296,0.0000,0,0,0.0000,0,0.0000,0,0,0,183410,0 +92,9.9830,15.0843,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,180599,0 +93,9.7713,15.0300,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,187365,0 +94,10.1169,14.8718,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,154460,0 +95,9.8675,15.0307,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,195480,0 +96,10.0208,15.0851,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,100336,0 +97,9.9951,14.6105,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,142249,0 +98,9.7884,14.6851,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,166808,0 +99,9.8101,14.6735,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,180704,0 +100,9.8385,14.9754,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,226169,0 +101,9.5930,14.6757,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,154423,0 +102,9.8560,15.0531,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,173283,0 +103,10.1181,14.6982,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,167329,0 +104,10.4862,14.6059,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,164926,0 +105,10.0832,14.5695,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,170203,0 +106,10.6960,14.6916,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,176533,0 +107,9.7332,14.7138,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,179978,0 +108,9.7705,15.0162,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,177096,0 +109,9.9293,14.3978,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,184948,0 +110,9.5059,14.7435,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,185952,0 +111,9.4588,14.9329,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,186887,0 +112,9.5908,14.8583,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,102821,0 +113,9.5222,14.7735,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,143523,0 +114,9.3604,15.1334,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,171386,0 +115,9.4140,14.8902,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,184704,0 +116,9.5535,15.3841,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,231056,0 +117,9.8620,14.7973,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,160305,0 +118,9.4960,15.2470,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,144091,0 +119,9.5659,15.2676,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,180733,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.txt new file mode 100644 index 0000000..2cd3af2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.806 +avg_encode_latency_ms=16.158 +p95_encode_latency_ms=25.725 +max_encode_latency_ms=60.981 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21018669 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.csv new file mode 100644 index 0000000..6b99fa4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,18.9138,95.3530,0.0385,0.0000,0,0,0.0000,0,0.0000,0,1,0,128438,0 +1,18.8064,60.2362,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,73894,0 +2,17.6536,70.5321,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,116454,0 +3,18.2443,80.5324,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,142439,0 +4,17.2138,92.0296,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,196548,0 +5,17.3334,103.2561,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,169683,0 +6,18.2069,113.4787,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,178022,0 +7,16.8954,125.2036,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,179490,0 +8,17.4191,136.2138,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,160984,0 +9,17.0425,148.0032,0.0453,0.0000,0,0,0.0000,0,0.0000,0,0,0,220298,0 +10,17.4364,158.9919,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,170256,0 +11,18.4653,169.0078,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,178593,0 +12,17.5445,179.9100,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,172545,0 +13,17.5515,190.8314,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,184165,0 +14,17.9294,201.4083,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,184684,0 +15,17.1068,212.9315,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,189364,0 +16,17.3941,223.7210,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,148003,0 +17,16.9466,235.2361,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,176902,0 +18,17.8570,245.8091,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,178803,0 +19,16.7392,257.5300,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,176357,0 +20,17.9163,269.1605,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,216192,0 +21,16.7641,281.2418,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,191331,0 +22,16.6050,293.6455,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,202887,0 +23,16.5500,306.2325,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,198325,0 +24,16.4902,318.0288,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,166002,0 +25,16.4042,330.6398,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,204199,0 +26,17.1215,342.5780,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,201938,0 +27,17.0516,349.5706,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,172422,0 +28,17.5422,355.9576,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,208882,0 +29,18.3537,355.4751,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,177328,0 +30,17.9624,355.9255,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,183019,0 +31,17.8919,356.3140,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,188084,0 +32,17.2037,356.2283,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,104324,0 +33,17.5149,354.9416,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,173487,0 +34,17.0211,355.0702,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,151982,0 +35,18.5641,353.4293,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,179511,0 +36,18.4564,353.7485,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,211245,0 +37,16.7468,355.9774,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,184353,0 +38,16.9138,355.4790,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,195538,0 +39,17.3131,355.0510,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,192906,0 +40,19.1843,353.8214,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,194061,0 +41,18.1934,354.9150,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,157032,0 +42,17.6723,355.9208,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +43,16.9859,356.6314,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,167874,0 +44,17.1270,356.7582,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,204274,0 +45,18.1691,356.4489,0.0392,0.0000,0,0,0.0000,0,0.0000,0,0,0,173518,0 +46,17.6462,356.6878,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,179768,0 +47,17.5628,356.9361,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,184830,0 +48,18.4616,354.9540,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,127384,0 +49,17.8100,354.7222,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,179217,0 +50,16.9718,355.6094,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,158037,0 +51,17.2164,355.1116,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,182903,0 +52,16.9399,355.7301,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,217983,0 +53,17.2372,355.2205,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,154911,0 +54,17.1702,354.7722,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,172045,0 +55,17.3412,354.2298,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,172713,0 +56,16.9440,354.5950,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,174525,0 +57,16.7790,354.6312,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,170095,0 +58,16.8692,354.7028,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,176865,0 +59,17.3207,354.1827,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,179266,0 +60,17.8683,349.0153,0.1107,0.0000,0,0,0.0000,0,0.0000,0,1,0,355706,0 +61,18.0095,349.4707,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,166473,0 +62,18.4178,349.2908,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,152985,0 +63,17.4749,349.3302,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,138399,0 +64,17.0546,348.9580,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,82161,0 +65,17.5915,347.7845,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,144086,0 +66,17.8274,346.9668,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,124534,0 +67,17.4473,347.2466,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,163298,0 +68,17.7314,347.6795,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,186949,0 +69,17.7443,347.9709,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,135905,0 +70,19.2891,345.7685,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,147127,0 +71,17.5103,347.4572,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,151194,0 +72,17.6165,347.4980,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,143482,0 +73,17.4570,352.5517,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,187579,0 +74,18.4171,351.7668,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,182125,0 +75,18.1238,352.2109,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,183157,0 +76,17.0931,353.9622,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,178540,0 +77,16.9437,354.8360,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,189056,0 +78,17.4664,354.6534,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,188175,0 +79,17.5851,354.6960,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,190122,0 +80,17.5105,354.8085,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,125403,0 +81,17.5896,354.3012,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,182693,0 +82,17.9376,353.8316,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,161381,0 +83,17.2701,355.0387,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,188269,0 +84,17.6982,355.7018,0.0441,0.0000,0,0,0.0000,0,0.0000,0,0,0,225396,0 +85,18.6856,355.1995,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,193728,0 +86,18.1962,355.6932,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,205815,0 +87,17.0399,356.8210,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,167487,0 +88,16.5919,356.8030,0.0271,0.0000,0,0,0.0000,0,0.0000,0,0,0,173519,0 +89,17.6584,356.2376,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,209832,0 +90,17.4563,356.4177,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,170908,0 +91,17.2093,356.8782,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,218566,0 +92,16.7829,357.2671,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,167597,0 +93,17.2197,357.1865,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,184707,0 +94,17.6858,356.5098,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,186874,0 +95,17.3724,356.8961,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,190550,0 +96,17.0664,356.8197,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,107330,0 +97,17.9995,354.2754,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,174266,0 +98,17.4758,354.3091,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,153121,0 +99,17.8333,353.7818,0.0660,0.0000,0,0,0.0000,0,0.0000,0,0,0,183902,0 +100,17.3895,355.2216,0.0379,0.0000,0,0,0.0000,0,0.0000,0,0,0,214272,0 +101,18.0795,355.0848,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,185790,0 +102,18.0105,354.9453,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,195946,0 +103,17.8016,355.5606,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,161595,0 +104,17.9373,355.0364,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,201708,0 +105,17.2596,356.0073,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,160075,0 +106,16.7935,356.5124,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,204102,0 +107,17.4112,355.9512,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,168150,0 +108,17.0803,356.0884,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,169205,0 +109,17.1278,356.4547,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,181162,0 +110,17.9508,356.2357,0.0354,0.0000,0,0,0.0000,0,0.0000,0,0,0,181628,0 +111,17.3396,356.9866,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,185723,0 +112,17.8695,355.7978,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,128047,0 +113,17.4736,355.8145,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,180119,0 +114,18.2558,355.2569,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,159331,0 +115,17.8663,355.4080,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,184878,0 +116,18.6702,355.4591,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,218038,0 +117,17.7139,356.1213,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,155144,0 +118,17.4182,356.6848,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,171671,0 +119,18.4077,355.8724,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,173615,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.txt new file mode 100644 index 0000000..fe30eab --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.562 +avg_encode_latency_ms=318.266 +p95_encode_latency_ms=356.824 +max_encode_latency_ms=357.267 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21102610 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.csv new file mode 100644 index 0000000..1709293 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.9958,69.3303,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,108448,0 +1,7.4532,34.6659,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,121598,0 +2,7.2382,35.1830,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,154664,0 +3,7.1545,36.0241,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,175174,0 +4,7.0129,37.0127,0.0446,0.0000,0,0,0.0000,0,0.0000,0,0,0,205332,0 +5,6.6449,33.5828,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,231359,0 +6,6.9907,21.8582,0.0525,0.0000,0,0,0.0000,0,0.0000,0,0,0,284150,0 +7,7.4437,15.2232,0.0601,0.0000,0,0,0.0000,0,0.0000,0,0,0,304941,0 +8,7.1915,15.3489,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,277617,0 +9,7.4853,15.1497,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,286623,0 +10,7.0592,15.4671,0.0726,0.0000,0,0,0.0000,0,0.0000,0,0,0,365946,0 +11,7.1457,15.2820,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,350138,0 +12,7.1846,15.0413,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,345367,0 +13,7.1581,15.1790,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,348168,0 +14,7.2265,14.8967,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,345637,0 +15,7.1765,15.0351,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,356489,0 +16,7.1188,15.2766,0.0598,0.0000,0,0,0.0000,0,0.0000,0,0,0,339699,0 +17,7.2365,15.1477,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,241442,0 +18,7.1986,15.0501,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,260589,0 +19,7.3208,15.0943,0.0451,0.0000,0,0,0.0000,0,0.0000,0,0,0,298458,0 +20,7.0740,15.7556,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,361134,0 +21,7.4985,15.0559,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,331937,0 +22,7.3572,15.8020,0.0504,0.0000,0,0,0.0000,0,0.0000,0,0,0,336641,0 +23,7.3923,15.2947,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,263091,0 +24,7.0814,15.2207,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,272134,0 +25,7.2542,15.6460,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,283852,0 +26,7.1910,15.5959,0.0502,0.0000,0,0,0.0000,0,0.0000,0,0,0,289146,0 +27,7.3510,15.4998,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,291135,0 +28,7.1560,15.7492,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,289458,0 +29,7.2179,15.9555,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,255556,0 +30,7.2675,15.2964,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,262891,0 +31,7.3448,15.5836,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,272006,0 +32,7.2451,15.3331,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,245460,0 +33,7.0336,15.2524,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,179757,0 +34,7.2204,15.5815,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,198113,0 +35,7.6154,15.1523,0.0442,0.0000,0,0,0.0000,0,0.0000,0,0,0,232614,0 +36,7.6382,15.6709,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,223189,0 +37,7.5327,15.3444,0.0393,0.0000,0,0,0.0000,0,0.0000,0,0,0,212672,0 +38,7.4652,15.3688,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,220997,0 +39,6.8508,15.2542,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,216687,0 +40,7.0794,15.8500,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,206254,0 +41,6.9997,15.9964,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,218543,0 +42,6.7856,15.3698,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,276560,0 +43,6.5878,15.3098,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,263539,0 +44,6.8251,15.2860,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,262523,0 +45,6.9740,16.0130,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,263307,0 +46,7.0433,15.6954,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,266372,0 +47,6.7060,15.7988,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,272818,0 +48,6.8700,16.7564,0.0326,0.0000,0,0,0.0000,0,0.0000,0,0,0,257532,0 +49,11.6322,16.1793,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,183731,0 +50,10.3093,15.5192,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,197494,0 +51,6.8365,15.6289,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,239021,0 +52,6.8970,16.6214,0.0361,0.0000,0,0,0.0000,0,0.0000,0,0,0,285798,0 +53,7.2917,15.5300,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,258493,0 +54,6.5228,15.6435,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,263038,0 +55,6.8527,15.5698,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,261527,0 +56,6.7437,15.2821,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,250038,0 +57,6.8719,15.5136,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,260575,0 +58,6.7293,15.9799,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,263532,0 +59,6.9791,15.4238,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,264522,0 +60,6.9336,12.7700,0.0906,0.0000,0,0,0.0000,0,0.0000,0,1,0,525183,0 +61,7.3095,15.6965,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,218579,0 +62,8.1983,15.8793,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,205032,0 +63,6.9337,15.6403,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,231842,0 +64,6.7163,15.6657,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,208945,0 +65,6.9213,15.4913,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,157652,0 +66,7.1118,15.3868,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,167160,0 +67,6.8120,16.2515,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,203065,0 +68,7.0569,16.7444,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,235941,0 +69,7.1885,15.5811,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,215309,0 +70,7.1013,15.3046,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,275925,0 +71,7.0115,15.5030,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,254740,0 +72,6.9375,15.1240,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,242092,0 +73,7.1581,15.3738,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,253671,0 +74,7.3090,15.7815,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,260640,0 +75,6.8006,15.4665,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,260184,0 +76,6.9140,15.5809,0.0296,0.0000,0,0,0.0000,0,0.0000,0,0,0,260063,0 +77,7.1412,15.7877,0.0594,0.0000,0,0,0.0000,0,0.0000,0,0,0,265703,0 +78,6.9257,15.8918,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,265056,0 +79,6.7579,15.5791,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,271657,0 +80,6.9355,15.3075,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,256049,0 +81,6.8263,16.0997,0.0482,0.0000,0,0,0.0000,0,0.0000,0,0,0,183989,0 +82,7.1829,15.8249,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,196768,0 +83,7.0442,15.6588,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,239387,0 +84,6.9898,16.2993,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,283866,0 +85,6.9923,15.7026,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,258277,0 +86,6.8467,15.6035,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,265111,0 +87,7.1850,15.8594,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,259872,0 +88,6.9278,15.7834,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,252689,0 +89,6.8208,16.0347,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,259413,0 +90,7.1677,15.7463,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,263634,0 +91,6.6542,15.9060,0.0444,0.0000,0,0,0.0000,0,0.0000,0,0,0,264909,0 +92,6.9962,15.9352,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,265126,0 +93,7.0652,15.7305,0.0433,0.0000,0,0,0.0000,0,0.0000,0,0,0,267850,0 +94,6.5273,16.1753,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,266272,0 +95,6.7432,15.6951,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,274187,0 +96,6.9320,16.0394,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,247283,0 +97,6.7397,16.0061,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,182510,0 +98,6.8209,15.6486,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,198047,0 +99,6.7603,15.5258,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,231553,0 +100,6.9820,16.3517,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,275143,0 +101,7.0115,15.4326,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,248776,0 +102,6.7682,15.3915,0.2115,0.0000,0,0,0.0000,0,0.0000,0,0,0,255476,0 +103,7.3143,15.8377,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,252111,0 +104,6.7130,16.2055,0.0404,0.0000,0,0,0.0000,0,0.0000,0,0,0,239692,0 +105,7.0457,15.7273,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,253050,0 +106,6.7743,15.7380,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,258000,0 +107,7.2208,15.7117,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,260752,0 +108,7.0068,15.6356,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,259317,0 +109,6.7832,15.7555,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,265069,0 +110,7.0485,16.0020,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,264018,0 +111,7.0133,15.3601,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,272153,0 +112,7.1469,16.0547,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,255884,0 +113,7.0133,15.4910,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,184232,0 +114,7.0244,15.8075,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,199052,0 +115,6.9755,16.0823,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,238607,0 +116,6.7646,16.8099,0.0374,0.0000,0,0,0.0000,0,0.0000,0,0,0,284990,0 +117,6.9235,15.9142,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,257891,0 +118,6.8372,15.4924,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,263234,0 +119,6.7685,15.7730,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,262911,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.txt new file mode 100644 index 0000000..598650e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.127 +avg_encode_latency_ms=16.941 +p95_encode_latency_ms=22.444 +max_encode_latency_ms=69.330 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30601115 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.csv new file mode 100644 index 0000000..6056e05 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.9569,82.5016,0.0352,0.0000,0,0,0.0000,0,0.0000,0,1,0,118218,0 +1,11.3740,41.4358,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,111443,0 +2,10.1768,41.9363,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,149620,0 +3,9.6891,43.3260,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,179764,0 +4,9.6345,44.5188,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,207593,0 +5,9.4710,45.9317,0.0403,0.0000,0,0,0.0000,0,0.0000,0,0,0,235371,0 +6,9.4268,47.6226,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,283310,0 +7,9.4558,49.1189,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,268697,0 +8,9.4314,46.0360,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,240958,0 +9,10.4304,38.8062,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,256454,0 +10,9.8250,33.9445,0.0561,0.0000,0,0,0.0000,0,0.0000,0,0,0,322565,0 +11,9.7120,27.9799,0.0481,0.0000,0,0,0.0000,0,0.0000,0,0,0,317668,0 +12,9.4985,22.0421,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,257032,0 +13,9.5343,21.1521,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,275773,0 +14,9.2986,20.7730,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,278142,0 +15,9.6688,20.9596,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,283815,0 +16,9.3233,20.6915,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,193592,0 +17,9.4914,20.6520,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,238201,0 +18,9.4609,20.3743,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,242735,0 +19,9.3944,21.1775,0.0343,0.0000,0,0,0.0000,0,0.0000,0,0,0,286771,0 +20,9.2896,21.6529,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,338160,0 +21,9.4848,21.0383,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,317302,0 +22,9.4626,20.7737,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,323857,0 +23,9.4273,20.6118,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,268016,0 +24,10.0305,20.7251,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,267378,0 +25,9.4662,20.5476,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,274878,0 +26,9.6160,20.5971,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,283128,0 +27,9.6823,20.6249,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,286420,0 +28,9.5942,21.7286,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,282704,0 +29,11.0039,20.4960,0.0612,0.0000,0,0,0.0000,0,0.0000,0,0,0,293005,0 +30,9.7279,20.2248,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,292033,0 +31,9.6454,21.0431,0.0630,0.0000,0,0,0.0000,0,0.0000,0,0,0,296676,0 +32,9.9113,20.2082,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,202460,0 +33,10.3220,20.1830,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,190859,0 +34,10.0877,20.8716,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +35,9.6005,20.5218,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,300138,0 +36,9.5694,21.7618,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,338558,0 +37,9.9866,20.6076,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,311334,0 +38,9.6967,20.3943,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,263610,0 +39,9.6680,20.4955,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,272653,0 +40,9.5218,20.9106,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,257267,0 +41,9.6585,21.6634,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,275971,0 +42,9.7333,20.7398,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,281194,0 +43,9.5534,20.9841,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,285072,0 +44,10.4187,20.8392,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,281444,0 +45,10.2940,20.9595,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,288034,0 +46,10.3489,21.2933,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,232259,0 +47,10.0870,20.8113,0.0370,0.0000,0,0,0.0000,0,0.0000,0,0,0,233773,0 +48,10.0877,20.5007,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,158179,0 +49,10.1955,20.7199,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,159970,0 +50,9.8080,21.6008,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,202544,0 +51,10.0409,20.2297,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,313907,0 +52,10.6785,21.7728,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,343182,0 +53,9.9541,20.4064,0.0438,0.0000,0,0,0.0000,0,0.0000,0,0,0,267866,0 +54,9.7102,20.8782,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,283183,0 +55,9.6054,20.5335,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,224723,0 +56,9.7287,21.0844,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,216967,0 +57,9.6181,21.7352,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,225087,0 +58,9.8850,20.9715,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,232455,0 +59,9.8237,21.3903,0.0430,0.0000,0,0,0.0000,0,0.0000,0,0,0,234622,0 +60,9.8407,17.2181,0.1213,0.0000,0,0,0.0000,0,0.0000,0,1,0,509980,0 +61,9.9763,21.2629,0.0316,0.0000,0,0,0.0000,0,0.0000,0,0,0,215017,0 +62,9.8913,21.7535,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,189506,0 +63,10.0312,20.7049,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,190024,0 +64,9.7843,21.1817,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,127488,0 +65,9.6037,21.6847,0.0263,0.0000,0,0,0.0000,0,0.0000,0,0,0,159617,0 +66,9.7619,21.4454,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,200797,0 +67,9.4578,22.3634,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,311960,0 +68,9.8823,22.8592,0.0345,0.0000,0,0,0.0000,0,0.0000,0,0,0,336078,0 +69,9.6343,21.3958,0.0489,0.0000,0,0,0.0000,0,0.0000,0,0,0,256549,0 +70,9.7748,21.5456,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,275265,0 +71,9.7010,22.0636,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,274241,0 +72,9.9088,21.0047,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,259654,0 +73,9.9507,22.1732,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,276553,0 +74,9.7695,21.3973,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,282075,0 +75,9.5172,21.5100,0.0395,0.0000,0,0,0.0000,0,0.0000,0,0,0,285109,0 +76,9.8231,21.3826,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,280555,0 +77,9.5635,21.8750,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,232436,0 +78,9.6463,20.6547,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,234493,0 +79,10.0233,21.0127,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,234620,0 +80,9.5229,21.2956,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,159790,0 +81,9.4966,20.8853,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,193475,0 +82,9.5585,21.7343,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,211511,0 +83,9.4947,20.5514,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,311746,0 +84,9.7781,21.6399,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,344122,0 +85,9.5544,20.7683,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,267814,0 +86,9.5518,20.4840,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,282911,0 +87,9.5677,20.6218,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,226941,0 +88,9.6245,20.6792,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,217283,0 +89,9.7564,21.0242,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,226086,0 +90,10.0952,20.5605,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,233101,0 +91,9.6173,21.6315,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,235007,0 +92,10.2680,20.9611,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,232277,0 +93,9.8217,20.4766,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,238327,0 +94,10.0352,20.6944,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,239404,0 +95,9.6331,21.7345,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,244354,0 +96,9.7958,21.0786,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,162168,0 +97,9.6850,21.6596,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,191201,0 +98,9.7309,20.9675,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,205718,0 +99,9.5463,20.3999,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,307650,0 +100,9.8911,22.5880,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,340823,0 +101,9.5766,21.7588,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,260406,0 +102,9.7231,20.2847,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,275755,0 +103,9.8891,21.8934,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,275881,0 +104,10.2615,20.7297,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,259373,0 +105,9.6711,20.7034,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,276839,0 +106,9.5625,21.3561,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,282349,0 +107,9.9952,20.6047,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,287050,0 +108,10.0535,20.7163,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,226369,0 +109,9.8450,21.0129,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,232126,0 +110,9.9476,21.6218,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,235512,0 +111,9.9703,20.6209,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,238103,0 +112,10.4683,20.7419,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,160189,0 +113,9.6987,21.3279,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,196705,0 +114,10.3959,20.4543,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,213235,0 +115,10.2218,20.7203,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,312908,0 +116,10.1667,21.6795,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,285514,0 +117,10.3569,20.4683,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,279954,0 +118,10.3578,20.4585,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,288591,0 +119,10.5183,20.6715,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,228678,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.txt new file mode 100644 index 0000000..cfd4950 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.838 +avg_encode_latency_ms=23.441 +p95_encode_latency_ms=43.386 +max_encode_latency_ms=82.502 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30370689 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.csv new file mode 100644 index 0000000..291e74b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,18.7120,101.2271,0.0438,0.0000,0,0,0.0000,0,0.0000,0,1,0,141367,0 +1,18.4047,67.4670,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,107930,0 +2,17.3829,68.7627,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,128297,0 +3,18.1136,69.0353,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,131859,0 +4,17.7790,69.9910,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,159759,0 +5,17.7855,70.8676,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,172445,0 +6,17.1040,72.5662,0.0443,0.0000,0,0,0.0000,0,0.0000,0,0,0,221040,0 +7,17.8715,73.4982,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,267655,0 +8,17.2932,75.1109,0.0529,0.0000,0,0,0.0000,0,0.0000,0,0,0,302901,0 +9,17.6186,75.2782,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,247666,0 +10,18.0214,75.6732,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,248232,0 +11,17.5889,76.2805,0.0405,0.0000,0,0,0.0000,0,0.0000,0,0,0,247217,0 +12,17.8237,76.8827,0.0467,0.0000,0,0,0.0000,0,0.0000,0,0,0,238870,0 +13,17.0864,78.6367,0.0425,0.0000,0,0,0.0000,0,0.0000,0,0,0,303588,0 +14,16.9020,80.1046,0.0543,0.0000,0,0,0.0000,0,0.0000,0,0,0,287769,0 +15,17.4954,80.9271,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,286071,0 +16,16.9068,81.8731,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,185303,0 +17,16.8172,83.5904,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,210388,0 +18,16.8894,85.4616,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,263454,0 +19,17.3995,86.7379,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,275774,0 +20,18.4718,88.9612,0.0704,0.0000,0,0,0.0000,0,0.0000,0,0,0,333589,0 +21,17.2677,89.9129,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,302457,0 +22,16.6210,91.2316,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,252604,0 +23,16.7998,93.4226,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,323851,0 +24,16.5729,94.7236,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,242386,0 +25,16.6823,97.1700,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,324025,0 +26,16.4750,98.6102,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,250378,0 +27,17.3581,100.3464,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,335331,0 +28,16.7838,101.5130,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,252413,0 +29,16.7357,103.3865,0.0674,0.0000,0,0,0.0000,0,0.0000,0,0,0,277467,0 +30,17.0009,104.8904,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,281176,0 +31,17.2530,105.9934,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,284799,0 +32,16.5524,106.9330,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,177181,0 +33,16.6036,109.0231,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,202594,0 +34,16.5250,111.2757,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,236959,0 +35,16.4990,113.4750,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,279315,0 +36,16.6730,117.3699,0.0473,0.0000,0,0,0.0000,0,0.0000,0,0,0,326790,0 +37,16.8275,118.8679,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,293601,0 +38,17.3013,119.5248,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,242370,0 +39,16.7051,121.4313,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,257637,0 +40,16.4411,123.9368,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,309672,0 +41,16.4746,125.3033,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,243083,0 +42,16.7409,127.1501,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,262507,0 +43,16.6565,129.4050,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,328648,0 +44,16.7217,130.6600,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,251696,0 +45,17.1748,132.0870,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,274787,0 +46,17.3990,133.1915,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,275928,0 +47,17.8068,133.7897,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,281973,0 +48,16.7146,134.9593,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,188912,0 +49,17.1543,136.2809,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,210569,0 +50,16.2716,138.7364,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,244518,0 +51,16.6102,140.7512,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,287240,0 +52,16.7209,144.6333,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,336431,0 +53,16.6375,145.8005,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,242407,0 +54,16.7670,147.6141,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,269527,0 +55,16.6640,149.3997,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,262272,0 +56,16.8100,151.0798,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,261900,0 +57,16.6012,152.8999,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,262722,0 +58,16.4069,154.9168,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,267275,0 +59,16.5083,156.9274,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,273347,0 +60,17.1727,161.6370,0.0466,0.0000,0,0,0.0000,0,0.0000,0,1,0,553106,0 +61,16.6979,159.9698,0.0434,0.0000,0,0,0.0000,0,0.0000,0,0,0,275719,0 +62,17.0888,160.9018,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,206485,0 +63,16.8332,162.2943,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,177919,0 +64,16.8562,163.5082,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,129341,0 +65,17.6445,164.6053,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,167368,0 +66,17.3416,165.6881,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,173082,0 +67,18.7127,166.0000,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,268054,0 +68,17.3321,169.1463,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,304192,0 +69,17.5186,169.5480,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,215216,0 +70,17.8848,170.1122,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,235158,0 +71,17.0845,171.5618,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,231569,0 +72,18.6676,171.7821,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,285459,0 +73,17.7076,172.1260,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,216432,0 +74,16.6592,174.3972,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,294193,0 +75,16.5668,176.3065,0.0421,0.0000,0,0,0.0000,0,0.0000,0,0,0,282358,0 +76,16.4404,178.1654,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,278034,0 +77,16.2680,180.3805,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,284480,0 +78,17.0568,181.7379,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,288831,0 +79,16.6423,183.1583,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,236192,0 +80,16.4334,185.1594,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,205268,0 +81,17.3204,186.1633,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,213261,0 +82,17.9194,186.6810,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,199066,0 +83,17.5830,188.3608,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,312012,0 +84,17.7494,191.0184,0.0354,0.0000,0,0,0.0000,0,0.0000,0,0,0,345626,0 +85,16.6949,192.1207,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,250939,0 +86,16.6862,193.9712,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,272075,0 +87,16.8801,195.6057,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,266209,0 +88,16.4586,197.7685,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,266619,0 +89,16.9040,199.3146,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,267105,0 +90,16.9887,200.8762,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,275929,0 +91,16.6427,202.7189,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,279754,0 +92,16.6075,204.5887,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,274754,0 +93,16.2643,206.8784,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,287774,0 +94,16.7745,208.1446,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,234242,0 +95,16.6162,210.0391,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,246336,0 +96,16.4587,211.2610,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,147471,0 +97,16.5760,213.6719,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,217911,0 +98,16.4408,215.9754,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,246390,0 +99,16.4454,217.4195,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,287219,0 +100,16.6076,219.1217,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,264089,0 +101,16.3465,218.9280,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,253233,0 +102,16.4582,219.0966,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,264974,0 +103,16.3852,218.9777,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,262522,0 +104,17.0313,218.1496,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,253763,0 +105,16.5121,218.7205,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,260415,0 +106,17.4993,217.8920,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,267192,0 +107,17.2143,218.4565,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,272577,0 +108,16.9734,218.6903,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,266815,0 +109,16.7365,219.3622,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,223565,0 +110,17.8635,218.1644,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,294989,0 +111,17.5810,217.5851,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,232970,0 +112,16.6285,218.0115,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,159410,0 +113,17.7691,215.5113,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,223623,0 +114,18.2028,215.3846,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,196195,0 +115,17.4802,216.5676,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,308086,0 +116,16.9519,218.6960,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,271816,0 +117,17.9072,217.6622,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,262113,0 +118,17.6446,217.8998,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,270458,0 +119,17.7401,219.8695,0.1723,0.0000,0,0,0.0000,0,0.0000,0,0,0,215212,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.txt new file mode 100644 index 0000000..62b242a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.068 +avg_encode_latency_ms=151.676 +p95_encode_latency_ms=218.731 +max_encode_latency_ms=219.869 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30463087 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.csv new file mode 100644 index 0000000..cfd27db --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0247,55.6496,0.0296,0.0000,0,0,0.0000,0,0.0000,0,1,0,108448,0 +1,7.1266,34.0485,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,121598,0 +2,6.7741,35.0533,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,154664,0 +3,6.7176,36.1237,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,175174,0 +4,6.6925,26.3643,0.0568,0.0000,0,0,0.0000,0,0.0000,0,0,0,205332,0 +5,6.9251,17.1562,0.0394,0.0000,0,0,0.0000,0,0.0000,0,0,0,231359,0 +6,6.9974,15.0280,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,284150,0 +7,7.0798,15.3853,0.0440,0.0000,0,0,0.0000,0,0.0000,0,0,0,304941,0 +8,7.2918,15.2143,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,277617,0 +9,6.9823,14.9395,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,286623,0 +10,7.0439,15.1310,0.0609,0.0000,0,0,0.0000,0,0.0000,0,0,0,365946,0 +11,7.0966,15.1794,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,350138,0 +12,7.1397,15.0668,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,345367,0 +13,7.3357,15.1660,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,348168,0 +14,7.4935,15.2431,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,345637,0 +15,7.1753,15.0760,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,356489,0 +16,7.3100,15.3769,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,339699,0 +17,7.2994,14.9775,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,241442,0 +18,7.5834,14.9011,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,260589,0 +19,7.2214,15.2640,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,298458,0 +20,7.5847,16.4090,0.0329,0.0000,0,0,0.0000,0,0.0000,0,0,0,361134,0 +21,7.1770,15.1504,0.0503,0.0000,0,0,0.0000,0,0.0000,0,0,0,331937,0 +22,7.6441,15.3227,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,336641,0 +23,7.2484,15.1034,0.0331,0.0000,0,0,0.0000,0,0.0000,0,0,0,263091,0 +24,7.1813,15.0859,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,272134,0 +25,7.6568,15.3009,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,283852,0 +26,7.7773,15.0076,0.0465,0.0000,0,0,0.0000,0,0.0000,0,0,0,289146,0 +27,7.4174,15.2913,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,291135,0 +28,7.4150,15.2212,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,289458,0 +29,7.4771,15.1525,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,255556,0 +30,7.1255,15.8872,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,262891,0 +31,7.3583,15.3251,0.0445,0.0000,0,0,0.0000,0,0.0000,0,0,0,272006,0 +32,7.2604,15.2097,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,245460,0 +33,7.2138,15.0088,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,179757,0 +34,7.4860,15.7719,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,198113,0 +35,7.2825,15.7015,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,232614,0 +36,7.3922,16.0232,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,223189,0 +37,7.2633,15.6677,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,212672,0 +38,7.3499,15.6084,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,220997,0 +39,7.1540,15.3680,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,216687,0 +40,7.2200,16.2229,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,206254,0 +41,7.3852,15.4350,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,218543,0 +42,7.1178,15.1290,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,276560,0 +43,7.0835,15.6128,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,263539,0 +44,7.3930,15.0660,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,262523,0 +45,7.1027,15.1937,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,263307,0 +46,7.1295,15.2157,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,266372,0 +47,7.1835,15.1001,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,272818,0 +48,7.4777,15.1358,0.0345,0.0000,0,0,0.0000,0,0.0000,0,0,0,257532,0 +49,7.3865,15.6551,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,183731,0 +50,7.0922,15.0997,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,197494,0 +51,7.2016,15.4613,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,239021,0 +52,7.2875,15.9995,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,285798,0 +53,7.2770,15.0673,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,258493,0 +54,7.3689,15.2032,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,263038,0 +55,7.2110,15.2748,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,261527,0 +56,7.1867,15.0885,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,250038,0 +57,7.3922,15.0112,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,260575,0 +58,7.2465,15.0527,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,263532,0 +59,7.2159,15.2030,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,264522,0 +60,7.3860,12.3152,0.0911,0.0000,0,0,0.0000,0,0.0000,0,1,0,525183,0 +61,7.2361,14.9847,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,218579,0 +62,7.1711,15.0077,0.0279,0.0000,0,0,0.0000,0,0.0000,0,0,0,205032,0 +63,7.3626,15.1329,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,231842,0 +64,7.4962,15.3412,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,208945,0 +65,7.3941,15.0968,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,157652,0 +66,7.2775,15.3084,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,167160,0 +67,7.4408,15.3158,0.0298,0.0000,0,0,0.0000,0,0.0000,0,0,0,203065,0 +68,7.3540,15.9380,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,235941,0 +69,7.3856,15.0695,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,215309,0 +70,7.2213,15.1661,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,275925,0 +71,7.2768,15.1812,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,254740,0 +72,7.2273,15.1400,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,242092,0 +73,7.2342,15.2493,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,253671,0 +74,7.3258,15.2099,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,260640,0 +75,7.2170,14.8905,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,260184,0 +76,7.3693,15.2660,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,260063,0 +77,7.1674,15.0523,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,265703,0 +78,7.2562,14.8612,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,265056,0 +79,7.2922,15.2253,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,271657,0 +80,7.5283,15.1362,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,256049,0 +81,7.4889,15.2330,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,183989,0 +82,7.5235,15.0913,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,196768,0 +83,7.2381,15.2915,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,239387,0 +84,7.2400,15.9233,0.0279,0.0000,0,0,0.0000,0,0.0000,0,0,0,283866,0 +85,7.2524,15.0615,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,258277,0 +86,7.2417,15.3409,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,265111,0 +87,7.6287,15.8822,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,259872,0 +88,7.2953,15.5239,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,252689,0 +89,7.3428,15.2897,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,259413,0 +90,7.4951,15.2431,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,263634,0 +91,7.3596,15.3757,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,264909,0 +92,7.3353,15.2965,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,265126,0 +93,7.3347,15.2088,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,267850,0 +94,7.2439,15.1955,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,266272,0 +95,7.2991,15.1775,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,274187,0 +96,7.2683,15.3191,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,247283,0 +97,7.4112,15.3349,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,182510,0 +98,7.0826,15.4411,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,198047,0 +99,7.2781,15.2342,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,231553,0 +100,7.1229,15.8414,0.0520,0.0000,0,0,0.0000,0,0.0000,0,0,0,275143,0 +101,7.2291,15.0001,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,248776,0 +102,7.1235,15.1656,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,255476,0 +103,7.3379,16.0828,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,252111,0 +104,7.3399,15.5704,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,239692,0 +105,7.2043,15.3142,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,253050,0 +106,7.2003,15.6236,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,258000,0 +107,7.3252,15.5542,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,260752,0 +108,7.2020,15.8983,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,259317,0 +109,6.9513,15.9303,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,265069,0 +110,7.0172,15.3204,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,264018,0 +111,6.8646,15.2267,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,272153,0 +112,7.0007,15.5463,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,255884,0 +113,6.7786,15.3688,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,184232,0 +114,7.2210,15.7660,0.0374,0.0000,0,0,0.0000,0,0.0000,0,0,0,199052,0 +115,7.2687,16.5849,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,238607,0 +116,7.2806,16.5054,0.0579,0.0000,0,0,0.0000,0,0.0000,0,0,0,284990,0 +117,7.3232,15.2695,0.0364,0.0000,0,0,0.0000,0,0.0000,0,0,0,257891,0 +118,7.3271,15.2620,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,263234,0 +119,7.1121,14.9347,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,262911,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.txt new file mode 100644 index 0000000..b625416 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.275 +avg_encode_latency_ms=16.253 +p95_encode_latency_ms=16.613 +max_encode_latency_ms=55.650 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30601115 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.csv new file mode 100644 index 0000000..45bcc49 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.6551,74.3113,0.0384,0.0000,0,0,0.0000,0,0.0000,0,1,0,118218,0 +1,10.4390,41.4509,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,111443,0 +2,10.4186,41.7385,0.0331,0.0000,0,0,0.0000,0,0.0000,0,0,0,149620,0 +3,9.9588,42.8739,0.0358,0.0000,0,0,0.0000,0,0.0000,0,0,0,179764,0 +4,10.0237,43.6072,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,207593,0 +5,9.7471,44.5553,0.0434,0.0000,0,0,0.0000,0,0.0000,0,0,0,235371,0 +6,9.7558,45.9410,0.0481,0.0000,0,0,0.0000,0,0.0000,0,0,0,283310,0 +7,9.6367,42.9581,0.0252,0.0000,0,0,0.0000,0,0.0000,0,0,0,268697,0 +8,9.4826,36.4187,0.0480,0.0000,0,0,0.0000,0,0.0000,0,0,0,240958,0 +9,9.6258,30.8488,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,256454,0 +10,10.5319,23.7000,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,322565,0 +11,9.9521,20.5619,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,317668,0 +12,9.8847,20.6637,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,257032,0 +13,10.0189,21.1099,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,275773,0 +14,9.5893,21.6035,0.0405,0.0000,0,0,0.0000,0,0.0000,0,0,0,278142,0 +15,9.8050,21.4665,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,283815,0 +16,11.0386,21.0705,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,193592,0 +17,9.7399,21.3890,0.0409,0.0000,0,0,0.0000,0,0.0000,0,0,0,238201,0 +18,9.6897,21.6861,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,242735,0 +19,10.0563,20.8891,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,286771,0 +20,10.0655,21.4817,0.0343,0.0000,0,0,0.0000,0,0.0000,0,0,0,338160,0 +21,10.0316,20.7386,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,317302,0 +22,9.7673,20.9847,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,323857,0 +23,9.8948,20.5020,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,268016,0 +24,9.7904,20.6703,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,267378,0 +25,10.0233,20.6954,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,274878,0 +26,10.0871,20.8865,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,283128,0 +27,9.6354,20.6555,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,286420,0 +28,9.7887,21.4658,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,282704,0 +29,9.9146,20.7840,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,293005,0 +30,9.9270,20.9223,0.0470,0.0000,0,0,0.0000,0,0.0000,0,0,0,292033,0 +31,9.7762,21.3596,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,296676,0 +32,9.3325,20.5266,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,202460,0 +33,9.3767,20.6503,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,190859,0 +34,9.9804,21.2744,0.0369,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +35,9.5934,20.2850,0.0451,0.0000,0,0,0.0000,0,0.0000,0,0,0,300138,0 +36,9.6495,21.7234,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,338558,0 +37,9.6969,20.9468,0.0394,0.0000,0,0,0.0000,0,0.0000,0,0,0,311334,0 +38,9.6731,20.8472,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,263610,0 +39,9.5572,20.3794,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,272653,0 +40,9.6492,20.6335,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,257267,0 +41,9.6107,20.6800,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,275971,0 +42,9.6349,21.1616,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,281194,0 +43,9.4468,20.6287,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,285072,0 +44,9.5623,21.4689,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,281444,0 +45,10.0190,21.2396,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,288034,0 +46,9.7320,22.6205,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,232259,0 +47,10.0960,21.3858,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,233773,0 +48,9.6826,21.3348,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,158179,0 +49,9.5356,21.4938,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,159970,0 +50,9.9816,20.9349,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,202544,0 +51,9.7349,20.7721,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,313907,0 +52,9.8630,22.1061,0.0534,0.0000,0,0,0.0000,0,0.0000,0,0,0,343182,0 +53,9.8565,20.5499,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,267866,0 +54,9.8254,20.4078,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,283183,0 +55,9.8728,20.8292,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,224723,0 +56,10.1436,21.1023,0.0408,0.0000,0,0,0.0000,0,0.0000,0,0,0,216967,0 +57,9.8955,21.6488,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,225087,0 +58,9.6453,20.7495,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,232455,0 +59,9.6058,20.7624,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,234622,0 +60,9.8342,16.9678,0.0680,0.0000,0,0,0.0000,0,0.0000,0,1,0,509980,0 +61,9.7660,21.5053,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,215017,0 +62,9.5557,20.9201,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,189506,0 +63,9.5181,21.1563,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,190024,0 +64,9.5381,21.0776,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,127488,0 +65,9.8004,20.6557,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,159617,0 +66,9.5838,20.7868,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,200797,0 +67,9.6500,21.9847,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,311960,0 +68,9.7649,21.5496,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,336078,0 +69,9.9490,21.4655,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,256549,0 +70,9.6995,20.8230,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,275265,0 +71,9.7737,20.8018,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,274241,0 +72,9.6410,21.3443,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,259654,0 +73,9.6188,21.6048,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,276553,0 +74,9.7391,21.2153,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,282075,0 +75,9.8240,21.5294,0.0399,0.0000,0,0,0.0000,0,0.0000,0,0,0,285109,0 +76,9.5678,21.2407,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,280555,0 +77,9.5420,21.1292,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,232436,0 +78,9.6890,21.0625,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,234493,0 +79,9.6900,21.7379,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,234620,0 +80,9.5650,20.7317,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,159790,0 +81,9.5798,20.7997,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,193475,0 +82,9.5138,22.3542,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,211511,0 +83,10.0362,21.1993,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,311746,0 +84,9.7280,21.8253,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,344122,0 +85,9.6101,21.2547,0.0641,0.0000,0,0,0.0000,0,0.0000,0,0,0,267814,0 +86,9.5931,20.9520,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,282911,0 +87,9.4671,20.6103,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,226941,0 +88,9.5303,20.6370,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,217283,0 +89,9.5669,20.6212,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,226086,0 +90,9.5785,20.6657,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,233101,0 +91,9.6224,20.6273,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,235007,0 +92,9.4759,20.4968,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,232277,0 +93,9.6941,20.4640,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,238327,0 +94,10.5463,21.4677,0.0398,0.0000,0,0,0.0000,0,0.0000,0,0,0,239404,0 +95,9.6688,20.5420,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,244354,0 +96,9.3305,20.4921,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,162168,0 +97,9.3978,21.0761,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,191201,0 +98,9.6085,21.0899,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,205718,0 +99,9.2436,20.6212,0.0573,0.0000,0,0,0.0000,0,0.0000,0,0,0,307650,0 +100,9.3198,21.7400,0.0688,0.0000,0,0,0.0000,0,0.0000,0,0,0,340823,0 +101,10.2705,21.9438,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,260406,0 +102,10.2238,21.3716,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,275755,0 +103,10.4345,21.5567,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,275881,0 +104,10.4395,23.2117,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,259373,0 +105,9.9041,21.4332,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,276839,0 +106,10.5169,21.6627,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,282349,0 +107,10.7311,21.5996,0.0470,0.0000,0,0,0.0000,0,0.0000,0,0,0,287050,0 +108,10.6396,21.5468,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,226369,0 +109,10.2493,21.8166,0.0635,0.0000,0,0,0.0000,0,0.0000,0,0,0,232126,0 +110,9.9923,21.1423,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,235512,0 +111,9.9424,21.1891,0.0679,0.0000,0,0,0.0000,0,0.0000,0,0,0,238103,0 +112,10.2835,21.3183,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,160189,0 +113,10.3588,21.3126,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,196705,0 +114,9.8123,21.6022,0.0840,0.0000,0,0,0.0000,0,0.0000,0,0,0,213235,0 +115,9.9986,21.9320,0.0555,0.0000,0,0,0.0000,0,0.0000,0,0,0,312908,0 +116,10.2432,22.6475,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,285514,0 +117,9.9851,21.6780,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,279954,0 +118,9.7653,22.6028,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,288591,0 +119,9.6795,21.8044,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,228678,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.txt new file mode 100644 index 0000000..351742f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.841 +avg_encode_latency_ms=23.111 +p95_encode_latency_ms=41.795 +max_encode_latency_ms=74.311 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30370689 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.csv new file mode 100644 index 0000000..fc67469 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.csv @@ -0,0 +1,121 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,19.0962,94.0650,0.0480,0.0000,0,0,0.0000,0,0.0000,0,1,0,141367,0 +1,19.2882,64.9927,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,107930,0 +2,18.2711,64.1725,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,128297,0 +3,16.8171,64.4643,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,131859,0 +4,18.4028,63.5661,0.0314,0.0000,0,0,0.0000,0,0.0000,0,0,0,159759,0 +5,16.7449,64.1866,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,172445,0 +6,17.8460,63.8738,0.0371,0.0000,0,0,0.0000,0,0.0000,0,0,0,221040,0 +7,17.0204,64.5374,0.0650,0.0000,0,0,0.0000,0,0.0000,0,0,0,267655,0 +8,16.6722,65.3949,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,302901,0 +9,16.4270,65.4903,0.0459,0.0000,0,0,0.0000,0,0.0000,0,0,0,247666,0 +10,16.7733,65.7363,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,248232,0 +11,17.0926,65.7175,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,247217,0 +12,17.7385,65.1893,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,238870,0 +13,17.9437,64.8330,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,303588,0 +14,17.2088,64.7362,0.0520,0.0000,0,0,0.0000,0,0.0000,0,0,0,287769,0 +15,18.0298,63.9560,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,286071,0 +16,17.6470,62.9095,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,185303,0 +17,17.7375,62.3854,0.0425,0.0000,0,0,0.0000,0,0.0000,0,0,0,210388,0 +18,18.2955,61.5886,0.0373,0.0000,0,0,0.0000,0,0.0000,0,0,0,263454,0 +19,18.1360,60.8363,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,275774,0 +20,18.5736,60.6243,0.0589,0.0000,0,0,0.0000,0,0.0000,0,0,0,333589,0 +21,18.3608,58.9861,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,302457,0 +22,17.3620,58.1987,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,252604,0 +23,17.0560,59.1654,0.0521,0.0000,0,0,0.0000,0,0.0000,0,0,0,323851,0 +24,17.4739,58.0268,0.0544,0.0000,0,0,0.0000,0,0.0000,0,0,0,242386,0 +25,16.9000,58.7762,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,324025,0 +26,17.1317,58.2490,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,250378,0 +27,17.6950,58.2769,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,335331,0 +28,17.5248,57.3993,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,252413,0 +29,18.5335,56.1330,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,277467,0 +30,17.2129,56.0811,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,281176,0 +31,17.0895,56.1094,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,284799,0 +32,16.8037,55.8515,0.0367,0.0000,0,0,0.0000,0,0.0000,0,0,0,177181,0 +33,17.7851,55.5165,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,202594,0 +34,17.0003,56.0445,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,236959,0 +35,17.7007,55.8195,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,279315,0 +36,17.4781,56.5078,0.0538,0.0000,0,0,0.0000,0,0.0000,0,0,0,326790,0 +37,17.1163,56.2163,0.0375,0.0000,0,0,0.0000,0,0.0000,0,0,0,293601,0 +38,16.8030,56.0688,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,242370,0 +39,16.4613,56.8551,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,257637,0 +40,17.6430,56.8146,0.0483,0.0000,0,0,0.0000,0,0.0000,0,0,0,309672,0 +41,17.5860,55.9004,0.0500,0.0000,0,0,0.0000,0,0.0000,0,0,0,243083,0 +42,17.7576,55.3857,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,262507,0 +43,18.1674,54.8419,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,328648,0 +44,18.5284,52.9253,0.0319,0.0000,0,0,0.0000,0,0.0000,0,0,0,251696,0 +45,18.5554,51.5867,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,274787,0 +46,18.0515,50.7330,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,275928,0 +47,17.6111,50.2123,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,281973,0 +48,17.9727,48.8804,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,188912,0 +49,18.0016,48.0469,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,210569,0 +50,39.4637,37.7941,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,244518,0 +51,17.5385,37.8654,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,287240,0 +52,18.5860,39.6676,0.0545,0.0000,0,0,0.0000,0,0.0000,0,0,0,336431,0 +53,18.0000,38.1621,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,242407,0 +54,18.2901,37.9663,0.0470,0.0000,0,0,0.0000,0,0.0000,0,0,0,269527,0 +55,23.8059,37.6779,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,262272,0 +56,19.1558,37.6243,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,261900,0 +57,17.7472,37.7834,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,262722,0 +58,18.2208,37.4684,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,267275,0 +59,29.5377,38.0191,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,273347,0 +60,19.5290,38.6256,0.1254,0.0000,0,0,0.0000,0,0.0000,0,1,0,553106,0 +61,17.4219,37.6944,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,275719,0 +62,17.2860,37.1791,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,206485,0 +63,17.5835,37.0705,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,177919,0 +64,17.2430,36.5490,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,129341,0 +65,16.9493,37.0654,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,167368,0 +66,17.0395,37.3267,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,173082,0 +67,17.1890,37.9550,0.0290,0.0000,0,0,0.0000,0,0.0000,0,0,0,268054,0 +68,17.3164,38.7240,0.0320,0.0000,0,0,0.0000,0,0.0000,0,0,0,304192,0 +69,17.4063,37.8321,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,215216,0 +70,17.5060,37.5845,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,235158,0 +71,17.2236,37.6234,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,231569,0 +72,17.7238,37.5055,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,285459,0 +73,17.6265,36.8918,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,216432,0 +74,17.5645,37.4541,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,294193,0 +75,17.5773,37.5197,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,282358,0 +76,17.7928,37.6307,0.0438,0.0000,0,0,0.0000,0,0.0000,0,0,0,278034,0 +77,16.9979,37.8010,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,284480,0 +78,16.7882,38.1593,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,288831,0 +79,17.7014,37.2682,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,236192,0 +80,17.7131,36.6412,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,205268,0 +81,17.6253,36.7830,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,213261,0 +82,17.6170,36.8843,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,199066,0 +83,18.4347,37.9428,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,312012,0 +84,17.5292,38.8325,0.0656,0.0000,0,0,0.0000,0,0.0000,0,0,0,345626,0 +85,17.6652,37.7112,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,250939,0 +86,17.8201,37.7032,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,272075,0 +87,17.0695,37.8304,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,266209,0 +88,17.8582,37.3211,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,266619,0 +89,17.6470,37.1799,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,267105,0 +90,17.3432,37.0230,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,275929,0 +91,17.6738,36.5108,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,279754,0 +92,17.7353,36.5400,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,274754,0 +93,16.7456,37.0520,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,287774,0 +94,17.9650,36.0013,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,234242,0 +95,17.4736,36.2302,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,246336,0 +96,16.5356,36.1887,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,147471,0 +97,16.6462,37.3476,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,217911,0 +98,16.7400,38.0363,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,246390,0 +99,16.4117,39.0119,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,287219,0 +100,16.4143,40.0364,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,264089,0 +101,16.7816,40.3366,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,253233,0 +102,16.3724,41.2630,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,264974,0 +103,16.7837,41.4115,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,262522,0 +104,16.7398,41.7680,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,253763,0 +105,16.4580,42.4268,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,260415,0 +106,16.6957,42.9243,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,267192,0 +107,16.6639,43.8247,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,272577,0 +108,16.5690,44.4318,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,266815,0 +109,16.7057,44.5696,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,223565,0 +110,17.1156,45.1771,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,294989,0 +111,16.9604,44.9190,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,232970,0 +112,16.5251,45.0926,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,159410,0 +113,17.0589,45.7650,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,223623,0 +114,16.7616,46.0898,0.0247,0.0000,0,0,0.0000,0,0.0000,0,0,0,196195,0 +115,17.5018,46.5971,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,308086,0 +116,17.2740,46.8248,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,271816,0 +117,17.4140,46.6454,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,262113,0 +118,17.5960,46.4193,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,270458,0 +119,17.7775,45.3341,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,215212,0 diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.txt new file mode 100644 index 0000000..046e5a9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=2 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=120 +frames_encoded=120 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.811 +avg_encode_latency_ms=47.842 +p95_encode_latency_ms=65.002 +max_encode_latency_ms=94.065 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=30463087 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.csv b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.csv new file mode 100644 index 0000000..946fc62 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.csv @@ -0,0 +1,16 @@ +profile,codec,resolution,bitrate_mbps,encoder_id,low_latency_rate_control,realtime,allow_temporal_compression,allow_frame_reordering,allow_open_gop,prioritize_speed,max_frame_delay_count,data_rate_limit_mbps,payload_format,frames_requested,frames_encoded,failed_frames,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log +auto_llrc_temporal_on,hevc,3200x1800,120,auto,on,on,on,off,off,unset,0,0,length-prefixed,120,120,0,38.214,71.169,93.709,8803397,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3200x1800_120mbps.txt +ave_no_llrc_reference,hevc,3200x1800,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,length-prefixed,120,120,0,16.941,22.444,69.330,30601115,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3200x1800_120mbps.txt +ave_no_llrc_speed,hevc,3200x1800,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,on,0,0,length-prefixed,120,120,0,16.253,16.613,55.650,30601115,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3200x1800_120mbps.txt +ave_no_llrc_datarate,hevc,3200x1800,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,120,length-prefixed,120,120,0,12.399,14.106,67.687,21077521,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3200x1800_120mbps.txt +ave_no_llrc_annexb,hevc,3200x1800,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,annex-b,120,120,0,16.833,22.777,69.574,30601275,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3200x1800_120mbps.txt +auto_llrc_temporal_on,hevc,3840x2160,120,auto,on,on,on,off,off,unset,0,0,length-prefixed,120,120,0,94.576,96.128,102.295,12351263,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_3840x2160_120mbps.txt +ave_no_llrc_reference,hevc,3840x2160,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,length-prefixed,120,120,0,23.441,43.386,82.502,30370689,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_3840x2160_120mbps.txt +ave_no_llrc_speed,hevc,3840x2160,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,on,0,0,length-prefixed,120,120,0,23.111,41.795,74.311,30370689,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_3840x2160_120mbps.txt +ave_no_llrc_datarate,hevc,3840x2160,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,120,length-prefixed,120,120,0,16.158,25.725,60.981,21018669,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_3840x2160_120mbps.txt +ave_no_llrc_annexb,hevc,3840x2160,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,annex-b,120,120,0,23.591,45.142,83.010,30370847,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_3840x2160_120mbps.txt +auto_llrc_temporal_on,hevc,5120x2880,120,auto,on,on,on,off,off,unset,0,0,length-prefixed,120,120,0,158.455,161.564,162.126,21915124,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/auto_llrc_temporal_on_5120x2880_120mbps.txt +ave_no_llrc_reference,hevc,5120x2880,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,length-prefixed,120,120,0,151.676,218.731,219.869,30463087,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_reference_5120x2880_120mbps.txt +ave_no_llrc_speed,hevc,5120x2880,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,on,0,0,length-prefixed,120,120,0,47.842,65.002,94.065,30463087,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_speed_5120x2880_120mbps.txt +ave_no_llrc_datarate,hevc,5120x2880,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,120,length-prefixed,120,120,0,318.266,356.824,357.267,21102610,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_datarate_5120x2880_120mbps.txt +ave_no_llrc_annexb,hevc,5120x2880,120,com.apple.videotoolbox.videoencoder.ave.hevc,off,on,on,off,off,unset,0,0,annex-b,120,120,0,133.066,205.473,219.030,30463245,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.csv,benchmarks/runs/2026-05-15_1056_vt_property_matrix/ave_no_llrc_annexb_5120x2880_120mbps.txt diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.md b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.md new file mode 100644 index 0000000..bb52478 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.md @@ -0,0 +1,43 @@ +# VideoToolbox Property Matrix + +- Duration per case: `2` seconds +- FPS target: `60` +- Codec: HEVC +- Forced encoder profile uses: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Output CSV: `summary.csv` +- Encoder list: `video_encoders.txt` + +## Purpose + +This matrix tests encoder properties before any iMac receiver dependency: + +- automatic low-latency rate control versus forced `ave.hevc` +- temporal compression on with frame reordering off +- closed GOP +- max frame delay count +- speed-priority hint +- DataRateLimits +- Annex-B payload extraction cost + +Use this to decide whether Plan A/B encode itself is viable before continuing +receiver or transport work. + +## Highlights + +| Profile | Resolution | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---:|---| +| auto low-latency RC | 3200x1800 | 38.214 | 71.169 | too high | +| `ave.hevc`, no LLRC, DataRateLimits | 3200x1800 | 12.399 | 14.106 | passes encode budget | +| auto low-latency RC | 3840x2160 | 94.576 | 96.128 | too high | +| `ave.hevc`, no LLRC, DataRateLimits | 3840x2160 | 16.158 | 25.725 | average passes, p95 high | +| `ave.hevc`, no LLRC, speed priority | 5120x2880 | 47.842 | 65.002 | too high | +| `ave.hevc`, no LLRC, DataRateLimits | 5120x2880 | 318.266 | 356.824 | unusable | + +## Decision + +- The automatic low-latency RC path is not acceptable on this MBP. +- Forced `ave.hevc` with low-latency RC disabled remains the right base path. +- DataRateLimits improved 3200x1800 and 3840x2160, but not 5120x2880. +- Annex-B conversion did not materially change encode timing, so it is safe to + keep as a receiver-facing payload option. +- Plan B 5K60 is still blocked at encode time. diff --git a/benchmarks/runs/2026-05-15_1056_vt_property_matrix/video_encoders.txt b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/video_encoders.txt new file mode 100644 index 0000000..0c45605 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1056_vt_property_matrix/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x15770be00>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.csv b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.csv new file mode 100644 index 0000000..6230596 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.8634,64.1248,0.0254,0.0000,0,0,0.0000,0,0.0000,0,1,0,63665,0 +1,7.1119,27.8942,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,71838,0 +2,7.2248,28.1776,0.0373,0.0000,0,0,0.0000,0,0.0000,0,0,0,148781,0 +3,6.9418,28.6887,0.0704,0.0000,0,0,0.0000,0,0.0000,0,0,0,251226,0 +4,7.0565,29.0443,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,163048,0 +5,7.1412,20.6397,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,145831,0 +6,7.0843,11.2935,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,195563,0 +7,7.1405,11.5036,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,227545,0 +8,7.3367,11.1024,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,203787,0 +9,7.3233,11.5705,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,215525,0 +10,7.4503,11.6699,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,221575,0 +11,7.6415,11.0383,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,221996,0 +12,7.8158,10.9456,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,222933,0 +13,7.7612,10.8712,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,189072,0 +14,8.0447,11.1034,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,197810,0 +15,7.5935,10.9717,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,202009,0 +16,7.4452,11.6525,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,180813,0 +17,7.6316,11.2430,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,130225,0 +18,7.8071,11.0838,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,170309,0 +19,7.7282,11.1994,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,205896,0 +20,7.6652,11.2993,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,240189,0 +21,7.6886,11.1014,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,184678,0 +22,7.3835,11.6246,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,198454,0 +23,7.7071,10.9975,0.0346,0.0000,0,0,0.0000,0,0.0000,0,0,0,196511,0 +24,7.8231,11.1906,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,188404,0 +25,7.6612,11.0466,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,148855,0 +26,7.6245,11.0017,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,158139,0 +27,7.7830,11.1387,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,161328,0 +28,7.5402,11.0123,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,160478,0 +29,7.4639,11.1780,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,165748,0 +30,7.4460,11.1781,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,166009,0 +31,7.6603,11.7670,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,169371,0 +32,7.1691,11.5098,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,146840,0 +33,7.7249,11.8042,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,105073,0 +34,7.3171,11.6171,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,176131,0 +35,7.2639,11.6026,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,205088,0 +36,7.2398,11.8776,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,237238,0 +37,7.0986,11.7140,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,179691,0 +38,7.0586,11.6945,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,193983,0 +39,7.3879,11.4371,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,191389,0 +40,7.3606,11.5403,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,137488,0 +41,7.2292,11.7959,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,152228,0 +42,7.6108,11.4006,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,158002,0 +43,7.5089,11.5214,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,159834,0 +44,7.6373,11.1490,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,209275,0 +45,7.7476,11.2969,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,202806,0 +46,7.6029,11.1826,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,157126,0 +47,7.2224,11.7224,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,162628,0 +48,7.3505,11.7011,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,144411,0 +49,7.3202,11.4506,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,109288,0 +50,7.6332,11.1508,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,141500,0 +51,7.7522,11.2135,0.0252,0.0000,0,0,0.0000,0,0.0000,0,0,0,219816,0 +52,7.7315,12.0356,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,242054,0 +53,7.9125,11.4027,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,187182,0 +54,7.4397,11.7664,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,198594,0 +55,7.4616,11.5244,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,151109,0 +56,7.3040,11.4223,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,149429,0 +57,7.3147,11.5343,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,157968,0 +58,7.2191,11.2294,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,161943,0 +59,7.1235,11.5720,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,163400,0 +60,7.4722,11.4661,0.0774,0.0000,0,0,0.0000,0,0.0000,0,1,0,356689,0 +61,6.7520,11.2907,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,142832,0 +62,6.7270,11.3478,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,132670,0 +63,6.6443,11.4482,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,134694,0 +64,7.5079,11.0910,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,114788,0 +65,7.2862,10.8897,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,110235,0 +66,7.3546,10.9072,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,145468,0 +67,6.9044,11.2155,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,217115,0 +68,6.9302,11.8622,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,236415,0 +69,8.3667,11.1645,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,180392,0 +70,9.2991,11.6688,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,194240,0 +71,6.8607,11.4443,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,193580,0 +72,6.7207,10.8219,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,182286,0 +73,6.9255,10.9270,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,193250,0 +74,7.0983,10.8979,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,197788,0 +75,7.3695,11.6570,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,153039,0 +76,7.2018,10.8613,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,157778,0 +77,7.5819,11.5643,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,161651,0 +78,7.3438,11.0787,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,165536,0 +79,7.4216,10.9273,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,165233,0 +80,7.3815,10.9411,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,147028,0 +81,7.4013,11.2290,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,109577,0 +82,7.3355,11.0244,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,140320,0 +83,7.3477,10.9679,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,218949,0 +84,7.3108,11.1035,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,243601,0 +85,7.3859,11.1988,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,186323,0 +86,7.4000,10.9840,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,200890,0 +87,7.3916,10.9392,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,151869,0 +88,7.2967,11.1212,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,149442,0 +89,7.2317,10.9606,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,157704,0 +90,7.0082,10.8999,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,162013,0 +91,6.9633,11.2317,0.0709,0.0000,0,0,0.0000,0,0.0000,0,0,0,163621,0 +92,7.1368,11.0838,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,162752,0 +93,7.3685,10.7784,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,216980,0 +94,7.1945,10.9169,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,160318,0 +95,7.2060,11.0120,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,168718,0 +96,7.3500,10.9450,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,145261,0 +97,7.4412,11.2090,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,105180,0 +98,7.3841,10.9633,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,137751,0 +99,7.5924,10.8242,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,214073,0 +100,7.6447,11.0486,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,240195,0 +101,7.5085,10.9462,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,217366,0 +102,7.4910,10.9172,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,187487,0 +103,7.7143,10.8353,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,190843,0 +104,7.5672,10.7152,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,135723,0 +105,7.3362,10.9053,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,152622,0 +106,7.1973,10.9326,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,208520,0 +107,7.5183,10.6605,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,200929,0 +108,7.5411,10.9787,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,151947,0 +109,7.4647,10.7914,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,161637,0 +110,7.3801,10.8277,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,164817,0 +111,7.2104,10.8610,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,166317,0 +112,7.4079,10.8256,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,146673,0 +113,7.1837,10.8980,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,110159,0 +114,7.6553,10.9423,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,142065,0 +115,7.3589,10.8864,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,219668,0 +116,7.6132,11.0794,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,244165,0 +117,7.2166,10.6837,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,188269,0 +118,7.7323,10.6249,0.0347,0.0000,0,0,0.0000,0,0.0000,0,0,0,200339,0 +119,7.2442,10.7560,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,200606,0 +120,7.3978,10.6146,0.0351,0.0000,0,0,0.0000,0,0.0000,0,1,0,394097,0 +121,7.4599,11.3608,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,167350,0 +122,7.4502,11.2050,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,123575,0 +123,7.2285,10.9488,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,130727,0 +124,7.0959,10.9950,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,131618,0 +125,7.2572,11.0823,0.0261,0.0000,0,0,0.0000,0,0.0000,0,0,0,174788,0 +126,7.2230,11.0118,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,170056,0 +127,7.4279,11.4071,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,174278,0 +128,7.4315,11.1043,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,144788,0 +129,7.2722,10.8277,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,110065,0 +130,7.5272,10.9400,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,141470,0 +131,7.4517,11.0019,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,219346,0 +132,7.5532,11.0063,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,243262,0 +133,7.2919,10.9013,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,183710,0 +134,7.4224,10.7846,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,195797,0 +135,7.6681,10.8312,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,148114,0 +136,7.3108,10.8419,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,145446,0 +137,7.3930,10.8008,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,157937,0 +138,7.4046,10.8213,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,162002,0 +139,7.5438,10.8259,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,164077,0 +140,7.5295,10.8886,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,163112,0 +141,7.4828,10.7273,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,217340,0 +142,7.6311,10.8778,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,160986,0 +143,7.4218,10.7943,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,167663,0 +144,7.4110,10.9613,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,146832,0 +145,7.5273,10.9743,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,112221,0 +146,7.6864,10.8648,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,144844,0 +147,7.5291,10.7670,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,220918,0 +148,7.5282,11.1675,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,245698,0 +149,7.4082,10.9403,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,188914,0 +150,7.6408,10.9952,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,202650,0 +151,7.5708,10.9369,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,154393,0 +152,7.4292,11.1579,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,154148,0 +153,7.2058,10.9169,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,161095,0 +154,7.7692,11.4148,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,165430,0 +155,7.3216,11.0633,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,167084,0 +156,7.2535,10.8683,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,165359,0 +157,7.5638,10.8919,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,170321,0 +158,7.1965,10.9703,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,170299,0 +159,7.3146,10.9023,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,174240,0 +160,7.6353,10.8686,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,149765,0 +161,7.3565,11.0153,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,109617,0 +162,7.1890,10.8230,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,141465,0 +163,7.3580,10.8305,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,219052,0 +164,7.4656,11.1565,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,236550,0 +165,7.3532,10.8050,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,225285,0 +166,7.3184,10.8990,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,187044,0 +167,7.3936,10.9467,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,197153,0 +168,7.4576,11.0951,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,137030,0 +169,7.0082,11.5867,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,157970,0 +170,7.2990,10.9137,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,161291,0 +171,7.3527,10.7795,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,162192,0 +172,7.2334,10.8180,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,211888,0 +173,7.3555,10.8291,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,205861,0 +174,7.1738,10.8965,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,161438,0 +175,7.3250,10.8654,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,164712,0 +176,7.2824,10.9678,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,147480,0 +177,7.5731,10.6574,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,112316,0 +178,7.7693,12.2860,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,145599,0 +179,7.4653,11.0537,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,223106,0 +180,7.4692,11.1733,0.0920,0.0000,0,0,0.0000,0,0.0000,0,1,0,459206,0 +181,7.2802,11.0002,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,194274,0 +182,7.4802,10.8776,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,145697,0 +183,7.2397,10.7894,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,156636,0 +184,7.8201,11.0630,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,118158,0 +185,7.4390,10.8582,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,168433,0 +186,7.5350,10.9648,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,167367,0 +187,7.4859,10.8277,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,168425,0 +188,7.3607,11.0029,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,165093,0 +189,7.4872,11.3392,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,169603,0 +190,7.4776,11.7767,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,172567,0 +191,7.2358,11.5135,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,173559,0 +192,7.1143,11.3100,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,146416,0 +193,7.1466,11.6360,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,110257,0 +194,7.1443,11.3857,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,141635,0 +195,7.4921,11.4315,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,216861,0 +196,7.1963,11.4023,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,238908,0 +197,7.0595,11.2190,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,185787,0 +198,6.9640,11.2780,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,196169,0 +199,7.0542,11.3633,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,198009,0 +200,6.8864,11.2978,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,137122,0 +201,7.2713,11.4443,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,158694,0 +202,7.3280,11.5422,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,162139,0 +203,7.0782,11.3780,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,163135,0 +204,7.0925,11.2740,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,162879,0 +205,7.3070,11.4180,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,164160,0 +206,7.1734,11.3076,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,168569,0 +207,7.1646,11.3307,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,167348,0 +208,7.0374,11.3270,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,148024,0 +209,7.0713,11.2366,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,111876,0 +210,7.0075,11.3021,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,143880,0 +211,7.2079,11.5706,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,221724,0 +212,7.4688,11.4259,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,241801,0 +213,7.0568,11.1978,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,192078,0 +214,7.0359,11.8562,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,198446,0 +215,7.2920,11.3935,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,157721,0 +216,7.0207,11.3465,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,151447,0 +217,6.9450,11.5975,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,164045,0 +218,7.1265,11.5897,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,165087,0 +219,7.2297,11.1181,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,165637,0 +220,7.1516,11.2522,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,164774,0 +221,7.2590,10.9396,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,167190,0 +222,7.2641,11.0163,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,170359,0 +223,7.3286,10.9036,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,170996,0 +224,7.2098,10.7948,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,148194,0 +225,7.2672,10.9035,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,107451,0 +226,7.3659,11.7050,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,146951,0 +227,7.8450,11.1368,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,214799,0 +228,7.3064,11.1447,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,238951,0 +229,7.2496,11.6786,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,223627,0 +230,7.5594,10.8347,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,186330,0 +231,7.6542,10.9818,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,195122,0 +232,7.5468,10.9881,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,137946,0 +233,7.5340,10.9056,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,154047,0 +234,7.3584,10.8610,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,209516,0 +235,7.4240,10.8244,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,203627,0 +236,7.5223,11.0468,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,198665,0 +237,7.3120,10.9142,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,156217,0 +238,7.5367,10.9727,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,164232,0 +239,7.3101,10.8376,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,167163,0 +240,7.4994,10.6676,0.0693,0.0000,0,0,0.0000,0,0.0000,0,1,0,354807,0 +241,7.4635,10.9210,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,105788,0 +242,7.4310,11.2352,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,102501,0 +243,7.1197,10.8075,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,124759,0 +244,7.1690,11.1299,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,215578,0 +245,7.0542,10.8848,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,154248,0 +246,7.1360,11.3447,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,158840,0 +247,7.0093,10.8781,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,161422,0 +248,7.0931,11.1120,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,152527,0 +249,7.1230,11.1127,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,157929,0 +250,7.3377,11.0683,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,212121,0 +251,7.3400,11.2004,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,204444,0 +252,7.1519,11.0644,0.0342,0.0000,0,0,0.0000,0,0.0000,0,0,0,199777,0 +253,7.3321,11.1385,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,157678,0 +254,7.4576,11.5661,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,159901,0 +255,7.4815,11.1529,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,169432,0 +256,7.2067,10.9016,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,151076,0 +257,7.3367,11.4045,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,130424,0 +258,7.2094,10.9933,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,185706,0 +259,7.1874,11.6135,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,160037,0 +260,7.8890,11.2790,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,247974,0 +261,7.3203,10.8797,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,179293,0 +262,7.4628,10.9917,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,195376,0 +263,7.5804,11.1133,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,192434,0 +264,7.3408,11.5756,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,181145,0 +265,7.7626,10.9665,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,192386,0 +266,7.6427,10.9781,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,196296,0 +267,7.5305,10.8934,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,153000,0 +268,7.1502,11.1075,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,157693,0 +269,6.8833,11.5029,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,162889,0 +270,7.3337,11.1094,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,164628,0 +271,7.9877,10.9225,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,165977,0 +272,7.2238,10.8145,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,146465,0 +273,7.4086,11.1504,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,110639,0 +274,7.2257,11.5020,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,141422,0 +275,7.4675,10.8895,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,218222,0 +276,7.5300,11.1386,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,243969,0 +277,7.5665,11.2412,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,187521,0 +278,8.2229,10.9212,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,200309,0 +279,7.1992,10.9725,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,152359,0 +280,7.1981,11.5787,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,150459,0 +281,8.0871,11.3328,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,157835,0 +282,7.0393,11.6204,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,162585,0 +283,7.4364,11.5342,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,163705,0 +284,7.2714,10.9642,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,212576,0 +285,7.5345,11.0493,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,207495,0 +286,7.2575,11.0723,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,158660,0 +287,7.2159,10.9705,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,168784,0 +288,7.2987,11.6225,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,147085,0 +289,7.1163,11.6027,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,106618,0 +290,7.1120,11.4089,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,136890,0 +291,7.8182,11.0877,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,214663,0 +292,7.1524,11.0884,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,238161,0 +293,7.2610,10.9713,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,216622,0 +294,7.2100,11.1263,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,187516,0 +295,7.3880,11.0101,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,191215,0 +296,7.2691,10.9036,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,136189,0 +297,7.2402,10.8920,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,152756,0 +298,7.5036,11.4256,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,209342,0 +299,7.2710,10.9951,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,201075,0 diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.txt b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.txt new file mode 100644 index 0000000..072db2d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.379 +avg_encode_latency_ms=11.583 +p95_encode_latency_ms=11.766 +max_encode_latency_ms=64.125 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=52564637 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3200x1800_datarate.csv diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.csv b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.csv new file mode 100644 index 0000000..3eac941 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.5700,62.3526,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,80375,0 +1,10.2496,32.7890,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,69273,0 +2,9.6999,33.2135,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,112403,0 +3,9.6400,33.8723,0.0405,0.0000,0,0,0.0000,0,0.0000,0,0,0,205525,0 +4,9.8443,34.2242,0.0316,0.0000,0,0,0.0000,0,0.0000,0,0,0,220973,0 +5,9.5309,34.2550,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,152284,0 +6,9.8200,25.9165,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,195064,0 +7,9.4500,20.3814,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,179649,0 +8,9.7555,14.6621,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,158778,0 +9,9.5180,14.5046,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,171874,0 +10,9.7614,14.6890,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,224192,0 +11,9.4700,14.6001,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,216388,0 +12,9.7475,14.7820,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,212904,0 +13,9.5620,14.8038,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,166322,0 +14,9.7819,14.6213,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,230166,0 +15,9.9256,14.8630,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,220415,0 +16,9.6064,14.9205,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,113641,0 +17,9.5587,14.8764,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,159261,0 +18,9.6438,15.8214,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,200308,0 +19,9.7300,14.6620,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,235305,0 +20,9.6540,15.3428,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,214370,0 +21,9.8012,14.6935,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,208357,0 +22,9.8582,14.9188,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,166281,0 +23,9.7928,15.0263,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,170749,0 +24,9.8045,14.8512,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,168961,0 +25,9.6640,14.9675,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,226315,0 +26,9.7557,14.6331,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,166752,0 +27,9.9167,14.6892,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,180905,0 +28,9.8795,15.2636,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,225861,0 +29,9.6250,15.0493,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,177537,0 +30,10.3205,14.9348,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,185200,0 +31,10.1463,14.6826,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,185680,0 +32,9.6664,14.8337,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,122898,0 +33,9.6370,14.9965,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,132475,0 +34,9.3712,15.0025,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,164607,0 +35,9.4625,14.5787,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,241806,0 +36,9.5364,15.1552,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,211301,0 +37,9.9757,15.4432,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,154607,0 +38,9.7951,15.9917,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,167050,0 +39,9.9347,15.0194,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,168603,0 +40,9.9299,14.9026,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,163114,0 +41,9.8572,14.7965,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,170272,0 +42,9.6427,14.6939,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,227364,0 +43,9.7158,14.7448,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,168914,0 +44,9.6107,15.0968,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,173656,0 +45,9.5895,14.5173,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,178830,0 +46,9.6257,14.6010,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,186599,0 +47,9.7279,14.8640,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,183053,0 +48,9.5496,14.9761,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,99665,0 +49,10.0130,14.8417,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,142113,0 +50,9.7402,14.9677,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,168638,0 +51,9.7304,15.3024,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,183765,0 +52,9.7752,14.9336,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,229919,0 +53,9.5433,14.8805,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,159830,0 +54,9.4350,14.8647,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,142449,0 +55,9.5802,14.5661,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,179752,0 +56,9.4087,15.0658,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,174019,0 +57,9.5271,14.8050,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,172650,0 +58,9.3625,14.7349,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,177474,0 +59,9.4185,14.9550,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,182818,0 +60,9.3931,14.5714,0.0685,0.0000,0,0,0.0000,0,0.0000,0,1,0,437765,0 +61,9.6221,14.5887,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,173099,0 +62,9.4882,14.9436,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,140169,0 +63,9.8087,14.9475,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,111278,0 +64,9.3926,14.9341,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,90616,0 +65,9.5522,14.7773,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,118473,0 +66,9.4235,14.6963,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,147523,0 +67,9.5079,14.7170,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,202958,0 +68,9.7085,15.3417,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,185496,0 +69,9.6858,15.7754,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,176502,0 +70,9.9127,15.5437,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,180015,0 +71,10.0177,15.3807,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,142002,0 +72,9.7202,15.1883,0.0312,0.0000,0,0,0.0000,0,0.0000,0,0,0,174556,0 +73,9.9563,15.4818,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,177413,0 +74,10.0785,15.5247,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,185214,0 +75,10.0923,15.6377,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,182679,0 +76,10.1278,15.4443,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,182716,0 +77,10.1381,15.6216,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,186792,0 +78,10.2087,15.5651,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,189324,0 +79,10.3324,15.6625,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,187924,0 +80,10.4208,15.8135,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,100360,0 +81,9.8297,15.4455,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,143529,0 +82,9.8565,14.7638,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,172277,0 +83,9.8646,15.4089,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,185687,0 +84,9.6139,15.8345,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,232893,0 +85,10.0687,15.1238,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,162436,0 +86,10.1692,15.6592,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,145129,0 +87,9.8008,15.1460,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,182227,0 +88,9.9733,15.6382,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,174804,0 +89,10.0826,15.5122,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,178493,0 +90,10.2212,15.0860,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,180254,0 +91,10.6367,15.1864,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,183410,0 +92,10.1982,14.6798,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,180599,0 +93,10.0901,14.9615,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,187365,0 +94,9.8500,14.8692,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,154460,0 +95,10.2240,15.6705,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,195480,0 +96,10.0698,15.3269,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,100336,0 +97,10.1949,15.4035,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,142249,0 +98,9.8782,16.0605,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,166808,0 +99,13.5345,15.1602,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,180704,0 +100,10.5570,15.0579,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,226169,0 +101,9.9077,14.7099,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,154423,0 +102,10.0550,14.9525,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,173283,0 +103,9.6718,14.8064,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,167329,0 +104,9.9043,14.9405,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,164926,0 +105,9.7767,15.6100,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,170203,0 +106,9.9255,14.7173,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,176533,0 +107,9.8138,14.8165,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,179978,0 +108,9.8135,14.6653,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,177096,0 +109,9.7144,14.7127,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,184948,0 +110,9.7686,14.8784,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,185952,0 +111,9.7217,14.9907,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,186887,0 +112,10.1607,15.6426,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,102821,0 +113,10.4150,15.2151,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,143523,0 +114,10.0879,15.1794,0.0375,0.0000,0,0,0.0000,0,0.0000,0,0,0,171386,0 +115,9.8538,14.9147,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,184704,0 +116,10.0380,15.1187,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,231056,0 +117,9.8428,14.7629,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,160305,0 +118,10.0242,15.0070,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,144091,0 +119,10.1540,15.0653,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,180733,0 +120,10.1229,15.5274,0.0583,0.0000,0,0,0.0000,0,0.0000,0,1,0,424886,0 +121,10.0116,15.1825,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,164752,0 +122,9.8512,14.8770,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,137278,0 +123,9.8585,15.1690,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,136780,0 +124,9.8726,14.7417,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,135133,0 +125,9.8152,14.6820,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,171018,0 +126,9.5998,14.9470,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,169655,0 +127,9.8295,15.6299,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,171418,0 +128,10.4437,15.3482,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,137935,0 +129,10.6944,15.3368,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,140144,0 +130,10.5216,15.2477,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,176397,0 +131,10.1747,15.3479,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,184861,0 +132,9.5439,16.3610,0.0410,0.0000,0,0,0.0000,0,0.0000,0,0,0,237899,0 +133,9.6244,15.8702,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,161996,0 +134,9.6073,14.8733,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,178563,0 +135,10.4850,14.9156,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,172714,0 +136,10.4060,14.8508,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,170704,0 +137,10.3780,14.7115,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,175257,0 +138,10.4920,14.8745,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,180443,0 +139,10.3742,14.8620,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,185089,0 +140,10.2151,14.8262,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,181878,0 +141,10.3020,14.8214,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,186884,0 +142,9.8666,14.9855,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,189348,0 +143,9.4377,14.8914,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,190537,0 +144,9.7873,14.7570,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,102194,0 +145,9.9575,14.6632,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,145690,0 +146,10.0405,14.6548,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,173627,0 +147,9.5205,14.7672,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,190681,0 +148,9.7848,15.1124,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,234871,0 +149,9.3018,14.7889,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,132184,0 +150,9.7881,14.7715,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,187416,0 +151,9.6287,14.7105,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,174652,0 +152,9.4684,14.5288,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,176303,0 +153,9.9353,14.8254,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,178356,0 +154,9.8803,14.6232,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,186469,0 +155,9.7065,14.8003,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,188140,0 +156,9.5487,15.7136,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,148636,0 +157,10.0206,14.7826,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,197901,0 +158,9.7227,14.6342,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,156235,0 +159,9.8085,14.5677,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,200164,0 +160,9.7464,14.6629,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,132650,0 +161,9.4612,14.6143,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,116906,0 +162,9.5606,14.6782,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,178987,0 +163,10.0410,14.9196,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,183681,0 +164,9.3533,15.0597,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,231781,0 +165,9.8794,14.8155,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,125068,0 +166,9.8410,14.7098,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,185531,0 +167,9.9812,14.7406,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,171010,0 +168,9.6112,14.4835,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,171941,0 +169,9.8000,15.3563,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,175824,0 +170,10.1669,15.6514,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,181683,0 +171,10.0956,14.6383,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,185346,0 +172,9.6264,14.7302,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,182690,0 +173,9.9379,14.5495,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,188203,0 +174,9.7420,14.5817,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,155084,0 +175,9.7528,14.7250,0.0314,0.0000,0,0,0.0000,0,0.0000,0,0,0,199128,0 +176,9.7398,14.9400,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,130730,0 +177,9.8893,14.9403,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,146249,0 +178,9.7052,14.9050,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,174656,0 +179,9.5297,14.7048,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,150516,0 +180,9.7420,15.1534,0.0398,0.0000,0,0,0.0000,0,0.0000,0,1,0,434232,0 +181,9.6820,14.7196,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,164578,0 +182,9.6222,15.0056,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,140296,0 +183,9.6838,14.7724,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,132087,0 +184,9.8681,14.6899,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,125956,0 +185,9.8674,14.8943,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,166388,0 +186,9.5910,14.7333,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,166610,0 +187,9.3988,14.7604,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,172340,0 +188,9.8373,14.7202,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,205194,0 +189,9.4396,14.8747,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,164708,0 +190,9.5717,14.6175,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,170678,0 +191,9.3458,14.6294,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,172364,0 +192,9.4770,14.6243,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,138688,0 +193,9.4535,14.6927,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,143101,0 +194,9.2772,14.6844,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,178181,0 +195,9.5334,14.5985,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,189010,0 +196,9.3257,14.8997,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,180014,0 +197,9.5913,14.8861,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,174028,0 +198,9.4934,14.7576,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,182163,0 +199,9.6426,14.7933,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,179530,0 +200,9.5004,14.7308,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,169286,0 +201,9.4268,14.6755,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,181761,0 +202,9.6566,14.8553,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,182139,0 +203,9.5408,14.6970,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,187103,0 +204,9.8140,14.5194,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,183476,0 +205,9.2946,14.7013,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,153642,0 +206,9.4872,14.8936,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,199572,0 +207,9.4985,14.6358,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,157293,0 +208,9.2416,14.6793,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,176649,0 +209,9.4209,14.7210,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,112061,0 +210,9.4098,14.9696,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,183641,0 +211,9.2640,14.7388,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,146556,0 +212,9.5035,14.9303,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,246773,0 +213,9.4057,14.7417,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,162893,0 +214,9.6395,14.6345,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,149630,0 +215,9.8481,14.7223,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,150167,0 +216,9.4165,14.5687,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,185994,0 +217,9.4959,14.6003,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,182239,0 +218,9.4449,14.6871,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,185666,0 +219,9.3738,14.6827,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,152905,0 +220,9.5148,14.7033,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,192324,0 +221,9.5456,15.1960,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,191146,0 +222,9.5129,14.9025,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,158518,0 +223,9.2939,14.8401,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,164942,0 +224,9.7062,14.6664,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,137719,0 +225,9.3370,14.5769,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,138952,0 +226,9.7077,14.7988,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,210870,0 +227,9.4074,14.7241,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,136862,0 +228,9.3802,15.1940,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,235851,0 +229,9.4607,14.6502,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,152473,0 +230,9.4865,14.6914,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,178229,0 +231,9.5932,14.7564,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,168403,0 +232,9.3202,14.5902,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,167946,0 +233,9.4249,14.7616,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,175577,0 +234,9.3295,14.8105,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,177132,0 +235,9.4648,14.5540,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,184348,0 +236,9.5319,15.1014,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,179561,0 +237,9.3718,14.8910,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,185782,0 +238,9.3575,14.7214,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,187481,0 +239,9.4124,14.6702,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,187999,0 +240,9.7740,14.6545,0.0365,0.0000,0,0,0.0000,0,0.0000,0,1,0,436770,0 +241,9.5545,14.6401,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,125909,0 +242,9.5253,14.8995,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,146552,0 +243,9.5002,14.9497,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,118641,0 +244,9.7375,15.9411,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,160950,0 +245,9.7768,14.7328,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,147591,0 +246,9.8852,14.8100,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,205784,0 +247,9.7583,14.8222,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,153494,0 +248,10.0158,14.7425,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,156779,0 +249,9.4802,14.8592,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,159076,0 +250,9.5649,14.7494,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,200905,0 +251,9.7363,14.8737,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,157711,0 +252,9.4608,14.9599,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,198731,0 +253,9.4789,14.9855,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,154874,0 +254,9.6354,14.8232,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,203714,0 +255,9.7852,14.8332,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,159416,0 +256,9.4792,14.8819,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,179302,0 +257,9.4913,14.8050,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,103186,0 +258,9.5504,14.6382,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,141646,0 +259,9.4877,14.6991,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,187079,0 +260,9.5031,15.2712,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,233103,0 +261,9.4346,14.8640,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,154720,0 +262,9.4525,15.7272,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,138914,0 +263,9.6354,14.8099,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,176754,0 +264,9.4227,14.6055,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,164357,0 +265,9.6962,14.8895,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,175922,0 +266,9.6197,14.8462,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,173098,0 +267,9.8291,14.7528,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,181405,0 +268,9.6276,14.7045,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,176224,0 +269,9.5572,14.7253,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,183531,0 +270,9.6660,14.7654,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,186188,0 +271,9.4635,14.7840,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,184920,0 +272,9.5702,14.6276,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,99455,0 +273,9.5541,14.6945,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,143021,0 +274,9.6897,14.8438,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,169229,0 +275,9.6453,14.8110,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,183655,0 +276,9.6952,15.9653,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,230077,0 +277,9.8128,14.7127,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,160372,0 +278,9.5540,14.7547,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,177646,0 +279,9.6436,14.6508,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,137390,0 +280,9.6269,14.6595,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,182718,0 +281,9.5477,14.6784,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,171547,0 +282,9.5735,14.6940,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,181835,0 +283,9.4396,14.7204,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,181087,0 +284,9.5307,14.7970,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,179121,0 +285,9.6027,14.8108,0.0420,0.0000,0,0,0.0000,0,0.0000,0,0,0,185280,0 +286,9.6683,14.8416,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,186537,0 +287,9.6440,14.7484,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,188484,0 +288,9.5470,14.6828,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,100841,0 +289,9.5497,14.7867,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,139293,0 +290,9.7941,15.0902,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,165281,0 +291,9.8150,14.6822,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,178580,0 +292,9.3630,15.2385,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,223881,0 +293,9.5820,14.6360,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,152090,0 +294,9.4038,14.9913,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,171500,0 +295,9.4380,14.7319,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,166614,0 +296,9.3392,15.0482,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,165166,0 +297,9.7149,15.8304,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,169046,0 +298,9.7287,14.8396,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,226831,0 +299,9.8432,15.0164,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,167384,0 diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.txt b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.txt new file mode 100644 index 0000000..db4c215 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.746 +avg_encode_latency_ms=15.457 +p95_encode_latency_ms=15.831 +max_encode_latency_ms=62.353 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=52474335 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/3840x2160_datarate.csv diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.csv b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.csv new file mode 100644 index 0000000..49cabb4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.0710,76.5608,0.0225,0.0000,0,0,0.0000,0,0.0000,0,1,0,82583,0 +1,12.5550,33.5134,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,70046,0 +2,11.1560,33.7696,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,113930,0 +3,11.0761,34.1565,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,203158,0 +4,11.0686,34.4361,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,219265,0 +5,10.7967,35.0855,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,153207,0 +6,10.6348,35.9129,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,193674,0 +7,10.8335,36.5749,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,183480,0 +8,10.7539,37.5754,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,154470,0 +9,10.9636,33.2478,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,215324,0 +10,10.6945,28.1899,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,205251,0 +11,10.6623,23.3180,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,204683,0 +12,10.5913,17.9050,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,202372,0 +13,10.6490,16.3128,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,205733,0 +14,10.7296,16.2922,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,209896,0 +15,10.5021,16.4518,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,205553,0 +16,10.4846,16.4510,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,177684,0 +17,10.7671,16.4751,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,144447,0 +18,10.6079,16.4518,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,193410,0 +19,10.5656,16.3001,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,201859,0 +20,10.8100,16.7360,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,261178,0 +21,10.5521,16.4318,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,182358,0 +22,10.8850,16.3597,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,158762,0 +23,10.5072,16.4619,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,208719,0 +24,10.7033,16.6322,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,196462,0 +25,10.9642,16.1772,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,158861,0 +26,10.4336,16.3531,0.0375,0.0000,0,0,0.0000,0,0.0000,0,0,0,210171,0 +27,10.7017,16.2941,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,206591,0 +28,10.5896,16.2968,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,165011,0 +29,10.6352,16.3442,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,176637,0 +30,10.6022,16.2662,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,179551,0 +31,10.6067,16.2390,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,183691,0 +32,10.6380,16.4342,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,150267,0 +33,10.6449,16.3221,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,124003,0 +34,10.7528,16.4595,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,162861,0 +35,10.6146,16.7205,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,172462,0 +36,10.6055,16.8631,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,207667,0 +37,10.7817,16.4833,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,187424,0 +38,10.5654,16.4247,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,158900,0 +39,10.5527,16.4523,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,164972,0 +40,10.7682,16.5681,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,159181,0 +41,10.4970,16.4367,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,207128,0 +42,10.7325,16.7297,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,159236,0 +43,10.7089,16.6532,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,172283,0 +44,10.7620,16.5634,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,169579,0 +45,11.1299,16.8922,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,177282,0 +46,11.0165,16.8708,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,178846,0 +47,10.7630,16.7673,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,181542,0 +48,10.8177,16.6880,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,154523,0 +49,10.8706,16.5715,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,129031,0 +50,10.9820,16.8541,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,155367,0 +51,10.8769,16.4297,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,179849,0 +52,10.7595,16.8511,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,215346,0 +53,10.7148,16.2895,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,154705,0 +54,10.6387,16.3049,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,174849,0 +55,11.1567,16.2188,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,169799,0 +56,10.7030,16.2772,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,167787,0 +57,11.2285,16.5415,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,167742,0 +58,10.5754,16.5515,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,173076,0 +59,10.5320,16.3856,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,176751,0 +60,10.8911,16.3433,0.0403,0.0000,0,0,0.0000,0,0.0000,0,1,0,397192,0 +61,10.4725,16.3815,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,169625,0 +62,10.8791,16.7586,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,131772,0 +63,10.6172,16.3981,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,133410,0 +64,10.5063,16.3824,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,103787,0 +65,10.9996,16.6373,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,103688,0 +66,10.8757,16.7907,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,133398,0 +67,10.6668,16.7356,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,206553,0 +68,10.8097,16.8789,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,182187,0 +69,10.6368,16.7345,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,174951,0 +70,10.8422,16.5730,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,142481,0 +71,10.4600,16.2773,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,185728,0 +72,11.0508,16.5310,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,168032,0 +73,10.5663,16.4064,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,174484,0 +74,10.5078,16.4291,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,176618,0 +75,10.7577,16.3322,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,179085,0 +76,10.4405,16.1618,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,223885,0 +77,10.7304,16.2477,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,174660,0 +78,10.5517,16.1758,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,183890,0 +79,10.6372,16.2033,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,183838,0 +80,10.6181,16.2762,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,158513,0 +81,10.6329,16.4313,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,129690,0 +82,10.8286,16.4611,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,159241,0 +83,10.5775,16.2844,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,183932,0 +84,10.6353,17.0693,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,220541,0 +85,10.5578,16.7838,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,159457,0 +86,10.6519,16.7522,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,177800,0 +87,10.8308,16.3507,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,172816,0 +88,10.6743,16.4737,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,169784,0 +89,11.1252,16.4644,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,172716,0 +90,10.7418,16.4245,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,175709,0 +91,10.5719,16.2979,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,180690,0 +92,10.6275,16.2670,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,175716,0 +93,10.7360,16.3299,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,183838,0 +94,10.7339,16.2946,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,185881,0 +95,10.5872,16.3614,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,186272,0 +96,10.6357,16.2724,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,150832,0 +97,10.8294,16.2208,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,125679,0 +98,11.4548,16.4243,0.0298,0.0000,0,0,0.0000,0,0.0000,0,0,0,152073,0 +99,10.8858,16.5389,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,179621,0 +100,10.6640,16.7998,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,212771,0 +101,10.9008,16.5068,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,151001,0 +102,10.3342,16.0812,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,170844,0 +103,10.7699,16.3702,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,207526,0 +104,10.4340,16.2774,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,152194,0 +105,10.7565,16.4508,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,167972,0 +106,10.6250,16.2001,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,208871,0 +107,11.0216,16.4689,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,165427,0 +108,10.5969,16.4079,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,171503,0 +109,10.6087,16.0733,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,178722,0 +110,10.6354,16.5569,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,182462,0 +111,11.0014,16.5795,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,184502,0 +112,10.7767,16.5935,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,156986,0 +113,10.7398,16.5386,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,130598,0 +114,10.6968,16.4265,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,125835,0 +115,11.1061,16.4280,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,191235,0 +116,10.9529,16.8757,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,217786,0 +117,10.7277,16.5141,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,159090,0 +118,10.5381,16.5534,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,176002,0 +119,10.6477,16.2965,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,171766,0 +120,10.8680,16.1427,0.0333,0.0000,0,0,0.0000,0,0.0000,0,1,0,386242,0 +121,10.7467,16.6333,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,163298,0 +122,10.4432,16.3110,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,127963,0 +123,10.6122,16.3560,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,129786,0 +124,10.5510,16.3872,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,129343,0 +125,10.6389,16.2483,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,170498,0 +126,10.7415,16.4018,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,167608,0 +127,10.6465,16.5460,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,171103,0 +128,10.7177,16.3560,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,131108,0 +129,10.7031,16.5258,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,117385,0 +130,10.5945,16.2502,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,130261,0 +131,10.8216,16.8865,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,205343,0 +132,10.4083,16.7225,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,224962,0 +133,10.5930,16.4233,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,159593,0 +134,10.7191,16.4619,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,177529,0 +135,10.6836,16.5388,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,214676,0 +136,10.8760,16.3699,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,155974,0 +137,10.8136,16.3567,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,214928,0 +138,10.7888,16.3642,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,164138,0 +139,10.5503,16.5978,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,222329,0 +140,10.7513,16.4057,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,166455,0 +141,10.5207,16.2503,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,183885,0 +142,10.6475,16.4550,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,227664,0 +143,10.5107,16.2888,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,178312,0 +144,10.9163,16.6105,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,159669,0 +145,10.5933,16.5040,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,129399,0 +146,10.7818,16.2761,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,159656,0 +147,10.6237,16.2980,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,184015,0 +148,10.6200,16.5144,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,221192,0 +149,10.9509,16.4489,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,159639,0 +150,10.6265,16.3874,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,178563,0 +151,10.6045,16.2524,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,173218,0 +152,10.6858,16.3486,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,170799,0 +153,10.6336,16.3080,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,172194,0 +154,10.9025,16.2011,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,177002,0 +155,10.7230,17.0050,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,180364,0 +156,11.1899,16.9187,0.0321,0.0000,0,0,0.0000,0,0.0000,0,0,0,177580,0 +157,11.0816,17.9778,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,184634,0 +158,11.3035,17.1870,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,187186,0 +159,10.9842,17.0736,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,187416,0 +160,10.6077,16.6682,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,116248,0 +161,10.7797,16.3682,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,133595,0 +162,10.5422,16.4266,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,154958,0 +163,10.5531,16.5885,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,181302,0 +164,10.6131,16.7698,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,211846,0 +165,10.5085,16.6308,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,151203,0 +166,10.9243,16.3962,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,171254,0 +167,10.5504,16.5876,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,208813,0 +168,10.7879,16.5531,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,153521,0 +169,10.6540,16.3416,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,167595,0 +170,10.5605,16.3625,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,170307,0 +171,10.7283,16.4885,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,218372,0 +172,10.5142,16.3135,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,164159,0 +173,10.6705,16.3058,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,178412,0 +174,10.6318,16.3676,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,180319,0 +175,10.5732,16.3782,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,184247,0 +176,10.6803,16.4396,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,157928,0 +177,10.5073,16.5210,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,129244,0 +178,10.4667,16.5192,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,157503,0 +179,10.5638,16.5073,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,182607,0 +180,10.5992,16.8206,0.0337,0.0000,0,0,0.0000,0,0.0000,0,1,0,395241,0 +181,10.4757,16.1901,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,156996,0 +182,10.6986,16.5918,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,125820,0 +183,10.7960,16.3525,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,121542,0 +184,10.5360,16.9832,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,152400,0 +185,10.6881,16.2642,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,155506,0 +186,10.5577,16.4454,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,161752,0 +187,10.5917,16.2417,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,165195,0 +188,10.7147,16.3538,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,200211,0 +189,10.5437,16.2183,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,159207,0 +190,10.5197,16.3730,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,204439,0 +191,10.6552,16.1520,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,158352,0 +192,10.6318,16.5019,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,165261,0 +193,10.5591,16.4710,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,127508,0 +194,10.7647,16.2766,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,158910,0 +195,10.4370,16.5353,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,183882,0 +196,10.6161,16.7427,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,219270,0 +197,10.5126,16.4351,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,196914,0 +198,10.6982,16.2563,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,163490,0 +199,10.3884,16.3452,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,171462,0 +200,10.6027,16.3358,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,203203,0 +201,10.6723,16.3251,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,160390,0 +202,10.6559,16.3539,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,217116,0 +203,10.5635,16.4614,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,165603,0 +204,10.6333,16.3430,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,176251,0 +205,10.4404,16.4026,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,178183,0 +206,10.6332,16.2261,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,183943,0 +207,10.6228,16.2797,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,185171,0 +208,10.7012,16.3789,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,156149,0 +209,10.8477,16.4124,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,131612,0 +210,10.4100,16.3894,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,157138,0 +211,10.5398,16.3742,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,183687,0 +212,10.5331,16.7396,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,219311,0 +213,10.5560,16.4197,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,157780,0 +214,10.6643,16.2117,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,176761,0 +215,10.7700,16.4477,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,171102,0 +216,10.6782,16.6215,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,168884,0 +217,10.7165,16.4310,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,171423,0 +218,10.5281,16.2701,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,175694,0 +219,10.5925,16.3210,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,179066,0 +220,10.5858,16.3118,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,176602,0 +221,10.6753,16.4674,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,183476,0 +222,10.7521,16.3300,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,184890,0 +223,10.7864,16.3387,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,186164,0 +224,10.5924,16.4370,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,150469,0 +225,10.7915,16.3807,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,121816,0 +226,10.7256,16.2397,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,162361,0 +227,10.6437,16.3666,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,171759,0 +228,10.7296,16.7097,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,208503,0 +229,10.6369,16.3762,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,192414,0 +230,10.7975,16.4022,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,155201,0 +231,10.6902,16.5065,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,166891,0 +232,10.7165,16.3851,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,160490,0 +233,10.6829,16.3911,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,206525,0 +234,10.4404,16.3734,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,160590,0 +235,10.7180,16.2663,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,172694,0 +236,10.7052,16.2427,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,211073,0 +237,10.4364,16.1565,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,167858,0 +238,10.4836,16.5210,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,179743,0 +239,10.7780,16.5517,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,178478,0 +240,11.0973,16.1676,0.0404,0.0000,0,0,0.0000,0,0.0000,0,1,0,389901,0 +241,10.7397,16.5492,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,104333,0 +242,10.9552,16.8272,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,141084,0 +243,11.1483,16.8993,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,164099,0 +244,11.6661,16.5432,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,186597,0 +245,10.7280,16.3173,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,106108,0 +246,10.6007,16.3878,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,160558,0 +247,10.6343,16.3331,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,157021,0 +248,10.7648,16.2954,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,152714,0 +249,10.8292,16.3750,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,152863,0 +250,10.7007,16.4047,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,198407,0 +251,10.7570,16.3471,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,187382,0 +252,10.8202,16.4891,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,146266,0 +253,10.7658,16.5727,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,196054,0 +254,10.6852,16.2659,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,187281,0 +255,11.3102,16.6387,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,187445,0 +256,11.3090,16.3284,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,159099,0 +257,10.7918,16.5459,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,121487,0 +258,10.6001,16.2699,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,163895,0 +259,10.6122,16.3850,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,176539,0 +260,10.5265,16.7453,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,212968,0 +261,10.6762,16.4935,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,157174,0 +262,10.7211,16.3438,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,167904,0 +263,10.5865,16.2185,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,167484,0 +264,10.7479,16.3650,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,207851,0 +265,10.6368,16.2877,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,154721,0 +266,10.5690,16.3049,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,211809,0 +267,10.6034,16.4114,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,162851,0 +268,10.6783,16.4168,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,172483,0 +269,11.2835,17.2262,0.0512,0.0000,0,0,0.0000,0,0.0000,0,0,0,218835,0 +270,11.3320,17.3227,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,171021,0 +271,11.2669,16.8266,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,181475,0 +272,10.7637,16.5542,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,153709,0 +273,10.8025,16.5340,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,128007,0 +274,10.8551,16.7716,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,167535,0 +275,10.9405,16.5884,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,177034,0 +276,10.4727,17.0261,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,216550,0 +277,10.5952,16.4760,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,159735,0 +278,10.9356,16.5126,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,171126,0 +279,10.7835,16.3510,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,172620,0 +280,10.7631,16.5067,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,170183,0 +281,10.6895,16.5924,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,169700,0 +282,11.0437,16.3155,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,216126,0 +283,10.4482,16.5398,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,167430,0 +284,10.4164,16.3339,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,173938,0 +285,10.5620,16.3486,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,179597,0 +286,10.5880,16.7144,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,182384,0 +287,10.7522,16.6739,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,183868,0 +288,10.5808,16.4406,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,150299,0 +289,10.9479,16.5025,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,124292,0 +290,10.5792,16.4866,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,162939,0 +291,10.6834,16.3601,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,172911,0 +292,10.6370,16.6495,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,208533,0 +293,10.5378,16.6570,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,188426,0 +294,10.7396,16.5091,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,159430,0 +295,10.5895,16.6278,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,165330,0 +296,10.5153,16.6935,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,157491,0 +297,10.7109,16.5556,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,207653,0 +298,11.0437,16.6348,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,159697,0 +299,10.3968,16.3438,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,214863,0 diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.txt b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.txt new file mode 100644 index 0000000..3d6fe97 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.726 +avg_encode_latency_ms=17.292 +p95_encode_latency_ms=17.231 +max_encode_latency_ms=76.561 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=52536912 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/4096x2304_datarate.csv diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.csv b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.csv new file mode 100644 index 0000000..2283040 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,18.8440,99.5875,0.0391,0.0000,0,0,0.0000,0,0.0000,0,1,0,141367,0 +1,18.3617,62.6006,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,107930,0 +2,17.4465,62.6050,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,128297,0 +3,17.2403,62.4485,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,131859,0 +4,16.8118,63.1422,0.0306,0.0000,0,0,0.0000,0,0.0000,0,0,0,159759,0 +5,16.9903,63.5725,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,172445,0 +6,16.5056,64.6341,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,221040,0 +7,16.5620,65.5967,0.0431,0.0000,0,0,0.0000,0,0.0000,0,0,0,267655,0 +8,16.9600,66.2247,0.0548,0.0000,0,0,0.0000,0,0.0000,0,0,0,302901,0 +9,16.5920,66.2366,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,247666,0 +10,16.5879,66.7375,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,248232,0 +11,16.6578,67.2101,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,247217,0 +12,16.3659,68.1202,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,238870,0 +13,16.6953,68.9543,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,303588,0 +14,16.4065,69.6724,0.0530,0.0000,0,0,0.0000,0,0.0000,0,0,0,287769,0 +15,17.0487,69.6627,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,286071,0 +16,16.5936,69.7352,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,185303,0 +17,16.9294,70.1633,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,210388,0 +18,16.7756,71.6317,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,263454,0 +19,16.4144,72.0562,0.0242,0.0000,0,0,0.0000,0,0.0000,0,0,0,275774,0 +20,16.9359,73.3389,0.1052,0.0000,0,0,0.0000,0,0.0000,0,0,0,333589,0 +21,16.6670,73.6411,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,302457,0 +22,16.8062,73.5841,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,252604,0 +23,17.3072,74.0135,0.0645,0.0000,0,0,0.0000,0,0.0000,0,0,0,323851,0 +24,18.0738,72.5836,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,242386,0 +25,18.0690,72.2737,0.0457,0.0000,0,0,0.0000,0,0.0000,0,0,0,324025,0 +26,18.7662,70.1222,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,250378,0 +27,18.5495,69.4048,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,335331,0 +28,18.8966,67.1747,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,252413,0 +29,17.0977,67.3987,0.0432,0.0000,0,0,0.0000,0,0.0000,0,0,0,277467,0 +30,16.7472,67.9120,0.0402,0.0000,0,0,0.0000,0,0.0000,0,0,0,281176,0 +31,16.6392,68.3956,0.0406,0.0000,0,0,0.0000,0,0.0000,0,0,0,284799,0 +32,16.9402,67.9133,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,177181,0 +33,17.1915,68.2548,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,202594,0 +34,16.5629,69.1670,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,236959,0 +35,17.1498,69.5560,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,279315,0 +36,17.3028,70.3895,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,326790,0 +37,16.7776,70.5429,0.0443,0.0000,0,0,0.0000,0,0.0000,0,0,0,293601,0 +38,17.9108,69.3166,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,242370,0 +39,17.1580,69.4868,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,257637,0 +40,16.6558,70.5305,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,309672,0 +41,16.4275,70.7409,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,243083,0 +42,16.9710,71.1008,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,262507,0 +43,16.3541,72.4580,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,328648,0 +44,17.3127,71.6999,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,251696,0 +45,16.3032,72.6743,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,274787,0 +46,16.9463,72.7322,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,275928,0 +47,16.4594,73.4356,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,281973,0 +48,16.5582,73.6379,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,188912,0 +49,16.5820,74.0985,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,210569,0 +50,16.2877,75.2940,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,244518,0 +51,16.4552,76.6215,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,287240,0 +52,16.8970,77.8648,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,336431,0 +53,16.4635,77.9403,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,242407,0 +54,16.4298,78.7806,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,269527,0 +55,16.5325,79.6444,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,262272,0 +56,17.4363,79.4795,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,261900,0 +57,16.5735,79.9923,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,262722,0 +58,16.4728,80.7415,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,267275,0 +59,17.2214,80.7444,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,273347,0 +60,17.7112,83.1847,0.0473,0.0000,0,0,0.0000,0,0.0000,0,1,0,553106,0 +61,17.4832,79.3702,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,275719,0 +62,17.2822,78.6642,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,206485,0 +63,18.8901,76.6893,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,177919,0 +64,18.2163,75.2176,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,129341,0 +65,17.2361,75.5621,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,167368,0 +66,16.7742,76.1771,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,173082,0 +67,16.4016,77.6292,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,268054,0 +68,16.6781,79.0557,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,304192,0 +69,16.4331,79.2021,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,215216,0 +70,16.4678,80.0155,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,235158,0 +71,16.6259,80.5913,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,231569,0 +72,16.6579,81.5430,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,285459,0 +73,16.7580,81.5026,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,216432,0 +74,16.2679,82.9600,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,294193,0 +75,16.8856,83.1970,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,282358,0 +76,16.3515,84.0336,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,278034,0 +77,16.7024,84.5765,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,284480,0 +78,16.4106,85.3362,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,288831,0 +79,16.7429,85.3162,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,236192,0 +80,16.3320,86.1058,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,205268,0 +81,16.5723,86.7638,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,213261,0 +82,16.5776,87.3634,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,199066,0 +83,16.3324,88.9528,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,312012,0 +84,16.4796,90.4711,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,345626,0 +85,16.5334,90.3275,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,250939,0 +86,16.3798,91.1168,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,272075,0 +87,16.6460,91.5889,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,266209,0 +88,16.5345,92.3414,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,266619,0 +89,16.6104,92.9930,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,267105,0 +90,16.2305,94.0590,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,275929,0 +91,16.2691,94.9898,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,279754,0 +92,16.2990,95.9055,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,274754,0 +93,16.2892,96.9154,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,287774,0 +94,16.5281,97.2158,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,234242,0 +95,16.5764,97.8349,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,246336,0 +96,16.7568,97.5041,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,147471,0 +97,16.3575,98.9921,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,217911,0 +98,16.8898,99.7825,0.0401,0.0000,0,0,0.0000,0,0.0000,0,0,0,246390,0 +99,16.6938,100.4512,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,287219,0 +100,16.6848,101.3744,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,264089,0 +101,16.6493,101.8798,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,253233,0 +102,16.5582,102.5494,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,264974,0 +103,16.2020,103.5420,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,262522,0 +104,16.2634,104.4353,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,253763,0 +105,16.6349,105.0625,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,260415,0 +106,16.6858,105.5641,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,267192,0 +107,16.6253,106.0771,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,272577,0 +108,17.0857,106.1292,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,266815,0 +109,17.2493,105.6179,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,223565,0 +110,16.6271,106.6541,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,294989,0 +111,16.5011,106.7193,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,232970,0 +112,16.4940,106.9647,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,159410,0 +113,16.7135,107.9301,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,223623,0 +114,16.5855,108.4417,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,196195,0 +115,16.2318,110.3551,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,308086,0 +116,17.2218,110.2758,0.0440,0.0000,0,0,0.0000,0,0.0000,0,0,0,271816,0 +117,16.2791,111.0636,0.0370,0.0000,0,0,0.0000,0,0.0000,0,0,0,262113,0 +118,16.5388,111.5740,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,270458,0 +119,16.6908,111.6543,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,215212,0 +120,17.2137,115.1877,0.0561,0.0000,0,0,0.0000,0,0.0000,0,1,0,535088,0 +121,16.9215,111.4682,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,213310,0 +122,18.1790,110.2720,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,203944,0 +123,17.2330,110.1781,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,197236,0 +124,17.7698,109.7070,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,199835,0 +125,17.7263,109.1605,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,205018,0 +126,17.9341,108.4651,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,212281,0 +127,17.3623,108.5239,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,265192,0 +128,17.7707,107.1879,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,152969,0 +129,17.9505,106.8128,0.0344,0.0000,0,0,0.0000,0,0.0000,0,0,0,191342,0 +130,17.0776,106.9465,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,207654,0 +131,17.5298,106.9715,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,258999,0 +132,16.8244,108.1188,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,302177,0 +133,17.4387,107.5768,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,267882,0 +134,16.6352,107.6520,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,218891,0 +135,16.7491,108.5352,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,286023,0 +136,16.4978,109.0442,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,260560,0 +137,16.4918,110.1131,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,269876,0 +138,16.4765,110.8643,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,271630,0 +139,16.4406,111.6425,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,278487,0 +140,16.6642,112.2588,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,274107,0 +141,16.3959,113.1238,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,284394,0 +142,16.8242,113.4683,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,287439,0 +143,17.0547,113.1730,0.0237,0.0000,0,0,0.0000,0,0.0000,0,0,0,234836,0 +144,16.2447,113.9929,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,204542,0 +145,16.6347,114.6430,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,212803,0 +146,16.5228,115.3144,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,197386,0 +147,16.8836,116.4445,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,308437,0 +148,16.3945,118.1407,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,345025,0 +149,16.2933,118.2772,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,247045,0 +150,16.4483,118.7945,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,218998,0 +151,16.4623,120.0233,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,282718,0 +152,16.7830,120.3852,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,262729,0 +153,16.2748,121.2745,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,267050,0 +154,16.7445,121.7869,0.0405,0.0000,0,0,0.0000,0,0.0000,0,0,0,273597,0 +155,16.7005,122.2886,0.0542,0.0000,0,0,0.0000,0,0.0000,0,0,0,277916,0 +156,16.4709,123.1146,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,272631,0 +157,16.8519,123.0736,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,228267,0 +158,17.6295,123.1355,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,299952,0 +159,17.3923,122.3965,0.0444,0.0000,0,0,0.0000,0,0.0000,0,0,0,236037,0 +160,17.5727,121.3754,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,147727,0 +161,17.9016,121.2306,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,216819,0 +162,17.9782,120.3794,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,189881,0 +163,17.7865,120.4593,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,302600,0 +164,17.3380,121.1164,0.0383,0.0000,0,0,0.0000,0,0.0000,0,0,0,333378,0 +165,17.0172,120.4640,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,235332,0 +166,17.7418,119.9797,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,262840,0 +167,17.8641,119.3163,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,259259,0 +168,17.5547,118.9623,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,250957,0 +169,17.8148,118.3781,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,260571,0 +170,16.9130,118.7194,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,265443,0 +171,17.2600,118.6430,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,270070,0 +172,17.6842,118.1352,0.0387,0.0000,0,0,0.0000,0,0.0000,0,0,0,266030,0 +173,17.5353,117.9000,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,279317,0 +174,17.4935,117.2267,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,226487,0 +175,17.5275,117.3238,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,298202,0 +176,17.9824,115.4635,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,147902,0 +177,17.1853,116.0272,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,222152,0 +178,17.8382,115.4283,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,194152,0 +179,17.6127,115.7264,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,305416,0 +180,17.1143,119.5715,0.0613,0.0000,0,0,0.0000,0,0.0000,0,1,0,555260,0 +181,17.1765,116.1076,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,250744,0 +182,16.9347,115.8833,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,196654,0 +183,17.5327,115.3418,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,161437,0 +184,16.7837,116.0330,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,193690,0 +185,17.1999,116.0315,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,193361,0 +186,17.2427,116.4029,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,251191,0 +187,16.9219,116.6617,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,257383,0 +188,18.0338,115.4160,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,193560,0 +189,17.6690,115.4199,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,263204,0 +190,17.3960,115.2149,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,259761,0 +191,17.1650,114.9535,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,259512,0 +192,17.4609,113.9984,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,148027,0 +193,17.2433,114.2840,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,189484,0 +194,17.4420,114.4558,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,206317,0 +195,17.9400,114.3737,0.0305,0.0000,0,0,0.0000,0,0.0000,0,0,0,319107,0 +196,17.4299,114.3503,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,274013,0 +197,17.4411,113.9857,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,263966,0 +198,17.6671,113.4565,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,273496,0 +199,16.8692,113.7943,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,270670,0 +200,17.1631,113.6481,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,258303,0 +201,17.3338,113.4994,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,269477,0 +202,17.6695,112.9290,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,273371,0 +203,17.5875,112.5318,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,279443,0 +204,17.0440,112.6112,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,275167,0 +205,17.6136,112.1386,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,284800,0 +206,17.7367,111.4997,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,232176,0 +207,16.9532,111.8555,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,302902,0 +208,17.8247,110.4411,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,195113,0 +209,17.0071,110.4769,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,190093,0 +210,16.5571,111.6172,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,278032,0 +211,17.6816,110.9232,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,229080,0 +212,17.8295,111.1467,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,290739,0 +213,17.4281,110.7041,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,264605,0 +214,18.5787,109.2384,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,280364,0 +215,16.8822,109.1414,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,220606,0 +216,17.0362,109.2536,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,225296,0 +217,16.5465,110.5265,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,289578,0 +218,16.8594,110.8665,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,280593,0 +219,16.4816,111.1115,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,228452,0 +220,16.4329,112.4123,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,289526,0 +221,16.7339,112.4010,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,231240,0 +222,16.9030,112.9991,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,247232,0 +223,16.6713,113.3346,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,249534,0 +224,16.5343,113.5440,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,200775,0 +225,17.6555,113.0791,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,181857,0 +226,16.3720,114.5922,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,269407,0 +227,17.1860,114.1494,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,223612,0 +228,17.5623,114.6311,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,278923,0 +229,17.7965,113.8858,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,254144,0 +230,17.7970,113.1474,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,271610,0 +231,17.8003,112.0139,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,208752,0 +232,18.2687,111.3748,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,269064,0 +233,18.2597,110.1896,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,264493,0 +234,17.0701,109.8388,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,215777,0 +235,17.4463,110.0365,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,290129,0 +236,18.0030,108.7523,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,215436,0 +237,16.6501,109.8053,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,295527,0 +238,17.2986,109.2371,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,229814,0 +239,17.5530,108.8738,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,244306,0 +240,18.1060,111.1137,0.1137,0.0000,0,0,0.0000,0,0.0000,0,1,0,539952,0 +241,17.8540,106.6625,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,172005,0 +242,17.4030,106.9447,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,264548,0 +243,16.8637,106.8956,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,171697,0 +244,17.2993,107.7753,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,249558,0 +245,17.3260,107.2571,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,170638,0 +246,17.3513,107.1320,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,197572,0 +247,17.4588,107.2989,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,247120,0 +248,17.7300,106.7860,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,242647,0 +249,17.1617,106.3688,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,194154,0 +250,17.6414,106.3624,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,255601,0 +251,17.1987,106.2754,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,254146,0 +252,16.8332,106.4664,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,247908,0 +253,16.6552,106.9632,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,251078,0 +254,16.8208,107.2332,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,253883,0 +255,17.1722,107.1590,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,254770,0 +256,16.3307,107.6223,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,213478,0 +257,17.5713,107.2170,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,179356,0 +258,16.4782,107.9625,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,216826,0 +259,16.3110,109.5175,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,302365,0 +260,16.3961,110.6143,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,266766,0 +261,16.6778,111.1220,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,259343,0 +262,16.4306,111.8377,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,265274,0 +263,17.4098,111.2525,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,209677,0 +264,16.5772,112.3470,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,271546,0 +265,16.6575,112.8998,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,260612,0 +266,16.3010,113.8113,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,272033,0 +267,16.7248,114.2845,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,272182,0 +268,16.8081,114.7053,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,266573,0 +269,17.0523,114.5510,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,222214,0 +270,17.2502,114.9781,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,294786,0 +271,17.7815,113.6750,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,230488,0 +272,17.0119,113.7123,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,205056,0 +273,17.8493,113.0269,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,208631,0 +274,17.1426,113.0480,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,219088,0 +275,17.7816,113.1105,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,298941,0 +276,17.8090,112.7507,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,268940,0 +277,18.0812,111.7462,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,261379,0 +278,17.8838,111.0434,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,271746,0 +279,17.2727,110.8154,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,213293,0 +280,16.6848,111.3320,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,276390,0 +281,17.0071,111.3707,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,262903,0 +282,17.0222,111.5016,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,274997,0 +283,17.1361,111.1214,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,222158,0 +284,17.8657,110.8834,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,282002,0 +285,17.4100,110.2368,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,226226,0 +286,18.1710,109.2088,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,242340,0 +287,17.1695,109.0875,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,245521,0 +288,16.9503,108.5566,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,149329,0 +289,17.1907,109.0361,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,217338,0 +290,17.4608,108.7369,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,189290,0 +291,18.1812,108.5030,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,303171,0 +292,16.8518,109.6681,0.0452,0.0000,0,0,0.0000,0,0.0000,0,0,0,332012,0 +293,17.0607,109.0296,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,233844,0 +294,17.3848,109.1575,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,261607,0 +295,17.5566,108.6808,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,204088,0 +296,17.1436,109.2063,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,265748,0 +297,17.5477,108.8863,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,255704,0 +298,17.8704,108.2967,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,266402,0 +299,18.1038,107.6010,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,269863,0 diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.txt b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.txt new file mode 100644 index 0000000..79ec12d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.txt @@ -0,0 +1,36 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary synthetic encoder +resolution=5120x2880 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.078 +avg_encode_latency_ms=100.617 +p95_encode_latency_ms=119.982 +max_encode_latency_ms=123.135 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=75570913 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/5120x2880_speed.csv diff --git a/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/summary.md b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/summary.md new file mode 100644 index 0000000..20aab19 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/summary.md @@ -0,0 +1,57 @@ +# VideoToolbox Targeted Sustained Probe + +Date: 2026-05-15 + +Machine: MacBookPro18,4 / M1 Max / 32 GB + +Command shape: + +```bash +ibridge-primary --synthetic --fps 60 --duration 5 --codec hevc --bitrate-mbps 120 \ + --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop +``` + +The 3200x1800, 3840x2160, and 4096x2304 cases also used: + +```bash +--data-rate-limit-mbps 120 --data-rate-window 1.0 +``` + +The 5120x2880 case used: + +```bash +--prioritize-speed +``` + +## Results + +| Mode | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:| +| 3200x1800 datarate | 300 | 0 | 11.583 | 11.766 | 64.125 | 52,564,637 | +| 3840x2160 datarate | 300 | 0 | 15.457 | 15.831 | 62.353 | 52,474,335 | +| 4096x2304 datarate | 300 | 0 | 17.292 | 17.231 | 76.561 | 52,536,912 | +| 5120x2880 speed | 300 | 0 | 100.617 | 119.982 | 123.135 | 75,570,913 | + +## Interpretation + +- `3200x1800` and `3840x2160` fit a 60 Hz encode budget on this synthetic + source with the forced `ave.hevc`, no low-latency rate control, temporal + compression enabled, frame reordering disabled, and DataRateLimits set. +- `4096x2304` is very close but still over the 16.667 ms frame budget on + average/p95 in this run. +- `5120x2880` is not close. Even with `PrioritizeEncodingSpeedOverQuality`, + 5K HEVC encode is still far outside a 60 Hz frame budget. +- `MaxFrameDelayCount` returned `-12900` on these runs and should be treated as + unsupported on this path unless a different encoder/session combination + proves otherwise. + +## Decision + +Before any iMac receiver dependency, Plan B 5K60 compressed encode is still not +viable on the current MBP Primary path. The strongest encoding-only candidates +are now 3200x1800 and 3840x2160 HEVC with forced `ave.hevc` plus +DataRateLimits. diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.csv new file mode 100644 index 0000000..fc559bd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.5444,74.8365,0.0215,0.0000,0,0,0.0000,0,0.0000,0,1,0,63665,0 +1,7.8654,27.1397,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,71838,0 +2,7.2298,27.4415,0.0425,0.0000,0,0,0.0000,0,0.0000,0,0,0,148781,0 +3,6.9612,27.9412,0.0457,0.0000,0,0,0.0000,0,0.0000,0,0,0,251226,0 +4,6.6519,29.0525,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,163048,0 +5,6.9734,29.1770,0.0247,0.0000,0,0,0.0000,0,0.0000,0,0,0,145831,0 +6,6.8620,22.0098,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,195563,0 +7,6.8753,12.3613,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,227545,0 +8,7.3202,11.0454,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,203787,0 +9,7.9145,12.0431,0.0436,0.0000,0,0,0.0000,0,0.0000,0,0,0,215525,0 +10,7.1995,11.2919,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,221575,0 +11,7.6610,11.2532,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,221996,0 +12,7.7252,11.1573,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,222933,0 +13,8.2227,11.5748,0.0403,0.0000,0,0,0.0000,0,0.0000,0,0,0,189072,0 +14,7.5645,11.7610,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,197810,0 +15,7.1763,11.2399,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,202009,0 +16,7.2090,11.0574,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,180813,0 +17,7.0935,11.0699,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,130225,0 +18,7.1769,10.7418,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,170309,0 +19,7.1676,10.9798,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,205896,0 +20,7.3992,11.5208,0.0462,0.0000,0,0,0.0000,0,0.0000,0,0,0,240189,0 +21,6.9449,11.0742,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,184678,0 +22,6.7662,11.0835,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,198454,0 +23,6.7950,11.0202,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,196511,0 +24,6.8895,11.0831,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,188404,0 +25,6.9770,10.9952,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,148855,0 +26,7.0762,10.9140,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,158139,0 +27,7.2618,10.9362,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,161328,0 +28,7.2810,11.1611,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,160478,0 +29,7.1881,11.1820,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,165748,0 +30,7.1816,11.3022,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,166009,0 +31,7.0795,11.0388,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,169371,0 +32,6.9215,11.1263,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,146840,0 +33,6.7161,11.2888,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,105073,0 +34,6.7830,11.1280,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,176131,0 +35,6.9385,12.0973,0.0379,0.0000,0,0,0.0000,0,0.0000,0,0,0,205088,0 +36,7.2237,11.4250,0.0440,0.0000,0,0,0.0000,0,0.0000,0,0,0,237238,0 +37,7.2548,11.1367,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,179691,0 +38,7.6021,11.0290,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,193983,0 +39,7.2160,10.8852,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,191389,0 +40,7.2662,11.2879,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,137488,0 +41,7.2394,11.4712,0.0276,0.0000,0,0,0.0000,0,0.0000,0,0,0,152228,0 +42,7.1266,11.1448,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,158002,0 +43,7.2642,11.1286,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,159834,0 +44,7.6853,11.0858,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,209275,0 +45,7.5246,11.0110,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,202806,0 +46,7.2525,10.8646,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,157126,0 +47,7.2244,10.9970,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,162628,0 +48,7.0169,11.1108,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,144411,0 +49,7.4337,10.8481,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,109288,0 +50,6.9133,11.0970,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,141500,0 +51,6.8965,11.0385,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,219816,0 +52,7.1652,11.2222,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,242054,0 +53,6.9359,11.0520,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,187182,0 +54,7.3243,10.8986,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,198594,0 +55,7.2607,10.9942,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,151109,0 +56,6.9256,10.7863,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,149429,0 +57,6.7603,11.2148,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,157968,0 +58,6.9458,11.0778,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,161943,0 +59,6.9371,11.0005,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,163400,0 +60,6.9674,10.9142,0.0326,0.0000,0,0,0.0000,0,0.0000,0,1,0,356689,0 +61,7.0564,10.8158,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,142832,0 +62,7.0728,11.0484,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,132670,0 +63,7.0543,10.9130,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,134694,0 +64,7.0545,10.9262,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,114788,0 +65,7.0168,10.9785,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,110235,0 +66,7.2078,10.8343,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,145468,0 +67,7.1795,11.9704,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,217115,0 +68,7.1649,12.0733,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,236415,0 +69,7.2821,11.0575,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,180392,0 +70,7.6386,11.0606,0.0370,0.0000,0,0,0.0000,0,0.0000,0,0,0,194240,0 +71,7.4874,11.2519,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,193580,0 +72,7.3691,11.6582,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,182286,0 +73,7.3855,11.0676,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,193250,0 +74,7.4893,10.8559,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,197788,0 +75,7.4247,10.9082,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,153039,0 +76,7.7790,10.9200,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,157778,0 +77,7.0943,11.0782,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,161651,0 +78,7.0460,11.0215,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,165536,0 +79,7.4164,10.8741,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,165233,0 +80,6.9941,10.8407,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,147028,0 +81,7.1952,10.9251,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,109577,0 +82,7.0499,11.2238,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,140320,0 +83,7.0637,11.0176,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,218949,0 +84,7.1609,11.2801,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,243601,0 +85,7.2547,10.9434,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,186323,0 +86,7.1375,10.9450,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,200890,0 +87,7.1539,11.0091,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,151869,0 +88,7.0777,10.9141,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,149442,0 +89,7.6252,10.8976,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,157704,0 +90,7.2210,11.1170,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,162013,0 +91,7.3503,10.9516,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,163621,0 +92,7.3391,10.9243,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,162752,0 +93,7.0844,10.9030,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,216980,0 +94,7.3054,10.7100,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,160318,0 +95,7.3428,10.9829,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,168718,0 +96,7.4015,10.8999,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,145261,0 +97,7.5229,10.9539,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,105180,0 +98,7.2622,10.8896,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,137751,0 +99,7.3848,11.0056,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,214073,0 +100,7.5772,11.1997,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,240195,0 +101,7.4471,10.8647,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,217366,0 +102,7.1399,10.9428,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,187487,0 +103,7.3587,11.1526,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,190843,0 +104,7.6395,11.2196,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,135723,0 +105,7.6589,10.9645,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,152622,0 +106,7.1768,10.8592,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,208520,0 +107,7.0734,11.1710,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,200929,0 +108,7.3193,10.9442,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,151947,0 +109,7.6367,11.0964,0.0289,0.0000,0,0,0.0000,0,0.0000,0,0,0,161637,0 +110,7.8988,11.7605,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,164817,0 +111,7.2074,11.1489,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,166317,0 +112,7.4537,11.0555,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,146673,0 +113,8.0638,11.0329,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,110159,0 +114,7.7842,10.8163,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,142065,0 +115,7.5425,10.9837,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,219668,0 +116,7.3164,10.9778,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,244165,0 +117,7.3948,10.9172,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,188269,0 +118,7.3184,10.9139,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,200339,0 +119,7.2380,10.9320,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,200606,0 +120,7.4612,11.1372,0.0777,0.0000,0,0,0.0000,0,0.0000,0,1,0,394097,0 +121,7.6297,11.1082,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,167350,0 +122,6.9175,11.7485,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,123575,0 +123,7.4531,11.1586,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,130727,0 +124,7.5862,11.6679,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,131618,0 +125,6.9037,11.7882,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,174788,0 +126,6.8558,11.6831,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,170056,0 +127,7.2129,11.2427,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,174278,0 +128,10.3765,12.2726,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,144788,0 +129,6.8024,11.5631,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,110065,0 +130,6.9770,11.2771,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,141470,0 +131,7.0241,11.0459,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,219346,0 +132,7.0767,11.2769,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,243262,0 +133,7.7007,11.0687,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,183710,0 +134,7.5746,11.4275,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,195797,0 +135,6.9739,11.0064,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,148114,0 +136,7.6415,10.9906,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,145446,0 +137,7.3680,11.2033,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,157937,0 +138,7.4973,11.2428,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,162002,0 +139,7.5025,11.1632,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,164077,0 +140,7.2802,11.0188,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,163112,0 +141,7.2396,10.8961,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,217340,0 +142,7.4579,10.7851,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,160986,0 +143,7.5027,11.4407,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,167663,0 +144,7.0126,11.1337,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,146832,0 +145,7.1885,11.0346,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,112221,0 +146,7.0210,10.8955,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,144844,0 +147,7.0876,11.3471,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,220918,0 +148,7.2717,11.4009,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,245698,0 +149,7.2518,11.1428,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,188914,0 +150,7.1045,11.0845,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,202650,0 +151,7.0803,11.0344,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,154393,0 +152,7.2325,11.0721,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,154148,0 +153,7.2511,10.9632,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,161095,0 +154,7.3325,11.0633,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,165430,0 +155,7.1853,11.2289,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,167084,0 +156,7.0499,11.0153,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,165359,0 +157,7.4769,11.0799,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,170321,0 +158,7.5887,11.1377,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,170299,0 +159,7.0540,11.2703,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,174240,0 +160,7.6256,11.1835,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,149765,0 +161,7.2985,10.7445,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,109617,0 +162,7.6096,12.0187,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,141465,0 +163,7.4311,11.3254,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,219052,0 +164,7.6016,12.0598,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,236550,0 +165,7.6165,11.1696,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,225285,0 +166,7.9790,11.1604,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,187044,0 +167,7.8154,11.0973,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,197153,0 +168,7.7518,10.9096,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,137030,0 +169,7.4994,10.9140,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,157970,0 +170,7.2329,11.2790,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,161291,0 +171,7.3398,11.5640,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,162192,0 +172,7.4476,11.6962,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,211888,0 +173,7.5213,11.5238,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,205861,0 +174,7.7390,11.1434,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,161438,0 +175,7.2437,11.5736,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,164712,0 +176,6.9765,11.5863,0.0316,0.0000,0,0,0.0000,0,0.0000,0,0,0,147480,0 +177,7.0651,11.6243,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,112316,0 +178,6.9602,11.2759,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,145599,0 +179,7.0999,11.5617,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,223106,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.txt new file mode 100644 index 0000000..1ec8d87 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-bgra +resolution=3200x1800 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.297 +avg_encode_latency_ms=12.050 +p95_encode_latency_ms=12.106 +max_encode_latency_ms=74.836 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=31470385 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.csv new file mode 100644 index 0000000..02f56ff --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,11.6037,74.1617,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,80375,0 +1,11.2210,31.7570,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,69273,0 +2,11.1681,30.8691,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,112403,0 +3,10.2004,30.8204,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,205525,0 +4,9.6318,31.3532,0.0502,0.0000,0,0,0.0000,0,0.0000,0,0,0,220973,0 +5,9.8650,31.7616,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,152284,0 +6,9.3014,32.9033,0.0459,0.0000,0,0,0.0000,0,0.0000,0,0,0,195064,0 +7,9.2070,33.8295,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,179649,0 +8,9.5078,25.3475,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,158778,0 +9,9.1466,19.9050,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,171874,0 +10,9.5193,14.8350,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,224192,0 +11,9.5306,14.7898,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,216388,0 +12,9.5066,14.6554,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,212904,0 +13,9.5230,14.8747,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,166322,0 +14,9.3872,14.6882,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,230166,0 +15,9.4162,14.7630,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,220415,0 +16,9.2131,14.6818,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,113641,0 +17,9.7472,14.7629,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,159261,0 +18,9.4233,14.7010,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,200308,0 +19,9.2510,14.7315,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,235305,0 +20,9.5328,15.1932,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,214370,0 +21,9.2619,14.5331,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,208357,0 +22,9.2650,14.7163,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,166281,0 +23,9.2715,14.6961,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,170749,0 +24,9.5708,14.7920,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,168961,0 +25,9.5937,14.9275,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,226315,0 +26,9.4098,14.7387,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,166752,0 +27,9.3383,14.7261,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,180905,0 +28,9.3417,14.5702,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,225861,0 +29,9.3939,14.6736,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,177537,0 +30,9.3654,14.7548,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,185200,0 +31,9.2854,14.7193,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,185680,0 +32,9.5915,14.9127,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,122898,0 +33,9.3055,14.8972,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,132475,0 +34,9.4718,14.7592,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,164607,0 +35,9.5043,14.8250,0.0324,0.0000,0,0,0.0000,0,0.0000,0,0,0,241806,0 +36,9.2111,15.0365,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,211301,0 +37,9.2846,14.7392,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,154607,0 +38,9.2040,14.7136,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,167050,0 +39,9.4480,14.7604,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,168603,0 +40,9.6377,14.7383,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,163114,0 +41,9.3253,14.6089,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,170272,0 +42,9.2015,14.6585,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,227364,0 +43,9.3815,15.0242,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,168914,0 +44,9.6211,14.8215,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,173656,0 +45,9.3884,14.9041,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,178830,0 +46,9.2867,14.9121,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,186599,0 +47,9.4391,14.7629,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,183053,0 +48,9.2456,14.8605,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,99665,0 +49,9.3419,14.9672,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,142113,0 +50,9.4886,15.0317,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,168638,0 +51,9.7007,15.5914,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,183765,0 +52,9.3906,16.1598,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,229919,0 +53,9.4211,15.9582,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,159830,0 +54,10.4533,16.6200,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,142449,0 +55,11.0003,15.6442,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,179752,0 +56,9.8314,15.9969,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,174019,0 +57,9.8978,15.0556,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,172650,0 +58,9.5841,14.8024,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,177474,0 +59,9.9651,14.8825,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,182818,0 +60,10.1201,14.7730,0.0689,0.0000,0,0,0.0000,0,0.0000,0,1,0,437765,0 +61,9.6995,14.9327,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,173099,0 +62,9.4590,14.8003,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,140169,0 +63,9.6185,15.6733,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,111278,0 +64,9.8176,14.9952,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,90616,0 +65,9.8904,14.8072,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,118473,0 +66,10.5134,14.6959,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,147523,0 +67,10.4139,14.8462,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,202958,0 +68,9.7242,14.9686,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,185496,0 +69,9.4932,14.8597,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,176502,0 +70,9.6819,14.6801,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,180015,0 +71,9.4717,14.7438,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,142002,0 +72,9.4419,14.8837,0.0355,0.0000,0,0,0.0000,0,0.0000,0,0,0,174556,0 +73,9.6170,14.8493,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,177413,0 +74,9.4262,14.8226,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,185214,0 +75,9.3061,14.6532,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,182679,0 +76,9.4220,15.0868,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,182716,0 +77,9.4999,14.9660,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,186792,0 +78,9.3757,15.1655,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,189324,0 +79,9.5780,15.1490,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,187924,0 +80,9.5426,14.9940,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,100360,0 +81,9.4868,14.8014,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,143529,0 +82,9.4807,14.9469,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,172277,0 +83,9.2282,14.8680,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,185687,0 +84,9.5015,15.5600,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,232893,0 +85,9.6404,15.6839,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,162436,0 +86,9.8576,15.0477,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,145129,0 +87,9.7085,15.3018,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,182227,0 +88,9.6583,15.6073,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,174804,0 +89,9.8820,15.8740,0.0347,0.0000,0,0,0.0000,0,0.0000,0,0,0,178493,0 +90,10.2177,15.4550,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,180254,0 +91,10.2621,15.2991,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,183410,0 +92,10.3617,15.4812,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,180599,0 +93,10.1390,15.3901,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,187365,0 +94,9.8295,15.0457,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,154460,0 +95,9.5123,15.4728,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,195480,0 +96,9.7042,15.1870,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,100336,0 +97,9.5907,15.0748,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,142249,0 +98,9.4532,15.0619,0.0327,0.0000,0,0,0.0000,0,0.0000,0,0,0,166808,0 +99,9.6690,15.1030,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,180704,0 +100,9.4101,16.0464,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,226169,0 +101,9.7690,15.2378,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,154423,0 +102,9.5992,15.6438,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,173283,0 +103,10.0987,15.6032,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,167329,0 +104,9.7468,15.7307,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,164926,0 +105,10.0762,15.3780,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,170203,0 +106,10.3358,15.3996,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,176533,0 +107,10.6068,15.1495,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,179978,0 +108,9.9434,15.2968,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,177096,0 +109,9.4286,15.3885,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,184948,0 +110,9.4364,15.0881,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,185952,0 +111,9.4708,14.9672,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,186887,0 +112,9.8292,15.1950,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,102821,0 +113,9.5067,15.3703,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,143523,0 +114,9.2838,14.9827,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,171386,0 +115,9.5933,15.1644,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,184704,0 +116,10.1546,15.9191,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,231056,0 +117,9.6304,15.8442,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,160305,0 +118,9.7035,15.9087,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,144091,0 +119,12.2478,15.9093,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,180733,0 +120,10.0406,15.1809,0.0565,0.0000,0,0,0.0000,0,0.0000,0,1,0,424886,0 +121,9.7390,15.0159,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,164752,0 +122,9.9126,15.3404,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,137278,0 +123,9.6743,15.7281,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,136780,0 +124,10.5539,15.5825,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,135133,0 +125,9.5015,15.0739,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,171018,0 +126,10.0822,15.4176,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,169655,0 +127,10.2299,15.2090,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,171418,0 +128,10.9571,15.2090,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,137935,0 +129,10.2069,14.7230,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,140144,0 +130,9.5270,15.1295,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,176397,0 +131,9.4443,14.9002,0.0349,0.0000,0,0,0.0000,0,0.0000,0,0,0,184861,0 +132,9.4688,15.5366,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,237899,0 +133,9.6035,15.2052,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,161996,0 +134,9.7140,15.3057,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,178563,0 +135,9.6299,15.2257,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,172714,0 +136,9.2678,14.9517,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,170704,0 +137,9.4603,15.1838,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,175257,0 +138,9.9330,15.1694,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,180443,0 +139,9.5213,15.2278,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,185089,0 +140,9.2784,14.9265,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,181878,0 +141,9.4353,15.3426,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,186884,0 +142,9.2919,15.2872,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,189348,0 +143,9.4630,15.4664,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,190537,0 +144,9.4663,15.1020,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,102194,0 +145,9.5295,15.2299,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,145690,0 +146,9.3691,14.9836,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,173627,0 +147,9.5367,15.0169,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,190681,0 +148,9.4118,15.4719,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,234871,0 +149,9.4157,14.6769,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,132184,0 +150,9.7925,15.1572,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,187416,0 +151,9.4617,14.9130,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,174652,0 +152,9.4720,15.3103,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,176303,0 +153,9.3756,14.9262,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,178356,0 +154,9.4655,15.1130,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,186469,0 +155,9.3306,14.9851,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,188140,0 +156,9.3981,15.1933,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,148636,0 +157,9.4937,15.2900,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,197901,0 +158,9.2714,14.8019,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,156235,0 +159,9.2943,14.7289,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,200164,0 +160,9.4564,14.8031,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,132650,0 +161,9.7112,14.8030,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,116906,0 +162,9.4974,14.7856,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,178987,0 +163,9.4605,15.0073,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,183681,0 +164,9.4755,15.0692,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,231781,0 +165,9.8765,15.2187,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,125068,0 +166,9.8625,15.2268,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,185531,0 +167,9.6542,15.4060,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,171010,0 +168,9.7039,15.2188,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,171941,0 +169,9.9793,15.5797,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,175824,0 +170,9.9530,15.1273,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,181683,0 +171,9.5305,15.3782,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,185346,0 +172,9.7945,15.5557,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,182690,0 +173,9.8082,15.8867,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,188203,0 +174,9.6292,15.7679,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,155084,0 +175,9.7370,15.1644,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,199128,0 +176,9.5735,15.3210,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,130730,0 +177,9.8534,15.2130,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,146249,0 +178,10.2182,15.6777,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,174656,0 +179,10.2305,16.1055,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,150516,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.txt new file mode 100644 index 0000000..a04d00f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-bgra +resolution=3840x2160 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=9.677 +avg_encode_latency_ms=16.196 +p95_encode_latency_ms=20.177 +max_encode_latency_ms=74.162 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=31521421 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.csv new file mode 100644 index 0000000..29ac53b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.0285,59.7339,0.0297,0.0000,0,0,0.0000,0,0.0000,0,1,0,82583,0 +1,11.6960,34.7097,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,70046,0 +2,12.2616,33.9192,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,113930,0 +3,11.1773,34.2748,0.0390,0.0000,0,0,0.0000,0,0.0000,0,0,0,203158,0 +4,10.6933,34.9940,0.0333,0.0000,0,0,0.0000,0,0.0000,0,0,0,219265,0 +5,11.2231,35.2193,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,153207,0 +6,11.1108,32.0444,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,193674,0 +7,11.8535,25.6129,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,183480,0 +8,10.7697,21.9017,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,154470,0 +9,10.4876,16.7650,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,215324,0 +10,10.5914,16.4371,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,205251,0 +11,10.5332,16.3204,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,204683,0 +12,10.7685,16.5735,0.0363,0.0000,0,0,0.0000,0,0.0000,0,0,0,202372,0 +13,10.6880,16.5261,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,205733,0 +14,10.6722,17.5274,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,209896,0 +15,11.3106,16.6258,0.0308,0.0000,0,0,0.0000,0,0.0000,0,0,0,205553,0 +16,11.9766,17.6538,0.0403,0.0000,0,0,0.0000,0,0.0000,0,0,0,177684,0 +17,11.0611,16.6093,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,144447,0 +18,11.3721,16.4821,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,193410,0 +19,10.7680,16.4885,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,201859,0 +20,10.8459,17.8435,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,261178,0 +21,10.9583,16.6024,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,182358,0 +22,10.7618,16.4055,0.0741,0.0000,0,0,0.0000,0,0.0000,0,0,0,158762,0 +23,11.1722,16.9797,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,208719,0 +24,11.1263,16.6055,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,196462,0 +25,11.2865,16.9784,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,158861,0 +26,11.0704,17.5925,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,210171,0 +27,11.1517,16.6299,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,206591,0 +28,10.9304,16.5195,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,165011,0 +29,11.2559,16.5546,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,176637,0 +30,10.7119,16.3990,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,179551,0 +31,10.5382,16.1653,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,183691,0 +32,10.7689,16.4609,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,150267,0 +33,10.4645,16.3461,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,124003,0 +34,10.7743,16.3197,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,162861,0 +35,10.6708,16.4225,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,172462,0 +36,10.3703,16.7904,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,207667,0 +37,10.5267,16.4135,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,187424,0 +38,10.5303,16.2946,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,158900,0 +39,10.5931,17.5584,0.0276,0.0000,0,0,0.0000,0,0.0000,0,0,0,164972,0 +40,10.7312,16.4153,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,159181,0 +41,10.9720,16.3274,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,207128,0 +42,10.5068,16.2883,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,159236,0 +43,10.9236,16.2323,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,172283,0 +44,10.9817,16.1827,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,169579,0 +45,10.7123,16.6258,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,177282,0 +46,10.4375,16.5749,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,178846,0 +47,10.9950,16.5981,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,181542,0 +48,10.3161,16.3437,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,154523,0 +49,10.5369,16.3538,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,129031,0 +50,10.3281,16.3082,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,155367,0 +51,10.5999,16.4308,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,179849,0 +52,10.4104,16.7582,0.0430,0.0000,0,0,0.0000,0,0.0000,0,0,0,215346,0 +53,10.5605,16.3401,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,154705,0 +54,10.5800,17.0029,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,174849,0 +55,10.4114,16.3655,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,169799,0 +56,10.7172,16.7981,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,167787,0 +57,10.4581,16.6145,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,167742,0 +58,10.6774,16.4696,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,173076,0 +59,10.8949,16.4708,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,176751,0 +60,10.3844,16.2393,0.0642,0.0000,0,0,0.0000,0,0.0000,0,1,0,397192,0 +61,10.6919,16.5371,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,169625,0 +62,10.5691,16.4198,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,131772,0 +63,10.8628,16.7441,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133410,0 +64,10.8646,16.5957,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,103787,0 +65,10.5822,16.5430,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,103688,0 +66,11.1199,16.6941,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,133398,0 +67,10.8148,16.5225,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,206553,0 +68,10.6558,16.8325,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,182187,0 +69,10.4189,16.2928,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,174951,0 +70,10.3634,16.3137,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,142481,0 +71,10.7511,16.3871,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,185728,0 +72,10.3777,16.2093,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,168032,0 +73,10.4140,16.2375,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,174484,0 +74,10.4358,16.2104,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,176618,0 +75,10.6052,16.1873,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,179085,0 +76,10.5209,16.3645,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,223885,0 +77,10.7022,17.4659,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,174660,0 +78,10.5554,16.3020,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,183890,0 +79,10.6091,16.2817,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,183838,0 +80,10.4957,16.2705,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,158513,0 +81,10.7172,16.5780,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,129690,0 +82,11.0169,16.4270,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,159241,0 +83,10.6174,16.2799,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,183932,0 +84,10.6276,16.7373,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,220541,0 +85,10.6466,16.3073,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,159457,0 +86,10.5222,16.9533,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,177800,0 +87,10.9689,16.8468,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,172816,0 +88,10.6347,16.4660,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,169784,0 +89,10.7061,16.2631,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,172716,0 +90,10.6261,16.4165,0.0326,0.0000,0,0,0.0000,0,0.0000,0,0,0,175709,0 +91,10.6824,17.4867,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,180690,0 +92,10.6831,16.6895,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,175716,0 +93,10.9520,16.6218,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,183838,0 +94,10.8580,16.4007,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,185881,0 +95,10.7175,16.4505,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,186272,0 +96,10.8775,17.4486,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,150832,0 +97,10.8403,16.6545,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,125679,0 +98,10.6980,16.3877,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,152073,0 +99,10.7803,16.3814,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,179621,0 +100,10.6921,16.7707,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,212771,0 +101,10.5466,16.4549,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,151001,0 +102,10.4898,16.4835,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,170844,0 +103,10.6744,17.3981,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,207526,0 +104,10.7663,16.2897,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,152194,0 +105,10.8568,16.3616,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,167972,0 +106,10.8929,16.5714,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,208871,0 +107,10.5644,16.3220,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,165427,0 +108,10.6240,16.4470,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,171503,0 +109,10.8420,16.3801,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,178722,0 +110,10.4832,16.2950,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,182462,0 +111,10.6298,16.4681,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,184502,0 +112,10.7074,16.3870,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,156986,0 +113,10.6346,16.3247,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,130598,0 +114,10.5774,17.2490,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,125835,0 +115,10.5610,16.4336,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,191235,0 +116,10.5132,17.3645,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,217786,0 +117,10.7220,16.5373,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,159090,0 +118,10.4961,16.5218,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,176002,0 +119,10.6454,16.4999,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,171766,0 +120,10.6298,16.4002,0.0797,0.0000,0,0,0.0000,0,0.0000,0,1,0,386242,0 +121,10.9957,17.4074,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,163298,0 +122,11.1423,16.3208,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,127963,0 +123,10.9385,16.6793,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,129786,0 +124,11.0123,16.6672,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,129343,0 +125,10.8227,16.8373,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,170498,0 +126,10.6632,17.0080,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,167608,0 +127,11.0835,17.5437,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,171103,0 +128,11.1288,17.2360,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,131108,0 +129,10.9149,16.8768,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,117385,0 +130,10.7310,16.8734,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,130261,0 +131,10.9019,16.8151,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,205343,0 +132,10.8488,17.2462,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,224962,0 +133,10.5827,16.7715,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,159593,0 +134,11.0769,16.8664,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,177529,0 +135,10.5468,17.4344,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,214676,0 +136,11.1962,17.4985,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,155974,0 +137,11.0434,17.0474,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,214928,0 +138,11.1676,17.2485,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,164138,0 +139,10.7136,17.1197,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,222329,0 +140,10.8363,16.6875,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,166455,0 +141,10.5809,17.0142,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,183885,0 +142,10.7835,17.2127,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,227664,0 +143,11.1947,17.5830,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,178312,0 +144,10.9805,16.6540,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,159669,0 +145,10.5915,16.8013,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,129399,0 +146,10.8641,17.0558,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,159656,0 +147,11.0326,17.1585,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,184015,0 +148,11.3910,17.3861,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,221192,0 +149,11.0336,17.0953,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,159639,0 +150,11.4143,16.8559,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,178563,0 +151,10.9219,16.9975,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,173218,0 +152,10.8945,16.9368,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,170799,0 +153,10.7195,16.8910,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,172194,0 +154,11.0147,17.1442,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,177002,0 +155,10.5277,16.9227,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,180364,0 +156,10.6666,16.9925,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,177580,0 +157,10.4394,16.9438,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,184634,0 +158,11.1681,16.8746,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,187186,0 +159,10.7142,17.0155,0.0293,0.0000,0,0,0.0000,0,0.0000,0,0,0,187416,0 +160,10.8085,17.7178,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,116248,0 +161,10.7792,17.2239,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,133595,0 +162,10.8644,17.0453,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,154958,0 +163,10.8819,17.2428,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,181302,0 +164,10.5824,17.4670,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,211846,0 +165,10.5902,16.7586,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,151203,0 +166,10.6898,16.7733,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,171254,0 +167,10.7331,16.8355,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,208813,0 +168,10.9069,16.6447,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,153521,0 +169,10.5105,16.8565,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,167595,0 +170,11.1835,16.6212,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,170307,0 +171,10.5791,16.7705,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,218372,0 +172,10.5923,16.9147,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,164159,0 +173,10.5449,16.9814,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,178412,0 +174,10.6732,17.1286,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,180319,0 +175,11.0703,16.9503,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,184247,0 +176,10.8657,17.1683,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,157928,0 +177,10.7936,17.0425,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,129244,0 +178,10.5623,16.9097,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,157503,0 +179,10.8910,16.7838,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,182607,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.txt new file mode 100644 index 0000000..a75cf80 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-bgra +resolution=4096x2304 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=10.801 +avg_encode_latency_ms=17.626 +p95_encode_latency_ms=18.046 +max_encode_latency_ms=59.734 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=31489975 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.csv new file mode 100644 index 0000000..e88c68d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,18.9095,167.9398,0.0350,0.0000,0,0,0.0000,0,0.0000,0,1,0,128438,0 +1,36.4850,113.7513,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,73894,0 +2,58.4383,83.3035,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,116454,0 +3,19.6545,91.7993,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,142439,0 +4,18.9175,101.7248,0.0781,0.0000,0,0,0.0000,0,0.0000,0,0,0,196548,0 +5,18.6428,111.5023,0.0313,0.0000,0,0,0.0000,0,0.0000,0,0,0,169683,0 +6,17.5338,122.5602,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,178022,0 +7,23.0098,128.1664,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,179490,0 +8,17.1993,139.3783,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,160984,0 +9,16.6608,151.6495,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,220298,0 +10,19.1713,160.8423,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,170256,0 +11,16.6217,172.6280,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,178593,0 +12,18.2477,182.8332,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,172545,0 +13,16.6822,194.6243,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,184165,0 +14,17.3236,205.8263,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,184684,0 +15,18.5969,215.8138,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,189364,0 +16,16.9359,227.2332,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,148003,0 +17,16.5391,239.2063,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,176902,0 +18,18.2918,249.7104,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,178803,0 +19,16.6483,261.3980,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,176357,0 +20,19.2820,271.4905,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,216192,0 +21,18.2149,281.8906,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,191331,0 +22,18.2140,292.2867,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,202887,0 +23,17.4025,303.4698,0.0360,0.0000,0,0,0.0000,0,0.0000,0,0,0,198325,0 +24,16.6471,315.3352,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,166002,0 +25,17.0524,327.1547,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,204199,0 +26,18.6621,337.1014,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,201938,0 +27,17.0042,348.0348,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,172422,0 +28,20.5777,352.3775,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,208882,0 +29,17.8260,355.4362,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,177328,0 +30,18.1990,355.1207,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,183019,0 +31,18.2752,354.6459,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,188084,0 +32,18.9031,353.5521,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,104324,0 +33,18.2388,353.2123,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,173487,0 +34,18.4418,352.7569,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,151982,0 +35,18.0445,353.1884,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,179511,0 +36,17.8053,354.4851,0.0486,0.0000,0,0,0.0000,0,0.0000,0,0,0,211245,0 +37,18.3126,353.8791,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,184353,0 +38,17.2587,354.9266,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,195538,0 +39,16.7588,355.3805,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,192906,0 +40,18.3714,353.6455,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,194061,0 +41,18.7561,352.7793,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,157032,0 +42,17.0278,354.9054,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,202836,0 +43,17.2892,354.5676,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,167874,0 +44,18.0028,354.0284,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,204274,0 +45,17.6065,355.4113,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,173518,0 +46,17.3465,355.8510,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,179768,0 +47,17.3459,356.1056,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,184830,0 +48,18.0847,354.6478,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,127384,0 +49,17.4341,354.3283,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,179217,0 +50,17.1635,354.5147,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,158037,0 +51,17.5514,353.8523,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,182903,0 +52,18.0343,354.2357,0.0246,0.0000,0,0,0.0000,0,0.0000,0,0,0,217983,0 +53,18.3612,353.4955,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,154911,0 +54,17.7980,354.0764,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,172045,0 +55,18.9585,352.3062,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,172713,0 +56,18.0560,353.3283,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,174525,0 +57,16.6925,355.0669,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,170095,0 +58,17.4597,353.8988,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,176865,0 +59,18.1600,353.2670,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,179266,0 +60,16.9001,349.8698,0.0615,0.0000,0,0,0.0000,0,0.0000,0,1,0,355706,0 +61,16.9647,350.1000,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,166473,0 +62,17.4311,349.4502,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,152985,0 +63,17.4919,349.0373,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,138399,0 +64,17.8010,347.7194,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,82161,0 +65,17.5980,346.9741,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,144086,0 +66,18.1697,346.6598,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,124534,0 +67,17.7809,347.0634,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,163298,0 +68,17.8777,348.0333,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,186949,0 +69,19.0827,346.7452,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,135905,0 +70,17.0739,348.3567,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,147127,0 +71,17.3191,347.8196,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,151194,0 +72,17.1261,347.6419,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,143482,0 +73,17.0844,352.5555,0.0523,0.0000,0,0,0.0000,0,0.0000,0,0,0,187579,0 +74,17.3648,352.8341,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,182125,0 +75,17.5118,352.7173,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,183157,0 +76,20.5981,350.4993,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,178540,0 +77,18.3690,353.6285,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,189056,0 +78,20.4676,351.9719,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,188175,0 +79,18.2823,354.3931,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,190122,0 +80,17.2552,355.1210,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,125403,0 +81,17.5518,354.1022,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,182693,0 +82,18.5380,353.1647,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,161381,0 +83,17.1073,354.9195,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,188269,0 +84,16.8893,356.3475,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,225396,0 +85,17.1859,356.3566,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,193728,0 +86,17.3936,356.1951,0.0354,0.0000,0,0,0.0000,0,0.0000,0,0,0,205815,0 +87,17.0239,356.6376,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,167487,0 +88,16.5084,357.0741,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,173519,0 +89,17.6827,355.9597,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,209832,0 +90,17.5628,355.9606,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,170908,0 +91,17.3605,355.8318,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,218566,0 +92,17.6590,355.2713,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,167597,0 +93,17.1792,356.1482,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,184707,0 +94,16.7970,356.3390,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,186874,0 +95,17.4236,355.9841,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,190550,0 +96,17.1678,355.1375,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,107330,0 +97,17.0905,354.2060,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,174266,0 +98,16.9893,354.1622,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,153121,0 +99,17.2630,353.4798,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,183902,0 +100,17.2575,354.2587,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,214272,0 +101,17.2921,354.3220,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,185790,0 +102,16.9301,355.0962,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,195946,0 +103,17.4414,354.4248,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,161595,0 +104,17.5666,354.2911,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,201708,0 +105,18.3095,353.6090,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,160075,0 +106,18.1997,353.9654,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,204102,0 +107,18.3369,353.9696,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,168150,0 +108,17.5923,353.9780,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,169205,0 +109,16.5977,356.4991,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,181162,0 +110,17.4092,355.7072,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,181628,0 +111,17.5742,355.5356,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,185723,0 +112,17.2022,355.1819,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,128047,0 +113,17.1026,354.3919,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,180119,0 +114,18.1739,353.0866,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,159331,0 +115,17.1391,353.5887,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,184878,0 +116,16.8481,355.3437,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,218038,0 +117,16.9218,354.8930,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,155144,0 +118,16.9969,355.2576,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,171671,0 +119,17.3929,354.6460,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,173615,0 +120,17.5493,349.8032,0.0380,0.0000,0,0,0.0000,0,0.0000,0,1,0,336270,0 +121,17.2897,349.9338,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,147648,0 +122,18.1256,348.8458,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,142967,0 +123,17.0274,349.6104,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,124338,0 +124,16.9173,349.6968,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,123115,0 +125,17.8582,348.8040,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,140598,0 +126,16.9535,349.5659,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,139055,0 +127,17.5767,348.9634,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,170930,0 +128,18.1488,347.6659,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,79880,0 +129,17.5391,347.1583,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,144393,0 +130,17.4801,347.2019,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,140089,0 +131,17.4381,347.6469,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,198427,0 +132,16.8465,348.9580,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,183251,0 +133,16.7222,354.0050,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,168310,0 +134,17.0807,353.5507,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,143526,0 +135,18.2061,352.5513,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,181215,0 +136,16.9231,354.4677,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,166537,0 +137,17.4165,354.4477,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,177263,0 +138,17.7608,354.6100,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,178435,0 +139,16.7277,355.8462,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,180433,0 +140,17.1466,355.6714,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,175770,0 +141,16.9120,356.5003,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,187362,0 +142,17.1426,356.7220,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,187085,0 +143,17.4232,356.6096,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,190383,0 +144,17.1736,356.1448,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,154846,0 +145,16.8570,355.5982,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,178110,0 +146,17.6134,354.8522,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,159075,0 +147,17.6466,354.9829,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,186725,0 +148,17.0639,356.1924,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,224244,0 +149,17.0579,356.8518,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,194368,0 +150,18.3868,355.4454,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,204618,0 +151,18.0358,356.0348,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,167981,0 +152,17.4794,356.9126,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,210023,0 +153,16.8904,356.9459,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,163720,0 +154,17.6735,356.4478,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,212677,0 +155,17.6337,356.1675,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,173146,0 +156,17.3805,357.0348,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,211548,0 +157,17.7634,356.8643,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,179448,0 +158,17.9347,356.5708,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,184983,0 +159,16.9770,357.8348,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,189441,0 +160,17.0822,357.1839,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,106058,0 +161,17.4261,355.9987,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,174249,0 +162,17.0989,355.8827,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,153054,0 +163,17.0239,356.0241,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,181364,0 +164,16.9890,356.7362,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,214867,0 +165,17.2205,356.4683,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,185422,0 +166,17.4029,356.8328,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,195222,0 +167,17.0085,357.1544,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,194842,0 +168,17.4162,356.7783,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,161875,0 +169,17.3758,356.9120,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,200355,0 +170,16.9020,357.1900,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,163377,0 +171,17.0005,357.5013,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,173688,0 +172,17.2256,357.2654,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,206990,0 +173,17.7852,357.3681,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,174717,0 +174,17.1592,358.0484,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,181563,0 +175,17.2613,357.9235,0.0919,0.0000,0,0,0.0000,0,0.0000,0,0,0,185658,0 +176,17.3305,357.2285,0.0895,0.0000,0,0,0.0000,0,0.0000,0,0,0,126163,0 +177,17.0168,356.4540,0.1265,0.0000,0,0,0.0000,0,0.0000,0,0,0,156949,0 +178,17.3018,355.6174,0.0907,0.0000,0,0,0.0000,0,0.0000,0,0,0,162894,0 +179,17.6934,354.9840,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,186030,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.txt new file mode 100644 index 0000000..25356b2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-bgra +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.944 +avg_encode_latency_ms=331.121 +p95_encode_latency_ms=357.156 +max_encode_latency_ms=358.048 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=31590180 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.csv new file mode 100644 index 0000000..403f09b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.csv @@ -0,0 +1,91 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.5080,41.5034,0.0632,0.0000,0,0,0.0000,0,0.0000,0,1,0,258880,0 +1,12.0986,18.9848,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,106762,0 +2,11.3027,24.2142,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,75795,0 +3,12.2059,19.1023,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,56949,0 +4,12.1780,19.1984,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,51998,0 +5,12.3840,19.0420,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,23407,0 +6,12.1226,18.8407,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8092,0 +7,12.5986,19.2993,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7309,0 +8,13.2330,19.2774,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,36285,0 +9,13.1590,19.0493,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3693,0 +10,13.1077,18.8611,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4739,0 +11,12.8051,19.3753,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4317,0 +12,13.6535,19.1011,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,32209,0 +13,12.4831,19.8532,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4962,0 +14,12.4091,19.0335,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6580,0 +15,12.6471,19.0437,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5631,0 +16,13.5227,18.8708,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,33065,0 +17,13.0612,18.9446,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,8440,0 +18,12.9455,18.8623,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6289,0 +19,12.3860,18.7892,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5127,0 +20,12.9395,18.9920,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,32448,0 +21,12.7952,19.0199,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3733,0 +22,12.9487,18.8785,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3582,0 +23,12.7662,18.9002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3396,0 +24,12.4970,18.9747,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,31372,0 +25,13.0010,19.0274,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2634,0 +26,12.6535,18.8621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2540,0 +27,13.2012,18.8835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +28,13.1423,18.6662,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,30788,0 +29,12.7788,19.7345,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +30,13.3558,18.7888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3450,0 +31,13.1205,18.6560,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3269,0 +32,13.0002,18.8454,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,26066,0 +33,13.0323,18.6927,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4187,0 +34,13.0989,18.9035,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3096,0 +35,12.5209,18.8246,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2619,0 +36,13.1985,18.6883,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,31206,0 +37,13.2457,19.1015,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2582,0 +38,11.6727,19.0122,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2654,0 +39,11.3280,19.2243,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2726,0 +40,12.0256,19.1015,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,29737,0 +41,11.6664,18.9308,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +42,11.5429,19.7175,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2606,0 +43,11.7623,19.3962,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2650,0 +44,12.3270,19.1690,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,29470,0 +45,12.2698,19.8551,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +46,12.6720,19.0955,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3179,0 +47,13.0635,18.8997,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2728,0 +48,12.7302,18.7680,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,30688,0 +49,12.8418,18.7018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4406,0 +50,12.7871,18.8006,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2864,0 +51,13.3201,18.6542,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2933,0 +52,12.4611,19.1263,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,32061,0 +53,12.7656,19.0440,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2866,0 +54,12.8595,18.8921,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2778,0 +55,13.2043,18.7745,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2840,0 +56,13.0296,18.7261,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,31678,0 +57,13.1847,18.6199,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2803,0 +58,13.1021,18.6128,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2793,0 +59,13.0960,18.7510,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2887,0 +60,12.9527,18.6735,0.1039,0.0000,0,0,0.0000,0,0.0000,0,1,0,489501,0 +61,12.1656,19.9611,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,74184,0 +62,12.1883,19.0993,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,73873,0 +63,12.6982,18.8900,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,50415,0 +64,12.7527,18.7652,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,62875,0 +65,12.3442,19.0580,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,26846,0 +66,12.5802,18.7778,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,18517,0 +67,12.7820,19.2184,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6812,0 +68,12.3553,18.7786,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,36840,0 +69,12.0297,18.9269,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3674,0 +70,12.6463,18.8493,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +71,12.8514,19.0389,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5144,0 +72,12.8217,19.0453,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,31561,0 +73,12.8852,19.0016,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4179,0 +74,12.8731,18.9187,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3765,0 +75,12.8555,18.8520,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3411,0 +76,13.0001,18.8576,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,30472,0 +77,13.1295,19.7888,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +78,13.4748,18.9222,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5302,0 +79,13.3564,18.8870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2828,0 +80,13.5585,18.9485,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,31451,0 +81,13.2336,18.9478,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5669,0 +82,13.2897,18.7718,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3498,0 +83,12.9108,18.9089,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3539,0 +84,13.0068,18.6952,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,32343,0 +85,13.2193,18.8530,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3397,0 +86,13.0266,18.8051,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +87,12.3343,18.9726,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2997,0 +88,12.0144,18.9168,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,31685,0 +89,12.3265,18.9203,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.txt new file mode 100644 index 0000000..b42fc70 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=5120x2880 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=90 +frames_submitted=90 +frames_skipped=0 +frames_encoded=90 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=12.739 +avg_encode_latency_ms=19.296 +p95_encode_latency_ms=19.824 +max_encode_latency_ms=41.503 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2195094 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.csv new file mode 100644 index 0000000..6c1f399 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.csv @@ -0,0 +1,136 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.1991,48.2306,0.0486,0.0000,0,0,0.0000,0,0.0000,0,1,0,213189,0 +1,12.6643,28.9066,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,86768,0 +2,11.8508,43.9709,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,48855,0 +3,11.5566,59.2503,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,69364,0 +4,11.5107,75.2086,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,71867,0 +5,11.2468,90.4833,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,31338,0 +6,11.8135,93.5389,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,15184,0 +7,11.7386,98.9355,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8373,0 +8,11.9495,104.3162,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,37397,0 +9,11.8457,109.4001,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +10,11.8535,114.2545,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4033,0 +11,11.2170,119.5078,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3880,0 +12,11.5005,124.8886,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,31994,0 +13,11.5265,130.3724,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4937,0 +14,11.5482,135.0888,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7346,0 +15,11.8217,139.4369,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6647,0 +16,11.8202,145.4015,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,35694,0 +17,11.8552,150.0213,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10268,0 +18,11.8562,154.5780,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7084,0 +19,11.9354,161.0331,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5873,0 +20,11.8741,165.6046,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,32920,0 +21,12.5929,169.7585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4008,0 +22,12.0595,175.2354,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3705,0 +23,11.6103,180.2842,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3557,0 +24,11.6190,186.2432,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,31410,0 +25,11.6748,192.6758,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2723,0 +26,11.8883,195.1080,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +27,11.9909,200.5078,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2995,0 +28,11.7705,206.7634,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31174,0 +29,11.7398,212.3718,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2861,0 +30,11.8064,217.3214,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3667,0 +31,11.7338,222.2508,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3542,0 +32,12.0084,228.2955,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,26441,0 +33,11.7365,233.4059,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4810,0 +34,11.9228,233.4392,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3377,0 +35,12.1448,233.1582,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2604,0 +36,12.3461,234.3477,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,31194,0 +37,12.5790,232.4780,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2613,0 +38,12.5395,231.7895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +39,12.4715,231.6030,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2637,0 +40,12.5178,232.3569,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,29742,0 +41,12.1048,231.6981,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2637,0 +42,12.5237,231.1855,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2649,0 +43,12.5165,230.5976,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +44,12.4038,232.0616,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,29452,0 +45,12.4675,231.1920,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +46,12.2496,231.8206,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3266,0 +47,12.3259,231.6125,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2827,0 +48,12.3460,233.1012,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,30548,0 +49,12.4589,232.0075,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5099,0 +50,13.5251,231.5016,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3077,0 +51,12.2292,232.0960,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2899,0 +52,11.6023,235.1787,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,32080,0 +53,12.0199,233.1190,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3041,0 +54,12.2138,232.0557,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2940,0 +55,12.3239,231.7716,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3066,0 +56,12.7076,232.9614,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,31639,0 +57,12.3316,231.6215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2880,0 +58,12.4214,231.0545,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2872,0 +59,12.2103,231.2902,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2962,0 +60,12.6891,226.8713,0.0858,0.0000,0,0,0.0000,0,0.0000,0,1,0,489501,0 +61,12.3334,227.2721,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,74184,0 +62,12.1287,228.4087,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,73873,0 +63,12.2285,228.8176,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,50415,0 +64,12.2762,229.6273,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,62875,0 +65,12.3608,228.3402,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,26846,0 +66,12.6622,228.5223,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,18517,0 +67,12.2211,228.7952,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6812,0 +68,12.3087,230.1844,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,36840,0 +69,12.0170,235.0290,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3674,0 +70,12.3921,232.5967,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +71,12.7082,231.1718,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5144,0 +72,12.8141,231.8583,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,31561,0 +73,12.4457,230.9752,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4179,0 +74,12.8797,230.1708,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3765,0 +75,12.0307,231.0028,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3411,0 +76,12.4444,231.6324,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,30472,0 +77,12.4783,231.2462,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +78,12.0252,231.0230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5302,0 +79,12.5194,230.3842,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2828,0 +80,11.8157,232.4121,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,31451,0 +81,11.9441,231.3131,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5669,0 +82,12.0347,231.3325,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3498,0 +83,11.9050,231.6385,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,3539,0 +84,12.0330,232.8941,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,32343,0 +85,11.9185,232.0187,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3397,0 +86,11.9865,231.2357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +87,11.9962,231.5181,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2997,0 +88,12.1937,232.9323,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,31685,0 +89,12.5007,231.1736,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 +90,12.2442,231.8208,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2752,0 +91,11.8877,231.8385,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2800,0 +92,12.4098,232.5895,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,30827,0 +93,12.3440,232.3564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2893,0 +94,12.4192,232.6612,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3849,0 +95,12.4528,232.0850,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3704,0 +96,12.1600,233.3884,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,89206,0 +97,12.4514,231.7412,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4215,0 +98,12.2885,231.8571,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3443,0 +99,12.5141,231.6917,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,2703,0 +100,12.4846,233.0863,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,31364,0 +101,12.5247,231.2182,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2814,0 +102,12.6002,230.4220,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2958,0 +103,12.6439,230.1357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2996,0 +104,12.3965,231.8316,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,29926,0 +105,12.2085,231.0044,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3005,0 +106,11.8498,231.3123,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2971,0 +107,12.0377,231.3983,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3016,0 +108,11.7947,232.5521,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,29638,0 +109,11.8509,232.0557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3230,0 +110,11.9724,232.4020,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,3741,0 +111,11.9724,231.8604,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3248,0 +112,11.8417,233.3505,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,31059,0 +113,11.8661,232.2135,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4956,0 +114,11.7417,232.6636,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3240,0 +115,11.9139,232.2937,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +116,11.6460,233.7635,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,32299,0 +117,11.5262,232.7570,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3438,0 +118,11.5661,231.8990,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3294,0 +119,11.7234,231.2763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3471,0 +120,11.8208,226.4397,0.0735,0.0000,0,0,0.0000,0,0.0000,0,1,0,454386,0 +121,12.1673,225.4333,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,72311,0 +122,11.9249,225.5759,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,32746,0 +123,12.3174,224.9811,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,35941,0 +124,11.8180,227.6607,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,47133,0 +125,11.8426,227.2980,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,14468,0 +126,12.0162,226.2766,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15910,0 +127,11.8317,226.4337,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13154,0 +128,11.9882,227.4787,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,31058,0 +129,11.7860,232.7196,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8284,0 +130,11.7827,232.1614,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6601,0 +131,11.6160,232.2379,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +132,12.3998,232.8216,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,31330,0 +133,19.9271,222.3926,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3088,0 +134,12.5547,229.6717,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,3014,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.txt new file mode 100644 index 0000000..620234a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=5120x2880 +target_fps=45 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=135 +frames_submitted=135 +frames_skipped=0 +frames_encoded=135 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=12.173 +avg_encode_latency_ms=209.283 +p95_encode_latency_ms=233.362 +max_encode_latency_ms=235.179 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3287701 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.csv new file mode 100644 index 0000000..ac35d52 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.5513,70.9139,0.0345,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,4.8960,30.9690,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,5.0213,33.7605,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,5.0316,36.1824,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.6431,36.8588,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.8622,26.3545,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.7793,16.2040,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.1567,10.7340,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.1860,10.8690,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.2885,10.9304,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.2910,10.7911,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.2097,10.6904,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.2177,11.1619,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,4.9525,10.7468,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.3414,11.2060,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.3881,10.8571,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.3153,11.1143,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.4214,11.2502,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.2687,10.8334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.2352,10.6820,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.4127,10.6221,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.2255,10.5106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.2547,10.6274,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.3764,10.7506,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.2333,10.6868,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.0786,10.7283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.6174,10.7097,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.3993,10.6682,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.4997,11.0132,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.4895,10.7444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,6.0872,10.8154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.2588,10.8895,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.2572,10.9269,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.1532,10.8007,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.2603,10.8837,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.2842,10.7862,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.0274,10.8607,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.1580,10.8707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.1387,11.0060,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.1685,10.8521,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,4.9160,10.8208,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.3049,10.8125,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.1880,10.7043,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.2221,11.0599,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.2528,11.1441,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.1585,10.8488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.2540,10.7304,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.1920,10.8904,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.2622,10.7440,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.1297,10.7358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.1349,10.7255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.1180,10.9288,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.2011,10.8673,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.2339,11.1209,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.1400,10.8291,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.0613,11.0945,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,4.6995,11.1270,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,4.8101,10.8094,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,4.7265,10.8310,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,4.8255,10.9031,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,4.7800,11.5464,0.0615,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,4.7304,11.1286,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,4.5207,11.0462,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.0068,10.8707,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,4.8705,10.9383,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,4.6633,10.8498,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,4.5053,10.9950,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,4.5474,11.1163,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,4.5442,10.9040,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,4.7001,11.1873,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,4.5234,11.1405,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,4.4939,11.1298,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,4.6233,11.1082,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,4.9024,10.6791,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,4.5919,10.9278,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,4.5320,10.9667,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,4.5733,11.1835,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,4.8515,11.1510,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.1963,10.8778,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.1764,11.0239,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.1518,10.8996,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.2097,11.0783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,4.9706,10.7565,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,4.6853,11.0683,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,4.8366,11.0419,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,4.8522,10.9459,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,4.8573,10.9517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.1384,11.2175,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.1518,11.0157,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.1611,11.1907,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.1787,10.9609,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.2611,11.0617,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,4.5404,11.3184,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.1996,10.8204,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.1936,10.5817,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.6323,10.8944,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,4.8627,11.0473,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,4.6786,11.1330,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,4.6984,11.3981,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,4.8372,10.9618,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.3031,11.0316,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.1015,10.8529,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.2341,10.9091,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.0854,10.7955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.1063,10.8813,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.1190,10.7437,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.6706,10.7412,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.6241,10.9946,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.6087,11.1384,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.7107,10.8202,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.7714,11.3830,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.6782,10.9170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.7227,10.8568,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.6124,10.8738,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.5632,10.8074,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.5985,10.9696,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.6199,10.7555,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.5683,10.9751,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.5666,10.5832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.6522,10.6754,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6225,10.7816,0.0434,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.7466,10.7458,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,4.7814,10.6260,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.6189,10.8278,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.6453,11.1025,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,4.8710,11.0751,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,4.8558,11.0420,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,4.8250,10.7991,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,4.7540,10.9993,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.0383,11.5284,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,10.4545,11.3344,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,8.2065,11.3125,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,4.8283,10.8204,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,4.7288,10.6340,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,4.7745,10.8907,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,4.7540,10.8597,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,4.4940,10.9867,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,4.5943,10.7452,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,4.8065,10.7449,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,4.7112,10.6590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.2082,11.1043,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.2905,10.9158,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.3685,11.0148,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.0523,10.8869,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,4.8119,10.7739,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.1797,10.6620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,4.9834,10.8521,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,4.6120,10.8953,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,4.4835,11.0881,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,4.7257,11.3876,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,4.7620,10.8334,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,4.4863,10.8558,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,4.9445,10.9946,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,4.8842,11.0198,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,4.4558,10.6493,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,4.8075,10.5533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,4.8914,11.2781,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.1785,10.7229,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.2122,10.8388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.1395,10.8360,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.3585,10.6601,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.7559,10.5327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.5682,10.5846,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.5331,10.6441,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.5412,10.8646,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.6740,10.7805,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.5538,10.5363,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.6398,10.7202,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.5715,10.8228,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.5598,11.1829,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.6066,10.8289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.5730,10.8890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.5981,11.1783,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.6322,10.7624,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.5566,10.7660,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.1876,11.2902,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.0979,10.6742,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.2492,10.6722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.1288,11.0132,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.1666,10.6490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.txt new file mode 100644 index 0000000..e693550 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.182 +avg_encode_latency_ms=11.879 +p95_encode_latency_ms=11.405 +max_encode_latency_ms=70.914 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1931593 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.csv new file mode 100644 index 0000000..92cbaa5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.7198,32.1767,0.0417,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.8078,11.4228,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.7341,14.0580,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.8223,16.4011,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.6950,16.2661,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.5716,11.5184,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.6185,11.2774,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.7450,11.4815,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.5660,11.2639,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,6.6490,11.4629,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,6.9569,11.4056,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.1407,11.5712,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.0137,11.4180,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,6.4387,11.9652,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,6.7511,11.4536,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.6305,11.5321,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,6.9983,11.2762,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,6.6602,11.4371,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.1593,11.2451,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.3353,11.2899,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.4367,11.2900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.6325,11.3901,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.5920,11.3485,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.6185,11.2936,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.4717,11.6205,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.3529,11.5382,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.1712,11.4543,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.2975,11.5420,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.3659,11.4621,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.1984,11.9031,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.4980,11.2686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.4239,11.3077,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.3899,11.4231,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.5417,11.2663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.4048,11.2335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.3915,11.4697,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.1298,11.3665,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,6.7698,11.3411,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,6.6117,11.4965,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,6.5620,11.4640,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,6.7241,11.2847,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,6.6509,11.3028,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,6.7680,11.1308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,7.0228,11.4471,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,6.9972,11.3832,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.0647,12.0332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.3425,11.4690,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,6.8624,11.3189,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.2362,11.5133,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.2771,11.1799,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,6.9284,11.3960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.2077,11.2773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.4148,11.2520,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.5533,11.3314,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.5115,11.2851,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.5392,11.5404,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,6.9215,11.4883,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,6.8157,11.4902,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,6.6539,11.3286,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,6.7960,11.2935,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,6.7975,11.3944,0.0675,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,6.6110,11.7499,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.0081,11.6210,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,6.7207,11.4703,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,6.7965,11.4368,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,6.8848,11.5117,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,6.6825,11.4605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,6.5820,11.2690,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,6.6950,11.6657,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,10.9163,11.5299,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,9.5202,11.5901,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,6.5051,11.3700,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,6.5674,11.4723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,6.7032,11.6341,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.0543,11.7300,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.0718,11.6960,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,6.9911,12.0545,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,7.2900,12.1337,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,7.5465,11.3891,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,7.6582,11.2827,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.5964,11.4571,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.5650,11.4376,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.2757,11.4186,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.1768,11.3787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,6.8801,11.4259,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,6.8552,11.5022,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,6.6722,11.5228,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.1353,11.4622,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,6.9295,11.4175,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.0507,11.2927,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,6.6389,11.8700,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,6.5492,11.4594,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,6.6720,11.4044,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,6.7346,11.8407,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,6.5902,11.3378,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,6.6604,11.3639,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,6.7485,11.4442,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,6.6246,11.2172,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,6.3510,11.2019,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,6.5824,11.2352,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.5185,11.1325,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,6.8455,11.1875,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,6.8226,11.3712,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.1531,11.2327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.0805,11.2320,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.4602,11.1477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.6361,11.2597,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.1033,11.3347,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.1398,11.2869,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.1284,11.8110,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.1439,11.2599,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,6.9832,11.3500,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,6.9858,11.3842,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,6.9075,11.3555,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.1317,11.3840,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,6.7044,11.3678,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,6.6338,11.3674,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,6.6262,11.3697,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,6.9210,11.2895,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.1015,11.2435,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,6.8356,11.1608,0.0563,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,6.7941,11.4693,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,6.9577,11.4098,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.0164,11.3144,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,6.7026,11.2936,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,6.9209,11.7665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,6.6596,11.2952,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,6.7493,11.5398,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,6.8787,11.4687,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,6.8268,11.2343,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.0022,11.4730,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.0642,11.2033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.1621,11.3157,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.3639,11.3175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.2198,11.2570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.3807,11.2606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.3705,11.1301,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.5324,11.1420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.4396,11.0573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.2957,11.1465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.2136,11.2159,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.4517,12.1707,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.1489,11.3470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.2913,11.2972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.4077,11.2470,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.4802,11.1876,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.4953,11.0872,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.5891,11.0830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.6033,11.0720,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.5645,11.1227,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.4014,11.2649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.1923,11.1134,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.4919,11.1585,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.3262,11.1903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.1053,11.3329,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.2785,11.3255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.4594,11.2615,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.1897,11.6547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.3926,11.1426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.4268,11.1325,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.1883,11.2645,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.2663,11.0898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.2862,11.2750,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.1797,11.2388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.4135,11.2080,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.3549,11.1710,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.2910,11.1841,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.2976,11.1452,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.3704,11.1428,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.3494,11.1883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.2582,11.2671,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.2191,11.1148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.2340,11.1716,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.2272,11.6623,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.2093,11.1502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.0987,11.1524,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.1658,11.0965,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.3602,11.1608,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.3909,11.1360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.3522,11.1748,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.txt new file mode 100644 index 0000000..44e38a2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.118 +avg_encode_latency_ms=11.557 +p95_encode_latency_ms=11.906 +max_encode_latency_ms=32.177 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2495662 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.csv new file mode 100644 index 0000000..fd6ab8d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.3976,32.2910,0.0462,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.5828,12.4922,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.3192,15.9418,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2496,19.3577,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.2814,22.6097,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.3992,15.6495,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4999,12.5697,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.6935,12.5635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.7008,12.6381,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.7121,12.6258,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,8.0940,12.6166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,8.1921,12.5041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,8.1007,12.5347,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8762,13.0324,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8356,12.4694,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.9233,12.4637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.8748,12.5965,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.9000,12.5246,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,8.0054,12.6338,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.9160,12.6859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9356,12.6447,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.9505,12.6020,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,8.0905,12.5578,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.8895,12.5082,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.8260,12.5750,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.9452,12.4896,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,8.2578,12.4564,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,8.2546,12.4108,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.9402,12.6278,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.7478,13.1149,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8400,12.4564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.8262,12.4908,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9054,12.5234,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.8413,12.5517,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.4547,12.7439,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.3520,12.7568,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.0543,12.8421,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.4735,12.5437,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.6912,12.7575,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.3377,12.6393,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.3332,13.4480,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,13.7430,13.0167,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,11.1450,12.9874,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.2939,12.8929,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.7272,12.8185,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.5068,13.2846,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.2617,12.5168,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,9.4067,12.8477,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.6223,12.6651,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.5628,12.6683,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.3728,12.5253,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.8279,12.6995,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.4319,12.6979,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.5515,12.6206,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.7929,12.6245,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.7432,12.5207,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,8.1170,12.6601,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,8.1919,12.5714,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9188,12.5580,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.5115,12.5875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7577,12.4666,0.0779,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.7581,12.9908,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.8053,12.7572,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.5110,12.6579,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.5988,12.6654,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.7225,12.5075,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.7456,12.5048,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.6916,12.4200,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,8.1646,12.4711,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.2123,12.4882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,8.1112,12.4022,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.9191,12.4419,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.7513,12.4688,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7733,12.4904,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.9848,12.4477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,8.0960,12.4727,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.9715,12.5625,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.8185,13.1401,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.7404,12.5636,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.6600,12.7467,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.3552,12.5594,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.3885,12.5988,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.4637,12.6000,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.4966,12.5807,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.6187,12.5877,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.7456,12.6368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.9296,12.4913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.2469,12.5712,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.9076,12.4769,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5548,12.3620,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.2689,12.5052,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.4081,12.6895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7337,12.7207,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,8.2292,13.4978,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.6730,12.7768,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.4198,12.6125,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.4462,12.7190,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.7855,12.5775,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.7259,12.6681,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.4597,12.6113,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.5898,12.6523,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.5853,12.6473,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.7884,12.6467,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,8.1433,12.5370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7968,12.6361,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8092,12.6467,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8377,12.6477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.6333,12.5805,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.7394,12.5562,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8268,13.1558,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8507,12.5591,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.7561,12.4531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.8599,12.4960,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.9309,12.4096,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8740,12.5129,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.7325,12.4587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.7466,12.4501,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.9369,12.4985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.9248,12.4641,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.7904,12.5250,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,8.0426,12.4093,0.0770,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,8.0524,12.6260,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.1246,12.4947,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.0464,12.5918,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,8.1004,12.5437,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.0997,13.3499,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.9098,12.6151,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.4986,12.5387,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.3194,12.6788,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.4749,12.7776,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.3780,12.7425,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.5485,12.4592,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.9090,12.9582,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.4701,12.6035,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.4093,12.7063,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,9.1815,12.6041,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.4219,12.6948,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.4942,12.8475,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.7279,13.1993,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.9003,13.2167,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.8449,12.7867,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.2101,13.1929,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.2683,12.6926,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.5152,12.6411,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.6081,12.6562,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.6664,12.8431,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.6976,12.6717,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.6348,12.9007,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.5641,12.8982,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.1144,12.4236,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.4366,12.8193,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.6991,12.8773,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.6803,12.9237,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.5853,12.7218,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.7365,12.8241,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.9900,12.7744,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.7640,12.6255,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.8919,13.1832,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.8763,12.8666,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.9188,12.8376,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.0973,12.7036,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.6285,12.7147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.9160,12.5469,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,8.3941,12.8106,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,8.6313,12.6266,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,8.2160,12.5195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.0976,12.5701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,8.4106,12.3803,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.2555,12.6084,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.2358,12.5801,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8619,12.5762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.7990,12.4785,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8411,12.6700,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.8288,13.2430,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7246,12.6310,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7249,12.6506,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.7690,12.6477,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.7646,12.4637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8016,12.5533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8205,12.5551,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.txt new file mode 100644 index 0000000..a504ef9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.865 +avg_encode_latency_ms=12.898 +p95_encode_latency_ms=13.245 +max_encode_latency_ms=32.291 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2648402 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.csv new file mode 100644 index 0000000..606a3cb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,13.4586,47.7887,0.0490,0.0000,0,0,0.0000,0,0.0000,0,1,0,208564,0 +1,11.5306,28.4413,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,61378,0 +2,11.2175,43.4201,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,34423,0 +3,11.1321,58.5701,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,45833,0 +4,11.0291,75.0813,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,83686,0 +5,10.9585,90.7546,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,50346,0 +6,10.9233,106.0081,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,19392,0 +7,10.8227,121.8476,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9525,0 +8,11.0727,138.2174,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,38777,0 +9,11.0296,152.8584,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6092,0 +10,10.8597,168.2215,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6409,0 +11,11.0320,179.4737,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3790,0 +12,11.0235,191.2518,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,31363,0 +13,10.8815,202.4722,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5592,0 +14,11.2890,212.5900,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,8186,0 +15,11.0445,223.4390,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7688,0 +16,10.8800,235.7614,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,36070,0 +17,11.8468,233.8622,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11935,0 +18,12.0763,233.6411,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,8514,0 +19,11.9802,233.4357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7010,0 +20,12.2860,234.4208,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,33032,0 +21,12.4325,232.3015,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,5418,0 +22,12.2888,231.2728,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5012,0 +23,12.2301,230.9513,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4849,0 +24,12.4038,231.5784,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,31454,0 +25,12.4084,229.9404,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3888,0 +26,12.3837,229.5683,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3920,0 +27,12.4260,229.7687,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3983,0 +28,11.4919,232.4658,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,31112,0 +29,11.5554,231.8333,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4876,0 +30,11.2602,232.1994,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6684,0 +31,11.4972,232.4153,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6798,0 +32,11.7988,233.0658,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,28180,0 +33,11.6303,232.2541,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8442,0 +34,10.8932,233.2940,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6368,0 +35,11.3549,232.7399,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4531,0 +36,11.4248,233.8013,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,32414,0 +37,11.7157,232.2715,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5561,0 +38,11.8534,231.1442,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5401,0 +39,11.8318,231.1171,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,6183,0 +40,11.9832,231.9949,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,30704,0 +41,12.2334,230.6577,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5989,0 +42,12.1559,231.1300,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6109,0 +43,12.0714,231.2888,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6357,0 +44,11.3216,233.4270,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,30501,0 +45,12.2024,232.1240,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8424,0 +46,11.8404,232.5946,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10620,0 +47,14.2617,230.7537,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7618,0 +48,11.3713,234.8333,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,35620,0 +49,11.1623,233.8562,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,12046,0 +50,11.0756,234.5861,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8901,0 +51,11.4460,233.7862,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9030,0 +52,11.7966,234.7331,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,35054,0 +53,11.3294,234.2180,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9840,0 +54,11.8656,232.5815,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9240,0 +55,11.8496,232.6456,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9193,0 +56,12.3000,233.2477,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,35730,0 +57,12.2678,232.1718,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7816,0 +58,12.2507,231.9499,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8017,0 +59,12.0454,232.1962,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8409,0 +60,11.8927,228.2385,0.1013,0.0000,0,0,0.0000,0,0.0000,0,1,0,489501,0 +61,11.9946,227.9950,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,74184,0 +62,12.4017,228.2337,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,73873,0 +63,11.5007,229.8984,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,50415,0 +64,11.7203,231.2398,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,62875,0 +65,11.9019,229.9372,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,26846,0 +66,11.4323,230.3713,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,18517,0 +67,11.7692,230.1067,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6812,0 +68,12.4775,230.3469,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,36840,0 +69,11.6339,235.5118,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3674,0 +70,11.4887,234.0758,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +71,11.4738,233.6616,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,5144,0 +72,11.7105,233.9145,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,31561,0 +73,11.8002,232.7534,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4179,0 +74,11.9130,231.9267,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3765,0 +75,12.1833,231.7006,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3411,0 +76,11.9218,233.0889,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,30472,0 +77,11.7284,233.0037,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +78,12.0073,232.9305,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5302,0 +79,12.2139,232.0576,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2828,0 +80,12.1806,233.6086,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,31451,0 +81,11.7950,233.1541,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5669,0 +82,12.2969,232.0854,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3498,0 +83,11.9292,232.8536,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3539,0 +84,11.6298,234.3290,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,32343,0 +85,11.9790,232.3215,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3397,0 +86,12.0002,231.5505,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +87,12.1381,231.3058,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2997,0 +88,12.3085,232.6737,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,31685,0 +89,12.4490,231.1404,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 +90,12.1593,231.2971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2752,0 +91,12.0174,231.7850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2800,0 +92,12.1949,232.6473,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,30827,0 +93,12.3496,232.5797,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2893,0 +94,11.8943,233.3143,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3849,0 +95,12.0699,232.7797,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3704,0 +96,12.0906,233.7757,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,89206,0 +97,12.3692,232.2974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4215,0 +98,12.1048,232.3517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3443,0 +99,12.3532,232.4767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2703,0 +100,12.4510,233.2897,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,31364,0 +101,12.5678,232.2009,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2814,0 +102,12.4183,231.4163,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2958,0 +103,12.7031,231.0956,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2996,0 +104,12.4523,232.9565,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,29926,0 +105,12.3345,231.9321,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3005,0 +106,12.2993,231.8830,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2971,0 +107,12.1394,231.8928,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3016,0 +108,12.0802,232.9954,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,29638,0 +109,12.2020,232.9534,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3230,0 +110,12.2497,232.3137,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3741,0 +111,12.2703,232.0535,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3248,0 +112,12.2586,233.3000,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,31059,0 +113,12.3840,231.4814,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4956,0 +114,12.2390,231.7568,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3240,0 +115,12.4944,231.4508,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +116,12.6323,233.1453,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,32299,0 +117,12.5061,232.2000,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3438,0 +118,12.2235,231.3379,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3294,0 +119,11.9517,232.2218,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3471,0 +120,12.0032,227.6051,0.0441,0.0000,0,0,0.0000,0,0.0000,0,1,0,454386,0 +121,12.1096,226.9201,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,72311,0 +122,12.4951,227.2030,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,32746,0 +123,12.1407,227.6282,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,35941,0 +124,12.3465,228.6420,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,47133,0 +125,12.3678,228.0494,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14468,0 +126,12.4811,227.3870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15910,0 +127,12.3639,227.6263,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13154,0 +128,12.5763,228.1613,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,31058,0 +129,11.8510,233.7318,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8284,0 +130,12.0369,232.6866,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6601,0 +131,12.1899,231.9972,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +132,12.4095,233.0617,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,31330,0 +133,12.2967,231.8082,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3088,0 +134,12.6690,230.5993,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3014,0 +135,12.5088,231.0352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2921,0 +136,12.1860,232.5935,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,29949,0 +137,12.6077,230.9935,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2760,0 +138,12.3413,231.9852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2665,0 +139,12.4751,231.9142,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2773,0 +140,11.9741,234.0633,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,29581,0 +141,12.5850,232.4667,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3197,0 +142,12.0541,232.7953,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4267,0 +143,12.1305,232.3901,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2669,0 +144,12.3083,233.2274,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31263,0 +145,12.6981,231.7875,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5321,0 +146,12.3141,232.0782,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3213,0 +147,12.4280,231.9302,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3065,0 +148,12.4001,232.9041,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,32110,0 +149,12.3541,231.4918,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +150,12.4084,230.7632,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2951,0 +151,12.1000,231.0550,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2851,0 +152,13.8335,231.1675,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31629,0 +153,12.4180,230.6842,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2763,0 +154,12.5285,230.3010,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2816,0 +155,13.1564,229.8980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2786,0 +156,12.1587,231.7245,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,30895,0 +157,11.9794,231.8250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2865,0 +158,12.2802,232.1952,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3788,0 +159,12.0603,232.0008,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3686,0 +160,12.5322,233.1042,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26553,0 +161,12.5043,231.3813,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4671,0 +162,12.3102,231.7553,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3969,0 +163,12.2752,231.9212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2914,0 +164,12.3113,233.6058,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,31268,0 +165,12.3368,232.6472,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +166,12.4055,231.5233,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +167,12.4526,231.1042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +168,12.5554,233.1550,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,29882,0 +169,12.5225,232.0772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2967,0 +170,12.4939,231.9464,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2997,0 +171,12.5365,232.0958,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3031,0 +172,12.1870,234.0860,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,29601,0 +173,12.3517,233.1028,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3141,0 +174,12.4381,232.9148,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +175,12.3467,233.1295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3190,0 +176,12.8178,234.4801,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,31032,0 +177,12.3083,233.0096,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5054,0 +178,12.0905,234.2591,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +179,12.4221,233.7722,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,3322,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.txt new file mode 100644 index 0000000..90bddf5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=12.062 +avg_encode_latency_ms=222.716 +p95_encode_latency_ms=234.220 +max_encode_latency_ms=235.761 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3845844 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.csv new file mode 100644 index 0000000..0d34690 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,35.7267,0.0587,0.0000,0,0,0.0000,0,0.0000,0,1,0,226401,0 +1,0.0000,40.7021,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,11486,0 +2,0.0000,35.2763,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,59170,0 +3,0.0000,27.0483,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,112653,0 +4,0.0000,23.6702,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,123894,0 +5,0.0000,17.6386,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,74281,0 +6,0.0000,15.3774,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,16826,0 +7,0.0000,15.3123,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6971,0 +8,0.0000,15.5704,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7111,0 +9,0.0000,15.4914,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,17346,0 +10,0.0000,15.1535,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5948,0 +11,0.0000,15.6439,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4235,0 +12,0.0000,15.6896,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4183,0 +13,0.0000,15.5638,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +14,0.0000,14.8931,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,4875,0 +15,0.0000,15.1307,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +16,0.0000,15.1766,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +17,0.0000,15.2489,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +18,0.0000,15.3512,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +19,0.0000,15.2970,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +20,0.0000,15.2240,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +21,0.0000,15.4414,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +22,0.0000,15.4145,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +23,0.0000,14.7432,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +24,0.0000,15.4534,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1869,0 +25,0.0000,15.6733,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +26,0.0000,15.8798,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +27,0.0000,15.6178,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +28,0.0000,15.5909,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +29,0.0000,15.5762,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +30,0.0000,15.9091,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +31,0.0000,16.0370,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +32,0.0000,16.1416,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +33,0.0000,15.9471,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +34,0.0000,15.7752,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1279,0 +35,0.0000,15.5323,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +36,0.0000,16.0947,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +37,0.0000,18.5985,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +38,0.0000,17.2441,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +39,0.0000,16.9309,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,1273,0 +40,0.0000,16.8097,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +41,0.0000,16.5304,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +42,0.0000,17.0068,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +43,0.0000,17.4777,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +44,0.0000,16.7074,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1242,0 +45,0.0000,16.1341,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +46,0.0000,16.5323,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +47,0.0000,16.1603,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +48,0.0000,17.2070,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +49,0.0000,16.0385,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +50,0.0000,16.3067,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +51,0.0000,15.6225,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +52,0.0000,15.3747,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1755,0 +53,0.0000,15.6143,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +54,0.0000,15.8707,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +55,0.0000,15.4404,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +56,0.0000,15.5818,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +57,0.0000,15.6889,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +58,0.0000,15.4234,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +59,0.0000,15.7353,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +60,0.0000,16.2778,0.1365,0.0000,0,0,0.0000,0,0.0000,0,1,0,396288,0 +61,0.0000,15.7885,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +62,0.0000,15.5621,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +63,0.0000,15.3309,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +64,0.0000,15.1970,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +65,0.0000,14.9437,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,21872,0 +66,0.0000,15.7790,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,59215,0 +67,0.0000,15.6203,0.0395,0.0000,0,0,0.0000,0,0.0000,0,0,0,153656,0 +68,0.0000,15.6976,0.0392,0.0000,0,0,0.0000,0,0.0000,0,0,0,158932,0 +69,0.0000,15.7096,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,225166,0 +70,0.0000,14.8892,0.0313,0.0000,0,0,0.0000,0,0.0000,0,0,0,185698,0 +71,0.0000,15.2700,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,177741,0 +72,0.0000,15.1705,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,100404,0 +73,0.0000,15.5488,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,19036,0 +74,0.0000,15.2892,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,22473,0 +75,0.0000,16.0387,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6591,0 +76,0.0000,15.7230,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5640,0 +77,0.0000,15.4504,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5841,0 +78,0.0000,15.5152,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5089,0 +79,0.0000,15.6067,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5103,0 +80,0.0000,15.3465,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5370,0 +81,0.0000,15.2752,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5101,0 +82,0.0000,15.2071,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2263,0 +83,0.0000,15.2830,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +84,0.0000,15.1580,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +85,0.0000,15.2061,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +86,0.0000,15.2605,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1380,0 +87,0.0000,15.3905,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +88,0.0000,15.3677,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +89,0.0000,15.5070,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +90,0.0000,15.7784,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +91,0.0000,15.6450,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 +92,0.0000,15.7186,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 +93,0.0000,19.8918,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 +94,0.0000,15.3576,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1288,0 +95,0.0000,15.1659,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 +96,0.0000,15.4605,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +97,0.0000,15.3782,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +98,0.0000,15.7810,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +99,0.0000,15.3304,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +100,0.0000,15.2873,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +101,0.0000,14.8521,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1664,0 +102,0.0000,15.2814,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2183,0 +103,0.0000,15.0389,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +104,0.0000,15.0816,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1889,0 +105,0.0000,15.3810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +106,0.0000,15.0838,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +107,0.0000,15.0348,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +108,0.0000,14.8679,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +109,0.0000,15.5287,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +110,0.0000,15.5135,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +111,0.0000,15.4105,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +112,0.0000,15.1725,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +113,0.0000,15.1930,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +114,0.0000,15.7835,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +115,0.0000,15.6664,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1283,0 +116,0.0000,15.8421,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1283,0 +117,0.0000,15.0845,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1283,0 +118,0.0000,15.4759,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1283,0 +119,0.0000,15.3979,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +120,0.0000,16.6037,0.2200,0.0000,0,0,0.0000,0,0.0000,0,1,0,459291,0 +121,0.0000,16.6230,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2563,0 +122,0.0000,16.9263,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +123,0.0000,16.6173,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1794,0 +124,0.0000,17.4006,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +125,0.0000,16.8684,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,1635,0 +126,0.0000,16.9284,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +127,0.0000,20.3840,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,1755,0 +128,0.0000,16.3286,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +129,0.0000,17.3576,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,1795,0 +130,0.0000,16.7402,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1607,0 +131,0.0000,19.9208,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1613,0 +132,0.0000,16.9258,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,1610,0 +133,0.0000,17.4343,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +134,0.0000,17.9513,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +135,0.0000,16.7663,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +136,0.0000,16.5810,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +137,0.0000,16.6468,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +138,0.0000,18.1315,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +139,0.0000,18.1964,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +140,0.0000,16.3882,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +141,0.0000,16.2377,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1752,0 +142,0.0000,15.9400,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1606,0 +143,0.0000,15.8798,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +144,0.0000,15.7837,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1751,0 +145,0.0000,16.3361,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +146,0.0000,15.3324,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +147,0.0000,15.9058,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1615,0 +148,0.0000,15.9586,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +149,0.0000,16.6130,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +150,0.0000,16.9007,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +151,0.0000,15.4199,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +152,0.0000,15.6098,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +153,0.0000,18.4020,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1615,0 +154,0.0000,14.8975,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +155,0.0000,15.1816,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +156,0.0000,15.9501,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +157,0.0000,17.8010,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1834,0 +158,0.0000,15.4698,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +159,0.0000,17.0308,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +160,0.0000,16.3295,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +161,0.0000,15.7710,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +162,0.0000,15.5901,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,2041,0 +163,0.0000,15.8959,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2057,0 +164,0.0000,15.7390,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2795,0 +165,0.0000,15.5285,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1998,0 +166,0.0000,15.0271,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +167,0.0000,15.5024,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +168,0.0000,15.8050,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1955,0 +169,0.0000,15.4098,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +170,0.0000,15.1156,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1701,0 +171,0.0000,15.2528,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +172,0.0000,15.5056,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +173,0.0000,15.3800,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +174,0.0000,15.6669,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2064,0 +175,0.0000,15.2670,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2135,0 +176,0.0000,15.2023,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2113,0 +177,0.0000,15.2031,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2283,0 +178,0.0000,14.7479,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +179,0.0000,15.0794,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2100,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.txt new file mode 100644 index 0000000..31d0a7b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=3840x2160 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=16.363 +p95_encode_latency_ms=18.412 +max_encode_latency_ms=40.702 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2934158 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.csv new file mode 100644 index 0000000..2d209bd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.csv @@ -0,0 +1,91 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,51.2246,0.0870,0.0000,0,0,0.0000,0,0.0000,0,1,0,367217,0 +1,0.0000,28.1385,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,22404,0 +2,0.0000,26.2085,0.0938,0.0000,0,0,0.0000,0,0.0000,0,0,0,136950,0 +3,0.0000,25.7831,0.0417,0.0000,0,0,0.0000,0,0.0000,0,0,0,68852,0 +4,0.0000,25.8569,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9222,0 +5,0.0000,24.9823,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,5520,0 +6,0.0000,25.0446,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4828,0 +7,0.0000,24.7599,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4667,0 +8,0.0000,24.7898,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3932,0 +9,0.0000,25.5196,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4027,0 +10,0.0000,25.3265,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3910,0 +11,0.0000,25.4837,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3859,0 +12,0.0000,25.4135,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3723,0 +13,0.0000,25.6305,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,9826,0 +14,0.0000,25.3537,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,124330,0 +15,0.0000,26.0582,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,128982,0 +16,0.0000,26.1146,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,133530,0 +17,0.0000,25.9014,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,146551,0 +18,0.0000,25.7586,0.0383,0.0000,0,0,0.0000,0,0.0000,0,0,0,132848,0 +19,0.0000,25.7057,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,16458,0 +20,0.0000,26.0933,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4264,0 +21,0.0000,25.5828,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,109466,0 +22,0.0000,26.1789,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,119646,0 +23,0.0000,25.9605,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,125743,0 +24,0.0000,24.1368,0.0373,0.0000,0,0,0.0000,0,0.0000,0,0,0,150793,0 +25,0.0000,25.7296,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,143890,0 +26,0.0000,25.7600,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,83709,0 +27,0.0000,25.3968,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8689,0 +28,0.0000,25.4110,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +29,0.0000,25.5055,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4231,0 +30,0.0000,25.8130,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,33147,0 +31,0.0000,25.9163,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,162434,0 +32,0.0000,25.5344,0.0399,0.0000,0,0,0.0000,0,0.0000,0,0,0,180163,0 +33,0.0000,25.9255,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,130397,0 +34,0.0000,26.2419,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,127738,0 +35,0.0000,25.7973,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,63429,0 +36,0.0000,25.6938,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9922,0 +37,0.0000,25.5819,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5130,0 +38,0.0000,25.6974,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +39,0.0000,25.2963,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4487,0 +40,0.0000,26.4241,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +41,0.0000,26.1382,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,3342,0 +42,0.0000,26.8435,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,10951,0 +43,0.0000,26.0179,0.0269,0.0000,0,0,0.0000,0,0.0000,0,0,0,25699,0 +44,0.0000,25.8045,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,81097,0 +45,0.0000,25.8204,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,118731,0 +46,0.0000,25.9713,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,140336,0 +47,0.0000,25.6766,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,119365,0 +48,0.0000,25.5281,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7018,0 +49,0.0000,25.2149,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,4927,0 +50,0.0000,25.9488,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,4965,0 +51,0.0000,25.6870,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5075,0 +52,0.0000,25.4988,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5413,0 +53,0.0000,25.5459,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4313,0 +54,0.0000,25.6003,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4435,0 +55,0.0000,26.1512,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,4196,0 +56,0.0000,26.1635,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3536,0 +57,0.0000,35.9789,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,3396,0 +58,0.0000,26.4733,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,3381,0 +59,0.0000,26.0520,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,3547,0 +60,0.0000,26.1905,0.2008,0.0000,0,0,0.0000,0,0.0000,0,1,0,453427,0 +61,0.0000,25.7520,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8288,0 +62,0.0000,25.9633,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4600,0 +63,0.0000,26.0828,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3986,0 +64,0.0000,26.4740,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4016,0 +65,0.0000,26.1741,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3876,0 +66,0.0000,25.9491,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,4025,0 +67,0.0000,25.7787,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3961,0 +68,0.0000,26.1420,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,4039,0 +69,0.0000,25.7278,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,4193,0 +70,0.0000,25.4592,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3955,0 +71,0.0000,26.1224,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,3931,0 +72,0.0000,25.7466,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,3801,0 +73,0.0000,25.9955,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +74,0.0000,25.6466,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3800,0 +75,0.0000,26.5960,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,3825,0 +76,0.0000,26.0105,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,3960,0 +77,0.0000,26.0768,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,55475,0 +78,0.0000,25.3990,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,102484,0 +79,0.0000,25.8581,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,94295,0 +80,0.0000,25.3670,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,87988,0 +81,0.0000,25.4107,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,105202,0 +82,0.0000,25.6584,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,76146,0 +83,0.0000,25.6624,0.0476,0.0000,0,0,0.0000,0,0.0000,0,0,0,162326,0 +84,0.0000,25.9093,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,131020,0 +85,0.0000,25.5457,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,21770,0 +86,0.0000,25.9858,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5163,0 +87,0.0000,25.6480,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5998,0 +88,0.0000,25.9599,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,11072,0 +89,0.0000,26.7501,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,4905,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.txt new file mode 100644 index 0000000..2e75dcb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=5120x2880 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=90 +frames_submitted=90 +frames_skipped=0 +frames_encoded=90 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=26.199 +p95_encode_latency_ms=26.681 +max_encode_latency_ms=51.225 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4754268 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.csv new file mode 100644 index 0000000..4d3b819 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.csv @@ -0,0 +1,19 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,19.3478,87.0657,0.0365,0.0000,0,0,0.0000,0,0.0000,0,1,0,128438,0 +10,17.5092,38.3300,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,50228,0 +20,18.6441,36.1762,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,84954,0 +30,17.7600,37.6661,0.0629,0.0000,0,0,0.0000,0,0.0000,0,0,0,238321,0 +40,24.4852,38.4965,0.0334,0.0000,0,0,0.0000,0,0.0000,0,0,0,238086,0 +50,33.3806,39.8625,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,248225,0 +60,24.0274,38.7605,0.0639,0.0000,0,0,0.0000,0,0.0000,0,0,0,210151,0 +70,23.0516,37.0075,0.0524,0.0000,0,0,0.0000,0,0.0000,0,0,0,182913,0 +80,24.6141,37.3638,0.0405,0.0000,0,0,0.0000,0,0.0000,0,0,0,206430,0 +90,25.2570,36.9074,0.0482,0.0000,0,0,0.0000,0,0.0000,0,0,0,177111,0 +100,28.1065,37.9486,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,180644,0 +110,30.9440,39.1078,0.0365,0.0000,0,0,0.0000,0,0.0000,0,0,0,249213,0 +120,27.5658,31.9688,0.0924,0.0000,0,0,0.0000,0,0.0000,0,1,0,340974,0 +130,30.7025,37.4709,0.0512,0.0000,0,0,0.0000,0,0.0000,0,0,0,227432,0 +140,28.4093,37.2453,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,200630,0 +150,23.9718,37.1147,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,183734,0 +160,31.9797,38.5443,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,174799,0 +170,31.3603,36.3717,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,153238,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.txt new file mode 100644 index 0000000..928f8b4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-static-skip +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=10 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=18 +frames_skipped=162 +frames_encoded=18 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=25.618 +avg_encode_latency_ms=40.189 +p95_encode_latency_ms=46.943 +max_encode_latency_ms=87.066 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3475521 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.csv new file mode 100644 index 0000000..cf525a1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.csv @@ -0,0 +1,91 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,19.1895,97.5254,0.0341,0.0000,0,0,0.0000,0,0.0000,0,1,0,128438,0 +2,18.4990,61.4456,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,24607,0 +4,17.0156,72.2640,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,49587,0 +6,16.5665,84.2323,0.0638,0.0000,0,0,0.0000,0,0.0000,0,0,0,107004,0 +8,17.0207,80.5891,0.0257,0.0000,0,0,0.0000,0,0.0000,0,0,0,171947,0 +10,17.3554,73.7552,0.0324,0.0000,0,0,0.0000,0,0.0000,0,0,0,147194,0 +12,17.2285,69.8540,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,142339,0 +14,17.7477,65.6093,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,135803,0 +16,18.0539,59.3059,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,155595,0 +18,16.9305,55.7327,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,104400,0 +20,17.3877,50.7864,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,106013,0 +22,16.8528,49.0480,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,134724,0 +24,17.3768,40.3891,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,134067,0 +26,17.3243,36.5666,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,130381,0 +28,17.3697,35.2558,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,132475,0 +30,17.0199,35.6125,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,137020,0 +32,16.9260,35.5642,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,132357,0 +34,17.2697,35.5245,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,96201,0 +36,17.3399,35.2674,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,93819,0 +38,16.9165,35.9594,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,131987,0 +40,17.1490,35.5269,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,124280,0 +42,17.3742,35.6815,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,127483,0 +44,17.1251,35.6453,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,127368,0 +46,17.4185,35.3377,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,122182,0 +48,17.5870,35.3520,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,144534,0 +50,17.4976,35.1542,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,96829,0 +52,17.2142,35.0166,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,102413,0 +54,17.0273,35.7425,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,130383,0 +56,17.5132,35.3314,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,131243,0 +58,17.1944,35.0405,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,127979,0 +60,17.4781,35.6385,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,129613,0 +62,17.4587,35.5819,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,137056,0 +64,17.0165,35.4633,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,130253,0 +66,17.7734,35.4662,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,95908,0 +68,17.1773,35.2706,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,93558,0 +70,17.4292,35.9372,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,130752,0 +72,17.0450,35.7065,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,123784,0 +74,17.4559,35.6829,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,127165,0 +76,17.5667,35.5401,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,127584,0 +78,17.1013,35.2485,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,121081,0 +80,17.9531,35.6360,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,143743,0 +82,16.8498,35.5117,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,96691,0 +84,17.3345,35.3135,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,102381,0 +86,17.0161,36.1320,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,130538,0 +88,17.5341,35.6048,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,130472,0 +90,17.7958,35.4551,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,128700,0 +92,16.9013,37.1297,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,131042,0 +94,18.5506,35.7979,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,135184,0 +96,18.7771,35.8472,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,130634,0 +98,19.1375,35.6647,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,95845,0 +100,16.9786,35.2849,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,92445,0 +102,17.4244,36.4027,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,131323,0 +104,17.4033,35.6976,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,122794,0 +106,17.5255,35.6472,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,126999,0 +108,17.9402,35.4195,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,127145,0 +110,17.8727,35.2321,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,121350,0 +112,17.2732,36.3252,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,145551,0 +114,17.5488,35.2934,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,97133,0 +116,17.4645,35.5465,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,102619,0 +118,17.3670,36.3355,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,129567,0 +120,18.0300,31.1370,0.0610,0.0000,0,0,0.0000,0,0.0000,0,1,0,340974,0 +122,17.3275,35.5262,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,136391,0 +124,17.8666,35.6758,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,139278,0 +126,17.5036,35.5373,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,144249,0 +128,19.3088,35.4096,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,139916,0 +130,17.9365,35.4928,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,102844,0 +132,17.0841,35.4125,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,97956,0 +134,17.4124,37.0792,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,136218,0 +136,17.3157,35.4697,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,130112,0 +138,17.7566,35.8476,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,132889,0 +140,17.2649,35.5230,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,134678,0 +142,17.0732,35.5943,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,127038,0 +144,17.5534,35.8203,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,150440,0 +146,17.2763,35.4634,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,100403,0 +148,17.7035,35.5146,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,106965,0 +150,17.2828,36.0768,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,134119,0 +152,16.9935,35.5264,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,134714,0 +154,17.7557,37.4260,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,131756,0 +156,17.4160,36.6960,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,134378,0 +158,16.7685,36.9799,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,138588,0 +160,17.1956,36.4705,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,133261,0 +162,17.4071,35.6090,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,96795,0 +164,17.1592,36.8250,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,96165,0 +166,17.4870,38.0490,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,133867,0 +168,16.6314,36.7494,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,127497,0 +170,17.3890,37.3892,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,130723,0 +172,17.6743,37.4541,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,129110,0 +174,17.1719,35.7412,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,124496,0 +176,17.3692,36.0516,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,146265,0 +178,17.1369,35.9052,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,98166,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.txt new file mode 100644 index 0000000..12c29cc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-static-skip +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=2 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=90 +frames_skipped=90 +frames_encoded=90 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=17.443 +avg_encode_latency_ms=40.160 +p95_encode_latency_ms=71.180 +max_encode_latency_ms=97.525 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=11279813 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.csv new file mode 100644 index 0000000..b4fbff3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.csv @@ -0,0 +1,4 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,18.2943,98.7235,0.0347,0.0000,0,0,0.0000,0,0.0000,0,1,0,128438,0 +60,34.9404,38.5502,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,106130,0 +120,30.4599,29.3390,0.0424,0.0000,0,0,0.0000,0,0.0000,0,1,0,172755,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.txt new file mode 100644 index 0000000..da69e4c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-static-skip +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=60 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=3 +frames_skipped=177 +frames_encoded=3 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=27.898 +avg_encode_latency_ms=55.538 +p95_encode_latency_ms=92.706 +max_encode_latency_ms=98.724 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=407323 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.csv new file mode 100644 index 0000000..acc7fe3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.csv @@ -0,0 +1,17 @@ +profile,source,resolution,fps,duration_seconds,bitrate_mbps,encoder_id,frames_requested,frames_submitted,frames_skipped,frames_encoded,failed_frames,avg_generate_ms,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log,status +bgra_baseline,synthetic-bgra,3200x1800,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,7.297,12.050,12.106,74.836,31470385,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3200x1800_60fps.txt,0 +nv12_input,synthetic-nv12,3200x1800,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,5.182,11.879,11.405,70.914,1931593,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3200x1800_60fps.txt,0 +bgra_baseline,synthetic-bgra,3840x2160,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,9.677,16.196,20.177,74.162,31521421,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_3840x2160_60fps.txt,0 +nv12_input,synthetic-nv12,3840x2160,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,7.118,11.557,11.906,32.177,2495662,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_3840x2160_60fps.txt,0 +bgra_baseline,synthetic-bgra,4096x2304,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,10.801,17.626,18.046,59.734,31489975,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_4096x2304_60fps.txt,0 +nv12_input,synthetic-nv12,4096x2304,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,7.865,12.898,13.245,32.291,2648402,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_4096x2304_60fps.txt,0 +bgra_baseline,synthetic-bgra,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,17.944,331.121,357.156,358.048,31590180,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/bgra_baseline_synthetic_bgra_5120x2880_60fps.txt,0 +nv12_input,synthetic-nv12,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,12.062,222.716,234.220,235.761,3845844,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_input_synthetic_nv12_5120x2880_60fps.txt,0 +static_skip_every_2,synthetic-static-skip,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,90,90,90,0,17.443,40.160,71.180,97.525,11279813,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_2_synthetic_static_skip_5120x2880_60fps.txt,0 +static_skip_every_10,synthetic-static-skip,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,18,162,18,0,25.618,40.189,46.943,87.066,3475521,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_10_synthetic_static_skip_5120x2880_60fps.txt,0 +static_skip_every_60,synthetic-static-skip,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,3,177,3,0,27.898,55.538,92.706,98.724,407323,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/static_skip_every_60_synthetic_static_skip_5120x2880_60fps.txt,0 +nv12_5k45,synthetic-nv12,5120x2880,45,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,135,135,0,135,0,12.173,209.283,233.362,235.179,3287701,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k45_synthetic_nv12_5120x2880_45fps.txt,0 +nv12_5k30,synthetic-nv12,5120x2880,30,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,90,90,0,90,0,12.739,19.296,19.824,41.503,2195094,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/nv12_5k30_synthetic_nv12_5120x2880_30fps.txt,0 +sck_4k60,screen-capture,3840x2160,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,0.000,16.363,18.412,40.702,2934158,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_4k60_screen_capture_3840x2160_60fps.txt,0 +sck_5k60,screen-capture,5120x2880,60,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,180,180,0,180,0,0.000,302.354,360.042,362.814,2046627,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.txt,0 +sck_5k30,screen-capture,5120x2880,30,3,120,com.apple.videotoolbox.videoencoder.ave.hevc,90,90,0,90,0,0.000,26.199,26.681,51.225,4754268,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.csv,benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/sck_5k30_screen_capture_5120x2880_30fps.txt,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.md b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.md new file mode 100644 index 0000000..bed7c6c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.md @@ -0,0 +1,30 @@ +# Encode Strategy Matrix + +- Duration per case: `3` seconds +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Codec: HEVC +- Bitrate/DataRateLimits: `120 Mbps` +- Main table: `summary.csv` +- Encoder list: `video_encoders.txt` +- Tile approximation: `tile_2x2_5k60/summary.md` +- Targeted follow-up: `targeted/sck_5k60.txt` + +## What This Tests + +- BGRA synthetic input versus NV12 synthetic input. +- Static-screen frame skipping with 5K logical output. +- 5K45 and 5K30 refresh-rate fallback. +- 2x2 parallel encoder sessions approximating tiled 5K. +- ScreenCaptureKit/IOSurface capture path when Screen Recording permission allows it. + +## Highlights + +| Case | Avg encode ms | P95 encode ms | Result | +| --- | ---: | ---: | --- | +| synthetic NV12 3840x2160@60 | 11.557 | 11.906 | Strongest single-session 4K60 signal. | +| ScreenCaptureKit 3840x2160@60 | 16.363 | 18.412 | Real capture works, but p95 is slightly above 60Hz frame budget. | +| synthetic NV12 4096x2304@60 | 12.898 | 13.245 | Strong high-detail 60Hz candidate. | +| synthetic NV12 5120x2880@60 | 222.716 | 234.220 | 5K60 single-session HEVC still fails. | +| ScreenCaptureKit 5120x2880@60 | 302.354 | 360.042 | Real 5K60 capture+encode also fails. | +| synthetic NV12 5120x2880@30 | 19.296 | 19.824 | Fits 30Hz frame budget, not 60Hz. | +| tile 2x2 5K60 approximation | 6.496-9.528 | 10.568-11.254 | Per-tile sessions fit 60Hz; end-to-end tiled recomposition is still unproven. | diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.csv new file mode 100644 index 0000000..fe454cd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,60.8295,0.0484,0.0000,0,0,0.0000,0,0.0000,0,1,0,176046,0 +1,0.0000,43.8648,0.0249,0.0000,0,0,0.0000,0,0.0000,0,0,0,9135,0 +2,0.0000,35.4090,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,33100,0 +3,0.0000,37.2259,0.0507,0.0000,0,0,0.0000,0,0.0000,0,0,0,74301,0 +4,0.0000,38.4585,0.0414,0.0000,0,0,0.0000,0,0.0000,0,0,0,89671,0 +5,0.0000,47.4831,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,22153,0 +6,0.0000,57.6887,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,5881,0 +7,0.0000,69.4209,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,4779,0 +8,0.0000,79.6052,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,4593,0 +9,0.0000,90.0909,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3900,0 +10,0.0000,100.1379,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3764,0 +11,0.0000,112.1912,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3578,0 +12,0.0000,122.9703,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3600,0 +13,0.0000,133.4793,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,3634,0 +14,0.0000,144.1905,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3670,0 +15,0.0000,155.5509,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,3664,0 +16,0.0000,165.4184,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,3715,0 +17,0.0000,176.3523,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3598,0 +18,0.0000,186.5924,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3997,0 +19,0.0000,197.4525,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3548,0 +20,0.0000,208.1718,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,3745,0 +21,0.0000,218.7890,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,3557,0 +22,0.0000,229.4762,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,3557,0 +23,0.0000,240.0637,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,3551,0 +24,0.0000,249.1714,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3548,0 +25,0.0000,259.4209,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,3542,0 +26,0.0000,271.2193,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,3797,0 +27,0.0000,282.5581,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +28,0.0000,292.4810,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3572,0 +29,0.0000,303.4560,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3531,0 +30,0.0000,313.7866,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3533,0 +31,0.0000,325.8388,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3722,0 +32,0.0000,335.8423,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3558,0 +33,0.0000,347.4081,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3553,0 +34,0.0000,349.9764,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3554,0 +35,0.0000,359.8401,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +36,0.0000,356.1865,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +37,0.0000,360.9775,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3542,0 +38,0.0000,360.2987,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3533,0 +39,0.0000,358.5053,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3531,0 +40,0.0000,359.5135,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,3585,0 +41,0.0000,234.3744,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,3530,0 +42,0.0000,250.2347,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,3826,0 +43,0.0000,255.7665,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3621,0 +44,0.0000,265.5797,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,3875,0 +45,0.0000,275.6037,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3625,0 +46,0.0000,285.2753,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,3630,0 +47,0.0000,294.4415,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3550,0 +48,0.0000,296.2077,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +49,0.0000,316.1735,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3551,0 +50,0.0000,326.9343,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,3534,0 +51,0.0000,336.6747,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3532,0 +52,0.0000,346.4398,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,3534,0 +53,0.0000,352.8874,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3762,0 +54,0.0000,357.2831,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3556,0 +55,0.0000,353.5742,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3551,0 +56,0.0000,354.3598,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3552,0 +57,0.0000,356.3715,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3543,0 +58,0.0000,357.3261,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +59,0.0000,354.2314,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3619,0 +60,0.0000,351.7594,0.1971,0.0000,0,0,0.0000,0,0.0000,0,1,0,316448,0 +61,0.0000,351.5750,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5770,0 +62,0.0000,351.6735,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3841,0 +63,0.0000,351.8014,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,13091,0 +64,0.0000,351.6262,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5441,0 +65,0.0000,351.0280,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4685,0 +66,0.0000,351.1597,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4296,0 +67,0.0000,351.1705,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4415,0 +68,0.0000,351.1659,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,4179,0 +69,0.0000,351.4786,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,4460,0 +70,0.0000,351.4987,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,3987,0 +71,0.0000,351.5799,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4769,0 +72,0.0000,351.6673,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3995,0 +73,0.0000,357.2824,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4117,0 +74,0.0000,357.7763,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,4223,0 +75,0.0000,357.9266,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4640,0 +76,0.0000,358.9005,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3782,0 +77,0.0000,359.0344,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3976,0 +78,0.0000,359.4621,0.0577,0.0000,0,0,0.0000,0,0.0000,0,0,0,14116,0 +79,0.0000,359.6922,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,4891,0 +80,0.0000,359.5677,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4577,0 +81,0.0000,359.5095,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4114,0 +82,0.0000,359.3528,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4604,0 +83,0.0000,358.8039,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3614,0 +84,0.0000,359.2247,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,3405,0 +85,0.0000,359.2393,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,3611,0 +86,0.0000,358.0377,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4891,0 +87,0.0000,358.4035,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,3586,0 +88,0.0000,357.5935,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3525,0 +89,0.0000,356.3075,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4538,0 +90,0.0000,357.3881,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3532,0 +91,0.0000,356.5371,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3529,0 +92,0.0000,356.7415,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +93,0.0000,356.2571,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3532,0 +94,0.0000,356.6963,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3413,0 +95,0.0000,358.5718,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3405,0 +96,0.0000,359.3954,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,3401,0 +97,0.0000,361.4071,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,5477,0 +98,0.0000,336.1440,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,3493,0 +99,0.0000,350.3574,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3563,0 +100,0.0000,355.8827,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3762,0 +101,0.0000,360.0337,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3574,0 +102,0.0000,360.2071,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4074,0 +103,0.0000,362.8136,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,4039,0 +104,0.0000,361.0922,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,3947,0 +105,0.0000,360.4513,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,3853,0 +106,0.0000,360.3682,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4005,0 +107,0.0000,359.9115,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3974,0 +108,0.0000,359.1679,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,4406,0 +109,0.0000,357.1732,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3875,0 +110,0.0000,354.7605,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3923,0 +111,0.0000,357.3063,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +112,0.0000,353.6760,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3780,0 +113,0.0000,356.7310,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3628,0 +114,0.0000,356.8246,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3431,0 +115,0.0000,356.1901,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3943,0 +116,0.0000,352.8051,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4178,0 +117,0.0000,352.9405,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4048,0 +118,0.0000,354.4314,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3908,0 +119,0.0000,354.3316,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4249,0 +120,0.0000,348.8900,0.0545,0.0000,0,0,0.0000,0,0.0000,0,1,0,288992,0 +121,0.0000,348.8694,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6501,0 +122,0.0000,348.8292,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4483,0 +123,0.0000,348.6128,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4854,0 +124,0.0000,348.7590,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,8411,0 +125,0.0000,349.0952,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,4088,0 +126,0.0000,348.7303,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11032,0 +127,0.0000,348.7564,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3889,0 +128,0.0000,348.8160,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3494,0 +129,0.0000,348.7366,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3400,0 +130,0.0000,348.8478,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,56316,0 +131,0.0000,349.3228,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5168,0 +132,0.0000,349.8293,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,33714,0 +133,0.0000,355.6691,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9020,0 +134,0.0000,356.0133,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,32172,0 +135,0.0000,355.9302,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6898,0 +136,0.0000,356.1575,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6973,0 +137,0.0000,356.1641,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7871,0 +138,0.0000,355.5257,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6357,0 +139,0.0000,355.9358,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3362,0 +140,0.0000,356.2788,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,49121,0 +141,0.0000,356.3910,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4617,0 +142,0.0000,356.5659,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8107,0 +143,0.0000,356.0422,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3298,0 +144,0.0000,356.0383,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4920,0 +145,0.0000,355.5093,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5841,0 +146,0.0000,355.6807,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3470,0 +147,0.0000,355.5603,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5345,0 +148,0.0000,355.5918,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3270,0 +149,0.0000,355.4676,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4767,0 +150,0.0000,355.4582,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +151,0.0000,355.4764,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +152,0.0000,355.6104,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,5005,0 +153,0.0000,355.3640,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4288,0 +154,0.0000,355.5480,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,43807,0 +155,0.0000,355.4779,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4611,0 +156,0.0000,355.4985,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6496,0 +157,0.0000,356.1062,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6746,0 +158,0.0000,356.6418,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10747,0 +159,0.0000,357.1637,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,5779,0 +160,0.0000,357.6766,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,10724,0 +161,0.0000,358.4707,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5828,0 +162,0.0000,359.3282,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,62242,0 +163,0.0000,359.9345,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,12579,0 +164,0.0000,360.2390,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,23804,0 +165,0.0000,354.5596,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7104,0 +166,0.0000,332.0621,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5019,0 +167,0.0000,342.7002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3456,0 +168,0.0000,351.7224,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4940,0 +169,0.0000,330.8425,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3625,0 +170,0.0000,340.8475,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3265,0 +171,0.0000,36.4093,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4034,0 +172,0.0000,39.7905,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3725,0 +173,0.0000,52.2022,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3272,0 +174,0.0000,62.9998,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,3232,0 +175,0.0000,73.2434,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4040,0 +176,0.0000,83.4277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3248,0 +177,0.0000,93.6119,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3244,0 +178,0.0000,104.2705,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3242,0 +179,0.0000,115.3288,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3240,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.txt new file mode 100644 index 0000000..2a36c0d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=5120x2880 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=302.354 +p95_encode_latency_ms=360.042 +max_encode_latency_ms=362.814 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2046627 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/summary.md b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/summary.md new file mode 100644 index 0000000..99e5546 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/summary.md @@ -0,0 +1,14 @@ +# Tile 2x2 5K60 approximation + +- Source per tile: synthetic-nv12 +- Tile resolution: 2560x1440 +- Tiles: 4 +- Combined logical surface: 5120x2880 +- Exit status: 0 + +| Tile | Frames | Avg encode ms | P95 encode ms | Max encode ms | Log | +| --- | ---: | ---: | ---: | ---: | --- | +| 0 | 180 | 6.942 | 11.122 | 36.377 | tile_0.txt | +| 1 | 180 | 9.528 | 11.254 | 39.848 | tile_1.txt | +| 2 | 180 | 9.293 | 11.110 | 39.547 | tile_2.txt | +| 3 | 180 | 6.496 | 10.568 | 36.258 | tile_3.txt | diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.csv new file mode 100644 index 0000000..c842642 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1541,36.3772,0.0462,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.2714,6.4378,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.1444,7.8446,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,3.0279,13.6448,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.3292,9.0291,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.3314,6.0113,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.3103,6.1401,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.4511,11.1219,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.3804,6.1021,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.3582,6.0468,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,3.4287,6.0418,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,3.4852,5.9503,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,3.5010,6.0523,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,3.3908,6.1456,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,3.8174,6.0119,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.4700,5.8479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.3670,5.9368,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,3.4647,6.0548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,3.4915,11.0633,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,3.5039,5.9202,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,3.5301,5.9438,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,3.5331,6.0213,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,3.4525,5.9310,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.5281,5.9147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,3.6609,5.9809,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,3.4987,6.0203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,3.5593,5.9322,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,3.5160,5.9142,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,3.4213,5.9940,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,3.6389,6.1785,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,3.3819,5.9023,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,3.3954,11.0437,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,3.4025,5.9635,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,3.4380,5.9474,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,3.6502,5.9498,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,3.6171,5.9370,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.7330,5.9172,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.6386,5.8564,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,3.5855,5.8662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,3.5122,5.9345,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,3.6369,5.8936,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,3.4357,5.9132,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,3.5027,11.1999,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,3.0946,6.1055,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,3.3307,6.1190,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,3.2418,6.4629,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,3.1782,11.2942,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,3.2664,6.0191,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,2.9610,6.0314,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,3.1005,10.7053,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,3.1483,5.9122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.0230,27.8469,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,10.6274,6.5038,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,3.1578,12.0971,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.2345,7.4825,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,3.1735,5.9623,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,3.1698,5.8923,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,3.2052,5.7993,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.2476,6.0154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,3.2224,5.9273,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,3.2535,6.0453,0.0437,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.3242,6.1358,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.2261,5.9679,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,3.5000,5.9096,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.5446,6.0032,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,3.5174,5.9013,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,3.5078,5.8503,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,3.5330,5.9464,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,3.4256,5.9545,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,3.5421,10.9821,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,3.7004,5.9607,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,3.4719,5.8365,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,3.4924,5.9295,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,3.4832,5.8327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,3.4765,5.9470,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,3.5852,5.9805,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,3.3658,5.9679,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,3.2906,6.2972,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,3.1618,5.8262,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,3.0237,11.1091,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,2.9417,6.0681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,3.0707,5.9091,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,3.1430,5.8552,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,3.0470,6.0954,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,3.1395,5.9227,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,3.0561,6.0984,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,3.1315,6.0740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,3.1022,5.9402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,3.0075,10.9729,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,3.0835,5.8802,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,3.1827,11.3942,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,3.3801,6.0830,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,3.2845,6.1866,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,3.3380,6.4128,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,3.4567,5.9919,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,3.3157,6.0172,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,3.5112,5.8791,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.4001,5.9795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,3.5172,5.8013,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.4945,6.0670,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,3.6534,5.8989,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,3.7409,5.9235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,3.4669,5.8296,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,3.5328,5.9208,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,3.5955,5.9653,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,3.4121,5.9176,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,3.6547,5.8942,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,3.5249,5.8800,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,3.5401,5.8572,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,3.7240,6.1511,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,3.3926,11.0890,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,3.4295,5.8081,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,3.4415,6.0542,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,3.4089,5.9420,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,3.4838,5.9105,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,3.4722,6.0126,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,3.4628,5.9384,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,3.5057,5.8279,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,3.5137,5.9145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,3.4329,5.9071,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,3.4860,5.8928,0.0416,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,3.3672,5.8773,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,3.4656,5.8791,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.4904,5.8545,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,3.4571,5.9375,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,3.4383,6.0399,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,3.5953,5.8508,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,3.6068,6.3338,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.5967,5.9640,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,3.4298,5.8976,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,3.5880,5.8430,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,3.5067,5.7869,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,3.5933,5.9250,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,3.5208,5.9443,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,3.4761,5.8690,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,3.6213,5.9898,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,3.2204,5.8492,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,3.0617,5.9874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,3.0870,6.0880,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,3.3811,5.9339,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,3.1206,11.1247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,3.4699,6.0592,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,3.5013,5.9173,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,3.4708,5.8466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.4518,5.8827,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,3.5365,5.8419,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,3.4630,10.9225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,3.3780,5.8327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,3.4505,10.8896,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,3.5108,10.9620,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,3.5874,6.1879,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,3.5487,6.1399,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,3.7040,5.9900,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,3.4024,5.8790,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,3.4959,6.0668,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.3995,10.0882,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,3.4955,5.8412,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,3.4125,10.9295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.3849,5.8646,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.4345,5.9494,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,3.5245,5.8650,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.4863,5.8379,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.4112,6.0791,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.4503,5.9250,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.4832,5.8556,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,3.5213,5.8111,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.4310,5.8555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,3.4907,5.8892,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.3949,11.0785,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.4206,5.7979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.5114,5.9425,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.5361,5.9319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,3.4854,5.8894,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,3.6570,6.1219,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,3.6692,5.9398,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,3.6803,11.0025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,3.6083,5.9534,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.7103,5.9427,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.6397,5.8702,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.4493,13.2642,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.txt new file mode 100644 index 0000000..bff5548 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.470 +avg_encode_latency_ms=6.942 +p95_encode_latency_ms=11.122 +max_encode_latency_ms=36.377 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1307941 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_0.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.csv new file mode 100644 index 0000000..1e33ac4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1356,39.8484,0.0212,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.1083,11.8309,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.0364,18.4165,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,2.9639,20.1114,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.1625,13.9790,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.1274,9.2083,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.1955,9.5834,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.3418,5.9432,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.3273,10.4598,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.1389,9.3033,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,3.1833,10.5913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,3.4841,11.2437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,3.2812,9.1197,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,3.3332,9.6907,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,3.4110,9.6922,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.4000,9.0692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.2051,9.4066,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,3.2907,10.7064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,3.4834,5.9097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,3.4200,8.8133,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,3.3820,10.4696,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,3.3799,9.2447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,3.3778,9.2532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.4245,9.2425,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,3.3927,9.5103,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,3.4464,8.2469,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,3.5360,11.0760,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,3.4076,8.8335,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,3.4147,10.5721,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,3.3496,9.6729,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,3.3470,9.1760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,3.4272,5.8341,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,3.3461,8.8483,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,3.4017,9.3275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,3.5284,9.2786,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,3.4505,9.3230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.5687,9.2878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.4657,9.2272,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,3.3527,9.3373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,3.4522,9.1618,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,3.3699,9.4295,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,3.3864,9.0975,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,3.3807,6.1010,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,3.0492,10.8944,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,3.2968,9.1311,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,3.1970,11.5040,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,3.1899,6.6055,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,3.1077,9.2047,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,2.9814,7.3989,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,3.0957,5.8182,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,3.1287,10.9790,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.3942,23.1198,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,12.6098,9.6633,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,4.9158,14.3908,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.1812,11.2418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,3.0689,7.0203,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,3.0424,8.1130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,2.9938,7.3278,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.0935,9.9933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,3.1594,11.0680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,3.1386,8.6787,0.0356,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.2044,8.0692,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.2616,11.0958,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,3.4003,8.7902,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.5082,9.3489,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,3.3400,9.2163,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,3.3572,9.3998,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,3.3733,8.8037,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,3.3053,9.3782,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,3.4370,5.9123,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,3.3591,9.1050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,3.4365,10.9825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,3.3935,8.8384,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,3.3982,9.2013,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,3.4226,10.4201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,3.4866,10.5262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,3.1503,9.1523,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,3.2185,11.2115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,3.1161,8.7005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,3.0134,6.0797,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,3.1105,8.6897,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,3.0608,10.4170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,3.0490,6.9721,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,3.0438,10.0226,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,3.0548,9.0349,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,3.1052,9.3493,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,3.2101,11.1388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,3.0320,7.0223,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,3.0683,6.0540,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,3.0203,8.7658,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,3.1719,6.1517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,3.2347,9.1328,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,3.1647,7.6985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,3.2542,8.9642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,3.1905,7.4040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,3.2902,9.6348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,3.3213,9.1439,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.3516,9.3983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,3.3167,9.8140,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.4175,10.6725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,3.4639,10.4564,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,3.4478,9.2003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,3.4419,9.0857,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,3.3682,10.3860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,3.5626,10.3361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,3.4167,8.7613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,3.4969,9.3652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,3.4151,9.1537,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,3.4079,9.3037,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,3.5012,11.0770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,3.3565,5.9703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,3.4312,10.0627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,3.4473,10.5220,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,3.4792,8.8286,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,3.4955,9.2959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,3.3955,9.4290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,3.3819,9.5314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,3.4034,9.0539,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,3.5017,11.1273,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,3.3798,8.7403,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,3.3542,9.2171,0.0459,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,3.3642,9.0496,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,3.4254,9.2369,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.4061,9.1505,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,3.3926,8.5900,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,3.3346,9.2310,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,3.4301,7.9596,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,3.3878,9.8065,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.2140,8.9843,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,3.4678,10.9214,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,3.4197,10.4353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,3.3374,9.0189,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,3.4174,10.4861,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,3.4672,10.3311,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,3.4517,8.9008,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,3.3739,9.5678,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,3.1683,10.2289,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,3.2275,8.9195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,3.1259,11.1030,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,3.3864,11.0593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,3.1268,5.8919,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,3.3893,9.1906,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,3.3656,9.4876,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,3.4987,10.8770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.4794,10.9659,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,3.4289,8.8463,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,3.3997,5.8440,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,3.3524,8.6789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,3.4311,5.8234,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,3.4630,5.8810,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,3.4010,9.2015,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,3.4897,10.5078,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,3.4454,10.6769,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,3.4354,11.0362,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,3.4749,7.2665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.5340,6.0125,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,3.4247,8.1874,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,3.4049,6.1567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.4485,9.9219,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.3544,10.4977,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,3.3430,8.9962,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.3821,9.2527,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.3564,9.2972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.3293,9.1715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.3595,9.1567,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,3.4144,9.1182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.3951,9.1407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,3.3654,9.4520,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.3830,5.9222,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.4151,8.5703,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.3698,9.4356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.3418,9.3140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,3.5056,10.9621,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,3.6491,11.4547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,3.3758,9.0750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,3.7410,5.7912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,3.4316,9.1125,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.4733,9.4541,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.5029,9.2375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.4449,5.9865,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.txt new file mode 100644 index 0000000..97d797d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.404 +avg_encode_latency_ms=9.528 +p95_encode_latency_ms=11.254 +max_encode_latency_ms=39.848 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1307941 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_1.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.csv new file mode 100644 index 0000000..b55edd6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9550,39.5473,0.0221,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0042,11.7229,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,2.9872,13.2713,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,2.9133,20.1607,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.0493,12.2343,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.1490,8.9433,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.1947,8.8300,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.3302,8.6222,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.1468,9.2140,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.1329,8.7962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,3.1557,9.1673,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,3.2161,8.7420,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,3.2127,8.7095,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,3.3965,10.2766,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,3.3895,8.8900,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.3478,8.3355,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.1105,9.4388,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,3.2947,10.9090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,3.4920,8.3422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,3.3871,8.9853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,3.4355,8.8863,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,3.4180,8.6754,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,3.4952,8.3704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.4286,9.7365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,3.3875,9.4271,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,3.4881,8.1207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,3.5225,8.6191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,3.4112,8.9533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,3.3931,10.6843,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,3.4018,9.0770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,3.4144,8.9840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,3.4145,8.8319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,3.3199,9.0200,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,3.3291,9.6085,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,3.3898,8.5034,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,3.3924,9.1519,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.4995,8.6625,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.4024,9.1717,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,3.3213,8.6926,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,3.4181,8.5474,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,3.3563,9.0699,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,3.3628,8.3893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,3.4705,9.4132,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,3.1894,8.9304,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,3.2597,9.1895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,3.1990,8.4555,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,3.1255,8.8881,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,3.0391,9.1977,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,2.9869,9.0456,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,3.1792,9.1743,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,3.0640,7.2845,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.2133,23.0637,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,7.8136,6.3207,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,3.9763,13.8185,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.1652,7.4268,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,3.0143,9.4576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,3.0080,7.3018,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,2.9959,9.4030,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.0794,9.1302,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,3.1942,8.7848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,3.1675,8.7635,0.0386,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.1802,9.4475,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.3338,8.7346,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,3.3335,9.1260,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.4284,9.5228,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,3.3072,9.8808,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,3.4491,9.2100,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,3.4980,10.6563,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,3.3020,8.5949,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,3.4132,8.9128,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,3.3200,8.9426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,3.5926,8.7257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,3.4566,9.0733,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,3.4122,8.8267,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,3.4257,8.8081,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,3.5017,8.8245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,3.2048,10.8694,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,3.2304,8.3833,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,3.1135,9.3495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,2.9798,5.6872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,3.0966,8.4716,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,2.9555,9.3071,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,3.1698,8.8230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,3.2023,9.7298,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,3.0115,8.8560,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,3.1108,5.9984,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,2.9145,8.1048,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,3.0267,6.9736,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,3.0405,10.5408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,2.9962,8.4773,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,3.2119,6.0846,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,3.2259,8.4238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,3.2715,9.7810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,3.1600,10.5931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,3.2159,5.8195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,3.3152,11.1037,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,3.2205,8.6649,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.4592,9.1920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,3.4525,5.8010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.4450,10.7245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,3.5352,10.8662,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,3.3574,8.3032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,3.3670,8.4801,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,3.3912,10.9158,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,3.4278,8.4151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,3.3752,8.8863,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,3.4541,9.9620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,3.4038,9.2481,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,3.3633,9.9243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,3.3802,9.2152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,3.4293,8.3247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,3.4534,8.9254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,3.4482,8.8663,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,3.4410,8.8669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,3.4345,8.4266,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,3.4398,8.5268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,3.3815,9.1580,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,3.3530,9.1626,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,3.4971,8.2041,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,3.3912,8.8275,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,3.4725,8.2650,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,3.3520,10.8719,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,3.4095,8.5070,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.3747,8.4670,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,3.3438,8.2774,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,3.3800,7.7203,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,3.3712,9.5747,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,3.2924,8.9056,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.2660,8.7544,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,3.2288,8.9994,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,3.3681,9.0579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,3.2870,8.9250,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,3.3680,8.7452,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,3.4493,9.1052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,3.3944,8.7397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,3.2650,9.1005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,3.1029,8.9424,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,2.9810,9.5018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,3.0179,6.2813,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,2.8512,8.6004,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,3.0785,8.9556,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,3.3479,9.3616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,3.3974,9.3832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,3.4341,8.6651,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.3780,8.8855,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,3.3476,8.8938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,3.4000,8.9248,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,3.4347,8.6747,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,3.4790,8.4896,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,3.3510,8.9883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,3.3931,9.1572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,3.3972,11.2246,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,3.4962,8.9646,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,3.3513,5.7226,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,3.4793,9.0000,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.3776,8.9558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,3.3983,8.8677,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,3.4429,8.2602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.3838,9.2594,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.3758,8.7393,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,3.4610,8.7427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.3041,8.9763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.3830,8.4131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.3693,8.4733,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.3498,10.1114,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,3.3897,8.6483,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.3358,9.0225,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,3.3885,8.5159,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.3926,9.2078,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.3724,8.8125,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.4600,8.5505,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.4110,5.7012,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,3.3938,10.7912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,3.5438,11.4937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,3.5430,10.7732,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,3.3942,9.1396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,3.3749,8.7312,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.3936,8.8103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.4624,8.6050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.4279,10.6375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.txt new file mode 100644 index 0000000..3c0b7af --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.349 +avg_encode_latency_ms=9.293 +p95_encode_latency_ms=11.110 +max_encode_latency_ms=39.547 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1307941 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_2.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.csv b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.csv new file mode 100644 index 0000000..c0ca87b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.csv @@ -0,0 +1,181 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9722,36.2575,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.1806,6.4462,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.1410,7.9495,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,3.0345,18.0715,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.1578,8.6214,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.1580,5.7805,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.3796,6.0724,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.4420,5.9189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.1708,5.7673,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.3748,6.0410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,3.1420,5.9595,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,3.4521,5.9360,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,3.4977,6.0320,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,3.4077,5.9194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,3.4391,5.8009,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.3854,5.8943,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.2618,5.9062,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,3.2790,5.7805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,3.4258,5.7157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,3.3703,5.7165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,3.4167,5.7814,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,3.4377,6.0809,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,3.5469,5.8466,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.4184,5.7687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,3.5675,6.0343,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,3.4830,5.9961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,3.5460,6.0836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,3.3666,5.7819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,3.5042,5.9498,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,3.4968,5.9698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,3.3981,5.7220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,3.3796,5.7242,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,3.3607,5.8160,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,3.3748,5.9495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,3.6212,6.0053,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,3.4748,5.7748,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.7092,5.9815,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.5807,5.7408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,3.5687,5.9367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,3.6234,5.8693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,3.4510,5.7410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,3.4103,5.9666,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,3.4093,6.0795,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,3.0679,5.9067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,3.3530,5.9918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,3.2548,6.4301,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,3.0596,6.7282,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,3.1305,6.1358,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,2.9671,5.8143,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,3.0647,6.1234,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,3.1193,6.2350,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.0463,24.5702,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,16.9029,9.8913,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,3.7002,9.2597,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.2400,5.9635,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,3.0148,5.9637,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,3.1168,5.9572,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,3.0196,5.7810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.1541,5.9299,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,3.1089,5.6879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,3.1370,5.7492,0.0408,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.1592,6.0486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.2645,5.8764,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,3.4233,5.7848,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.6647,5.9114,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,3.4232,5.7557,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,3.4506,5.8911,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,3.4219,5.7799,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,3.4506,5.7255,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,3.3799,5.7223,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,3.3998,5.7266,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,3.4888,5.6491,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,3.3685,5.6978,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,3.3969,5.6878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,3.3607,5.6798,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,3.4550,5.7077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,3.3630,5.9866,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,3.3076,6.2330,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,3.2988,5.7535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,3.0414,10.5735,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,3.1690,5.7348,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,3.0416,5.9275,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,3.0767,5.7940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,3.0386,6.0342,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,3.1350,5.7748,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,2.9145,10.6795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,3.1439,5.9875,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,3.1275,5.9017,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,3.1019,6.0343,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,2.9448,5.7086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,3.2220,11.2876,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,3.1929,5.8232,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,3.2093,5.7790,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,3.2668,6.2782,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,3.2097,10.9453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,3.3331,5.9877,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,3.3883,5.7843,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.4189,5.8730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,3.3740,10.5673,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.3788,5.7370,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,3.5665,5.7737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,3.7050,5.9243,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,3.4481,5.8815,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,3.4046,5.8042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,3.4904,5.6668,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,3.4553,5.9238,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,3.5486,5.7376,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,3.5200,5.9340,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,3.4350,5.6958,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,3.5185,5.9237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,3.3760,5.9267,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,3.3582,5.7103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,3.4055,5.7713,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,3.3992,5.7149,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,3.4210,5.9277,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,3.5294,5.9251,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,3.4162,5.7603,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,3.4887,5.8782,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,3.4211,5.9600,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,3.4676,5.9201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,3.4958,5.9268,0.0427,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,3.3656,5.7658,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,3.4606,5.7080,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.4317,5.8913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,3.3950,6.0013,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,3.4880,6.2315,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,3.4755,5.7645,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,3.5812,6.3194,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.2492,5.6843,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,3.3119,5.7122,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,3.5077,5.7543,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,3.4386,5.6837,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,3.3857,5.6608,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,3.4806,5.8870,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,3.4103,5.6483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,3.4376,5.7694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,3.1768,5.8261,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,3.0564,5.9661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,3.3125,10.2027,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,3.1833,5.6900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,3.0742,5.7611,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,3.3960,5.8908,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,3.4715,5.9139,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,3.3568,5.6280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.4025,5.6821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,3.3469,5.7064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,3.4181,5.7597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,3.3116,5.7022,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,3.4641,5.9674,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,3.3411,5.7335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,3.4651,5.8788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,3.4033,6.1403,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,3.4845,5.8692,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,3.4185,10.7138,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,3.7764,5.8460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.3892,5.8321,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,3.3901,5.7319,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,3.3517,6.1095,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.3725,5.7698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.3729,5.6972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,3.3279,5.6922,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.3569,5.6631,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.4419,6.0088,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.4535,5.9748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.3725,5.7857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,3.4041,5.7156,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.3941,5.7299,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,3.4270,5.9357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.3380,5.6925,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.3597,5.6924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.4583,6.0189,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.5078,10.9828,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,3.3675,5.7317,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,3.5635,6.1590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,3.5383,5.7144,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,3.5809,5.6878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,3.6197,5.9838,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.7560,5.9090,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.6229,5.9176,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.4905,5.9316,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.txt new file mode 100644 index 0000000..ed2b2dc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.447 +avg_encode_latency_ms=6.496 +p95_encode_latency_ms=10.568 +max_encode_latency_ms=36.258 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1307941 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/tile_3.csv diff --git a/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/video_encoders.txt b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/video_encoders.txt new file mode 100644 index 0000000..8da9832 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x14a717200>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.csv b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.csv new file mode 100644 index 0000000..1dc0e47 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.csv @@ -0,0 +1,721 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.7710,24.0172,0.0372,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.9668,24.9883,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,3.2155,25.2610,0.0200,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,3.1249,25.1229,0.0065,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,3.2385,6.3025,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,46051,0 +5,3.7822,6.4478,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,33897,0 +6,3.2308,6.0874,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,44965,0 +7,3.1107,5.9781,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,52644,0 +8,3.0442,5.8570,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,44464,0 +9,2.9862,5.9696,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,42203,0 +10,2.9486,5.8563,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,48755,0 +11,2.7903,5.8034,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,49281,0 +12,2.8390,5.8170,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,43134,0 +13,2.8435,5.8557,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,34289,0 +14,2.9768,5.8798,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,44188,0 +15,2.9025,5.7738,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,41414,0 +16,2.8916,5.8329,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,48950,0 +17,2.8914,5.8320,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,37158,0 +18,2.8708,5.9120,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,49009,0 +19,3.0537,5.8855,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,47821,0 +20,2.9842,5.9445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,48253,0 +21,2.9756,5.8874,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,39889,0 +22,2.9192,5.8013,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,57151,0 +23,2.8930,5.8206,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,56109,0 +24,2.9407,5.7975,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,41600,0 +25,2.8526,5.8083,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,34682,0 +26,2.8133,5.8336,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,44149,0 +27,2.8105,5.7905,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,44475,0 +28,2.7916,5.7985,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,29886,0 +29,2.7997,5.8209,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,25488,0 +30,2.8348,5.7516,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,32558,0 +31,2.8192,5.7696,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,31638,0 +32,2.7701,5.7691,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,23646,0 +33,2.8343,5.7864,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20169,0 +34,2.8163,5.8203,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,27054,0 +35,2.8272,5.7882,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,26645,0 +36,2.7662,5.7987,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,24354,0 +37,2.7401,5.8061,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,21470,0 +38,2.7781,5.7897,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,21952,0 +39,2.7437,5.8980,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,24036,0 +40,3.0302,6.0405,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,23058,0 +41,2.8498,5.9605,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,20655,0 +42,2.8060,5.9398,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,21401,0 +43,2.9332,5.9794,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,23325,0 +44,2.9634,5.8957,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,22128,0 +45,3.3434,6.2480,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +46,3.3534,6.1660,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,20928,0 +47,2.9820,6.1051,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,22214,0 +48,3.2204,6.1322,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21058,0 +49,3.0991,5.9152,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +50,3.0383,6.0779,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22126,0 +51,3.0457,5.8281,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21658,0 +52,3.6026,6.0023,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,19533,0 +53,3.1791,6.1936,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,13622,0 +54,3.9695,6.1728,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20476,0 +55,3.1269,6.0411,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20002,0 +56,3.0249,5.9485,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,14185,0 +57,3.1281,6.1570,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10852,0 +58,3.2165,6.1731,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14600,0 +59,3.1738,6.0219,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14220,0 +60,3.1384,5.9834,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11159,0 +61,2.9835,5.9017,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9708,0 +62,2.9255,5.9967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11368,0 +63,2.9585,5.8526,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,10950,0 +64,2.8728,5.8158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8800,0 +65,2.9302,5.8422,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6754,0 +66,2.8603,5.8575,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9302,0 +67,2.8580,5.7305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,9301,0 +68,3.2344,5.7902,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7644,0 +69,2.8672,5.7524,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7410,0 +70,2.9345,5.8160,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8516,0 +71,3.0002,6.0792,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8154,0 +72,3.0284,5.9131,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8252,0 +73,2.9622,5.7957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8252,0 +74,3.0100,5.7557,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8343,0 +75,2.9509,5.7773,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8990,0 +76,2.9373,5.8112,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8990,0 +77,2.9344,5.7802,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8991,0 +78,2.8603,5.8038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8345,0 +79,2.8496,5.8228,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8845,0 +80,2.8123,5.8027,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8455,0 +81,2.8347,5.8267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8531,0 +82,2.8422,5.8004,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8802,0 +83,2.7939,5.7647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8837,0 +84,2.7578,5.8131,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8838,0 +85,2.8021,5.7869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8846,0 +86,2.8075,5.7722,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8899,0 +87,2.7410,5.7874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8902,0 +88,2.7859,5.8495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8902,0 +89,2.7860,5.8450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8872,0 +90,2.7592,5.8723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8930,0 +91,2.7339,5.8264,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8898,0 +92,2.8354,5.7723,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8901,0 +93,2.9064,5.8507,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8904,0 +94,2.7612,5.8154,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8777,0 +95,2.8031,5.7586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8786,0 +96,2.7867,5.7676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,22390,0 +97,2.7693,5.7679,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22363,0 +98,2.7999,5.7213,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,27173,0 +99,2.8771,5.7640,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,27841,0 +100,2.8848,5.7235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8233,0 +101,2.8790,5.7674,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8249,0 +102,2.8423,5.7569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9047,0 +103,2.8725,5.8095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8773,0 +104,2.7879,5.7646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8226,0 +105,2.7556,5.7655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8244,0 +106,2.8357,5.9663,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8346,0 +107,2.9355,5.8143,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8990,0 +108,2.8080,5.7719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8287,0 +109,2.9109,5.7207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8257,0 +110,2.7987,5.7306,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8355,0 +111,2.8061,5.7433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8906,0 +112,2.8026,5.7054,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7582,0 +113,2.8611,5.7970,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7546,0 +114,2.8667,5.7271,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8803,0 +115,2.7923,5.7443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8865,0 +116,2.7773,5.7835,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,7823,0 +117,2.8527,5.8134,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,7841,0 +118,2.7691,5.8073,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8881,0 +119,2.8321,5.8166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8913,0 +120,2.7952,5.6564,0.0316,0.0000,0,0,0.0000,0,0.0000,0,1,0,138252,0 +121,2.7700,5.6690,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,108210,0 +122,2.8047,5.5709,0.0253,0.0000,0,0,0.0000,0,0.0000,0,1,0,128235,0 +123,2.8034,5.6313,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,135552,0 +124,2.8030,5.7598,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17148,0 +125,2.9010,5.7399,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,10654,0 +126,2.9049,5.7711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,18901,0 +127,2.8803,5.7676,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,20615,0 +128,2.8825,5.8871,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22769,0 +129,2.8930,5.8411,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9673,0 +130,2.8705,5.7808,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25650,0 +131,2.8438,5.8125,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,23205,0 +132,2.8862,5.8601,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,30108,0 +133,2.8570,5.8131,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15885,0 +134,2.8445,5.7715,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23960,0 +135,2.7644,5.8398,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21559,0 +136,2.8635,5.7625,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +137,2.8733,5.7610,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14634,0 +138,2.8174,5.8360,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,28192,0 +139,2.8902,5.8228,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,29348,0 +140,2.9033,5.8621,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32958,0 +141,2.8591,6.2656,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21044,0 +142,2.8230,5.7880,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,35938,0 +143,2.8385,5.7168,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,36639,0 +144,2.9981,5.9102,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,40957,0 +145,2.8547,5.9804,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,35273,0 +146,3.1055,5.8492,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,38721,0 +147,3.1820,5.8352,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,41455,0 +148,3.1371,5.8765,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,34506,0 +149,3.2022,5.8383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,35095,0 +150,3.1338,5.8003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,33768,0 +151,3.2123,5.8166,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,36137,0 +152,3.1504,5.9231,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,30370,0 +153,2.9452,5.9641,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,31804,0 +154,3.0202,5.8715,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,27205,0 +155,3.0252,6.0001,0.0421,0.0000,0,0,0.0000,0,0.0000,0,0,0,28537,0 +156,2.9992,5.9621,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,26152,0 +157,2.9921,6.3797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26288,0 +158,2.9117,5.9817,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,26422,0 +159,3.0268,5.9238,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,26961,0 +160,3.0277,6.3556,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22898,0 +161,2.9980,5.8167,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20303,0 +162,3.0643,5.8748,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23446,0 +163,2.9473,5.8891,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24263,0 +164,3.2078,6.0964,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,23621,0 +165,2.8286,5.9852,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21612,0 +166,2.8347,6.0382,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21225,0 +167,2.9370,5.9592,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,22727,0 +168,3.1099,6.0185,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22518,0 +169,2.9727,5.8652,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20807,0 +170,2.9688,5.8350,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20375,0 +171,3.0171,5.7055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22078,0 +172,2.9860,5.8216,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22022,0 +173,2.8528,5.8189,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18621,0 +174,3.0579,5.8260,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17805,0 +175,3.1195,5.7164,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21279,0 +176,3.0763,5.9498,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22126,0 +177,3.0465,5.8060,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14921,0 +178,3.0508,5.8536,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,14911,0 +179,3.0140,5.7277,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20262,0 +180,2.9775,5.8711,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21075,0 +181,2.9255,5.8206,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11278,0 +182,2.8627,5.7637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11662,0 +183,2.8513,5.6120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,15031,0 +184,2.8769,5.7933,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15758,0 +185,2.8977,5.7741,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9639,0 +186,2.7622,5.7863,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,10797,0 +187,2.7515,5.5755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11413,0 +188,2.8592,5.8403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11766,0 +189,2.7838,5.8504,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8042,0 +190,2.7618,5.8037,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8196,0 +191,2.8829,5.8428,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9603,0 +192,2.9831,5.9835,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24726,0 +193,2.8097,5.8535,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,22235,0 +194,2.8115,5.7692,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27138,0 +195,2.9822,5.6029,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,27104,0 +196,2.8441,5.8139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7637,0 +197,2.7763,5.7902,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7365,0 +198,2.8290,5.6850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9076,0 +199,2.7364,5.6414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8754,0 +200,2.8774,5.8770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8229,0 +201,2.8398,5.8569,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8224,0 +202,2.8118,5.7670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8331,0 +203,2.7580,5.6741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8949,0 +204,2.8056,5.8211,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8988,0 +205,2.7823,5.8260,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8956,0 +206,2.7559,5.6766,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +207,2.7639,5.6916,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8850,0 +208,2.8325,5.8594,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8476,0 +209,2.8332,5.8360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8453,0 +210,2.8292,5.8172,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8770,0 +211,2.9110,5.7855,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9045,0 +212,2.8469,5.8471,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8816,0 +213,2.8281,5.8253,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8812,0 +214,2.8233,5.7624,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8866,0 +215,2.8809,5.7098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8883,0 +216,2.9634,5.8823,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8843,0 +217,2.8142,5.7972,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8840,0 +218,2.8053,5.7218,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8874,0 +219,2.8610,5.7100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8885,0 +220,2.8464,5.9181,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8877,0 +221,2.7900,5.8180,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +222,2.8307,5.7474,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8771,0 +223,2.7697,5.6294,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8696,0 +224,2.8906,5.8927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7481,0 +225,2.8950,5.8350,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7409,0 +226,2.8330,5.8222,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8275,0 +227,2.9793,5.6666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8266,0 +228,2.9359,5.8529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8324,0 +229,2.8060,5.8273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8289,0 +230,2.7725,5.7765,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9094,0 +231,2.7872,5.6460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8799,0 +232,2.8405,5.8200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8259,0 +233,2.8461,5.8010,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8230,0 +234,2.7922,5.8021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8400,0 +235,2.7874,5.6903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9043,0 +236,2.8982,5.9423,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8307,0 +237,2.9057,5.9687,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8295,0 +238,2.8601,5.8442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8344,0 +239,2.7988,5.7711,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8918,0 +240,2.9675,5.8806,0.0129,0.0000,0,0,0.0000,0,0.0000,0,1,0,131480,0 +241,2.8948,5.7782,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,100343,0 +242,2.9510,5.5990,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,135478,0 +243,2.9161,5.5007,0.0187,0.0000,0,0,0.0000,0,0.0000,0,1,0,130984,0 +244,2.9781,5.8603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12107,0 +245,2.8342,5.8220,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10628,0 +246,3.0048,5.7940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19230,0 +247,3.0595,5.6889,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,17487,0 +248,3.0126,5.8051,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21538,0 +249,2.9110,5.8564,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20328,0 +250,2.8723,5.8081,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,26868,0 +251,2.9072,5.6602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +252,2.8528,5.8368,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,31433,0 +253,2.9578,5.8395,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,23448,0 +254,2.7807,5.7518,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,37680,0 +255,2.8631,5.6339,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,34116,0 +256,2.8573,5.8632,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,60011,0 +257,2.8789,5.8836,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,49389,0 +258,2.8323,5.8222,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,68511,0 +259,2.8195,5.7123,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,63928,0 +260,2.8281,5.8560,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,42892,0 +261,2.8425,5.8433,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,33632,0 +262,2.7710,5.7247,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,33645,0 +263,2.8453,5.6868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,31325,0 +264,2.8645,5.8158,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,27862,0 +265,2.8441,6.2334,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24234,0 +266,2.9054,5.7978,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,35666,0 +267,2.9013,5.7165,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,42950,0 +268,2.8916,5.9037,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,27317,0 +269,2.7943,5.8526,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23838,0 +270,2.8925,5.7920,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,30472,0 +271,2.7958,5.7230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,32519,0 +272,2.8720,5.8333,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24286,0 +273,2.7943,5.8148,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,21068,0 +274,2.8328,5.7347,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,29754,0 +275,2.8302,5.7395,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,30828,0 +276,2.8868,5.8715,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24865,0 +277,2.7629,6.0880,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22567,0 +278,2.7849,5.8246,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,25980,0 +279,2.7872,5.6706,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,26634,0 +280,2.8320,5.9028,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23481,0 +281,2.8631,5.8243,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21286,0 +282,2.7644,5.7740,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24350,0 +283,2.7988,5.6732,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,25065,0 +284,2.9211,5.9879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22054,0 +285,2.7935,5.8327,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18944,0 +286,2.8208,5.8049,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24783,0 +287,2.8315,5.6272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24964,0 +288,2.9457,5.9135,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19082,0 +289,2.8101,5.7968,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,13591,0 +290,2.7901,5.8001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22933,0 +291,2.8798,5.8350,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,23004,0 +292,2.9196,5.9098,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +293,2.7766,5.8772,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11041,0 +294,2.8258,5.7817,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20178,0 +295,2.8302,5.6725,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22329,0 +296,2.8701,5.8310,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14301,0 +297,2.8563,5.9074,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9300,0 +298,2.7993,5.8135,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17041,0 +299,2.8072,5.7310,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19734,0 +300,3.0688,6.0414,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11375,0 +301,2.9989,5.8739,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7734,0 +302,2.8717,5.7593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14254,0 +303,2.8746,5.6777,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14888,0 +304,2.8867,5.9003,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9570,0 +305,2.8954,5.8159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7495,0 +306,2.8270,5.8649,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11649,0 +307,2.9241,5.7975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12930,0 +308,3.0402,6.0270,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8080,0 +309,3.0844,5.9608,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7829,0 +310,2.9520,5.7897,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10829,0 +311,2.8313,5.6811,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11174,0 +312,2.8751,5.8679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7803,0 +313,3.0255,5.9042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7821,0 +314,2.8541,5.7878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8521,0 +315,2.7968,5.6312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8433,0 +316,2.8688,5.8485,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7827,0 +317,2.8695,5.8230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7824,0 +318,2.8563,5.8484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8754,0 +319,2.9202,5.6568,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8789,0 +320,2.9163,5.9390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6891,0 +321,2.8405,5.8068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6950,0 +322,2.8742,5.7720,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8210,0 +323,2.9675,5.7165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +324,2.9479,5.8578,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7410,0 +325,2.8242,5.6537,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7426,0 +326,2.7639,5.7230,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9108,0 +327,2.7749,5.7153,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8338,0 +328,2.8852,5.7859,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8290,0 +329,2.8042,5.8240,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8252,0 +330,2.8296,5.7145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8343,0 +331,2.7481,5.6778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8253,0 +332,2.8210,5.7880,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8999,0 +333,2.7612,5.8066,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9005,0 +334,2.7708,5.6878,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8345,0 +335,2.7951,5.6069,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8269,0 +336,2.8946,5.8787,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8543,0 +337,2.8137,5.7419,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8471,0 +338,2.8790,5.8159,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8834,0 +339,2.8451,5.8102,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9451,0 +340,2.8710,5.8094,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,8917,0 +341,2.8934,5.8351,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8865,0 +342,2.8952,5.7243,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8917,0 +343,2.9093,5.7200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9095,0 +344,2.9814,5.8161,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8872,0 +345,2.8870,5.8310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8891,0 +346,2.8689,5.7136,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8902,0 +347,2.9278,5.6610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,9066,0 +348,3.0226,5.8035,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8915,0 +349,2.9957,5.8346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8891,0 +350,2.8445,5.8020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8746,0 +351,2.9832,5.7018,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8809,0 +352,2.8935,5.8972,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22355,0 +353,2.8194,5.7868,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22354,0 +354,2.8472,5.7908,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,27789,0 +355,2.9750,5.6460,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,27092,0 +356,2.8792,5.8600,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8242,0 +357,2.8685,5.8359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8253,0 +358,2.7681,5.8049,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9153,0 +359,2.9330,5.8303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8516,0 +360,2.8588,5.6598,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,132406,0 +361,2.8611,5.6456,0.0040,0.0000,0,0,0.0000,0,0.0000,0,1,0,100951,0 +362,2.7856,5.5983,0.0063,0.0000,0,0,0.0000,0,0.0000,0,1,0,120227,0 +363,2.7832,5.5807,0.0144,0.0000,0,0,0.0000,0,0.0000,0,1,0,144398,0 +364,2.8463,5.9122,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19641,0 +365,2.7887,5.8348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,13844,0 +366,2.7881,5.8096,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19339,0 +367,2.8560,5.6244,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18145,0 +368,2.9796,5.9705,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,25777,0 +369,2.8464,5.8258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17201,0 +370,2.7952,5.8132,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22299,0 +371,2.8345,5.7506,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11353,0 +372,2.8248,5.7929,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,31581,0 +373,2.8595,5.9090,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27502,0 +374,2.7870,5.8218,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,38172,0 +375,2.7786,5.6410,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22646,0 +376,3.2182,6.0532,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,43563,0 +377,3.0190,6.0857,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,30478,0 +378,2.8719,5.8076,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,42586,0 +379,2.7982,5.7605,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,31417,0 +380,2.8905,5.9012,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,44032,0 +381,2.8869,5.8065,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,27986,0 +382,2.8813,5.7506,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,46733,0 +383,2.9392,5.6547,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,40047,0 +384,3.1313,5.8493,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,34926,0 +385,3.0282,5.7842,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,27384,0 +386,2.9561,5.7763,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,46789,0 +387,2.9131,5.7411,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,44886,0 +388,3.1406,6.1409,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,31829,0 +389,3.0939,5.9211,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,25867,0 +390,3.1348,5.9958,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,28588,0 +391,3.0012,5.9047,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,37224,0 +392,2.9807,5.9907,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,25576,0 +393,2.9226,6.0020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23578,0 +394,2.9273,5.9277,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24905,0 +395,3.0056,5.7135,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,31829,0 +396,3.0630,6.1238,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,23775,0 +397,2.9467,5.9710,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21788,0 +398,2.9486,5.9170,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22858,0 +399,2.9864,5.7991,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,28009,0 +400,2.9680,5.9214,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22949,0 +401,2.8582,5.8766,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20546,0 +402,2.8650,5.7958,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24553,0 +403,2.8581,5.6455,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,25477,0 +404,3.0365,6.2507,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22232,0 +405,3.0215,5.9287,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,15697,0 +406,2.9749,5.8193,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,23067,0 +407,3.1543,5.7370,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,23559,0 +408,3.0662,5.9883,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20877,0 +409,2.9937,5.9451,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11766,0 +410,2.9847,5.8715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22239,0 +411,2.9216,5.6255,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22853,0 +412,3.0276,5.8931,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14830,0 +413,3.0431,5.9457,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9697,0 +414,3.0174,5.9605,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21398,0 +415,2.9295,5.7775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21547,0 +416,2.9540,5.8386,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10894,0 +417,2.9805,5.9433,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6739,0 +418,2.9381,5.8788,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19133,0 +419,2.8404,5.7461,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19059,0 +420,2.9666,5.9250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9279,0 +421,2.8424,5.8579,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7392,0 +422,3.0067,5.9423,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14308,0 +423,2.8906,5.6825,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13704,0 +424,3.0102,5.9475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7583,0 +425,2.9463,6.0946,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8226,0 +426,3.0840,5.9853,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11828,0 +427,3.0534,5.8600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12233,0 +428,3.1060,5.9036,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8957,0 +429,3.2336,5.8836,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8958,0 +430,3.0248,5.7390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10215,0 +431,2.9118,5.8041,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10673,0 +432,3.2346,5.9900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8389,0 +433,2.7760,5.8159,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8501,0 +434,2.7560,5.7679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8188,0 +435,2.7542,5.9214,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8249,0 +436,3.1002,6.0157,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8817,0 +437,3.0370,5.8490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8833,0 +438,2.8639,5.7984,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8881,0 +439,2.8798,5.7402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8856,0 +440,2.9705,5.8422,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8853,0 +441,3.0892,5.9186,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8853,0 +442,3.1293,5.7857,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8874,0 +443,3.1039,5.7138,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8872,0 +444,3.0638,5.8161,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8874,0 +445,3.1024,5.8788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8888,0 +446,3.0082,5.7882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8745,0 +447,2.9212,5.6297,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8677,0 +448,2.9171,5.8602,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,22321,0 +449,3.0172,5.9885,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22333,0 +450,3.0174,5.8946,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,27140,0 +451,2.7851,5.8312,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,27241,0 +452,3.0452,5.9510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8244,0 +453,2.9762,5.8861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8235,0 +454,2.8953,5.7625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +455,2.8208,5.7109,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8726,0 +456,2.8502,5.8677,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8225,0 +457,2.8550,5.9268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8225,0 +458,2.8974,5.7837,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,8325,0 +459,2.9998,5.6972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8984,0 +460,2.9348,5.8818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8269,0 +461,2.9753,5.8045,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8251,0 +462,2.8068,5.7492,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,8342,0 +463,2.8364,5.6967,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8898,0 +464,2.8768,5.7768,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7493,0 +465,2.8305,5.8228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7482,0 +466,2.8232,5.7180,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8834,0 +467,2.7855,5.6158,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8923,0 +468,2.9381,5.9878,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7823,0 +469,3.0213,5.9999,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +470,2.9887,5.8437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8849,0 +471,2.9505,5.8989,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8937,0 +472,2.8388,5.9191,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +473,2.8237,5.8406,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7781,0 +474,2.8008,5.7341,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8850,0 +475,2.7954,5.7558,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8872,0 +476,3.0498,6.0137,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7803,0 +477,2.9935,6.1539,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7866,0 +478,2.8268,5.8974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8742,0 +479,2.7595,5.7237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8750,0 +480,2.9883,5.8533,0.0204,0.0000,0,0,0.0000,0,0.0000,0,1,0,130630,0 +481,2.9165,5.7388,0.0149,0.0000,0,0,0.0000,0,0.0000,0,1,0,86057,0 +482,2.8955,5.6507,0.0078,0.0000,0,0,0.0000,0,0.0000,0,1,0,140560,0 +483,3.0047,5.6990,0.0174,0.0000,0,0,0.0000,0,0.0000,0,1,0,152884,0 +484,3.0424,5.9657,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10991,0 +485,3.0399,5.8179,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9729,0 +486,3.0637,5.8129,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15518,0 +487,3.0886,5.6364,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12737,0 +488,3.0725,5.9494,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10592,0 +489,3.1440,5.9611,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9480,0 +490,3.0741,5.9122,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +491,2.9740,5.7428,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +492,3.0241,5.8644,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14142,0 +493,2.8782,5.8129,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12674,0 +494,2.8347,5.8139,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,27500,0 +495,2.8951,5.6649,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,26057,0 +496,2.8817,5.8202,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,26779,0 +497,2.8262,5.8236,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20604,0 +498,2.8238,5.7873,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,38364,0 +499,2.7752,5.7110,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,37535,0 +500,2.8845,5.9348,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,33585,0 +501,2.8647,6.3053,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,26610,0 +502,2.8622,5.8026,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,50314,0 +503,3.1118,5.6350,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,51181,0 +504,2.8801,5.8637,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,42902,0 +505,2.8263,5.8099,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,36957,0 +506,2.8595,5.7527,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45389,0 +507,2.8207,5.6255,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,45978,0 +508,2.8910,5.8491,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,42088,0 +509,3.0580,5.8179,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,31862,0 +510,2.8571,5.8006,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,36203,0 +511,2.8380,5.6692,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,36116,0 +512,2.9712,5.9172,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,43841,0 +513,2.7743,5.8095,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,36990,0 +514,2.8945,5.7348,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45240,0 +515,2.7951,5.6158,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,48386,0 +516,2.9062,5.8326,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,29255,0 +517,2.8775,5.8572,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24136,0 +518,2.8037,5.8110,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +519,2.7664,5.6521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25571,0 +520,2.8364,5.7845,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,24865,0 +521,2.7969,5.8433,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22633,0 +522,2.8637,5.7454,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21503,0 +523,2.8792,6.1038,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,23872,0 +524,2.9923,5.8839,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23550,0 +525,2.7993,5.8240,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21185,0 +526,2.7917,5.8034,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20900,0 +527,2.8143,5.5967,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23379,0 +528,2.8701,5.8213,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23743,0 +529,2.8269,5.8019,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19588,0 +530,2.7948,5.7293,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22014,0 +531,2.8307,5.6005,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +532,2.8914,5.9903,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22801,0 +533,2.9480,5.9738,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14614,0 +534,2.9095,5.8430,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,20574,0 +535,2.8102,5.6822,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +536,2.9308,5.8831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22133,0 +537,2.8061,5.8256,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11287,0 +538,2.8189,5.7339,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14760,0 +539,2.7813,5.6992,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19534,0 +540,2.8487,5.8494,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20768,0 +541,2.8055,5.8329,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9716,0 +542,2.7831,5.7294,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11426,0 +543,2.7534,5.6883,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13949,0 +544,2.8676,5.8678,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14187,0 +545,2.7892,5.8940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6788,0 +546,2.8327,5.7696,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9424,0 +547,2.8490,5.9389,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10770,0 +548,2.9134,5.9328,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10937,0 +549,2.8327,5.8773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7417,0 +550,2.8314,5.8437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8526,0 +551,2.7987,5.7122,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,10655,0 +552,2.8384,5.8459,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,10113,0 +553,2.8440,5.8509,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8259,0 +554,2.7947,5.7780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8352,0 +555,2.7570,5.6200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8373,0 +556,2.8235,5.8345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8367,0 +557,2.8270,5.8744,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8999,0 +558,2.8346,5.8400,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8348,0 +559,2.7565,5.7537,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8852,0 +560,2.9830,5.9526,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8418,0 +561,3.0318,6.0137,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8533,0 +562,2.9504,5.8376,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8835,0 +563,2.9068,5.6833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8843,0 +564,2.9097,5.8720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8843,0 +565,2.8929,5.8209,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8857,0 +566,2.8772,5.7621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8928,0 +567,2.9090,5.6085,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8908,0 +568,2.8843,5.8939,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8880,0 +569,2.8191,5.8618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8878,0 +570,2.7872,5.7300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8931,0 +571,2.7589,5.7062,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8905,0 +572,2.8265,5.8952,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8904,0 +573,2.8711,5.8542,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8915,0 +574,2.8459,5.9907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8792,0 +575,2.9021,5.8221,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8807,0 +576,3.1998,6.2308,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7477,0 +577,3.2362,6.1176,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7418,0 +578,2.8723,5.8755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8276,0 +579,2.8959,5.7046,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8330,0 +580,2.9490,5.9361,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8317,0 +581,2.9122,5.9010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8302,0 +582,2.8703,5.8731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9195,0 +583,2.8982,5.7652,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8790,0 +584,3.0732,6.3992,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8250,0 +585,2.8955,5.9916,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8262,0 +586,2.9715,5.9402,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8351,0 +587,3.0325,5.8819,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8993,0 +588,3.0343,5.9827,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8315,0 +589,3.0181,6.0343,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8311,0 +590,2.8896,5.9285,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8377,0 +591,2.9221,5.7627,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8875,0 +592,3.0126,5.9468,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7536,0 +593,2.9933,5.9553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7615,0 +594,2.9698,7.5755,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8879,0 +595,2.8895,5.6519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8859,0 +596,3.0367,5.8176,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7848,0 +597,2.9899,5.8207,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,7854,0 +598,2.9581,5.8425,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8936,0 +599,2.8251,5.7826,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8909,0 +600,2.9924,5.6387,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,139313,0 +601,2.9650,5.7307,0.0146,0.0000,0,0,0.0000,0,0.0000,0,1,0,107728,0 +602,2.9225,5.5722,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,127689,0 +603,2.8628,5.6950,0.0217,0.0000,0,0,0.0000,0,0.0000,0,1,0,134408,0 +604,2.8215,5.8846,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16705,0 +605,2.8492,5.8463,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10197,0 +606,2.8723,5.8074,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18794,0 +607,2.8738,5.8865,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,20214,0 +608,2.8307,5.8369,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,41121,0 +609,2.8118,5.8238,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22150,0 +610,2.7793,5.7575,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,47396,0 +611,2.8056,5.8381,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,41179,0 +612,3.0042,5.8702,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,30332,0 +613,2.8300,5.8125,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14901,0 +614,2.7974,5.7618,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23065,0 +615,2.8314,5.7921,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21745,0 +616,2.9310,5.8801,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22500,0 +617,2.9125,5.8704,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15987,0 +618,2.8475,5.7860,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,28867,0 +619,2.8367,5.7756,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,30836,0 +620,2.8710,5.8468,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,34846,0 +621,2.9071,5.8256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22071,0 +622,2.8109,5.7519,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,37212,0 +623,2.8284,5.7523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,37807,0 +624,2.8749,5.8600,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,45027,0 +625,2.8600,5.7670,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +626,2.8422,5.7965,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,39945,0 +627,2.9095,6.0390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,42396,0 +628,2.8846,6.0427,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,35374,0 +629,2.7908,5.7966,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,35145,0 +630,2.9400,5.8705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,35509,0 +631,2.8375,5.6574,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,34895,0 +632,2.8908,5.9938,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,30555,0 +633,2.8142,5.9274,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,32874,0 +634,2.8705,5.8041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,28025,0 +635,2.8855,5.8217,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,28426,0 +636,3.0190,5.9069,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,26943,0 +637,2.9708,5.8190,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,26239,0 +638,2.9901,5.8913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27315,0 +639,3.0717,5.8726,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,26911,0 +640,3.0428,5.7846,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,23824,0 +641,2.9789,5.8182,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20904,0 +642,2.8287,5.8803,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,23840,0 +643,3.0536,5.7498,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24540,0 +644,3.0988,5.9357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23924,0 +645,2.8536,5.7852,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21867,0 +646,2.9214,5.9086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21174,0 +647,3.1180,5.7870,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22784,0 +648,2.9175,5.8544,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22758,0 +649,2.8872,5.8038,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,21269,0 +650,2.8820,5.8301,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20453,0 +651,3.0022,5.6825,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,22206,0 +652,3.0301,5.9423,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22055,0 +653,2.9919,5.7464,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18793,0 +654,2.9455,5.8474,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18080,0 +655,3.1795,5.6690,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21688,0 +656,3.1115,5.8658,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22693,0 +657,3.0686,5.8282,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15340,0 +658,3.0357,5.8805,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15067,0 +659,2.9939,5.7660,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +660,3.0889,5.8748,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21318,0 +661,2.9569,5.8060,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11364,0 +662,2.8723,5.8420,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11701,0 +663,3.0830,5.6954,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,15204,0 +664,2.9863,5.8203,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15784,0 +665,2.9100,5.8319,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9656,0 +666,2.8950,5.7986,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,10808,0 +667,2.9573,5.6876,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11458,0 +668,2.8765,5.8435,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11702,0 +669,2.8639,5.8666,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8050,0 +670,2.8075,5.7838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8204,0 +671,2.9182,5.7027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9592,0 +672,2.9568,5.9167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8804,0 +673,2.9555,5.9613,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6851,0 +674,2.8616,5.8243,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8228,0 +675,2.7852,5.7157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7715,0 +676,2.9401,5.8621,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +677,2.8971,5.8280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7392,0 +678,2.8132,5.7170,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9078,0 +679,2.7804,5.6757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8778,0 +680,2.8560,5.8286,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8226,0 +681,2.8274,5.8028,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8226,0 +682,2.8091,5.7713,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8321,0 +683,2.7688,5.5902,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8958,0 +684,3.0116,5.8145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8957,0 +685,3.0076,5.8049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8958,0 +686,2.9117,5.7773,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8321,0 +687,2.8950,5.7850,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8876,0 +688,2.9825,5.9204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8434,0 +689,2.8606,5.8448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8503,0 +690,2.8429,5.8105,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8811,0 +691,2.8319,5.6422,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8896,0 +692,2.8262,5.8408,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8836,0 +693,2.8312,5.8382,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8833,0 +694,2.7809,5.7303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8895,0 +695,2.8480,5.6797,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +696,2.8433,5.8048,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8884,0 +697,2.8402,5.8495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8853,0 +698,2.8085,5.8178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8843,0 +699,2.7607,5.6217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8901,0 +700,2.8370,5.7752,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8886,0 +701,2.8080,5.8778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8888,0 +702,2.7992,5.7888,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8730,0 +703,2.7473,5.6487,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8732,0 +704,2.8465,5.8507,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22373,0 +705,2.8641,5.8880,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22335,0 +706,3.1055,5.7897,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27138,0 +707,2.8300,5.6258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,27167,0 +708,2.8594,5.8142,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8256,0 +709,2.7802,5.8190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8233,0 +710,2.8793,5.8158,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9107,0 +711,2.7849,5.6777,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8761,0 +712,2.9752,6.0520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8211,0 +713,2.8376,5.8167,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8226,0 +714,2.7814,5.8077,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,8361,0 +715,2.8097,5.7633,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,9025,0 +716,2.8627,5.8789,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8284,0 +717,2.8648,5.7774,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8250,0 +718,2.8120,5.7290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +719,2.7968,5.7523,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8991,0 diff --git a/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.txt b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.txt new file mode 100644 index 0000000..3a9fdad --- /dev/null +++ b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.txt @@ -0,0 +1,47 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +tile_frames_requested=720 +tile_frames_encoded=720 +failed_tile_frames=0 +avg_encode_latency_ms=19.135 +p95_encode_latency_ms=19.677 +max_encode_latency_ms=115.349 +avg_tile_encode_latency_ms=5.938 +p95_tile_encode_latency_ms=6.052 +avg_max_tile_encode_latency_ms=6.047 +p95_max_tile_encode_latency_ms=6.248 +payload_bytes=15509161 +send_target=none +csv=benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60_logical.csv b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60_logical.csv new file mode 100644 index 0000000..3a60936 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60_logical.csv @@ -0,0 +1,181 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,115.3494,25.2610,337552 +1,4,0,22.0543,6.4478,177557 +2,4,0,19.1295,5.9696,184703 +3,4,0,18.5297,5.8798,163025 +4,4,0,18.6801,5.9120,182938 +5,4,0,18.8037,5.9445,201402 +6,4,0,18.2717,5.8336,164906 +7,4,0,17.9896,5.8209,119570 +8,4,0,17.9874,5.8203,97514 +9,4,0,17.9016,5.8980,91812 +10,4,0,19.1284,6.0405,88439 +11,4,0,20.7239,6.2480,84094 +12,4,0,20.0164,6.1322,82611 +13,4,0,22.3223,6.1936,73633 +14,4,0,20.4366,6.1731,53857 +15,4,0,19.6732,5.9967,43185 +16,4,0,18.3675,5.8575,34157 +17,4,0,19.3320,6.0792,31724 +18,4,0,18.9155,5.9131,33837 +19,4,0,18.4105,5.8228,35171 +20,4,0,18.0444,5.8267,34625 +21,4,0,17.8362,5.8131,35485 +22,4,0,17.9163,5.8723,35602 +23,4,0,18.0415,5.8507,35368 +24,4,0,17.9996,5.7679,99767 +25,4,0,18.2838,5.8095,34302 +26,4,0,18.2760,5.9663,33806 +27,4,0,18.0413,5.7719,33805 +28,4,0,18.0485,5.7970,32796 +29,4,0,18.0626,5.8166,33458 +30,4,0,17.9423,5.6690,510249 +31,4,0,18.3418,5.7711,67318 +32,4,0,18.4376,5.8871,81297 +33,4,0,18.3038,5.8601,91512 +34,4,0,18.3403,5.8360,92970 +35,4,0,18.2185,6.2656,126579 +36,4,0,19.6072,5.9804,156406 +37,4,0,19.7844,5.8765,139506 +38,4,0,19.5665,6.0001,117916 +39,4,0,19.3225,6.3797,105823 +40,4,0,19.1762,6.3556,90910 +41,4,0,19.5270,6.0964,89185 +42,4,0,19.1499,6.0185,85778 +43,4,0,18.8725,5.8260,79727 +44,4,0,19.0758,5.9498,72220 +45,4,0,18.2608,5.8711,59046 +46,4,0,17.8346,5.7933,47607 +47,4,0,18.1511,5.8504,37607 +48,4,0,18.3922,5.9835,101203 +49,4,0,17.8015,5.8139,32832 +50,4,0,18.0278,5.8770,33733 +51,4,0,17.7860,5.8260,35117 +52,4,0,18.3145,5.8594,34744 +53,4,0,18.2449,5.8471,35377 +54,4,0,18.2355,5.8823,35442 +55,4,0,17.9642,5.9181,35195 +56,4,0,18.4884,5.8927,31431 +57,4,0,17.9769,5.8529,34506 +58,4,0,17.9486,5.8200,33932 +59,4,0,18.6211,5.9687,33864 +60,4,0,18.6892,5.8806,498285 +61,4,0,18.7221,5.8603,59452 +62,4,0,18.4353,5.8564,89734 +63,4,0,18.1773,5.8395,126677 +64,4,0,18.2001,5.8836,241839 +65,4,0,18.0237,5.8560,141494 +66,4,0,18.3604,6.2334,130712 +67,4,0,18.2325,5.9037,114146 +68,4,0,18.1344,5.8333,105936 +69,4,0,17.9816,6.0880,100046 +70,4,0,17.9845,5.9028,94182 +71,4,0,18.1864,5.9879,90745 +72,4,0,18.3446,5.9135,78610 +73,4,0,18.1911,5.9098,72214 +74,4,0,18.1258,5.9074,60376 +75,4,0,18.7452,6.0414,48251 +76,4,0,18.6030,5.9003,41644 +77,4,0,19.2076,6.0270,37912 +78,4,0,18.4130,5.9042,32578 +79,4,0,18.2310,5.8485,33194 +80,4,0,18.5478,5.9390,30413 +81,4,0,17.9660,5.8578,32282 +82,4,0,17.9947,5.8240,33138 +83,4,0,17.7752,5.8066,34618 +84,4,0,18.7273,5.8787,35299 +85,4,0,18.5295,5.8351,35794 +86,4,0,18.5546,5.8310,35731 +87,4,0,18.8497,5.8346,35361 +88,4,0,18.3840,5.8972,99590 +89,4,0,18.3438,5.8600,34164 +90,4,0,17.9084,5.6598,497982 +91,4,0,18.1262,5.9122,70969 +92,4,0,18.4399,5.9705,76630 +93,4,0,18.1589,5.9090,119901 +94,4,0,19.4103,6.0857,148044 +95,4,0,18.2589,5.9012,158798 +96,4,0,18.8225,5.8493,153985 +97,4,0,20.0992,6.1409,123508 +98,4,0,18.9982,6.0020,105888 +99,4,0,19.3712,6.1238,96430 +100,4,0,18.4578,5.9214,93525 +101,4,0,19.5134,6.2507,84555 +102,4,0,18.9277,5.9883,77735 +103,4,0,19.2640,5.9605,67472 +104,4,0,18.8267,5.9433,55825 +105,4,0,18.8899,5.9423,44683 +106,4,0,19.4171,6.0946,39870 +107,4,0,19.3045,5.9036,38803 +108,4,0,18.6290,5.9900,33327 +109,4,0,18.9040,6.0157,35387 +110,4,0,19.2376,5.9186,35452 +111,4,0,18.8788,5.8788,35184 +112,4,0,19.0430,5.9885,99035 +113,4,0,18.7258,5.9510,34311 +114,4,0,18.4601,5.9268,33759 +115,4,0,18.2294,5.8818,33760 +116,4,0,17.9013,5.8228,32732 +117,4,0,19.2812,5.9999,33417 +118,4,0,18.0800,5.9191,33302 +119,4,0,19.0321,6.1539,33161 +120,4,0,18.8608,5.8533,510131 +121,4,0,19.0419,5.9657,48975 +122,4,0,19.4043,5.9611,53680 +123,4,0,18.3633,5.8644,80373 +124,4,0,18.0036,5.8236,123282 +125,4,0,18.6142,6.3053,161690 +126,4,0,18.0796,5.8637,171226 +127,4,0,18.3170,5.8491,146269 +128,4,0,18.1390,5.9172,174457 +129,4,0,18.0712,5.8572,101225 +130,4,0,18.4665,6.1038,92873 +131,4,0,18.0592,5.8839,89014 +132,4,0,17.9162,5.8213,88094 +133,4,0,18.5876,5.9903,79707 +134,4,0,18.0129,5.8831,67714 +135,4,0,17.8794,5.8494,55859 +136,4,0,18.3277,5.9389,41169 +137,4,0,18.2671,5.9328,37535 +138,4,0,17.8849,5.8509,35097 +139,4,0,18.0825,5.8744,34566 +140,4,0,18.9884,6.0137,34629 +141,4,0,18.2810,5.8720,35536 +142,4,0,17.9810,5.8939,35594 +143,4,0,18.5515,5.9907,35418 +144,4,0,19.7559,6.2308,31501 +145,4,0,18.6629,5.9361,34604 +146,4,0,19.4065,6.3992,33856 +147,4,0,19.4848,6.0343,33878 +148,4,0,19.1429,7.5755,32889 +149,4,0,18.7780,5.8425,33547 +150,4,0,18.5780,5.7307,509138 +151,4,0,18.5217,5.8865,65910 +152,4,0,18.1367,5.8381,151846 +153,4,0,18.3591,5.8702,90043 +154,4,0,18.5918,5.8801,98190 +155,4,0,18.2710,5.8468,131936 +156,4,0,18.5617,6.0390,164035 +157,4,0,18.3760,6.0427,140923 +158,4,0,18.7490,5.9938,119880 +159,4,0,19.4461,5.9069,107408 +160,4,0,19.1450,5.8803,93108 +161,4,0,19.3071,5.9357,89749 +162,4,0,18.5949,5.8544,86686 +163,4,0,19.0488,5.9423,80616 +164,4,0,19.1693,5.8805,73692 +165,4,0,18.8262,5.8748,59587 +166,4,0,18.5884,5.8319,47706 +167,4,0,18.2855,5.8666,37548 +168,4,0,18.6886,5.9613,31598 +169,4,0,18.2755,5.8621,32864 +170,4,0,17.8819,5.8286,33731 +171,4,0,18.6823,5.8145,35112 +172,4,0,18.3393,5.9204,34644 +173,4,0,18.0250,5.8408,35461 +174,4,0,17.9883,5.8495,35481 +175,4,0,17.9626,5.8778,35236 +176,4,0,18.3649,5.8880,99013 +177,4,0,18.0650,5.8190,34357 +178,4,0,18.4399,6.0520,33823 +179,4,0,18.1350,5.8789,33872 diff --git a/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.csv b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.csv new file mode 100644 index 0000000..060acf1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.csv @@ -0,0 +1,721 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2146,28.8707,0.0354,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0117,25.3041,0.0180,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,2.8634,25.2411,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.9988,25.6275,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.2146,5.9042,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,3.0117,5.7293,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,2.8634,10.6586,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.9988,10.6520,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.2146,15.6169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,3.0117,15.5848,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,2.8634,20.6099,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.9988,20.5377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.2146,25.5888,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,3.0117,25.5336,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,2.8634,30.5350,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.9988,30.5287,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.2146,35.3490,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,3.0117,35.8064,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,2.8634,40.6295,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.9988,40.7891,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.2146,45.4071,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,3.0117,45.9855,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,2.8634,50.2576,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.9988,51.2319,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.2146,55.3441,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,3.0117,56.1900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,2.8634,60.3016,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.9988,61.3858,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.2146,65.2689,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,3.0117,62.4174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,2.8634,66.3914,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.9988,62.5125,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.2146,63.3971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,3.0117,62.5538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,2.8634,66.4993,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.9988,62.4808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.2146,55.9440,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,3.0117,57.1280,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,2.8634,60.8250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.9988,62.0657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.2146,47.3706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,3.0117,48.4046,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,2.8634,52.0648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.9988,53.6602,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.2146,41.4001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,3.0117,42.7499,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,2.8634,46.0327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.9988,47.6016,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.2146,34.6861,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,3.0117,36.2178,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,2.8634,39.5000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.9988,41.0819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.2146,28.2434,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,3.0117,29.7474,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,2.8634,32.9203,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.9988,34.5826,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.2146,21.7093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,3.0117,23.2407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,2.8634,26.4348,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.9988,28.0526,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.2146,15.1119,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,3.0117,16.6216,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,2.8634,19.8617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.9988,21.5525,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.2146,8.4827,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,3.0117,10.1348,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.8634,13.2861,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.9988,15.0600,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.2146,5.6473,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,3.0117,5.5457,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.8634,10.2758,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.9988,10.2981,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.2146,5.9622,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,3.0117,5.6631,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.8634,10.4659,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.9988,10.3655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.2146,5.8985,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,3.0117,5.6309,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.8634,10.5463,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.9988,10.4494,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.2146,5.9879,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,3.0117,5.6320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.8634,10.4800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.9988,10.4713,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.2146,5.8266,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,3.0117,5.6724,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.8634,10.3766,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.9988,10.4275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.2146,5.9093,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,3.0117,5.6736,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.8634,10.3377,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.9988,10.3521,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.2146,5.7822,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,3.0117,5.5613,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.8634,10.3126,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.9988,10.2905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.2146,5.7917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,3.0117,5.6557,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.8634,10.4070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.9988,10.3997,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.2146,5.7552,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,3.0117,5.6509,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.8634,10.3738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.9988,10.3773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.2146,5.7389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,3.0117,5.6146,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.8634,10.3424,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.9988,10.3932,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.2146,5.8331,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,3.0117,5.6037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.8634,10.3157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.9988,10.2652,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.2146,5.6559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,3.0117,5.5675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.8634,10.2434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.9988,10.2687,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.2146,6.0183,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,3.0117,5.5991,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.8634,10.4860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.9988,10.3669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.2146,5.7720,0.0505,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +121,3.0117,5.4369,0.0420,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +122,2.8634,9.8722,0.0075,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +123,2.9988,9.9202,0.0174,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +124,5.2146,5.8243,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +125,3.0117,5.5352,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +126,2.8634,10.2226,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +127,2.9988,10.2110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +128,5.2146,6.0566,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +129,3.0117,5.5929,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +130,2.8634,10.4496,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +131,2.9988,10.3838,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +132,5.2146,5.9444,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +133,3.0117,5.6018,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +134,2.8634,10.4268,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +135,2.9988,10.3352,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +136,5.2146,6.1039,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +137,3.0117,5.6607,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +138,2.8634,10.4180,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +139,2.9988,10.2766,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +140,5.2146,5.8345,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +141,3.0117,5.6426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +142,2.8634,10.3780,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +143,2.9988,10.3095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +144,5.2146,5.8306,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +145,3.0117,5.5282,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +146,2.8634,10.4337,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +147,2.9988,10.3157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +148,5.2146,6.0661,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +149,3.0117,5.6794,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +150,2.8634,10.3548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +151,2.9988,10.2621,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +152,5.2146,5.8872,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +153,3.0117,5.6208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +154,2.8634,10.4351,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +155,2.9988,10.3438,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +156,5.2146,6.0537,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +157,3.0117,5.6452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +158,2.8634,10.4780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +159,2.9988,10.3956,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +160,5.2146,5.8015,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +161,3.0117,5.5700,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +162,2.8634,10.4518,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +163,2.9988,10.3206,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +164,5.2146,5.7872,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +165,3.0117,5.5714,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +166,2.8634,10.4502,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +167,2.9988,10.3589,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +168,5.2146,5.7763,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +169,3.0117,5.5445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +170,2.8634,10.4108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +171,2.9988,10.3511,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +172,5.2146,5.7495,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +173,3.0117,5.5801,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +174,2.8634,10.4199,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +175,2.9988,10.3104,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +176,5.2146,5.9183,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +177,3.0117,5.5941,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +178,2.8634,10.4815,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +179,2.9988,10.4303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +180,5.2146,5.8610,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +181,3.0117,5.5817,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.8634,10.5220,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +183,2.9988,10.4870,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +184,5.2146,5.7342,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +185,3.0117,5.5638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.8634,10.3807,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +187,2.9988,10.3760,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +188,5.2146,5.7335,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +189,3.0117,5.5755,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.8634,10.4360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +191,2.9988,10.3733,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +192,5.2146,5.9040,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,3.0117,5.6459,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.8634,10.7037,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.9988,10.5622,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +196,5.2146,5.8455,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,3.0117,5.5637,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.8634,10.7025,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.9988,10.5638,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.2146,5.8569,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,3.0117,5.6413,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.8634,10.8187,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.9988,10.6645,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.2146,5.7134,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,3.0117,5.5486,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.8634,10.4142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.9988,10.3985,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.2146,5.7603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,3.0117,5.5494,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.8634,10.7773,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.9988,10.6030,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.2146,5.6375,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,3.0117,5.4986,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.8634,10.3020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.9988,10.2369,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.2146,5.8392,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,3.0117,5.5677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.8634,10.5120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.9988,10.4781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.2146,5.7124,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,3.0117,5.5799,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.8634,10.4263,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.9988,10.3881,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.2146,5.7268,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,3.0117,5.5823,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.8634,10.4771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.9988,10.4606,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.2146,6.4130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,3.0117,6.1331,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.8634,11.1445,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.9988,10.9818,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.2146,5.7596,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,3.0117,5.4972,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.8634,10.7790,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.9988,10.5899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.2146,5.7000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,3.0117,5.5321,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.8634,10.3324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.9988,10.3187,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.2146,5.7033,0.0192,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +241,3.0117,5.4440,0.0190,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +242,2.8634,10.1075,0.0248,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +243,2.9988,10.0910,0.0266,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +244,5.2146,5.9070,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +245,3.0117,5.5953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +246,2.8634,10.4090,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +247,2.9988,10.3522,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +248,5.2146,5.7875,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +249,3.0117,5.6036,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +250,2.8634,10.4853,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +251,2.9988,10.4643,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +252,5.2146,5.8143,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +253,3.0117,5.6546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +254,2.8634,10.3806,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +255,2.9988,10.4093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +256,5.2146,5.7277,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +257,3.0117,5.6133,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +258,2.8634,10.5342,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +259,2.9988,10.4595,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +260,5.2146,5.7274,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +261,3.0117,5.5361,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +262,2.8634,10.3572,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +263,2.9988,10.3355,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +264,5.2146,5.7255,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +265,3.0117,5.5689,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +266,2.8634,10.2695,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +267,2.9988,10.2673,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +268,5.2146,5.8562,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +269,3.0117,5.5478,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +270,2.8634,10.3315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +271,2.9988,10.2621,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +272,5.2146,5.8230,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +273,3.0117,5.6415,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +274,2.8634,10.5320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +275,2.9988,10.4825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +276,5.2146,6.0298,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +277,3.0117,5.6165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +278,2.8634,10.4954,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +279,2.9988,10.4347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +280,5.2146,5.8986,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +281,3.0117,5.6410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +282,2.8634,10.4880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +283,2.9988,10.4883,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +284,5.2146,5.8363,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +285,3.0117,5.6486,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +286,2.8634,10.6253,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +287,2.9988,10.5339,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +288,5.2146,5.9958,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +289,3.0117,5.5544,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +290,2.8634,10.3625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +291,2.9988,10.2506,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +292,5.2146,5.8352,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +293,3.0117,5.6327,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +294,2.8634,10.4451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +295,2.9988,10.4418,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +296,5.2146,6.1327,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +297,3.0117,5.6497,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +298,2.8634,10.5554,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +299,2.9988,10.4492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +300,5.2146,5.8212,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +301,3.0117,5.6543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.8634,10.3991,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +303,2.9988,10.3994,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +304,5.2146,5.8167,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +305,3.0117,5.6404,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.8634,10.3761,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +307,2.9988,10.2840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +308,5.2146,5.8868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +309,3.0117,5.6136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.8634,10.5662,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +311,2.9988,10.4230,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +312,5.2146,5.9209,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,3.0117,5.6795,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.8634,10.4626,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +315,2.9988,10.3391,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +316,5.2146,6.0573,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,3.0117,5.6230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.8634,10.4603,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.9988,10.3911,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +320,5.2146,6.0353,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,3.0117,5.6454,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.8634,10.4310,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.9988,10.3927,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.2146,5.8320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,3.0117,5.6161,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.8634,10.4037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.9988,10.4480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.2146,5.8693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,3.0117,5.6369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.8634,10.4249,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.9988,10.3855,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.2146,5.7592,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,3.0117,5.5423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.8634,10.2254,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.9988,10.1879,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.2146,5.9394,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,3.0117,5.6608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.8634,10.4556,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.9988,10.3943,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.2146,5.7226,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,3.0117,5.5618,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.8634,10.2779,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.9988,10.3007,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.2146,5.7962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,3.0117,5.5599,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.8634,10.3017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.9988,10.2668,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.2146,5.9622,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,3.0117,5.6780,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.8634,10.4455,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.9988,10.4174,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.2146,5.6834,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,3.0117,5.5743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.8634,10.1603,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.9988,10.2219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.2146,5.6699,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,3.0117,5.5538,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.8634,10.2649,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.9988,10.2082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.2146,5.6924,0.0446,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +361,3.0117,5.5483,0.0273,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +362,2.8634,10.0890,0.0369,0.0000,0,0,0.0000,0,0.0000,0,1,0,135591,0 +363,2.9988,9.9881,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +364,5.2146,6.0211,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +365,3.0117,5.6727,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +366,2.8634,10.2996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10168,0 +367,2.9988,10.2701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +368,5.2146,5.8956,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +369,3.0117,5.6214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +370,2.8634,10.3150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19508,0 +371,2.9988,10.2790,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +372,5.2146,5.8933,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +373,3.0117,5.6442,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +374,2.8634,10.3483,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,25621,0 +375,2.9988,10.2970,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +376,5.2146,5.9047,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +377,3.0117,5.6671,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +378,2.8634,10.2959,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,35756,0 +379,2.9988,10.2714,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +380,5.2146,5.9412,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +381,3.0117,5.7507,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +382,2.8634,10.2358,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,34502,0 +383,2.9988,10.2329,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +384,5.2146,6.6209,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +385,3.0117,5.9274,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +386,2.8634,10.1114,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,28730,0 +387,2.9988,10.1922,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +388,5.2146,6.4838,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +389,3.0117,5.7980,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +390,2.8634,10.3880,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,16628,0 +391,2.9988,10.4874,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +392,5.2146,6.3000,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +393,3.0117,5.8203,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +394,2.8634,9.9747,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12128,0 +395,2.9988,9.8670,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +396,5.2146,6.3331,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +397,3.0117,5.7612,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +398,2.8634,9.9875,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +399,2.9988,10.2787,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +400,5.2146,6.6961,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +401,3.0117,5.8546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +402,2.8634,10.1248,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +403,2.9988,10.1245,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +404,5.2146,6.2252,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +405,3.0117,5.7225,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +406,2.8634,10.4293,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +407,2.9988,10.3773,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +408,5.2146,6.0540,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +409,3.0117,5.9517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +410,2.8634,10.1056,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4515,0 +411,2.9988,10.3107,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +412,5.2146,7.1055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +413,3.0117,6.3711,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +414,2.8634,11.0458,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3607,0 +415,2.9988,10.8170,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +416,5.2146,6.4805,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +417,3.0117,5.7902,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +418,2.8634,10.3622,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +419,2.9988,10.4794,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +420,5.2146,6.2338,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +421,3.0117,5.7666,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.8634,10.0582,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +423,2.9988,10.0695,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +424,5.2146,6.0716,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +425,3.0117,5.7629,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.8634,9.8200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +427,2.9988,9.9680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +428,5.2146,6.2335,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +429,3.0117,5.7737,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.8634,9.8554,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +431,2.9988,9.9241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +432,5.2146,6.2873,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,3.0117,5.9223,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.8634,15.2512,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +435,2.9988,15.5611,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +436,5.2146,6.3240,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,3.0117,5.7862,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.8634,10.7953,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.9988,10.8093,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.2146,6.1375,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,3.0117,5.7802,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.8634,10.2797,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.9988,10.4233,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.2146,7.5528,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,3.0117,7.2924,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.8634,10.3798,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.9988,10.3796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.2146,5.8367,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,3.0117,5.5942,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.8634,10.2248,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.9988,10.1408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.2146,5.7714,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,3.0117,5.5393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.8634,10.1958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.9988,10.2226,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.2146,5.8392,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,3.0117,5.5851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.8634,10.2029,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.9988,10.2345,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.2146,5.8133,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,3.0117,5.5754,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.8634,10.1804,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.9988,10.2140,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.2146,5.8033,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,3.0117,5.6107,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.8634,10.3168,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.9988,10.3151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.2146,6.6123,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,3.0117,5.8490,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.8634,10.6167,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.9988,10.4920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.2146,6.6392,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,3.0117,6.0995,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.8634,10.1916,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.9988,10.2164,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.2146,6.7942,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,3.0117,5.8013,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.8634,10.7130,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.9988,10.6301,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.2146,6.3178,0.1593,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +481,3.0117,6.0211,0.0645,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +482,2.8634,10.0177,0.1537,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +483,2.9988,10.1600,0.0481,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +484,5.2146,6.6375,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +485,3.0117,5.7847,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +486,2.8634,10.6126,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +487,2.9988,10.5162,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +488,5.2146,6.6787,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +489,3.0117,6.0116,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +490,2.8634,11.0868,0.0600,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +491,2.9988,11.2336,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +492,5.2146,6.1475,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +493,3.0117,5.7047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +494,2.8634,10.4034,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +495,2.9988,10.2494,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +496,5.2146,6.6410,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +497,3.0117,6.1592,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +498,2.8634,10.4761,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +499,2.9988,10.4320,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +500,5.2146,6.4946,0.0512,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +501,3.0117,6.3984,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +502,2.8634,10.3360,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +503,2.9988,10.2295,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +504,5.2146,6.6785,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +505,3.0117,6.1335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +506,2.8634,10.7902,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +507,2.9988,10.5910,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +508,5.2146,6.2456,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +509,3.0117,5.6726,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +510,2.8634,10.4386,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +511,2.9988,10.2826,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +512,5.2146,5.7565,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +513,3.0117,5.4826,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +514,2.8634,10.3759,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +515,2.9988,10.2888,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +516,5.2146,5.6543,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +517,3.0117,5.4614,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +518,2.8634,10.2383,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +519,2.9988,10.1937,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +520,5.2146,5.5651,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +521,3.0117,5.4095,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +522,2.8634,10.1930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +523,2.9988,10.2151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +524,5.2146,5.5430,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +525,3.0117,5.4298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +526,2.8634,10.1623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +527,2.9988,10.2535,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +528,5.2146,5.6927,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +529,3.0117,5.4905,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +530,2.8634,10.3040,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +531,2.9988,10.2719,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +532,5.2146,5.7492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +533,3.0117,5.5052,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +534,2.8634,10.3815,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +535,2.9988,10.3518,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +536,5.2146,5.6145,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +537,3.0117,5.4923,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +538,2.8634,10.3585,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +539,2.9988,10.3192,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +540,5.2146,5.8315,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +541,3.0117,5.6124,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.8634,10.4770,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +543,2.9988,10.6520,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +544,5.2146,7.1655,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +545,3.0117,6.0012,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.8634,9.1729,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +547,2.9988,10.6428,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +548,5.2146,8.5209,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +549,3.0117,8.0019,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.8634,10.3755,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +551,2.9988,10.2405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +552,5.2146,7.1038,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,3.0117,6.2808,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.8634,10.1394,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.9988,10.1462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +556,5.2146,6.1840,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,3.0117,5.7368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.8634,10.5685,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.9988,10.4618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +560,5.2146,5.9294,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,3.0117,5.5786,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.8634,10.3118,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.9988,10.2412,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.2146,5.8160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,3.0117,5.5244,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.8634,10.2789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.9988,10.2224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.2146,5.8274,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,3.0117,5.6141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.8634,10.3071,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.9988,10.3108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.2146,5.6671,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,3.0117,5.5687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.8634,10.2519,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.9988,10.2032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.2146,5.9130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,3.0117,5.7464,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.8634,10.4424,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.9988,10.3852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.2146,5.6827,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,3.0117,5.6354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.8634,10.3153,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.9988,10.2018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.2146,5.8027,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,3.0117,5.6186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.8634,10.7110,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.9988,10.5128,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.2146,6.5846,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,3.0117,5.9213,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.8634,10.1120,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.9988,10.4442,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.2146,9.5118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,3.0117,7.9519,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.8634,9.3734,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.9988,10.0993,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.2146,6.1722,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,3.0117,5.7465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.8634,10.4031,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.9988,10.2170,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.2146,6.1738,0.0305,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,3.0117,5.7229,0.0264,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,2.8634,10.0559,0.0154,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +603,2.9988,9.9787,0.0109,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +604,5.2146,6.2142,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,3.0117,5.6973,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,2.8634,11.5539,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +607,2.9988,11.3030,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +608,5.2146,6.6139,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,3.0117,5.7658,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,2.8634,10.3950,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +611,2.9988,10.3053,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +612,5.2146,6.2686,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,3.0117,5.7745,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,2.8634,10.3180,0.0740,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +615,2.9988,10.2237,0.0691,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +616,5.2146,6.5874,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,3.0117,5.8785,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,2.8634,10.6425,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +619,2.9988,10.1527,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +620,5.2146,7.5967,0.0739,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,3.0117,7.0263,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,2.8634,10.0102,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +623,2.9988,10.1560,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +624,5.2146,6.8450,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,3.0117,6.1376,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,2.8634,10.5810,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +627,2.9988,10.3840,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +628,5.2146,6.5903,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,3.0117,5.8543,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,2.8634,10.3090,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +631,2.9988,10.2127,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +632,5.2146,6.5744,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,3.0117,5.8039,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,2.8634,10.1695,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +635,2.9988,10.1953,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +636,5.2146,6.7400,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,3.0117,5.8273,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,2.8634,11.3556,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +639,2.9988,11.6773,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +640,5.2146,6.7115,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,3.0117,5.9722,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,2.8634,10.2850,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +643,2.9988,10.2788,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +644,5.2146,6.0706,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,3.0117,5.7525,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,2.8634,10.4805,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +647,2.9988,10.2444,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +648,5.2146,6.4253,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,3.0117,5.7639,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,2.8634,10.5657,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +651,2.9988,10.3320,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +652,5.2146,6.4606,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,3.0117,6.0244,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,2.8634,11.0265,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +655,2.9988,11.0618,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +656,5.2146,6.5535,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,3.0117,5.8230,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,2.8634,10.6778,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +659,2.9988,10.2266,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +660,5.2146,6.5155,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,3.0117,5.8627,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.8634,10.0589,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +663,2.9988,10.1636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +664,5.2146,6.2375,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,3.0117,5.9250,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.8634,10.4375,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +667,2.9988,10.2527,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +668,5.2146,6.6989,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,3.0117,6.0486,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.8634,10.1406,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +671,2.9988,10.0370,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +672,5.2146,6.5801,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,3.0117,5.8675,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.8634,10.3763,0.0431,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +675,2.9988,10.2525,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +676,5.2146,6.6216,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,3.0117,5.8888,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.8634,10.5811,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.9988,10.4806,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.2146,6.4710,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,3.0117,5.7650,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.8634,10.3651,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.9988,10.3787,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.2146,6.4000,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,3.0117,5.7726,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.8634,12.6628,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.9988,12.5094,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.2146,6.7197,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,3.0117,5.8172,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.8634,10.5895,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.9988,10.4400,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.2146,6.4847,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,3.0117,5.7874,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.8634,10.3513,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.9988,10.2124,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.2146,6.4009,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,3.0117,5.7822,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.8634,10.1739,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.9988,10.1590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.2146,6.3697,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,3.0117,5.6445,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.8634,10.2120,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.9988,10.2912,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.2146,6.4125,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,3.0117,5.6149,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.8634,10.2829,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.9988,10.2035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.2146,6.6674,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,3.0117,5.8389,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.8634,10.0244,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.9988,10.5085,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.2146,6.6906,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,3.0117,5.9216,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.8634,10.4992,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.9988,10.4327,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.2146,6.6251,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,3.0117,5.8754,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.8634,10.5649,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.9988,10.4440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.txt b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.txt new file mode 100644 index 0000000..e89995a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.txt @@ -0,0 +1,48 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +tile_frames_requested=720 +tile_frames_encoded=720 +failed_tile_frames=0 +avg_encode_latency_ms=14.587 +p95_encode_latency_ms=41.007 +max_encode_latency_ms=105.535 +avg_tile_encode_latency_ms=10.912 +p95_tile_encode_latency_ms=34.588 +avg_max_tile_encode_latency_ms=13.259 +p95_max_tile_encode_latency_ms=34.893 +payload_bytes=6939381 +send_target=none +csv=benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60_logical.csv b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60_logical.csv new file mode 100644 index 0000000..c35fed7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60_logical.csv @@ -0,0 +1,181 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.5355,28.8707,337552 +1,4,0,11.0901,10.6586,152351 +2,4,0,20.7897,20.6099,149416 +3,4,0,30.7638,30.5350,142089 +4,4,0,40.9794,40.7891,112777 +5,4,0,51.4288,51.2319,114708 +6,4,0,61.5694,61.3858,64955 +7,4,0,71.7826,66.3914,37587 +8,4,0,69.6697,66.4993,26109 +9,4,0,62.4133,62.0657,23201 +10,4,0,54.0786,53.6602,18705 +11,4,0,48.0927,47.6016,14742 +12,4,0,41.5333,41.0819,11738 +13,4,0,35.0262,34.5826,9530 +14,4,0,28.4819,28.0526,6611 +15,4,0,21.9551,21.5525,3979 +16,4,0,15.4642,15.0600,2445 +17,4,0,10.8878,10.2981,2516 +18,4,0,11.1378,10.4659,2602 +19,4,0,11.1241,10.5463,2599 +20,4,0,11.1675,10.4800,2598 +21,4,0,11.1798,10.4275,2598 +22,4,0,11.0715,10.3521,2598 +23,4,0,10.9476,10.3126,2598 +24,4,0,11.0651,10.4070,2598 +25,4,0,11.0134,10.3773,2598 +26,4,0,10.9703,10.3932,2598 +27,4,0,10.9534,10.3157,2598 +28,4,0,10.9712,10.2687,2598 +29,4,0,11.1668,10.4860,2598 +30,4,0,10.7107,9.9202,498346 +31,4,0,10.9075,10.2226,19526 +32,4,0,11.2148,10.4496,49926 +33,4,0,11.1178,10.4268,72591 +34,4,0,11.1229,10.4180,94714 +35,4,0,10.9304,10.3780,102589 +36,4,0,10.9896,10.4337,92848 +37,4,0,11.0268,10.3548,51377 +38,4,0,10.9850,10.4351,33231 +39,4,0,11.1006,10.4780,24324 +40,4,0,10.9476,10.4518,19367 +41,4,0,10.9832,10.4502,14990 +42,4,0,10.9098,10.4108,12446 +43,4,0,10.9012,10.4199,9614 +44,4,0,11.0482,10.4815,5145 +45,4,0,11.0140,10.5220,2474 +46,4,0,10.9096,10.3807,2528 +47,4,0,10.8964,10.4360,2611 +48,4,0,11.1606,10.7037,2599 +49,4,0,11.1498,10.7025,2598 +50,4,0,11.1661,10.8187,2598 +51,4,0,10.8470,10.4142,2598 +52,4,0,11.1205,10.7773,2598 +53,4,0,10.7580,10.3020,2598 +54,4,0,11.0199,10.5120,2598 +55,4,0,10.9200,10.4263,2598 +56,4,0,10.9868,10.4771,2598 +57,4,0,11.6018,11.1445,2598 +58,4,0,11.2695,10.7790,2598 +59,4,0,10.8618,10.3324,2598 +60,4,0,10.7272,10.1075,498132 +61,4,0,11.0929,10.4090,20854 +62,4,0,10.9985,10.4853,48076 +63,4,0,10.9511,10.4093,72195 +64,4,0,10.9571,10.5342,93609 +65,4,0,10.8954,10.3572,111529 +66,4,0,10.8533,10.2695,62671 +67,4,0,10.8912,10.3315,40728 +68,4,0,11.0378,10.5320,26742 +69,4,0,11.1690,10.4954,25712 +70,4,0,11.2188,10.4883,19261 +71,4,0,11.1765,10.6253,15312 +72,4,0,11.0745,10.3625,13171 +73,4,0,11.0852,10.4451,11269 +74,4,0,11.2940,10.5554,8412 +75,4,0,10.9816,10.3994,4982 +76,4,0,10.9270,10.3761,2487 +77,4,0,11.0898,10.5662,2532 +78,4,0,11.1806,10.4626,2602 +79,4,0,11.2017,10.4603,2599 +80,4,0,11.1482,10.4310,2598 +81,4,0,11.0777,10.4480,2598 +82,4,0,11.1465,10.4249,2598 +83,4,0,10.8747,10.2254,2598 +84,4,0,11.1047,10.4556,2598 +85,4,0,10.9391,10.3007,2598 +86,4,0,10.9773,10.3017,2598 +87,4,0,11.1119,10.4455,2598 +88,4,0,10.9194,10.2219,2598 +89,4,0,10.7998,10.2649,2598 +90,4,0,10.7122,10.0890,493623 +91,4,0,11.1939,10.2996,25413 +92,4,0,11.1233,10.3150,53795 +93,4,0,11.0062,10.3483,77620 +94,4,0,11.0738,10.2959,106757 +95,4,0,11.1404,10.2358,107241 +96,4,0,11.9298,10.1922,92553 +97,4,0,11.9688,10.4874,53976 +98,4,0,11.3631,9.9747,36249 +99,4,0,11.7758,10.2787,26392 +100,4,0,11.9978,10.1248,20459 +101,4,0,11.2692,10.4293,15963 +102,4,0,11.5106,10.3107,13313 +103,4,0,12.4584,11.0458,10672 +104,4,0,11.8120,10.4794,7102 +105,4,0,11.6891,10.0695,2477 +106,4,0,11.5458,9.9680,2435 +107,4,0,11.5058,9.9241,2613 +108,4,0,17.0991,15.5611,2600 +109,4,0,11.9185,10.8093,2598 +110,4,0,11.6578,10.4233,2598 +111,4,0,11.0307,10.3798,2598 +112,4,0,11.0686,10.2248,2598 +113,4,0,11.0253,10.2226,2598 +114,4,0,11.0263,10.2345,2598 +115,4,0,10.9634,10.2140,2598 +116,4,0,10.9499,10.3168,2598 +117,4,0,11.9575,10.6167,2598 +118,4,0,11.4997,10.2164,2598 +119,4,0,12.2488,10.7130,2598 +120,4,0,11.6013,10.1600,498132 +121,4,0,11.9626,10.6126,20593 +122,4,0,12.6658,11.2336,48200 +123,4,0,11.2481,10.4034,72383 +124,4,0,11.4335,10.4761,93404 +125,4,0,11.2238,10.3360,106965 +126,4,0,11.9997,10.7902,78581 +127,4,0,11.3468,10.4386,46185 +128,4,0,10.8813,10.3759,29688 +129,4,0,10.7223,10.2383,25287 +130,4,0,10.6578,10.2151,19338 +131,4,0,10.6312,10.2535,15081 +132,4,0,10.7574,10.3040,12572 +133,4,0,10.8388,10.3815,9988 +134,4,0,10.7657,10.3585,6110 +135,4,0,11.1242,10.6520,4547 +136,4,0,12.7337,10.6428,2543 +137,4,0,11.6646,10.3755,2530 +138,4,0,11.7350,10.1462,2601 +139,4,0,11.4247,10.5685,2599 +140,4,0,11.0124,10.3118,2598 +141,4,0,10.8968,10.2789,2598 +142,4,0,10.8647,10.3108,2598 +143,4,0,10.8348,10.2519,2598 +144,4,0,10.9737,10.4424,2598 +145,4,0,10.9463,10.3153,2598 +146,4,0,11.3492,10.7110,2598 +147,4,0,12.1559,10.4442,2598 +148,4,0,12.4726,10.0993,2598 +149,4,0,11.2283,10.4031,2598 +150,4,0,11.1022,10.0559,498346 +151,4,0,13.0307,11.5539,19787 +152,4,0,12.6295,10.3950,49802 +153,4,0,11.7005,10.3180,72403 +154,4,0,12.3127,10.6425,94919 +155,4,0,11.6883,10.1560,107153 +156,4,0,11.8770,10.5810,76938 +157,4,0,12.1157,10.3090,45920 +158,4,0,11.8114,10.1953,30285 +159,4,0,13.1509,11.6773,24749 +160,4,0,11.6880,10.2850,19290 +161,4,0,11.4667,10.4805,15221 +162,4,0,11.6969,10.5657,13045 +163,4,0,11.7596,11.0618,10895 +164,4,0,11.8055,10.6778,7447 +165,4,0,11.9317,10.1636,2909 +166,4,0,11.3053,10.4375,2472 +167,4,0,12.0401,10.1406,2613 +168,4,0,12.0477,10.3763,2600 +169,4,0,11.7460,10.5811,2598 +170,4,0,11.7754,10.3787,2598 +171,4,0,13.6744,12.6628,2598 +172,4,0,11.9807,10.5895,2598 +173,4,0,11.6355,10.3513,2598 +174,4,0,11.6695,10.1739,2598 +175,4,0,11.6324,10.2912,2598 +176,4,0,11.8163,10.2829,2598 +177,4,0,12.6464,10.5085,2598 +178,4,0,11.8480,10.4992,2598 +179,4,0,12.6393,10.5649,2598 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.csv new file mode 100644 index 0000000..96ac709 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.0382,29.4280,0.0267,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.3613,27.0256,0.0185,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,3.4580,25.5812,0.0302,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,4.7632,24.6740,0.0089,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,6.0382,5.9377,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,3.3613,5.6892,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,3.4580,10.4792,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,4.7632,10.4932,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,6.0382,15.5443,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,3.3613,15.4588,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,3.4580,20.5248,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,4.7632,20.4529,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,6.0382,25.4043,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,3.3613,25.4153,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,3.4580,30.5434,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,4.7632,30.4505,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,6.0382,35.4358,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,3.3613,35.3755,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,3.4580,40.5663,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,4.7632,40.4102,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,6.0382,45.6990,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,3.3613,45.3746,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,3.4580,50.6056,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,4.7632,50.2921,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,6.0382,55.6368,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,3.3613,55.4484,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,3.4580,60.8518,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,4.7632,60.7650,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,6.0382,65.9877,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,3.3613,62.0846,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,3.4580,67.3473,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,4.7632,62.2306,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,6.0382,68.0727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,3.3613,62.0619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,3.4580,67.8618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,4.7632,62.3713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,6.0382,63.6184,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,3.3613,62.4716,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,3.4580,68.3271,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,4.7632,62.2650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,6.0382,56.5329,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,3.3613,55.1652,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,3.4580,61.2210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,4.7632,60.1096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,6.0382,48.6823,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,3.3613,47.1630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,3.4580,53.6814,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,4.7632,52.3904,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,6.0382,42.7745,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,3.3613,41.4871,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,3.4580,47.5468,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,4.7632,46.3578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,6.0382,36.3228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,3.3613,35.2003,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,3.4580,41.0679,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,4.7632,40.0049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,6.0382,30.0627,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,3.3613,29.0052,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,3.4580,34.9629,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,4.7632,33.9612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,6.0382,23.1120,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,3.3613,22.4251,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,3.4580,27.8992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,4.7632,27.3001,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,6.0382,16.4123,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,3.3613,15.6809,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,3.4580,21.2236,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,4.7632,20.4574,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,6.0382,9.4811,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,3.3613,8.7731,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,3.4580,14.2497,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,4.7632,13.7438,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,6.0382,5.6974,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,3.3613,5.5147,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,3.4580,10.3994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,4.7632,10.3762,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,6.0382,5.8879,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,3.3613,5.6374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,3.4580,10.2760,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,4.7632,10.2350,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,6.0382,5.8030,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,3.3613,5.5571,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,3.4580,10.4132,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,4.7632,10.2850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,6.0382,5.9582,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,3.3613,5.5803,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,3.4580,10.4460,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,4.7632,10.3300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,6.0382,5.8482,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,3.3613,5.5218,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,3.4580,10.4291,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,4.7632,10.3535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,6.0382,5.8231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,3.3613,5.5439,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,3.4580,10.4568,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,4.7632,10.3980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,6.0382,5.8747,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,3.3613,5.5925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,3.4580,10.5201,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,4.7632,10.4080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,6.0382,5.9107,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,3.3613,5.7007,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,3.4580,10.4329,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,4.7632,10.4347,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,6.0382,5.7453,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,3.3613,5.5251,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,3.4580,10.3777,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,4.7632,10.2900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,6.0382,5.8454,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,3.3613,5.5643,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,3.4580,10.3989,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,4.7632,10.2791,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,6.0382,5.7930,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,3.3613,5.5753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,3.4580,10.4860,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,4.7632,10.3932,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,6.0382,5.8318,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,3.3613,5.5295,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,3.4580,10.4233,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,4.7632,10.3336,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,6.0382,5.7955,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,3.3613,5.5911,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,3.4580,10.7018,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,4.7632,10.6282,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,6.0382,5.8013,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,3.3613,5.5509,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,3.4580,10.4345,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,4.7632,10.4029,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,6.0382,5.8710,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,3.3613,5.6165,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,3.4580,10.4658,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,4.7632,10.3240,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,6.0382,5.7454,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,3.3613,5.5006,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,3.4580,10.3292,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,4.7632,10.2466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,6.0382,5.8799,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,3.3613,5.5903,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,3.4580,10.3941,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,4.7632,10.3240,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,6.0382,5.8221,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,3.3613,5.5603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,3.4580,10.4794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,4.7632,10.3762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,6.0382,5.7340,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,3.3613,5.5395,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,3.4580,10.3887,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,4.7632,10.2823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,6.0382,5.9075,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,3.3613,5.6396,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,3.4580,10.4163,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,4.7632,10.2658,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,6.0382,5.7861,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,3.3613,5.5868,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,3.4580,10.4430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,4.7632,10.4226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,6.0382,5.8870,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,3.3613,5.6069,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,3.4580,10.4629,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,4.7632,10.2977,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,6.0382,5.8806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,3.3613,5.5832,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,3.4580,10.3682,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,4.7632,10.2934,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,6.0382,5.8963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,3.3613,5.5832,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,3.4580,10.5333,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,4.7632,10.4302,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,6.0382,5.7787,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,3.3613,5.4970,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,3.4580,10.4111,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,4.7632,10.3255,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,6.0382,5.7963,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,3.3613,5.5570,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,3.4580,10.3872,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,4.7632,10.3448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,6.0382,5.7885,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,3.3613,5.5970,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,3.4580,10.3674,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,4.7632,10.3425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,6.0382,5.9198,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,3.3613,5.6744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,3.4580,10.4968,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,4.7632,10.4205,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,6.0382,5.8239,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,3.3613,5.5797,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,3.4580,10.5176,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,4.7632,10.4225,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,6.0382,5.8098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,3.3613,5.6066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,3.4580,10.4820,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,4.7632,10.4572,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,6.0382,5.8207,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,3.3613,5.6092,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,3.4580,10.3746,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,4.7632,10.2862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,6.0382,5.8863,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,3.3613,5.5598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,3.4580,10.5010,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,4.7632,10.4526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,6.0382,5.8031,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,3.3613,5.5983,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,3.4580,10.4847,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,4.7632,10.3970,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,6.0382,5.9088,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,3.3613,5.6079,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,3.4580,10.4085,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,4.7632,10.3194,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,6.0382,5.7708,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,3.3613,5.5681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,3.4580,10.4278,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,4.7632,10.3638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,6.0382,5.8804,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,3.3613,5.6129,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,3.4580,10.4830,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,4.7632,10.4936,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,6.0382,5.7656,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,3.3613,5.4562,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,3.4580,10.3184,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,4.7632,10.3010,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,6.0382,5.7798,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,3.3613,5.5740,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,3.4580,10.3857,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,4.7632,10.3377,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,6.0382,5.7881,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,3.3613,5.6113,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,3.4580,10.4141,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,4.7632,10.3293,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,6.0382,5.8731,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,3.3613,5.6005,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,3.4580,10.4078,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,4.7632,10.2762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,6.0382,5.7874,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,3.3613,5.5575,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,3.4580,10.3843,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,4.7632,10.3301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,6.0382,5.7771,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,3.3613,5.5140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,3.4580,10.3540,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,4.7632,10.3018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,6.0382,5.7401,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,3.3613,5.5271,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,3.4580,10.4254,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,4.7632,10.2928,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,6.0382,5.7351,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,3.3613,5.5466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,3.4580,10.3574,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,4.7632,10.2867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,6.0382,5.8251,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,3.3613,5.6068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,3.4580,10.3073,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,4.7632,10.2272,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,6.0382,5.8301,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,3.3613,5.5850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,3.4580,10.4148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,4.7632,10.3430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,6.0382,5.7192,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,3.3613,5.5492,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,3.4580,10.3715,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,4.7632,10.3016,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,6.0382,5.7875,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,3.3613,5.6263,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,3.4580,10.2643,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,4.7632,10.2523,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,6.0382,5.7773,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,3.3613,5.5950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,3.4580,10.2760,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,4.7632,10.2957,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,6.0382,5.7515,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,3.3613,5.5343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,3.4580,10.2800,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,4.7632,10.2913,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,6.0382,5.7987,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,3.3613,5.5308,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,3.4580,10.3908,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,4.7632,10.2931,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,6.0382,5.7794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,3.3613,5.6779,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,3.4580,10.2775,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,4.7632,10.2227,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,6.0382,5.8877,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,3.3613,5.5922,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,3.4580,10.3816,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,4.7632,10.3001,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,6.0382,5.9318,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,3.3613,5.6448,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,3.4580,10.3486,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,4.7632,10.2521,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,6.0382,5.8392,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,3.3613,5.5677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,3.4580,10.4971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,4.7632,10.4983,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,6.0382,5.7470,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,3.3613,5.5933,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,3.4580,10.2983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,4.7632,10.3561,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,6.0382,6.0087,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,3.3613,5.5480,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,3.4580,10.3907,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,4.7632,10.2832,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,6.0382,5.8078,0.0559,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +301,3.3613,5.4426,0.0140,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +302,3.4580,10.1044,0.0388,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +303,4.7632,10.1030,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +304,6.0382,5.8649,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +305,3.3613,5.5912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +306,3.4580,10.4699,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +307,4.7632,10.3457,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +308,6.0382,5.9533,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +309,3.3613,5.5198,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +310,3.4580,10.4000,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +311,4.7632,10.3352,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +312,6.0382,5.9952,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +313,3.3613,5.5604,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +314,3.4580,10.4481,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +315,4.7632,10.3807,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +316,6.0382,5.8972,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +317,3.3613,5.6612,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +318,3.4580,10.5712,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +319,4.7632,10.4971,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +320,6.0382,6.3058,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +321,3.3613,6.0340,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +322,3.4580,11.0485,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +323,4.7632,10.8751,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +324,6.0382,5.9176,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +325,3.3613,5.5907,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +326,3.4580,10.5017,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +327,4.7632,10.5149,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +328,6.0382,5.8577,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +329,3.3613,5.5397,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +330,3.4580,10.4228,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +331,4.7632,10.3756,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +332,6.0382,5.6909,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +333,3.3613,5.5022,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +334,3.4580,10.4971,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +335,4.7632,10.4898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +336,6.0382,5.9495,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +337,3.3613,5.6043,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +338,3.4580,10.5463,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +339,4.7632,10.4881,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +340,6.0382,5.7622,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +341,3.3613,5.4859,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +342,3.4580,10.5057,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +343,4.7632,10.4467,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +344,6.0382,5.7372,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +345,3.3613,5.5003,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +346,3.4580,10.4916,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +347,4.7632,10.4869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +348,6.0382,5.7400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +349,3.3613,5.5788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +350,3.4580,10.4561,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +351,4.7632,10.4349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +352,6.0382,5.6486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +353,3.3613,5.5005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +354,3.4580,10.3834,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +355,4.7632,10.3800,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +356,6.0382,5.8525,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +357,3.3613,5.5652,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +358,3.4580,10.4690,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +359,4.7632,10.3813,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +360,6.0382,5.8874,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +361,3.3613,5.5947,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,3.4580,10.3810,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +363,4.7632,10.3006,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +364,6.0382,5.8189,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +365,3.3613,5.5807,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,3.4580,10.4734,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +367,4.7632,10.4037,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +368,6.0382,5.7847,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +369,3.3613,5.6102,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,3.4580,10.3818,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +371,4.7632,10.3833,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +372,6.0382,5.7271,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,3.3613,5.4729,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,3.4580,10.4682,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +375,4.7632,10.4222,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +376,6.0382,5.8125,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,3.3613,5.6042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,3.4580,10.3713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,4.7632,10.3454,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +380,6.0382,5.7686,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,3.3613,5.6452,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,3.4580,10.4668,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,4.7632,10.4543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,6.0382,5.8685,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,3.3613,5.5469,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,3.4580,10.3854,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,4.7632,10.3110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +388,6.0382,5.8145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,3.3613,5.6239,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,3.4580,10.4548,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,4.7632,10.3730,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,6.0382,5.9909,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,3.3613,5.5954,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,3.4580,10.1970,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,4.7632,10.1602,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,6.0382,5.8795,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,3.3613,5.6012,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,3.4580,10.4198,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,4.7632,10.3420,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,6.0382,5.8594,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,3.3613,5.5585,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,3.4580,10.3720,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,4.7632,10.3613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,6.0382,5.6427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,3.3613,5.4053,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,3.4580,10.2657,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,4.7632,10.1655,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,6.0382,5.7989,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,3.3613,5.5468,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,3.4580,10.4029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,4.7632,10.3867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,6.0382,5.8328,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,3.3613,5.5135,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,3.4580,10.4796,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,4.7632,10.3906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,6.0382,5.7882,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,3.3613,5.5525,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,3.4580,10.4168,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,4.7632,10.3401,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,6.0382,5.8746,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,3.3613,5.5635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,3.4580,10.3985,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,4.7632,10.2642,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,6.0382,5.6552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,3.3613,5.3647,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,3.4580,10.1306,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,4.7632,10.0700,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,6.0382,5.7734,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,3.3613,5.4657,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,3.4580,10.3170,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,4.7632,10.2099,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,6.0382,5.7785,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,3.3613,5.5339,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,3.4580,10.5382,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,4.7632,10.4127,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,6.0382,5.9254,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,3.3613,5.6875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,3.4580,10.3468,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,4.7632,10.2940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,6.0382,5.7887,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,3.3613,5.5681,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,3.4580,10.3251,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,4.7632,10.2954,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,6.0382,5.8438,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,3.3613,5.5464,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,3.4580,10.4807,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,4.7632,10.4421,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,6.0382,5.7686,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,3.3613,5.5899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,3.4580,10.4085,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,4.7632,10.3812,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,6.0382,5.8389,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,3.3613,5.5704,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,3.4580,10.4110,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,4.7632,10.2922,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,6.0382,5.8213,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,3.3613,5.6154,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,3.4580,10.3815,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,4.7632,10.3637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,6.0382,5.7995,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,3.3613,5.6530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,3.4580,10.6276,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,4.7632,10.5891,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,6.0382,5.9469,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,3.3613,5.5941,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,3.4580,10.6529,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,4.7632,10.5336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,6.0382,5.9102,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,3.3613,5.6390,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,3.4580,10.4875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,4.7632,10.4889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,6.0382,5.8568,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,3.3613,5.5604,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,3.4580,10.5054,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,4.7632,10.4629,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,6.0382,5.8620,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,3.3613,5.6007,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,3.4580,10.3319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,4.7632,10.2746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,6.0382,5.6871,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,3.3613,5.5588,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,3.4580,10.2861,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,4.7632,10.2175,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,6.0382,5.8661,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,3.3613,5.5650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,3.4580,10.4772,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,4.7632,10.4248,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,6.0382,5.9603,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,3.3613,5.7043,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,3.4580,10.4328,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,4.7632,10.4566,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,6.0382,5.8046,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,3.3613,5.5552,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,3.4580,10.4565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,4.7632,10.4441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,6.0382,5.8101,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,3.3613,5.5255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,3.4580,10.3599,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,4.7632,10.3276,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,6.0382,5.7701,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,3.3613,5.5588,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,3.4580,10.5466,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,4.7632,10.5298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,6.0382,5.7828,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,3.3613,5.5546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,3.4580,10.5255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,4.7632,10.5195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,6.0382,5.9737,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,3.3613,5.6903,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,3.4580,10.4382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,4.7632,10.3876,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,6.0382,5.8337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,3.3613,5.5558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,3.4580,10.5343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,4.7632,10.5403,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,6.0382,5.7908,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,3.3613,5.5603,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,3.4580,10.4039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,4.7632,10.3759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,6.0382,5.7094,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,3.3613,5.4988,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,3.4580,10.2806,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,4.7632,10.2437,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,6.0382,5.7378,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,3.3613,5.5293,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,3.4580,10.5265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,4.7632,10.4495,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,6.0382,5.7321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,3.3613,5.5698,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,3.4580,10.3107,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,4.7632,10.2910,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,6.0382,5.9189,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,3.3613,5.6816,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,3.4580,10.4197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,4.7632,10.4204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,6.0382,5.7698,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,3.3613,5.5657,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,3.4580,10.4722,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,4.7632,10.3943,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,6.0382,5.7677,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,3.3613,5.6000,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,3.4580,10.3749,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,4.7632,10.3289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,6.0382,5.8950,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,3.3613,5.5601,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,3.4580,10.2915,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,4.7632,10.2747,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,6.0382,5.7405,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,3.3613,5.5505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,3.4580,10.3444,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,4.7632,10.2705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,6.0382,6.0628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,3.3613,5.6141,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,3.4580,10.4392,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,4.7632,10.3552,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,6.0382,5.7435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,3.3613,5.5863,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,3.4580,10.3179,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,4.7632,10.3155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,6.0382,5.7250,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,3.3613,5.6557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,3.4580,10.2840,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,4.7632,10.2854,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,6.0382,5.6675,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,3.3613,5.5584,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,3.4580,10.2705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,4.7632,10.1900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,6.0382,5.6858,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,3.3613,5.5737,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,3.4580,10.1665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,4.7632,10.1618,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,6.0382,5.8224,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,3.3613,5.5477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,3.4580,10.2123,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,4.7632,10.1998,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,6.0382,5.7547,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,3.3613,5.5714,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,3.4580,10.2599,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,4.7632,10.2781,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,6.0382,5.7710,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,3.3613,5.5999,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,3.4580,10.4222,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,4.7632,10.4147,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,6.0382,5.7633,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,3.3613,5.5399,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,3.4580,10.3096,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,4.7632,10.3141,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,6.0382,5.7282,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,3.3613,5.5988,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,3.4580,10.4616,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,4.7632,10.4431,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,6.0382,5.9276,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,3.3613,5.6477,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,3.4580,10.3062,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,4.7632,10.2523,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,6.0382,5.7656,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,3.3613,5.6450,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,3.4580,10.2693,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,4.7632,10.3017,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,6.0382,5.8137,0.0566,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,3.3613,5.5068,0.0238,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,3.4580,10.0673,0.0173,0.0000,0,0,0.0000,0,0.0000,0,1,0,141143,0 +603,4.7632,10.0390,0.0225,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +604,6.0382,5.7607,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,3.3613,5.5525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,3.4580,10.4296,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11680,0 +607,4.7632,10.3619,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +608,6.0382,5.7100,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,3.3613,5.5625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,3.4580,10.3567,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,17270,0 +611,4.7632,10.3197,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +612,6.0382,5.7847,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,3.3613,5.5087,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,3.4580,10.1881,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22985,0 +615,4.7632,10.1758,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +616,6.0382,5.8176,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,3.3613,5.5577,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,3.4580,10.3989,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,27672,0 +619,4.7632,10.4013,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +620,6.0382,5.7792,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,3.3613,5.5309,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,3.4580,10.2699,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,29161,0 +623,4.7632,10.2716,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +624,6.0382,5.8205,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,3.3613,5.5443,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,3.4580,10.2823,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,22449,0 +627,4.7632,10.3167,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +628,6.0382,5.7993,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,3.3613,5.5398,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,3.4580,10.5597,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14554,0 +631,4.7632,10.5620,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +632,6.0382,5.8712,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,3.3613,5.5961,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,3.4580,10.3637,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,9321,0 +635,4.7632,10.3028,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +636,6.0382,5.8058,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,3.3613,5.5451,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,3.4580,10.2906,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6401,0 +639,4.7632,10.2807,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +640,6.0382,5.7292,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,3.3613,5.4927,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,3.4580,10.2794,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +643,4.7632,10.2552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +644,6.0382,6.0338,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,3.3613,5.6865,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,3.4580,10.4093,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4198,0 +647,4.7632,10.3734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +648,6.0382,5.8059,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,3.3613,5.5930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,3.4580,10.4668,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3263,0 +651,4.7632,10.4373,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +652,6.0382,5.7597,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,3.3613,5.5413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,3.4580,10.3438,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +655,4.7632,10.2873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +656,6.0382,5.7741,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,3.3613,5.5681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,3.4580,10.3332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +659,4.7632,10.2579,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +660,6.0382,5.8630,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,3.3613,5.6121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,3.4580,10.3761,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +663,4.7632,10.3175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +664,6.0382,6.0162,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,3.3613,5.6640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,3.4580,10.4674,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +667,4.7632,10.4396,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +668,6.0382,5.7358,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,3.3613,5.5457,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,3.4580,10.3134,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +671,4.7632,10.2625,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +672,6.0382,5.8680,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,3.3613,5.5691,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,3.4580,10.4935,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,4.7632,10.3734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +676,6.0382,5.8071,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,3.3613,5.7521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,3.4580,10.4004,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,4.7632,10.2949,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +680,6.0382,5.8959,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,3.3613,5.6408,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,3.4580,10.4731,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,4.7632,10.4017,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,6.0382,5.8313,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,3.3613,5.6058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,3.4580,10.3914,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,4.7632,10.2988,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,6.0382,5.7571,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,3.3613,5.5837,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,3.4580,10.4808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,4.7632,10.4316,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,6.0382,5.7053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,3.3613,5.5064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,3.4580,10.2819,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,4.7632,10.2511,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,6.0382,5.6248,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,3.3613,5.6008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,3.4580,10.1555,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,4.7632,10.1495,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,6.0382,5.7941,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,3.3613,5.5975,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,3.4580,10.4223,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,4.7632,10.3744,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,6.0382,5.7405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,3.3613,5.5396,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,3.4580,10.3730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,4.7632,10.3313,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,6.0382,5.6984,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,3.3613,5.5427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,3.4580,10.2630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,4.7632,10.2249,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,6.0382,5.8948,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,3.3613,5.6094,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,3.4580,10.5537,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,4.7632,10.4774,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,6.0382,5.7970,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,3.3613,5.6235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,3.4580,10.3377,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,4.7632,10.2464,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,6.0382,6.1720,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,3.3613,5.7416,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,3.4580,10.5285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,4.7632,10.3944,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,6.0382,6.1010,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,3.3613,5.6492,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,3.4580,14.8003,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,4.7632,14.7848,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,6.0382,15.7206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,3.3613,15.4633,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,3.4580,30.0719,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,4.7632,29.9353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,6.0382,28.7110,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,3.3613,28.5300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,3.4580,39.6827,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,4.7632,39.5342,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,6.0382,37.3887,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,3.3613,37.1248,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,3.4580,46.7927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,4.7632,46.5904,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,6.0382,41.7760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,3.3613,41.4132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,3.4580,50.9064,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,4.7632,50.6032,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,6.0382,46.2975,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,3.3613,45.7257,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,3.4580,55.4032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,4.7632,55.0924,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,6.0382,45.3092,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,3.3613,45.0672,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,3.4580,54.8883,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,4.7632,54.3540,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,6.0382,49.0777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,3.3613,48.5426,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,3.4580,58.4110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,4.7632,57.5872,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,6.0382,53.0424,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,3.3613,52.1256,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,3.4580,62.1201,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,4.7632,61.4489,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,6.0382,54.3885,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,3.3613,53.2393,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,3.4580,63.4370,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,4.7632,62.7152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,6.0382,59.0260,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,3.3613,57.6731,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,3.4580,68.4434,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,4.7632,67.0085,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,6.0382,61.7649,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,3.3613,60.6087,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,3.4580,71.3008,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,4.7632,70.0668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,6.0382,64.6573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,3.3613,63.2383,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,3.4580,74.1885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,4.7632,72.9474,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,6.0382,66.4788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,3.3613,64.8039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,3.4580,75.8671,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,4.7632,74.2878,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,6.0382,69.5112,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,3.3613,67.9344,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,3.4580,78.8709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,4.7632,77.4380,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,6.0382,73.7530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,3.3613,71.7953,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,3.4580,82.9972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,4.7632,81.2283,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,6.0382,76.7600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,3.3613,74.8443,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,3.4580,85.9235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,4.7632,84.2643,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,6.0382,79.3858,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,3.3613,77.5738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,3.4580,89.0255,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,4.7632,86.9584,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,6.0382,82.4410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,3.3613,80.2410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,3.4580,92.1413,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,4.7632,89.9030,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,6.0382,84.0444,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,3.3613,81.6292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,3.4580,93.2865,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,4.7632,91.0550,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,6.0382,87.3644,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,3.3613,84.8263,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,3.4580,96.5360,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,4.7632,94.1793,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,6.0382,91.6244,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,3.3613,89.2143,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,3.4580,100.9664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,4.7632,98.6630,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,6.0382,94.7104,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,3.3613,91.8841,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,3.4580,103.9695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,4.7632,101.8155,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,6.0382,97.3484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,3.3613,95.0182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,3.4580,106.7191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,4.7632,104.5432,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,6.0382,100.0450,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,3.3613,97.6268,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,3.4580,109.3080,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,4.7632,107.0598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,6.0382,101.2277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,3.3613,98.8039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,3.4580,110.5907,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,4.7632,108.2135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,6.0382,105.5630,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,3.3613,103.0404,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,3.4580,114.9944,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,4.7632,112.5475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,6.0382,106.7690,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,3.3613,104.1926,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,3.4580,116.2444,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,4.7632,113.6562,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,6.0382,110.0113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,3.3613,107.3185,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,3.4580,119.4053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,4.7632,113.9565,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,6.0382,113.3494,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,3.3613,110.6212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,3.4580,122.8003,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,4.7632,113.9382,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,6.0382,116.8072,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,3.3613,113.9158,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,3.4580,126.1151,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,4.7632,113.9824,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,6.0382,120.2557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,3.3613,113.9524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,3.4580,126.1793,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,4.7632,113.8276,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,6.0382,123.6814,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,3.3613,113.8080,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,3.4580,126.0634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,4.7632,113.8821,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,6.0382,126.1725,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,3.3613,113.8319,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,3.4580,126.1873,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,4.7632,113.6797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,6.0382,126.0916,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,3.3613,113.7013,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,3.4580,126.1723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,4.7632,113.6399,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,6.0382,126.0709,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,3.3613,113.6045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,3.4580,126.1535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,4.7632,113.5722,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,6.0382,126.0780,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,3.3613,113.4989,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,3.4580,126.2055,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,4.7632,113.4878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,6.0382,126.1508,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,3.3613,113.3658,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,3.4580,126.2397,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,4.7632,113.3206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,6.0382,126.2458,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,3.3613,113.2742,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,3.4580,126.2319,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,4.7632,113.1952,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,6.0382,126.3217,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,3.3613,113.2213,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,3.4580,126.3449,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,4.7632,113.1471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,6.0382,126.1648,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,3.3613,113.0477,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,3.4580,126.1343,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,4.7632,113.0121,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,6.0382,126.2728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,3.3613,112.9206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,3.4580,126.3252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,4.7632,112.9508,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,6.0382,126.3692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,3.3613,112.9759,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,3.4580,126.3790,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,4.7632,112.8414,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,6.0382,126.2989,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,3.3613,112.8511,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,3.4580,126.4225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,4.7632,112.9142,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,6.0382,126.0335,0.0453,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +901,3.3613,112.7098,0.0227,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +902,3.4580,125.8019,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +903,4.7632,112.4505,0.0070,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +904,6.0382,126.0484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +905,3.3613,112.3772,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +906,3.4580,126.0198,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +907,4.7632,112.3713,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +908,6.0382,126.0518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +909,3.3613,112.3177,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +910,3.4580,126.1290,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +911,4.7632,112.2102,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +912,6.0382,126.0360,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +913,3.3613,112.1238,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +914,3.4580,126.0099,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17114,0 +915,4.7632,111.9560,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +916,6.0382,125.8813,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +917,3.3613,111.9344,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +918,3.4580,125.9065,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,32567,0 +919,4.7632,112.0647,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +920,6.0382,125.9751,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +921,3.3613,111.8593,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +922,3.4580,126.1155,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12243,0 +923,4.7632,111.6855,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +924,6.0382,125.9185,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +925,3.3613,111.9685,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +926,3.4580,126.1287,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17820,0 +927,4.7632,112.2692,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +928,6.0382,126.6290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +929,3.3613,112.1392,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +930,3.4580,126.5727,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10237,0 +931,4.7632,111.9916,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +932,6.0382,126.5453,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +933,3.3613,111.9920,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +934,3.4580,126.5859,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9857,0 +935,4.7632,111.9136,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +936,6.0382,126.5407,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +937,3.3613,111.8873,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +938,3.4580,128.2795,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +939,4.7632,111.8636,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +940,6.0382,126.6869,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +941,3.3613,111.7449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +942,3.4580,126.6787,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6084,0 +943,4.7632,111.6407,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +944,6.0382,126.6443,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +945,3.3613,111.5169,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +946,3.4580,126.5897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5296,0 +947,4.7632,111.3054,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +948,6.0382,126.5367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +949,3.3613,111.2909,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,3.4580,126.4450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +951,4.7632,111.4023,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +952,6.0382,126.6600,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +953,3.3613,111.3176,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +954,3.4580,126.6443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3919,0 +955,4.7632,111.0891,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +956,6.0382,126.4885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +957,3.3613,110.9308,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +958,3.4580,126.3167,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3272,0 +959,4.7632,110.7108,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +960,6.0382,126.1569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +961,3.3613,110.5941,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,3.4580,126.0162,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2280,0 +963,4.7632,108.6236,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +964,6.0382,123.9978,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +965,3.3613,110.3889,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,3.4580,125.9986,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +967,4.7632,110.5335,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +968,6.0382,126.2485,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +969,3.3613,110.3240,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,3.4580,126.1640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,612,0 +971,4.7632,110.1697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +972,6.0382,126.0748,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,3.3613,109.9937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,3.4580,126.0413,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +975,4.7632,110.0890,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +976,6.0382,126.0888,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,3.3613,110.0134,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,3.4580,125.9788,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +979,4.7632,109.8932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +980,6.0382,125.8664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,3.3613,109.8005,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,3.4580,125.9018,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,4.7632,109.7297,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,6.0382,125.9721,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,3.3613,109.7205,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,3.4580,126.0564,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,4.7632,109.5951,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +988,6.0382,126.0148,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,3.3613,109.5463,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,3.4580,125.9967,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,4.7632,109.6207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,6.0382,126.1783,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,3.3613,109.2821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,3.4580,125.9080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,4.7632,109.4922,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,6.0382,126.0478,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,3.3613,109.3710,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,3.4580,125.9709,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,4.7632,109.2477,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,6.0382,125.9183,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,3.3613,109.2415,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,3.4580,125.9767,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,4.7632,109.1833,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,6.0382,125.9528,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,3.3613,109.1160,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,3.4580,126.0220,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,4.7632,109.0437,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,6.0382,126.0092,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,3.3613,108.8219,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,3.4580,125.9626,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,4.7632,108.8506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,6.0382,126.0828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,3.3613,108.6303,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,3.4580,125.8689,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,4.7632,108.6669,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,6.0382,126.1176,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,3.3613,108.5851,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,3.4580,126.0938,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,4.7632,108.5014,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,6.0382,126.1056,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,3.3613,108.4562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,3.4580,126.1572,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,4.7632,108.3872,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,6.0382,126.2056,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,3.3613,108.2841,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,3.4580,126.0570,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,4.7632,108.1086,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,6.0382,126.0643,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,3.3613,108.1930,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,3.4580,126.3068,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,4.7632,108.2399,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,6.0382,126.4572,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,3.3613,108.3230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,3.4580,126.3902,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,4.7632,108.3073,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,6.0382,126.2789,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,3.3613,108.2460,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,3.4580,126.2968,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,4.7632,108.4269,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,6.0382,126.4995,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,3.3613,108.1861,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,3.4580,126.3161,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,4.7632,108.2367,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,6.0382,126.4616,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,3.3613,108.1925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,3.4580,126.5862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,4.7632,108.3662,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,6.0382,126.5150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,3.3613,108.4799,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,3.4580,126.4626,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,4.7632,108.3992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,6.0382,126.5515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,3.3613,108.2818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,3.4580,126.4135,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,4.7632,108.3165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,6.0382,126.6683,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,3.3613,108.2917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,3.4580,126.5280,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,4.7632,108.5943,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,6.0382,126.7390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,3.3613,108.5047,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,3.4580,126.7873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,4.7632,108.7566,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,6.0382,126.8798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,3.3613,108.7376,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,3.4580,126.9083,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,4.7632,108.7314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,6.0382,126.8978,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,3.3613,108.6807,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,3.4580,126.8399,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,4.7632,108.4882,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,6.0382,126.6052,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,3.3613,108.5532,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,3.4580,126.8083,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,4.7632,108.5941,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,6.0382,126.9604,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,3.3613,108.7313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,3.4580,126.9988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,4.7632,108.6463,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,6.0382,126.8216,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,3.3613,108.5842,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,3.4580,126.7130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,4.7632,108.4283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,6.0382,126.6582,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,3.3613,108.4614,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,3.4580,126.6209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,4.7632,108.4047,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,6.0382,126.5291,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,3.3613,108.4600,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,3.4580,126.6442,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,4.7632,108.4480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,6.0382,126.7459,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,3.3613,108.5496,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,3.4580,126.7717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,4.7632,108.6480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,6.0382,126.7908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,3.3613,108.6033,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,3.4580,126.7864,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,4.7632,108.4038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,6.0382,126.6953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,3.3613,108.4861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,3.4580,126.8445,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,4.7632,108.3915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,6.0382,126.7585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,3.3613,108.6780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,3.4580,126.9027,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,4.7632,108.5768,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,6.0382,126.7623,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,3.3613,108.5523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,3.4580,126.8353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,4.7632,108.6334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,6.0382,126.7939,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,3.3613,108.6171,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,3.4580,126.9675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,4.7632,108.4700,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,6.0382,126.5635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,3.3613,108.6288,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,3.4580,126.5402,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,4.7632,108.4857,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,6.0382,126.4314,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,3.3613,108.4285,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,3.4580,126.4590,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,4.7632,108.2554,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,6.0382,126.2831,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,3.3613,108.2398,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,3.4580,126.3162,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,4.7632,107.9528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,6.0382,126.1556,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,3.3613,107.9470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,3.4580,126.0631,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,4.7632,108.0059,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,6.0382,126.0236,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,3.3613,107.7667,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,3.4580,125.9231,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,4.7632,107.8803,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,6.0382,126.0464,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,3.3613,107.8774,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,3.4580,126.0598,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,4.7632,107.7566,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,6.0382,125.9841,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,3.3613,108.1818,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,3.4580,126.6293,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,4.7632,108.2100,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,6.0382,126.5826,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,3.3613,108.6638,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,3.4580,126.8134,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,4.7632,108.7302,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,6.0382,126.9613,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,3.3613,108.9002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,3.4580,127.0945,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,4.7632,109.0288,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,6.0382,127.2233,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,3.3613,109.2398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,3.4580,127.3175,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,4.7632,109.3471,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,6.0382,127.5673,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,3.3613,109.2461,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,3.4580,127.5567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,4.7632,109.5178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,6.0382,127.7489,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,3.3613,109.4396,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,3.4580,127.7435,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,4.7632,109.6410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,6.0382,127.8792,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,3.3613,109.6392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,3.4580,127.8709,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,4.7632,109.5293,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,6.0382,127.4209,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,3.3613,109.4450,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,3.4580,127.2254,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,4.7632,109.1456,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,6.0382,127.0336,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,3.3613,108.9232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,3.4580,126.9798,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,4.7632,108.7073,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,6.0382,126.8111,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,3.3613,108.6770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,3.4580,126.8143,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,4.7632,108.6013,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,6.0382,127.0198,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,3.3613,108.4258,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,3.4580,126.8935,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,4.7632,108.3602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,6.0382,126.7278,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,3.3613,108.4281,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,3.4580,126.3270,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,4.7632,108.7382,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,6.0382,126.3972,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,3.3613,108.4325,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,3.4580,126.3423,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,4.7632,108.8107,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,6.0382,131.1161,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,3.3613,109.5035,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,3.4580,136.4224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,4.7632,114.6310,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,6.0382,141.6527,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,3.3613,119.6278,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,3.4580,146.9196,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,4.7632,124.5939,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.txt b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.txt new file mode 100644 index 0000000..941defd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.txt @@ -0,0 +1,55 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=57.227 +p95_encode_latency_ms=136.621 +max_encode_latency_ms=156.679 +avg_steady_encode_latency_ms=58.237 +p95_steady_encode_latency_ms=136.642 +max_steady_encode_latency_ms=156.679 +avg_tile_encode_latency_ms=49.226 +p95_tile_encode_latency_ms=126.590 +avg_max_tile_encode_latency_ms=53.743 +p95_max_tile_encode_latency_ms=126.898 +avg_steady_max_tile_encode_latency_ms=54.834 +p95_steady_max_tile_encode_latency_ms=126.903 +payload_bytes=5100530 +send_target=none +csv=benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60_logical.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60_logical.csv new file mode 100644 index 0000000..d593515 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,107.1322,29.4280,337552 +1,4,0,11.0541,10.4932,152351 +2,4,0,20.7361,20.5248,149416 +3,4,0,30.7130,30.5434,142089 +4,4,0,40.7210,40.5663,112777 +5,4,0,50.8190,50.6056,114708 +6,4,0,61.0607,60.8518,64955 +7,4,0,71.2692,67.3473,37587 +8,4,0,73.2121,68.0727,26109 +9,4,0,68.9362,68.3271,23201 +10,4,0,61.5998,61.2210,18705 +11,4,0,54.0155,53.6814,14742 +12,4,0,47.7899,47.5468,11738 +13,4,0,41.3229,41.0679,9530 +14,4,0,35.1731,34.9629,6611 +15,4,0,28.1134,27.8992,3979 +16,4,0,21.5242,21.2236,2445 +17,4,0,14.5326,14.2497,2516 +18,4,0,10.9144,10.3994,2602 +19,4,0,11.0954,10.2760,2599 +20,4,0,10.9730,10.4132,2598 +21,4,0,11.1366,10.4460,2598 +22,4,0,10.9675,10.4291,2598 +23,4,0,10.9920,10.4568,2598 +24,4,0,11.0676,10.5201,2598 +25,4,0,11.1976,10.4347,2598 +26,4,0,10.8507,10.3777,2598 +27,4,0,10.9419,10.3989,2598 +28,4,0,11.0283,10.4860,2598 +29,4,0,10.9381,10.4233,2598 +30,4,0,11.2284,10.7018,2598 +31,4,0,11.0105,10.4345,2598 +32,4,0,11.0587,10.4658,2598 +33,4,0,10.8102,10.3292,2598 +34,4,0,10.9019,10.3941,2598 +35,4,0,10.9849,10.4794,2598 +36,4,0,10.8883,10.3887,2598 +37,4,0,11.0353,10.4163,2598 +38,4,0,11.0214,10.4430,2598 +39,4,0,10.9739,10.4629,2598 +40,4,0,10.9062,10.3682,2598 +41,4,0,11.0507,10.5333,2598 +42,4,0,10.8691,10.4111,2598 +43,4,0,10.9260,10.3872,2598 +44,4,0,10.9962,10.3674,2598 +45,4,0,11.0510,10.4968,2598 +46,4,0,11.0653,10.5176,2598 +47,4,0,11.0253,10.4820,2598 +48,4,0,10.9011,10.3746,2598 +49,4,0,11.1337,10.5010,2598 +50,4,0,11.0365,10.4847,2598 +51,4,0,11.0402,10.4085,2598 +52,4,0,10.9130,10.4278,2598 +53,4,0,11.0462,10.4936,2598 +54,4,0,10.8743,10.3184,2598 +55,4,0,10.9152,10.3857,2598 +56,4,0,10.9213,10.4141,2598 +57,4,0,10.9344,10.4078,2598 +58,4,0,10.9069,10.3843,2598 +59,4,0,10.9022,10.3540,2598 +60,4,0,10.9098,10.4254,2598 +61,4,0,10.8876,10.3574,2598 +62,4,0,10.9595,10.3073,2598 +63,4,0,10.9582,10.4148,2598 +64,4,0,10.8694,10.3715,2598 +65,4,0,10.9791,10.2643,2598 +66,4,0,10.9087,10.2957,2598 +67,4,0,10.9467,10.2913,2598 +68,4,0,10.9292,10.3908,2598 +69,4,0,10.8788,10.2775,2598 +70,4,0,11.0010,10.3816,2598 +71,4,0,11.0365,10.3486,2598 +72,4,0,11.0357,10.4983,2598 +73,4,0,10.9729,10.3561,2598 +74,4,0,11.0493,10.3907,2598 +75,4,0,10.8010,10.1044,509392 +76,4,0,11.0158,10.4699,24883 +77,4,0,11.0417,10.4000,47613 +78,4,0,11.1172,10.4481,71527 +79,4,0,11.0439,10.5712,68958 +80,4,0,11.4952,11.0485,94555 +81,4,0,11.0903,10.5149,71830 +82,4,0,10.9857,10.4228,47124 +83,4,0,10.9868,10.4971,32913 +84,4,0,11.1061,10.5463,27481 +85,4,0,10.9983,10.5057,21594 +86,4,0,10.9410,10.4916,17229 +87,4,0,11.0178,10.4561,14517 +88,4,0,10.8401,10.3834,12404 +89,4,0,10.9931,10.4690,9822 +90,4,0,11.0585,10.3810,6553 +91,4,0,11.0094,10.4734,5621 +92,4,0,10.9595,10.3833,4570 +93,4,0,10.9388,10.4682,2531 +94,4,0,10.9800,10.3713,2524 +95,4,0,11.0003,10.4668,2601 +96,4,0,10.9608,10.3854,2599 +97,4,0,10.9725,10.4548,2598 +98,4,0,11.2525,10.1970,2598 +99,4,0,11.0288,10.4198,2598 +100,4,0,10.9157,10.3720,2598 +101,4,0,10.7932,10.2657,2598 +102,4,0,10.9477,10.4029,2598 +103,4,0,10.9768,10.4796,2598 +104,4,0,10.9962,10.4168,2598 +105,4,0,11.0747,10.3985,2598 +106,4,0,10.6688,10.1306,2598 +107,4,0,10.8399,10.3170,2598 +108,4,0,11.0165,10.5382,2598 +109,4,0,11.0836,10.3468,2598 +110,4,0,10.8559,10.3251,2598 +111,4,0,11.0947,10.4807,2598 +112,4,0,10.9526,10.4085,2598 +113,4,0,11.0023,10.4110,2598 +114,4,0,10.9870,10.3815,2598 +115,4,0,11.3033,10.6276,2598 +116,4,0,11.3242,10.6529,2598 +117,4,0,11.0563,10.4889,2598 +118,4,0,11.0260,10.5054,2598 +119,4,0,11.0412,10.3319,2598 +120,4,0,10.8245,10.2861,2598 +121,4,0,11.0342,10.4772,2598 +122,4,0,10.9547,10.4566,2598 +123,4,0,11.0176,10.4565,2598 +124,4,0,10.8844,10.3599,2598 +125,4,0,11.0210,10.5466,2598 +126,4,0,11.1037,10.5255,2598 +127,4,0,11.0173,10.4382,2598 +128,4,0,11.0931,10.5403,2598 +129,4,0,10.8537,10.4039,2598 +130,4,0,10.8378,10.2806,2598 +131,4,0,11.0712,10.5265,2598 +132,4,0,10.8509,10.3107,2598 +133,4,0,10.9754,10.4204,2598 +134,4,0,11.0258,10.4722,2598 +135,4,0,10.9401,10.3749,2598 +136,4,0,11.0263,10.2915,2598 +137,4,0,11.0048,10.3444,2598 +138,4,0,11.2354,10.4392,2598 +139,4,0,10.9168,10.3179,2598 +140,4,0,10.9394,10.2854,2598 +141,4,0,10.8473,10.2705,2598 +142,4,0,10.8802,10.1665,2598 +143,4,0,10.9550,10.2123,2598 +144,4,0,10.9229,10.2781,2598 +145,4,0,10.9716,10.4222,2598 +146,4,0,10.9099,10.3141,2598 +147,4,0,11.0585,10.4616,2598 +148,4,0,10.9431,10.3062,2598 +149,4,0,11.0117,10.3017,2598 +150,4,0,10.7383,10.0673,498961 +151,4,0,10.9376,10.4296,27992 +152,4,0,10.8535,10.3567,49831 +153,4,0,10.8568,10.1881,74776 +154,4,0,10.9504,10.4013,97363 +155,4,0,10.8657,10.2716,106276 +156,4,0,10.9768,10.3167,72005 +157,4,0,11.1108,10.5620,46710 +158,4,0,10.8836,10.3637,29899 +159,4,0,10.8473,10.2906,24990 +160,4,0,10.8661,10.2794,18955 +161,4,0,11.1721,10.4093,14889 +162,4,0,11.0441,10.4668,12187 +163,4,0,10.8217,10.3438,9555 +164,4,0,10.8623,10.3332,6103 +165,4,0,10.9077,10.3761,4541 +166,4,0,11.0951,10.4674,2543 +167,4,0,10.8576,10.3134,2530 +168,4,0,11.0664,10.4935,2601 +169,4,0,11.1055,10.4004,2599 +170,4,0,11.0810,10.4731,2598 +171,4,0,10.8795,10.3914,2598 +172,4,0,11.0337,10.4808,2598 +173,4,0,10.8577,10.2819,2598 +174,4,0,10.9098,10.1555,2598 +175,4,0,10.9361,10.4223,2598 +176,4,0,10.8784,10.3730,2598 +177,4,0,10.8308,10.2630,2598 +178,4,0,11.2001,10.5537,2598 +179,4,0,10.9617,10.3377,2598 +180,4,0,11.2316,10.5285,2598 +181,4,0,15.6483,14.8003,2598 +182,4,0,30.7142,30.0719,2598 +183,4,0,40.0973,39.6827,2598 +184,4,0,47.2679,46.7927,2598 +185,4,0,51.4507,50.9064,2598 +186,4,0,55.9227,55.4032,2598 +187,4,0,55.2816,54.8883,2598 +188,4,0,59.0111,58.4110,2598 +189,4,0,62.6624,62.1201,2598 +190,4,0,64.0499,63.4370,2598 +191,4,0,68.9933,68.4434,2598 +192,4,0,71.6852,71.3008,2598 +193,4,0,74.6340,74.1885,2598 +194,4,0,76.2383,75.8671,2598 +195,4,0,79.2064,78.8709,2598 +196,4,0,83.4020,82.9972,2598 +197,4,0,86.3708,85.9235,2598 +198,4,0,89.4358,89.0255,2598 +199,4,0,92.5342,92.1413,2598 +200,4,0,93.6720,93.2865,2598 +201,4,0,97.0158,96.5360,2598 +202,4,0,101.3218,100.9664,2598 +203,4,0,104.3621,103.9695,2598 +204,4,0,107.0346,106.7191,2598 +205,4,0,109.7456,109.3080,2598 +206,4,0,110.9698,110.5907,2598 +207,4,0,115.3786,114.9944,2598 +208,4,0,116.5959,116.2444,2598 +209,4,0,119.7562,119.4053,2598 +210,4,0,123.0969,122.8003,2598 +211,4,0,126.5405,126.1151,2598 +212,4,0,130.0098,126.1793,2598 +213,4,0,133.4648,126.0634,2598 +214,4,0,135.9410,126.1873,2598 +215,4,0,135.8643,126.1723,2598 +216,4,0,135.8022,126.1535,2598 +217,4,0,135.8605,126.2055,2598 +218,4,0,136.0248,126.2397,2598 +219,4,0,135.9306,126.2458,2598 +220,4,0,136.0695,126.3449,2598 +221,4,0,135.9123,126.1648,2598 +222,4,0,136.0712,126.3252,2598 +223,4,0,136.0807,126.3790,2598 +224,4,0,136.1071,126.4225,2598 +225,4,0,135.4255,126.0335,509662 +226,4,0,135.9108,126.0484,31095 +227,4,0,135.8563,126.1290,44547 +228,4,0,135.7527,126.0360,68237 +229,4,0,135.6254,125.9065,77607 +230,4,0,135.8920,126.1155,72384 +231,4,0,135.6325,126.1287,76535 +232,4,0,136.4513,126.6290,48789 +233,4,0,136.4026,126.5859,36606 +234,4,0,137.9289,128.2795,27960 +235,4,0,136.4556,126.6869,22315 +236,4,0,136.3968,126.6443,17904 +237,4,0,136.2468,126.5367,14580 +238,4,0,136.3963,126.6600,12493 +239,4,0,136.2012,126.4885,10174 +240,4,0,135.8696,126.1569,7785 +241,4,0,133.6585,125.9986,5590 +242,4,0,135.8957,126.2485,4482 +243,4,0,135.9194,126.0748,2533 +244,4,0,135.8023,126.0888,2525 +245,4,0,135.6522,125.9018,2601 +246,4,0,135.6618,126.0564,2599 +247,4,0,135.6790,126.0148,2598 +248,4,0,135.9406,126.1783,2598 +249,4,0,135.7641,126.0478,2598 +250,4,0,135.7040,125.9767,2598 +251,4,0,135.7181,126.0220,2598 +252,4,0,135.8002,126.0092,2598 +253,4,0,135.7704,126.0828,2598 +254,4,0,135.8468,126.1176,2598 +255,4,0,135.8665,126.1572,2598 +256,4,0,135.9053,126.2056,2598 +257,4,0,135.8055,126.3068,2598 +258,4,0,136.1498,126.4572,2598 +259,4,0,136.0074,126.2968,2598 +260,4,0,136.2513,126.4995,2598 +261,4,0,136.4406,126.5862,2598 +262,4,0,136.2660,126.5150,2598 +263,4,0,136.3303,126.5515,2598 +264,4,0,136.4901,126.6683,2598 +265,4,0,136.5687,126.7873,2598 +266,4,0,136.6647,126.9083,2598 +267,4,0,136.6403,126.8978,2598 +268,4,0,136.4762,126.8083,2598 +269,4,0,136.7830,126.9988,2598 +270,4,0,136.6035,126.8216,2598 +271,4,0,136.4707,126.6582,2598 +272,4,0,136.3986,126.6442,2598 +273,4,0,136.5478,126.7717,2598 +274,4,0,136.5692,126.7908,2598 +275,4,0,136.6195,126.8445,2598 +276,4,0,136.5014,126.9027,2598 +277,4,0,136.5252,126.8353,2598 +278,4,0,136.6898,126.9675,2598 +279,4,0,136.3452,126.5635,2598 +280,4,0,136.1669,126.4590,2598 +281,4,0,136.0226,126.3162,2598 +282,4,0,135.8283,126.1556,2598 +283,4,0,135.8275,126.0236,2598 +284,4,0,135.8721,126.0598,2598 +285,4,0,136.1053,126.6293,2598 +286,4,0,136.5036,126.8134,2598 +287,4,0,136.9208,127.0945,2598 +288,4,0,137.0574,127.3175,2598 +289,4,0,137.3991,127.5673,2598 +290,4,0,137.5795,127.7489,2598 +291,4,0,137.6796,127.8792,2598 +292,4,0,137.1120,127.4209,2598 +293,4,0,136.8510,127.0336,2598 +294,4,0,136.5764,126.8143,2598 +295,4,0,136.8481,127.0198,2598 +296,4,0,136.4695,126.7278,2598 +297,4,0,136.3540,126.3972,2598 +298,4,0,146.0163,136.4224,2598 +299,4,0,156.6787,146.9196,2598 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.csv new file mode 100644 index 0000000..fa4a216 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.csv @@ -0,0 +1,721 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0046,28.3851,0.0249,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.8585,24.9925,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,2.8090,24.9380,0.0258,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.7548,25.7032,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.0046,5.7830,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.8585,5.6212,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,2.8090,10.5337,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.7548,10.4947,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.0046,15.4388,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.8585,15.3879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,2.8090,20.3084,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.7548,20.2844,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.0046,25.3069,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.8585,25.2558,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,2.8090,30.1039,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.7548,30.0884,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.0046,35.2519,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.8585,35.2010,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,2.8090,40.1396,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.7548,40.0996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.0046,44.9640,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.8585,45.1486,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,2.8090,49.8774,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.7548,50.2340,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.0046,54.7047,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.8585,55.2532,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,2.8090,59.6680,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.7548,60.0833,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.0046,64.4565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.8585,61.5957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,2.8090,65.7352,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.7548,61.8529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.0046,60.2559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.8585,61.2356,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,2.8090,65.0895,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.7548,61.8748,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.0046,51.9670,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.8585,53.3575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,2.8090,56.7662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.7548,58.1138,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.0046,44.6772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.8585,46.2870,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,2.8090,49.4816,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.7548,51.0175,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.0046,38.2279,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.8585,39.7392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,2.8090,42.9966,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.7548,44.4846,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.0046,31.5732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.8585,32.9232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,2.8090,36.3505,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.7548,37.7554,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.0046,24.9200,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.8585,26.1990,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,2.8090,29.6068,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.7548,31.0600,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.0046,18.2936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.8585,19.7055,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,2.8090,23.0396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.7548,24.4227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.0046,13.1160,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.8585,14.3706,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,2.8090,17.7582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.7548,19.3454,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.0046,5.7056,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.8585,6.0785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.8090,10.3017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.7548,10.7463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.0046,5.9271,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.8585,5.7305,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.8090,10.5352,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.7548,10.4652,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.0046,5.8901,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.8585,5.6161,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.8090,10.4099,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.7548,10.2671,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.0046,5.9601,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.8585,5.6468,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.8090,10.5286,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.7548,10.4169,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.0046,6.1718,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.8585,5.7205,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.8090,10.4782,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.7548,10.3780,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.0046,6.0174,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.8585,5.6760,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.8090,10.2003,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.7548,10.1642,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.0046,6.0933,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.8585,5.6956,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.8090,10.3955,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.7548,10.2644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.0046,5.9925,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.8585,5.6067,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.8090,10.2620,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.7548,10.1924,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.0046,6.0186,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.8585,5.6515,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.8090,10.3371,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.7548,10.2517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.0046,6.2005,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.8585,5.7598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.8090,10.3577,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.7548,10.2270,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.0046,6.0730,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.8585,5.6833,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.8090,10.4683,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.7548,10.2981,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.0046,6.1749,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.8585,5.6387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.8090,10.4512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.7548,10.3282,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.0046,5.8127,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.8585,5.5392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.8090,10.3929,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.7548,10.3097,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.0046,5.8744,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.8585,5.5260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.8090,10.3855,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.7548,10.3185,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.0046,5.9816,0.0575,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +121,2.8585,5.6020,0.0283,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +122,2.8090,10.1605,0.0082,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +123,2.7548,10.1385,0.0306,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +124,5.0046,5.6683,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +125,2.8585,5.5314,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +126,2.8090,10.4229,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +127,2.7548,10.3460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +128,5.0046,5.7748,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +129,2.8585,5.4826,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +130,2.8090,10.2912,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +131,2.7548,10.2537,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +132,5.0046,5.8092,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +133,2.8585,5.4870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +134,2.8090,10.2581,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +135,2.7548,10.2935,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +136,5.0046,6.0811,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +137,2.8585,5.5687,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +138,2.8090,10.4723,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +139,2.7548,10.3678,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +140,5.0046,5.8243,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +141,2.8585,5.5103,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +142,2.8090,10.5440,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +143,2.7548,10.4754,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +144,5.0046,5.8177,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +145,2.8585,5.5713,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +146,2.8090,10.3909,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +147,2.7548,10.3444,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +148,5.0046,5.8379,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +149,2.8585,5.5952,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +150,2.8090,10.5082,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +151,2.7548,10.4313,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +152,5.0046,5.6320,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +153,2.8585,5.5228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +154,2.8090,10.2853,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +155,2.7548,10.2581,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +156,5.0046,5.7620,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +157,2.8585,5.5815,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +158,2.8090,10.6255,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +159,2.7548,10.5512,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +160,5.0046,5.7536,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +161,2.8585,5.5323,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +162,2.8090,10.3638,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +163,2.7548,10.3352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +164,5.0046,5.7076,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +165,2.8585,5.5212,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +166,2.8090,10.2883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +167,2.7548,10.2230,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +168,5.0046,5.8785,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +169,2.8585,5.6335,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +170,2.8090,10.4352,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +171,2.7548,10.3763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +172,5.0046,5.8760,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +173,2.8585,5.5912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +174,2.8090,10.4875,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +175,2.7548,10.4601,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +176,5.0046,5.8308,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +177,2.8585,5.5748,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +178,2.8090,10.5049,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +179,2.7548,10.4376,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +180,5.0046,6.0361,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +181,2.8585,5.7385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.8090,10.6983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +183,2.7548,10.5982,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +184,5.0046,5.9330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +185,2.8585,5.6206,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.8090,10.5409,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +187,2.7548,10.4150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +188,5.0046,6.1296,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +189,2.8585,5.8267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.8090,10.7133,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +191,2.7548,10.6065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +192,5.0046,6.1186,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.8585,5.7345,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.8090,10.5567,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.7548,10.4062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +196,5.0046,6.3477,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.8585,5.8796,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.8090,12.0676,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.7548,11.1449,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.0046,6.1500,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.8585,5.7442,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.8090,10.5345,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.7548,10.3672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.0046,6.0520,0.0319,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.8585,5.6059,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.8090,10.2839,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.7548,9.9938,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.0046,6.0974,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.8585,5.6816,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.8090,10.5802,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.7548,10.4525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.0046,5.9256,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.8585,5.6485,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.8090,10.4057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.7548,10.3289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.0046,5.8648,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.8585,5.6233,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.8090,10.3050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.7548,10.2225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.0046,6.1095,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.8585,5.7788,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.8090,10.6090,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.7548,10.5023,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.0046,5.9229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.8585,5.6280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.8090,10.3291,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.7548,10.1888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.0046,6.0314,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.8585,5.7605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.8090,10.4660,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.7548,10.4245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.0046,6.5229,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.8585,6.0781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.8090,10.1490,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.7548,10.3075,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.0046,6.7169,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.8585,5.8084,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.8090,10.0345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.7548,9.9230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.0046,6.2784,0.0257,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +241,2.8585,5.6771,0.0248,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +242,2.8090,10.3620,0.0400,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +243,2.7548,10.3489,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +244,5.0046,5.7226,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +245,2.8585,5.4931,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +246,2.8090,10.2082,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +247,2.7548,10.1685,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +248,5.0046,5.8044,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +249,2.8585,5.6491,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +250,2.8090,10.4331,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +251,2.7548,10.3140,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +252,5.0046,5.7018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +253,2.8585,5.5086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +254,2.8090,10.2138,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +255,2.7548,10.1719,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +256,5.0046,5.8654,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +257,2.8585,5.5524,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +258,2.8090,10.3412,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +259,2.7548,10.1896,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +260,5.0046,5.7285,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +261,2.8585,5.5192,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +262,2.8090,10.3395,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +263,2.7548,10.3017,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +264,5.0046,5.7253,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +265,2.8585,5.5699,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +266,2.8090,10.3916,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +267,2.7548,10.3615,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +268,5.0046,5.8576,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +269,2.8585,5.5605,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +270,2.8090,10.4937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +271,2.7548,10.4338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +272,5.0046,5.8652,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +273,2.8585,5.6397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +274,2.8090,10.5113,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +275,2.7548,10.4854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +276,5.0046,5.7656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +277,2.8585,5.6235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +278,2.8090,10.5785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +279,2.7548,10.5862,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +280,5.0046,5.7914,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +281,2.8585,5.6234,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +282,2.8090,10.4927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +283,2.7548,10.4951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +284,5.0046,5.7527,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +285,2.8585,5.6393,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +286,2.8090,10.4183,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +287,2.7548,10.4052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +288,5.0046,5.6855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +289,2.8585,5.4781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +290,2.8090,10.3586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +291,2.7548,10.3359,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +292,5.0046,5.6810,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +293,2.8585,5.4506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +294,2.8090,10.3193,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +295,2.7548,10.3108,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +296,5.0046,5.6744,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +297,2.8585,5.5529,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +298,2.8090,10.3938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +299,2.7548,10.3726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +300,5.0046,5.7387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +301,2.8585,5.5748,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.8090,10.5743,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +303,2.7548,10.5550,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +304,5.0046,5.8327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +305,2.8585,5.5815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.8090,10.4363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +307,2.7548,10.3799,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +308,5.0046,5.9280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +309,2.8585,5.6855,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.8090,10.6274,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +311,2.7548,10.6165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +312,5.0046,5.8882,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.8585,5.6538,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.8090,10.5896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +315,2.7548,10.5787,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +316,5.0046,5.9901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.8585,5.6581,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.8090,10.7024,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.7548,10.6804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +320,5.0046,5.9536,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.8585,5.6988,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.8090,10.6062,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.7548,10.5313,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.0046,5.9297,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.8585,5.6567,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.8090,10.6020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.7548,10.5102,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.0046,6.0660,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.8585,5.7901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.8090,10.6391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.7548,10.5890,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.0046,5.9946,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.8585,5.7095,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.8090,10.4131,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.7548,10.2866,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.0046,6.2020,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.8585,5.8536,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.8090,10.7225,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.7548,10.6750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.0046,6.6400,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.8585,5.7568,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.8090,10.8782,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.7548,10.7219,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.0046,6.8567,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.8585,5.7363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.8090,11.1777,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.7548,10.9219,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.0046,6.9693,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.8585,6.1681,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.8090,10.7790,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.7548,10.5235,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.0046,12.3952,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.8585,14.4160,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.8090,14.0488,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.7548,13.5568,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.0046,6.3760,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.8585,5.7440,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.8090,10.6853,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.7548,10.4201,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.0046,6.2418,0.0342,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +361,2.8585,5.7517,0.0144,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +362,2.8090,10.2030,0.0137,0.0000,0,0,0.0000,0,0.0000,0,1,0,135591,0 +363,2.7548,10.0661,0.0119,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +364,5.0046,6.1503,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +365,2.8585,5.6902,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +366,2.8090,10.6126,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,10168,0 +367,2.7548,10.3869,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +368,5.0046,6.4494,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +369,2.8585,5.8514,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +370,2.8090,10.3508,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,19508,0 +371,2.7548,10.3232,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +372,5.0046,6.0525,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +373,2.8585,5.6963,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +374,2.8090,9.8361,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,25621,0 +375,2.7548,9.8316,0.0910,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +376,5.0046,6.0507,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +377,2.8585,5.7172,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +378,2.8090,10.3610,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,35756,0 +379,2.7548,10.2124,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +380,5.0046,6.1219,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +381,2.8585,5.6425,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +382,2.8090,10.4010,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,34502,0 +383,2.7548,10.2108,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +384,5.0046,5.8544,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +385,2.8585,5.5541,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +386,2.8090,10.2949,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,28730,0 +387,2.7548,10.1823,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +388,5.0046,5.8139,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +389,2.8585,5.6649,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +390,2.8090,10.2617,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16628,0 +391,2.7548,10.1856,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +392,5.0046,5.8809,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +393,2.8585,5.7007,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +394,2.8090,10.3624,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12128,0 +395,2.7548,10.3613,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +396,5.0046,5.8477,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +397,2.8585,5.5690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +398,2.8090,10.3415,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +399,2.7548,10.2341,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +400,5.0046,5.8669,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +401,2.8585,5.7042,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +402,2.8090,10.1745,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +403,2.7548,10.2178,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +404,5.0046,5.8116,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +405,2.8585,5.6035,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +406,2.8090,10.3084,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +407,2.7548,10.2612,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +408,5.0046,6.1668,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +409,2.8585,5.8878,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +410,2.8090,10.9767,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4515,0 +411,2.7548,10.9271,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +412,5.0046,6.5169,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +413,2.8585,5.8866,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +414,2.8090,10.5196,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3607,0 +415,2.7548,10.1032,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +416,5.0046,14.4192,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +417,2.8585,13.4708,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +418,2.8090,13.1470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +419,2.7548,12.7189,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +420,5.0046,6.2198,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +421,2.8585,5.6251,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.8090,10.1295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +423,2.7548,10.0338,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +424,5.0046,6.1186,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +425,2.8585,5.7197,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.8090,10.0090,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +427,2.7548,9.7641,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +428,5.0046,6.0513,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +429,2.8585,5.7156,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.8090,9.7525,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +431,2.7548,9.7817,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +432,5.0046,6.2700,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.8585,5.8490,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.8090,9.6878,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +435,2.7548,9.7750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +436,5.0046,5.9642,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.8585,5.7159,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.8090,10.5007,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.7548,10.3836,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.0046,5.9223,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.8585,5.9590,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.8090,9.4575,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.7548,10.4764,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.0046,6.0702,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.8585,5.7180,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.8090,9.7632,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.7548,10.3980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.0046,6.1638,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.8585,5.6102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.8090,10.6257,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.7548,10.4883,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.0046,6.1617,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.8585,5.5821,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.8090,10.7415,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.7548,10.5348,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.0046,6.2190,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.8585,5.6375,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.8090,13.5971,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.7548,13.3768,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.0046,6.2287,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.8585,5.6460,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.8090,10.7058,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.7548,11.4998,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.0046,6.3069,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.8585,5.6355,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.8090,10.5497,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.7548,12.2711,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.0046,6.5062,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.8585,5.8810,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.8090,10.1166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.7548,10.0949,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.0046,6.4884,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.8585,5.9679,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.8090,9.2940,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.7548,5.9502,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.0046,6.4572,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.8585,5.6164,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.8090,10.1418,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.7548,9.8256,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.0046,6.5412,0.0924,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +481,2.8585,5.6029,0.0870,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +482,2.8090,10.1230,0.3407,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +483,2.7548,9.8911,0.0510,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +484,5.0046,7.8022,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +485,2.8585,7.2063,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +486,2.8090,10.2509,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +487,2.7548,8.4554,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +488,5.0046,6.5210,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +489,2.8585,6.4655,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +490,2.8090,13.7293,0.0438,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +491,2.7548,13.4825,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +492,5.0046,6.4037,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +493,2.8585,5.7690,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +494,2.8090,10.3524,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +495,2.7548,10.1092,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +496,5.0046,6.5133,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +497,2.8585,5.7395,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +498,2.8090,9.7815,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +499,2.7548,9.9561,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +500,5.0046,6.6993,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +501,2.8585,5.8522,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +502,2.8090,14.9583,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +503,2.7548,14.8041,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +504,5.0046,6.8056,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +505,2.8585,6.1960,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +506,2.8090,13.5330,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +507,2.7548,14.6667,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +508,5.0046,6.7445,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +509,2.8585,5.9521,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +510,2.8090,10.7054,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +511,2.7548,10.7013,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +512,5.0046,6.7977,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +513,2.8585,7.0275,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +514,2.8090,9.6645,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +515,2.7548,10.5141,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +516,5.0046,6.9945,0.0512,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +517,2.8585,6.3957,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +518,2.8090,10.9542,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +519,2.7548,13.4200,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +520,5.0046,7.5883,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +521,2.8585,6.0811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +522,2.8090,10.3200,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +523,2.7548,8.6194,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +524,5.0046,6.5191,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +525,2.8585,6.0319,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +526,2.8090,8.1933,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +527,2.7548,9.9715,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +528,5.0046,6.2333,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +529,2.8585,5.7516,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +530,2.8090,13.0948,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +531,2.7548,12.8504,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +532,5.0046,6.7458,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +533,2.8585,5.8387,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +534,2.8090,10.5682,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +535,2.7548,10.5065,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +536,5.0046,6.6743,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +537,2.8585,5.8168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +538,2.8090,10.9441,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +539,2.7548,10.8839,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +540,5.0046,6.5956,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +541,2.8585,5.9870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.8090,10.0382,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +543,2.7548,9.8309,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +544,5.0046,6.4828,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +545,2.8585,5.8174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.8090,10.4593,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +547,2.7548,10.2190,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +548,5.0046,6.6074,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +549,2.8585,5.9212,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.8090,10.5749,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +551,2.7548,10.2587,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +552,5.0046,6.4598,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.8585,5.6977,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.8090,10.3567,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.7548,10.0590,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +556,5.0046,6.9242,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.8585,5.6961,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.8090,10.9728,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.7548,10.6093,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +560,5.0046,6.9246,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.8585,6.1304,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.8090,11.7951,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.7548,12.5744,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.0046,6.9153,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.8585,5.7342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.8090,12.1134,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.7548,11.5843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.0046,6.4531,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.8585,5.6997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.8090,10.0823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.7548,10.0346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.0046,6.5388,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.8585,5.6364,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.8090,10.8580,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.7548,10.5817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.0046,6.6760,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.8585,5.6467,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.8090,10.0720,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.7548,11.0561,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.0046,6.4795,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.8585,5.6946,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.8090,10.4627,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.7548,10.2391,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.0046,6.5338,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.8585,5.7088,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.8090,10.3835,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.7548,10.1740,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.0046,6.7177,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.8585,5.9428,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.8090,10.6061,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.7548,10.4038,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.0046,6.5314,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.8585,5.6605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.8090,10.2147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.7548,10.1038,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.0046,6.7191,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.8585,5.8403,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.8090,15.2486,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.7548,14.7480,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.0046,6.8448,0.0283,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,2.8585,6.6289,0.0351,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,2.8090,6.7919,0.0086,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +603,2.7548,9.9323,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +604,5.0046,6.1676,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,2.8585,5.7598,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,2.8090,10.7146,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +607,2.7548,10.6645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +608,5.0046,6.3598,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,2.8585,5.8628,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,2.8090,10.6979,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +611,2.7548,10.6396,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +612,5.0046,6.4926,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,2.8585,6.3473,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,2.8090,12.6090,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +615,2.7548,12.7145,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +616,5.0046,6.7725,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,2.8585,6.1225,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,2.8090,12.7201,0.0658,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +619,2.7548,12.7735,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +620,5.0046,9.1416,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,2.8585,8.5042,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,2.8090,10.7333,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +623,2.7548,10.4992,0.0354,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +624,5.0046,6.6558,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,2.8585,6.2995,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,2.8090,10.2140,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +627,2.7548,11.9107,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +628,5.0046,8.3991,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,2.8585,6.0654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,2.8090,10.5172,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +631,2.7548,10.1721,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +632,5.0046,6.8593,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,2.8585,6.3854,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,2.8090,10.7980,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +635,2.7548,10.5497,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +636,5.0046,7.0551,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,2.8585,5.7932,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,2.8090,11.4041,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +639,2.7548,11.1979,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +640,5.0046,6.8696,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,2.8585,6.0933,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,2.8090,12.4163,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +643,2.7548,12.4136,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +644,5.0046,6.7456,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,2.8585,6.0189,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,2.8090,9.1255,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +647,2.7548,10.3385,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +648,5.0046,6.5643,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,2.8585,5.8928,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,2.8090,10.8751,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +651,2.7548,10.9675,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +652,5.0046,6.9989,0.1433,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,2.8585,5.8328,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,2.8090,10.4185,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +655,2.7548,10.2432,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +656,5.0046,6.3826,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,2.8585,5.7261,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,2.8090,10.4183,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +659,2.7548,10.2510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +660,5.0046,6.3171,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,2.8585,5.8366,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.8090,10.1551,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +663,2.7548,9.6203,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +664,5.0046,6.2164,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,2.8585,5.7966,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.8090,9.9705,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +667,2.7548,9.9180,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +668,5.0046,6.3359,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,2.8585,5.7946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.8090,10.7530,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +671,2.7548,10.4573,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +672,5.0046,6.2544,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.8585,5.7355,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.8090,10.0787,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +675,2.7548,10.1389,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +676,5.0046,6.4077,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.8585,5.8228,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.8090,9.9685,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.7548,10.0285,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.0046,6.4538,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.8585,5.8460,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.8090,10.2672,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.7548,10.1560,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.0046,6.5041,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.8585,5.9510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.8090,9.8645,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.7548,9.7280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.0046,6.3348,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.8585,5.7114,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.8090,9.7649,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.7548,9.5286,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.0046,6.3972,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.8585,5.7833,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.8090,10.4192,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.7548,10.1551,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.0046,6.2940,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.8585,5.7467,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.8090,9.9064,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.7548,9.8710,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.0046,6.3763,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.8585,5.6870,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.8090,10.0150,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.7548,9.7318,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.0046,6.5713,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.8585,5.8616,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.8090,10.7578,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.7548,10.7447,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.0046,6.9230,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.8585,6.0750,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.8090,8.1064,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.7548,10.3609,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.0046,6.6280,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.8585,6.1420,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.8090,10.8723,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.7548,10.8069,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.0046,6.8092,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.8585,5.8095,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.8090,11.0840,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.7548,11.0853,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.txt b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.txt new file mode 100644 index 0000000..db87b46 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.txt @@ -0,0 +1,55 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +warmup_frames=20 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=180 +frames_submitted=180 +frames_skipped=0 +frames_encoded=180 +failed_frames=0 +steady_frames_encoded=160 +tile_frames_requested=720 +tile_frames_encoded=720 +failed_tile_frames=0 +avg_encode_latency_ms=14.931 +p95_encode_latency_ms=38.202 +max_encode_latency_ms=104.392 +avg_steady_encode_latency_ms=11.993 +p95_steady_encode_latency_ms=14.726 +max_steady_encode_latency_ms=16.878 +avg_tile_encode_latency_ms=10.899 +p95_tile_encode_latency_ms=31.086 +avg_max_tile_encode_latency_ms=13.314 +p95_max_tile_encode_latency_ms=31.395 +avg_steady_max_tile_encode_latency_ms=10.734 +p95_steady_max_tile_encode_latency_ms=13.111 +payload_bytes=6939381 +send_target=none +csv=benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60_logical.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60_logical.csv new file mode 100644 index 0000000..8d819c7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_repeat_5k60/tiled_2x2_reuse_repeat_5k60_logical.csv @@ -0,0 +1,181 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.3924,28.3851,337552 +1,4,0,11.0076,10.5337,152351 +2,4,0,20.6121,20.3084,149416 +3,4,0,30.3937,30.1039,142089 +4,4,0,40.3415,40.1396,112777 +5,4,0,50.4697,50.2340,114708 +6,4,0,60.3181,60.0833,64955 +7,4,0,70.6068,65.7352,37587 +8,4,0,66.5710,65.0895,26109 +9,4,0,58.4647,58.1138,23201 +10,4,0,51.3658,51.0175,18705 +11,4,0,44.8347,44.4846,14742 +12,4,0,38.0895,37.7554,11738 +13,4,0,31.5124,31.0600,9530 +14,4,0,24.8059,24.4227,6611 +15,4,0,19.9073,19.3454,3979 +16,4,0,11.3558,10.7463,2445 +17,4,0,11.1266,10.5352,2516 +18,4,0,11.0748,10.4099,2602 +19,4,0,11.4461,10.5286,2599 +20,4,0,11.3951,10.4782,2598 +21,4,0,11.1672,10.2003,2598 +22,4,0,11.2773,10.3955,2598 +23,4,0,11.1809,10.2620,2598 +24,4,0,11.2172,10.3371,2598 +25,4,0,11.3910,10.3577,2598 +26,4,0,11.3652,10.4683,2598 +27,4,0,11.3258,10.4512,2598 +28,4,0,11.0303,10.3929,2598 +29,4,0,11.0597,10.3855,2598 +30,4,0,10.8716,10.1605,498346 +31,4,0,10.8490,10.4229,19526 +32,4,0,10.9305,10.2912,49926 +33,4,0,11.0855,10.2935,72591 +34,4,0,11.2431,10.4723,94714 +35,4,0,11.1233,10.5440,102589 +36,4,0,10.9964,10.3909,92848 +37,4,0,10.9965,10.5082,51377 +38,4,0,10.8027,10.2853,33231 +39,4,0,11.0711,10.6255,24324 +40,4,0,10.9171,10.3638,19367 +41,4,0,10.8384,10.2883,14990 +42,4,0,11.0067,10.4352,12446 +43,4,0,11.1046,10.4875,9614 +44,4,0,11.1155,10.5049,5145 +45,4,0,11.3549,10.6983,2474 +46,4,0,11.2362,10.5409,2528 +47,4,0,11.3892,10.7133,2611 +48,4,0,11.3696,10.5567,2599 +49,4,0,12.9050,12.0676,2598 +50,4,0,11.3179,10.5345,2598 +51,4,0,11.2092,10.2839,2598 +52,4,0,11.3167,10.5802,2598 +53,4,0,11.0537,10.4057,2598 +54,4,0,11.0478,10.3050,2598 +55,4,0,11.2675,10.6090,2598 +56,4,0,11.0011,10.3291,2598 +57,4,0,11.2103,10.4660,2598 +58,4,0,12.2093,10.3075,2598 +59,4,0,12.0620,10.0345,2598 +60,4,0,11.3755,10.3620,498132 +61,4,0,10.8532,10.2082,20854 +62,4,0,11.0404,10.4331,48076 +63,4,0,10.7712,10.2138,72195 +64,4,0,10.9933,10.3412,93609 +65,4,0,10.9108,10.3395,111529 +66,4,0,10.9017,10.3916,62671 +67,4,0,11.0252,10.4937,40728 +68,4,0,10.9753,10.5113,26742 +69,4,0,10.9766,10.5862,25712 +70,4,0,10.9479,10.4951,19261 +71,4,0,10.7784,10.4183,15312 +72,4,0,10.8187,10.3586,13171 +73,4,0,10.8369,10.3193,11269 +74,4,0,10.8420,10.3938,8412 +75,4,0,11.0433,10.5743,4982 +76,4,0,11.0028,10.4363,2487 +77,4,0,11.2262,10.6274,2532 +78,4,0,11.2045,10.5896,2602 +79,4,0,11.4167,10.7024,2599 +80,4,0,11.2172,10.6062,2598 +81,4,0,11.2608,10.6020,2598 +82,4,0,11.3079,10.6391,2598 +83,4,0,11.0981,10.4131,2598 +84,4,0,11.5184,10.7225,2598 +85,4,0,12.4174,10.8782,2598 +86,4,0,13.2394,11.1777,2598 +87,4,0,12.1635,10.7790,2598 +88,4,0,15.3208,14.4160,2598 +89,4,0,11.7215,10.6853,2598 +90,4,0,11.0553,10.2030,493623 +91,4,0,11.5349,10.6126,25413 +92,4,0,11.6176,10.3508,53795 +93,4,0,11.5507,9.8361,77620 +94,4,0,11.2828,10.3610,106757 +95,4,0,11.4158,10.4010,107241 +96,4,0,11.0733,10.2949,92553 +97,4,0,11.0339,10.2617,53976 +98,4,0,11.0151,10.3624,36249 +99,4,0,11.0360,10.3415,26392 +100,4,0,11.1887,10.2178,20459 +101,4,0,10.9587,10.3084,15963 +102,4,0,11.6973,10.9767,13313 +103,4,0,12.2407,10.5196,10672 +104,4,0,14.7256,14.4192,7102 +105,4,0,11.4603,10.1295,2477 +106,4,0,11.5625,10.0090,2435 +107,4,0,11.4027,9.7817,2613 +108,4,0,11.8033,9.7750,2600 +109,4,0,11.2585,10.5007,2598 +110,4,0,13.1576,10.4764,2598 +111,4,0,12.1440,10.3980,2598 +112,4,0,11.7127,10.6257,2598 +113,4,0,11.7490,10.7415,2598 +114,4,0,14.5479,13.5971,2598 +115,4,0,12.7806,11.4998,2598 +116,4,0,13.6490,12.2711,2598 +117,4,0,11.4097,10.1166,2598 +118,4,0,12.2153,9.2940,2598 +119,4,0,11.6961,10.1418,2598 +120,4,0,11.8078,10.1230,498132 +121,4,0,11.8638,10.2509,20593 +122,4,0,15.3469,13.7293,48200 +123,4,0,11.6065,10.3524,72383 +124,4,0,12.2705,9.9561,93404 +125,4,0,16.5224,14.9583,106965 +126,4,0,16.0712,14.6667,78581 +127,4,0,12.0735,10.7054,46185 +128,4,0,13.1677,10.5141,29688 +129,4,0,14.7120,13.4200,25287 +130,4,0,13.1901,10.3200,19338 +131,4,0,13.8711,9.9715,15081 +132,4,0,14.1072,13.0948,12572 +133,4,0,12.1255,10.5682,9988 +134,4,0,12.5708,10.9441,6110 +135,4,0,12.1396,10.0382,4547 +136,4,0,12.3114,10.4593,2543 +137,4,0,12.2875,10.5749,2530 +138,4,0,11.7864,10.3567,2601 +139,4,0,12.7311,10.9728,2599 +140,4,0,15.8478,12.5744,2598 +141,4,0,14.1894,12.1134,2598 +142,4,0,11.5828,10.0823,2598 +143,4,0,12.2229,10.8580,2598 +144,4,0,13.1036,11.0561,2598 +145,4,0,11.6114,10.4627,2598 +146,4,0,11.5710,10.3835,2598 +147,4,0,11.8999,10.6061,2598 +148,4,0,11.5290,10.2147,2598 +149,4,0,16.8784,15.2486,2598 +150,4,0,15.1872,9.9323,498346 +151,4,0,11.5192,10.7146,19787 +152,4,0,11.6008,10.6979,49802 +153,4,0,13.5795,12.7145,72403 +154,4,0,14.0428,12.7735,94919 +155,4,0,12.5263,10.7333,107153 +156,4,0,13.7562,11.9107,76938 +157,4,0,13.7713,10.5172,45920 +158,4,0,11.9455,10.7980,30285 +159,4,0,13.4995,11.4041,24749 +160,4,0,13.7625,12.4163,19290 +161,4,0,13.3598,10.3385,15221 +162,4,0,12.3279,10.9675,13045 +163,4,0,12.3125,10.4185,10895 +164,4,0,11.6500,10.4183,7447 +165,4,0,12.0550,10.1551,2909 +166,4,0,11.7617,9.9705,2472 +167,4,0,12.3888,10.7530,2613 +168,4,0,11.5746,10.1389,2600 +169,4,0,12.0376,10.0285,2598 +170,4,0,12.0267,10.2672,2598 +171,4,0,11.8929,9.8645,2598 +172,4,0,11.8733,9.7649,2598 +173,4,0,12.2175,10.4192,2598 +174,4,0,11.7858,9.9064,2598 +175,4,0,12.5405,10.0150,2598 +176,4,0,12.2433,10.7578,2598 +177,4,0,14.7380,10.3609,2598 +178,4,0,12.3689,10.8723,2598 +179,4,0,13.0809,11.0853,2598 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.csv new file mode 100644 index 0000000..7237055 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.3159,29.5529,0.0823,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.3599,28.5709,0.0188,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,3.6685,26.1520,0.0215,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,3.2268,26.8626,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,6.3159,6.0553,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,3.3599,5.8009,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,3.6685,10.5248,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,3.2268,10.6025,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,6.3159,15.4400,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,3.3599,15.3978,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,3.6685,20.2794,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,3.2268,20.1900,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,6.3159,25.1379,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,3.3599,25.1129,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,3.6685,30.2954,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,3.2268,30.2639,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,6.3159,35.0590,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,3.3599,35.0621,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,3.6685,39.9897,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,3.2268,39.9534,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,6.3159,44.9340,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,3.3599,44.8930,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,3.6685,49.8316,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,3.2268,49.8015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,6.3159,54.6848,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,3.3599,54.8440,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,3.6685,59.5673,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,3.2268,59.8438,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,6.3159,64.5092,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,3.3599,61.1132,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,3.6685,65.8053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,3.2268,61.1383,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,6.3159,65.7931,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,3.3599,61.2948,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,3.6685,65.8582,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,3.2268,61.2985,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,6.3159,65.6967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,3.3599,61.4522,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,3.6685,65.9943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,3.2268,61.2995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,6.3159,57.6520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,3.3599,58.0130,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,3.6685,62.4674,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,3.2268,61.4507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,6.3159,49.3986,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,3.3599,50.4913,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,3.6685,54.1963,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,3.2268,55.3388,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,6.3159,42.9126,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,3.3599,43.9567,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,3.6685,47.7491,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,3.2268,48.7275,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,6.3159,36.3773,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,3.3599,37.2075,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,3.6685,41.2309,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,3.2268,41.9783,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,6.3159,30.0281,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,3.3599,30.5926,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,3.6685,34.7039,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,3.2268,35.3619,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,6.3159,23.3453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,3.3599,23.9105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,3.6685,28.1851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,3.2268,28.6178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,6.3159,16.7772,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,3.3599,17.6878,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,3.6685,21.4659,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,3.2268,22.3448,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,6.3159,10.4705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,3.3599,11.2723,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,3.6685,15.2683,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,3.2268,15.9763,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,6.3159,5.9184,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,3.3599,5.7022,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,3.6685,12.8453,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,3.2268,12.6862,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,6.3159,6.6477,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,3.3599,5.8225,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,3.6685,10.2812,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,3.2268,10.1449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,6.3159,6.9901,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,3.3599,5.7791,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,3.6685,10.6295,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,3.2268,10.3154,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,6.3159,6.3225,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,3.3599,5.6583,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,3.6685,11.5427,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,3.2268,11.2927,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,6.3159,6.4234,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,3.3599,6.0805,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,3.6685,12.4589,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,3.2268,12.1500,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,6.3159,6.8350,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,3.3599,5.7798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,3.6685,10.5270,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,3.2268,10.2509,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,6.3159,6.9161,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,3.3599,5.6763,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,3.6685,9.6120,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,3.2268,9.8199,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,6.3159,6.9348,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,3.3599,6.6910,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,3.6685,10.7688,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,3.2268,10.6634,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,6.3159,6.7873,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,3.3599,6.3863,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,3.6685,9.2792,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,3.2268,9.5295,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,6.3159,6.5235,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,3.3599,5.7475,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,3.6685,11.1761,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,3.2268,13.1727,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,6.3159,6.6267,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,3.3599,5.9037,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,3.6685,10.4955,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,3.2268,10.2880,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,6.3159,6.4988,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,3.3599,5.8194,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,3.6685,10.0315,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,3.2268,9.9888,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,6.3159,6.1462,0.0682,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +121,3.3599,5.5997,0.0531,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +122,3.6685,10.2870,0.0225,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +123,3.2268,10.1877,0.0573,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +124,6.3159,5.9471,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +125,3.3599,5.6568,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +126,3.6685,10.2898,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +127,3.2268,10.1629,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +128,6.3159,5.6638,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +129,3.3599,5.4987,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +130,3.6685,10.3344,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +131,3.2268,10.2139,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +132,6.3159,5.6366,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +133,3.3599,5.5343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +134,3.6685,10.3812,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +135,3.2268,10.3782,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +136,6.3159,5.7252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +137,3.3599,5.5219,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +138,3.6685,10.3639,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +139,3.2268,10.3400,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +140,6.3159,5.6508,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +141,3.3599,5.5201,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +142,3.6685,10.3858,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +143,3.2268,10.3601,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +144,6.3159,5.6541,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +145,3.3599,5.5371,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +146,3.6685,10.3872,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +147,3.2268,10.3276,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +148,6.3159,5.6920,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +149,3.3599,5.5540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +150,3.6685,10.4608,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +151,3.2268,10.3609,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +152,6.3159,5.6380,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +153,3.3599,5.5390,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +154,3.6685,10.3415,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +155,3.2268,10.3232,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +156,6.3159,5.7812,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +157,3.3599,5.5943,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +158,3.6685,10.4226,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +159,3.2268,10.4266,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +160,6.3159,5.6638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +161,3.3599,5.5256,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +162,3.6685,10.4932,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +163,3.2268,10.4473,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +164,6.3159,5.5920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +165,3.3599,5.5440,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +166,3.6685,10.4598,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +167,3.2268,10.4405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +168,6.3159,5.5977,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +169,3.3599,5.4916,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +170,3.6685,10.3545,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +171,3.2268,10.3355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +172,6.3159,5.7607,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +173,3.3599,5.6071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +174,3.6685,10.3957,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +175,3.2268,10.3885,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +176,6.3159,5.5892,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +177,3.3599,5.4463,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +178,3.6685,10.3040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +179,3.2268,10.2999,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +180,6.3159,5.6534,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +181,3.3599,5.4870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,3.6685,10.3559,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +183,3.2268,10.2937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +184,6.3159,5.8382,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +185,3.3599,5.6372,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,3.6685,10.4477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +187,3.2268,10.4321,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +188,6.3159,5.7446,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +189,3.3599,5.5600,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,3.6685,10.4577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +191,3.2268,10.4283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +192,6.3159,5.6019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,3.3599,5.5140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,3.6685,10.4021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,3.2268,10.3707,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +196,6.3159,5.6584,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,3.3599,5.4892,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,3.6685,10.2630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,3.2268,10.1971,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,6.3159,5.7379,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,3.3599,5.4723,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,3.6685,10.2986,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,3.2268,10.2402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,6.3159,5.6082,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,3.3599,5.4547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,3.6685,10.2485,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,3.2268,10.1391,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,6.3159,5.7349,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,3.3599,5.4744,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,3.6685,10.2442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,3.2268,10.1907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,6.3159,5.7751,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,3.3599,5.4475,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,3.6685,10.3622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,3.2268,10.2617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,6.3159,5.8352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,3.3599,5.5765,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,3.6685,10.3799,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,3.2268,10.2915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,6.3159,5.6846,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,3.3599,5.5492,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,3.6685,10.3529,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,3.2268,10.2719,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,6.3159,5.7138,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,3.3599,5.5343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,3.6685,10.2000,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,3.2268,10.1287,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,6.3159,6.0088,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,3.3599,5.6573,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,3.6685,10.6461,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,3.2268,10.5111,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,6.3159,5.9032,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,3.3599,5.6137,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,3.6685,10.5002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,3.2268,10.4227,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,6.3159,5.9949,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,3.3599,5.6513,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,3.6685,10.6363,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,3.2268,10.5325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,6.3159,6.1205,0.0151,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +241,3.3599,5.6794,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +242,3.6685,10.5191,0.0546,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +243,3.2268,10.3998,0.0501,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +244,6.3159,6.1552,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +245,3.3599,5.7260,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +246,3.6685,10.7119,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +247,3.2268,10.5395,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +248,6.3159,6.1490,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +249,3.3599,5.6828,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +250,3.6685,10.6767,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +251,3.2268,10.5146,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +252,6.3159,5.9550,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +253,3.3599,5.6239,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +254,3.6685,10.6386,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +255,3.2268,10.6012,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +256,6.3159,6.1346,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +257,3.3599,5.7161,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +258,3.6685,10.7654,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +259,3.2268,10.6541,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +260,6.3159,6.2337,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +261,3.3599,5.8577,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +262,3.6685,10.6847,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +263,3.2268,10.6190,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +264,6.3159,6.0276,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +265,3.3599,5.6836,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +266,3.6685,10.5010,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +267,3.2268,10.4569,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +268,6.3159,6.0917,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +269,3.3599,5.7170,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +270,3.6685,10.6962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +271,3.2268,10.6320,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +272,6.3159,5.9167,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +273,3.3599,5.6273,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +274,3.6685,10.5272,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +275,3.2268,10.4868,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +276,6.3159,6.1183,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +277,3.3599,5.6949,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +278,3.6685,10.5510,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +279,3.2268,10.3780,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +280,6.3159,6.1215,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +281,3.3599,5.6697,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +282,3.6685,10.3704,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +283,3.2268,10.2372,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +284,6.3159,5.8312,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +285,3.3599,5.5612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +286,3.6685,10.2778,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +287,3.2268,10.1391,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +288,6.3159,5.7523,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +289,3.3599,5.6514,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +290,3.6685,10.1662,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +291,3.2268,10.0850,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +292,6.3159,6.3005,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +293,3.3599,5.8501,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +294,3.6685,10.5322,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +295,3.2268,10.2547,0.0305,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +296,6.3159,6.1052,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +297,3.3599,5.7363,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +298,3.6685,10.6128,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +299,3.2268,10.5358,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +300,6.3159,6.2738,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +301,3.3599,5.9223,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,3.6685,10.5310,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +303,3.2268,10.0854,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +304,6.3159,6.1712,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +305,3.3599,5.7844,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,3.6685,10.4872,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +307,3.2268,10.1640,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +308,6.3159,6.1132,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +309,3.3599,5.7619,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,3.6685,9.9850,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +311,3.2268,9.9100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +312,6.3159,6.3623,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,3.3599,5.7964,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,3.6685,10.0100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +315,3.2268,10.0570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +316,6.3159,6.1010,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,3.3599,5.6291,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,3.6685,10.3463,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,3.2268,10.2817,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +320,6.3159,5.8495,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,3.3599,5.5872,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,3.6685,10.3985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,3.2268,10.3202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,6.3159,5.7929,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,3.3599,5.5737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,3.6685,10.4494,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,3.2268,10.3405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,6.3159,5.8998,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,3.3599,5.6885,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,3.6685,10.4371,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,3.2268,10.2341,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,6.3159,6.1046,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,3.3599,5.6647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,3.6685,10.4696,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,3.2268,10.3804,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,6.3159,5.7791,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,3.3599,5.4763,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,3.6685,10.3410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,3.2268,10.2848,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,6.3159,5.6859,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,3.3599,5.5704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,3.6685,10.3905,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,3.2268,10.3398,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,6.3159,5.6570,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,3.3599,5.4250,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,3.6685,10.3144,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,3.2268,10.2163,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,6.3159,5.6311,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,3.3599,5.3868,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,3.6685,10.1961,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,3.2268,10.1645,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,6.3159,5.7673,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,3.3599,5.5583,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,3.6685,10.3645,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,3.2268,10.3185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,6.3159,5.6913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,3.3599,5.5338,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,3.6685,10.3848,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,3.2268,10.3121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,6.3159,5.6698,0.0468,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +361,3.3599,5.4579,0.0143,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +362,3.6685,10.1926,0.0277,0.0000,0,0,0.0000,0,0.0000,0,1,0,135591,0 +363,3.2268,10.1732,0.0175,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +364,6.3159,5.7675,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +365,3.3599,5.5479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +366,3.6685,10.4521,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10168,0 +367,3.2268,10.4003,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +368,6.3159,5.7650,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +369,3.3599,5.5730,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +370,3.6685,10.4174,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19508,0 +371,3.2268,10.4015,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +372,6.3159,5.8093,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +373,3.3599,5.5775,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +374,3.6685,10.5161,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,25621,0 +375,3.2268,10.4938,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +376,6.3159,5.6595,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +377,3.3599,5.5248,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +378,3.6685,10.3900,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,35756,0 +379,3.2268,10.4119,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +380,6.3159,5.8054,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +381,3.3599,5.6160,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +382,3.6685,10.6600,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34502,0 +383,3.2268,10.6865,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +384,6.3159,5.6919,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +385,3.3599,5.5892,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +386,3.6685,10.4934,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,28730,0 +387,3.2268,10.4960,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +388,6.3159,5.6701,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +389,3.3599,5.4617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +390,3.6685,10.3832,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16628,0 +391,3.2268,10.3422,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +392,6.3159,5.6543,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +393,3.3599,5.4532,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +394,3.6685,10.3603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12128,0 +395,3.2268,10.3330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +396,6.3159,5.7168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +397,3.3599,5.5440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +398,3.6685,10.3706,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +399,3.2268,10.3388,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +400,6.3159,5.7082,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +401,3.3599,5.4930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +402,3.6685,10.4765,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +403,3.2268,10.4349,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +404,6.3159,5.8780,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +405,3.3599,5.6303,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +406,3.6685,10.5447,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +407,3.2268,10.5110,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +408,6.3159,5.9455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +409,3.3599,5.5642,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +410,3.6685,10.3895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4515,0 +411,3.2268,10.3455,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +412,6.3159,5.9723,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +413,3.3599,5.6765,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +414,3.6685,10.5935,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3607,0 +415,3.2268,10.5264,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +416,6.3159,5.8898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +417,3.3599,5.6640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +418,3.6685,10.4176,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +419,3.2268,10.3534,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +420,6.3159,5.9615,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +421,3.3599,5.7344,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,3.6685,10.6728,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +423,3.2268,10.5945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +424,6.3159,5.9044,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +425,3.3599,5.6856,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,3.6685,10.5616,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +427,3.2268,10.4950,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +428,6.3159,5.8933,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +429,3.3599,5.7248,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,3.6685,10.6686,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +431,3.2268,10.6040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +432,6.3159,6.1632,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,3.3599,5.7655,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,3.6685,10.4858,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +435,3.2268,10.3752,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +436,6.3159,6.0093,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,3.3599,5.6447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,3.6685,10.5444,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,3.2268,10.4240,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,6.3159,8.1315,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,3.3599,5.9088,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,3.6685,10.0615,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,3.2268,10.1139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,6.3159,6.1480,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,3.3599,5.9882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,3.6685,13.6406,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,3.2268,13.3639,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,6.3159,6.3670,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,3.3599,6.1300,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,3.6685,7.9912,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,3.2268,9.9157,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,6.3159,5.7737,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,3.3599,5.5862,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,3.6685,10.0532,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,3.2268,10.0389,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,6.3159,5.6404,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,3.3599,5.4540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,3.6685,10.1898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,3.2268,10.1186,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,6.3159,5.6203,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,3.3599,5.4425,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,3.6685,10.3206,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,3.2268,10.2557,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,6.3159,5.7041,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,3.3599,5.5244,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,3.6685,10.3597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,3.2268,10.3148,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,6.3159,5.6914,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,3.3599,5.4766,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,3.6685,10.3396,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,3.2268,10.3212,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,6.3159,5.9183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,3.3599,5.6950,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,3.6685,10.4660,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,3.2268,10.4097,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,6.3159,5.7895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,3.3599,5.5782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,3.6685,10.2941,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,3.2268,10.2299,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,6.3159,5.7595,0.0644,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +481,3.3599,5.5694,0.0072,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +482,3.6685,10.2381,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +483,3.2268,10.1611,0.0243,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +484,6.3159,5.7648,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +485,3.3599,5.5683,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +486,3.6685,10.3374,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +487,3.2268,10.2182,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +488,6.3159,5.9265,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +489,3.3599,5.6605,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +490,3.6685,10.5817,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +491,3.2268,10.4999,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +492,6.3159,6.6867,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +493,3.3599,5.6620,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +494,3.6685,10.9645,0.0787,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +495,3.2268,10.1304,0.1589,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +496,6.3159,6.4395,0.0532,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +497,3.3599,5.7938,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +498,3.6685,10.8145,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +499,3.2268,10.5314,0.0492,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +500,6.3159,7.0033,0.1045,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +501,3.3599,5.7844,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +502,3.6685,10.9963,0.2595,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +503,3.2268,10.3095,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +504,6.3159,6.3660,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +505,3.3599,5.6785,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +506,3.6685,10.1094,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +507,3.2268,10.1191,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +508,6.3159,5.8529,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +509,3.3599,5.6107,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +510,3.6685,10.3714,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +511,3.2268,10.2868,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +512,6.3159,5.8070,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +513,3.3599,5.5852,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +514,3.6685,10.2711,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +515,3.2268,10.2205,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +516,6.3159,5.6837,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +517,3.3599,5.7045,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +518,3.6685,10.0602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +519,3.2268,10.2087,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +520,6.3159,5.9352,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +521,3.3599,5.8145,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +522,3.6685,10.7581,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +523,3.2268,10.7519,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +524,6.3159,7.0797,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +525,3.3599,5.9410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +526,3.6685,8.8251,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +527,3.2268,10.0171,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +528,6.3159,6.0262,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +529,3.3599,5.6705,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +530,3.6685,11.0316,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +531,3.2268,10.9771,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +532,6.3159,6.5225,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +533,3.3599,5.7523,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +534,3.6685,10.6381,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +535,3.2268,10.4607,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +536,6.3159,6.5967,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +537,3.3599,5.7350,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +538,3.6685,11.1562,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +539,3.2268,10.8483,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +540,6.3159,6.4437,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +541,3.3599,5.7070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,3.6685,10.8591,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +543,3.2268,10.7344,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +544,6.3159,6.7510,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +545,3.3599,6.0628,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,3.6685,11.3570,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +547,3.2268,11.2312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +548,6.3159,10.4422,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +549,3.3599,9.7169,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,3.6685,9.2898,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +551,3.2268,9.6292,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +552,6.3159,7.0758,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,3.3599,6.9894,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,3.6685,8.2754,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,3.2268,10.0620,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +556,6.3159,6.0466,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,3.3599,5.7282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,3.6685,10.4691,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,3.2268,10.3118,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +560,6.3159,6.2075,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,3.3599,5.8562,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,3.6685,10.3766,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,3.2268,10.3657,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,6.3159,6.2257,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,3.3599,5.7336,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,3.6685,10.5260,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,3.2268,10.3897,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,6.3159,6.0140,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,3.3599,5.6783,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,3.6685,10.1741,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,3.2268,10.1562,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,6.3159,5.8896,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,3.3599,5.6125,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,3.6685,10.4392,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,3.2268,10.3447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,6.3159,5.7869,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,3.3599,5.5543,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,3.6685,10.1958,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,3.2268,10.1732,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,6.3159,5.7379,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,3.3599,5.5475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,3.6685,10.3212,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,3.2268,10.3480,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,6.3159,5.8920,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,3.3599,5.5976,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,3.6685,10.3958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,3.2268,10.3405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,6.3159,5.6496,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,3.3599,5.4275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,3.6685,10.2257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,3.2268,10.1880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,6.3159,5.7536,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,3.3599,5.5657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,3.6685,10.4305,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,3.2268,10.4281,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,6.3159,5.6707,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,3.3599,5.5698,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,3.6685,10.4604,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,3.2268,10.4793,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,6.3159,5.4745,0.0200,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,3.3599,5.3900,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,3.6685,10.0797,0.0127,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +603,3.2268,10.1056,0.0217,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +604,6.3159,5.7799,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,3.3599,5.5674,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,3.6685,10.2690,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +607,3.2268,10.2388,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +608,6.3159,5.8751,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,3.3599,5.5372,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,3.6685,10.4982,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +611,3.2268,10.4657,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +612,6.3159,5.9155,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,3.3599,5.6185,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,3.6685,10.3841,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +615,3.2268,10.3818,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +616,6.3159,5.6857,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,3.3599,5.5339,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,3.6685,10.3168,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +619,3.2268,10.2900,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +620,6.3159,5.7197,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,3.3599,5.5273,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,3.6685,10.3596,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +623,3.2268,10.3682,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +624,6.3159,5.6956,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,3.3599,5.5988,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,3.6685,10.3453,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +627,3.2268,10.3509,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +628,6.3159,5.7495,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,3.3599,5.5511,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,3.6685,10.4165,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +631,3.2268,10.3030,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +632,6.3159,5.7813,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,3.3599,5.5300,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,3.6685,10.4201,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +635,3.2268,10.4060,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +636,6.3159,5.9518,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,3.3599,5.5524,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,3.6685,10.3355,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +639,3.2268,10.2678,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +640,6.3159,5.7071,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,3.3599,5.5741,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,3.6685,10.2679,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +643,3.2268,10.1797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +644,6.3159,5.7670,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,3.3599,5.6021,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,3.6685,10.3027,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +647,3.2268,10.2437,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +648,6.3159,5.9085,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,3.3599,5.6215,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,3.6685,10.3675,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +651,3.2268,10.2327,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +652,6.3159,6.1330,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,3.3599,5.6883,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,3.6685,11.1783,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +655,3.2268,10.9491,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +656,6.3159,6.5435,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,3.3599,5.7337,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,3.6685,13.4907,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +659,3.2268,13.4424,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +660,6.3159,6.4627,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,3.3599,5.6315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,3.6685,10.3324,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +663,3.2268,9.9909,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +664,6.3159,6.5878,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,3.3599,5.6055,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,3.6685,10.4363,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +667,3.2268,10.3638,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +668,6.3159,7.4282,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,3.3599,6.6198,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,3.6685,13.2905,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +671,3.2268,11.6226,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +672,6.3159,7.2286,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,3.3599,6.4253,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,3.6685,13.1395,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +675,3.2268,12.9543,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +676,6.3159,6.4422,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,3.3599,5.6879,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,3.6685,10.3226,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,3.2268,10.0263,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,6.3159,6.0520,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,3.3599,5.6654,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,3.6685,10.7517,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,3.2268,10.5475,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,6.3159,6.6102,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,3.3599,5.7523,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,3.6685,10.7142,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,3.2268,10.6426,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,6.3159,6.6380,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,3.3599,5.8608,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,3.6685,10.5678,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,3.2268,10.4072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,6.3159,7.2495,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,3.3599,6.3726,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,3.6685,11.0920,0.0342,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,3.2268,11.7961,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,6.3159,6.4638,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,3.3599,5.6737,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,3.6685,9.9983,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,3.2268,10.0010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,6.3159,6.8094,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,3.3599,5.8408,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,3.6685,10.6383,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,3.2268,10.5276,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,6.3159,6.4966,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,3.3599,5.7626,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,3.6685,10.3382,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,3.2268,10.0963,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,6.3159,5.9736,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,3.3599,5.6478,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,3.6685,10.4105,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,3.2268,10.3423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,6.3159,6.1014,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,3.3599,5.7886,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,3.6685,11.0067,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,3.2268,10.9825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,6.3159,6.5613,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,3.3599,5.9256,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,3.6685,9.3614,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,3.2268,9.8654,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,6.3159,7.1675,0.0653,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +721,3.3599,6.2034,0.0528,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +722,3.6685,12.7238,0.1662,0.0000,0,0,0.0000,0,0.0000,0,1,0,135591,0 +723,3.2268,13.0456,0.0545,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +724,6.3159,6.2610,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +725,3.3599,5.9048,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +726,3.6685,19.9045,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,10168,0 +727,3.2268,19.9285,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +728,6.3159,16.2065,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +729,3.3599,15.6343,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +730,3.6685,30.9518,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,19508,0 +731,3.2268,30.6897,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +732,6.3159,36.5756,0.0976,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +733,3.3599,35.0785,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +734,3.6685,44.3985,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,25621,0 +735,3.2268,44.6237,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +736,6.3159,39.3911,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +737,3.3599,38.7875,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +738,3.6685,48.3584,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,35756,0 +739,3.2268,48.0245,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +740,6.3159,42.6942,0.0554,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +741,3.3599,41.8876,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +742,3.6685,51.4781,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,34502,0 +743,3.2268,51.4018,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +744,6.3159,45.5045,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +745,3.3599,44.8518,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +746,3.6685,54.8898,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,28730,0 +747,3.2268,54.4001,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +748,6.3159,48.7666,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +749,3.3599,48.5561,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +750,3.6685,57.5046,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16628,0 +751,3.2268,57.4719,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +752,6.3159,52.8249,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +753,3.3599,52.2002,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +754,3.6685,60.7276,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12128,0 +755,3.2268,60.3052,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +756,6.3159,55.9582,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +757,3.3599,55.4252,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +758,3.6685,65.7889,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +759,3.2268,65.3287,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +760,6.3159,58.1123,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +761,3.3599,57.9220,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +762,3.6685,74.8349,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +763,3.2268,74.8275,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +764,6.3159,60.3977,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +765,3.3599,59.5752,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +766,3.6685,69.8699,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +767,3.2268,68.8392,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +768,6.3159,63.0294,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +769,3.3599,61.1256,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +770,3.6685,70.2665,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,4515,0 +771,3.2268,70.3100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +772,6.3159,66.4039,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +773,3.3599,62.5907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +774,3.6685,70.6960,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3607,0 +775,3.2268,70.6187,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +776,6.3159,72.3904,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +777,3.3599,63.9995,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +778,3.6685,71.1423,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +779,3.2268,70.8257,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +780,6.3159,74.1450,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +781,3.3599,73.8479,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,3.6685,83.5214,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +783,3.2268,83.5073,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +784,6.3159,76.4053,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +785,3.3599,76.4856,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,3.6685,87.2337,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +787,3.2268,87.3060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +788,6.3159,78.3543,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +789,3.3599,77.8762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,3.6685,85.6202,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +791,3.2268,85.9941,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +792,6.3159,81.6261,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,3.3599,81.4803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,3.6685,91.1288,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +795,3.2268,91.0309,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +796,6.3159,84.0247,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,3.3599,83.8734,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,3.6685,93.1494,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,3.2268,93.4435,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +800,6.3159,86.1215,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,3.3599,85.7676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,3.6685,94.6544,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,3.2268,94.8479,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,6.3159,89.8444,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,3.3599,88.8678,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,3.6685,95.5420,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,3.2268,96.1780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,6.3159,91.9229,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,3.3599,90.9585,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,3.6685,99.2166,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,3.2268,99.8233,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,6.3159,95.9504,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,3.3599,96.1799,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,3.6685,104.8308,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,3.2268,105.2062,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,6.3159,96.5943,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,3.3599,96.6930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,3.6685,105.8123,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,3.2268,106.0740,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,6.3159,100.0615,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,3.3599,99.9591,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,3.6685,109.1279,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,3.2268,109.8058,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,6.3159,102.7058,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,3.3599,102.0396,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,3.6685,111.0489,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,3.2268,111.1527,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,6.3159,105.4361,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,3.3599,105.2433,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,3.6685,114.1264,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,3.2268,114.3816,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,6.3159,108.3738,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,3.3599,108.4766,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,3.6685,118.5463,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,3.2268,118.1460,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,6.3159,114.7240,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,3.3599,114.0653,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,3.6685,122.0053,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,3.2268,116.4602,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,6.3159,118.0338,0.1020,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +841,3.3599,118.2982,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +842,3.6685,124.6263,0.0371,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +843,3.2268,116.4273,0.0526,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +844,6.3159,120.4182,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +845,3.3599,118.5324,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +846,3.6685,125.2728,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4281,0 +847,3.2268,114.8426,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +848,6.3159,121.2315,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +849,3.3599,116.1146,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +850,3.6685,125.1545,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +851,3.2268,115.6051,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +852,6.3159,124.3187,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +853,3.3599,115.6788,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +854,3.6685,125.5498,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,20592,0 +855,3.2268,117.4174,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +856,6.3159,124.5777,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +857,3.3599,114.6717,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +858,3.6685,122.9484,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,23713,0 +859,3.2268,114.4073,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +860,6.3159,121.6992,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +861,3.3599,114.3757,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +862,3.6685,122.9065,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,29850,0 +863,3.2268,115.5020,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +864,6.3159,124.5512,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +865,3.3599,110.2672,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +866,3.6685,119.1837,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,29025,0 +867,3.2268,114.9234,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +868,6.3159,123.7598,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +869,3.3599,112.6819,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +870,3.6685,121.7434,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,14029,0 +871,3.2268,113.6183,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +872,6.3159,122.9597,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +873,3.3599,115.2065,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +874,3.6685,124.4536,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +875,3.2268,116.5647,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +876,6.3159,125.0496,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +877,3.3599,116.0084,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +878,3.6685,126.3002,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,6698,0 +879,3.2268,114.3028,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +880,6.3159,122.4506,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +881,3.3599,116.0255,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +882,3.6685,125.9470,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,5440,0 +883,3.2268,116.4170,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +884,6.3159,127.6706,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +885,3.3599,117.7195,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +886,3.6685,125.1138,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +887,3.2268,116.5002,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +888,6.3159,125.7769,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +889,3.3599,116.6864,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +890,3.6685,126.6429,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3648,0 +891,3.2268,117.8676,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +892,6.3159,125.9184,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +893,3.3599,116.7666,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +894,3.6685,125.4896,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +895,3.2268,116.2105,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +896,6.3159,125.7191,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +897,3.3599,116.1686,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +898,3.6685,125.5246,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +899,3.2268,115.4782,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +900,6.3159,124.5435,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +901,3.3599,116.4229,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,3.6685,126.0754,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +903,3.2268,115.4590,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +904,6.3159,125.0040,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +905,3.3599,116.6532,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,3.6685,126.1808,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +907,3.2268,116.0113,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +908,6.3159,127.2170,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +909,3.3599,114.6612,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,3.6685,122.4311,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +911,3.2268,116.6950,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +912,6.3159,126.1063,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,3.3599,116.4247,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,3.6685,125.8964,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,3.2268,115.4663,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +916,6.3159,125.0192,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,3.3599,116.8368,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,3.6685,125.9025,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,3.2268,117.3468,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,6.3159,127.1102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,3.3599,117.4331,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,3.6685,128.5024,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,3.2268,118.5992,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,6.3159,127.0187,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,3.3599,117.5172,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,3.6685,127.4324,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,3.2268,119.2601,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,6.3159,126.9116,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,3.3599,117.1695,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,3.6685,126.5051,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,3.2268,116.9007,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,6.3159,126.4031,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,3.3599,114.6610,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,3.6685,123.9780,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,3.2268,116.5938,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,6.3159,126.0375,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,3.3599,116.7045,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,3.6685,126.5529,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,3.2268,117.0793,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,6.3159,127.7355,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,3.3599,118.7904,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,3.6685,126.2652,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,3.2268,114.1507,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,6.3159,123.7381,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,3.3599,117.4436,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,3.6685,125.7652,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,3.2268,115.3714,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,6.3159,123.9820,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,3.3599,116.4773,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,3.6685,126.0443,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,3.2268,114.9820,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,6.3159,124.5956,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,3.3599,116.6478,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,3.6685,125.9819,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,3.2268,117.1196,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,6.3159,126.4571,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,3.3599,117.2360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,3.6685,126.5447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,3.2268,116.8834,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,6.3159,126.2025,0.0776,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +961,3.3599,116.5873,0.0428,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +962,3.6685,126.0154,0.0395,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +963,3.2268,115.8731,0.0368,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +964,6.3159,125.0161,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +965,3.3599,113.8923,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +966,3.6685,123.4690,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +967,3.2268,115.5478,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +968,6.3159,125.2297,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +969,3.3599,115.8535,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +970,3.6685,124.4709,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +971,3.2268,115.7660,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +972,6.3159,125.3733,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +973,3.3599,116.2757,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +974,3.6685,125.9139,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +975,3.2268,116.3023,0.0322,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +976,6.3159,125.8735,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +977,3.3599,116.4870,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +978,3.6685,125.6409,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +979,3.2268,116.1433,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +980,6.3159,126.0125,0.0512,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +981,3.3599,117.3110,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +982,3.6685,125.2929,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +983,3.2268,116.5863,0.0288,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +984,6.3159,126.0403,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +985,3.3599,116.8574,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +986,3.6685,126.1516,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +987,3.2268,116.8350,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +988,6.3159,126.5501,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +989,3.3599,117.4805,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +990,3.6685,126.3183,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +991,3.2268,117.2447,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +992,6.3159,125.3761,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +993,3.3599,116.3428,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +994,3.6685,126.2868,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +995,3.2268,117.9133,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +996,6.3159,126.7440,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +997,3.3599,117.1928,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +998,3.6685,126.8923,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +999,3.2268,117.2985,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +1000,6.3159,128.5882,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +1001,3.3599,119.0002,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +1002,3.6685,125.0089,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +1003,3.2268,117.3856,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +1004,6.3159,126.8780,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +1005,3.3599,116.3063,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +1006,3.6685,125.4198,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +1007,3.2268,116.8789,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +1008,6.3159,126.4816,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +1009,3.3599,117.0433,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1010,3.6685,126.3250,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +1011,3.2268,117.1487,0.0685,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +1012,6.3159,126.7183,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +1013,3.3599,117.2854,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +1014,3.6685,126.1683,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +1015,3.2268,117.5771,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +1016,6.3159,125.9062,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +1017,3.3599,117.2172,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1018,3.6685,126.8424,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +1019,3.2268,116.4357,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +1020,6.3159,125.7384,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +1021,3.3599,116.9799,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,3.6685,126.5360,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +1023,3.2268,117.2382,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1024,6.3159,125.5245,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +1025,3.3599,114.7050,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,3.6685,123.6893,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +1027,3.2268,116.8147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1028,6.3159,126.6037,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1029,3.3599,116.7403,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,3.6685,126.1830,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1031,3.2268,117.0653,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +1032,6.3159,126.4046,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,3.3599,116.3217,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,3.6685,125.4245,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1035,3.2268,116.0233,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1036,6.3159,125.0187,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,3.3599,116.0902,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,3.6685,124.9548,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,3.2268,115.8506,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1040,6.3159,124.7146,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,3.3599,116.6294,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,3.6685,125.8756,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,3.2268,116.4043,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,6.3159,125.8495,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,3.3599,116.6685,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,3.6685,126.0387,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,3.2268,116.5226,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,6.3159,125.9740,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,3.3599,117.4352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,3.6685,126.9090,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,3.2268,118.0489,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,6.3159,126.4592,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,3.3599,116.4852,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,3.6685,126.1441,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,3.2268,117.0641,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,6.3159,128.6982,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,3.3599,120.6497,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,3.6685,126.6663,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,3.2268,117.1908,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,6.3159,127.0711,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,3.3599,117.9831,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,3.6685,126.8884,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,3.2268,118.2670,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,6.3159,127.4142,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,3.3599,118.0975,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,3.6685,130.3665,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,3.2268,119.5160,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,6.3159,126.0613,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,3.3599,117.5990,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,3.6685,127.0931,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,3.2268,118.3466,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,6.3159,127.1660,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,3.3599,117.2051,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,3.6685,126.4540,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,3.2268,117.1760,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,6.3159,126.6130,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,3.3599,118.1845,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,3.6685,127.9120,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,3.2268,118.3627,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,6.3159,127.4693,0.0512,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +1081,3.3599,115.5080,0.1635,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +1082,3.6685,125.6518,0.0397,0.0000,0,0,0.0000,0,0.0000,0,1,0,135591,0 +1083,3.2268,119.2683,0.0443,0.0000,0,0,0.0000,0,0.0000,0,1,0,130001,0 +1084,6.3159,126.3705,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +1085,3.3599,117.4318,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +1086,3.6685,126.9138,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10168,0 +1087,3.2268,117.4951,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,5249,0 +1088,6.3159,126.3842,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +1089,3.3599,117.0842,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +1090,3.6685,127.0358,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,19508,0 +1091,3.2268,114.8740,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,17272,0 +1092,6.3159,123.2917,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +1093,3.3599,118.2739,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +1094,3.6685,126.9900,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,25621,0 +1095,3.2268,116.3683,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,27526,0 +1096,6.3159,125.6550,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +1097,3.3599,117.3155,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +1098,3.6685,126.9754,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,35756,0 +1099,3.2268,117.1603,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,35150,0 +1100,6.3159,126.1863,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +1101,3.3599,116.3155,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +1102,3.6685,124.7417,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,34502,0 +1103,3.2268,116.4430,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,33598,0 +1104,6.3159,123.9037,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +1105,3.3599,115.6354,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +1106,3.6685,124.9353,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,28730,0 +1107,3.2268,115.4156,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,31913,0 +1108,6.3159,124.2244,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +1109,3.3599,116.6095,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +1110,3.6685,126.1368,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,16628,0 +1111,3.2268,118.0537,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,18189,0 +1112,6.3159,125.3490,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +1113,3.3599,118.3762,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +1114,3.6685,126.0154,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,12128,0 +1115,3.2268,115.7314,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11640,0 +1116,6.3159,125.9682,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +1117,3.3599,117.3393,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +1118,3.6685,125.3893,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +1119,3.2268,116.3635,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +1120,6.3159,125.6411,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +1121,3.3599,116.2972,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +1122,3.6685,125.7641,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +1123,3.2268,115.9862,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,6757,0 +1124,6.3159,125.1969,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +1125,3.3599,116.0199,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +1126,3.6685,128.9045,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +1127,3.2268,119.4030,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,5342,0 +1128,6.3159,122.6165,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +1129,3.3599,116.6680,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1130,3.6685,126.0715,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4515,0 +1131,3.2268,116.2194,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4561,0 +1132,6.3159,125.5643,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +1133,3.3599,116.2089,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +1134,3.6685,125.4123,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3607,0 +1135,3.2268,113.2363,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3754,0 +1136,6.3159,122.1359,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +1137,3.3599,114.9044,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1138,3.6685,122.7629,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +1139,3.2268,119.5788,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +1140,6.3159,127.0651,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +1141,3.3599,116.6629,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,3.6685,125.4509,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +1143,3.2268,117.7349,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1144,6.3159,125.9400,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +1145,3.3599,116.6112,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,3.6685,126.1568,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1147,3.2268,116.8829,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1148,6.3159,130.0312,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1149,3.3599,122.0856,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,3.6685,126.5993,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1151,3.2268,113.0273,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1152,6.3159,122.4844,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,3.3599,117.1735,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,3.6685,126.3620,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1155,3.2268,116.5532,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1156,6.3159,125.6936,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,3.3599,117.3282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,3.6685,126.7820,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,3.2268,116.3265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,6.3159,125.7812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,3.3599,117.3198,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,3.6685,126.6056,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,3.2268,113.0673,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,6.3159,122.0982,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,3.3599,115.8761,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,3.6685,125.3042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,3.2268,115.8067,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,6.3159,124.8548,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,3.3599,116.8093,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,3.6685,126.0735,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,3.2268,116.4153,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,6.3159,125.7277,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,3.3599,110.8489,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,3.6685,120.1983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,3.2268,116.8224,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,6.3159,126.2560,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,3.3599,116.5908,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,3.6685,126.0397,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,3.2268,116.7659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,6.3159,126.1445,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,3.3599,116.9130,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,3.6685,126.7719,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,3.2268,117.2270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,6.3159,127.1289,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,3.3599,117.4215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,3.6685,126.9898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,3.2268,117.3736,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,6.3159,127.2819,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,3.3599,117.6492,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,3.6685,127.1690,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,3.2268,117.8378,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,6.3159,131.9638,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,3.3599,122.8524,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,3.6685,137.0816,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,3.2268,127.9621,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,6.3159,142.1580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,3.3599,133.0838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,3.6685,147.1136,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,3.2268,138.3378,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.txt b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.txt new file mode 100644 index 0000000..37a4ade --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.txt @@ -0,0 +1,55 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=57.748 +p95_encode_latency_ms=136.894 +max_encode_latency_ms=157.744 +avg_steady_encode_latency_ms=58.740 +p95_steady_encode_latency_ms=136.934 +max_steady_encode_latency_ms=157.744 +avg_tile_encode_latency_ms=50.457 +p95_tile_encode_latency_ms=126.403 +avg_max_tile_encode_latency_ms=53.957 +p95_max_tile_encode_latency_ms=127.169 +avg_steady_max_tile_encode_latency_ms=55.054 +p95_steady_max_tile_encode_latency_ms=127.220 +payload_bytes=11531205 +send_target=none +csv=benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60_logical.csv b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60_logical.csv new file mode 100644 index 0000000..874a97d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,111.6790,29.5529,337552 +1,4,0,11.1699,10.6025,152351 +2,4,0,20.5686,20.2794,149416 +3,4,0,30.5781,30.2954,142089 +4,4,0,40.1955,39.9897,112777 +5,4,0,50.0386,49.8316,114708 +6,4,0,60.1213,59.8438,64955 +7,4,0,69.8048,65.8053,37587 +8,4,0,71.2420,65.8582,26109 +9,4,0,71.3798,65.9943,23201 +10,4,0,63.3776,62.4674,18705 +11,4,0,55.7325,55.3388,14742 +12,4,0,49.0601,48.7275,11738 +13,4,0,42.3947,41.9783,9530 +14,4,0,35.7941,35.3619,6611 +15,4,0,29.0909,28.6178,3979 +16,4,0,23.0476,22.3448,2445 +17,4,0,16.5910,15.9763,2516 +18,4,0,13.6777,12.8453,2602 +19,4,0,11.5542,10.2812,2599 +20,4,0,12.3596,10.6295,2598 +21,4,0,12.8990,11.5427,2598 +22,4,0,14.7570,12.4589,2598 +23,4,0,12.4551,10.5270,2598 +24,4,0,12.1350,9.8199,2598 +25,4,0,12.2802,10.7688,2598 +26,4,0,12.8289,9.5295,2598 +27,4,0,14.5170,13.1727,2598 +28,4,0,12.3115,10.4955,2598 +29,4,0,11.8224,10.0315,2598 +30,4,0,11.2969,10.2870,498346 +31,4,0,11.1653,10.2898,19526 +32,4,0,10.8694,10.3344,49926 +33,4,0,10.8694,10.3812,72591 +34,4,0,10.8353,10.3639,94714 +35,4,0,10.8530,10.3858,102589 +36,4,0,10.8057,10.3872,92848 +37,4,0,10.9159,10.4608,51377 +38,4,0,10.8098,10.3415,33231 +39,4,0,10.8853,10.4266,24324 +40,4,0,10.9004,10.4932,19367 +41,4,0,10.8351,10.4598,14990 +42,4,0,10.7643,10.3545,12446 +43,4,0,10.8429,10.3957,9614 +44,4,0,10.7240,10.3040,5145 +45,4,0,10.7826,10.3559,2474 +46,4,0,10.9511,10.4477,2528 +47,4,0,10.9400,10.4577,2611 +48,4,0,10.8125,10.4021,2599 +49,4,0,10.7406,10.2630,2598 +50,4,0,10.9157,10.2986,2598 +51,4,0,10.7225,10.2485,2598 +52,4,0,10.8528,10.2442,2598 +53,4,0,10.9494,10.3622,2598 +54,4,0,10.9093,10.3799,2598 +55,4,0,10.9251,10.3529,2598 +56,4,0,10.8804,10.2000,2598 +57,4,0,11.2740,10.6461,2598 +58,4,0,11.1251,10.5002,2598 +59,4,0,11.2859,10.6363,2598 +60,4,0,11.4497,10.5191,498132 +61,4,0,11.4921,10.7119,20854 +62,4,0,11.4288,10.6767,48076 +63,4,0,11.3116,10.6386,72195 +64,4,0,11.5601,10.7654,93609 +65,4,0,11.5752,10.6847,111529 +66,4,0,11.3023,10.5010,62671 +67,4,0,11.4770,10.6962,40728 +68,4,0,11.2121,10.5272,26742 +69,4,0,11.3072,10.5510,25712 +70,4,0,11.2648,10.3704,19261 +71,4,0,10.9449,10.2778,15312 +72,4,0,11.1158,10.1662,13171 +73,4,0,11.7550,10.5322,11269 +74,4,0,11.9548,10.6128,8412 +75,4,0,12.4756,10.5310,4982 +76,4,0,11.6470,10.4872,2487 +77,4,0,11.5601,9.9850,2532 +78,4,0,11.7510,10.0570,2602 +79,4,0,11.2726,10.3463,2599 +80,4,0,11.1411,10.3985,2598 +81,4,0,11.0378,10.4494,2598 +82,4,0,11.1823,10.4371,2598 +83,4,0,11.2625,10.4696,2598 +84,4,0,10.9303,10.3410,2598 +85,4,0,10.9252,10.3905,2598 +86,4,0,10.8002,10.3144,2598 +87,4,0,10.7560,10.1961,2598 +88,4,0,10.9198,10.3645,2598 +89,4,0,10.8781,10.3848,2598 +90,4,0,10.8047,10.1926,493623 +91,4,0,11.0061,10.4521,25413 +92,4,0,10.9759,10.4174,53795 +93,4,0,11.0394,10.5161,77620 +94,4,0,10.8593,10.4119,106757 +95,4,0,11.1943,10.6865,107241 +96,4,0,11.0043,10.4960,92553 +97,4,0,10.9027,10.3832,53976 +98,4,0,10.8300,10.3603,36249 +99,4,0,10.8335,10.3706,26392 +100,4,0,11.0033,10.4765,20459 +101,4,0,11.1188,10.5447,15963 +102,4,0,11.1265,10.3895,13313 +103,4,0,11.2367,10.5935,10672 +104,4,0,11.0288,10.4176,7102 +105,4,0,11.2621,10.6728,2477 +106,4,0,11.1454,10.5616,2435 +107,4,0,11.2692,10.6686,2613 +108,4,0,11.2503,10.4858,2600 +109,4,0,11.3217,10.5444,2598 +110,4,0,13.9579,10.1139,2598 +111,4,0,16.4324,13.6406,2598 +112,4,0,13.8120,9.9157,2598 +113,4,0,10.9766,10.0532,2598 +114,4,0,10.7175,10.1898,2598 +115,4,0,10.8089,10.3206,2598 +116,4,0,10.8213,10.3597,2598 +117,4,0,10.8472,10.3396,2598 +118,4,0,11.0094,10.4660,2598 +119,4,0,10.8587,10.2941,2598 +120,4,0,10.8112,10.2381,498132 +121,4,0,10.8806,10.3374,20593 +122,4,0,11.2896,10.5817,48200 +123,4,0,12.5812,10.9645,72383 +124,4,0,12.3628,10.8145,93404 +125,4,0,12.8552,10.9963,106965 +126,4,0,11.5790,10.1191,78581 +127,4,0,11.1286,10.3714,46185 +128,4,0,10.9322,10.2711,29688 +129,4,0,11.0482,10.2087,25287 +130,4,0,11.5147,10.7581,19338 +131,4,0,13.6569,10.0171,15081 +132,4,0,11.8658,11.0316,12572 +133,4,0,12.5000,10.6381,9988 +134,4,0,12.4710,11.1562,6110 +135,4,0,12.2102,10.8591,4547 +136,4,0,12.8940,11.3570,2543 +137,4,0,12.3452,10.4422,2530 +138,4,0,14.8095,10.0620,2601 +139,4,0,11.2882,10.4691,2599 +140,4,0,11.6077,10.3766,2598 +141,4,0,11.4526,10.5260,2598 +142,4,0,11.3585,10.1741,2598 +143,4,0,11.0423,10.4392,2598 +144,4,0,10.8753,10.1958,2598 +145,4,0,10.9434,10.3480,2598 +146,4,0,11.0870,10.3958,2598 +147,4,0,10.7395,10.2257,2598 +148,4,0,10.9772,10.4305,2598 +149,4,0,10.9100,10.4793,2598 +150,4,0,10.5040,10.1056,498346 +151,4,0,10.8959,10.2690,19787 +152,4,0,11.1073,10.4982,49802 +153,4,0,11.1477,10.3841,72403 +154,4,0,10.8740,10.3168,94919 +155,4,0,10.9738,10.3682,107153 +156,4,0,10.8978,10.3509,76938 +157,4,0,10.9404,10.4165,45920 +158,4,0,10.9462,10.4201,30285 +159,4,0,11.0722,10.3355,24749 +160,4,0,10.9254,10.2679,19290 +161,4,0,11.0346,10.3027,15221 +162,4,0,11.0775,10.3675,13045 +163,4,0,12.0743,11.1783,10895 +164,4,0,15.0877,13.4907,7447 +165,4,0,11.7670,10.3324,2909 +166,4,0,12.0329,10.4363,2472 +167,4,0,14.8575,13.2905,2613 +168,4,0,14.7598,13.1395,2600 +169,4,0,11.5240,10.3226,2598 +170,4,0,11.6357,10.7517,2598 +171,4,0,12.1070,10.7142,2598 +172,4,0,12.4825,10.5678,2598 +173,4,0,13.6613,11.7961,2598 +174,4,0,11.5938,10.0010,2598 +175,4,0,12.0805,10.6383,2598 +176,4,0,11.6950,10.3382,2598 +177,4,0,11.3473,10.4105,2598 +178,4,0,11.8893,11.0067,2598 +179,4,0,12.8882,9.8654,2598 +180,4,0,15.0295,13.0456,493409 +181,4,0,20.8133,19.9285,26480 +182,4,0,32.2703,30.9518,52069 +183,4,0,46.9504,44.6237,77412 +184,4,0,49.4376,48.3584,105447 +185,4,0,52.7401,51.4781,111617 +186,4,0,56.0149,54.8898,78286 +187,4,0,58.4920,57.5046,48784 +188,4,0,61.8709,60.7276,32706 +189,4,0,66.6220,65.7889,27355 +190,4,0,75.7137,74.8349,20430 +191,4,0,71.1345,69.8699,16054 +192,4,0,73.0021,70.3100,13439 +193,4,0,76.7030,70.6960,11046 +194,4,0,80.8953,72.3904,8067 +195,4,0,84.2252,83.5214,4550 +196,4,0,88.0433,87.3060,2450 +197,4,0,87.1394,85.9941,2532 +198,4,0,92.2335,91.1288,2602 +199,4,0,94.4000,93.4435,2599 +200,4,0,96.0810,94.8479,2598 +201,4,0,97.8779,96.1780,2598 +202,4,0,102.6497,99.8233,2598 +203,4,0,106.0849,105.2062,2598 +204,4,0,106.9327,106.0740,2598 +205,4,0,110.9483,109.8058,2598 +206,4,0,113.1203,111.1527,2598 +207,4,0,115.8151,114.3816,2598 +208,4,0,119.8459,118.5463,2598 +209,4,0,123.2940,122.0053,2598 +210,4,0,125.8429,124.6263,498346 +211,4,0,127.5555,125.2728,19526 +212,4,0,131.0582,125.1545,49926 +213,4,0,136.1628,125.5498,72591 +214,4,0,134.8749,124.5777,94714 +215,4,0,131.5073,122.9065,102589 +216,4,0,134.3369,124.5512,92848 +217,4,0,133.3991,123.7598,51377 +218,4,0,133.4345,124.4536,33231 +219,4,0,136.0800,126.3002,24324 +220,4,0,133.0487,125.9470,19367 +221,4,0,134.9564,127.6706,14990 +222,4,0,136.7637,126.6429,12446 +223,4,0,135.5656,125.9184,9614 +224,4,0,135.4550,125.7191,5145 +225,4,0,134.5396,126.0754,2474 +226,4,0,134.8842,126.1808,2528 +227,4,0,135.4094,127.2170,2611 +228,4,0,135.9582,126.1063,2599 +229,4,0,134.8145,125.9025,2598 +230,4,0,138.1856,128.5024,2598 +231,4,0,138.7418,127.4324,2598 +232,4,0,136.5118,126.9116,2598 +233,4,0,136.1412,126.4031,2598 +234,4,0,136.2540,126.5529,2598 +235,4,0,136.3952,127.7355,2598 +236,4,0,133.2779,125.7652,2598 +237,4,0,133.9219,126.0443,2598 +238,4,0,134.5810,125.9819,2598 +239,4,0,136.2772,126.5447,2598 +240,4,0,135.8619,126.2025,498132 +241,4,0,135.0907,125.0161,20854 +242,4,0,134.5262,125.2297,48076 +243,4,0,135.3810,125.9139,72195 +244,4,0,135.4849,125.8735,93609 +245,4,0,135.6193,126.0125,111529 +246,4,0,135.8238,126.1516,62671 +247,4,0,136.8588,126.5501,40728 +248,4,0,136.0762,126.2868,26742 +249,4,0,136.9332,126.8923,25712 +250,4,0,136.2995,128.5882,19261 +251,4,0,136.5146,126.8780,15312 +252,4,0,136.5623,126.4816,13171 +253,4,0,137.0511,126.7183,11269 +254,4,0,135.8909,126.8424,8412 +255,4,0,136.2932,126.5360,4982 +256,4,0,135.2347,125.5245,2487 +257,4,0,136.4304,126.6037,2532 +258,4,0,136.1978,126.4046,2602 +259,4,0,135.1270,125.0187,2599 +260,4,0,134.7079,125.8756,2598 +261,4,0,135.9499,126.0387,2598 +262,4,0,136.3661,126.9090,2598 +263,4,0,136.6848,126.4592,2598 +264,4,0,136.3849,128.6982,2598 +265,4,0,137.5807,127.0711,2598 +266,4,0,140.1075,130.3665,2598 +267,4,0,136.6806,127.0931,2598 +268,4,0,137.4360,127.1660,2598 +269,4,0,136.9448,127.9120,2598 +270,4,0,139.0759,127.4693,493623 +271,4,0,136.8433,126.9138,25413 +272,4,0,137.2894,127.0358,53795 +273,4,0,133.0510,126.9900,77620 +274,4,0,135.7404,126.9754,106757 +275,4,0,136.2040,126.1863,107241 +276,4,0,134.2632,124.9353,92553 +277,4,0,136.1559,126.1368,53976 +278,4,0,135.2080,126.0154,36249 +279,4,0,135.1190,125.9682,26392 +280,4,0,135.5740,125.7641,20459 +281,4,0,138.6472,128.9045,15963 +282,4,0,132.3796,126.0715,13313 +283,4,0,135.4995,125.5643,10672 +284,4,0,135.2382,122.7629,7102 +285,4,0,137.0447,127.0651,2477 +286,4,0,136.1492,126.1568,2435 +287,4,0,135.8882,130.0312,2613 +288,4,0,132.1337,126.3620,2600 +289,4,0,135.5097,126.7820,2598 +290,4,0,135.5999,126.6056,2598 +291,4,0,131.8969,125.3042,2598 +292,4,0,134.6799,126.0735,2598 +293,4,0,135.4895,125.7277,2598 +294,4,0,136.0176,126.2560,2598 +295,4,0,136.2675,126.7719,2598 +296,4,0,136.8919,127.1289,2598 +297,4,0,137.2145,127.2819,2598 +298,4,0,147.2561,137.0816,2598 +299,4,0,157.7437,147.1136,2598 diff --git a/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.csv b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.csv new file mode 100644 index 0000000..cc42d23 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,7.6748,24.1755,0.0279,0.0000,0,0,0.0000,0,0.0000,0,1,0,64198,0 +1,2.9141,20.9511,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,49003,0 +2,2.7955,20.4620,0.0181,0.0000,0,0,0.0000,0,0.0000,0,1,0,85843,0 +3,2.8323,20.6996,0.0063,0.0000,0,0,0.0000,0,0.0000,0,1,0,86637,0 +4,7.6748,11.0311,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,21330,0 +5,2.9141,10.8707,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13616,0 +6,2.7955,20.9645,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,28994,0 +7,2.8323,20.9322,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,26135,0 +8,7.6748,31.0186,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,13265,0 +9,2.9141,31.0584,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13697,0 +10,2.7955,41.1449,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,23077,0 +11,2.8323,41.1970,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,21853,0 +12,7.6748,51.3493,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,15530,0 +13,2.9141,51.3364,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16437,0 +14,2.7955,61.5020,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,22816,0 +15,2.8323,61.4939,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,18954,0 +16,7.6748,71.4630,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14777,0 +17,2.9141,71.5472,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18680,0 +18,2.7955,81.6478,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20436,0 +19,2.8323,81.6488,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25019,0 +20,7.6748,91.7521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10226,0 +21,2.9141,91.7892,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8594,0 +22,2.7955,102.0410,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11217,0 +23,2.8323,102.0028,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12234,0 +24,7.6748,112.2189,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6602,0 +25,2.9141,112.2148,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4032,0 +26,2.7955,122.4155,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7986,0 +27,2.8323,122.3634,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10240,0 +28,7.6748,118.0755,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3382,0 +29,2.9141,117.9518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +30,2.7955,128.1424,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4019,0 +31,2.8323,123.6629,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5756,0 +32,7.6748,122.7283,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2502,0 +33,2.9141,122.7132,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2308,0 +34,2.7955,132.9647,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3712,0 +35,2.8323,123.8157,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5038,0 +36,7.6748,128.7152,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +37,2.9141,123.6925,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +38,2.7955,134.1638,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3506,0 +39,2.8323,123.9887,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,4203,0 +40,7.6748,132.9317,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1038,0 +41,2.9141,124.0452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +42,2.7955,133.9924,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +43,2.8323,123.8333,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3211,0 +44,7.6748,134.1118,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +45,2.9141,123.9441,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +46,2.7955,134.0319,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +47,2.8323,123.7148,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1051,0 +48,7.6748,133.9826,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,451,0 +49,2.9141,123.8098,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,539,0 +50,2.7955,134.0500,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +51,2.8323,123.8547,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,393,0 +52,7.6748,135.4139,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,259,0 +53,2.9141,126.8027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,512,0 +54,2.7955,134.9192,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,633,0 +55,2.8323,124.5108,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,339,0 +56,7.6748,133.9342,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,227,0 +57,2.9141,123.8697,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,329,0 +58,2.7955,134.0345,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,565,0 +59,2.8323,123.8086,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,331,0 +60,7.6748,133.7674,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,204,0 +61,2.9141,123.6534,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,249,0 +62,2.7955,134.2909,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,590,0 +63,2.8323,124.0263,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,332,0 +64,7.6748,130.3316,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,195,0 +65,2.9141,123.3895,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,155,0 +66,2.7955,133.1712,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,567,0 +67,2.8323,123.4095,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,318,0 +68,7.6748,133.5996,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,187,0 +69,2.9141,122.4115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,141,0 +70,2.7955,132.0088,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,544,0 +71,2.8323,124.0575,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,320,0 +72,7.6748,133.8136,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,181,0 +73,2.9141,123.6310,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +74,2.7955,133.2754,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,472,0 +75,2.8323,122.8807,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,301,0 +76,7.6748,132.4860,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,181,0 +77,2.9141,121.0195,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +78,2.7955,130.5693,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +79,2.8323,122.8803,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +80,7.6748,132.1530,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,176,0 +81,2.9141,123.0183,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,141,0 +82,2.7955,132.6668,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,509,0 +83,2.8323,122.9903,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,250,0 +84,7.6748,132.6399,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,172,0 +85,2.9141,123.1401,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,153,0 +86,2.7955,133.1010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,506,0 +87,2.8323,122.0716,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,238,0 +88,7.6748,130.8036,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +89,2.9141,123.3173,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,143,0 +90,2.7955,133.0538,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,534,0 +91,2.8323,123.2912,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,239,0 +92,7.6748,133.8600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +93,2.9141,122.1739,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,142,0 +94,2.7955,132.0596,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,499,0 +95,2.8323,123.0835,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,219,0 +96,7.6748,132.4281,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +97,2.9141,123.1731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,142,0 +98,2.7955,132.7222,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +99,2.8323,122.8587,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,217,0 +100,7.6748,132.9668,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +101,2.9141,123.0036,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,147,0 +102,2.7955,133.0488,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,360,0 +103,2.8323,123.0719,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,173,0 +104,7.6748,131.8652,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +105,2.9141,123.0651,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,145,0 +106,2.7955,132.9238,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,312,0 +107,2.8323,123.3964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,172,0 +108,7.6748,133.1405,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +109,2.9141,123.4185,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,142,0 +110,2.7955,133.5277,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,249,0 +111,2.8323,123.4375,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,175,0 +112,7.6748,133.1415,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +113,2.9141,122.4775,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +114,2.7955,132.2698,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,218,0 +115,2.8323,122.9471,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,169,0 +116,7.6748,133.2511,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +117,2.9141,122.2935,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +118,2.7955,131.7624,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,179,0 +119,2.8323,122.5601,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,165,0 +120,7.6748,132.1637,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +121,2.9141,122.8221,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +122,2.7955,132.5427,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,182,0 +123,2.8323,123.3525,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,169,0 +124,7.6748,132.7310,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +125,2.9141,122.5713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +126,2.7955,132.3254,0.0492,0.0000,0,0,0.0000,0,0.0000,0,0,0,181,0 +127,2.8323,122.6482,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,164,0 +128,7.6748,132.1974,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +129,2.9141,123.3758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +130,2.7955,132.8344,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,183,0 +131,2.8323,122.9896,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,149,0 +132,7.6748,133.6900,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +133,2.9141,124.5557,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +134,2.7955,133.1209,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,198,0 +135,2.8323,123.3695,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,153,0 +136,7.6748,132.7888,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +137,2.9141,123.3618,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +138,2.7955,133.4551,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,193,0 +139,2.8323,124.2380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,159,0 +140,7.6748,133.1910,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +141,2.9141,122.6026,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +142,2.7955,132.5720,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,182,0 +143,2.8323,123.3517,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,151,0 +144,7.6748,133.0183,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +145,2.9141,123.7580,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +146,2.7955,132.9676,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,169,0 +147,2.8323,123.0189,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,156,0 +148,7.6748,132.3272,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +149,2.9141,123.4871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +150,2.7955,133.3594,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,169,0 +151,2.8323,124.2040,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,162,0 +152,7.6748,132.7073,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +153,2.9141,123.1873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +154,2.7955,132.7071,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,169,0 +155,2.8323,124.0812,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,164,0 +156,7.6748,133.0933,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +157,2.9141,119.7733,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +158,2.7955,129.0274,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,174,0 +159,2.8323,122.9822,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,155,0 +160,7.6748,132.6028,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +161,2.9141,123.8438,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +162,2.7955,132.8388,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,157,0 +163,2.8323,122.4062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,147,0 +164,7.6748,132.0553,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +165,2.9141,124.1435,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +166,2.7955,133.5979,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,144,0 +167,2.8323,123.6617,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,139,0 +168,7.6748,132.0511,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +169,2.9141,122.8997,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +170,2.7955,133.0077,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,144,0 +171,2.8323,123.2966,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +172,7.6748,133.0187,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +173,2.9141,124.0568,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +174,2.7955,133.2215,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,144,0 +175,2.8323,122.0042,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +176,7.6748,131.6722,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +177,2.9141,123.3740,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +178,2.7955,132.0581,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,143,0 +179,2.8323,122.2640,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +180,7.6748,130.4157,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +181,2.9141,122.9496,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +182,2.7955,132.5201,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,149,0 +183,2.8323,123.2152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +184,7.6748,129.3156,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +185,2.9141,122.4596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +186,2.7955,131.8578,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,144,0 +187,2.8323,123.0563,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +188,7.6748,132.5070,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +189,2.9141,122.4871,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +190,2.7955,131.8984,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +191,2.8323,121.7300,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +192,7.6748,130.7912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +193,2.9141,123.2397,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +194,2.7955,132.6436,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +195,2.8323,122.9273,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +196,7.6748,132.4196,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +197,2.9141,122.5336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +198,2.7955,131.8518,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,139,0 +199,2.8323,123.4215,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +200,7.6748,133.0565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +201,2.9141,123.3779,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +202,2.7955,133.0394,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +203,2.8323,123.6909,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +204,7.6748,133.4980,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +205,2.9141,124.0218,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +206,2.7955,133.7181,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +207,2.8323,124.1876,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +208,7.6748,133.7467,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +209,2.9141,124.3200,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +210,2.7955,133.7450,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +211,2.8323,124.4975,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +212,7.6748,133.8773,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +213,2.9141,124.4079,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +214,2.7955,133.9547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +215,2.8323,124.4347,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +216,7.6748,133.8030,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +217,2.9141,124.4157,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +218,2.7955,133.7682,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +219,2.8323,124.4531,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +220,7.6748,133.8448,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +221,2.9141,124.3347,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +222,2.7955,133.8845,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +223,2.8323,124.2564,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +224,7.6748,133.6184,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +225,2.9141,124.0405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +226,2.7955,133.5974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +227,2.8323,124.0158,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +228,7.6748,133.6148,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +229,2.9141,123.8786,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +230,2.7955,133.5182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +231,2.8323,123.8085,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +232,7.6748,133.2997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +233,2.9141,123.8802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +234,2.7955,133.3464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,138,0 +235,2.8323,123.9053,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +236,7.6748,133.4152,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +237,2.9141,123.7867,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +238,2.7955,133.4732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,139,0 +239,2.8323,123.7583,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +240,7.6748,133.3985,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +241,2.9141,124.6032,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +242,2.7955,133.9555,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +243,2.8323,124.1258,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +244,7.6748,134.3498,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +245,2.9141,126.6489,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +246,2.7955,133.8148,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +247,2.8323,124.9081,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +248,7.6748,133.7156,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +249,2.9141,123.9213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +250,2.7955,134.1748,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +251,2.8323,124.3294,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +252,7.6748,133.8128,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +253,2.9141,123.8455,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +254,2.7955,133.7691,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +255,2.8323,123.8268,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +256,7.6748,134.0269,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +257,2.9141,124.2510,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +258,2.7955,134.0055,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +259,2.8323,124.1065,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +260,7.6748,133.6472,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +261,2.9141,123.5255,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +262,2.7955,133.3642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +263,2.8323,123.5929,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +264,7.6748,133.4501,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +265,2.9141,122.4761,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +266,2.7955,131.9291,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +267,2.8323,121.1605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +268,7.6748,130.4688,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +269,2.9141,120.3994,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +270,2.7955,130.0560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +271,2.8323,121.8519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +272,7.6748,131.3957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +273,2.9141,121.8766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +274,2.7955,131.3962,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +275,2.8323,122.6659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +276,7.6748,132.3922,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +277,2.9141,123.0712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +278,2.7955,133.4948,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +279,2.8323,123.4849,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +280,7.6748,133.0857,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +281,2.9141,122.7847,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +282,2.7955,132.6208,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +283,2.8323,123.2039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +284,7.6748,132.2576,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +285,2.9141,123.3225,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +286,2.7955,133.3347,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +287,2.8323,123.4150,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +288,7.6748,133.3390,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +289,2.9141,123.3104,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +290,2.7955,133.4116,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +291,2.8323,123.3103,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +292,7.6748,133.4029,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +293,2.9141,124.0198,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +294,2.7955,133.6082,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +295,2.8323,123.3755,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +296,7.6748,133.4235,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +297,2.9141,123.5957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +298,2.7955,133.5897,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +299,2.8323,123.7293,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +300,7.6748,133.6477,0.0955,0.0000,0,0,0.0000,0,0.0000,0,1,0,105414,0 +301,2.9141,123.9559,0.0973,0.0000,0,0,0.0000,0,0.0000,0,1,0,80497,0 +302,2.7955,133.4155,0.0772,0.0000,0,0,0.0000,0,0.0000,0,1,0,135273,0 +303,2.8323,123.2696,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,132940,0 +304,7.6748,132.4517,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +305,2.9141,123.0805,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3966,0 +306,2.7955,132.7809,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,548,0 +307,2.8323,122.5312,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,160,0 +308,7.6748,131.9764,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,141,0 +309,2.9141,123.2550,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +310,2.7955,132.8574,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +311,2.8323,123.2809,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +312,7.6748,132.9272,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +313,2.9141,123.2887,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +314,2.7955,133.0335,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +315,2.8323,123.3635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +316,7.6748,136.7431,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +317,2.9141,126.5890,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +318,2.7955,132.8501,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +319,2.8323,123.2520,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +320,7.6748,133.1044,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +321,2.9141,123.1925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +322,2.7955,132.4909,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +323,2.8323,122.4176,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +324,7.6748,133.1760,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +325,2.9141,123.4698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +326,2.7955,133.1454,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +327,2.8323,123.3888,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +328,7.6748,132.6850,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +329,2.9141,123.4855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +330,2.7955,133.2918,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +331,2.8323,123.5507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +332,7.6748,133.7148,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +333,2.9141,123.7346,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +334,2.7955,134.2493,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +335,2.8323,125.9031,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +336,7.6748,133.6668,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +337,2.9141,123.6971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +338,2.7955,133.6064,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +339,2.8323,123.1008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +340,7.6748,133.2935,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +341,2.9141,119.7042,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +342,2.7955,129.5265,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +343,2.8323,123.4988,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +344,7.6748,133.4234,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +345,2.9141,123.7490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +346,2.7955,133.4239,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +347,2.8323,123.8528,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +348,7.6748,133.3929,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +349,2.9141,122.0890,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +350,2.7955,131.8594,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +351,2.8323,122.7330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +352,7.6748,132.3768,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +353,2.9141,123.3397,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +354,2.7955,133.0877,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +355,2.8323,123.3218,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +356,7.6748,134.2658,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +357,2.9141,124.1711,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +358,2.7955,132.9667,0.0363,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +359,2.8323,121.2508,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +360,7.6748,130.8701,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +361,2.9141,123.4595,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +362,2.7955,133.2038,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +363,2.8323,123.2645,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +364,7.6748,133.9545,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +365,2.9141,123.4251,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +366,2.7955,132.3260,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +367,2.8323,122.9242,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +368,7.6748,133.4555,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +369,2.9141,125.0769,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +370,2.7955,132.9444,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +371,2.8323,123.0255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +372,7.6748,133.4463,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +373,2.9141,129.5770,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +374,2.7955,133.2719,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +375,2.8323,123.1039,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +376,7.6748,133.0803,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +377,2.9141,123.0480,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +378,2.7955,132.9519,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +379,2.8323,123.4043,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +380,7.6748,134.8298,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +381,2.9141,123.8675,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +382,2.7955,131.7782,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +383,2.8323,123.9574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +384,7.6748,133.4408,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +385,2.9141,123.8701,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +386,2.7955,133.2855,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +387,2.8323,123.4560,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +388,7.6748,133.6485,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +389,2.9141,122.0744,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +390,2.7955,131.5487,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +391,2.8323,122.8820,0.0817,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +392,7.6748,132.0276,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +393,2.9141,121.1446,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +394,2.7955,130.4799,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +395,2.8323,123.2714,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +396,7.6748,133.5312,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +397,2.9141,117.5600,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +398,2.7955,125.5215,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +399,2.8323,123.6706,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +400,7.6748,133.6176,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +401,2.9141,123.4294,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +402,2.7955,133.3452,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +403,2.8323,123.4150,0.0269,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +404,7.6748,133.2308,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +405,2.9141,119.1785,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +406,2.7955,128.9200,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +407,2.8323,122.0735,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +408,7.6748,131.7424,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +409,2.9141,122.2571,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +410,2.7955,131.8740,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +411,2.8323,123.8040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +412,7.6748,133.3079,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +413,2.9141,123.1691,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +414,2.7955,134.1674,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +415,2.8323,124.3777,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +416,7.6748,132.9973,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +417,2.9141,122.8967,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +418,2.7955,132.6776,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +419,2.8323,123.1640,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +420,7.6748,132.9160,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +421,2.9141,122.7867,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +422,2.7955,132.5659,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +423,2.8323,122.8006,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +424,7.6748,132.6712,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +425,2.9141,123.0583,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +426,2.7955,132.8769,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +427,2.8323,122.6474,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +428,7.6748,132.3194,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +429,2.9141,123.0011,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +430,2.7955,132.9547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +431,2.8323,122.8936,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +432,7.6748,132.6819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +433,2.9141,123.0069,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +434,2.7955,132.7908,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +435,2.8323,122.9285,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +436,7.6748,132.8183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +437,2.9141,123.1235,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +438,2.7955,130.4285,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +439,2.8323,122.1560,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +440,7.6748,132.1181,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +441,2.9141,123.5923,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +442,2.7955,133.6022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +443,2.8323,123.6785,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +444,7.6748,133.6350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +445,2.9141,123.8228,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +446,2.7955,133.8336,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +447,2.8323,123.9663,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +448,7.6748,134.0993,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +449,2.9141,123.9216,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +450,2.7955,134.0432,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +451,2.8323,123.9838,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +452,7.6748,138.2120,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +453,2.9141,128.7375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +454,2.7955,134.1871,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +455,2.8323,123.9038,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +456,7.6748,134.3825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +457,2.9141,124.0686,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +458,2.7955,138.3585,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +459,2.8323,128.1170,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +460,7.6748,134.1342,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +461,2.9141,124.2844,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +462,2.7955,134.1251,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +463,2.8323,124.3713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +464,7.6748,134.0900,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +465,2.9141,124.0847,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +466,2.7955,134.0636,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +467,2.8323,124.1652,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +468,7.6748,134.0486,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +469,2.9141,124.1952,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +470,2.7955,134.1598,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +471,2.8323,124.1425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +472,7.6748,134.0045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +473,2.9141,123.8674,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +474,2.7955,132.0689,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +475,2.8323,123.9786,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +476,7.6748,133.7732,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +477,2.9141,116.5545,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +478,2.7955,126.0555,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +479,2.8323,123.9050,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +480,7.6748,133.8533,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +481,2.9141,123.5546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +482,2.7955,133.4056,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +483,2.8323,119.6244,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +484,7.6748,129.7552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +485,2.9141,123.8263,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +486,2.7955,133.8822,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +487,2.8323,123.9622,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +488,7.6748,134.0169,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +489,2.9141,124.1348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +490,2.7955,134.1295,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +491,2.8323,123.9484,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +492,7.6748,134.2042,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +493,2.9141,124.1664,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +494,2.7955,134.4206,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +495,2.8323,124.2018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +496,7.6748,134.5845,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +497,2.9141,124.4505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +498,2.7955,134.9049,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +499,2.8323,124.7620,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +500,7.6748,134.5691,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +501,2.9141,124.4586,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +502,2.7955,134.6477,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +503,2.8323,124.5118,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +504,7.6748,134.7343,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +505,2.9141,124.5327,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +506,2.7955,134.7866,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +507,2.8323,124.5512,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +508,7.6748,134.7675,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +509,2.9141,124.5662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +510,2.7955,134.7933,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +511,2.8323,124.5396,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +512,7.6748,134.8191,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +513,2.9141,124.5731,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +514,2.7955,134.8154,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +515,2.8323,124.5543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +516,7.6748,134.7795,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +517,2.9141,124.4849,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +518,2.7955,134.7310,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +519,2.8323,124.4491,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +520,7.6748,134.6678,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +521,2.9141,124.1728,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +522,2.7955,134.4614,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +523,2.8323,123.9204,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +524,7.6748,134.1738,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +525,2.9141,124.2372,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +526,2.7955,134.4313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +527,2.8323,124.2050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +528,7.6748,134.4004,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +529,2.9141,124.1555,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +530,2.7955,134.5868,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +531,2.8323,124.3097,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +532,7.6748,134.4900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +533,2.9141,124.2383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +534,2.7955,134.5058,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +535,2.8323,124.2980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +536,7.6748,134.6273,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +537,2.9141,124.3225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +538,2.7955,134.8572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +539,2.8323,124.5445,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +540,7.6748,134.8412,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +541,2.9141,124.5951,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +542,2.7955,134.9497,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +543,2.8323,124.6523,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +544,7.6748,134.9253,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +545,2.9141,124.7639,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +546,2.7955,135.0789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +547,2.8323,124.7562,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +548,7.6748,135.1396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +549,2.9141,124.7784,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +550,2.7955,135.0772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +551,2.8323,124.8790,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +552,7.6748,135.1186,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +553,2.9141,124.8945,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +554,2.7955,135.0995,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +555,2.8323,124.6075,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +556,7.6748,134.8455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +557,2.9141,124.7766,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +558,2.7955,135.0310,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +559,2.8323,124.7798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +560,7.6748,134.9911,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +561,2.9141,124.7245,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +562,2.7955,134.9563,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +563,2.8323,124.3763,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +564,7.6748,134.5766,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +565,2.9141,124.2422,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +566,2.7955,134.4422,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +567,2.8323,124.1471,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +568,7.6748,134.3767,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +569,2.9141,124.1641,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +570,2.7955,134.5959,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +571,2.8323,124.3560,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +572,7.6748,134.6376,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +573,2.9141,124.3356,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +574,2.7955,134.8722,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +575,2.8323,124.5320,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +576,7.6748,134.5995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +577,2.9141,124.3777,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +578,2.7955,134.5183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +579,2.8323,124.4404,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +580,7.6748,134.6318,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +581,2.9141,124.3679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +582,2.7955,134.6039,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +583,2.8323,124.3633,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +584,7.6748,134.7094,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +585,2.9141,124.4702,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +586,2.7955,134.9338,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +587,2.8323,124.7161,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +588,7.6748,134.9496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +589,2.9141,124.7583,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +590,2.7955,134.9967,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +591,2.8323,124.6726,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +592,7.6748,134.8267,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +593,2.9141,124.7352,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +594,2.7955,134.9253,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +595,2.8323,124.4486,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +596,7.6748,134.6078,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +597,2.9141,124.2896,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +598,2.7955,134.5950,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +599,2.8323,124.0602,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +600,7.6748,134.3365,0.0314,0.0000,0,0,0.0000,0,0.0000,0,1,0,105413,0 +601,2.9141,124.2100,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,80496,0 +602,2.7955,134.4700,0.0384,0.0000,0,0,0.0000,0,0.0000,0,1,0,135272,0 +603,2.8323,124.3437,0.0522,0.0000,0,0,0.0000,0,0.0000,0,1,0,132939,0 +604,7.6748,134.4789,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +605,2.9141,124.3394,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3966,0 +606,2.7955,134.6430,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,548,0 +607,2.8323,124.3282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,160,0 +608,7.6748,134.5460,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,141,0 +609,2.9141,124.2320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +610,2.7955,134.4597,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +611,2.8323,124.0038,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +612,7.6748,134.2660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +613,2.9141,124.1235,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +614,2.7955,134.3408,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +615,2.8323,124.0768,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +616,7.6748,134.2893,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +617,2.9141,124.0083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +618,2.7955,134.3336,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +619,2.8323,124.0883,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +620,7.6748,134.3306,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +621,2.9141,124.2427,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +622,2.7955,134.3206,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +623,2.8323,124.0879,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +624,7.6748,134.4402,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +625,2.9141,124.1911,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +626,2.7955,134.4049,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +627,2.8323,124.0979,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +628,7.6748,134.3313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +629,2.9141,124.2962,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +630,2.7955,134.6094,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +631,2.8323,124.3043,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +632,7.6748,134.4590,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +633,2.9141,124.2483,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +634,2.7955,134.4227,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +635,2.8323,124.1613,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +636,7.6748,134.4569,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +637,2.9141,124.1076,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +638,2.7955,134.4590,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +639,2.8323,124.4436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +640,7.6748,134.3547,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +641,2.9141,124.2023,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +642,2.7955,134.4488,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +643,2.8323,124.1805,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +644,7.6748,134.2895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +645,2.9141,124.0066,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +646,2.7955,133.9998,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +647,2.8323,123.9822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +648,7.6748,134.0090,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +649,2.9141,123.6434,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +650,2.7955,134.9477,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +651,2.8323,124.6467,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +652,7.6748,133.7225,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +653,2.9141,123.5772,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +654,2.7955,133.6462,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +655,2.8323,123.3739,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +656,7.6748,133.8783,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +657,2.9141,124.2965,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +658,2.7955,133.4907,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +659,2.8323,123.3984,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +660,7.6748,133.4824,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +661,2.9141,123.1125,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +662,2.7955,133.2593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +663,2.8323,122.7261,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +664,7.6748,132.8317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +665,2.9141,122.9915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +666,2.7955,132.9906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +667,2.8323,122.6553,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +668,7.6748,132.5208,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +669,2.9141,122.5602,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +670,2.7955,132.5823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +671,2.8323,122.7230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +672,7.6748,132.8594,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +673,2.9141,122.8918,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +674,2.7955,131.8233,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +675,2.8323,121.5693,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +676,7.6748,131.5429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +677,2.9141,122.7744,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +678,2.7955,132.8057,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +679,2.8323,122.6119,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +680,7.6748,132.5288,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +681,2.9141,121.2609,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +682,2.7955,131.3593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +683,2.8323,123.2295,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +684,7.6748,133.8238,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +685,2.9141,123.6424,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +686,2.7955,133.2566,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +687,2.8323,123.2050,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +688,7.6748,133.2523,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +689,2.9141,123.1695,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +690,2.7955,133.3243,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +691,2.8323,123.1953,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +692,7.6748,133.2044,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +693,2.9141,123.0654,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +694,2.7955,133.1934,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +695,2.8323,123.0990,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +696,7.6748,133.3433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +697,2.9141,123.2735,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +698,2.7955,133.5602,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +699,2.8323,123.3750,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +700,7.6748,133.3886,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +701,2.9141,123.4269,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +702,2.7955,133.6304,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +703,2.8323,123.4136,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +704,7.6748,133.6035,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +705,2.9141,123.3771,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +706,2.7955,133.3457,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +707,2.8323,122.8618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +708,7.6748,132.9208,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +709,2.9141,122.6469,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +710,2.7955,132.4317,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +711,2.8323,123.5433,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +712,7.6748,133.6618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +713,2.9141,123.7525,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +714,2.7955,133.9669,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +715,2.8323,123.9162,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +716,7.6748,143.3615,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +717,2.9141,133.5036,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +718,2.7955,153.6703,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +719,2.8323,143.5569,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +720,7.6748,163.6631,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +721,2.9141,153.4900,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +722,2.7955,173.8649,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +723,2.8323,163.5315,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +724,7.6748,183.7434,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +725,2.9141,173.6841,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +726,2.7955,193.7592,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +727,2.8323,183.3770,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +728,7.6748,203.4221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +729,2.9141,193.1829,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +730,2.7955,213.4998,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +731,2.8323,203.3683,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +732,7.6748,223.5550,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +733,2.9141,213.2150,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +734,2.7955,233.3340,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +735,2.8323,223.1881,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +736,7.6748,243.3500,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +737,2.9141,233.0900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +738,2.7955,253.4910,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +739,2.8323,243.2333,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +740,7.6748,263.2654,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +741,2.9141,243.7342,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +742,2.7955,263.9000,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +743,2.8323,243.5780,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +744,7.6748,263.8475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +745,2.9141,243.6195,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +746,2.7955,263.8274,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +747,2.8323,243.9198,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +748,7.6748,263.9636,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +749,2.9141,243.7488,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +750,2.7955,263.3428,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +751,2.8323,243.2760,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +752,7.6748,263.0801,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +753,2.9141,243.1445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +754,2.7955,263.4502,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +755,2.8323,243.1852,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +756,7.6748,263.3228,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +757,2.9141,243.2336,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +758,2.7955,263.5004,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +759,2.8323,243.3749,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +760,7.6748,263.4538,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +761,2.9141,243.2894,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +762,2.7955,264.2753,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +763,2.8323,243.5250,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +764,7.6748,262.9521,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +765,2.9141,243.3270,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +766,2.7955,263.3081,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +767,2.8323,243.9788,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +768,7.6748,263.0885,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +769,2.9141,243.4768,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +770,2.7955,263.0310,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +771,2.8323,242.8007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +772,7.6748,262.7365,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +773,2.9141,242.6926,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +774,2.7955,262.6136,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +775,2.8323,243.3679,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +776,7.6748,263.2518,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +777,2.9141,243.6115,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +778,2.7955,263.7183,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +779,2.8323,243.2970,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +780,7.6748,263.1522,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +781,2.9141,243.2240,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +782,2.7955,263.1347,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +783,2.8323,243.0972,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +784,7.6748,263.1148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +785,2.9141,243.2053,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +786,2.7955,263.2620,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +787,2.8323,241.8199,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +788,7.6748,261.7244,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +789,2.9141,242.3979,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +790,2.7955,262.4153,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +791,2.8323,242.2159,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +792,7.6748,261.9456,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +793,2.9141,241.1585,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +794,2.7955,260.6802,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +795,2.8323,242.9021,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +796,7.6748,262.8936,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +797,2.9141,242.8770,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +798,2.7955,262.5545,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +799,2.8323,242.8853,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +800,7.6748,263.0181,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +801,2.9141,243.1893,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +802,2.7955,262.8739,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +803,2.8323,242.9227,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +804,7.6748,263.0385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +805,2.9141,243.0149,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +806,2.7955,263.0673,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +807,2.8323,243.0498,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +808,7.6748,263.1410,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +809,2.9141,243.0452,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +810,2.7955,263.4771,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +811,2.8323,243.2514,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +812,7.6748,263.3632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +813,2.9141,243.2560,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +814,2.7955,263.4618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +815,2.8323,243.2065,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +816,7.6748,263.3082,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +817,2.9141,243.2337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +818,2.7955,263.3989,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +819,2.8323,243.2523,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +820,7.6748,263.3056,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +821,2.9141,243.1897,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +822,2.7955,263.2945,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +823,2.8323,243.1546,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +824,7.6748,263.4832,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +825,2.9141,243.0910,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +826,2.7955,263.1475,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +827,2.8323,243.4661,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +828,7.6748,263.6710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +829,2.9141,243.4334,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +830,2.7955,263.7756,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +831,2.8323,243.6547,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +832,7.6748,263.7511,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +833,2.9141,243.6262,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +834,2.7955,263.7950,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +835,2.8323,243.3643,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +836,7.6748,263.4835,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +837,2.9141,243.4017,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +838,2.7955,263.5337,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +839,2.8323,243.3521,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +840,7.6748,263.5498,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +841,2.9141,243.3998,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +842,2.7955,263.7899,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +843,2.8323,243.7360,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +844,7.6748,263.6547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +845,2.9141,243.6003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +846,2.7955,263.7290,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +847,2.8323,243.6478,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +848,7.6748,263.9456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +849,2.9141,243.6345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +850,2.7955,263.5927,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +851,2.8323,243.6210,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +852,7.6748,263.7251,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +853,2.9141,243.5396,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +854,2.7955,263.6626,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +855,2.8323,243.3539,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +856,7.6748,263.5320,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +857,2.9141,243.5078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +858,2.7955,263.7355,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +859,2.8323,243.5479,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +860,7.6748,263.8781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +861,2.9141,243.7602,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +862,2.7955,264.0761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +863,2.8323,243.8718,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +864,7.6748,264.1886,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +865,2.9141,243.9798,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +866,2.7955,264.2228,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +867,2.8323,243.7325,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +868,7.6748,264.0546,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +869,2.9141,244.1726,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +870,2.7955,264.3035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +871,2.8323,244.0682,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +872,7.6748,264.7228,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +873,2.9141,244.4188,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +874,2.7955,264.5315,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +875,2.8323,244.4899,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +876,7.6748,266.0107,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +877,2.9141,245.8578,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +878,2.7955,265.0334,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +879,2.8323,244.9127,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +880,7.6748,265.0234,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +881,2.9141,245.2615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +882,2.7955,265.0507,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +883,2.8323,244.8295,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +884,7.6748,265.1773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +885,2.9141,244.8786,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +886,2.7955,264.7418,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +887,2.8323,244.3995,0.0247,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +888,7.6748,264.5915,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +889,2.9141,244.2968,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +890,2.7955,264.4085,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +891,2.8323,244.1828,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +892,7.6748,264.5875,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +893,2.9141,244.3166,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +894,2.7955,264.7525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +895,2.8323,244.5817,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +896,7.6748,264.7194,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +897,2.9141,244.1112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +898,2.7955,265.0570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +899,2.8323,244.9580,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +900,7.6748,263.7767,0.0615,0.0000,0,0,0.0000,0,0.0000,0,1,0,105414,0 +901,2.9141,242.6237,0.0268,0.0000,0,0,0.0000,0,0.0000,0,1,0,80497,0 +902,2.7955,262.7401,0.0755,0.0000,0,0,0.0000,0,0.0000,0,1,0,135273,0 +903,2.8323,243.6087,0.0369,0.0000,0,0,0.0000,0,0.0000,0,1,0,132940,0 +904,7.6748,266.4074,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +905,2.9141,246.6641,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3966,0 +906,2.7955,267.0897,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,548,0 +907,2.8323,246.9197,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,160,0 +908,7.6748,263.3571,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,141,0 +909,2.9141,243.4563,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +910,2.7955,263.6170,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +911,2.8323,244.2374,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +912,7.6748,265.5010,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +913,2.9141,245.4223,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +914,2.7955,264.0210,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +915,2.8323,244.0835,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +916,7.6748,264.3343,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +917,2.9141,243.8893,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +918,2.7955,263.9045,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +919,2.8323,243.2658,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +920,7.6748,263.5584,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +921,2.9141,243.8932,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +922,2.7955,263.6488,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +923,2.8323,242.8520,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +924,7.6748,261.7647,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +925,2.9141,243.7198,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +926,2.7955,263.7028,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +927,2.8323,243.3982,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +928,7.6748,263.2833,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +929,2.9141,240.5037,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +930,2.7955,260.8455,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +931,2.8323,239.9664,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +932,7.6748,259.9193,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +933,2.9141,243.9881,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +934,2.7955,263.9630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +935,2.8323,243.2545,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +936,7.6748,262.7538,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +937,2.9141,241.9372,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +938,2.7955,261.7472,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +939,2.8323,243.5897,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +940,7.6748,263.5907,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +941,2.9141,243.3553,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +942,2.7955,263.2263,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +943,2.8323,242.8517,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +944,7.6748,262.7543,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +945,2.9141,242.7946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +946,2.7955,262.7812,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +947,2.8323,240.5884,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +948,7.6748,260.5997,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +949,2.9141,243.5026,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +950,2.7955,263.9188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +951,2.8323,243.9106,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +952,7.6748,264.0029,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +953,2.9141,244.0917,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +954,2.7955,264.1225,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +955,2.8323,243.5776,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +956,7.6748,264.0010,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +957,2.9141,243.9507,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +958,2.7955,264.2328,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +959,2.8323,244.2030,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +960,7.6748,264.6464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +961,2.9141,244.3780,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +962,2.7955,264.6951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +963,2.8323,244.3717,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +964,7.6748,264.3057,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +965,2.9141,244.1091,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +966,2.7955,264.4348,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +967,2.8323,244.4888,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +968,7.6748,264.6155,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +969,2.9141,244.5252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +970,2.7955,264.5513,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +971,2.8323,244.1869,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +972,7.6748,264.2875,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +973,2.9141,244.0480,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +974,2.7955,264.4049,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +975,2.8323,243.9890,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +976,7.6748,264.1763,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +977,2.9141,244.1077,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +978,2.7955,264.0258,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +979,2.8323,244.1011,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +980,7.6748,264.3509,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +981,2.9141,243.7743,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +982,2.7955,263.8427,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +983,2.8323,243.6552,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +984,7.6748,263.6608,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +985,2.9141,243.4764,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +986,2.7955,263.6615,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +987,2.8323,243.7252,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +988,7.6748,263.8723,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +989,2.9141,244.3199,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +990,2.7955,264.5268,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +991,2.8323,244.2133,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +992,7.6748,264.2423,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +993,2.9141,244.3581,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +994,2.7955,264.5370,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +995,2.8323,244.7578,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +996,7.6748,264.8640,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +997,2.9141,244.8712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +998,2.7955,265.0974,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +999,2.8323,244.6363,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1000,7.6748,264.6924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1001,2.9141,244.4844,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1002,2.7955,264.5612,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1003,2.8323,244.8877,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1004,7.6748,265.0448,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1005,2.9141,244.8184,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1006,2.7955,264.9655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1007,2.8323,244.8317,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1008,7.6748,265.1844,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1009,2.9141,245.1724,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1010,2.7955,265.3570,0.0443,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1011,2.8323,245.0029,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1012,7.6748,266.6583,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1013,2.9141,246.3445,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1014,2.7955,265.0149,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1015,2.8323,244.7449,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1016,7.6748,264.9775,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1017,2.9141,244.7252,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1018,2.7955,264.9877,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1019,2.8323,244.6952,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1020,7.6748,268.4234,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1021,2.9141,248.3164,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1022,2.7955,267.9804,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1023,2.8323,244.4017,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1024,7.6748,264.5310,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1025,2.9141,244.4164,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1026,2.7955,264.2643,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1027,2.8323,244.1170,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1028,7.6748,264.2886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1029,2.9141,244.0899,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1030,2.7955,264.2847,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1031,2.8323,244.1575,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1032,7.6748,264.3645,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1033,2.9141,243.7754,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1034,2.7955,263.9243,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1035,2.8323,243.6900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1036,7.6748,263.7238,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1037,2.9141,240.1728,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1038,2.7955,259.6485,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1039,2.8323,243.8554,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1040,7.6748,263.9211,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1041,2.9141,243.9139,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1042,2.7955,263.9987,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1043,2.8323,244.0300,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1044,7.6748,264.1254,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1045,2.9141,240.3327,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1046,2.7955,260.5467,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1047,2.8323,241.0467,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1048,7.6748,260.8636,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1049,2.9141,244.2956,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1050,2.7955,264.1517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1051,2.8323,244.8052,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1052,7.6748,264.9826,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1053,2.9141,244.7835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1054,2.7955,264.9043,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1055,2.8323,244.6629,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1056,7.6748,264.9060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1057,2.9141,244.7416,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1058,2.7955,265.2025,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1059,2.8323,244.9401,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1060,7.6748,266.5170,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1061,2.9141,246.4221,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1062,2.7955,265.0024,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1063,2.8323,244.7291,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1064,7.6748,265.0525,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1065,2.9141,244.6807,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1066,2.7955,264.9747,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1067,2.8323,244.5825,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1068,7.6748,264.4162,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1069,2.9141,244.3469,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1070,2.7955,264.4732,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1071,2.8323,244.0510,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1072,7.6748,264.1562,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1073,2.9141,244.1430,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1074,2.7955,264.3698,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1075,2.8323,244.2720,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1076,7.6748,264.4725,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1077,2.9141,244.2779,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1078,2.7955,264.3739,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1079,2.8323,244.1934,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1080,7.6748,264.3332,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1081,2.9141,243.9982,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1082,2.7955,264.1322,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1083,2.8323,243.4962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1084,7.6748,263.3913,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1085,2.9141,241.5693,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1086,2.7955,261.3215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1087,2.8323,243.4606,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1088,7.6748,263.4397,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1089,2.9141,243.1242,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1090,2.7955,262.1098,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1091,2.8323,243.1560,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1092,7.6748,263.1408,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1093,2.9141,243.2342,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1094,2.7955,263.2372,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1095,2.8323,243.3185,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1096,7.6748,263.2903,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1097,2.9141,243.2245,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1098,2.7955,263.4460,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1099,2.8323,243.4257,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1100,7.6748,263.5140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1101,2.9141,243.3192,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1102,2.7955,263.3830,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1103,2.8323,243.3981,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1104,7.6748,263.5909,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1105,2.9141,243.4745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1106,2.7955,263.5975,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1107,2.8323,243.4059,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1108,7.6748,263.6665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1109,2.9141,243.5635,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1110,2.7955,263.6984,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1111,2.8323,243.7695,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1112,7.6748,263.8001,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1113,2.9141,243.6823,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1114,2.7955,263.9102,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1115,2.8323,243.8082,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1116,7.6748,264.0376,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1117,2.9141,243.8326,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1118,2.7955,264.0886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1119,2.8323,243.9377,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1120,7.6748,264.1933,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1121,2.9141,244.0490,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1122,2.7955,264.2712,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1123,2.8323,243.9124,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1124,7.6748,264.9970,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1125,2.9141,244.7516,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1126,2.7955,264.8644,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1127,2.8323,244.5178,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1128,7.6748,264.4941,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1129,2.9141,244.2825,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1130,2.7955,264.6401,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1131,2.8323,244.5150,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1132,7.6748,265.1985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1133,2.9141,244.6812,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1134,2.7955,264.5292,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1135,2.8323,244.3489,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1136,7.6748,264.4045,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1137,2.9141,244.3665,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1138,2.7955,270.2738,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1139,2.8323,250.7287,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1140,7.6748,264.9608,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1141,2.9141,245.2098,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1142,2.7955,265.4848,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1143,2.8323,244.9495,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1144,7.6748,264.8585,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1145,2.9141,244.5303,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1146,2.7955,265.0629,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1147,2.8323,244.5651,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1148,7.6748,264.3720,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1149,2.9141,243.1138,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1150,2.7955,263.0280,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1151,2.8323,243.4640,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1152,7.6748,263.0126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1153,2.9141,243.7679,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1154,2.7955,263.8629,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1155,2.8323,243.4179,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1156,7.6748,263.7038,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1157,2.9141,242.7391,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1158,2.7955,262.1105,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1159,2.8323,243.7852,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1160,7.6748,263.7622,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1161,2.9141,244.0162,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1162,2.7955,266.3171,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1163,2.8323,238.2560,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1164,7.6748,256.9128,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1165,2.9141,242.9765,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1166,2.7955,262.9784,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1167,2.8323,242.1054,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1168,7.6748,261.4972,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1169,2.9141,243.4030,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1170,2.7955,262.7360,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1171,2.8323,242.4581,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1172,7.6748,262.1835,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1173,2.9141,243.4568,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1174,2.7955,263.4289,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1175,2.8323,243.4370,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1176,7.6748,263.7059,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1177,2.9141,243.7349,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1178,2.7955,263.9187,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1179,2.8323,243.8053,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1180,7.6748,263.9610,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1181,2.9141,243.3946,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1182,2.7955,263.4278,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1183,2.8323,243.4418,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1184,7.6748,263.5324,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1185,2.9141,243.3476,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1186,2.7955,263.4978,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1187,2.8323,241.7052,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1188,7.6748,261.7243,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1189,2.9141,244.0892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1190,2.7955,264.0600,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1191,2.8323,244.0035,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1192,7.6748,274.8123,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1193,2.9141,254.6707,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1194,2.7955,287.1792,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1195,2.8323,267.5908,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1196,7.6748,297.0532,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1197,2.9141,276.9417,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1198,2.7955,308.0582,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 +1199,2.8323,288.0413,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,133,0 diff --git a/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.txt b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.txt new file mode 100644 index 0000000..ddc82f1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.txt @@ -0,0 +1,59 @@ +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty AllowOpenGOP failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=h264 +encoder_id=auto +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=197.613 +p95_encode_latency_ms=285.391 +max_encode_latency_ms=328.489 +avg_steady_encode_latency_ms=203.305 +p95_steady_encode_latency_ms=285.442 +max_steady_encode_latency_ms=328.489 +avg_tile_encode_latency_ms=176.380 +p95_tile_encode_latency_ms=264.531 +avg_max_tile_encode_latency_ms=183.745 +p95_max_tile_encode_latency_ms=265.101 +avg_steady_max_tile_encode_latency_ms=189.055 +p95_steady_max_tile_encode_latency_ms=265.178 +payload_bytes=2263932 +send_target=none +csv=benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60_logical.csv diff --git a/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60_logical.csv b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60_logical.csv new file mode 100644 index 0000000..f036694 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,86.6581,24.1755,285681 +1,4,0,21.3858,20.9645,90075 +2,4,0,41.4749,41.1970,71892 +3,4,0,61.7751,61.5020,73737 +4,4,0,81.9049,81.6488,78912 +5,4,0,102.2299,102.0410,42271 +6,4,0,122.5972,122.4155,28860 +7,4,0,128.5337,128.1424,16750 +8,4,0,133.2040,132.9647,13560 +9,4,0,139.5503,134.1638,11404 +10,4,0,143.1834,133.9924,5651 +11,4,0,144.3857,134.1118,3413 +12,4,0,144.4791,134.0500,2026 +13,4,0,145.1564,135.4139,1743 +14,4,0,144.3859,134.0345,1452 +15,4,0,145.1258,134.2909,1375 +16,4,0,140.5528,133.1712,1235 +17,4,0,144.4848,133.5996,1192 +18,4,0,143.8271,133.8136,1092 +19,4,0,143.4318,132.4860,1023 +20,4,0,142.4655,132.6668,1076 +21,4,0,143.0273,133.1010,1069 +22,4,0,140.7547,133.0538,1049 +23,4,0,144.2522,133.8600,993 +24,4,0,142.6625,132.7222,908 +25,4,0,143.7074,133.0488,813 +26,4,0,142.3979,132.9238,762 +27,4,0,143.6215,133.5277,699 +28,4,0,143.7260,133.1415,653 +29,4,0,143.2447,133.2511,610 +30,4,0,143.0126,132.5427,617 +31,4,0,143.4634,132.7310,611 +32,4,0,142.9437,132.8344,598 +33,4,0,143.4568,133.6900,617 +34,4,0,144.0945,133.4551,618 +35,4,0,143.7035,133.1910,599 +36,4,0,143.8411,133.0183,591 +37,4,0,143.9423,133.3594,597 +38,4,0,144.2138,132.7073,599 +39,4,0,143.4187,133.0933,595 +40,4,0,143.2512,132.8388,570 +41,4,0,143.7042,133.5979,549 +42,4,0,142.8744,133.0077,543 +43,4,0,143.2547,133.2215,543 +44,4,0,142.2538,132.0581,542 +45,4,0,141.0170,132.5201,548 +46,4,0,140.0318,131.8578,543 +47,4,0,143.3224,132.5070,537 +48,4,0,141.6507,132.6436,537 +49,4,0,143.3344,132.4196,538 +50,4,0,143.7875,133.0565,537 +51,4,0,144.1758,133.7181,537 +52,4,0,144.5443,133.7467,537 +53,4,0,144.6079,133.9547,537 +54,4,0,144.5195,133.8030,537 +55,4,0,144.5164,133.8845,537 +56,4,0,144.3729,133.6184,537 +57,4,0,144.2818,133.6148,537 +58,4,0,144.0516,133.3464,537 +59,4,0,144.0377,133.4732,538 +60,4,0,144.3487,133.9555,532 +61,4,0,145.2574,134.3498,532 +62,4,0,144.5404,134.1748,532 +63,4,0,144.1583,133.8128,532 +64,4,0,144.3395,134.0269,532 +65,4,0,144.0260,133.6472,532 +66,4,0,143.9313,133.4501,532 +67,4,0,141.1415,130.4688,532 +68,4,0,141.9846,131.3962,532 +69,4,0,143.2609,133.4948,532 +70,4,0,143.8609,133.0857,532 +71,4,0,142.6562,133.3347,532 +72,4,0,143.7152,133.4116,532 +73,4,0,143.7527,133.6082,532 +74,4,0,144.4917,133.5897,532 +75,4,0,144.4155,133.6477,454124 +76,4,0,142.9066,132.7809,6071 +77,4,0,142.7245,132.8574,540 +78,4,0,143.6668,133.0335,532 +79,4,0,143.5395,136.7431,532 +80,4,0,143.5458,133.1044,532 +81,4,0,143.2736,133.1760,532 +82,4,0,142.9450,133.2918,532 +83,4,0,146.3455,134.2493,532 +84,4,0,144.0057,133.6668,532 +85,4,0,143.5766,133.2935,532 +86,4,0,144.0037,133.4239,532 +87,4,0,144.0205,133.3929,532 +88,4,0,142.6283,133.0877,532 +89,4,0,143.8930,134.2658,532 +90,4,0,141.0959,133.2038,532 +91,4,0,144.3476,133.9545,532 +92,4,0,142.4305,133.4555,532 +93,4,0,143.3982,133.4463,532 +94,4,0,143.4927,133.0803,532 +95,4,0,144.4017,134.8298,532 +96,4,0,143.7449,133.4408,532 +97,4,0,143.9465,133.6485,532 +98,4,0,142.2860,132.0276,532 +99,4,0,143.9868,133.5312,532 +100,4,0,143.9567,133.6176,532 +101,4,0,143.7637,133.2308,532 +102,4,0,142.5875,131.8740,532 +103,4,0,144.6700,134.1674,532 +104,4,0,143.4037,132.9973,532 +105,4,0,143.4495,132.9160,532 +106,4,0,143.1739,132.8769,532 +107,4,0,142.9168,132.9547,532 +108,4,0,143.1110,132.7908,532 +109,4,0,143.2605,132.8183,532 +110,4,0,142.4885,133.6022,532 +111,4,0,144.0886,133.8336,532 +112,4,0,144.4777,134.0993,532 +113,4,0,144.5724,138.2120,532 +114,4,0,148.6540,138.3585,532 +115,4,0,144.7722,134.1342,532 +116,4,0,144.8098,134.0900,532 +117,4,0,144.6845,134.1598,532 +118,4,0,144.5598,134.0045,532 +119,4,0,144.3332,133.7732,532 +120,4,0,144.2934,133.8533,532 +121,4,0,140.1198,133.8822,532 +122,4,0,144.4072,134.1295,532 +123,4,0,144.6615,134.4206,532 +124,4,0,145.3425,134.9049,532 +125,4,0,144.9916,134.6477,532 +126,4,0,145.1515,134.7866,532 +127,4,0,145.1170,134.7933,532 +128,4,0,145.1781,134.8191,532 +129,4,0,145.1582,134.7795,532 +130,4,0,145.0740,134.6678,532 +131,4,0,144.5258,134.4313,532 +132,4,0,145.0012,134.5868,532 +133,4,0,144.8564,134.5058,532 +134,4,0,145.2665,134.8572,532 +135,4,0,145.3371,134.9497,532 +136,4,0,145.3433,135.0789,532 +137,4,0,145.5613,135.1396,532 +138,4,0,145.4539,135.1186,532 +139,4,0,145.2354,135.0310,532 +140,4,0,145.3417,134.9911,532 +141,4,0,144.9500,134.5766,532 +142,4,0,144.9847,134.5959,532 +143,4,0,145.3055,134.8722,532 +144,4,0,144.9282,134.5995,532 +145,4,0,145.0103,134.6318,532 +146,4,0,145.3094,134.9338,532 +147,4,0,145.3113,134.9967,532 +148,4,0,145.1736,134.9253,532 +149,4,0,145.0763,134.6078,532 +150,4,0,144.8350,134.4700,454120 +151,4,0,144.8930,134.6430,6071 +152,4,0,144.9472,134.5460,540 +153,4,0,144.6044,134.3408,532 +154,4,0,144.7252,134.3336,532 +155,4,0,144.6316,134.3306,532 +156,4,0,144.8601,134.4402,532 +157,4,0,144.7802,134.6094,532 +158,4,0,144.7566,134.4590,532 +159,4,0,145.0480,134.4590,532 +160,4,0,144.8501,134.4488,532 +161,4,0,144.5402,134.2895,532 +162,4,0,145.5447,134.9477,532 +163,4,0,144.0132,133.7225,532 +164,4,0,143.7680,133.8783,532 +165,4,0,143.7502,133.4824,532 +166,4,0,143.1000,132.9906,532 +167,4,0,142.8020,132.5823,532 +168,4,0,143.1676,132.8594,532 +169,4,0,141.8655,132.8057,532 +170,4,0,143.1403,132.5288,532 +171,4,0,143.4816,133.8238,532 +172,4,0,143.5877,133.3243,532 +173,4,0,143.5275,133.2044,532 +174,4,0,143.8130,133.5602,532 +175,4,0,143.7783,133.6304,532 +176,4,0,143.9058,133.6035,532 +177,4,0,143.2602,132.9208,532 +178,4,0,144.1188,133.9669,532 +179,4,0,163.7660,153.6703,532 +180,4,0,184.1887,173.8649,532 +181,4,0,203.9702,193.7592,532 +182,4,0,223.8860,213.4998,532 +183,4,0,243.8410,233.3340,532 +184,4,0,263.9588,253.4910,532 +185,4,0,283.6398,263.9000,532 +186,4,0,284.4499,263.8475,532 +187,4,0,283.7357,263.9636,532 +188,4,0,283.5562,263.4502,532 +189,4,0,283.7904,263.5004,532 +190,4,0,284.7240,264.2753,532 +191,4,0,283.7946,263.3081,532 +192,4,0,282.9571,263.0885,532 +193,4,0,283.0925,262.7365,532 +194,4,0,283.5784,263.7183,532 +195,4,0,283.4433,263.1522,532 +196,4,0,283.4523,263.2620,532 +197,4,0,282.1291,262.4153,532 +198,4,0,282.1899,261.9456,532 +199,4,0,283.2513,262.8936,532 +200,4,0,282.9923,263.0181,532 +201,4,0,283.3171,263.0673,532 +202,4,0,283.7326,263.4771,532 +203,4,0,283.7138,263.4618,532 +204,4,0,283.6201,263.3989,532 +205,4,0,283.6111,263.3056,532 +206,4,0,283.7511,263.4832,532 +207,4,0,284.1673,263.7756,532 +208,4,0,284.0897,263.7950,532 +209,4,0,283.8006,263.5337,532 +210,4,0,284.1725,263.7899,532 +211,4,0,283.9793,263.7290,532 +212,4,0,284.1023,263.9456,532 +213,4,0,284.0165,263.7251,532 +214,4,0,283.9170,263.7355,532 +215,4,0,284.3075,264.0761,532 +216,4,0,284.6120,264.2228,532 +217,4,0,284.3485,264.3035,532 +218,4,0,285.0332,264.7228,532 +219,4,0,285.3770,266.0107,532 +220,4,0,285.5378,265.0507,532 +221,4,0,285.1612,265.1773,532 +222,4,0,284.9417,264.5915,532 +223,4,0,285.2742,264.7525,532 +224,4,0,286.2753,265.0570,532 +225,4,0,284.4033,263.7767,454124 +226,4,0,287.2387,267.0897,6071 +227,4,0,284.0308,263.6170,540 +228,4,0,284.4550,265.5010,532 +229,4,0,284.7152,264.3343,532 +230,4,0,284.1458,263.6488,532 +231,4,0,282.0978,263.7028,532 +232,4,0,283.9763,263.2833,532 +233,4,0,280.2090,263.9630,532 +234,4,0,283.0529,262.7538,532 +235,4,0,283.8064,263.5907,532 +236,4,0,283.2680,262.7812,532 +237,4,0,281.2887,263.9188,532 +238,4,0,284.2192,264.1225,532 +239,4,0,284.5186,264.2328,532 +240,4,0,284.9550,264.6951,532 +241,4,0,284.9436,264.4348,532 +242,4,0,284.8899,264.6155,532 +243,4,0,284.9611,264.4049,532 +244,4,0,284.3828,264.1763,532 +245,4,0,284.7793,264.3509,532 +246,4,0,284.2580,263.6615,532 +247,4,0,284.4183,264.5268,532 +248,4,0,284.7834,264.5370,532 +249,4,0,285.3732,265.0974,532 +250,4,0,285.1012,264.6924,532 +251,4,0,285.4398,265.0448,532 +252,4,0,285.7156,265.3570,532 +253,4,0,285.4803,266.6583,532 +254,4,0,285.5296,264.9877,532 +255,4,0,288.4085,268.4234,532 +256,4,0,284.6922,264.5310,532 +257,4,0,284.7375,264.2886,532 +258,4,0,284.8967,264.3645,532 +259,4,0,284.2415,263.7238,532 +260,4,0,284.4920,263.9987,532 +261,4,0,284.7738,264.1254,532 +262,4,0,281.2185,264.1517,532 +263,4,0,285.3408,264.9826,532 +264,4,0,285.6247,265.2025,532 +265,4,0,285.3887,266.5170,532 +266,4,0,285.3852,265.0525,532 +267,4,0,284.7952,264.4732,532 +268,4,0,284.6008,264.3698,532 +269,4,0,284.7548,264.4725,532 +270,4,0,284.7229,264.3332,532 +271,4,0,283.6391,263.3913,532 +272,4,0,283.6670,263.4397,532 +273,4,0,283.5164,263.2372,532 +274,4,0,283.8495,263.4460,532 +275,4,0,283.8091,263.5140,532 +276,4,0,283.9283,263.5975,532 +277,4,0,284.0340,263.6984,532 +278,4,0,284.1952,263.9102,532 +279,4,0,284.4305,264.0886,532 +280,4,0,284.6382,264.2712,532 +281,4,0,285.0516,264.9970,532 +282,4,0,285.1191,264.6401,532 +283,4,0,285.1340,265.1985,532 +284,4,0,291.0939,270.2738,532 +285,4,0,285.8745,265.4848,532 +286,4,0,285.6103,265.0629,532 +287,4,0,284.8068,264.3720,532 +288,4,0,283.3640,263.8629,532 +289,4,0,284.0469,263.7038,532 +290,4,0,286.3391,266.3171,532 +291,4,0,277.2791,262.9784,532 +292,4,0,281.6800,262.7360,532 +293,4,0,282.5180,263.4289,532 +294,4,0,284.1173,263.9187,532 +295,4,0,284.4275,263.9610,532 +296,4,0,284.0620,263.5324,532 +297,4,0,282.1288,264.0600,532 +298,4,0,307.9410,287.1792,532 +299,4,0,328.4895,308.0582,532 diff --git a/benchmarks/runs/2026-05-15_1142_sck_4096x2304_5s/sck_4096x2304_60.txt b/benchmarks/runs/2026-05-15_1142_sck_4096x2304_5s/sck_4096x2304_60.txt new file mode 100644 index 0000000..f0de94e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1142_sck_4096x2304_5s/sck_4096x2304_60.txt @@ -0,0 +1,24 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +error: screen capture timed out + +ibridge-primary --synthetic --source synthetic-bgra --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --screen-capture --source screen-capture --resolution 3840x2160 --fps 60 --duration 5 --codec hevc --csv diagnostics.csv +ibridge-primary --list-encoders + +Sources: + --source synthetic-bgra + --source synthetic-nv12 + --source synthetic-static-skip --static-change-every 60 + --source synthetic-nv12-tiled --tile-columns 2 --tile-rows 2 [--tile-reuse-buffers] + --source screen-capture --capture-display-index 0 --capture-queue-depth 8 + --warmup-frames 20 + +Reference-informed VideoToolbox options: + --disable-low-latency-rate-control + --allow-temporal-compression | --disable-temporal-compression + --allow-frame-reordering | --disable-frame-reordering + --allow-open-gop | --disable-open-gop + --prioritize-speed | --no-prioritize-speed + --max-frame-delay-count 0 | --no-max-frame-delay-count + --data-rate-limit-mbps 120 [--data-rate-window 1.0] + --payload-format length-prefixed|annex-b diff --git a/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.csv b/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.csv new file mode 100644 index 0000000..d05587d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.csv @@ -0,0 +1,162 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,43.1986,0.0325,0.0000,0,0,0.0000,0,0.0000,0,1,0,49112,0 +1,0.0000,22.8187,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2972,0 +2,0.0000,17.2225,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,22891,0 +3,0.0000,17.5934,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,23015,0 +4,0.0000,20.7919,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,23238,0 +5,0.0000,17.7060,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,7189,0 +6,0.0000,17.8346,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2104,0 +7,0.0000,17.7951,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +8,0.0000,18.3423,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,976,0 +9,0.0000,17.8393,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1183,0 +10,0.0000,18.0445,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,915,0 +11,0.0000,18.2318,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,886,0 +12,0.0000,17.9444,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +13,0.0000,17.2241,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +14,0.0000,17.3867,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +15,0.0000,17.4422,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +16,0.0000,18.9578,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +17,0.0000,17.2937,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1234,0 +18,0.0000,17.5937,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +19,0.0000,20.5749,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1088,0 +20,0.0000,16.8793,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1202,0 +21,0.0000,17.2869,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1171,0 +22,0.0000,17.3689,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1086,0 +23,0.0000,17.9545,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1140,0 +24,0.0000,17.3334,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +25,0.0000,17.2528,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1028,0 +26,0.0000,16.7213,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1126,0 +27,0.0000,16.7090,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1209,0 +28,0.0000,16.6634,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1053,0 +29,0.0000,16.6828,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +30,0.0000,16.9772,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +31,0.0000,16.9405,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +32,0.0000,16.9963,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +33,0.0000,16.7438,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +34,0.0000,17.1249,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +35,0.0000,16.7653,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +36,0.0000,16.8370,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +37,0.0000,16.5893,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +38,0.0000,17.0369,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +39,0.0000,17.5317,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +40,0.0000,18.0001,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +41,0.0000,17.6614,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +42,0.0000,17.6547,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +43,0.0000,16.8917,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1056,0 +44,0.0000,17.1672,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +45,0.0000,17.9104,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4409,0 +46,0.0000,17.5645,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +47,0.0000,17.6553,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +48,0.0000,17.0996,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +49,0.0000,18.5753,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +50,0.0000,16.9595,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +51,0.0000,17.4874,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +52,0.0000,17.9430,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +53,0.0000,18.1952,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +54,0.0000,18.3295,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +55,0.0000,17.7825,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,970,0 +56,0.0000,17.1047,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +57,0.0000,17.5648,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +58,0.0000,17.3735,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +59,0.0000,18.7539,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +60,0.0000,17.6235,0.0553,0.0000,0,0,0.0000,0,0.0000,0,1,0,91233,0 +61,0.0000,17.4545,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +62,0.0000,17.3730,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,852,0 +63,0.0000,17.3339,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,941,0 +64,0.0000,17.0825,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,886,0 +65,0.0000,16.8202,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1014,0 +66,0.0000,18.4473,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +67,0.0000,17.2498,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1078,0 +68,0.0000,18.1368,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1095,0 +69,0.0000,16.9619,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1137,0 +70,0.0000,17.2036,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,954,0 +71,0.0000,19.2011,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +72,0.0000,18.6393,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,999,0 +73,0.0000,18.4197,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +74,0.0000,18.1129,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +75,0.0000,17.6133,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +76,0.0000,18.0994,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +77,0.0000,18.2000,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +78,0.0000,17.6358,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +79,0.0000,18.2350,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +80,0.0000,17.1146,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,5370,0 +81,0.0000,17.6639,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1053,0 +82,0.0000,17.9978,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +83,0.0000,17.3913,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +84,0.0000,17.6709,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +85,0.0000,19.9570,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +86,0.0000,17.5332,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1166,0 +87,0.0000,19.7353,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +88,0.0000,18.0900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1039,0 +89,0.0000,18.3197,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,3161,0 +90,0.0000,17.8499,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1122,0 +91,0.0000,18.2032,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1046,0 +92,0.0000,17.4864,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +93,0.0000,18.5834,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +94,0.0000,17.8842,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +95,0.0000,19.5946,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +96,0.0000,18.0520,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +97,0.0000,19.1526,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +98,0.0000,23.4498,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +99,0.0000,17.9982,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +100,0.0000,20.2891,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +101,0.0000,18.5238,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2546,0 +102,0.0000,17.6686,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,939,0 +103,0.0000,18.5597,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +104,0.0000,18.2412,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +105,0.0000,17.7629,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +106,0.0000,19.7370,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +107,0.0000,18.7358,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +108,0.0000,18.7635,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,976,0 +109,0.0000,18.9797,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +110,0.0000,21.0564,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +111,0.0000,18.5634,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,954,0 +112,0.0000,18.1090,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +113,0.0000,19.0407,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +114,0.0000,18.1252,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,0.0000,19.4259,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1055,0 +116,0.0000,19.0578,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +117,0.0000,18.6283,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1015,0 +118,0.0000,18.9581,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1160,0 +119,0.0000,20.3089,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,1220,0 +120,0.0000,18.4468,0.0418,0.0000,0,0,0.0000,0,0.0000,0,1,0,92371,0 +121,0.0000,19.4767,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,955,0 +122,0.0000,19.7545,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1001,0 +123,0.0000,19.9412,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +124,0.0000,19.9536,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +125,0.0000,22.0307,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +126,0.0000,18.5250,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +127,0.0000,21.8161,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +128,0.0000,18.5353,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +129,0.0000,18.2996,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +130,0.0000,18.1768,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +131,0.0000,17.8996,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +132,0.0000,18.1176,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +133,0.0000,18.3359,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +134,0.0000,18.9480,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +135,0.0000,19.7602,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +136,0.0000,18.7366,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +137,0.0000,19.9660,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +138,0.0000,18.4104,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +139,0.0000,18.8166,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +140,0.0000,18.4198,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +141,0.0000,18.8050,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +142,0.0000,19.2232,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +143,0.0000,22.7179,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +144,0.0000,17.0599,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +145,0.0000,19.5686,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +146,0.0000,20.0683,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +147,0.0000,19.0398,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +148,0.0000,18.3243,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +149,0.0000,18.6908,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,860,0 +150,0.0000,18.3350,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +151,0.0000,20.2822,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +152,0.0000,19.0682,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +153,0.0000,20.3093,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +154,0.0000,16.9776,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +155,0.0000,18.7428,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +156,0.0000,22.2804,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +157,0.0000,17.7611,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +158,0.0000,18.3648,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,0.0000,18.8802,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +160,0.0000,19.8972,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 diff --git a/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.txt b/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.txt new file mode 100644 index 0000000..3870d1b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=161 +frames_skipped=139 +frames_encoded=161 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=18.489 +p95_encode_latency_ms=20.792 +max_encode_latency_ms=43.199 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=466881 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.csv diff --git a/benchmarks/runs/2026-05-15_1144_encode_followup/summary.md b/benchmarks/runs/2026-05-15_1144_encode_followup/summary.md new file mode 100644 index 0000000..4c47bf2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_encode_followup/summary.md @@ -0,0 +1,42 @@ +# Encode Follow-up: NV12 and Tiled 5K60 + +## Purpose + +Follow up the source strategy matrix by separating three questions: + +- Is single-session NV12 3840x2160 / 4096x2304 sustained enough for 60Hz encode? +- Does 2x2 tiled 5K60 still pass when measured inside one synchronized process? +- Does ScreenCaptureKit deliver enough frames and encode headroom at 3840x2160 / 4096x2304? + +## Results + +| Case | Duration | Frames | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---:|---:|---| +| synthetic NV12 3840x2160 @ 60 solo | 5s | 300/300 | 11.297 | 11.665 | Passes encode budget. | +| synthetic NV12 4096x2304 @ 60 solo | 5s | 300/300 | 12.629 | 12.957 | Passes encode budget. | +| ScreenCaptureKit 3840x2160 @ 60 | 5s | 250/300 | 16.705 | 19.357 | Encode close, capture did not emit 60fps on static screen. | +| ScreenCaptureKit 4096x2304 @ 60 | 5s | 161/300 | 18.489 | 20.792 | Too thin for reliable 60Hz capture path in this static-screen probe. | +| in-process 2x2 HEVC tiled 5K60, fresh NV12 tiles | 3s | 180/180 logical | 19.135 | 19.677 | Tile encode is fast, sequential tile generation pushes group latency over budget. | +| in-process 2x2 HEVC tiled 5K60, reused tile buffers | 3s | 180/180 logical | 14.931 | 38.202 | Steady post-warmup avg 11.993, p95 14.726; short-run lower bound passes. | +| in-process 2x2 HEVC tiled 5K60, reused buffers | 5s | 300/300 logical | 57.748 | 136.894 | Fails sustained run after about 3 seconds due to accumulating VT latency. | +| in-process 2x2 H.264 tiled 5K60, reused buffers | 5s | 300/300 logical | 197.613 | 285.391 | H.264 tiled path is not viable. | + +## Interpretation + +- `3840x2160 @ 60` and `4096x2304 @ 60` are the best single-session encode candidates. +- `4096x2304 @ 60` is better than the earlier BGRA result once NV12 input is used. +- ScreenCaptureKit on a static desktop naturally emits fewer frames than the target fps, so it must be evaluated as a changed-frame source rather than a forced full-frame clock. +- Tiled 5K60 is not ready as Plan B. It has a promising short-run lower bound, but the sustained 5-second run shows VideoToolbox latency accumulation with four simultaneous HEVC sessions. +- If 5K60 remains a goal, the next tiled spike needs backpressure/drop policy, staggered keyframes, or lower tile count/quality before receiver work. + +## Artifacts + +- `benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/tiled_2x2_5k60.txt` +- `benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/tiled_2x2_reuse_5k60.txt` +- `benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/tiled_2x2_reuse_steady_5k60.txt` +- `benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/tiled_2x2_long_gop_5k60.txt` +- `benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/tiled_2x2_h264_5k60.txt` +- `benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/sck_4096x2304_60.txt` +- `benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.txt` +- `benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.txt` +- `benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.txt` diff --git a/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.csv b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.csv new file mode 100644 index 0000000..5c67991 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,10.5333,50.3135,0.0509,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.6704,11.7360,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.7911,13.9313,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.2506,17.5528,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.4421,20.9440,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,7.3407,23.1066,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,7.3347,24.0355,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.2266,16.7589,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.6508,11.6963,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,6.7275,11.2993,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,6.8005,11.3447,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.3224,11.3564,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,6.9319,11.4120,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,6.9108,11.9568,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,6.5930,11.5329,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.8132,11.3820,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,6.6603,11.3221,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,6.9610,11.3632,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,6.9822,11.3580,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.3858,11.2741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.0143,11.2683,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.0848,11.2575,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,6.8369,11.3097,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,6.9727,11.3191,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,6.7828,11.2843,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,6.8889,11.3467,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,6.9112,11.2540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,6.8502,11.3758,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,6.9040,11.2950,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.0031,11.7760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,6.9594,11.2711,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,6.8249,11.2857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,6.8015,11.4943,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,6.7864,11.3005,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,6.9910,11.6585,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,6.9555,11.3450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.0607,11.3715,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,6.9946,11.2502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.1712,11.2849,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.1980,11.2867,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,6.9438,11.3113,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,6.8352,11.2080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,6.9417,11.2845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,6.9928,11.3812,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,6.7565,11.2369,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,6.8632,11.8133,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.1400,11.2230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,6.8673,11.3294,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,6.8869,11.2710,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,6.8271,11.1898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,6.7454,11.2523,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,6.8490,11.2347,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,6.8366,11.2261,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,6.7841,11.3240,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,6.7018,11.3468,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,6.6049,11.3250,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,6.4365,11.2573,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,6.6613,11.2529,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,6.5276,11.2380,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,6.6650,11.2612,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,6.7212,11.0813,0.0764,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,6.9499,11.7642,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,6.9211,11.3883,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,6.7833,11.6685,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,6.7973,11.5274,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,6.9773,11.3825,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,6.8174,11.4986,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,6.5960,11.4482,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,6.5512,11.4216,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,6.7425,11.3925,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,6.7964,11.2343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.0276,11.2030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,6.9920,11.2512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,6.7897,11.2864,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,6.7539,11.2457,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,6.8135,11.2785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,6.9476,11.3395,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,6.8593,11.7841,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,6.9122,11.3343,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,6.7215,11.2891,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,6.7990,11.2934,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.2008,11.2707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.0634,11.2900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,6.9093,11.2660,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,6.9279,11.2600,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,6.9434,11.2823,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,6.9147,11.3008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,6.7488,11.2777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,6.8041,11.3182,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,6.9731,11.2771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,6.8371,11.3341,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,6.9713,11.2635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,6.8527,11.2754,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,6.8911,11.8685,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,6.9161,11.3200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.0464,11.3225,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,6.7959,11.3419,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,6.8600,11.2985,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,6.8747,11.2411,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,6.7138,11.3346,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.8172,11.2932,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,6.5824,11.2715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,6.7246,11.3454,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,6.7093,11.3083,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,6.6210,11.4707,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,6.6471,11.2892,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,6.6473,11.2505,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.0340,11.3270,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,6.9276,11.4377,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,6.8635,11.8736,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,6.4993,11.2637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,6.6705,11.2390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,6.5583,11.2540,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,6.7601,11.3032,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,6.5669,11.2321,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,6.9700,11.2375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,6.8773,11.2450,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,6.8919,11.2662,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,6.9308,11.2959,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,6.8343,11.2769,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,6.9182,11.1153,0.0366,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.2125,11.2203,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,6.8500,11.2619,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.0994,11.6499,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.0635,11.3933,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,6.9720,11.8240,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.0886,11.5132,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.0917,11.3068,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.0485,11.4056,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.0716,11.3398,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.2532,11.3625,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.5070,11.3116,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.2521,11.3123,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,6.8592,11.2555,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,6.7909,11.2138,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,6.8038,11.2854,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,6.8080,11.3025,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,6.7550,11.3286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,6.7057,11.2533,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,6.8718,11.3279,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,6.8619,11.2443,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,6.8321,11.7897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,6.9002,11.2531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,6.8887,11.3175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,6.9540,11.2722,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,6.9074,11.2581,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,6.9440,11.2575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,6.8233,11.2684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,6.7426,11.2097,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,6.9936,11.3338,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,6.9310,11.2779,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,6.8592,11.2600,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.0011,11.2395,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,6.8950,11.2348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,6.9099,11.2278,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,6.7902,11.3517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,6.8120,11.3209,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,6.8467,11.8577,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,6.7925,11.3917,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.0147,11.4316,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.0516,11.3706,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,6.8623,11.2460,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,6.7664,11.2477,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,6.8209,11.2855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,6.8980,11.3015,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,6.8738,11.2818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,6.8293,11.2267,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,6.8111,11.2384,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,6.8254,11.2530,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,6.8809,11.2381,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,6.8474,11.2221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,6.9205,11.2156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,6.8407,11.2425,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.0785,11.9789,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,6.5633,11.2850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,6.6402,11.2722,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,6.7239,11.3256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,6.7873,11.3261,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,6.9664,11.2739,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.0914,11.3195,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,6.9969,11.1631,0.0492,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.1325,11.2941,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,6.9375,21.0912,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,6.9165,24.5727,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.4344,27.5054,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,6.9553,30.5693,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,6.9681,31.3632,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,6.8257,31.4729,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,6.9750,29.9445,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.0454,29.1523,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.0126,28.1564,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.3847,26.7398,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.1654,25.7862,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.1597,24.3106,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,6.8601,23.0965,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,6.8939,21.3625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,6.7962,19.6127,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,6.7757,17.4362,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,6.8977,15.3216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,6.8990,14.7785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,6.8867,14.8840,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,6.8116,15.2057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,6.8194,14.7857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,6.9595,14.8624,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.0380,15.3052,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,6.8253,15.7587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.0233,15.3133,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.0086,15.1149,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,6.9449,15.0984,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,6.8979,16.0075,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,6.6082,15.0940,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,11.1310,15.5916,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.1866,14.4712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.9404,17.4236,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,6.5497,17.8792,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,6.6388,15.6650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,6.7706,15.9520,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.0255,15.4062,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,6.8390,15.0899,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,6.9536,15.2628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.0110,15.5720,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,6.8463,16.2060,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.0352,15.0441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,6.9793,15.3663,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.4888,15.1958,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,6.9526,15.1617,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,7.3242,14.9950,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.1560,14.9727,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.1774,15.2725,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,6.9762,15.2043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.1249,15.4490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.0323,14.6562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.0378,15.0872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.0467,15.3328,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,6.9597,14.7923,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.0235,14.8604,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,6.9311,15.2032,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,6.9019,16.0398,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.0269,15.0216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.0858,14.7732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.1788,14.8038,0.0520,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,6.8221,15.2635,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,6.8566,15.2230,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,6.7138,15.0876,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,6.8739,14.8720,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,6.9295,15.2570,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,6.8894,14.7177,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,6.9523,15.2695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,6.9960,14.9117,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.2218,15.5451,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,6.8546,15.0921,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,6.8662,14.8213,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.1418,14.9174,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.0231,15.8713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,6.8817,16.2852,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.0028,15.1412,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,6.8756,15.1476,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,6.9238,14.8470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,6.9502,14.6948,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,6.9160,15.1110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,6.9317,14.9683,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,6.8332,14.9453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,6.9447,15.1705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,6.7550,14.7888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,6.9434,14.7968,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.0433,15.2995,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.0784,14.9642,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.1757,15.0387,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.0083,15.0584,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,6.8772,15.9132,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.0822,15.3217,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,6.7847,15.1239,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,6.6884,15.2650,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,6.7863,15.2758,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,6.7959,15.3482,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,6.9099,14.8582,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.0412,15.6069,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,6.8791,15.1190,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,6.9676,15.1711,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.3844,15.4432,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.3868,15.3988,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,6.7233,15.1155,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,18.8503,17.8223,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,8.5523,20.2806,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,9.4184,18.4979,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.3814,18.9247,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,6.9261,17.3245,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,6.8553,15.6480,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.5587,15.3033,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,6.7449,15.8814,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,6.8717,15.3231,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.0520,14.8534,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,6.6191,15.2510,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,6.5367,15.0382,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,6.6147,15.8380,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,6.6387,15.6425,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,6.6813,15.5294,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,6.7483,15.8353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,6.6833,15.2946,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,8.5520,12.3060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.txt b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.txt new file mode 100644 index 0000000..ab9c870 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=6.989 +avg_encode_latency_ms=13.786 +p95_encode_latency_ms=21.449 +max_encode_latency_ms=50.313 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s/nv12_3840x2160_60.csv diff --git a/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.csv b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.csv new file mode 100644 index 0000000..bd9bf8c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0379,30.9654,0.0907,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.8372,11.0508,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.5120,14.2070,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.3715,17.5360,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.3697,14.5177,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.5765,11.1275,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.8371,11.1412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.9176,11.0840,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,7.0032,11.1576,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.1781,11.1676,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.4585,11.4080,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.5330,11.4578,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.5723,11.2719,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,7.3802,11.6813,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,7.3668,11.1404,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.9035,11.0677,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.5113,11.1508,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,7.8279,11.1056,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.7592,11.1949,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,6.8332,11.2779,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,6.8798,11.1436,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,6.9533,11.1458,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.0669,11.1345,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.0202,11.0237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.0740,11.0502,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.1001,11.0634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.1896,11.0785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.2677,11.1016,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.1341,11.0857,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.3719,11.8262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.1517,11.1393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.1420,11.0741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.2813,11.2686,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.3540,11.1553,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.2275,11.1152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.1921,11.0975,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.2425,10.9991,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.3896,10.9908,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.0355,10.9955,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.3675,11.0357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,7.1912,11.0822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,7.0335,11.0382,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,7.3267,11.0185,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,7.4673,11.0198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,7.3807,10.9624,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.4290,11.4707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.2780,10.9714,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.3812,10.9550,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.2890,10.9398,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.3411,10.9452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.3145,10.9809,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.3339,11.0819,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.3941,11.4423,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,10.5893,11.4551,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,8.0515,11.4973,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,6.9325,11.2097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.2807,11.1677,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.2181,11.0842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.3725,11.0487,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,7.2408,11.2124,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,7.8374,10.9505,0.0764,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,7.5282,11.6983,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.0147,11.1123,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,6.8064,11.1568,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.1268,11.1082,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,6.9821,11.0761,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.2924,11.3723,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,7.1535,11.3660,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.3487,11.2782,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,7.3945,11.1766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.3136,11.1122,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.3484,11.1229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.5907,11.0263,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,7.6045,11.0555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.4561,11.1317,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.5548,10.9917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,7.3659,11.0754,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,7.3071,11.6133,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,7.1645,10.9955,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,7.2385,11.0368,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.2880,11.0423,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.3342,11.0351,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.4675,11.3257,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.1194,11.2460,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.4132,11.0529,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.3963,11.0638,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.3139,11.0630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.2852,11.1317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.5628,11.0440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.4091,11.0755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.5109,11.0430,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,7.3788,11.0400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,7.3905,11.0917,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,7.3955,11.5958,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.2621,11.0362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.4017,11.0627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.3848,11.0477,0.0313,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.6526,11.3426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,7.5668,11.5034,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,7.2784,11.0568,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,7.3338,11.0410,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,7.4544,11.0578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,7.6201,11.0405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.6653,11.0881,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.5465,11.0390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.4640,12.0740,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.4635,11.0548,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.5577,11.1170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.2827,11.1477,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.4487,11.7705,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.4777,11.2703,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.4123,11.0782,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.3600,11.1434,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.3651,11.1177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.4526,11.0526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.6327,11.0962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.5930,11.1081,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,7.6551,11.4785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.2595,11.1962,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.2309,11.2644,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.3905,11.0775,0.0532,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.2391,11.1765,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.3601,11.1120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.6199,11.0497,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.7233,11.1281,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.7670,11.6642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.4919,11.0723,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.5007,11.1602,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.2602,11.1417,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.3131,11.0640,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.2372,11.0151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.3648,11.0437,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.1349,11.1084,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.3098,11.1278,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.3292,11.2226,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.3549,11.2193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.1565,11.0561,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.1752,11.1007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.2498,11.1938,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,6.5734,11.1293,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,6.2553,11.1543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,6.5567,11.6266,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,6.6928,11.1081,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,6.8338,11.1089,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,6.8987,11.1830,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,6.9876,11.1445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.1578,11.1252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.1584,11.0720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.2913,11.0215,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.1128,11.2185,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.3774,11.1296,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.5008,11.0960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.4257,11.1066,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.5087,11.2265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.3726,11.1371,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.3852,11.1510,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.6671,11.3215,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.4610,11.7438,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.3726,11.1253,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.1715,11.2310,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.2873,11.2464,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.1189,11.1736,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.5821,11.1694,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.6995,11.1238,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.3045,11.2278,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.4190,11.0418,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.4895,11.0681,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.4177,10.9862,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.1830,11.0173,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.4586,11.0393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.4496,11.0023,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.3564,11.0343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.4047,11.0229,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.5928,11.7706,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.3792,11.1884,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.2050,11.0695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.4638,11.1270,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.2390,11.1385,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.2140,11.1069,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.2704,11.0975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.4967,11.2855,0.0713,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.3592,11.2474,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.1557,11.0983,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.2560,11.0720,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.5448,11.0154,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.3227,11.0258,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.2118,11.0092,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.2908,11.0084,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.2309,10.9933,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.4460,11.5434,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.3367,11.2498,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.3247,11.2406,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.2799,11.2647,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.2229,11.5046,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.4961,11.4672,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.2224,11.2368,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,8.1379,11.5950,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,7.2901,11.5098,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,6.7840,11.3485,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,6.6776,11.4163,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,6.6451,11.4173,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,7.2545,11.2507,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,7.3067,11.2462,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.5230,11.2131,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.3753,11.2384,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.4025,11.7675,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.4262,11.2201,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.3077,11.1226,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.4116,11.3617,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.4373,11.2860,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.2206,11.2353,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.3522,11.2211,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.6674,11.1574,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.6331,11.1175,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.3990,11.2510,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.2497,11.1613,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.1057,11.2300,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.2576,11.2001,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.0809,11.1547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.1364,11.0705,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.2787,11.0508,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.1213,11.4967,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.2599,11.0301,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.3540,11.0487,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.1682,10.9588,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.2895,10.9997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,7.4131,11.0138,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.3339,11.0821,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.3614,11.1160,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.3563,11.0689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.2334,11.0347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.2939,11.0053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.3329,11.0432,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.2369,11.0297,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.2196,11.0660,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.3015,11.0274,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.1916,11.0134,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.3050,11.4833,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.4866,11.3811,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.3436,11.1487,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.3356,10.8423,0.0325,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.3608,10.9989,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.6711,11.0086,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.5679,11.2791,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.2076,11.5141,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.1790,11.2265,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.1577,11.3065,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,7.4992,11.5665,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.6663,11.4566,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.3917,11.2145,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.3857,11.2239,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.5930,11.2098,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.4111,11.1755,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.4909,11.9014,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.2746,11.1008,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.1236,11.0950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,7.4445,11.0439,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.4865,11.0742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.5697,11.2568,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.4646,11.1040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.3406,11.0806,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.2356,11.0885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.2310,11.0840,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.2685,11.1238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.1061,10.9999,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.3122,10.9947,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.3065,10.9999,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.2242,10.9741,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.2630,11.0301,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.2957,11.5010,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.2658,11.1318,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.2252,11.0013,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.2473,11.0338,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.3589,11.0381,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.4291,11.0110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,7.2521,11.0146,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.5461,11.5091,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.6986,11.5894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.3630,11.4906,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.8849,14.5040,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,6.8826,11.2509,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.0460,11.2238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.4451,11.3686,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.4040,11.3857,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.3794,11.2998,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.3432,11.6853,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.3094,11.1860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.5910,11.1797,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.6156,11.1421,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.4484,11.1156,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.3588,11.1049,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.2367,11.0969,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.4501,11.0565,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,7.3038,11.3641,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.3031,11.1210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,7.2373,11.0840,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,7.1520,11.1234,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.1972,11.1190,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.5376,11.0629,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.3478,11.2105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.txt b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.txt new file mode 100644 index 0000000..5633810 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.326 +avg_encode_latency_ms=11.297 +p95_encode_latency_ms=11.665 +max_encode_latency_ms=30.965 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/nv12_3840x2160_60.csv diff --git a/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.csv b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.csv new file mode 100644 index 0000000..1923545 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,10.5362,53.2328,0.0478,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.5163,13.2431,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.2361,16.3964,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.6329,19.7175,0.0255,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,8.3276,21.5390,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.9457,23.7387,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.5349,26.9748,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.2691,30.3272,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.4988,24.2466,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6626,19.1335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.6412,13.8200,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,8.2319,12.3615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8419,12.5403,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7155,13.1107,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.6155,12.4745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.5640,12.3159,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.6008,12.4370,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8311,12.3556,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.9701,12.3502,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,8.1800,12.2829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9495,12.3609,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.9428,12.3262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.6654,12.3837,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.5745,12.3510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.5743,12.3439,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.6771,12.3923,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.7611,12.2923,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.8079,12.3855,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.7884,12.4805,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.7588,12.9957,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8400,12.4387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.6467,12.3156,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.7335,12.3601,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.6368,12.5633,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.6431,12.5850,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.9742,12.3776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.9562,12.4748,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.6995,12.3697,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9528,12.3472,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.9335,12.3626,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8891,12.4079,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.6463,12.3387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.6830,12.3747,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.6888,12.4066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.6468,12.3942,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.6902,12.9047,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.6072,12.4181,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.7481,12.4194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.6053,12.3373,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.7292,12.3100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.5038,12.3522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7048,12.3143,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.6742,12.3216,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.6942,12.3790,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.4394,12.3498,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.5206,12.3571,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.2787,12.3594,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.3289,12.3577,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.3538,12.3498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.5498,12.3976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.5564,12.0670,0.0722,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.6960,13.1170,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.1444,12.6439,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.4616,12.5540,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.6295,12.6230,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.3924,12.5400,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.4791,12.6134,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.2403,12.5987,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.3565,12.4032,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.6477,12.3877,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.6102,12.3055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8702,12.3563,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.6007,12.2965,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.5273,12.4082,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.5418,12.2861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.6688,12.3205,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.6453,12.3453,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.6811,12.9123,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.4962,12.3415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.7250,12.3390,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.6527,12.3469,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,8.0572,12.3044,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.7663,12.3525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.7993,12.3585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.6238,12.3880,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.6796,12.3356,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.5964,12.3169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.5453,12.3246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7188,12.3092,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5400,12.2920,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.6340,12.2993,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.6900,12.3360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7406,12.3107,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.6489,12.9758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.6826,12.4071,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8453,12.4789,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.6359,12.2785,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.8552,12.3490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.5939,12.3324,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.5173,12.2999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.4838,12.3136,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.4436,12.3041,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.5753,12.4206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.5400,12.1854,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.4628,12.3858,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.4890,12.2560,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.5225,12.2280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.8855,12.2392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.4853,12.5730,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.3902,12.9788,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.1972,12.3173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.3903,12.3234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.4145,12.3378,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.5320,12.3605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.4741,12.3181,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.6079,12.3591,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.6258,12.2820,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.5348,12.2783,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.6486,12.4012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.6310,12.3080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.9354,12.0810,0.0393,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8535,12.3666,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8533,12.3747,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.0139,12.5695,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.9765,12.5233,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.7333,13.0313,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8749,12.4550,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.9008,12.3948,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.9144,12.3834,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.7984,12.3695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,8.1806,12.4380,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,8.3933,12.3493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.0173,12.3301,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.7508,12.3887,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.5977,12.3205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.5590,12.3512,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.6482,12.3769,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.7005,12.4398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.5326,12.4051,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.6595,12.4322,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.6857,12.4043,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.6987,12.9288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.6835,12.3805,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.8379,12.3232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.7724,12.3573,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.6704,12.3416,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7055,12.3248,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.7568,12.3837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.5992,12.3750,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7631,12.3473,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.8175,12.4873,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7679,12.3245,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.7774,12.3130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.7680,12.3471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.6640,12.3362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.5685,12.4077,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.5624,12.3164,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.5555,12.8417,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.6574,12.5406,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.9031,12.3240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7130,12.4303,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.6443,12.4295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.5814,12.4021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.6297,12.3249,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.7082,12.4009,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.9782,12.4064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.7058,12.4025,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.5769,12.3311,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.6087,12.2995,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.6838,12.3772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7205,12.3404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.6922,12.3446,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.6526,12.3434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7733,13.1862,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.4228,12.3633,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.4583,12.3031,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.6671,12.4963,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.5963,12.3897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8199,12.3191,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8111,12.3585,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.7899,12.1283,0.0555,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.9112,12.2840,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9081,23.5169,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.8280,29.8338,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,8.2332,34.4151,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9297,38.6899,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.8246,42.3066,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.6418,42.4192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8880,43.3568,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.8190,45.7306,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,8.0231,46.3398,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.2334,46.3442,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0144,45.4295,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.0145,45.8282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.7568,45.9933,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8070,45.5393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.5285,46.2163,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.5358,46.9843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.6845,45.3164,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9458,46.7241,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.7863,46.5370,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.7191,45.3427,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7779,46.7215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8252,46.5597,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.9100,45.7570,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9122,47.6755,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.9762,45.9250,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.8084,46.3813,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7038,46.4372,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.7228,48.1935,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.4108,44.5786,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,14.3685,35.3926,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.6295,44.4185,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.4973,42.8434,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.6054,46.0109,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.3828,45.9547,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.5708,45.9323,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.6367,46.0441,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7665,46.7095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.0126,46.2473,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.7516,45.3204,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8042,47.0721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9022,47.1901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.8466,46.9338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.3192,45.3210,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.7669,46.6900,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.1312,46.4487,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.2422,46.5615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,8.2325,46.4963,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.8136,46.5631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.8303,45.6815,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.8541,46.7946,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.8096,45.5134,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.9631,45.4254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8623,46.9134,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.9082,46.9150,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8124,45.6900,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.7582,46.6072,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.7433,46.4554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.0304,47.2532,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.8733,45.6761,0.0272,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.7350,46.1689,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.6349,45.9029,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.7155,45.9517,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.7886,46.6769,0.0404,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.7758,45.7059,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.7777,46.8142,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8315,45.6641,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.9530,46.9538,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.8133,45.4595,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.6583,45.8523,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.7748,46.5101,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.1363,46.1619,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.9281,47.2031,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8741,46.8844,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9388,46.7435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.7562,45.4536,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.7256,46.8368,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.8023,46.8926,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.7100,45.5456,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.8000,45.9345,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.5788,45.7550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6935,45.4221,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.8165,46.8945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.7475,46.9068,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.9074,45.5648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.9043,45.9425,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.9405,45.7792,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.8191,45.8854,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.6524,46.7342,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.4362,46.7968,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.5463,46.7217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.5205,46.9113,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9189,46.0883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.5928,46.8332,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.8905,47.7335,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8067,46.3137,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.7073,46.7367,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.0075,46.3164,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.1779,45.7898,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,8.0673,50.1360,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.7078,52.5440,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,18.9381,34.9246,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,11.6884,37.6935,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,9.3683,44.0945,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.9862,47.5265,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8491,46.4390,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8916,47.0247,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.4130,46.4763,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.7304,45.8412,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.3654,46.4394,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.6497,47.1025,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.5623,45.8885,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.7054,47.0804,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.4581,45.8296,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.6515,46.2580,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.3905,47.3514,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.8605,43.4295,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.4050,48.5897,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.9031,51.9537,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.txt b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.txt new file mode 100644 index 0000000..42fb786 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.822 +avg_encode_latency_ms=25.859 +p95_encode_latency_ms=47.073 +max_encode_latency_ms=53.233 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s/nv12_4096x2304_60.csv diff --git a/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.csv b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.csv new file mode 100644 index 0000000..dfc049d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0746,32.3605,0.0453,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.6068,12.4377,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.3831,15.9209,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.1599,19.8333,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.3159,21.9908,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.8525,14.4674,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4844,12.4938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.8633,12.4298,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.9060,12.4856,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.9297,12.4841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.9907,12.4123,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,8.0765,12.4282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,8.0216,12.3696,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7406,12.8794,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.7375,12.2706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,8.0518,12.3164,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.8820,12.3401,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7890,12.3105,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.9094,12.2698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8049,12.3035,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,8.0241,12.6358,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,8.0559,12.5503,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.8494,12.3825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.7909,12.4507,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.7787,12.5566,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.8934,12.5137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.9507,12.3722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,8.1314,12.3515,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8780,12.3748,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8406,12.9723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,8.0328,12.3882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.0352,12.4113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9191,12.5310,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.8597,12.4435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9605,12.4010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.2511,12.4670,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.9286,12.6156,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.0271,12.3959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9770,12.3620,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.9346,12.3490,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,8.1468,12.3476,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0096,12.4176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,8.0495,12.3768,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,8.0886,12.3317,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.0590,12.4292,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.2210,12.9684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.2609,12.3346,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,8.3020,12.3631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,8.3300,12.3847,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.2961,12.3637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.9727,12.6754,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.6842,12.2886,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.0324,12.3830,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.8660,12.5553,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.1037,12.3266,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,8.1413,12.3765,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.9185,12.4390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.9125,12.3485,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8906,12.4789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,8.0460,12.4116,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,8.0739,12.2254,0.0803,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,8.2097,13.0225,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.8049,12.7205,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.4005,12.3965,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.8488,12.5507,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.8889,12.5340,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8380,12.5898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.9002,12.4635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.7620,12.4434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.8476,12.5819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.8590,12.4161,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,8.0012,12.4529,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0918,12.4008,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,8.0336,12.3736,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.7423,12.4367,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.9518,12.4868,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,8.1247,12.4411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,8.1547,12.9287,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.9058,12.4842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.8163,12.4389,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.0380,12.3631,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.9837,12.3197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.0598,12.3440,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,8.1514,12.4131,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.8358,12.4598,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.9185,12.5047,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.9387,12.4696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.9293,12.3677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.8362,12.3218,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,8.1375,12.3946,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8438,12.3027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.1479,12.4684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.8094,12.5614,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,8.2693,13.0830,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,8.5050,12.4125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.5000,12.3296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,8.5552,12.3914,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.9735,12.3958,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.9936,12.4043,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,8.1336,12.4020,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.8213,12.4820,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.9190,12.2852,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.9815,12.3028,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,8.0411,12.3846,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.9906,12.3854,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.7281,12.4576,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7371,12.4875,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.9501,12.4728,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.7526,12.3683,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.7238,12.9565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.9564,12.4697,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.0236,12.3655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.9704,12.3269,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.9436,12.3932,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.7897,12.5230,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,8.1538,12.2652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.8912,12.4784,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,8.2325,12.7707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,8.0089,12.5148,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,8.2137,12.4319,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,8.0960,12.4804,0.0740,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8696,12.6712,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.1245,12.4837,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.0491,12.4633,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.9131,12.4827,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8048,12.9064,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,8.0777,12.3219,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8596,12.3880,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7941,12.5687,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.9140,12.5188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.7598,12.4870,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8320,12.4752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.9046,12.4701,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.8246,12.3861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,8.0285,12.3888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.7617,12.4353,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.9752,12.3565,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.7797,12.3064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,8.0127,12.4033,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.4528,12.5322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.3131,14.8973,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,8.0421,12.9126,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,8.0410,12.3573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.8604,12.3675,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,8.0530,12.3822,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.8811,12.2796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.8189,12.3157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8184,12.2871,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8008,12.3392,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8350,12.4864,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,8.1174,12.5515,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7801,12.6896,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.1850,12.6258,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.7983,12.6340,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.3523,12.5875,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.3283,12.5681,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.5391,12.6321,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.7507,13.2997,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.5370,12.6370,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.6996,12.3987,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.3551,12.6591,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.7062,12.8829,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,8.3997,12.6202,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,8.5228,12.5162,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.5136,12.6931,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.3046,12.7901,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8463,12.5311,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,8.1505,12.5596,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.3205,12.5462,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.3466,12.3512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,8.3560,12.3130,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.1039,12.3106,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,8.1150,12.3146,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.8762,12.8993,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.8163,12.3166,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.9011,12.5022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8963,12.3252,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.8649,12.2991,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.7990,12.2740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.6756,12.3925,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.7106,12.1980,0.0440,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.0277,12.4777,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.7504,12.3612,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.9348,12.3606,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7855,12.3804,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9845,12.3612,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.8688,12.3032,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,8.2392,12.4094,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8145,12.3959,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,8.0476,12.8646,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.8540,12.3559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.6418,12.3598,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.2706,12.3866,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.0297,12.3052,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8677,12.3193,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8971,12.4842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.9814,12.3483,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9733,12.3415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.8808,12.2901,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,8.0018,12.3487,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.8154,12.4165,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8250,12.3310,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.8743,12.2350,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8570,12.3041,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.5974,12.4274,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9052,12.9047,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,8.0303,12.3938,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.5348,12.4215,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7904,12.6341,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.6519,12.5008,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.9528,12.6503,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,8.0997,12.7620,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,8.2181,12.7766,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.7368,12.7177,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9020,12.6077,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.0128,12.5847,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.5964,12.5134,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.9155,12.4736,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.8815,12.4619,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.8593,12.4255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.1314,12.3356,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8085,13.6412,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9873,12.4258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.9975,12.3540,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9498,12.6330,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.3601,12.5160,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.7069,12.5862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.8806,12.3818,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,8.1604,12.4450,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,8.1515,12.3960,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,8.0909,12.3572,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.2611,12.6065,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,11.0107,12.8865,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,10.5115,12.8756,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.7495,12.5517,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.0750,12.5320,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,8.2534,12.3933,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,8.1497,12.8698,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.3874,12.4373,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.3001,12.4271,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,8.0305,12.1363,0.0282,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.1023,12.3130,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9275,12.4603,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.9278,12.3949,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.9155,12.3505,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8228,12.3442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.8402,12.3066,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.7298,12.4004,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.9886,12.5356,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.8854,12.4751,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.9870,12.4472,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9713,12.4524,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.4326,12.5475,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.5372,12.9836,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.5356,12.5900,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.3134,12.9896,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,8.1418,12.9077,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.9228,12.6614,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.7945,12.4319,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.9158,12.6319,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.9307,12.6943,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.8734,12.8104,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.9829,12.9080,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,8.1468,12.4799,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,8.1052,12.5275,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.1028,12.4371,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.2089,12.3997,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,8.1591,12.3346,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.1248,12.3156,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9780,12.9929,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.1055,12.5784,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.8870,12.4332,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.9192,12.3853,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8905,12.4440,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.9975,12.4258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.8916,12.4327,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.7967,12.3552,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.8030,12.4265,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7298,12.3982,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.0086,12.3631,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.9234,12.3709,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.7652,12.4372,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.2038,12.3415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.8011,12.3052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.9922,12.3397,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.1805,12.8242,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8862,12.3002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,8.1009,12.4826,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.9881,12.3700,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.1054,12.3729,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.1860,12.3845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.9901,12.3525,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.9888,12.4633,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,8.0246,12.4502,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.9522,12.5051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.9602,12.4078,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.9903,12.4905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.7687,12.3467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8622,12.3446,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.4707,12.5181,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.txt b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.txt new file mode 100644 index 0000000..55c821c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.960 +avg_encode_latency_ms=12.629 +p95_encode_latency_ms=12.957 +max_encode_latency_ms=32.361 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/nv12_4096x2304_60.csv diff --git a/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.csv b/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.csv new file mode 100644 index 0000000..1217426 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.csv @@ -0,0 +1,251 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,38.8847,0.0383,0.0000,0,0,0.0000,0,0.0000,0,1,0,65996,0 +1,0.0000,30.9549,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2965,0 +2,0.0000,33.8216,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,16358,0 +3,0.0000,27.5616,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,28522,0 +4,0.0000,21.5579,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,29190,0 +5,0.0000,14.6046,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,17446,0 +6,0.0000,14.8395,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2853,0 +7,0.0000,14.8630,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1915,0 +8,0.0000,15.6637,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +9,0.0000,15.7134,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +10,0.0000,15.6495,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +11,0.0000,15.7221,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1079,0 +12,0.0000,15.6488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +13,0.0000,15.3056,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,938,0 +14,0.0000,17.2374,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +15,0.0000,15.4528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +16,0.0000,15.1459,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +17,0.0000,15.1835,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +18,0.0000,15.9918,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +19,0.0000,16.7438,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +20,0.0000,17.1609,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +21,0.0000,16.5706,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +22,0.0000,17.2428,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +23,0.0000,28.6649,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +24,0.0000,14.9948,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +25,0.0000,24.2427,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +26,0.0000,17.1597,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +27,0.0000,17.9320,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +28,0.0000,18.4153,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +29,0.0000,16.7096,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +30,0.0000,16.7223,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +31,0.0000,16.9243,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +32,0.0000,19.6613,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +33,0.0000,16.6746,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +34,0.0000,16.2704,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +35,0.0000,17.1939,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,914,0 +36,0.0000,17.3420,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +37,0.0000,16.8683,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +38,0.0000,17.4620,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +39,0.0000,18.4236,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1264,0 +40,0.0000,17.1600,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +41,0.0000,17.4671,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +42,0.0000,16.2982,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,970,0 +43,0.0000,15.8133,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +44,0.0000,17.5773,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +45,0.0000,19.0017,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +46,0.0000,14.7388,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +47,0.0000,15.1839,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +48,0.0000,15.3764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +49,0.0000,14.7737,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +50,0.0000,16.9719,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +51,0.0000,15.9008,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +52,0.0000,17.3780,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +53,0.0000,16.9607,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +54,0.0000,17.1461,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +55,0.0000,16.7697,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +56,0.0000,16.9291,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +57,0.0000,17.5694,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +58,0.0000,14.9040,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,17716,0 +59,0.0000,15.4742,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6324,0 +60,0.0000,15.3287,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,29972,0 +61,0.0000,15.1717,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,12031,0 +62,0.0000,15.5635,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +63,0.0000,15.4382,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1130,0 +64,0.0000,15.6687,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +65,0.0000,15.3254,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1164,0 +66,0.0000,15.6712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +67,0.0000,15.2934,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +68,0.0000,15.4559,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +69,0.0000,15.4444,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +70,0.0000,16.1263,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +71,0.0000,16.1005,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,631,0 +72,0.0000,15.6586,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +73,0.0000,15.7682,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,593,0 +74,0.0000,16.2402,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,598,0 +75,0.0000,17.0445,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +76,0.0000,15.6536,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,669,0 +77,0.0000,16.1751,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +78,0.0000,15.8495,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +79,0.0000,16.2324,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +80,0.0000,16.0874,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +81,0.0000,16.4054,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +82,0.0000,18.4725,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +83,0.0000,17.7172,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +84,0.0000,17.2223,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +85,0.0000,17.1251,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +86,0.0000,17.1204,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +87,0.0000,17.2069,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +88,0.0000,16.2064,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +89,0.0000,17.2449,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +90,0.0000,19.3182,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +91,0.0000,16.2915,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +92,0.0000,15.7452,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +93,0.0000,16.2922,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +94,0.0000,16.1868,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,656,0 +95,0.0000,15.7975,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +96,0.0000,16.0261,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +97,0.0000,14.9389,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +98,0.0000,15.4322,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +99,0.0000,15.3747,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +100,0.0000,15.9768,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +101,0.0000,16.4231,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +102,0.0000,17.8038,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +103,0.0000,16.7263,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +104,0.0000,16.3676,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +105,0.0000,17.1275,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +106,0.0000,15.7333,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,0.0000,17.3041,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +108,0.0000,18.1638,0.0525,0.0000,0,0,0.0000,0,0.0000,0,0,0,584,0 +109,0.0000,16.7428,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +110,0.0000,17.0952,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +111,0.0000,16.6256,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +112,0.0000,17.2337,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +113,0.0000,16.9622,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +114,0.0000,16.7520,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +115,0.0000,17.1934,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +116,0.0000,18.1097,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +117,0.0000,17.6495,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,585,0 +118,0.0000,17.9173,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +119,0.0000,16.6946,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +120,0.0000,19.6488,0.0185,0.0000,0,0,0.0000,0,0.0000,0,1,0,25709,0 +121,0.0000,15.7608,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +122,0.0000,15.9846,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +123,0.0000,15.6270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +124,0.0000,15.6633,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +125,0.0000,15.3728,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +126,0.0000,15.5510,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +127,0.0000,15.5244,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,671,0 +128,0.0000,16.7697,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,621,0 +129,0.0000,17.0999,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +130,0.0000,21.1886,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +131,0.0000,15.1646,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +132,0.0000,15.9501,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +133,0.0000,17.5950,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +134,0.0000,18.7360,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +135,0.0000,17.2478,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +136,0.0000,17.0929,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +137,0.0000,17.0221,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +138,0.0000,16.3862,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +139,0.0000,16.5366,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +140,0.0000,16.4678,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +141,0.0000,16.7985,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +142,0.0000,17.3450,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +143,0.0000,16.7123,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +144,0.0000,16.7755,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +145,0.0000,16.6181,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +146,0.0000,16.9146,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +147,0.0000,21.1489,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +148,0.0000,15.3249,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +149,0.0000,16.8610,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +150,0.0000,16.5952,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +151,0.0000,17.3142,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +152,0.0000,17.5159,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +153,0.0000,16.6605,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +154,0.0000,16.9551,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +155,0.0000,17.1212,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +156,0.0000,16.7665,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +157,0.0000,16.5205,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +158,0.0000,16.8514,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +159,0.0000,18.4671,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +160,0.0000,17.2275,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +161,0.0000,17.5132,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +162,0.0000,17.3550,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +163,0.0000,19.3880,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +164,0.0000,18.3543,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +165,0.0000,15.0815,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +166,0.0000,16.8027,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +167,0.0000,16.7695,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,652,0 +168,0.0000,16.8055,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,0.0000,17.1425,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +170,0.0000,16.8647,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +171,0.0000,16.7830,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +172,0.0000,17.3975,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +173,0.0000,16.6237,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +174,0.0000,16.3561,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +175,0.0000,16.7021,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +176,0.0000,16.5798,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +177,0.0000,18.0684,0.1495,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +178,0.0000,16.5627,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +179,0.0000,15.4169,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,595,0 +180,0.0000,16.8274,0.0397,0.0000,0,0,0.0000,0,0.0000,0,1,0,25658,0 +181,0.0000,16.6194,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +182,0.0000,15.3938,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,621,0 +183,0.0000,15.2346,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,653,0 +184,0.0000,15.4605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +185,0.0000,15.5318,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +186,0.0000,15.4189,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +187,0.0000,15.1868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +188,0.0000,15.3046,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +189,0.0000,15.0859,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,682,0 +190,0.0000,15.3875,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +191,0.0000,15.1977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +192,0.0000,16.0989,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +193,0.0000,15.3940,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,658,0 +194,0.0000,15.3057,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +195,0.0000,15.3121,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8906,0 +196,0.0000,15.4748,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3353,0 +197,0.0000,15.4512,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5338,0 +198,0.0000,15.7471,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1159,0 +199,0.0000,15.1301,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,680,0 +200,0.0000,15.4237,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +201,0.0000,16.2539,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,56630,0 +202,0.0000,15.0367,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,18512,0 +203,0.0000,14.5508,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,29103,0 +204,0.0000,15.6258,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +205,0.0000,15.3096,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +206,0.0000,15.0671,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,19468,0 +207,0.0000,15.1506,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3488,0 +208,0.0000,15.4082,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1156,0 +209,0.0000,15.1717,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +210,0.0000,15.5811,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +211,0.0000,15.6466,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +212,0.0000,15.6352,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +213,0.0000,15.5735,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1075,0 +214,0.0000,14.9705,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +215,0.0000,15.4185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,886,0 +216,0.0000,15.5947,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,924,0 +217,0.0000,15.2631,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,849,0 +218,0.0000,15.6634,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +219,0.0000,15.7560,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1026,0 +220,0.0000,15.5317,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +221,0.0000,14.4970,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1804,0 +222,0.0000,17.1555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1254,0 +223,0.0000,15.7332,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +224,0.0000,15.7711,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2193,0 +225,0.0000,15.6108,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +226,0.0000,14.5333,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2603,0 +227,0.0000,15.5155,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,954,0 +228,0.0000,15.2752,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,18021,0 +229,0.0000,15.2888,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8299,0 +230,0.0000,15.2145,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7449,0 +231,0.0000,15.4776,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +232,0.0000,15.1180,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1126,0 +233,0.0000,15.2012,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +234,0.0000,15.4976,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,19499,0 +235,0.0000,15.2305,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10644,0 +236,0.0000,15.5378,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1838,0 +237,0.0000,15.0988,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1262,0 +238,0.0000,15.0860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +239,0.0000,14.8008,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +240,0.0000,15.2005,0.0517,0.0000,0,0,0.0000,0,0.0000,0,1,0,137973,0 +241,0.0000,14.7116,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1314,0 +242,0.0000,15.3142,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2019,0 +243,0.0000,15.0769,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +244,0.0000,15.4082,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +245,0.0000,15.2758,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +246,0.0000,16.3005,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +247,0.0000,21.8353,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +248,0.0000,18.4548,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +249,0.0000,18.6941,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 diff --git a/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.txt b/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.txt new file mode 100644 index 0000000..676ee20 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=250 +frames_skipped=50 +frames_encoded=250 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=16.705 +p95_encode_latency_ms=19.357 +max_encode_latency_ms=38.885 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=810346 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/sck_3840x2160_60.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.csv new file mode 100644 index 0000000..7930d51 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2283,28.9161,0.0292,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.9433,25.5274,0.0136,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,3.0094,25.0704,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.9250,25.8805,0.0062,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.2283,5.7753,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.9433,5.6595,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,3.0094,10.5150,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.9250,10.4954,0.0257,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.2283,5.7815,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.9433,5.6180,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,3.0094,10.4162,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.9250,10.4363,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.2283,5.7337,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.9433,5.6325,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,3.0094,10.5801,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.9250,10.5276,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.2283,5.6570,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.9433,5.5475,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,3.0094,10.3410,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.9250,10.3193,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.2283,5.6290,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.9433,5.4713,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,3.0094,10.3123,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.9250,10.3167,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.2283,5.6064,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.9433,5.4893,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,3.0094,10.3028,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.9250,10.3072,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.2283,5.6027,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.9433,5.4490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,3.0094,10.2939,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.9250,10.2827,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.2283,5.7009,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.9433,5.5224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,3.0094,10.3696,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.9250,10.3462,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.2283,5.7559,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.9433,5.5979,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,3.0094,10.4920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.9250,10.4260,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.2283,5.7559,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.9433,5.5797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,3.0094,10.4183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.9250,10.3670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.2283,5.7717,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.9433,5.6140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,3.0094,10.3369,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.9250,10.3112,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.2283,5.8617,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.9433,5.5687,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,3.0094,10.5003,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.9250,10.4690,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.2283,5.7809,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.9433,5.5915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,3.0094,10.3228,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.9250,10.2670,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.2283,5.6576,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.9433,5.5308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,3.0094,10.3682,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.9250,10.2644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.2283,5.7107,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.9433,5.5962,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,3.0094,10.2696,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.9250,10.1820,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.2283,5.6915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.9433,5.5864,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,3.0094,10.2603,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.9250,10.1855,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.2283,5.7541,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.9433,5.6000,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,3.0094,10.2720,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.9250,10.2197,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.2283,5.7961,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.9433,5.6113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,3.0094,10.2678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.9250,10.1943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.2283,5.7044,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.9433,5.5819,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,3.0094,10.2824,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.9250,10.1706,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.2283,6.7034,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.9433,5.8450,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,3.0094,10.5225,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.9250,10.4096,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.2283,6.3361,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.9433,5.8392,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,3.0094,10.0121,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.9250,10.0578,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.2283,6.4740,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.9433,5.8386,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,3.0094,10.3718,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.9250,10.0237,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.2283,6.5865,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.9433,5.8975,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,3.0094,11.0397,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.9250,10.7417,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.2283,6.0533,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.9433,5.7001,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,3.0094,10.6053,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.9250,10.5572,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.2283,6.2882,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.9433,5.9520,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,3.0094,10.7090,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.9250,10.5245,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.2283,6.3357,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.9433,5.8265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,3.0094,10.9152,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.9250,10.8914,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.2283,6.1168,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.9433,6.0155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,3.0094,10.2236,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.9250,10.2743,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.2283,6.3135,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.9433,5.9145,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,3.0094,10.6672,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.9250,10.4608,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.2283,6.9405,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.9433,6.4029,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,3.0094,10.9255,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.9250,10.7581,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.2283,6.2970,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.9433,5.9056,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,3.0094,10.5165,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.9250,10.4243,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.2283,6.1734,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.9433,5.8345,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,3.0094,10.9223,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,2.9250,10.6226,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.2283,6.3954,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.9433,5.9585,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,3.0094,10.8195,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.9250,10.7751,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.2283,6.1339,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.9433,5.8373,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,3.0094,10.6435,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.9250,10.5372,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.2283,6.9546,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.9433,6.4522,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,3.0094,13.9579,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.9250,13.8490,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.2283,6.3637,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.9433,5.9502,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,3.0094,10.5603,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.9250,10.4619,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.2283,6.3926,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.9433,5.9485,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,3.0094,10.6580,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.9250,10.5573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.2283,6.3145,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.9433,5.9778,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,3.0094,10.9156,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.9250,10.7285,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.2283,6.4005,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.9433,5.9261,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,3.0094,10.8358,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.9250,10.6294,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.2283,6.2332,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.9433,5.8280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,3.0094,11.0989,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.9250,10.8526,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.2283,7.7335,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.9433,6.8492,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,3.0094,13.1948,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.9250,13.9629,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.2283,6.3942,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.9433,6.0609,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,3.0094,10.7432,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.9250,10.6306,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.2283,6.5240,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.9433,6.4108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,3.0094,10.9990,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,2.9250,10.9465,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.2283,6.9897,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.9433,5.8642,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,3.0094,11.0655,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.9250,13.0238,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.2283,6.0354,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.9433,5.7287,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,3.0094,10.7877,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.9250,10.3919,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.2283,6.9090,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.9433,6.1803,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,3.0094,10.6893,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.9250,10.6231,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.2283,6.8444,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.9433,6.5117,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,3.0094,10.7843,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.9250,10.7264,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.2283,6.9309,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.9433,6.0805,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,3.0094,10.5253,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.9250,10.2608,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.2283,6.5136,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.9433,5.8704,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,3.0094,9.8569,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.9250,9.6290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.2283,6.2572,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.9433,5.7534,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,3.0094,10.6937,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.9250,10.5418,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.2283,6.1685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.9433,5.8716,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,3.0094,10.8098,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.9250,10.7645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.2283,5.9627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.9433,5.7482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,3.0094,10.5240,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.9250,10.4874,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.2283,5.7631,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.9433,5.5676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,3.0094,10.3411,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.9250,10.2652,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.2283,6.7090,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.9433,5.7404,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,3.0094,10.5433,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.9250,10.2594,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.2283,6.2854,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.9433,5.8130,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,3.0094,10.1992,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.9250,9.9743,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.2283,6.4430,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.9433,5.8168,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,3.0094,12.8505,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.9250,12.4685,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.2283,6.1118,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.9433,5.7808,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,3.0094,10.5230,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.9250,10.3109,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.2283,6.3902,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.9433,5.8351,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,3.0094,10.2730,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.9250,9.9233,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.2283,7.7845,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.9433,6.9413,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,3.0094,10.0984,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.9250,9.8532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.2283,6.6709,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.9433,5.6345,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,3.0094,10.4464,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.9250,9.6938,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.2283,6.1766,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.9433,5.7322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,3.0094,11.6871,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.9250,11.9914,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.2283,6.1240,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.9433,5.7081,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,3.0094,10.3790,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.9250,10.1862,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.2283,6.1785,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.9433,5.7848,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,3.0094,10.4393,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.9250,10.2530,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.2283,6.1528,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.9433,5.8488,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,3.0094,10.3240,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.9250,10.0440,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.2283,6.2241,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.9433,5.8180,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,3.0094,10.3816,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.9250,9.9884,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.2283,6.4357,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.9433,5.8535,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,3.0094,10.2194,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.9250,9.9970,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.2283,6.1208,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.9433,5.8782,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,3.0094,10.1975,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.9250,10.0193,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.2283,6.4827,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.9433,5.7310,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,3.0094,10.6706,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.9250,10.3573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.2283,6.2562,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.9433,5.8955,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,3.0094,10.7027,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.9250,10.4837,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.2283,6.5080,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.9433,5.8862,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,3.0094,10.4460,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.9250,10.2048,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.2283,6.1915,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.9433,5.8448,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,3.0094,11.5789,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.9250,11.0606,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.2283,6.2605,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.9433,5.7996,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,3.0094,10.5301,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.9250,10.4017,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.2283,6.4191,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.9433,5.9520,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,3.0094,11.4036,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.9250,11.2243,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.2283,6.2465,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.9433,5.8941,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,3.0094,10.8046,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.9250,10.7068,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.2283,6.2955,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.9433,5.8348,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,3.0094,11.0586,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.9250,10.8790,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.2283,6.6265,0.1372,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +301,2.9433,5.8868,0.0993,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +302,3.0094,12.5690,0.0575,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +303,2.9250,12.2897,0.0697,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +304,5.2283,6.2062,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +305,2.9433,5.8596,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +306,3.0094,10.8828,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +307,2.9250,10.7403,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +308,5.2283,6.6355,0.0513,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +309,2.9433,6.4567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +310,3.0094,10.9066,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +311,2.9250,10.7585,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +312,5.2283,6.5990,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +313,2.9433,6.1460,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +314,3.0094,10.7744,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +315,2.9250,10.7156,0.0252,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +316,5.2283,6.7054,0.0472,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +317,2.9433,6.2233,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +318,3.0094,11.1018,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +319,2.9250,10.8946,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +320,5.2283,6.7488,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +321,2.9433,6.2913,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +322,3.0094,10.8506,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +323,2.9250,10.6732,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +324,5.2283,6.5730,0.0431,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +325,2.9433,6.1745,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +326,3.0094,11.2093,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +327,2.9250,11.0315,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +328,5.2283,6.4600,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +329,2.9433,6.1122,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +330,3.0094,11.0544,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +331,2.9250,12.2044,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +332,5.2283,6.3525,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +333,2.9433,5.9495,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +334,3.0094,10.7992,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +335,2.9250,10.7575,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +336,5.2283,7.6753,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +337,2.9433,7.3435,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +338,3.0094,10.6550,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +339,2.9250,10.6917,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +340,5.2283,6.4292,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +341,2.9433,5.9185,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +342,3.0094,10.7985,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +343,2.9250,10.7692,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +344,5.2283,7.4660,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +345,2.9433,6.7291,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +346,3.0094,10.7308,0.0345,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +347,2.9250,10.4749,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +348,5.2283,6.6486,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +349,2.9433,5.7174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +350,3.0094,11.0468,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +351,2.9250,8.5090,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +352,5.2283,8.0122,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +353,2.9433,6.9419,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +354,3.0094,10.4213,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +355,2.9250,10.1246,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +356,5.2283,6.3972,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +357,2.9433,8.0940,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +358,3.0094,7.8720,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +359,2.9250,7.4238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +360,5.2283,6.7004,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +361,2.9433,5.7211,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,3.0094,10.6097,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +363,2.9250,10.2350,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +364,5.2283,6.2828,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +365,2.9433,5.8770,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,3.0094,10.7992,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +367,2.9250,10.8513,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +368,5.2283,6.6534,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +369,2.9433,5.7812,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,3.0094,10.6327,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +371,2.9250,10.3628,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +372,5.2283,7.1578,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.9433,5.9726,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,3.0094,10.4015,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +375,2.9250,10.2861,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +376,5.2283,6.9044,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.9433,5.8019,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,3.0094,10.4891,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.9250,10.1742,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +380,5.2283,6.6338,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.9433,5.8777,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,3.0094,10.3200,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.9250,9.9794,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.2283,6.3320,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.9433,5.9221,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,3.0094,10.1964,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.9250,9.9058,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +388,5.2283,6.2078,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.9433,5.5961,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,3.0094,10.6320,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.9250,10.4261,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.2283,6.3825,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.9433,5.7929,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,3.0094,10.2089,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.9250,10.0229,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.2283,7.7536,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.9433,6.9139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,3.0094,9.8929,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.9250,9.8709,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.2283,7.8058,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.9433,5.7514,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,3.0094,10.8400,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.9250,10.7835,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.2283,6.5626,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.9433,5.7995,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,3.0094,10.0290,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.9250,10.0828,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.2283,6.6223,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.9433,5.8301,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,3.0094,11.4923,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.9250,11.5243,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.2283,6.4609,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.9433,5.9609,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,3.0094,8.8792,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.9250,9.9128,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.2283,6.6712,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.9433,5.9470,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,3.0094,10.4200,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.9250,9.9761,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.2283,6.5815,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.9433,5.9657,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,3.0094,10.4411,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.9250,10.0667,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.2283,6.3875,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.9433,5.7419,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,3.0094,10.0218,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.9250,9.8371,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.2283,6.2244,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.9433,5.8110,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,3.0094,11.0122,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.9250,10.7423,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.2283,6.5635,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.9433,5.7368,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,3.0094,10.5385,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.9250,10.3106,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.2283,6.5063,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.9433,5.7684,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,3.0094,10.3298,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.9250,10.1281,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.2283,6.5553,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.9433,5.7920,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,3.0094,10.1848,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.9250,9.9889,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.2283,6.1896,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.9433,5.7357,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,3.0094,9.9083,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.9250,9.8393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.2283,6.3142,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.9433,5.7719,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,3.0094,10.0823,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.9250,9.8955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.2283,6.4946,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.9433,5.7800,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,3.0094,10.4330,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.9250,10.4080,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.2283,6.2438,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.9433,5.8261,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,3.0094,10.1544,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.9250,9.9563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.2283,6.7857,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.9433,5.8614,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,3.0094,10.3285,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.9250,10.0784,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.2283,6.2687,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.9433,5.7646,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,3.0094,10.0148,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.9250,9.8724,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.2283,6.1747,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.9433,5.7595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,3.0094,11.7803,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.9250,11.4730,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.2283,6.5948,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.9433,5.8203,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,3.0094,10.0714,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.9250,9.6440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.2283,6.4612,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.9433,5.7135,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,3.0094,12.5952,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.9250,12.2664,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.2283,6.1181,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.9433,5.7653,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,3.0094,10.9976,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.9250,11.0523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.2283,6.1877,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.9433,5.8680,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,3.0094,10.6407,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.9250,10.5040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.2283,7.2410,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.9433,5.7143,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,3.0094,10.6319,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.9250,10.2643,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.2283,7.0128,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.9433,5.9447,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,3.0094,10.1882,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.9250,9.9494,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.2283,6.5860,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.9433,5.7466,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,3.0094,10.4629,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.9250,10.2892,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.2283,6.4576,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.9433,5.8428,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,3.0094,10.3340,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.9250,9.9806,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.2283,6.2376,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.9433,5.8398,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,3.0094,10.2489,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.9250,10.1898,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.2283,6.6715,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.9433,6.0919,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,3.0094,10.5136,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.9250,10.5134,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.2283,5.9446,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.9433,5.6060,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,3.0094,10.3154,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.9250,10.2098,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.2283,6.4808,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.9433,5.9496,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,3.0094,10.1759,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.9250,10.0538,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.2283,6.1877,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.9433,5.8564,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,3.0094,9.9781,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.9250,10.0173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.2283,6.2557,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.9433,5.9389,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,3.0094,10.2094,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.9250,10.1933,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.2283,6.1792,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.9433,5.8050,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,3.0094,10.2837,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.9250,10.0806,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.2283,6.1215,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.9433,5.8098,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,3.0094,10.2195,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.9250,10.0022,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.2283,6.2180,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.9433,5.8375,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,3.0094,10.0976,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.9250,9.9877,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.2283,6.1621,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.9433,5.7723,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,3.0094,10.0744,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.9250,9.9971,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.2283,6.2130,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.9433,5.7673,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,3.0094,10.1596,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.9250,9.9915,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.2283,6.2278,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.9433,5.7565,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,3.0094,10.4350,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.9250,10.0666,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.2283,6.6665,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.9433,5.8318,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,3.0094,10.8880,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.9250,10.9188,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.2283,6.3576,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.9433,5.7515,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,3.0094,10.0977,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.9250,9.9648,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.2283,6.5079,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.9433,5.7753,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,3.0094,10.2189,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.9250,9.9592,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.2283,6.2953,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.9433,5.7956,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,3.0094,10.0224,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.9250,9.8268,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.2283,6.4330,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.9433,5.7617,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,3.0094,10.2329,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.9250,9.9144,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.2283,6.3969,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.9433,5.7795,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,3.0094,10.1992,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.9250,9.9932,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.2283,6.1448,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.9433,5.7314,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,3.0094,10.2670,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.9250,9.9631,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.2283,6.6807,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.9433,5.8245,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,3.0094,10.2182,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.9250,9.9113,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.2283,6.4234,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.9433,5.8432,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,3.0094,10.0798,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.9250,10.0124,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.2283,6.3750,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.9433,5.7320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,3.0094,11.2486,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.9250,11.7018,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.2283,6.6309,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.9433,5.9174,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,3.0094,10.4541,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.9250,10.2500,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.2283,6.2538,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.9433,5.8267,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,3.0094,10.2356,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.9250,9.9668,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.2283,6.6770,0.1159,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,2.9433,5.8879,0.0638,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,3.0094,10.2860,0.0172,0.0000,0,0,0.0000,0,0.0000,0,1,0,141143,0 +603,2.9250,10.1915,0.0425,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +604,5.2283,6.2978,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,2.9433,5.8129,0.0366,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,3.0094,10.3331,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,11680,0 +607,2.9250,10.1759,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +608,5.2283,5.9512,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,2.9433,5.9150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,3.0094,10.1018,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,17270,0 +611,2.9250,10.1878,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +612,5.2283,6.0423,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,2.9433,5.7029,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,3.0094,10.0535,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,22985,0 +615,2.9250,10.0858,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +616,5.2283,6.2617,0.0358,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,2.9433,5.8674,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,3.0094,10.4552,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,27672,0 +619,2.9250,10.3516,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +620,5.2283,6.3139,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,2.9433,5.9406,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,3.0094,10.3358,0.0479,0.0000,0,0,0.0000,0,0.0000,0,0,0,29161,0 +623,2.9250,10.1190,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +624,5.2283,6.1330,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,2.9433,5.8584,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,3.0094,10.1470,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,22449,0 +627,2.9250,10.0573,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +628,5.2283,8.0427,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,2.9433,7.3618,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,3.0094,9.9862,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,14554,0 +631,2.9250,9.8784,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +632,5.2283,6.3442,0.0344,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,2.9433,5.8045,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,3.0094,10.4051,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,9321,0 +635,2.9250,10.1652,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +636,5.2283,6.1033,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,2.9433,5.8902,0.2201,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,3.0094,10.2523,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,6401,0 +639,2.9250,10.0538,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +640,5.2283,5.9917,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,2.9433,5.8276,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,3.0094,9.9625,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +643,2.9250,9.8829,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +644,5.2283,6.2589,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,2.9433,5.8199,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,3.0094,10.4000,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,4198,0 +647,2.9250,10.1992,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +648,5.2283,6.2500,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,2.9433,5.8055,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,3.0094,10.2736,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3263,0 +651,2.9250,9.9570,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +652,5.2283,6.5485,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,2.9433,5.8236,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,3.0094,10.2176,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +655,2.9250,10.0793,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +656,5.2283,6.7518,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,2.9433,5.7725,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,3.0094,10.1288,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +659,2.9250,9.8500,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +660,5.2283,6.6113,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,2.9433,5.8308,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,3.0094,10.7064,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +663,2.9250,10.6397,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +664,5.2283,6.4875,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,2.9433,5.7374,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,3.0094,10.3584,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +667,2.9250,10.2970,0.0331,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +668,5.2283,6.5434,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,2.9433,5.8705,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,3.0094,10.2129,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +671,2.9250,10.0983,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +672,5.2283,6.5727,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.9433,5.8241,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,3.0094,10.0739,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.9250,10.3360,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +676,5.2283,6.6595,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.9433,5.8229,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,3.0094,10.3811,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.9250,10.0688,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +680,5.2283,6.5048,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.9433,5.9084,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,3.0094,9.6341,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.9250,10.2876,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.2283,6.5395,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.9433,5.7831,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,3.0094,10.1408,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.9250,9.9303,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.2283,6.6095,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.9433,5.8189,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,3.0094,10.2216,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.9250,10.0766,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.2283,6.2719,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.9433,5.7458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,3.0094,10.0591,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.9250,9.9972,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.2283,6.3632,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.9433,5.8419,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,3.0094,9.9568,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.9250,9.8834,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.2283,6.4407,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.9433,5.8216,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,3.0094,10.1887,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.9250,9.9545,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.2283,7.0147,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.9433,5.8406,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,3.0094,9.9451,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.9250,9.9671,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.2283,6.3001,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.9433,5.7221,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,3.0094,10.0132,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.9250,9.9157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.2283,6.6805,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.9433,5.7983,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,3.0094,11.9294,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.9250,11.5165,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.2283,6.5020,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.9433,5.8187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,3.0094,10.4551,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.9250,10.2926,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.2283,6.4125,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.9433,5.7984,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,3.0094,10.9209,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.9250,10.6453,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.2283,6.2622,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.9433,5.7249,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,3.0094,14.5261,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.9250,14.4651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.2283,16.4067,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.9433,15.8559,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,3.0094,30.4640,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.9250,30.2660,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.2283,16.3762,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.9433,15.9204,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,3.0094,29.9778,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.9250,29.7680,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.2283,16.4793,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.9433,16.0766,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,3.0094,29.9624,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.9250,29.7694,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.2283,16.2705,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.9433,15.6244,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,3.0094,29.7785,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.9250,29.7094,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.2283,16.2780,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.9433,16.0415,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,3.0094,30.1945,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.9250,30.0238,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.2283,16.5120,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.9433,16.1548,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,3.0094,29.5210,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.9250,29.6646,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.2283,16.9117,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.9433,16.0632,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,3.0094,30.3430,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.9250,30.1134,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.2283,16.5966,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.9433,15.7830,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,3.0094,30.3905,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.9250,29.4209,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.2283,16.6507,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.9433,15.7927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,3.0094,29.8623,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.9250,29.6924,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.2283,16.5718,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.9433,15.7779,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,3.0094,30.2598,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.9250,29.9508,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.2283,16.7203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.9433,15.8885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,3.0094,29.9714,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.9250,29.7012,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.2283,16.8350,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.9433,16.1562,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,3.0094,30.5920,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.9250,30.2812,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.2283,16.5938,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.9433,15.8390,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,3.0094,30.1480,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.9250,29.7956,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.2283,16.6269,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.9433,15.7611,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,3.0094,30.4781,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.9250,30.0634,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.2283,16.6110,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.9433,15.7813,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,3.0094,30.2359,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.9250,30.1443,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.2283,17.4824,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.9433,16.5560,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,3.0094,30.1009,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.9250,29.9488,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.2283,16.6615,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.9433,15.8414,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,3.0094,30.4065,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.9250,30.1073,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.2283,16.7619,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.9433,15.8230,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,3.0094,30.4862,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.9250,30.2103,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.2283,16.8757,0.0546,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.9433,15.9805,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,3.0094,30.3331,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.9250,29.9413,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.2283,16.4847,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.9433,15.8175,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,3.0094,30.5163,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.9250,30.2932,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.2283,16.6045,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.9433,15.8548,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,3.0094,30.1050,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.9250,29.7566,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.2283,16.4099,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.9433,15.8919,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,3.0094,29.6116,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.9250,29.3426,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.2283,16.7987,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.9433,16.1074,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,3.0094,30.1607,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.9250,29.8433,0.0355,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.2283,16.4632,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.9433,15.7880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,3.0094,30.0742,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.9250,29.8897,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.2283,17.3766,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.9433,16.2404,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,3.0094,29.4030,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.9250,28.9237,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.2283,16.7690,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.9433,15.9478,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,3.0094,30.0412,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.9250,29.9437,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.2283,16.4559,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.9433,15.9094,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,3.0094,30.1426,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.9250,30.0566,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.2283,16.9305,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.9433,16.1635,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,3.0094,29.7890,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.9250,29.7815,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.2283,16.6820,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.9433,15.8413,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,3.0094,30.0804,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.9250,29.5849,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.2283,16.5556,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.9433,15.8694,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,3.0094,30.4202,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.9250,30.0060,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.2283,16.5676,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.9433,16.0104,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,3.0094,29.7518,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.9250,29.6307,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.2283,16.0666,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.9433,15.6966,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,3.0094,30.2100,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.9250,30.0275,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.2283,16.4975,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.9433,15.9648,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,3.0094,30.1865,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.9250,29.9573,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.2283,16.2435,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.9433,15.8424,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,3.0094,30.0293,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.9250,29.6516,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.2283,16.1129,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.9433,15.8040,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,3.0094,30.4643,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.9250,30.4193,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.2283,16.5296,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.9433,15.8053,0.0773,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,3.0094,30.3161,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.9250,30.0268,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.2283,16.6442,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.9433,16.2978,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,3.0094,30.0920,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.9250,30.1863,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.2283,16.6148,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.9433,15.7789,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,3.0094,30.3566,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.9250,29.2181,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.2283,16.4670,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.9433,15.8648,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,3.0094,28.9168,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.9250,29.6611,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.2283,16.5371,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.9433,16.3637,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,3.0094,28.9284,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.9250,30.0902,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.2283,16.4506,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.9433,15.8411,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,3.0094,29.1487,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.9250,29.2587,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.2283,16.6676,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.9433,15.9800,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,3.0094,30.0658,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.9250,29.8434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.2283,16.5213,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.9433,15.8462,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,3.0094,30.1575,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.9250,29.8730,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.2283,16.5524,0.0614,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +901,2.9433,16.0040,0.0695,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +902,3.0094,29.6943,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +903,2.9250,29.6902,0.2108,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +904,5.2283,16.8860,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +905,2.9433,16.0668,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +906,3.0094,31.4396,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +907,2.9250,31.4193,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +908,5.2283,16.7168,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +909,2.9433,15.9248,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +910,3.0094,30.6159,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +911,2.9250,30.3509,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +912,5.2283,16.4677,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +913,2.9433,15.8484,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +914,3.0094,30.2628,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,17114,0 +915,2.9250,30.0195,0.0328,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +916,5.2283,17.1754,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +917,2.9433,16.1467,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +918,3.0094,30.3156,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,32567,0 +919,2.9250,30.0519,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +920,5.2283,16.9418,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +921,2.9433,16.0102,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +922,3.0094,30.0425,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,12243,0 +923,2.9250,29.7349,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +924,5.2283,16.7640,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +925,2.9433,16.3262,0.0625,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +926,3.0094,30.3196,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,17820,0 +927,2.9250,30.0835,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +928,5.2283,16.5569,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +929,2.9433,15.8712,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +930,3.0094,30.6049,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,10237,0 +931,2.9250,30.4818,0.0729,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +932,5.2283,16.5647,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +933,2.9433,15.8786,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +934,3.0094,29.9877,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,9857,0 +935,2.9250,29.9020,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +936,5.2283,16.8974,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +937,2.9433,16.0252,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +938,3.0094,29.5968,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +939,2.9250,29.7862,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +940,5.2283,16.5619,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +941,2.9433,15.9160,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +942,3.0094,29.5789,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,6084,0 +943,2.9250,29.6602,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +944,5.2283,16.6865,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +945,2.9433,15.8697,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +946,3.0094,30.1416,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,5296,0 +947,2.9250,29.9827,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +948,5.2283,16.5848,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +949,2.9433,15.9319,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,3.0094,29.8236,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +951,2.9250,29.7970,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +952,5.2283,15.9313,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +953,2.9433,15.5998,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +954,3.0094,30.3042,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3919,0 +955,2.9250,30.1055,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +956,5.2283,16.5407,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +957,2.9433,15.7817,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +958,3.0094,30.0919,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3272,0 +959,2.9250,29.8735,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +960,5.2283,16.5980,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +961,2.9433,15.9200,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,3.0094,30.1358,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2280,0 +963,2.9250,29.7958,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +964,5.2283,16.7252,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +965,2.9433,15.9980,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,3.0094,30.5318,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +967,2.9250,29.9848,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +968,5.2283,16.5016,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +969,2.9433,15.8959,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,3.0094,29.8833,0.0780,0.0000,0,0,0.0000,0,0.0000,0,0,0,612,0 +971,2.9250,29.6702,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +972,5.2283,17.0775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.9433,16.0081,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,3.0094,29.7800,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +975,2.9250,29.7660,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +976,5.2283,16.4927,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.9433,16.1378,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,3.0094,31.1264,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +979,2.9250,31.0185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +980,5.2283,16.7838,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.9433,15.9126,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,3.0094,30.3416,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.9250,30.0972,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.2283,16.4601,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.9433,15.9063,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,3.0094,29.9173,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.9250,29.9498,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +988,5.2283,18.7670,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.9433,18.1187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,3.0094,30.2008,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.9250,29.9691,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.2283,16.7627,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.9433,15.8274,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,3.0094,30.3484,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.9250,29.8733,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.2283,16.8850,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.9433,16.3152,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,3.0094,30.0633,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.9250,29.6096,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.2283,16.7883,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.9433,15.8834,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,3.0094,30.3442,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.9250,30.1395,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.2283,16.7427,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.9433,16.0790,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,3.0094,30.2401,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.9250,30.2594,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.2283,16.5343,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.9433,16.1612,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,3.0094,27.2759,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.9250,31.0840,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.2283,17.1349,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.9433,15.9220,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,3.0094,30.1900,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.9250,29.9231,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.2283,16.7105,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.9433,15.9087,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,3.0094,30.0405,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.9250,29.7696,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.2283,16.5024,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.9433,15.8517,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,3.0094,30.0147,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.9250,29.7167,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.2283,16.4973,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.9433,15.8353,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,3.0094,29.8405,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.9250,29.6225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.2283,16.5407,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.9433,15.9054,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,3.0094,31.1280,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.9250,31.0923,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.2283,16.8475,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.9433,15.9926,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,3.0094,30.1388,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.9250,29.6913,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.2283,16.5095,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.9433,15.8083,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,3.0094,29.9095,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.9250,29.7119,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.2283,16.6293,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.9433,16.0162,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,3.0094,30.7107,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.9250,31.0135,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.2283,17.1149,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.9433,16.1950,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,3.0094,31.1861,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.9250,31.1484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.2283,16.6058,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.9433,15.7131,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,3.0094,30.2700,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.9250,30.2050,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.2283,16.8647,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.9433,16.4087,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,3.0094,30.3745,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.9250,30.3604,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.2283,16.6137,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.9433,16.0731,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,3.0094,29.5927,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.9250,29.5893,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.2283,16.6003,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.9433,15.8802,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,3.0094,30.0727,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.9250,29.5794,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.2283,16.5270,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.9433,15.9032,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,3.0094,30.2717,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.9250,29.9393,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.2283,16.6438,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.9433,15.8818,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,3.0094,30.1577,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.9250,29.7981,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.2283,16.5007,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.9433,15.9217,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,3.0094,29.8575,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.9250,29.7430,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.2283,16.6410,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.9433,15.8520,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,3.0094,36.1437,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.9250,35.7355,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.2283,16.9262,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.9433,15.7631,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,3.0094,30.2974,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.9250,30.2778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.2283,16.8093,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.9433,15.9817,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,3.0094,30.2502,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.9250,30.0452,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.2283,16.5164,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.9433,15.8305,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,3.0094,29.8692,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.9250,29.5706,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.2283,16.3209,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.9433,15.7863,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,3.0094,30.1717,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.9250,29.8909,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.2283,16.3313,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.9433,15.7870,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,3.0094,30.4405,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.9250,30.2248,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.2283,16.1040,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.9433,15.6340,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,3.0094,30.0090,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.9250,29.8790,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.2283,16.7960,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.9433,16.3753,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,3.0094,30.5808,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.9250,30.5138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.2283,16.2929,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.9433,17.6463,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,3.0094,29.1018,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.9250,30.3168,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.2283,16.0405,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.9433,15.6185,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,3.0094,30.0739,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.9250,29.9211,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.2283,16.2666,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.9433,16.0506,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,3.0094,29.3215,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.9250,29.3774,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.2283,16.9279,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.9433,15.9315,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,3.0094,30.6021,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.9250,30.3280,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.2283,16.5547,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.9433,15.7216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,3.0094,30.6099,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.9250,30.3265,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.2283,16.6045,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.9433,15.7353,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,3.0094,30.2451,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.9250,30.2205,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.2283,16.7165,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.9433,16.0328,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,3.0094,29.8225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.9250,29.5817,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.2283,16.9017,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.9433,16.1593,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,3.0094,28.3602,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.9250,30.0916,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.2283,17.1115,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.9433,16.1456,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,3.0094,30.1782,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.9250,29.8775,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.2283,16.3975,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.9433,16.8991,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,3.0094,28.8584,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.9250,29.9291,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.2283,16.6449,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.9433,15.8675,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,3.0094,30.2695,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.9250,30.0665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.2283,16.2748,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.9433,15.7449,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,3.0094,31.2347,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.9250,31.0355,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.2283,16.7275,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.9433,15.9010,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,3.0094,32.1479,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.9250,32.1220,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.2283,16.6761,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.9433,16.4037,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,3.0094,30.5212,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.9250,30.4200,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.2283,17.0581,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.9433,15.9671,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,3.0094,30.5969,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.9250,30.5561,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.2283,16.7707,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.9433,15.9744,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,3.0094,30.2316,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.9250,29.8641,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.2283,16.5963,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.9433,16.3080,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,3.0094,29.3141,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.9250,29.8242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.2283,17.0641,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.9433,16.4577,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,3.0094,30.0644,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.9250,29.7833,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.2283,15.9723,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.9433,15.5683,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,3.0094,29.9366,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.9250,29.8685,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.2283,15.7723,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.9433,15.4963,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,3.0094,30.0127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.9250,30.0300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.2283,16.0773,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.9433,15.8082,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,3.0094,30.4077,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.9250,30.4034,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.2283,15.6955,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.9433,15.4604,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,3.0094,30.0352,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.9250,30.0358,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.2283,15.6597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.9433,15.5356,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,3.0094,30.2202,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.9250,30.3000,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.txt new file mode 100644 index 0000000..1c2a141 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.811 +effective_logical_fps=44.043 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=20.083 +p95_encode_latency_ms=32.267 +max_encode_latency_ms=105.738 +avg_steady_encode_latency_ms=20.400 +p95_steady_encode_latency_ms=32.267 +max_steady_encode_latency_ms=37.611 +avg_tile_encode_latency_ms=14.231 +p95_tile_encode_latency_ms=30.293 +avg_max_tile_encode_latency_ms=18.387 +p95_max_tile_encode_latency_ms=30.581 +avg_steady_max_tile_encode_latency_ms=18.893 +p95_steady_max_tile_encode_latency_ms=30.592 +payload_bytes=5100530 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1_logical.csv new file mode 100644 index 0000000..8610b8e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight1_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.7383,28.9161,337552 +1,4,0,11.0308,10.5150,152351 +2,4,0,10.9819,10.4363,149416 +3,4,0,10.9342,10.5801,142089 +4,4,0,10.8534,10.3410,112777 +5,4,0,10.7762,10.3167,114708 +6,4,0,10.7974,10.3072,64955 +7,4,0,10.7418,10.2939,37587 +8,4,0,10.8789,10.3696,26109 +9,4,0,10.9401,10.4920,23201 +10,4,0,10.9146,10.4183,18705 +11,4,0,10.8873,10.3369,14742 +12,4,0,11.1780,10.5003,11738 +13,4,0,10.9593,10.3228,9530 +14,4,0,10.8595,10.3682,6611 +15,4,0,10.8908,10.2696,3979 +16,4,0,10.8383,10.2603,2445 +17,4,0,10.9232,10.2720,2516 +18,4,0,10.9153,10.2678,2602 +19,4,0,10.8763,10.2824,2599 +20,4,0,11.9993,10.5225,2598 +21,4,0,11.8463,10.0578,2598 +22,4,0,11.9047,10.3718,2598 +23,4,0,12.8381,11.0397,2598 +24,4,0,11.4652,10.6053,2598 +25,4,0,11.4008,10.7090,2598 +26,4,0,12.0086,10.9152,2598 +27,4,0,11.5253,10.2743,2598 +28,4,0,11.5702,10.6672,2598 +29,4,0,11.5985,10.9255,2598 +30,4,0,11.4376,10.5165,2598 +31,4,0,11.6708,10.9223,2598 +32,4,0,11.6846,10.8195,2598 +33,4,0,11.4172,10.6435,2598 +34,4,0,15.0168,13.9579,2598 +35,4,0,11.5262,10.5603,2598 +36,4,0,11.6053,10.6580,2598 +37,4,0,11.6485,10.9156,2598 +38,4,0,11.6321,10.8358,2598 +39,4,0,11.9384,11.0989,2598 +40,4,0,15.4380,13.9629,2598 +41,4,0,11.4212,10.7432,2598 +42,4,0,11.7010,10.9990,2598 +43,4,0,14.5987,13.0238,2598 +44,4,0,11.6457,10.7877,2598 +45,4,0,11.8347,10.6893,2598 +46,4,0,11.6203,10.7843,2598 +47,4,0,12.1117,10.5253,2598 +48,4,0,12.0622,9.8569,2598 +49,4,0,11.5369,10.6937,2598 +50,4,0,11.5116,10.8098,2598 +51,4,0,11.1327,10.5240,2598 +52,4,0,10.9328,10.3411,2598 +53,4,0,11.9883,10.5433,2598 +54,4,0,11.7209,10.1992,2598 +55,4,0,14.3548,12.8505,2598 +56,4,0,11.2332,10.5230,2598 +57,4,0,11.9960,10.2730,2598 +58,4,0,11.7185,10.0984,2598 +59,4,0,12.0418,10.4464,2598 +60,4,0,13.1009,11.9914,2598 +61,4,0,11.2475,10.3790,2598 +62,4,0,11.5567,10.4393,2598 +63,4,0,11.7358,10.3240,2598 +64,4,0,11.6830,10.3816,2598 +65,4,0,11.8703,10.2194,2598 +66,4,0,11.6698,10.1975,2598 +67,4,0,12.4682,10.6706,2598 +68,4,0,11.4469,10.7027,2598 +69,4,0,12.3422,10.4460,2598 +70,4,0,12.2764,11.5789,2598 +71,4,0,11.4500,10.5301,2598 +72,4,0,12.2274,11.4036,2598 +73,4,0,11.5579,10.8046,2598 +74,4,0,11.9051,11.0586,2598 +75,4,0,13.9581,12.5690,509392 +76,4,0,11.5684,10.8828,24883 +77,4,0,11.6656,10.9066,47613 +78,4,0,11.6546,10.7744,71527 +79,4,0,11.9287,11.1018,68958 +80,4,0,11.6473,10.8506,94555 +81,4,0,11.9052,11.2093,71830 +82,4,0,12.9551,12.2044,47124 +83,4,0,11.5533,10.7992,32913 +84,4,0,11.5734,10.6917,27481 +85,4,0,11.7630,10.7985,21594 +86,4,0,12.1847,10.7308,17229 +87,4,0,12.8787,11.0468,14517 +88,4,0,12.1376,10.4213,12404 +89,4,0,12.8320,8.0940,9822 +90,4,0,12.1446,10.6097,6553 +91,4,0,11.7077,10.8513,5621 +92,4,0,12.0307,10.6327,4570 +93,4,0,12.2981,10.4015,2531 +94,4,0,12.2531,10.4891,2524 +95,4,0,11.9166,10.3200,2601 +96,4,0,11.9125,10.1964,2599 +97,4,0,11.6786,10.6320,2598 +98,4,0,11.9437,10.2089,2598 +99,4,0,12.2254,9.8929,2598 +100,4,0,13.6102,10.8400,2598 +101,4,0,11.9648,10.0828,2598 +102,4,0,13.6492,11.5243,2598 +103,4,0,12.9610,9.9128,2598 +104,4,0,12.2215,10.4200,2598 +105,4,0,12.1472,10.4411,2598 +106,4,0,11.7164,10.0218,2598 +107,4,0,12.5123,11.0122,2598 +108,4,0,11.9511,10.5385,2598 +109,4,0,12.0572,10.3298,2598 +110,4,0,12.0335,10.1848,2598 +111,4,0,11.6606,9.9083,2598 +112,4,0,11.6681,10.0823,2598 +113,4,0,11.9137,10.4330,2598 +114,4,0,11.7498,10.1544,2598 +115,4,0,12.3184,10.3285,2598 +116,4,0,11.6821,10.0148,2598 +117,4,0,13.2343,11.7803,2598 +118,4,0,11.8254,10.0714,2598 +119,4,0,14.0596,12.5952,2598 +120,4,0,12.0628,11.0523,2598 +121,4,0,11.4237,10.6407,2598 +122,4,0,12.7041,10.6319,2598 +123,4,0,12.1660,10.1882,2598 +124,4,0,11.8524,10.4629,2598 +125,4,0,11.9235,10.3340,2598 +126,4,0,11.7431,10.2489,2598 +127,4,0,12.5415,10.5136,2598 +128,4,0,11.2224,10.3154,2598 +129,4,0,12.0322,10.1759,2598 +130,4,0,11.6600,10.0173,2598 +131,4,0,11.8198,10.2094,2598 +132,4,0,11.6562,10.2837,2598 +133,4,0,11.5789,10.2195,2598 +134,4,0,11.6037,10.0976,2598 +135,4,0,11.6544,10.0744,2598 +136,4,0,11.6993,10.1596,2598 +137,4,0,11.8212,10.4350,2598 +138,4,0,12.4926,10.9188,2598 +139,4,0,11.8581,10.0977,2598 +140,4,0,11.8862,10.2189,2598 +141,4,0,11.6945,10.0224,2598 +142,4,0,11.8715,10.2329,2598 +143,4,0,11.9002,10.1992,2598 +144,4,0,11.6903,10.2670,2598 +145,4,0,12.0345,10.2182,2598 +146,4,0,11.9382,10.0798,2598 +147,4,0,13.0204,11.7018,2598 +148,4,0,11.7927,10.4541,2598 +149,4,0,11.7587,10.2356,2598 +150,4,0,11.9938,10.2860,498961 +151,4,0,11.4392,10.3331,27992 +152,4,0,11.5415,10.1878,49831 +153,4,0,11.7484,10.0858,74776 +154,4,0,12.1766,10.4552,97363 +155,4,0,11.8421,10.3358,106276 +156,4,0,11.6757,10.1470,72005 +157,4,0,11.4510,9.9862,46710 +158,4,0,11.6667,10.4051,29899 +159,4,0,11.6604,10.2523,24990 +160,4,0,11.4939,9.9625,18955 +161,4,0,11.6614,10.4000,14889 +162,4,0,11.6998,10.2736,12187 +163,4,0,12.0030,10.2176,9555 +164,4,0,12.1019,10.1288,6103 +165,4,0,12.1847,10.7064,4541 +166,4,0,11.9811,10.3584,2543 +167,4,0,12.0824,10.2129,2530 +168,4,0,12.3888,10.3360,2601 +169,4,0,12.0773,10.3811,2599 +170,4,0,12.6132,10.2876,2598 +171,4,0,12.0728,10.1408,2598 +172,4,0,12.1122,10.2216,2598 +173,4,0,11.9282,10.0591,2598 +174,4,0,11.8070,9.9568,2598 +175,4,0,11.7548,10.1887,2598 +176,4,0,12.4543,9.9671,2598 +177,4,0,11.8303,10.0132,2598 +178,4,0,13.6036,11.9294,2598 +179,4,0,12.1189,10.4551,2598 +180,4,0,11.8473,10.9209,2598 +181,4,0,16.0616,14.5261,2598 +182,4,0,31.3605,30.4640,2598 +183,4,0,31.3287,29.9778,2598 +184,4,0,31.3775,29.9624,2598 +185,4,0,31.1766,29.7785,2598 +186,4,0,31.4954,30.1945,2598 +187,4,0,31.9027,29.6646,2598 +188,4,0,32.0522,30.3430,2598 +189,4,0,31.6195,30.3905,2598 +190,4,0,31.6980,29.8623,2598 +191,4,0,31.6058,30.2598,2598 +192,4,0,31.7986,29.9714,2598 +193,4,0,32.0441,30.5920,2598 +194,4,0,31.6080,30.1480,2598 +195,4,0,32.0562,30.4781,2598 +196,4,0,31.5922,30.2359,2598 +197,4,0,31.8625,30.1009,2598 +198,4,0,32.0414,30.4065,2598 +199,4,0,32.0668,30.4862,2598 +200,4,0,32.0793,30.3331,2598 +201,4,0,31.5592,30.5163,2598 +202,4,0,31.5069,30.1050,2598 +203,4,0,31.6063,29.6116,2598 +204,4,0,31.7831,30.1607,2598 +205,4,0,31.6498,30.0742,2598 +206,4,0,32.1833,29.4030,2598 +207,4,0,31.7807,30.0412,2598 +208,4,0,31.8690,30.1426,2598 +209,4,0,31.8010,29.7890,2598 +210,4,0,31.6602,30.0804,2598 +211,4,0,31.9433,30.4202,2598 +212,4,0,31.6089,29.7518,2598 +213,4,0,31.0340,30.2100,2598 +214,4,0,31.4966,30.1865,2598 +215,4,0,31.2222,30.0293,2598 +216,4,0,31.3566,30.4643,2598 +217,4,0,31.5780,30.3161,2598 +218,4,0,31.4242,30.1863,2598 +219,4,0,31.7684,30.3566,2598 +220,4,0,32.7123,29.6611,2598 +221,4,0,32.7498,30.0902,2598 +222,4,0,31.9161,29.2587,2598 +223,4,0,31.6670,30.0658,2598 +224,4,0,31.7035,30.1575,2598 +225,4,0,31.3091,29.6943,509662 +226,4,0,33.1115,31.4396,31095 +227,4,0,31.8258,30.6159,44547 +228,4,0,31.9109,30.2628,68237 +229,4,0,32.1109,30.3156,77607 +230,4,0,31.8815,30.0425,72384 +231,4,0,31.4507,30.3196,76535 +232,4,0,32.4078,30.6049,48789 +233,4,0,31.7605,29.9877,36606 +234,4,0,32.2108,29.7862,27960 +235,4,0,31.9698,29.6602,22315 +236,4,0,31.5943,30.1416,17904 +237,4,0,31.5501,29.8236,14580 +238,4,0,31.1883,30.3042,12493 +239,4,0,31.4685,30.0919,10174 +240,4,0,31.6291,30.1358,7785 +241,4,0,31.8473,30.5318,5590 +242,4,0,31.8006,29.8833,4482 +243,4,0,31.7091,29.7800,2533 +244,4,0,31.9425,31.1264,2525 +245,4,0,31.6092,30.3416,2601 +246,4,0,31.9341,29.9498,2599 +247,4,0,31.8871,30.2008,2598 +248,4,0,31.7649,30.3484,2598 +249,4,0,31.6723,30.0633,2598 +250,4,0,32.0448,30.3442,2598 +251,4,0,32.2630,30.2594,2598 +252,4,0,35.4246,31.0840,2598 +253,4,0,31.8613,30.1900,2598 +254,4,0,31.6030,30.0405,2598 +255,4,0,31.6557,30.0147,2598 +256,4,0,31.4883,29.8405,2598 +257,4,0,32.3443,31.1280,2598 +258,4,0,31.7048,30.1388,2598 +259,4,0,31.6186,29.9095,2598 +260,4,0,32.7519,31.0135,2598 +261,4,0,33.0456,31.1861,2598 +262,4,0,31.7219,30.2700,2598 +263,4,0,31.9675,30.3745,2598 +264,4,0,32.0632,29.5927,2598 +265,4,0,31.7093,30.0727,2598 +266,4,0,31.8347,30.2717,2598 +267,4,0,31.5390,30.1577,2598 +268,4,0,31.6970,29.8575,2598 +269,4,0,37.6106,36.1437,2598 +270,4,0,32.1576,30.2974,2598 +271,4,0,31.5228,30.2502,2598 +272,4,0,31.4406,29.8692,2598 +273,4,0,31.4617,30.1717,2598 +274,4,0,31.4274,30.4405,2598 +275,4,0,30.9270,30.0090,2598 +276,4,0,31.5694,30.5808,2598 +277,4,0,32.4700,30.3168,2598 +278,4,0,31.0162,30.0739,2598 +279,4,0,31.6901,29.3774,2598 +280,4,0,31.7957,30.6021,2598 +281,4,0,32.2389,30.6099,2598 +282,4,0,31.6967,30.2451,2598 +283,4,0,31.6187,29.8225,2598 +284,4,0,33.4900,30.0916,2598 +285,4,0,31.9113,30.1782,2598 +286,4,0,32.7658,29.9291,2598 +287,4,0,31.4566,30.2695,2598 +288,4,0,32.1755,31.2347,2598 +289,4,0,33.5290,32.1479,2598 +290,4,0,31.9588,30.5212,2598 +291,4,0,32.3902,30.5969,2598 +292,4,0,31.9222,30.2316,2598 +293,4,0,32.1326,29.8242,2598 +294,4,0,31.2463,30.0644,2598 +295,4,0,30.8799,29.9366,2598 +296,4,0,30.6155,30.0300,2598 +297,4,0,30.9490,30.4077,2598 +298,4,0,30.5706,30.0358,2598 +299,4,0,30.8262,30.3000,2598 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.csv new file mode 100644 index 0000000..1294c5d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0605,29.7475,0.0326,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.9252,25.4783,0.0239,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,2.8730,24.6567,0.0266,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.9573,25.1193,0.0094,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.0605,5.8609,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.9252,5.6983,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,2.8730,10.5965,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.9573,10.5612,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.0605,15.6454,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.9252,15.6021,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,2.8730,20.4265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.9573,20.5335,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.0605,15.1133,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.9252,15.2468,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,2.8730,19.9803,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.9573,20.1289,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.0605,15.0787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.9252,15.1140,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,2.8730,19.8326,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.9573,20.0108,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.0605,14.8860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.9252,15.1014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,2.8730,19.7160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.9573,19.9947,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.0605,14.7550,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.9252,15.0427,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,2.8730,19.5388,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.9573,19.9029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.0605,14.7031,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.9252,15.0527,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,2.8730,19.5035,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.9573,19.8843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.0605,14.6150,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.9252,15.0257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,2.8730,19.3847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.9573,19.8353,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.0605,14.4773,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.9252,14.9801,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,2.8730,19.2941,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.9573,19.8451,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.0605,14.4880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.9252,15.0076,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,2.8730,19.2385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.9573,19.8379,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.0605,14.3547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.9252,15.0298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,2.8730,19.1898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.9573,19.8906,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.0605,14.3352,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.9252,15.0554,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,2.8730,19.0678,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.9573,19.8938,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.0605,14.2045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.9252,15.0218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,2.8730,19.0453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.9573,19.8858,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.0605,14.1807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.9252,15.0539,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,2.8730,18.9374,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.9573,19.8787,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.0605,14.0285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.9252,14.9206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,2.8730,18.6883,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.9573,19.6125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.0605,8.0440,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.9252,8.9719,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.8730,12.9370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.9573,13.7404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.0605,5.8578,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.9252,5.6185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.8730,10.2717,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.9573,10.2669,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.0605,5.7923,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.9252,5.6199,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.8730,10.2581,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.9573,10.2450,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.0605,5.8210,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.9252,5.5873,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.8730,10.4539,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.9573,10.3942,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.0605,5.9461,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.9252,5.6751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.8730,12.6206,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.9573,12.6535,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.0605,6.3541,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.9252,5.8310,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.8730,10.3456,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.9573,10.1835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.0605,6.7793,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.9252,5.7788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.8730,10.8105,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.9573,10.5687,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.0605,6.5818,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.9252,5.7226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.8730,10.5024,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.9573,10.2771,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.0605,7.0155,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.9252,6.1974,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.8730,10.3396,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.9573,10.2063,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.0605,6.4365,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.9252,5.8170,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.8730,10.5450,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.9573,10.5686,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.0605,10.1715,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.9252,8.6690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.8730,9.5597,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.9573,10.6635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.0605,6.7941,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.9252,6.1649,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.8730,10.1639,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.9573,10.1948,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.0605,6.3948,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.9252,5.7907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.8730,9.1914,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.9573,9.2998,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.0605,6.3525,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.9252,5.9477,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.8730,9.9863,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.9573,9.3287,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.0605,6.4467,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.9252,5.9052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.8730,9.9280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.9573,10.0110,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.0605,6.7343,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.9252,6.0629,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.8730,9.9714,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,2.9573,9.9697,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.0605,6.4213,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.9252,5.8836,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.8730,10.2702,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.9573,10.0436,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.0605,6.3325,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.9252,5.8740,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.8730,9.9785,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.9573,10.0036,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.0605,6.9645,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.9252,6.1154,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.8730,9.8033,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.9573,9.9382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.0605,6.4220,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.9252,6.0619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.8730,10.9141,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.9573,10.9582,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.0605,5.9819,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.9252,5.6670,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.8730,10.3317,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.9573,10.2973,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.0605,7.3649,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.9252,6.6996,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.8730,10.3220,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.9573,10.2990,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.0605,7.3356,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.9252,6.2851,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.8730,10.7078,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.9573,10.4184,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.0605,6.5981,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.9252,5.7373,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.8730,10.6268,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.9573,10.4670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.0605,6.1690,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.9252,5.7073,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.8730,10.4832,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.9573,10.4685,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.0605,6.0509,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.9252,5.6443,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.8730,10.3307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.9573,10.2895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.0605,6.5433,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.9252,5.8217,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.8730,10.2520,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,2.9573,10.1890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.0605,6.3469,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.9252,7.2064,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.8730,9.8216,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.9573,10.0141,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.0605,6.9343,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.9252,6.2572,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.8730,10.2961,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.9573,10.1021,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.0605,6.9635,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.9252,5.9758,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.8730,9.2214,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.9573,9.4409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.0605,6.2060,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.9252,5.7137,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.8730,10.1722,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.9573,9.9604,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.0605,6.7616,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.9252,6.0573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.8730,10.2785,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.9573,10.1727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.0605,6.6381,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.9252,6.0951,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.8730,10.4003,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.9573,10.3117,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.0605,6.2693,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.9252,6.5292,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.8730,10.4518,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.9573,10.2310,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.0605,6.6408,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.9252,5.8503,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.8730,10.4696,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.9573,10.4474,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.0605,6.0458,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.9252,5.7111,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.8730,10.2165,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.9573,10.1750,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.0605,6.1523,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.9252,5.7345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.8730,10.8173,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.9573,10.8068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.0605,6.2279,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.9252,5.7107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.8730,10.1703,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.9573,10.1781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.0605,6.1888,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.9252,5.8156,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.8730,10.3747,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.9573,10.4592,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.0605,6.2492,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.9252,5.7885,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.8730,10.5492,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.9573,10.3409,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.0605,6.4793,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.9252,5.9348,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.8730,10.1878,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.9573,10.2188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.0605,5.7325,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.9252,5.6327,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.8730,10.0721,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.9573,10.1871,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.0605,5.7701,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.9252,5.5652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.8730,10.1431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.9573,10.1817,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.0605,5.7074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.9252,5.5663,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.8730,10.2843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.9573,10.3795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.0605,5.6543,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.9252,5.5883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.8730,10.2873,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.9573,10.2975,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.0605,5.6095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.9252,5.5431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.8730,10.2030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.9573,10.2478,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.0605,5.6325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.9252,5.5160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.8730,10.3415,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.9573,10.2968,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.0605,5.9480,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.9252,5.6567,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.8730,10.4411,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.9573,10.3927,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.0605,5.8911,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.9252,5.6528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.8730,10.5316,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.9573,10.4317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.0605,6.0356,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.9252,5.6955,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.8730,10.5331,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.9573,10.4413,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.0605,5.8889,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.9252,5.6808,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.8730,10.4170,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.9573,10.4349,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.0605,5.7710,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.9252,5.7665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.8730,10.2256,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.9573,10.3041,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.0605,6.0803,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.9252,5.6924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.8730,10.0806,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.9573,10.1282,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.0605,6.4125,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.9252,6.0460,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.8730,10.2208,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.9573,10.1551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.0605,6.2417,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.9252,5.8500,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.8730,9.8235,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.9573,9.8528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.0605,6.2983,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.9252,5.8590,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.8730,10.5322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.9573,10.1528,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.0605,9.1053,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.9252,8.3904,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.8730,10.3014,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.9573,10.2178,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.0605,6.6936,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.9252,6.0016,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.8730,10.2128,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.9573,10.0491,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.0605,6.5684,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.9252,5.8182,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.8730,9.8326,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.9573,9.8384,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.0605,6.8888,0.1380,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +301,2.9252,6.0499,0.1097,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +302,2.8730,10.1798,0.0417,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +303,2.9573,9.9515,0.0485,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +304,5.0605,6.7328,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +305,2.9252,5.8606,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +306,2.8730,9.9438,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +307,2.9573,9.9824,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +308,5.0605,6.4925,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +309,2.9252,5.8896,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +310,2.8730,10.2835,0.0839,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +311,2.9573,10.1062,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +312,5.0605,7.7221,0.0576,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +313,2.9252,7.0173,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +314,2.8730,10.2090,0.0565,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +315,2.9573,10.1218,0.0378,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +316,5.0605,6.7018,0.0965,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +317,2.9252,6.0790,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +318,2.8730,10.6902,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +319,2.9573,10.5250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +320,5.0605,6.5311,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +321,2.9252,5.8455,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +322,2.8730,10.6698,0.0631,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +323,2.9573,10.4052,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +324,5.0605,6.3431,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +325,2.9252,5.8492,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +326,2.8730,12.5990,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +327,2.9573,12.2629,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +328,5.0605,6.6779,0.0815,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +329,2.9252,5.9663,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +330,2.8730,10.2044,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +331,2.9573,10.2079,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +332,5.0605,6.3829,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +333,2.9252,5.8190,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +334,2.8730,10.4235,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +335,2.9573,10.1539,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +336,5.0605,6.3346,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +337,2.9252,5.9896,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +338,2.8730,10.0704,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +339,2.9573,10.0369,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +340,5.0605,6.6144,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +341,2.9252,5.7980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +342,2.8730,9.9691,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +343,2.9573,10.0071,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +344,5.0605,6.2080,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +345,2.9252,5.7485,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +346,2.8730,10.0227,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +347,2.9573,10.1301,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +348,5.0605,6.5101,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +349,2.9252,5.7913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +350,2.8730,10.5013,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +351,2.9573,10.4372,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +352,5.0605,6.9460,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +353,2.9252,5.9084,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +354,2.8730,10.9396,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +355,2.9573,10.7529,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +356,5.0605,6.7242,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +357,2.9252,5.8148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +358,2.8730,10.0006,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +359,2.9573,9.9682,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +360,5.0605,6.4740,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +361,2.9252,5.8377,0.0417,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.8730,10.0502,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +363,2.9573,10.0709,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +364,5.0605,6.3679,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +365,2.9252,6.0499,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.8730,10.6504,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +367,2.9573,10.4439,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +368,5.0605,6.2298,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +369,2.9252,5.7808,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.8730,10.5539,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +371,2.9573,10.3350,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +372,5.0605,6.4925,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.9252,5.8960,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.8730,10.0215,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +375,2.9573,10.0448,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +376,5.0605,6.5906,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.9252,5.8421,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.8730,9.9139,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.9573,9.9932,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +380,5.0605,6.2557,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.9252,5.8034,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.8730,10.8978,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.9573,10.6701,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.0605,6.3206,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.9252,5.7530,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.8730,10.1752,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.9573,10.2506,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +388,5.0605,6.4719,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.9252,5.8871,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.8730,9.9967,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.9573,10.0498,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.0605,6.9748,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.9252,6.2329,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.8730,8.3978,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.9573,10.0812,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.0605,6.2034,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.9252,7.1232,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.8730,10.4812,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.9573,11.8365,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.0605,6.7999,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.9252,5.9188,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.8730,10.0892,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.9573,10.2274,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.0605,7.0738,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.9252,6.2942,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.8730,10.0864,0.0439,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.9573,10.0045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.0605,6.3327,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.9252,5.8357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.8730,9.9997,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.9573,9.9793,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.0605,6.3675,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.9252,5.8032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.8730,9.9151,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.9573,9.9819,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.0605,6.4855,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.9252,5.8601,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.8730,9.8376,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.9573,10.0138,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.0605,6.4979,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.9252,5.7954,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.8730,8.0395,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.9573,7.3063,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.0605,6.6059,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.9252,5.9527,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.8730,10.9550,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.9573,10.8789,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.0605,6.5553,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.9252,5.9158,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.8730,9.9692,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.9573,10.0108,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.0605,6.2625,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.9252,5.8109,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.8730,9.8827,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.9573,9.9239,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.0605,6.5666,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.9252,5.8615,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.8730,9.9342,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.9573,10.0175,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.0605,6.3645,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.9252,5.8601,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.8730,10.3481,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.9573,10.0987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.0605,6.8656,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.9252,5.7701,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.8730,10.0688,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.9573,10.1776,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.0605,6.4032,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.9252,5.7442,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.8730,9.8545,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.9573,9.9269,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.0605,6.1835,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.9252,5.7387,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.8730,10.5038,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.9573,10.3119,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.0605,5.8385,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.9252,5.5829,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.8730,10.1808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.9573,10.1724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.0605,5.7831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.9252,5.5369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.8730,10.3102,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.9573,10.2740,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.0605,5.7265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.9252,5.5512,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.8730,10.2680,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.9573,10.3159,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.0605,5.9253,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.9252,5.8856,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.8730,10.6508,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.9573,10.5757,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.0605,6.3822,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.9252,5.9254,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.8730,10.0767,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.9573,9.9192,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.0605,6.4159,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.9252,5.8233,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.8730,10.4284,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.9573,10.3502,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.0605,6.3906,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.9252,5.7841,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.8730,9.8857,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.9573,9.9268,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.0605,6.3031,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.9252,5.8387,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.8730,9.9649,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.9573,9.9771,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.0605,8.6366,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.9252,5.7275,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.8730,10.4134,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.9573,10.4428,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.0605,6.9547,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.9252,6.5901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.8730,11.1124,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.9573,10.9506,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.0605,6.9768,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.9252,7.0697,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.8730,10.1790,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.9573,10.1215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.0605,6.1345,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.9252,5.8016,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.8730,10.5133,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.9573,10.3983,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.0605,6.3624,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.9252,5.8870,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.8730,10.5070,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.9573,10.4970,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.0605,6.2419,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.9252,5.9490,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.8730,10.2113,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.9573,10.1882,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.0605,7.5717,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.9252,6.6759,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.8730,10.0546,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.9573,10.0313,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.0605,6.1619,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.9252,5.7913,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.8730,10.2534,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.9573,10.0748,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.0605,6.2741,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.9252,5.8554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.8730,9.9910,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.9573,10.0098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.0605,6.3630,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.9252,6.5747,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.8730,9.8823,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.9573,9.8292,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.0605,6.2627,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.9252,5.7293,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.8730,10.2346,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.9573,10.2798,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.0605,6.1210,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.9252,5.8022,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.8730,10.0659,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.9573,10.0715,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.0605,6.1381,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.9252,5.7818,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.8730,10.0250,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.9573,10.0151,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.0605,6.3630,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.9252,5.8024,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.8730,10.1079,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.9573,9.9108,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.0605,6.3498,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.9252,5.7152,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.8730,10.5192,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.9573,10.3403,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.0605,6.5285,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.9252,5.7850,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.8730,9.8417,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.9573,9.9809,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.0605,6.8667,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.9252,6.2355,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.8730,10.0243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.9573,10.0591,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.0605,6.2118,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.9252,5.8249,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.8730,9.9394,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.9573,9.9865,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.0605,6.3934,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.9252,5.8553,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.8730,9.9245,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.9573,9.9654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.0605,6.2809,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.9252,5.8192,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.8730,9.9599,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.9573,10.0119,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.0605,6.2723,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.9252,5.7329,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.8730,9.7865,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.9573,9.7293,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.0605,6.4547,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.9252,5.8178,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.8730,9.7803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.9573,10.1100,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.0605,6.2385,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.9252,5.8114,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.8730,9.9392,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.9573,9.9254,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.0605,6.5440,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.9252,5.8421,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.8730,9.8424,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.9573,9.9720,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.0605,8.2375,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.9252,7.0927,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.8730,9.6650,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.9573,9.9682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.0605,8.4169,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.9252,7.7578,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.8730,10.3552,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.9573,10.2295,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.0605,6.2239,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.9252,5.7039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.8730,10.2899,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.9573,10.1593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.0605,6.4336,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.9252,5.9538,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.8730,9.6385,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.9573,9.9348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.0605,6.5105,0.0421,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,2.9252,6.2047,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,2.8730,9.6547,0.0680,0.0000,0,0,0.0000,0,0.0000,0,1,0,141143,0 +603,2.9573,9.5694,0.0642,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +604,5.0605,6.7326,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,2.9252,6.2524,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,2.8730,10.3963,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,11680,0 +607,2.9573,10.1380,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +608,5.0605,7.7051,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,2.9252,6.9335,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,2.8730,10.5065,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,17270,0 +611,2.9573,10.3386,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +612,5.0605,6.0192,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,2.9252,5.7381,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,2.8730,10.3720,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,22985,0 +615,2.9573,10.3528,0.0731,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +616,5.0605,6.6620,0.0463,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,2.9252,6.5191,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,2.8730,10.4423,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,27672,0 +619,2.9573,10.2978,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +620,5.0605,6.2423,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,2.9252,5.7224,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,2.8730,10.4482,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,29161,0 +623,2.9573,10.4243,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +624,5.0605,6.2026,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,2.9252,5.8126,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,2.8730,10.3644,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,22449,0 +627,2.9573,10.2545,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +628,5.0605,5.8623,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,2.9252,6.4666,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,2.8730,10.0566,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,14554,0 +631,2.9573,10.1425,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +632,5.0605,5.9082,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,2.9252,5.6905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,2.8730,10.1749,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,9321,0 +635,2.9573,10.1316,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +636,5.0605,6.2817,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,2.9252,5.9410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,2.8730,10.6022,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6401,0 +639,2.9573,10.5242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +640,5.0605,6.0946,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,2.9252,5.6567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,2.8730,10.3791,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +643,2.9573,10.3195,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +644,5.0605,6.1757,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,2.9252,5.7357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,2.8730,10.4846,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,4198,0 +647,2.9573,10.3670,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +648,5.0605,6.2109,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,2.9252,5.6767,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,2.8730,10.4354,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3263,0 +651,2.9573,10.3643,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +652,5.0605,6.2625,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,2.9252,5.6503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,2.8730,11.3763,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +655,2.9573,11.2561,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +656,5.0605,6.3314,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,2.9252,5.7263,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,2.8730,10.1127,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +659,2.9573,10.2149,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +660,5.0605,6.6398,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,2.9252,7.3250,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.8730,10.5819,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +663,2.9573,10.4825,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +664,5.0605,7.1668,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,2.9252,6.2555,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.8730,10.2196,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +667,2.9573,10.1182,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +668,5.0605,6.2418,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,2.9252,5.7705,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.8730,10.2345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +671,2.9573,10.1878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +672,5.0605,6.6088,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.9252,5.9757,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.8730,10.5596,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.9573,10.3555,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +676,5.0605,6.4176,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.9252,5.8548,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.8730,10.3472,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.9573,10.2158,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +680,5.0605,6.3291,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.9252,5.7728,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.8730,12.1090,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.9573,12.0385,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.0605,6.7169,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.9252,5.7242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.8730,11.0675,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.9573,10.8536,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.0605,6.7178,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.9252,5.8863,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.8730,10.5836,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.9573,10.6126,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.0605,6.5705,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.9252,5.8716,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.8730,10.4385,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.9573,10.2237,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.0605,6.6326,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.9252,5.9144,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.8730,10.5114,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.9573,10.4121,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.0605,6.4078,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.9252,5.6895,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.8730,10.5173,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.9573,10.3230,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.0605,6.5070,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.9252,6.8938,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.8730,9.3031,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.9573,10.6252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.0605,5.9667,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.9252,5.8979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.8730,10.2849,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.9573,10.3338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.0605,7.3985,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.9252,6.7168,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.8730,10.1452,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.9573,10.2610,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.0605,6.4013,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.9252,6.0555,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.8730,10.5012,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.9573,10.3703,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.0605,6.3281,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.9252,6.4517,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.8730,10.3211,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.9573,10.2615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.0605,6.6045,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.9252,5.8541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.8730,14.3364,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.9573,14.7116,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.0605,16.0691,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.9252,15.4144,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.8730,30.0987,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.9573,26.6739,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.0605,30.3585,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.9252,29.9514,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.8730,44.4194,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.9573,44.2771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.0605,44.5068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.9252,43.9829,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.8730,58.7665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.9573,58.5681,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.0605,45.2264,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.9252,44.8122,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.8730,59.3833,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.9573,59.2572,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.0605,44.3181,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.9252,43.8823,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.8730,58.7524,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.9573,58.4977,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.0605,44.6884,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.9252,44.0708,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.8730,60.2898,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.9573,60.0518,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.0605,44.5578,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.9252,43.8533,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.8730,58.4690,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.9573,58.4302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.0605,41.8912,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.9252,41.3470,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.8730,56.1310,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.9573,56.0685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.0605,44.3340,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.9252,43.8323,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.8730,58.2032,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.9573,57.9425,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.0605,44.2967,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.9252,43.8860,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.8730,58.3924,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.9573,58.1577,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.0605,44.2180,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.9252,43.8575,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.8730,58.5941,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.9573,58.3150,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.0605,44.2131,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.9252,43.8225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.8730,58.5311,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.9573,58.3149,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.0605,44.1320,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.9252,43.2154,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.8730,58.1680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.9573,57.6834,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.0605,44.0837,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.9252,43.4392,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.8730,57.8925,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.9573,57.5954,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.0605,43.5978,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.9252,42.9317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.8730,57.4889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.9573,56.8638,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.0605,44.4440,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.9252,43.9180,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.8730,58.3307,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.9573,58.0647,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.0605,44.0248,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.9252,43.3588,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.8730,57.9306,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.9573,57.5262,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.0605,44.2875,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.9252,43.7891,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.8730,58.3647,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.9573,58.1700,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.0605,44.3433,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.9252,43.7601,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.8730,58.2148,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.9573,57.9688,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.0605,44.6547,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.9252,43.9749,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.8730,58.4736,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.9573,58.2530,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.0605,44.1065,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.9252,43.0447,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.8730,57.6436,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.9573,57.4043,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.0605,45.1635,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.9252,44.6792,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.8730,58.6035,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.9573,58.3657,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.0605,44.5145,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.9252,44.0060,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.8730,58.6142,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.9573,58.3239,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.0605,44.4028,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.9252,43.8562,0.1538,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.8730,58.6161,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.9573,58.0457,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.0605,43.4111,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.9252,41.8922,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.8730,56.3262,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.9573,56.0210,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.0605,44.0258,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.9252,43.3867,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.8730,58.4408,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.9573,57.6973,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.0605,43.8934,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.9252,43.0985,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.8730,57.7573,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.9573,57.4934,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.0605,43.6628,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.9252,42.8895,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.8730,57.4603,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.9573,57.2230,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.0605,44.3400,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.9252,43.7138,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.8730,58.0765,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.9573,57.7025,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.0605,44.0910,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.9252,43.4479,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.8730,58.0945,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.9573,57.7012,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.0605,45.1726,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.9252,44.3353,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.8730,57.9622,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.9573,57.4979,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.0605,44.0285,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.9252,43.1296,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.8730,57.6356,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.9573,57.2060,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.0605,44.1394,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.9252,43.2290,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.8730,57.5945,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.9573,57.2154,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.0605,44.2914,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.9252,43.8451,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.8730,58.4617,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.9573,58.0014,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.0605,44.8222,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.9252,43.9639,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.8730,58.9754,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.9573,58.4903,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.0605,44.5157,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.9252,43.8213,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.8730,58.9195,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.9573,58.4201,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.0605,44.2018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.9252,43.2736,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.8730,57.5900,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.9573,57.2953,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.0605,43.8052,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.9252,42.9894,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.8730,57.3201,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.9573,55.3655,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.0605,44.1219,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.9252,43.4191,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.8730,58.3607,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.9573,57.4648,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.0605,44.1861,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.9252,43.2640,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.8730,58.2672,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.9573,57.8069,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.0605,43.5668,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.9252,42.7171,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.8730,57.3755,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.9573,57.1173,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.0605,43.1962,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.9252,42.0019,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.8730,56.2649,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.9573,55.7285,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.0605,44.1068,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.9252,43.4723,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.8730,57.9349,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.9573,57.5375,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.0605,44.1316,0.0635,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +901,2.9252,43.4898,0.0592,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +902,2.8730,58.4865,0.0559,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +903,2.9573,57.6830,0.0953,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +904,5.0605,43.6052,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +905,2.9252,42.9686,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +906,2.8730,57.4294,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +907,2.9573,57.0118,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +908,5.0605,42.8001,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +909,2.9252,41.3777,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +910,2.8730,55.9762,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +911,2.9573,55.7003,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +912,5.0605,44.5450,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +913,2.9252,43.8448,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +914,2.8730,63.0526,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,17114,0 +915,2.9573,58.5260,0.0411,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +916,5.0605,44.7144,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +917,2.9252,44.2826,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +918,2.8730,59.6583,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,32567,0 +919,2.9573,59.5090,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +920,5.0605,40.7485,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +921,2.9252,40.3501,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +922,2.8730,55.9505,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,12243,0 +923,2.9573,55.8143,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +924,5.0605,44.9191,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +925,2.9252,44.1992,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +926,2.8730,59.0076,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,17820,0 +927,2.9573,58.6838,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +928,5.0605,44.1953,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +929,2.9252,43.5243,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +930,2.8730,58.2441,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,10237,0 +931,2.9573,57.9592,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +932,5.0605,44.7950,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +933,2.9252,44.4600,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +934,2.8730,62.2690,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,9857,0 +935,2.9573,61.9699,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +936,5.0605,44.9611,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +937,2.9252,44.6337,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +938,2.8730,59.7218,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +939,2.9573,59.5880,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +940,5.0605,41.3717,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +941,2.9252,40.9404,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +942,2.8730,55.9564,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6084,0 +943,2.9573,55.4308,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +944,5.0605,44.3170,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +945,2.9252,43.7812,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +946,2.8730,58.3545,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,5296,0 +947,2.9573,58.1454,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +948,5.0605,44.1047,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +949,2.9252,43.3735,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,2.8730,57.8250,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +951,2.9573,57.4250,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +952,5.0605,44.1590,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +953,2.9252,43.6015,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +954,2.8730,57.8791,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3919,0 +955,2.9573,57.4509,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +956,5.0605,44.1251,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +957,2.9252,43.4104,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +958,2.8730,57.7856,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3272,0 +959,2.9573,57.4100,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +960,5.0605,44.1021,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +961,2.9252,43.4180,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.8730,57.9585,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2280,0 +963,2.9573,57.5689,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +964,5.0605,44.2282,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +965,2.9252,43.6361,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.8730,58.1392,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +967,2.9573,57.9353,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +968,5.0605,44.4646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +969,2.9252,43.7275,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.8730,58.2020,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,612,0 +971,2.9573,57.8035,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +972,5.0605,43.9595,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.9252,43.2708,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.8730,57.6432,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +975,2.9573,57.2384,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +976,5.0605,43.9232,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.9252,43.2705,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.8730,57.5207,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +979,2.9573,57.1081,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +980,5.0605,44.0098,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.9252,43.3649,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.8730,57.6268,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.9573,57.1938,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.0605,44.4066,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.9252,43.5017,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.8730,57.7722,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.9573,57.3621,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +988,5.0605,44.3901,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.9252,43.5626,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.8730,58.2595,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.9573,57.8603,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.0605,44.5765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.9252,43.8933,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.8730,58.9763,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.9573,58.5363,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.0605,44.1976,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.9252,43.2930,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.8730,57.9240,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.9573,57.6624,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.0605,43.0493,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.9252,42.3068,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.8730,57.1615,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.9573,56.9158,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.0605,45.4913,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.9252,44.5287,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.8730,58.4164,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.9573,56.8978,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.0605,44.3254,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.9252,43.5684,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.8730,58.4525,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.9573,58.1371,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.0605,44.3590,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.9252,43.2052,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.8730,58.6305,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.9573,58.3123,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.0605,44.5940,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.9252,43.4321,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.8730,57.8665,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.9573,57.5465,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.0605,43.6617,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.9252,43.0027,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.8730,57.7297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.9573,57.4643,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.0605,45.4738,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.9252,44.3241,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.8730,59.0018,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.9573,58.7439,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.0605,48.4227,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.9252,47.7773,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.8730,58.1363,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.9573,57.7182,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.0605,45.6599,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.9252,44.9170,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.8730,58.1463,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.9573,57.8820,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.0605,44.4878,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.9252,43.7923,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.8730,58.7213,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.9573,58.4270,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.0605,44.7402,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.9252,44.2831,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.8730,59.7268,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.9573,59.5319,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.0605,44.8490,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.9252,44.4599,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.8730,59.1471,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.9573,58.9638,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.0605,44.0915,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.9252,43.3618,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.8730,57.8522,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.9573,57.5923,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.0605,44.4876,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.9252,43.7481,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.8730,58.2139,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.9573,57.9535,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.0605,44.1344,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.9252,43.3807,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.8730,57.8112,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.9573,57.4063,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.0605,44.1204,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.9252,43.4924,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.8730,59.6209,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.9573,58.8210,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0605,43.9960,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.9252,43.3438,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.8730,57.7256,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.9573,57.3319,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.0605,42.6077,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.9252,41.7032,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.8730,56.7653,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.9573,56.0175,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.0605,44.4670,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.9252,43.8352,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.8730,58.6606,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.9573,58.1587,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.0605,43.7447,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.9252,42.9338,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.8730,57.6557,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.9573,57.4267,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.0605,43.8922,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.9252,43.3977,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.8730,58.5050,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.9573,58.0952,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.0605,44.0782,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.9252,43.2320,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.8730,57.6874,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.9573,57.2893,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.0605,44.0160,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.9252,42.9732,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.8730,57.3603,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.9573,56.9928,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.0605,44.1255,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.9252,43.2430,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.8730,57.5571,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.9573,57.1722,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.0605,44.1919,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.9252,43.5397,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.8730,57.9802,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.9573,57.4170,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.0605,44.2236,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.9252,43.5623,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.8730,58.0366,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.9573,57.6426,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.0605,44.2630,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.9252,43.6038,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.8730,58.1211,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.9573,57.5967,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.0605,44.1603,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.9252,43.5028,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.8730,57.6716,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.9573,57.2983,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.0605,43.8227,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.9252,42.8287,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.8730,57.3444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.9573,56.8125,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.0605,44.4495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.9252,43.8527,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.8730,58.5742,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.9573,58.1921,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.0605,44.3974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.9252,43.7134,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.8730,58.7463,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.9573,58.0867,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.0605,44.6183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.9252,43.7204,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.8730,58.9485,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.9573,58.2854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.0605,44.5524,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.9252,43.5490,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.8730,58.9528,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.9573,58.3556,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.0605,44.5052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.9252,43.5874,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.8730,59.0951,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.9573,58.2109,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.0605,44.7016,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.9252,43.5853,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.8730,59.1775,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.9573,58.3583,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.0605,44.5740,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.9252,43.2036,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.8730,58.9787,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.9573,57.7730,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.0605,44.6217,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.9252,43.3795,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.8730,58.9775,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.9573,57.8462,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.0605,44.2945,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.9252,42.9583,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.8730,58.7501,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.9573,57.5388,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.0605,44.3440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.9252,43.0840,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.8730,58.9977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.9573,57.9852,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.0605,44.3351,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.9252,42.8715,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.8730,58.2932,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.9573,57.2291,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.0605,46.4802,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.9252,43.0104,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.8730,58.1541,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.9573,57.2271,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.0605,43.9599,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.9252,42.6562,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.8730,57.8405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.9573,56.9860,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.0605,45.0107,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.9252,44.0441,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.8730,58.3350,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.9573,56.7884,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.0605,44.7599,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.9252,43.5404,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.8730,58.7996,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.9573,57.9747,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.0605,44.3243,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.9252,43.7420,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.8730,57.8025,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.9573,56.9098,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.0605,44.0838,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.9252,43.0191,0.0575,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.8730,57.9919,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.9573,57.3360,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.0605,43.2177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.9252,42.2266,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.8730,57.0625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.9573,56.4728,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.0605,44.4521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.9252,43.4285,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.8730,58.9172,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.9573,58.7150,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.0605,44.2771,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.9252,43.6723,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.8730,58.7939,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.9573,58.5687,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.0605,44.0083,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.9252,44.6843,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.8730,58.4469,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.9573,57.9666,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.txt new file mode 100644 index 0000000..f280da3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=2 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.541 +effective_logical_fps=45.865 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=31.062 +p95_encode_latency_ms=59.810 +max_encode_latency_ms=105.426 +avg_steady_encode_latency_ms=31.684 +p95_steady_encode_latency_ms=59.810 +max_steady_encode_latency_ms=63.991 +avg_tile_encode_latency_ms=25.386 +p95_tile_encode_latency_ms=58.447 +avg_max_tile_encode_latency_ms=29.569 +p95_max_tile_encode_latency_ms=58.978 +avg_steady_max_tile_encode_latency_ms=30.380 +p95_steady_max_tile_encode_latency_ms=58.980 +payload_bytes=5100530 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2_logical.csv new file mode 100644 index 0000000..4b911a5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_inflight2_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.4263,29.7475,337552 +1,4,0,10.9860,10.5965,152351 +2,4,0,20.7810,20.5335,149416 +3,4,0,20.4358,20.1289,142089 +4,4,0,20.3010,20.0108,112777 +5,4,0,20.2417,19.9947,114708 +6,4,0,20.2365,19.9029,64955 +7,4,0,20.1827,19.8843,37587 +8,4,0,20.1438,19.8353,26109 +9,4,0,20.2030,19.8451,23201 +10,4,0,20.2107,19.8379,18705 +11,4,0,20.1934,19.8906,14742 +12,4,0,20.1824,19.8938,11738 +13,4,0,20.1974,19.8858,9530 +14,4,0,20.1931,19.8787,6611 +15,4,0,20.0667,19.6125,3979 +16,4,0,14.1711,13.7404,2445 +17,4,0,10.9310,10.2717,2516 +18,4,0,10.9441,10.2581,2602 +19,4,0,11.0328,10.4539,2599 +20,4,0,13.4519,12.6535,2598 +21,4,0,11.5777,10.3456,2598 +22,4,0,12.3155,10.8105,2598 +23,4,0,11.8624,10.5024,2598 +24,4,0,11.8560,10.3396,2598 +25,4,0,11.9429,10.5686,2598 +26,4,0,12.7829,10.6635,2598 +27,4,0,11.8551,10.1948,2598 +28,4,0,12.0494,9.2998,2598 +29,4,0,11.7970,9.9863,2598 +30,4,0,11.9308,10.0110,2598 +31,4,0,11.7672,9.9714,2598 +32,4,0,12.1629,10.2702,2598 +33,4,0,11.7874,10.0036,2598 +34,4,0,11.8925,9.9382,2598 +35,4,0,11.7896,10.9582,2598 +36,4,0,11.1840,10.3317,2598 +37,4,0,11.7508,10.3220,2598 +38,4,0,11.9874,10.7078,2598 +39,4,0,11.9737,10.6268,2598 +40,4,0,11.2513,10.4832,2598 +41,4,0,11.1278,10.3307,2598 +42,4,0,11.8773,10.2520,2598 +43,4,0,11.9939,10.0141,2598 +44,4,0,11.7390,10.2961,2598 +45,4,0,12.4685,9.4409,2598 +46,4,0,11.6476,10.1722,2598 +47,4,0,11.6626,10.2785,2598 +48,4,0,11.8403,10.4003,2598 +49,4,0,11.6405,10.4518,2598 +50,4,0,11.7899,10.4696,2598 +51,4,0,11.2899,10.2165,2598 +52,4,0,11.9521,10.8173,2598 +53,4,0,11.4678,10.1781,2598 +54,4,0,11.5605,10.4592,2598 +55,4,0,11.6147,10.5492,2598 +56,4,0,11.4505,10.2188,2598 +57,4,0,11.0046,10.1871,2598 +58,4,0,10.9405,10.1817,2598 +59,4,0,11.0302,10.3795,2598 +60,4,0,10.8780,10.2975,2598 +61,4,0,10.8419,10.2478,2598 +62,4,0,10.8955,10.3415,2598 +63,4,0,11.1037,10.4411,2598 +64,4,0,11.1641,10.5316,2598 +65,4,0,11.1200,10.5331,2598 +66,4,0,11.0330,10.4349,2598 +67,4,0,11.1554,10.3041,2598 +68,4,0,11.4068,10.1282,2598 +69,4,0,11.1800,10.2208,2598 +70,4,0,11.6068,9.8528,2598 +71,4,0,12.0493,10.5322,2598 +72,4,0,11.6574,10.3014,2598 +73,4,0,11.7171,10.2128,2598 +74,4,0,11.8677,9.8384,2598 +75,4,0,11.7782,10.1798,509392 +76,4,0,12.1121,9.9824,24883 +77,4,0,12.0290,10.2835,47613 +78,4,0,12.0762,10.2090,71527 +79,4,0,12.2058,10.6902,68958 +80,4,0,12.0893,10.6698,94555 +81,4,0,14.0165,12.5990,71830 +82,4,0,12.0243,10.2079,47124 +83,4,0,11.6957,10.4235,32913 +84,4,0,11.9138,10.0704,27481 +85,4,0,11.9550,10.0071,21594 +86,4,0,11.5450,10.1301,17229 +87,4,0,11.9259,10.5013,14517 +88,4,0,12.9857,10.9396,12404 +89,4,0,12.2687,10.0006,9822 +90,4,0,12.0145,10.0709,6553 +91,4,0,12.3166,10.6504,5621 +92,4,0,11.8119,10.5539,4570 +93,4,0,12.0270,10.0448,2531 +94,4,0,11.9400,9.9932,2524 +95,4,0,11.9624,10.8978,2601 +96,4,0,11.8157,10.2506,2599 +97,4,0,12.0334,10.0498,2598 +98,4,0,13.9557,10.0812,2598 +99,4,0,13.0002,11.8365,2598 +100,4,0,12.3327,10.2274,2598 +101,4,0,11.9207,10.0864,2598 +102,4,0,11.7514,9.9997,2598 +103,4,0,11.9978,9.9819,2598 +104,4,0,11.9082,10.0138,2598 +105,4,0,12.0718,8.0395,2598 +106,4,0,12.2545,10.9550,2598 +107,4,0,12.0409,10.0108,2598 +108,4,0,11.8963,9.9239,2598 +109,4,0,11.7778,10.0175,2598 +110,4,0,11.8684,10.3481,2598 +111,4,0,11.8773,10.1776,2598 +112,4,0,11.6815,9.9269,2598 +113,4,0,11.3071,10.5038,2598 +114,4,0,11.1031,10.1808,2598 +115,4,0,10.8548,10.3102,2598 +116,4,0,10.8999,10.3159,2598 +117,4,0,11.1039,10.6508,2598 +118,4,0,11.7214,10.0767,2598 +119,4,0,11.8246,10.4284,2598 +120,4,0,11.7313,9.9268,2598 +121,4,0,11.7540,9.9771,2598 +122,4,0,13.9580,10.4428,2598 +123,4,0,12.1585,11.1124,2598 +124,4,0,11.3637,10.1790,2598 +125,4,0,11.4191,10.5133,2598 +126,4,0,11.7544,10.5070,2598 +127,4,0,11.7635,10.2113,2598 +128,4,0,11.9136,10.0546,2598 +129,4,0,11.7449,10.2534,2598 +130,4,0,11.7255,10.0098,2598 +131,4,0,11.7640,9.8823,2598 +132,4,0,11.5661,10.2798,2598 +133,4,0,11.8483,10.0715,2598 +134,4,0,11.7084,10.0250,2598 +135,4,0,11.7064,10.1079,2598 +136,4,0,11.7737,10.5192,2598 +137,4,0,12.0062,9.9809,2598 +138,4,0,11.7453,10.0591,2598 +139,4,0,11.7972,9.9865,2598 +140,4,0,11.7531,9.9654,2598 +141,4,0,11.7260,10.0119,2598 +142,4,0,11.7149,9.7865,2598 +143,4,0,12.0067,10.1100,2598 +144,4,0,11.6929,9.9392,2598 +145,4,0,11.9555,9.9720,2598 +146,4,0,13.5577,9.9682,2598 +147,4,0,11.5626,10.3552,2598 +148,4,0,11.6013,10.2899,2598 +149,4,0,12.0501,9.9348,2598 +150,4,0,11.5106,9.6547,498961 +151,4,0,11.7380,10.3963,27992 +152,4,0,12.0131,10.5065,49831 +153,4,0,11.6322,10.3720,74776 +154,4,0,11.4160,10.4423,97363 +155,4,0,11.4282,10.4482,106276 +156,4,0,11.3491,10.3644,72005 +157,4,0,11.3013,10.1425,46710 +158,4,0,11.2300,10.1749,29899 +159,4,0,12.1856,10.6022,24990 +160,4,0,11.4963,10.3791,18955 +161,4,0,11.5539,10.4846,14889 +162,4,0,11.7860,10.4354,12187 +163,4,0,12.3976,11.3763,9555 +164,4,0,11.6933,10.2149,6103 +165,4,0,12.0132,10.5819,4541 +166,4,0,11.6613,10.2196,2543 +167,4,0,11.3085,10.2345,2530 +168,4,0,11.7002,10.5596,2601 +169,4,0,11.7145,10.3472,2599 +170,4,0,13.8153,12.1090,2598 +171,4,0,12.5102,11.0675,2598 +172,4,0,12.1736,10.6126,2598 +173,4,0,11.7629,10.4385,2598 +174,4,0,11.8501,10.5114,2598 +175,4,0,11.6356,10.5173,2598 +176,4,0,13.4286,10.6252,2598 +177,4,0,11.6310,10.3338,2598 +178,4,0,11.9167,10.2610,2598 +179,4,0,11.7790,10.5012,2598 +180,4,0,11.8849,10.3211,2598 +181,4,0,16.4227,14.7116,2598 +182,4,0,31.4552,30.0987,2598 +183,4,0,45.1536,44.4194,2598 +184,4,0,59.5923,58.7665,2598 +185,4,0,59.8387,59.3833,2598 +186,4,0,59.2722,58.7524,2598 +187,4,0,61.0998,60.2898,2598 +188,4,0,59.5058,58.4690,2598 +189,4,0,57.0944,56.1310,2598 +190,4,0,59.1569,58.2032,2598 +191,4,0,59.1442,58.3924,2598 +192,4,0,59.4124,58.5941,2598 +193,4,0,59.2047,58.5311,2598 +194,4,0,59.3053,58.1680,2598 +195,4,0,58.9144,57.8925,2598 +196,4,0,58.8697,57.4889,2598 +197,4,0,59.1615,58.3307,2598 +198,4,0,58.9274,57.9306,2598 +199,4,0,59.1581,58.3647,2598 +200,4,0,59.3360,58.2148,2598 +201,4,0,59.2853,58.4736,2598 +202,4,0,58.9438,57.6436,2598 +203,4,0,59.3619,58.6035,2598 +204,4,0,59.3680,58.6142,2598 +205,4,0,59.4042,58.6161,2598 +206,4,0,58.0786,56.3262,2598 +207,4,0,59.3385,58.4408,2598 +208,4,0,58.8751,57.7573,2598 +209,4,0,58.6297,57.4603,2598 +210,4,0,59.1705,58.0765,2598 +211,4,0,59.2438,58.0945,2598 +212,4,0,59.0816,57.9622,2598 +213,4,0,58.9986,57.6356,2598 +214,4,0,59.0529,57.5945,2598 +215,4,0,59.5602,58.4617,2598 +216,4,0,60.0645,58.9754,2598 +217,4,0,59.9902,58.9195,2598 +218,4,0,59.1302,57.5900,2598 +219,4,0,58.6684,57.3201,2598 +220,4,0,59.4768,58.3607,2598 +221,4,0,59.5563,58.2672,2598 +222,4,0,58.5291,57.3755,2598 +223,4,0,58.1502,56.2649,2598 +224,4,0,59.0839,57.9349,2598 +225,4,0,59.6525,58.4865,509662 +226,4,0,58.5486,57.4294,31095 +227,4,0,57.7583,55.9762,44547 +228,4,0,63.9914,63.0526,68237 +229,4,0,60.5080,59.6583,77607 +230,4,0,56.8526,55.9505,72384 +231,4,0,60.2148,59.0076,76535 +232,4,0,59.2742,58.2441,48789 +233,4,0,63.3274,62.2690,36606 +234,4,0,60.3740,59.7218,27960 +235,4,0,56.6477,55.9564,22315 +236,4,0,59.2169,58.3545,17904 +237,4,0,59.0343,57.8250,14580 +238,4,0,58.8612,57.8791,12493 +239,4,0,58.8345,57.7856,10174 +240,4,0,59.0523,57.9585,7785 +241,4,0,59.3405,58.1392,5590 +242,4,0,59.3365,58.2020,4482 +243,4,0,58.8240,57.6432,2533 +244,4,0,58.6231,57.5207,2525 +245,4,0,58.8708,57.6268,2601 +246,4,0,59.1630,57.7722,2599 +247,4,0,59.3832,58.2595,2598 +248,4,0,60.0904,58.9763,2598 +249,4,0,59.2390,57.9240,2598 +250,4,0,58.2619,57.1615,2598 +251,4,0,59.5662,58.4164,2598 +252,4,0,59.5968,58.4525,2598 +253,4,0,60.1289,58.6305,2598 +254,4,0,59.3995,57.8665,2598 +255,4,0,58.7663,57.7297,2598 +256,4,0,59.8426,59.0018,2598 +257,4,0,59.5646,58.1363,2598 +258,4,0,59.6365,58.1463,2598 +259,4,0,59.7367,58.7213,2598 +260,4,0,60.2829,59.7268,2598 +261,4,0,59.8083,59.1471,2598 +262,4,0,59.0930,57.8522,2598 +263,4,0,59.0843,58.2139,2598 +264,4,0,59.0532,57.8112,2598 +265,4,0,60.7249,59.6209,2598 +266,4,0,58.8518,57.7256,2598 +267,4,0,58.0414,56.7653,2598 +268,4,0,59.7043,58.6606,2598 +269,4,0,58.9803,57.6557,2598 +270,4,0,59.2533,58.5050,2598 +271,4,0,58.9970,57.6874,2598 +272,4,0,58.7308,57.3603,2598 +273,4,0,58.9151,57.5571,2598 +274,4,0,59.0840,57.9802,2598 +275,4,0,59.2017,58.0366,2598 +276,4,0,59.2910,58.1211,2598 +277,4,0,58.8812,57.6716,2598 +278,4,0,58.8606,57.3444,2598 +279,4,0,59.2258,58.5742,2598 +280,4,0,59.2479,58.7463,2598 +281,4,0,59.4147,58.9485,2598 +282,4,0,59.2994,58.9528,2598 +283,4,0,59.3526,59.0951,2598 +284,4,0,59.4063,59.1775,2598 +285,4,0,59.4462,58.9787,2598 +286,4,0,59.3295,58.9775,2598 +287,4,0,59.1397,58.7501,2598 +288,4,0,59.2114,58.9977,2598 +289,4,0,59.1060,58.2932,2598 +290,4,0,59.0365,58.1541,2598 +291,4,0,58.6667,57.8405,2598 +292,4,0,59.6879,58.3350,2598 +293,4,0,59.5290,58.7996,2598 +294,4,0,58.6773,57.8025,2598 +295,4,0,58.8513,57.9919,2598 +296,4,0,57.9922,57.0625,2598 +297,4,0,59.6839,58.9172,2598 +298,4,0,59.6841,58.7939,2598 +299,4,0,59.3967,58.4469,2598 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.csv new file mode 100644 index 0000000..86a32ed --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0356,24.6269,0.0423,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.9157,22.7955,0.0179,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,2.9361,25.6962,0.0187,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.7841,25.4200,0.0066,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.0356,5.9588,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.9157,5.7567,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,2.9361,10.6372,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.7841,10.5872,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.0356,15.5520,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.9157,15.4720,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,2.9361,20.4442,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.7841,20.4110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.0356,25.2800,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.9157,25.5757,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,2.9361,30.1902,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.7841,30.4920,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.0356,35.2358,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.9157,35.6590,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,2.9361,40.1370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.7841,40.8015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.0356,45.0326,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.9157,45.6767,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,2.9361,49.9314,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.7841,50.8650,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.0356,54.8241,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.9157,55.9919,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,2.9361,59.6544,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.7841,60.9297,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.0356,62.3374,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.9157,62.0187,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,2.9361,65.6383,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.7841,61.9316,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.0356,53.8811,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.9157,55.4101,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,2.9361,58.8796,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.7841,60.2926,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.0356,46.2848,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.9157,47.7947,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,2.9361,50.9562,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.7841,52.9053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.0356,40.0025,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.9157,41.8413,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,2.9361,45.0195,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.7841,46.6754,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.0356,33.5361,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.9157,35.1533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,2.9361,38.4741,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.7841,40.0657,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.0356,28.0945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.9157,29.5129,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,2.9361,32.7040,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.7841,34.3064,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.0356,22.5242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.9157,23.9744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,2.9361,27.2382,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.7841,28.8366,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.0356,13.5551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.9157,14.8918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,2.9361,18.0594,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.7841,19.6297,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.0356,10.1632,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.9157,11.5019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,2.9361,14.9416,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.7841,16.2510,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.0356,6.2961,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.9157,5.8432,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.9361,10.5592,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.7841,10.4612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.0356,6.0255,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.9157,5.7197,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.9361,10.6955,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.7841,10.5183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.0356,6.2804,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.9157,5.8459,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.9361,10.6443,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.7841,10.5846,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.0356,6.1337,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.9157,5.7003,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.9361,10.6163,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.7841,10.5253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.0356,6.1545,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.9157,5.7555,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.9361,10.7206,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.7841,10.5696,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.0356,6.3826,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.9157,5.8672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.9361,10.5312,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.7841,10.4421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.0356,5.8384,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.9157,5.6188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.9361,10.4649,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.7841,10.4465,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.0356,5.7879,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.9157,5.6224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.9361,10.3779,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.7841,10.3987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.0356,5.8359,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.9157,5.6047,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.9361,10.3355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.7841,10.3703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.0356,5.7842,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.9157,5.5727,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.9361,10.3119,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.7841,10.3341,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.0356,5.8062,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.9157,5.6012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.9361,10.3454,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.7841,10.2766,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.0356,5.8325,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.9157,5.6057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.9361,10.3051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.7841,10.2840,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.0356,5.8356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.9157,5.6166,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.9361,10.4805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.7841,10.4552,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.0356,5.7835,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.9157,5.6285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.9361,10.4967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.7841,10.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.0356,5.7492,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.9157,5.5807,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.9361,10.5855,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.7841,10.5325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.0356,6.3562,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.9157,5.6959,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.9361,10.5934,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,2.7841,10.4197,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.0356,6.2313,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.9157,5.7166,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.9361,10.4032,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.7841,10.3275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.0356,5.8282,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.9157,5.6016,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.9361,11.2101,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.7841,11.2243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.0356,6.5573,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.9157,5.9190,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.9361,10.1789,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.7841,10.1744,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.0356,6.3959,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.9157,5.9136,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.9361,10.0882,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.7841,10.1859,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.0356,6.4036,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.9157,5.9602,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.9361,10.1115,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.7841,10.3204,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.0356,6.2947,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.9157,5.8723,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.9361,10.0600,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.7841,10.0586,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.0356,6.1478,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.9157,5.7912,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.9361,9.5064,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.7841,9.6715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.0356,5.7415,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.9157,5.6407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.9361,10.0864,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.7841,10.1767,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.0356,5.6576,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.9157,5.5226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.9361,10.1247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.7841,10.1513,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.0356,5.7000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.9157,5.5502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.9361,10.4277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.7841,10.4030,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.0356,5.6733,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.9157,5.5382,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.9361,10.3424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,2.7841,10.3248,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.0356,5.6612,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.9157,5.5429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.9361,10.3369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.7841,10.3341,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.0356,5.6077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.9157,5.5350,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.9361,10.3429,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.7841,10.3163,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.0356,5.6434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.9157,5.5708,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.9361,10.3607,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.7841,10.3495,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.0356,5.6548,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.9157,5.6101,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.9361,10.2938,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.7841,10.3798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.0356,5.6204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.9157,5.5721,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.9361,10.4223,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.7841,10.4030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.0356,5.6390,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.9157,5.5325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.9361,10.4062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.7841,10.3805,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.0356,5.6281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.9157,5.5111,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.9361,10.3496,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.7841,10.3439,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.0356,5.8627,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.9157,5.6640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.9361,10.5150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.7841,10.4821,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.0356,5.7247,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.9157,5.5602,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.9361,10.4834,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.7841,10.4779,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.0356,5.7743,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.9157,5.6009,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.9361,10.3740,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.7841,10.4321,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.0356,5.6748,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.9157,5.6240,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.9361,10.3213,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.7841,10.4069,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.0356,5.6289,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.9157,5.4920,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.9361,10.2538,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.7841,10.2870,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.0356,5.5904,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.9157,5.5143,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.9361,10.2812,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.7841,10.3260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.0356,5.7820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.9157,5.6152,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.9361,10.4916,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.7841,10.4748,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.0356,5.7505,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.9157,5.5317,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.9361,10.2577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.7841,10.2616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.0356,5.6587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.9157,5.5400,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.9361,10.4078,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.7841,10.3619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.0356,5.7953,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.9157,5.5902,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.9361,10.5115,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.7841,10.4811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.0356,5.8642,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.9157,5.5644,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.9361,10.3628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.7841,10.3032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.0356,5.9631,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.9157,5.6467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.9361,10.3895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.7841,10.3153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.0356,5.7123,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.9157,5.5456,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.9361,10.4893,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.7841,10.3938,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.0356,6.1985,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.9157,5.7470,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.9361,10.5183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.7841,10.4125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.0356,5.9260,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.9157,5.6682,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.9361,10.2323,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.7841,10.2039,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.0356,5.7552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.9157,5.5260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.9361,10.2652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.7841,10.2018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.0356,5.8956,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.9157,5.5812,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.9361,10.3041,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.7841,10.2658,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.0356,5.6812,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.9157,5.5705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.9361,10.2958,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.7841,10.2983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.0356,5.7963,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.9157,5.6146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.9361,10.3459,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.7841,10.2849,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.0356,5.7462,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.9157,5.5950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.9361,10.2002,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.7841,10.2043,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.0356,5.7380,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.9157,5.6266,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.9361,10.2127,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.7841,10.1984,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.0356,6.3992,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.9157,5.9693,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.9361,9.0330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.7841,9.2237,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.0356,5.8661,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.9157,5.6752,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.9361,10.2353,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.7841,10.1700,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.0356,7.1103,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.9157,7.2424,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.9361,10.6517,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.7841,10.5372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.0356,6.3575,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.9157,5.7398,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.9361,10.1388,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.7841,10.1166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.0356,7.3114,0.0994,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +301,2.9157,7.0723,0.0672,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +302,2.9361,9.9967,0.1293,0.0000,0,0,0.0000,0,0.0000,0,1,0,140314,0 +303,2.7841,10.1432,0.0498,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +304,5.0356,6.9616,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +305,2.9157,6.0309,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +306,2.9361,10.3618,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4542,0 +307,2.7841,9.9773,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +308,5.0356,7.6287,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +309,2.9157,6.6986,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +310,2.9361,10.1167,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,15515,0 +311,2.7841,10.1814,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +312,5.0356,6.4761,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +313,2.9157,5.8531,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +314,2.9361,9.7371,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,20404,0 +315,2.7841,10.1929,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +316,5.0356,6.5245,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +317,2.9157,6.2405,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +318,2.9361,10.6156,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,23918,0 +319,2.7841,10.5796,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +320,5.0356,6.7137,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +321,2.9157,5.9062,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +322,2.9361,9.9705,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,34414,0 +323,2.7841,9.5638,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +324,5.0356,6.1325,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +325,2.9157,5.7511,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +326,2.9361,10.4220,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,13115,0 +327,2.7841,10.1971,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +328,5.0356,6.0343,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +329,2.9157,5.8114,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +330,2.9361,10.0512,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8572,0 +331,2.7841,10.2276,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +332,5.0356,6.0380,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +333,2.9157,5.7788,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +334,2.9361,10.5759,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +335,2.7841,10.3175,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +336,5.0356,6.2301,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +337,2.9157,7.2250,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +338,2.9361,10.1424,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,7123,0 +339,2.7841,10.2621,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +340,5.0356,6.4912,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +341,2.9157,5.7747,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +342,2.9361,10.6945,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +343,2.7841,10.4663,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +344,5.0356,9.5868,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +345,2.9157,9.0261,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +346,2.9361,10.3389,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4621,0 +347,2.7841,10.2024,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +348,5.0356,6.7590,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +349,2.9157,5.9813,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +350,2.9361,10.1917,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4247,0 +351,2.7841,10.1441,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +352,5.0356,7.1819,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +353,2.9157,6.0762,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +354,2.9361,10.0108,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +355,2.7841,10.1017,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +356,5.0356,6.0682,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +357,2.9157,5.7519,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +358,2.9361,10.2750,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +359,2.7841,10.2264,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +360,5.0356,6.1537,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +361,2.9157,5.7371,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.9361,10.5478,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +363,2.7841,10.3219,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +364,5.0356,6.3712,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +365,2.9157,5.7538,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.9361,10.6862,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +367,2.7841,10.4866,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +368,5.0356,6.6414,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +369,2.9157,5.7598,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.9361,10.5575,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +371,2.7841,10.3855,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +372,5.0356,7.0267,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.9157,6.0360,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.9361,10.7380,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +375,2.7841,10.7498,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +376,5.0356,6.2680,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.9157,5.8412,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.9361,10.1318,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.7841,10.1435,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +380,5.0356,6.4211,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.9157,5.9656,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.9361,10.0930,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.7841,10.1973,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.0356,6.3338,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.9157,5.9526,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.9361,10.5534,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.7841,10.3575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +388,5.0356,6.2414,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.9157,5.8260,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.9361,10.5747,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.7841,10.3922,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.0356,6.4089,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.9157,5.8185,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.9361,11.8306,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.7841,11.4739,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.0356,6.1450,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.9157,5.6978,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.9361,10.3917,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.7841,10.2640,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.0356,6.3632,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.9157,5.8587,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.9361,10.4629,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.7841,10.4128,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.0356,6.2955,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.9157,5.9552,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.9361,10.3903,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.7841,10.2875,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.0356,6.3564,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.9157,5.7863,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.9361,9.8891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.7841,9.9455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.0356,6.3539,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.9157,5.8420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.9361,10.4508,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.7841,10.3475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.0356,6.2637,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.9157,5.7113,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.9361,10.3225,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.7841,10.2797,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.0356,6.3283,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.9157,5.7787,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.9361,10.3422,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.7841,10.2991,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.0356,6.7702,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.9157,5.7712,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.9361,10.0407,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.7841,9.9011,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.0356,6.4923,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.9157,5.8818,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.9361,9.9685,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.7841,10.1406,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.0356,6.3252,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.9157,5.8054,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.9361,9.1778,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.7841,9.9074,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.0356,6.5270,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.9157,5.8973,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.9361,9.9591,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.7841,9.9765,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.0356,6.4087,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.9157,5.8695,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.9361,10.0500,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.7841,10.0330,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.0356,6.5542,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.9157,5.7811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.9361,10.4618,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.7841,10.2852,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.0356,6.6189,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.9157,5.7540,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.9361,10.4897,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.7841,10.3050,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.0356,7.4134,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.9157,6.2677,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.9361,10.0465,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.7841,9.7574,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.0356,6.5302,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.9157,5.8735,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.9361,9.8164,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.7841,10.0233,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.0356,6.3366,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.9157,5.7984,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.9361,10.1343,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.7841,10.6164,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.0356,7.1370,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.9157,6.2186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.9361,10.0082,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.7841,9.8979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.0356,6.5070,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.9157,5.7812,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.9361,9.7963,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.7841,9.9460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.0356,6.4001,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.9157,5.8785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.9361,10.0092,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.7841,10.0492,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.0356,6.3568,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.9157,5.8402,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.9361,10.9067,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.7841,11.0260,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.0356,6.3434,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.9157,5.7362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.9361,10.1679,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.7841,10.1840,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.0356,6.5173,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.9157,5.8082,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.9361,9.8380,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.7841,9.7968,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.0356,6.3952,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.9157,5.8110,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.9361,10.0538,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.7841,9.9854,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.0356,6.9210,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.9157,6.0600,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.9361,10.4400,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.7841,10.2752,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.0356,6.4665,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.9157,5.9184,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.9361,10.4431,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.7841,9.9972,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.0356,6.3454,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.9157,5.8485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.9361,9.9018,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.7841,10.2243,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.0356,6.6329,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.9157,5.7821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.9361,9.9215,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.7841,9.8858,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.0356,6.2880,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.9157,5.7633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.9361,9.8119,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.7841,9.9661,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.0356,6.6162,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.9157,5.8856,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.9361,10.9624,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.7841,10.7021,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.0356,6.4887,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.9157,5.8052,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.9361,10.1940,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.7841,9.9943,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.0356,6.3599,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.9157,5.7836,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.9361,9.7948,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.7841,9.9205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.0356,6.4707,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.9157,5.7970,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.9361,9.9399,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.7841,9.9920,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.0356,6.3172,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.9157,5.9190,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.9361,9.7637,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.7841,9.9470,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.0356,6.3433,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.9157,5.8370,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.9361,10.0803,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.7841,9.8688,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.0356,6.3480,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.9157,5.8552,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.9361,9.8227,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.7841,9.9209,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.0356,6.5852,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.9157,5.8440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.9361,10.3938,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.7841,10.2377,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.0356,6.5595,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.9157,5.8814,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.9361,9.9430,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.7841,9.9650,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.0356,6.2230,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.9157,5.9420,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.9361,9.8876,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.7841,10.0319,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.0356,6.3508,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.9157,5.7690,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.9361,9.8697,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.7841,9.9443,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.0356,6.2785,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.9157,5.9167,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.9361,9.8778,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.7841,9.9808,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.0356,6.5958,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.9157,5.7313,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.9361,10.2517,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.7841,10.1600,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.0356,6.2371,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.9157,5.7266,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.9361,10.3135,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.7841,10.1996,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.0356,5.7200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.9157,5.6377,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.9361,10.1039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.7841,10.2360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.0356,5.7534,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.9157,5.6614,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.9361,10.1854,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.7841,10.2014,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.0356,6.3793,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.9157,5.7091,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.9361,14.9155,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.7841,14.7759,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.0356,6.1073,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.9157,5.6480,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.9361,9.9604,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.7841,10.1973,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.0356,6.3578,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.9157,5.8554,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.9361,9.8776,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.7841,10.0211,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.0356,6.3932,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.9157,5.7505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.9361,11.8445,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.7841,11.6249,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.0356,6.4887,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.9157,5.7813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.9361,9.9976,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.7841,9.9978,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.0356,6.3735,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.9157,5.8645,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.9361,9.9403,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.7841,10.0215,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.0356,6.6505,0.0697,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,2.9157,5.8256,0.0553,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,2.9361,9.7572,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,141143,0 +603,2.7841,10.2345,0.3503,0.0000,0,0,0.0000,0,0.0000,0,1,0,129787,0 +604,5.0356,6.8713,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,2.9157,5.9765,0.0402,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,2.9361,9.9993,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,11680,0 +607,2.7841,9.9713,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,6316,0 +608,5.0356,9.0579,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,2.9157,8.5230,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,2.9361,10.4191,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,17270,0 +611,2.7841,10.2681,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15546,0 +612,5.0356,6.6570,0.0781,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,2.9157,5.8983,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,2.9361,9.9976,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,22985,0 +615,2.7841,10.3253,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,27318,0 +616,5.0356,6.7559,0.0684,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +617,2.9157,5.8479,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,2.9361,10.0482,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,27672,0 +619,2.7841,10.6092,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,33840,0 +620,5.0356,6.5352,0.0619,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +621,2.9157,5.9600,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +622,2.9361,10.0369,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,29161,0 +623,2.7841,9.9673,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,37974,0 +624,5.0356,6.7575,0.0570,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +625,2.9157,5.8885,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +626,2.9361,9.9759,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,22449,0 +627,2.7841,9.9985,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,17646,0 +628,5.0356,6.6483,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +629,2.9157,5.8077,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +630,2.9361,9.5760,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,14554,0 +631,2.7841,11.5173,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,12997,0 +632,5.0356,7.3802,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +633,2.9157,6.3271,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +634,2.9361,10.0388,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,9321,0 +635,2.7841,10.1413,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8097,0 +636,5.0356,6.4610,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +637,2.9157,6.2084,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +638,2.9361,10.4060,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,6401,0 +639,2.7841,10.2718,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9065,0 +640,5.0356,6.5462,0.0550,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +641,2.9157,5.8501,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +642,2.9361,10.3127,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +643,2.7841,10.2090,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6728,0 +644,5.0356,6.9618,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +645,2.9157,5.9526,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +646,2.9361,10.1125,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4198,0 +647,2.7841,10.1671,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5433,0 +648,5.0356,6.3117,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +649,2.9157,5.8028,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +650,2.9361,9.7595,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3263,0 +651,2.7841,10.0439,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4687,0 +652,5.0356,6.5286,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +653,2.9157,7.3588,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +654,2.9361,10.1937,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +655,2.7841,10.0438,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,4128,0 +656,5.0356,6.4090,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +657,2.9157,5.6738,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +658,2.9361,10.1431,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +659,2.7841,12.4827,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3566,0 +660,5.0356,6.4943,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +661,2.9157,5.7477,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.9361,10.2460,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +663,2.7841,10.2982,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +664,5.0356,6.5547,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +665,2.9157,5.7699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.9361,9.9288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +667,2.7841,9.9539,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +668,5.0356,6.2503,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +669,2.9157,5.7744,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.9361,9.8759,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +671,2.7841,10.0378,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +672,5.0356,6.2293,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.9157,5.7637,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.9361,9.9356,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.7841,10.0634,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +676,5.0356,6.3711,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.9157,5.7412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.9361,9.6418,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.7841,9.9980,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +680,5.0356,6.3615,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.9157,5.7662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.9361,10.2536,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.7841,10.0020,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.0356,6.7055,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.9157,5.8245,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.9361,9.9134,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.7841,9.9150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.0356,6.3707,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.9157,5.7642,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.9361,10.1924,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.7841,10.2598,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.0356,6.3455,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.9157,5.8555,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.9361,9.8198,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.7841,10.4270,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.0356,6.7497,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.9157,6.0015,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.9361,9.9405,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.7841,10.0127,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.0356,6.3885,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.9157,5.8136,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.9361,10.2670,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.7841,10.0792,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.0356,7.7640,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.9157,6.7269,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.9361,10.1487,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.7841,9.8338,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.0356,6.5194,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.9157,5.8971,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.9361,9.8042,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.7841,10.0913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.0356,6.3917,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.9157,5.9300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.9361,10.7391,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.7841,10.5527,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.0356,6.6718,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.9157,5.9653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.9361,10.6269,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.7841,10.2355,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.0356,6.6320,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.9157,5.8222,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.9361,10.5659,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.7841,10.4062,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.0356,6.8222,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.9157,5.8154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.9361,14.4625,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.7841,14.6005,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.0356,16.3685,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.9157,15.7308,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.9361,31.0203,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.7841,30.7162,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.0356,30.7944,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.9157,30.4045,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.9361,41.0153,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.7841,40.9340,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.0356,39.9817,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.9157,38.5955,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.9361,49.3345,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.7841,49.0032,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.0356,42.4857,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.9157,41.8475,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.9361,51.6889,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.7841,51.2771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.0356,43.6298,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.9157,42.4716,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.9361,51.9974,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.7841,51.6915,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.0356,49.0619,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.9157,48.1872,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.9361,57.1285,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.7841,57.1401,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.0356,48.5677,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.9157,48.2837,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.9361,57.1681,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.7841,57.6680,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.0356,51.5655,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.9157,51.6412,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.9361,60.3380,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.7841,60.5691,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.0356,54.3203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.9157,54.5120,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.9361,63.0690,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.7841,63.3485,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.0356,57.3592,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.9157,57.8775,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.9361,66.3870,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.7841,66.6713,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.0356,62.2068,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.9157,61.7811,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.9361,69.7037,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.7841,70.1997,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.0356,62.6991,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.9157,62.5467,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.9361,71.2505,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.7841,71.7629,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.0356,65.3548,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.9157,65.5788,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.9361,74.4977,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.7841,74.5164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.0356,70.0478,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.9157,69.9355,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.9361,79.0965,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.7841,78.9415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.0356,72.3194,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.9157,72.3816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.9361,81.2160,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.7841,81.5079,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.0356,74.5318,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.9157,74.7300,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.9361,83.5721,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.7841,83.8661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.0356,79.3694,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.9157,79.4879,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.9361,88.5656,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.7841,89.1770,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.0356,82.5210,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.9157,82.7680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.9361,91.6984,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.7841,92.6124,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.0356,86.0870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.9157,87.1616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.9361,95.8340,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.7841,96.5106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.0356,85.6357,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.9157,86.5253,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.9361,94.9659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.7841,96.0405,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.0356,89.2912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.9157,90.2490,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.9361,98.5370,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.7841,99.6384,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.0356,91.3600,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.9157,92.7435,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.9361,100.6541,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.7841,102.2193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.0356,96.1875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.9157,97.6041,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.9361,105.5410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.7841,107.0534,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.0356,97.2092,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.9157,98.5684,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.9361,106.6976,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.7841,108.0995,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.0356,102.7316,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.9157,103.9551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.9361,112.1200,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.7841,113.3528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.0356,105.7393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.9157,106.7763,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.9361,115.0527,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.7841,116.2887,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.0356,104.5046,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.9157,105.7804,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.9361,114.0554,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.7841,115.3377,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.0356,108.2660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.9157,109.4559,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.9361,117.7920,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.7841,117.9888,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.0356,112.3795,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.9157,113.5293,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.9361,121.9108,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.7841,117.9665,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.0356,116.7903,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.9157,117.7073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.9361,124.8240,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.7841,117.7704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.0356,118.4776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.9157,117.7858,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.9361,124.8842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.7841,117.7003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.0356,121.8139,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.9157,117.6597,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.9361,124.9742,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.7841,117.6174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.0356,125.0449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.9157,117.7036,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.9361,125.0100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.7841,117.6141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.0356,125.0156,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.9157,117.5211,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.9361,125.0197,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.7841,117.4510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.0356,125.0449,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.9157,117.5067,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.9361,125.1487,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.7841,117.4459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.0356,125.1518,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.9157,117.3593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.9361,125.1458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.7841,117.4455,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.0356,125.1988,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.9157,117.2549,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.9361,125.2009,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.7841,117.2679,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.0356,125.2431,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.9157,117.2783,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.9361,125.2823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.7841,117.1791,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.0356,125.3528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.9157,117.1866,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.9361,125.3441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.7841,117.1971,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.0356,125.4917,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.9157,117.1950,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.9361,125.5396,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.7841,117.2030,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.0356,125.7053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.9157,117.1818,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.9361,125.6662,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.7841,117.0484,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.0356,125.7095,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.9157,117.0023,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.9361,125.7563,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.7841,117.0787,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.0356,125.7968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.9157,117.0662,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.9361,125.7635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.7841,117.0330,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.0356,125.6230,0.0484,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +901,2.9157,116.7070,0.0185,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +902,2.9361,125.4891,0.0166,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +903,2.7841,116.4747,0.0397,0.0000,0,0,0.0000,0,0.0000,0,1,0,141047,0 +904,5.0356,125.3003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +905,2.9157,116.3135,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +906,2.9361,125.3520,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +907,2.7841,116.2690,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10345,0 +908,5.0356,125.4665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +909,2.9157,116.1513,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +910,2.9361,125.6154,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +911,2.7841,116.3541,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15083,0 +912,5.0356,125.5329,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +913,2.9157,116.2080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +914,2.9361,125.6995,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,17114,0 +915,2.7841,116.3854,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,26650,0 +916,5.0356,125.9164,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,25945,0 +917,2.9157,116.4803,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +918,2.9361,125.7323,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,32567,0 +919,2.7841,116.4189,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9189,0 +920,5.0356,125.7571,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,26013,0 +921,2.9157,116.3551,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,13128,0 +922,2.9361,125.7386,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12243,0 +923,2.7841,116.3949,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21000,0 +924,5.0356,125.7752,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,20752,0 +925,2.9157,116.4675,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +926,2.9361,126.0323,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17820,0 +927,2.7841,116.6818,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26805,0 +928,5.0356,126.1467,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,11808,0 +929,2.9157,116.8544,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7351,0 +930,2.9361,126.4616,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10237,0 +931,2.7841,116.8511,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19393,0 +932,5.0356,126.4415,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +933,2.9157,116.8593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4161,0 +934,2.9361,126.5512,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9857,0 +935,2.7841,116.7828,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14268,0 +936,5.0356,126.2433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6423,0 +937,2.9157,116.8080,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3101,0 +938,2.9361,126.4252,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +939,2.7841,116.7310,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,10834,0 +940,5.0356,126.6817,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +941,2.9157,116.9297,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +942,2.9361,126.9213,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,6084,0 +943,2.7841,117.4706,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9061,0 +944,5.0356,126.8261,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4395,0 +945,2.9157,117.2887,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +946,2.9361,127.0102,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,5296,0 +947,2.7841,117.3964,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,7350,0 +948,5.0356,129.4832,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +949,2.9157,119.8685,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,2.9361,126.7118,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4310,0 +951,2.7841,117.1429,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,6033,0 +952,5.0356,127.0773,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +953,2.9157,117.3949,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +954,2.9361,126.8056,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3919,0 +955,2.7841,117.2181,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5263,0 +956,5.0356,126.4545,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +957,2.9157,116.9256,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +958,2.9361,126.6464,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3272,0 +959,2.7841,116.7973,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +960,5.0356,126.4137,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +961,2.9157,116.9576,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.9361,126.6446,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2280,0 +963,2.7841,116.8684,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4262,0 +964,5.0356,126.4100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +965,2.9157,116.3422,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.9361,125.9469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +967,2.7841,115.8329,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +968,5.0356,125.4568,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +969,2.9157,116.2905,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.9361,125.6295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,612,0 +971,2.7841,116.0921,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2657,0 +972,5.0356,125.3284,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.9157,113.0245,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.9361,122.3910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +975,2.7841,116.4742,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,629,0 +976,5.0356,125.9297,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.9157,116.1040,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.9361,125.2033,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +979,2.7841,116.3999,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +980,5.0356,125.8284,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.9157,117.0913,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.9361,126.6040,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.7841,117.0561,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.0356,126.6263,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.9157,117.1475,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.9361,126.6907,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.7841,117.1628,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +988,5.0356,126.7923,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.9157,117.2626,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.9361,127.1256,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.7841,117.4595,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.0356,126.9958,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.9157,117.2159,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.9361,126.8063,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.7841,117.1522,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.0356,126.7821,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.9157,117.2488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.9361,126.9440,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.7841,117.2272,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.0356,127.0098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.9157,117.3973,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.9361,127.0582,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.7841,117.3290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.0356,127.0627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.9157,117.2382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.9361,126.8053,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.7841,117.2754,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.0356,126.8608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.9157,117.1109,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.9361,126.8121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.7841,117.1807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.0356,126.7489,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.9157,117.1061,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.9361,126.7496,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.7841,116.7445,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.0356,126.2897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.9157,116.8571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.9361,126.3229,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.7841,116.8108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.0356,126.4576,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.9157,116.7867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.9361,129.9980,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.7841,120.8962,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.0356,128.1601,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.9157,118.3780,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.9361,126.4371,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.7841,116.7736,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.0356,126.1006,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.9157,116.4485,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.9361,126.8056,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.7841,117.0648,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.0356,126.6054,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.9157,117.0328,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.9361,126.6111,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.7841,116.8282,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.0356,126.4803,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.9157,116.9279,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.9361,126.7020,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.7841,117.1305,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.0356,126.7428,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.9157,116.9767,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.9361,126.5652,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.7841,117.0627,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.0356,126.5639,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.9157,116.8403,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.9361,126.4249,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.7841,112.6883,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.0356,122.1225,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.9157,114.7240,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.9361,123.9385,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.7841,116.2740,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.0356,125.6511,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.9157,116.5366,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.9361,125.8117,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.7841,115.0824,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.0356,124.3996,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.9157,115.5200,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.9361,124.9927,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.7841,115.6890,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.0356,125.1303,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.9157,115.7656,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.9361,125.1227,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.7841,115.6249,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0356,124.8112,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.9157,114.5607,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.9361,123.6657,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.7841,115.6499,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.0356,126.7825,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.9157,117.4801,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.9361,125.4630,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.7841,115.9044,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.0356,125.2733,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.9157,115.7965,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.9361,125.0061,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.7841,115.9090,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.0356,125.1714,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.9157,115.9145,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.9361,125.8234,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.7841,116.8387,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.0356,125.7884,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.9157,116.4642,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.9361,126.9290,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.7841,117.0097,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.0356,125.9578,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.9157,116.0542,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.9361,126.6385,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.7841,116.6376,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.0356,125.3071,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.9157,116.0687,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.9361,125.1703,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.7841,115.9360,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.0356,130.0503,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.9157,118.7273,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.9361,123.6820,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.7841,115.4458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.0356,125.4090,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.9157,116.2894,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.9361,125.6533,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.7841,115.8369,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.0356,125.3288,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.9157,115.9620,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.9361,125.3355,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.7841,114.4599,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.0356,121.8534,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.9157,115.8660,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.9361,125.4087,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.7841,112.7512,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.0356,123.6295,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.9157,117.1813,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.9361,125.3453,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.7841,115.0768,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.0356,124.2925,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.9157,115.9487,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.9361,125.2992,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.7841,116.4821,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.0356,126.0032,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.9157,111.3845,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.9361,120.4575,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.7841,116.5962,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.0356,126.7812,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.9157,117.2215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.9361,125.3173,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.7841,116.5833,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.0356,126.2415,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.9157,116.7895,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.9361,126.3889,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.7841,116.8408,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.0356,126.1331,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.9157,116.6947,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.9361,126.4495,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.7841,117.3393,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.0356,126.2880,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.9157,115.0760,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.9361,124.3209,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.7841,116.3515,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.0356,125.9159,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.9157,116.6296,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.9361,126.1531,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.7841,116.6797,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.0356,126.2837,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.9157,116.6903,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.9361,125.0803,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.7841,117.0970,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.0356,126.6885,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.9157,114.9566,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.9361,124.5221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.7841,117.1571,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.0356,126.9361,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.9157,117.1123,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.9361,126.2486,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.7841,116.8820,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.0356,127.0342,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.9157,117.9833,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.9361,126.6947,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.7841,116.7031,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.0356,126.1219,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.9157,116.6982,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.9361,126.2225,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.7841,116.9880,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.0356,126.5014,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.9157,117.0320,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.9361,126.9168,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.7841,117.2651,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.0356,126.3035,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.9157,116.5521,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.9361,126.3625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.7841,116.7199,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.0356,126.3424,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.9157,116.7477,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.9361,126.1546,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.7841,116.1409,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.0356,125.5670,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.9157,116.1125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.9361,124.8803,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.7841,116.4270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.0356,125.4914,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.9157,115.9043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.9361,125.2078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.7841,116.4706,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.0356,125.7597,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.9157,116.3750,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.9361,124.9411,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.7841,116.2559,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.0356,125.6488,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.9157,116.1136,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.9361,125.0037,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.7841,115.8566,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.0356,125.7562,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.9157,116.3790,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.9361,126.4742,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.7841,115.9677,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.0356,131.1521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.9157,120.4000,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.9361,136.3307,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.7841,125.6842,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.0356,143.5723,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.9157,133.8225,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.9361,146.3467,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.7841,135.4759,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.txt new file mode 100644 index 0000000..fd5b336 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.378 +effective_logical_fps=55.780 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=57.076 +p95_encode_latency_ms=136.617 +max_encode_latency_ms=156.498 +avg_steady_encode_latency_ms=58.539 +p95_steady_encode_latency_ms=136.622 +max_steady_encode_latency_ms=156.498 +avg_tile_encode_latency_ms=49.851 +p95_tile_encode_latency_ms=126.442 +avg_max_tile_encode_latency_ms=53.187 +p95_max_tile_encode_latency_ms=126.929 +avg_steady_max_tile_encode_latency_ms=54.676 +p95_steady_max_tile_encode_latency_ms=126.936 +payload_bytes=5100530 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited_logical.csv new file mode 100644 index 0000000..130a397 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/120mbps_unlimited_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,98.9430,25.6962,337552 +1,4,0,11.1571,10.6372,152351 +2,4,0,20.7188,20.4442,149416 +3,4,0,30.7688,30.4920,142089 +4,4,0,41.0142,40.8015,112777 +5,4,0,51.0702,50.8650,114708 +6,4,0,61.1509,60.9297,64955 +7,4,0,68.7472,65.6383,37587 +8,4,0,60.5630,60.2926,26109 +9,4,0,53.2978,52.9053,23201 +10,4,0,47.0558,46.6754,18705 +11,4,0,40.4098,40.0657,14742 +12,4,0,34.8574,34.3064,11738 +13,4,0,29.3263,28.8366,9530 +14,4,0,20.2720,19.6297,6611 +15,4,0,16.8928,16.2510,3979 +16,4,0,11.3758,10.5592,2445 +17,4,0,11.4236,10.6955,2516 +18,4,0,11.5008,10.6443,2602 +19,4,0,11.3726,10.6163,2599 +20,4,0,11.5185,10.7206,2598 +21,4,0,11.3964,10.5312,2598 +22,4,0,11.0295,10.4649,2598 +23,4,0,10.9765,10.3987,2598 +24,4,0,11.0677,10.3703,2598 +25,4,0,10.9920,10.3341,2598 +26,4,0,10.9458,10.3454,2598 +27,4,0,10.9892,10.3051,2598 +28,4,0,11.0305,10.4805,2598 +29,4,0,10.9364,10.4967,2598 +30,4,0,10.9675,10.5855,2598 +31,4,0,11.5785,10.5934,2598 +32,4,0,11.2250,10.4032,2598 +33,4,0,11.8229,11.2243,2598 +34,4,0,12.0002,10.1789,2598 +35,4,0,11.9477,10.1859,2598 +36,4,0,12.0240,10.3204,2598 +37,4,0,11.6550,10.0600,2598 +38,4,0,11.6245,9.6715,2598 +39,4,0,11.0518,10.1767,2598 +40,4,0,10.7748,10.1513,2598 +41,4,0,10.9639,10.4277,2598 +42,4,0,10.8267,10.3424,2598 +43,4,0,10.8355,10.3369,2598 +44,4,0,10.7831,10.3429,2598 +45,4,0,10.8541,10.3607,2598 +46,4,0,10.9134,10.3798,2598 +47,4,0,10.9055,10.4223,2598 +48,4,0,10.8394,10.4062,2598 +49,4,0,10.7904,10.3496,2598 +50,4,0,10.9427,10.5150,2598 +51,4,0,10.8966,10.4834,2598 +52,4,0,10.9364,10.4321,2598 +53,4,0,10.8885,10.4069,2598 +54,4,0,10.7678,10.2870,2598 +55,4,0,10.8052,10.3260,2598 +56,4,0,10.9306,10.4916,2598 +57,4,0,10.8438,10.2616,2598 +58,4,0,10.9143,10.4078,2598 +59,4,0,11.0032,10.5115,2598 +60,4,0,10.9840,10.3628,2598 +61,4,0,11.0333,10.3895,2598 +62,4,0,10.9728,10.4893,2598 +63,4,0,11.3350,10.5183,2598 +64,4,0,11.0682,10.2323,2598 +65,4,0,10.8960,10.2652,2598 +66,4,0,10.9542,10.3041,2598 +67,4,0,10.8528,10.2983,2598 +68,4,0,10.9710,10.3459,2598 +69,4,0,10.9242,10.2043,2598 +70,4,0,10.9902,10.2127,2598 +71,4,0,12.4334,9.2237,2598 +72,4,0,11.1229,10.2353,2598 +73,4,0,11.4338,10.6517,2598 +74,4,0,11.6671,10.1388,2598 +75,4,0,11.7922,10.1432,509392 +76,4,0,11.7594,10.3618,24883 +77,4,0,11.7375,10.1814,47613 +78,4,0,12.1862,10.1929,71527 +79,4,0,11.7544,10.6156,68958 +80,4,0,12.3056,9.9705,94555 +81,4,0,11.2091,10.4220,71830 +82,4,0,11.4192,10.2276,47124 +83,4,0,11.4902,10.5759,32913 +84,4,0,11.8182,10.2621,27481 +85,4,0,12.4326,10.6945,21594 +86,4,0,11.4829,10.3389,17229 +87,4,0,11.8130,10.1917,14517 +88,4,0,11.9137,10.1017,12404 +89,4,0,11.2953,10.2750,9822 +90,4,0,11.3616,10.5478,6553 +91,4,0,11.6377,10.6862,5621 +92,4,0,11.8694,10.5575,4570 +93,4,0,12.3615,10.7498,2531 +94,4,0,11.8212,10.1435,2524 +95,4,0,12.0625,10.1973,2601 +96,4,0,11.9511,10.5534,2599 +97,4,0,11.5438,10.5747,2598 +98,4,0,12.7205,11.8306,2598 +99,4,0,11.3942,10.3917,2598 +100,4,0,11.6452,10.4629,2598 +101,4,0,11.3104,10.3903,2598 +102,4,0,11.7372,9.9455,2598 +103,4,0,11.5353,10.4508,2598 +104,4,0,11.6347,10.3225,2598 +105,4,0,11.6658,10.3422,2598 +106,4,0,11.9289,10.0407,2598 +107,4,0,11.8262,10.1406,2598 +108,4,0,12.5715,9.9074,2598 +109,4,0,11.8785,9.9765,2598 +110,4,0,11.8122,10.0500,2598 +111,4,0,12.0898,10.4618,2598 +112,4,0,11.7477,10.4897,2598 +113,4,0,12.0934,10.0465,2598 +114,4,0,12.0666,10.0233,2598 +115,4,0,12.3730,10.6164,2598 +116,4,0,11.8828,10.0082,2598 +117,4,0,11.9292,9.9460,2598 +118,4,0,11.8455,10.0492,2598 +119,4,0,12.7625,11.0260,2598 +120,4,0,11.7311,10.1840,2598 +121,4,0,11.9688,9.8380,2598 +122,4,0,11.7792,10.0538,2598 +123,4,0,11.7671,10.4400,2598 +124,4,0,11.9531,10.4431,2598 +125,4,0,11.8237,10.2243,2598 +126,4,0,12.0648,9.9215,2598 +127,4,0,11.6922,9.9661,2598 +128,4,0,12.7887,10.9624,2598 +129,4,0,11.9811,10.1940,2598 +130,4,0,11.7563,9.9205,2598 +131,4,0,11.8833,9.9920,2598 +132,4,0,11.8055,9.9470,2598 +133,4,0,11.7187,10.0803,2598 +134,4,0,11.8210,9.9209,2598 +135,4,0,11.6903,10.3938,2598 +136,4,0,11.9380,9.9650,2598 +137,4,0,11.7917,10.0319,2598 +138,4,0,11.7252,9.9443,2598 +139,4,0,11.7857,9.9808,2598 +140,4,0,11.6206,10.2517,2598 +141,4,0,11.3775,10.3135,2598 +142,4,0,11.0387,10.2360,2598 +143,4,0,11.0780,10.2014,2598 +144,4,0,16.2937,14.9155,2598 +145,4,0,11.5426,10.1973,2598 +146,4,0,11.7993,10.0211,2598 +147,4,0,13.4630,11.8445,2598 +148,4,0,11.9496,9.9978,2598 +149,4,0,11.7733,10.0215,2598 +150,4,0,12.4080,10.2345,498961 +151,4,0,11.9070,9.9993,27992 +152,4,0,11.6581,10.4191,49831 +153,4,0,12.0947,10.3253,74776 +154,4,0,12.3060,10.6092,97363 +155,4,0,12.0452,10.0369,106276 +156,4,0,11.8262,9.9985,72005 +157,4,0,13.9196,11.5173,46710 +158,4,0,11.8885,10.1413,29899 +159,4,0,11.1337,10.4060,24990 +160,4,0,11.8584,10.3127,18955 +161,4,0,12.2516,10.1671,14889 +162,4,0,11.9366,10.0439,12187 +163,4,0,11.7873,10.1937,9555 +164,4,0,13.9678,12.4827,6103 +165,4,0,11.7504,10.2982,4541 +166,4,0,11.9233,9.9539,2543 +167,4,0,11.7715,10.0378,2530 +168,4,0,11.7433,10.0634,2601 +169,4,0,12.0840,9.9980,2599 +170,4,0,12.0277,10.2536,2598 +171,4,0,12.0308,9.9150,2598 +172,4,0,11.6722,10.2598,2598 +173,4,0,12.2955,10.4270,2598 +174,4,0,11.7565,10.0127,2598 +175,4,0,11.7644,10.2670,2598 +176,4,0,12.0732,10.1487,2598 +177,4,0,12.1992,10.0913,2598 +178,4,0,12.3938,10.7391,2598 +179,4,0,12.4574,10.6269,2598 +180,4,0,11.9482,10.5659,2598 +181,4,0,16.7639,14.6005,2598 +182,4,0,32.4485,31.0203,2598 +183,4,0,41.7016,41.0153,2598 +184,4,0,51.2723,49.3345,2598 +185,4,0,52.8688,51.6889,2598 +186,4,0,53.8631,51.9974,2598 +187,4,0,59.0255,57.1401,2598 +188,4,0,58.8108,57.6680,2598 +189,4,0,62.0292,60.5691,2598 +190,4,0,64.8242,63.3485,2598 +191,4,0,67.9798,66.6713,2598 +192,4,0,71.4344,70.1997,2598 +193,4,0,73.1688,71.7629,2598 +194,4,0,75.8988,74.5164,2598 +195,4,0,80.8170,79.0965,2598 +196,4,0,82.6146,81.5079,2598 +197,4,0,84.7298,83.8661,2598 +198,4,0,89.7819,89.1770,2598 +199,4,0,93.2277,92.6124,2598 +200,4,0,97.0499,96.5106,2598 +201,4,0,96.4745,96.0405,2598 +202,4,0,100.1895,99.6384,2598 +203,4,0,102.6135,102.2193,2598 +204,4,0,107.4726,107.0534,2598 +205,4,0,108.5383,108.0995,2598 +206,4,0,113.8526,113.3528,2598 +207,4,0,116.8010,116.2887,2598 +208,4,0,115.6270,115.3377,2598 +209,4,0,119.2857,117.9888,2598 +210,4,0,123.3659,121.9108,2598 +211,4,0,127.6415,124.8240,2598 +212,4,0,129.2818,124.8842,2598 +213,4,0,132.5890,124.9742,2598 +214,4,0,135.7372,125.0449,2598 +215,4,0,135.6587,125.0197,2598 +216,4,0,135.6611,125.1487,2598 +217,4,0,135.5905,125.1518,2598 +218,4,0,135.6142,125.2009,2598 +219,4,0,135.5418,125.2823,2598 +220,4,0,135.6284,125.3528,2598 +221,4,0,135.6775,125.5396,2598 +222,4,0,135.7092,125.7053,2598 +223,4,0,135.6850,125.7563,2598 +224,4,0,135.7579,125.7968,2598 +225,4,0,135.3259,125.6230,509662 +226,4,0,135.1736,125.3520,31095 +227,4,0,135.4145,125.6154,44547 +228,4,0,135.4935,125.6995,68237 +229,4,0,135.5952,125.9164,77607 +230,4,0,135.5253,125.7571,72384 +231,4,0,135.5428,126.0323,76535 +232,4,0,136.0447,126.4616,48789 +233,4,0,136.3444,126.5512,36606 +234,4,0,136.1409,126.4252,27960 +235,4,0,136.8088,126.9213,22315 +236,4,0,136.7174,127.0102,17904 +237,4,0,136.5422,129.4832,14580 +238,4,0,136.6617,127.0773,12493 +239,4,0,136.2774,126.6464,10174 +240,4,0,136.2233,126.6446,7785 +241,4,0,136.2100,126.4100,5590 +242,4,0,135.2246,125.6295,4482 +243,4,0,135.1631,125.3284,2533 +244,4,0,135.7947,125.9297,2525 +245,4,0,135.5943,126.6040,2601 +246,4,0,136.3706,126.6907,2599 +247,4,0,136.8159,127.1256,2598 +248,4,0,136.7281,126.9958,2598 +249,4,0,136.6216,126.9440,2598 +250,4,0,136.8011,127.0582,2598 +251,4,0,136.7852,127.0627,2598 +252,4,0,136.7133,126.8608,2598 +253,4,0,136.4452,126.7496,2598 +254,4,0,135.9447,126.3229,2598 +255,4,0,140.3444,129.9980,2598 +256,4,0,136.3800,128.1601,2598 +257,4,0,136.6168,126.8056,2598 +258,4,0,136.3537,126.6111,2598 +259,4,0,136.4675,126.7020,2598 +260,4,0,136.3615,126.7428,2598 +261,4,0,136.2685,126.5639,2598 +262,4,0,131.7451,123.9385,2598 +263,4,0,135.1697,125.8117,2598 +264,4,0,134.1997,124.9927,2598 +265,4,0,134.9705,125.1303,2598 +266,4,0,134.5307,124.8112,2598 +267,4,0,135.0636,126.7825,2598 +268,4,0,134.9626,125.2733,2598 +269,4,0,135.5771,125.8234,2598 +270,4,0,136.5034,126.9290,2598 +271,4,0,136.6630,126.6385,2598 +272,4,0,134.6918,125.3071,2598 +273,4,0,135.0193,130.0503,2598 +274,4,0,134.7524,125.6533,2598 +275,4,0,135.0128,125.3355,2598 +276,4,0,131.6538,125.4087,2598 +277,4,0,132.0883,125.3453,2598 +278,4,0,134.1157,125.2992,2598 +279,4,0,135.6258,126.0032,2598 +280,4,0,135.8017,126.7812,2598 +281,4,0,136.1596,126.3889,2598 +282,4,0,136.5707,126.4495,2598 +283,4,0,135.9775,126.2880,2598 +284,4,0,135.7021,126.1531,2598 +285,4,0,136.0387,126.2837,2598 +286,4,0,136.8444,126.6885,2598 +287,4,0,136.4201,126.9361,2598 +288,4,0,135.9530,127.0342,2598 +289,4,0,136.0346,126.2225,2598 +290,4,0,136.6267,126.9168,2598 +291,4,0,136.3655,126.3625,2598 +292,4,0,136.0394,126.3424,2598 +293,4,0,135.6732,125.5670,2598 +294,4,0,135.4050,125.4914,2598 +295,4,0,135.6447,125.7597,2598 +296,4,0,135.3811,125.6488,2598 +297,4,0,135.6518,126.4742,2598 +298,4,0,146.0528,136.3307,2598 +299,4,0,156.4975,146.3467,2598 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.csv new file mode 100644 index 0000000..aec9cb5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0877,28.6590,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8452,24.8546,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8605,25.5185,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7819,23.1065,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0877,5.7403,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8452,5.6511,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8605,10.5510,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7819,10.5492,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,18017,0 +8,5.0877,5.8214,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8452,5.6416,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8605,10.3183,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7819,10.2520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12092,0 +12,5.0877,5.7592,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8452,5.6071,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8605,10.3992,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7819,10.4477,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20897,0 +16,5.0877,5.7084,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8452,5.5830,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8605,10.3361,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7819,10.3121,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,23783,0 +20,5.0877,5.7438,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8452,5.5382,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8605,10.4990,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7819,10.4271,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +24,5.0877,5.6918,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8452,5.5020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8605,10.4711,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7819,10.3705,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,4846,0 +28,5.0877,5.6922,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8452,5.4818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8605,10.2501,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7819,10.2212,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3325,0 +32,5.0877,5.6894,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8452,5.5574,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8605,10.3447,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7819,10.2620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +36,5.0877,5.7237,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8452,5.5972,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8605,10.4093,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7819,10.3488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2776,0 +40,5.0877,5.7138,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8452,5.5640,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8605,10.3519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7819,10.3724,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +44,5.0877,5.7576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8452,5.6021,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8605,10.4060,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7819,10.3273,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +48,5.0877,5.7495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8452,5.4921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8605,10.3927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7819,10.3721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1784,0 +52,5.0877,5.7884,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8452,5.5355,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8605,10.2201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7819,10.2672,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +56,5.0877,5.7868,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8452,5.6455,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8605,10.3705,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7819,10.3287,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +60,5.0877,5.6023,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8452,5.5361,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8605,10.3308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7819,10.3814,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +64,5.0877,5.6640,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8452,5.5284,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8605,10.3362,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7819,10.2878,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +68,5.0877,5.7315,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8452,5.6674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8605,10.3569,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7819,10.4281,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +72,5.0877,5.6487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8452,5.4827,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8605,10.3687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7819,10.3719,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1011,0 +76,5.0877,5.6978,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8452,5.4631,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8605,10.3790,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7819,10.3672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1187,0 +80,5.0877,5.6867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8452,5.5433,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8605,10.4930,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7819,10.5047,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +84,5.0877,5.7305,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8452,5.5791,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8605,10.5076,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7819,10.5115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +88,5.0877,5.7319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8452,5.5146,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8605,10.3772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7819,10.3083,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +92,5.0877,5.6335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8452,5.5196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8605,10.3673,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7819,10.3085,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +96,5.0877,5.7185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8452,5.5452,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8605,10.4739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7819,10.3939,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +100,5.0877,5.8543,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8452,5.5847,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8605,10.4421,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7819,10.4262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +104,5.0877,5.7928,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8452,5.6340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8605,10.3645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7819,10.3235,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,960,0 +108,5.0877,5.8863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8452,5.6380,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8605,10.6278,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7819,10.4563,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +112,5.0877,6.2734,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8452,5.6748,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8605,10.5356,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7819,10.3692,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +116,5.0877,6.6603,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8452,6.0405,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8605,10.8768,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7819,10.7442,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +120,5.0877,6.0985,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8452,5.7315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8605,10.4312,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7819,10.3447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +124,5.0877,6.3510,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8452,5.8838,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8605,10.8143,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7819,10.6324,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +128,5.0877,6.1758,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8452,5.8390,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8605,10.5644,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7819,10.3909,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +132,5.0877,6.0516,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8452,5.6681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8605,10.6726,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7819,10.4903,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +136,5.0877,6.4088,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8452,5.7579,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8605,10.0555,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7819,9.8810,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0877,6.7977,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8452,6.2900,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8605,10.0511,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7819,9.9349,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0877,6.3865,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8452,5.7823,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8605,10.5185,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7819,10.4521,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +148,5.0877,6.3697,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8452,5.9869,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8605,10.1133,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7819,10.1274,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +152,5.0877,6.2452,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8452,5.7991,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8605,10.1952,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7819,10.0530,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +156,5.0877,6.4425,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8452,5.9731,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8605,10.3140,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7819,10.1107,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +160,5.0877,6.3804,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8452,5.7427,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8605,9.4260,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7819,9.2395,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +164,5.0877,6.3449,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8452,5.7679,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8605,10.5139,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7819,10.3613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +168,5.0877,5.7507,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8452,5.5194,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8605,10.3420,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7819,10.2604,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +172,5.0877,5.7956,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8452,5.5528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8605,10.5119,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7819,10.4262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +176,5.0877,5.9336,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8452,5.6662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8605,10.5469,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7819,10.5090,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +180,5.0877,5.8152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8452,5.5514,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8605,10.4015,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7819,10.3413,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +184,5.0877,5.7949,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8452,5.5434,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8605,10.4544,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7819,10.4258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +188,5.0877,5.6327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8452,5.5126,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8605,10.2354,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7819,10.2247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +192,5.0877,5.9338,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8452,5.6525,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8605,10.4660,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7819,10.3842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0877,5.7799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8452,5.5985,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8605,10.3910,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7819,10.4006,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +200,5.0877,5.7759,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8452,5.5635,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8605,10.4945,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7819,10.4665,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +204,5.0877,5.7861,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8452,5.5937,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8605,10.4899,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7819,10.4420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +208,5.0877,5.8528,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8452,5.6559,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8605,10.4477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7819,10.4590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +212,5.0877,5.8383,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8452,5.5462,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8605,10.4709,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7819,10.4142,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +216,5.0877,5.8262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8452,5.6218,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8605,10.4830,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7819,10.4698,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +220,5.0877,5.8078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8452,5.6292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8605,10.4210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7819,10.4051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0877,5.8422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8452,5.6058,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8605,10.4962,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7819,10.4355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +228,5.0877,5.9184,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8452,5.6772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8605,10.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7819,10.5093,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +232,5.0877,5.7140,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8452,5.5344,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8605,10.3905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7819,10.3823,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +236,5.0877,5.8337,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8452,5.6048,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8605,10.4691,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7819,10.4404,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +240,5.0877,5.8854,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8452,5.6547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8605,10.5059,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.7819,10.4236,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +244,5.0877,5.9125,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8452,5.6414,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8605,10.5542,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.7819,10.4597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +248,5.0877,5.8565,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8452,5.5587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8605,10.4827,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.7819,10.4087,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +252,5.0877,5.8445,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8452,5.5872,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8605,10.4272,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.7819,10.3757,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +256,5.0877,5.8348,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8452,5.5955,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8605,10.4241,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.7819,10.3514,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +260,5.0877,5.9751,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8452,5.6971,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8605,10.5386,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.7819,10.5220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +264,5.0877,5.9878,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8452,5.7073,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8605,10.6230,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.7819,10.5906,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +268,5.0877,5.7443,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8452,5.5738,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8605,10.4841,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.7819,10.4546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +272,5.0877,5.8712,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8452,5.6739,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8605,10.5435,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.7819,10.4991,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +276,5.0877,5.7745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8452,5.5644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8605,10.3730,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.7819,10.3223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +280,5.0877,5.8612,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8452,5.6292,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8605,10.5083,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.7819,10.4570,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +284,5.0877,5.7373,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8452,5.5396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8605,10.4109,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.7819,10.3374,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +288,5.0877,5.7431,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8452,5.5433,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8605,10.3973,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.7819,10.2874,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +292,5.0877,5.7326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8452,5.5466,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8605,10.3311,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.7819,10.3259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +296,5.0877,5.8802,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8452,5.5809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8605,10.4176,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.7819,10.3038,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +300,5.0877,5.7029,0.0322,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +301,2.8452,5.4295,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +302,2.8605,10.1538,0.0205,0.0000,0,0,0.0000,0,0.0000,0,1,0,129935,0 +303,2.7819,10.0836,0.0426,0.0000,0,0,0.0000,0,0.0000,0,1,0,124843,0 +304,5.0877,5.7452,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +305,2.8452,5.5405,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +306,2.8605,10.4597,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,10771,0 +307,2.7819,10.3532,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6793,0 +308,5.0877,5.7468,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +309,2.8452,5.5616,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +310,2.8605,10.3663,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6873,0 +311,2.7819,10.3435,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10681,0 +312,5.0877,5.6327,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +313,2.8452,5.5053,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +314,2.8605,10.3163,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5976,0 +315,2.7819,10.2652,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7736,0 +316,5.0877,5.8268,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +317,2.8452,5.5729,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +318,2.8605,10.4943,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,6447,0 +319,2.7819,10.4298,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +320,5.0877,5.7682,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +321,2.8452,5.5773,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +322,2.8605,10.4065,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5255,0 +323,2.7819,10.3353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6074,0 +324,5.0877,5.8068,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +325,2.8452,5.6195,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +326,2.8605,10.4822,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4410,0 +327,2.7819,10.3875,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4205,0 +328,5.0877,5.7685,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +329,2.8452,5.4977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +330,2.8605,10.2790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4548,0 +331,2.7819,10.2914,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4629,0 +332,5.0877,5.8235,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +333,2.8452,5.6049,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +334,2.8605,10.4311,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3350,0 +335,2.7819,10.3841,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +336,5.0877,5.9138,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +337,2.8452,5.6732,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +338,2.8605,10.5902,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2741,0 +339,2.7819,10.5149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +340,5.0877,5.7759,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +341,2.8452,5.6121,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +342,2.8605,10.4733,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +343,2.7819,10.3863,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +344,5.0877,5.8748,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +345,2.8452,5.6327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +346,2.8605,10.5784,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1990,0 +347,2.7819,10.5708,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +348,5.0877,5.7253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +349,2.8452,5.5436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +350,2.8605,10.3940,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +351,2.7819,10.3490,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1847,0 +352,5.0877,5.7827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +353,2.8452,5.5803,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +354,2.8605,10.6879,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +355,2.7819,10.5981,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +356,5.0877,6.0393,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +357,2.8452,5.7495,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +358,2.8605,10.5818,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +359,2.7819,10.5442,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +360,5.0877,5.8031,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +361,2.8452,5.5974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8605,10.4298,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +363,2.7819,10.3349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +364,5.0877,5.8466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +365,2.8452,5.6049,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8605,10.5229,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +367,2.7819,10.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +368,5.0877,5.7799,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +369,2.8452,5.6389,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8605,10.4274,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +371,2.7819,10.4503,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +372,5.0877,5.7962,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +373,2.8452,5.5948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8605,10.4758,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1075,0 +375,2.7819,10.4023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +376,5.0877,5.7505,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +377,2.8452,5.5965,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8605,10.4535,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +379,2.7819,10.3754,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +380,5.0877,5.9168,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +381,2.8452,5.6174,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8605,10.6074,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +383,2.7819,10.5351,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +384,5.0877,5.8833,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +385,2.8452,5.6422,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8605,10.5504,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,942,0 +387,2.7819,10.4388,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +388,5.0877,5.9644,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +389,2.8452,5.6915,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8605,10.5218,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +391,2.7819,10.4354,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +392,5.0877,5.7752,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +393,2.8452,5.5468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8605,10.4426,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +395,2.7819,10.3343,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +396,5.0877,5.8098,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +397,2.8452,5.5804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8605,10.4362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7819,10.4139,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +400,5.0877,5.8886,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +401,2.8452,5.5880,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8605,10.4453,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +403,2.7819,10.3208,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +404,5.0877,5.7752,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +405,2.8452,5.5065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8605,10.4223,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +407,2.7819,10.3450,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +408,5.0877,5.7957,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +409,2.8452,5.5721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8605,10.4590,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +411,2.7819,10.2801,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,940,0 +412,5.0877,5.8075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +413,2.8452,5.5936,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8605,10.5035,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +415,2.7819,10.4094,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +416,5.0877,5.8515,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +417,2.8452,5.5713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8605,10.4160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +419,2.7819,10.3592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +420,5.0877,5.7678,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +421,2.8452,5.6579,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8605,10.6611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +423,2.7819,10.5536,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +424,5.0877,5.7860,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8452,5.5927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8605,10.6998,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +427,2.7819,10.6545,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +428,5.0877,5.7470,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8452,5.5645,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8605,10.4775,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +431,2.7819,10.3834,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +432,5.0877,5.7069,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8452,5.4797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8605,10.3187,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1171,0 +435,2.7819,10.2297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +436,5.0877,5.8626,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8452,5.5703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8605,10.3413,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7819,10.2262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +440,5.0877,5.9458,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8452,5.6757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8605,10.4992,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7819,10.4031,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,986,0 +444,5.0877,5.9064,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8452,5.6509,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8605,10.4028,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7819,10.3491,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +448,5.0877,5.8254,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8452,5.5655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8605,10.4756,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +451,2.7819,10.4489,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +452,5.0877,5.7912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8452,5.6233,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8605,10.6407,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +455,2.7819,10.5834,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +456,5.0877,5.7698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8452,5.5730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8605,10.5699,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +459,2.7819,10.4838,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +460,5.0877,5.8107,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8452,5.5990,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8605,10.5158,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +463,2.7819,10.4637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +464,5.0877,5.8122,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8452,5.6191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8605,10.4304,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +467,2.7819,10.3727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +468,5.0877,5.8850,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8452,5.6307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8605,10.5745,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +471,2.7819,10.4925,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +472,5.0877,5.7590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8452,5.6120,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8605,10.5128,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +475,2.7819,10.4825,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +476,5.0877,5.8740,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8452,5.6547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8605,10.4937,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,937,0 +479,2.7819,10.4440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +480,5.0877,5.6710,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8452,5.5999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8605,10.3197,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.7819,10.2940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +484,5.0877,5.8916,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8452,5.6273,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8605,10.3898,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.7819,10.3532,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +488,5.0877,5.7406,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8452,5.5247,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8605,10.3257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.7819,10.3266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +492,5.0877,5.8063,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8452,5.5860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8605,10.3103,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +495,2.7819,10.2770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +496,5.0877,5.9601,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8452,5.7902,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8605,10.3270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +499,2.7819,10.4482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +500,5.0877,5.8297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8452,5.6010,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8605,10.4587,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +503,2.7819,10.3430,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +504,5.0877,5.8832,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8452,5.6587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8605,10.3472,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +507,2.7819,10.2779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +508,5.0877,5.8236,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8452,5.5907,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8605,10.1941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +511,2.7819,10.2148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +512,5.0877,5.9271,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8452,5.6343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8605,10.3955,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +515,2.7819,10.3246,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +516,5.0877,5.8004,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8452,5.5640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8605,10.3529,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +519,2.7819,10.2957,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +520,5.0877,5.8297,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8452,5.6742,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8605,10.3760,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +523,2.7819,10.3654,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +524,5.0877,5.9414,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8452,5.6912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8605,10.3640,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +527,2.7819,10.3926,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +528,5.0877,6.0327,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8452,5.6617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8605,10.4708,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +531,2.7819,10.4040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +532,5.0877,5.7019,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8452,5.5651,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8605,10.3054,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +535,2.7819,10.2708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.0877,5.7122,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8452,5.5533,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8605,10.3124,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +539,2.7819,10.2547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +540,5.0877,5.8828,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8452,5.6312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8605,10.3945,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +543,2.7819,10.3356,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.0877,5.7489,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8452,5.5801,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8605,10.3015,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +547,2.7819,10.2578,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +548,5.0877,5.8044,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8452,5.6605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8605,10.0982,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +551,2.7819,10.1046,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.0877,6.0235,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8452,5.7409,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8605,10.5873,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +555,2.7819,10.4877,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +556,5.0877,5.9559,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8452,5.7287,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8605,10.5738,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +559,2.7819,10.4890,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.0877,5.8089,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8452,5.6303,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8605,10.4280,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +563,2.7819,10.4005,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0877,5.7962,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8452,5.6047,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8605,10.4349,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +567,2.7819,10.3989,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.0877,5.8270,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8452,5.5742,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8605,10.5420,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7819,10.5177,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.0877,5.7407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8452,5.5659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8605,10.3395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7819,10.3406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +576,5.0877,5.8225,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8452,5.5845,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8605,10.4087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.7819,10.3622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +580,5.0877,5.9223,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8452,5.5846,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8605,10.4659,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +583,2.7819,10.4162,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +584,5.0877,5.7162,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8452,5.5425,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8605,10.3133,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.7819,10.2716,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.0877,5.7228,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8452,5.5377,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8605,10.2815,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.7819,10.2149,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0877,5.9112,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8452,5.6599,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8605,10.2601,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +595,2.7819,10.2175,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +596,5.0877,6.0662,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8452,5.7562,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8605,10.5183,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +599,2.7819,10.4658,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +600,5.0877,5.8879,0.0337,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +601,2.8452,5.5710,0.0411,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +602,2.8605,10.0824,0.0507,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +603,2.7819,10.0665,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +604,5.0877,5.8042,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +605,2.8452,5.5927,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +606,2.8605,10.2801,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +607,2.7819,10.3198,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14309,0 +608,5.0877,5.7058,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +609,2.8452,5.5331,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +610,2.8605,10.3445,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11099,0 +611,2.7819,10.3659,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14617,0 +612,5.0877,5.7169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +613,2.8452,5.5655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +614,2.8605,10.3794,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5937,0 +615,2.7819,10.3602,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4404,0 +616,5.0877,5.7722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +617,2.8452,5.6058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +618,2.8605,10.3752,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +619,2.7819,10.3574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4120,0 +620,5.0877,5.6435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +621,2.8452,5.5397,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +622,2.8605,10.3072,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3467,0 +623,2.7819,10.2868,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3810,0 +624,5.0877,5.7701,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +625,2.8452,5.5627,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +626,2.8605,10.3800,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3066,0 +627,2.7819,10.2775,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +628,5.0877,5.8745,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +629,2.8452,5.6146,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +630,2.8605,10.4240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2781,0 +631,2.7819,10.3590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4115,0 +632,5.0877,5.7770,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +633,2.8452,5.5447,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +634,2.8605,10.2821,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1711,0 +635,2.7819,10.2359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3590,0 +636,5.0877,5.9665,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +637,2.8452,5.6473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +638,2.8605,10.4555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1882,0 +639,2.7819,10.4461,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4046,0 +640,5.0877,5.8836,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +641,2.8452,5.6373,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +642,2.8605,10.3682,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1569,0 +643,2.7819,10.3194,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1440,0 +644,5.0877,5.8051,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +645,2.8452,5.5862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +646,2.8605,10.3810,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +647,2.7819,10.3216,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,974,0 +648,5.0877,5.8648,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +649,2.8452,5.6380,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +650,2.8605,10.3933,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +651,2.7819,10.3111,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +652,5.0877,5.8399,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +653,2.8452,5.6011,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +654,2.8605,10.3765,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +655,2.7819,10.2668,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +656,5.0877,5.9854,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +657,2.8452,5.6783,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +658,2.8605,10.6422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +659,2.7819,10.5010,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +660,5.0877,6.2303,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +661,2.8452,5.7358,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8605,10.4891,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7819,10.3842,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +664,5.0877,6.0806,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +665,2.8452,5.6681,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8605,10.3073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +667,2.7819,10.3050,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +668,5.0877,5.7850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +669,2.8452,5.5388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8605,10.2777,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +671,2.7819,10.2845,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +672,5.0877,5.7055,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +673,2.8452,5.5894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8605,10.1229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +675,2.7819,10.2155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +676,5.0877,5.7693,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +677,2.8452,5.6039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8605,10.1348,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +679,2.7819,10.1823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +680,5.0877,5.6692,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +681,2.8452,5.6330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8605,10.1420,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +683,2.7819,10.2257,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +684,5.0877,6.0439,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +685,2.8452,5.7101,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8605,10.4957,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1141,0 +687,2.7819,10.2928,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +688,5.0877,6.4927,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +689,2.8452,5.8564,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8605,14.9827,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +691,2.7819,13.8398,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1000,0 +692,5.0877,5.8319,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +693,2.8452,5.7149,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8605,10.2016,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,982,0 +695,2.7819,10.1565,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +696,5.0877,5.8658,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +697,2.8452,5.5288,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8605,10.1720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +699,2.7819,10.1553,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +700,5.0877,5.7265,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +701,2.8452,5.4749,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8605,10.2360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +703,2.7819,10.1327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +704,5.0877,5.6057,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +705,2.8452,5.4342,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8605,10.2501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +707,2.7819,10.2250,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +708,5.0877,5.6935,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +709,2.8452,5.4172,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8605,10.2553,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +711,2.7819,10.1540,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +712,5.0877,5.7630,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +713,2.8452,5.5728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8605,10.3112,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +715,2.7819,10.1857,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +716,5.0877,5.9038,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +717,2.8452,5.5838,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8605,10.4487,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +719,2.7819,10.3948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +720,5.0877,5.8087,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +721,2.8452,5.5657,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8605,10.4895,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +723,2.7819,10.3786,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1026,0 +724,5.0877,5.8869,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8452,5.5770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8605,14.8323,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,942,0 +727,2.7819,14.8233,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +728,5.0877,15.6079,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8452,15.3810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8605,30.1381,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +731,2.7819,29.9827,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,5.0877,15.8226,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8452,15.5834,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8605,30.5244,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +735,2.7819,30.3269,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,5.0877,15.7678,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8452,15.5452,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8605,30.1557,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +739,2.7819,30.0707,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +740,5.0877,15.7425,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8452,15.5288,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8605,30.4399,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1100,0 +743,2.7819,30.2972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +744,5.0877,15.5665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8452,15.4325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8605,30.1603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +747,2.7819,30.1275,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +748,5.0877,15.5356,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8452,15.3833,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8605,29.8928,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.7819,29.8307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +752,5.0877,15.6956,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8452,15.5094,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8605,30.2301,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.7819,30.0961,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,5.0877,15.9851,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8452,15.6022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8605,30.3898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +759,2.7819,30.3101,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,5.0877,15.9478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8452,15.6030,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8605,30.1040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +763,2.7819,30.0024,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,5.0877,15.7866,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8452,15.5461,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8605,29.9571,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +767,2.7819,29.9118,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +768,5.0877,16.0855,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8452,15.7713,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8605,30.3897,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +771,2.7819,30.5732,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +772,5.0877,16.3513,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8452,15.7300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8605,29.6654,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +775,2.7819,29.6995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +776,5.0877,15.8600,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8452,15.5198,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8605,30.2571,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +779,2.7819,30.1425,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +780,5.0877,15.8350,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8452,15.5360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8605,30.1864,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +783,2.7819,30.0322,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,5.0877,15.9140,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8452,15.5285,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8605,30.1938,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +787,2.7819,29.9990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,5.0877,16.0267,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8452,15.5293,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8605,29.9049,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +791,2.7819,29.7922,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,5.0877,15.7130,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8452,15.4102,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8605,29.9555,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.7819,29.7771,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.0877,15.5550,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8452,15.3786,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8605,29.9258,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.7819,29.8035,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +800,5.0877,15.5612,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8452,15.3610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8605,29.9670,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +803,2.7819,29.8139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +804,5.0877,15.6589,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8452,15.3926,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8605,29.9147,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +807,2.7819,29.7894,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +808,5.0877,15.7390,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8452,15.4289,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8605,30.0377,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +811,2.7819,29.9067,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,5.0877,15.7397,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8452,15.4779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8605,30.0397,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +815,2.7819,29.9246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.0877,15.7235,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8452,15.5567,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8605,30.2443,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +819,2.7819,30.1242,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,5.0877,15.9480,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8452,15.6355,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8605,30.3360,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +823,2.7819,30.2285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +824,5.0877,15.6308,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8452,15.4120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8605,29.9273,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +827,2.7819,29.7667,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +828,5.0877,15.6423,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8452,15.3920,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8605,29.9493,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +831,2.7819,29.8002,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +832,5.0877,15.7412,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8452,15.5266,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8605,30.3599,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.7819,30.3018,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +836,5.0877,15.6310,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8452,15.3682,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8605,30.1543,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.7819,30.0439,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +840,5.0877,15.9087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8452,15.5879,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8605,30.2955,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.7819,30.1872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,5.0877,15.8028,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8452,15.5038,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8605,30.2541,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.7819,30.0495,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +848,5.0877,16.0465,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8452,15.6560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8605,30.3587,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +851,2.7819,30.2246,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.0877,16.0391,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8452,15.6469,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8605,30.5351,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.7819,30.3800,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +856,5.0877,16.3977,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8452,15.9918,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8605,31.0612,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.7819,30.8078,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +860,5.0877,16.0517,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8452,15.6555,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8605,30.6202,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.7819,30.4277,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +864,5.0877,20.1997,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8452,19.7497,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8605,30.8920,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.7819,30.6680,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,5.0877,16.8459,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8452,16.4296,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8605,30.9605,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.7819,30.7893,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,5.0877,15.7228,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8452,15.4261,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8605,30.6163,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +875,2.7819,30.6242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,5.0877,17.2153,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8452,16.6400,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8605,30.0320,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.7819,30.9070,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,5.0877,16.5076,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8452,15.5915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8605,30.0999,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.7819,29.8390,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +884,5.0877,16.0360,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8452,15.5954,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8605,30.0633,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.7819,29.9284,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +888,5.0877,15.8927,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8452,15.5262,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8605,30.1350,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.7819,29.9092,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +892,5.0877,16.0155,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8452,15.6191,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8605,30.2145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.7819,30.1185,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +896,5.0877,15.8339,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8452,15.4681,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8605,30.0452,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.7819,29.9537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,5.0877,15.6205,0.0461,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +901,2.8452,15.2595,0.0570,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +902,2.8605,30.5617,0.1184,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +903,2.7819,29.7246,0.1118,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +904,5.0877,17.7525,0.0658,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +905,2.8452,17.3309,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +906,2.8605,30.2295,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +907,2.7819,30.0435,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +908,5.0877,19.6865,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +909,2.8452,19.3621,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +910,2.8605,30.1373,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +911,2.7819,29.9855,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +912,5.0877,16.2645,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +913,2.8452,15.7978,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +914,2.8605,30.3949,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +915,2.7819,30.1382,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +916,5.0877,15.9535,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +917,2.8452,15.5062,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +918,2.8605,30.1508,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +919,2.7819,29.9381,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +920,5.0877,15.7466,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +921,2.8452,15.5118,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +922,2.8605,30.0964,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +923,2.7819,30.0233,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +924,5.0877,15.7173,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +925,2.8452,15.4763,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +926,2.8605,29.9035,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +927,2.7819,29.7288,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +928,5.0877,15.7562,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +929,2.8452,15.4418,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +930,2.8605,29.9913,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +931,2.7819,29.8650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +932,5.0877,15.6710,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +933,2.8452,15.4212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +934,2.8605,30.0625,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +935,2.7819,29.9060,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +936,5.0877,15.9107,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +937,2.8452,15.5009,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +938,2.8605,30.3023,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +939,2.7819,30.1634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +940,5.0877,15.7072,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +941,2.8452,15.4102,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +942,2.8605,29.9290,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +943,2.7819,29.8639,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +944,5.0877,15.5606,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +945,2.8452,15.4146,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +946,2.8605,29.9782,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +947,2.7819,29.8596,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +948,5.0877,15.6745,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +949,2.8452,15.4737,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +950,2.8605,29.8820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +951,2.7819,29.7975,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +952,5.0877,15.9837,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +953,2.8452,15.5712,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +954,2.8605,30.2127,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +955,2.7819,30.0822,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +956,5.0877,15.8630,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +957,2.8452,15.5162,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +958,2.8605,30.0182,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +959,2.7819,29.9190,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +960,5.0877,15.8373,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +961,2.8452,15.5538,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8605,29.9972,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +963,2.7819,29.8418,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +964,5.0877,15.6871,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +965,2.8452,15.4820,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8605,30.0627,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +967,2.7819,29.9312,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +968,5.0877,15.8989,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +969,2.8452,15.6230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8605,29.8097,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.7819,29.6875,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +972,5.0877,15.7825,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +973,2.8452,15.5000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8605,29.8385,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +975,2.7819,29.6775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +976,5.0877,15.7845,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +977,2.8452,15.4306,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8605,30.0708,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +979,2.7819,29.9224,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +980,5.0877,15.9484,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +981,2.8452,15.5504,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8605,30.2221,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +983,2.7819,30.0775,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,5.0877,16.0481,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +985,2.8452,15.6377,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8605,30.3158,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +987,2.7819,30.2057,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +988,5.0877,15.9110,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +989,2.8452,15.4994,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8605,30.1714,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +991,2.7819,29.9691,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +992,5.0877,16.1281,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +993,2.8452,15.6335,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8605,30.3490,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +995,2.7819,30.2153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +996,5.0877,16.0254,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +997,2.8452,15.5762,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8605,30.1224,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +999,2.7819,29.9662,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1000,5.0877,15.7820,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1001,2.8452,15.4968,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8605,30.2131,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1003,2.7819,30.0921,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1004,5.0877,15.7261,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1005,2.8452,15.4029,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8605,30.2058,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1007,2.7819,30.1582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1008,5.0877,15.7233,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1009,2.8452,15.4082,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8605,29.9280,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1011,2.7819,29.7918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,5.0877,15.6623,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1013,2.8452,15.4077,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8605,30.0053,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1015,2.7819,29.9725,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1016,5.0877,15.6233,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1017,2.8452,15.4171,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8605,30.0857,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1019,2.7819,29.9620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1020,5.0877,15.7635,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1021,2.8452,15.4728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8605,29.9729,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1023,2.7819,29.8590,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1024,5.0877,15.5853,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8452,15.4176,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8605,29.7825,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1027,2.7819,29.6485,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1028,5.0877,15.6800,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8452,15.4061,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8605,30.1076,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1031,2.7819,29.9511,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1032,5.0877,15.5990,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8452,15.4035,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8605,30.2009,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1035,2.7819,30.1056,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1036,5.0877,15.8632,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8452,15.5566,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8605,30.1846,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1039,2.7819,30.1332,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,5.0877,15.7537,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8452,15.4842,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8605,30.1835,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1043,2.7819,30.0658,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1044,5.0877,15.7828,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8452,15.4648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8605,30.1163,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1047,2.7819,29.9520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1048,5.0877,15.7356,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8452,15.4812,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8605,30.2585,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1051,2.7819,30.1744,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1052,5.0877,15.6024,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8452,15.3548,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8605,29.8660,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.7819,29.7205,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1056,5.0877,15.6499,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8452,15.4037,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8605,30.1183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.7819,30.0664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1060,5.0877,15.6992,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8452,15.4179,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8605,30.0958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.7819,29.9968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,5.0877,15.6519,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8452,15.3455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8605,30.0390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1067,2.7819,30.0328,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,5.0877,16.0913,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8452,15.7712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8605,30.4105,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1071,2.7819,30.3122,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,5.0877,15.7276,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8452,15.4868,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8605,30.0334,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1075,2.7819,29.9242,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1076,5.0877,15.7683,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8452,15.5943,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8605,30.1106,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1079,2.7819,30.0323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1080,5.0877,15.5802,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8452,15.3557,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8605,30.2267,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1083,2.7819,30.0376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1084,5.0877,15.8652,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8452,15.6107,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8605,30.1141,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1087,2.7819,30.0763,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1088,5.0877,15.5461,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8452,15.3754,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8605,29.8438,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1091,2.7819,29.7387,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,5.0877,15.6354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8452,15.4492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8605,30.0296,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1095,2.7819,29.9880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,5.0877,15.7713,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8452,15.4811,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8605,30.0355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.7819,29.9733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1100,5.0877,15.5217,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8452,15.3425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8605,29.9674,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.7819,29.8565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1104,5.0877,15.6076,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8452,15.3435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8605,30.1812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.7819,29.9443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1108,5.0877,15.5367,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8452,15.4300,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8605,29.8563,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1111,2.7819,29.8357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1112,5.0877,15.7072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8452,15.4641,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8605,29.9352,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1115,2.7819,29.8778,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1116,5.0877,15.5029,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8452,15.4160,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8605,29.9762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1119,2.7819,29.8410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.0877,15.6401,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8452,15.4211,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8605,29.8990,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1123,2.7819,29.7841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.0877,15.8175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8452,15.5010,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8605,30.2477,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1127,2.7819,30.1082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,5.0877,15.7010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8452,15.4595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8605,29.9892,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1131,2.7819,29.9107,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1132,5.0877,15.8508,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8452,15.5580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8605,30.1483,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1135,2.7819,30.0658,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1136,5.0877,15.7499,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8452,15.4567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8605,29.9810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1139,2.7819,29.8707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1140,5.0877,15.7588,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8452,15.4662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8605,30.0958,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.7819,29.9363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1144,5.0877,15.8026,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8452,15.4632,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8605,29.9838,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.7819,29.7796,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.0877,15.9352,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8452,15.5727,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8605,30.2211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.7819,30.1289,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.0877,15.8515,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8452,15.5609,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8605,30.1833,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.7819,30.0551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,5.0877,15.8680,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8452,15.4984,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8605,30.3434,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1159,2.7819,30.2822,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.0877,15.9083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8452,15.6568,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8605,30.2055,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7819,30.1521,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1164,5.0877,15.4663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8452,15.3718,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8605,29.8655,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1167,2.7819,29.7808,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.0877,15.5335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8452,15.3232,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8605,29.8639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1171,2.7819,29.8313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1172,5.0877,15.6679,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8452,15.4508,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8605,30.1326,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.7819,29.8197,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1176,5.0877,15.7129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8452,15.4940,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8605,30.0457,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1179,2.7819,29.9626,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.0877,15.5368,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8452,15.4259,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8605,29.9029,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +1183,2.7819,29.8475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,5.0877,15.5263,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8452,15.3850,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8605,29.9991,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.7819,29.9046,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1188,5.0877,15.5879,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8452,15.3843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8605,30.1175,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.7819,30.0060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1192,5.0877,15.8876,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8452,15.5790,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8605,30.1749,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.7819,30.0876,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1196,5.0877,15.8558,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8452,15.5741,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8605,30.1893,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1199,2.7819,30.0645,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.txt new file mode 100644 index 0000000..1aa6be8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.672 +effective_logical_fps=44.966 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=19.152 +p95_encode_latency_ms=31.159 +max_encode_latency_ms=102.569 +avg_steady_encode_latency_ms=19.413 +p95_steady_encode_latency_ms=31.159 +max_steady_encode_latency_ms=32.818 +avg_tile_encode_latency_ms=13.974 +p95_tile_encode_latency_ms=30.184 +avg_max_tile_encode_latency_ms=18.266 +p95_max_tile_encode_latency_ms=30.359 +avg_steady_max_tile_encode_latency_ms=18.763 +p95_steady_max_tile_encode_latency_ms=30.361 +payload_bytes=3285466 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_logical.csv new file mode 100644 index 0000000..9787089 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,102.5685,28.6590,231707 +1,4,0,11.0538,10.5510,66780 +2,4,0,10.9340,10.3183,39357 +3,4,0,10.9311,10.4477,74679 +4,4,0,10.8566,10.3361,90240 +5,4,0,11.0477,10.4990,51400 +6,4,0,11.0076,10.4711,24471 +7,4,0,10.7949,10.2501,15456 +8,4,0,10.8045,10.3447,12225 +9,4,0,10.9629,10.4093,11577 +10,4,0,10.8406,10.3724,8688 +11,4,0,11.0051,10.4060,6135 +12,4,0,10.9482,10.3927,5248 +13,4,0,10.8595,10.2672,3904 +14,4,0,10.9822,10.3705,4045 +15,4,0,10.9442,10.3814,3841 +16,4,0,10.7725,10.3362,4052 +17,4,0,11.0223,10.4281,3892 +18,4,0,10.8744,10.3719,3655 +19,4,0,10.8951,10.3790,3640 +20,4,0,11.0343,10.5047,3468 +21,4,0,10.9451,10.5115,2760 +22,4,0,10.8593,10.3772,2744 +23,4,0,10.8457,10.3673,2825 +24,4,0,10.9396,10.4739,2942 +25,4,0,11.0815,10.4421,2915 +26,4,0,11.0381,10.3645,3004 +27,4,0,11.2303,10.6278,2971 +28,4,0,11.4880,10.5356,2886 +29,4,0,11.7941,10.8768,2887 +30,4,0,11.4537,10.4312,2822 +31,4,0,11.7409,10.8143,3075 +32,4,0,11.3740,10.5644,2682 +33,4,0,11.5337,10.6726,2794 +34,4,0,11.5915,10.0555,2633 +35,4,0,11.4673,10.0511,2659 +36,4,0,11.8690,10.5185,2694 +37,4,0,11.7946,10.1274,2700 +38,4,0,11.7922,10.1952,2730 +39,4,0,11.8640,10.3140,2717 +40,4,0,11.6947,9.4260,2776 +41,4,0,11.4400,10.5139,2683 +42,4,0,10.9178,10.3420,2871 +43,4,0,10.9704,10.5119,2615 +44,4,0,11.0459,10.5469,2607 +45,4,0,10.9087,10.4015,2632 +46,4,0,10.9486,10.4544,2660 +47,4,0,10.7832,10.2354,2741 +48,4,0,10.9706,10.4660,2645 +49,4,0,10.9512,10.4006,2728 +50,4,0,10.9494,10.4945,2671 +51,4,0,10.9210,10.4899,2626 +52,4,0,10.9409,10.4590,2624 +53,4,0,10.9453,10.4709,2731 +54,4,0,11.0258,10.4830,2640 +55,4,0,10.9578,10.4210,2594 +56,4,0,10.9440,10.4962,2594 +57,4,0,11.0513,10.5375,2594 +58,4,0,10.8848,10.3905,2606 +59,4,0,11.0026,10.4691,2613 +60,4,0,10.9863,10.5059,2614 +61,4,0,11.1220,10.5542,2630 +62,4,0,11.0601,10.4827,2615 +63,4,0,10.9545,10.4272,2609 +64,4,0,10.9485,10.4241,2661 +65,4,0,11.1137,10.5386,2594 +66,4,0,11.2739,10.6230,2602 +67,4,0,11.0171,10.4841,2601 +68,4,0,11.1163,10.5435,2601 +69,4,0,10.9150,10.3730,2615 +70,4,0,11.0768,10.5083,2614 +71,4,0,10.9416,10.4109,2643 +72,4,0,10.9207,10.3973,2640 +73,4,0,10.9399,10.3311,2616 +74,4,0,11.0044,10.4176,2617 +75,4,0,10.6963,10.1538,447803 +76,4,0,10.9387,10.4597,41096 +77,4,0,10.9172,10.3663,29372 +78,4,0,10.8318,10.3163,26146 +79,4,0,11.0271,10.4943,24645 +80,4,0,10.9543,10.4065,18588 +81,4,0,11.0049,10.4822,14136 +82,4,0,10.8540,10.2914,13249 +83,4,0,10.9944,10.4311,8480 +84,4,0,11.0509,10.5902,6999 +85,4,0,10.9346,10.4733,5269 +86,4,0,11.1085,10.5784,5559 +87,4,0,10.8800,10.3940,4427 +88,4,0,11.1766,10.6879,4046 +89,4,0,11.1159,10.5818,4351 +90,4,0,10.9718,10.4298,3187 +91,4,0,11.0306,10.5229,3248 +92,4,0,10.9724,10.4503,3137 +93,4,0,10.9686,10.4758,3487 +94,4,0,10.9116,10.4535,3463 +95,4,0,11.1515,10.6074,3326 +96,4,0,11.0488,10.5504,3675 +97,4,0,11.0564,10.5218,3305 +98,4,0,10.9790,10.4426,2681 +99,4,0,10.9841,10.4362,2717 +100,4,0,11.0576,10.4453,2799 +101,4,0,10.9232,10.4223,2988 +102,4,0,10.9957,10.4590,2997 +103,4,0,11.0090,10.5035,3117 +104,4,0,10.9257,10.4160,2930 +105,4,0,11.1014,10.6611,2760 +106,4,0,11.1142,10.6998,2702 +107,4,0,10.9456,10.4775,2730 +108,4,0,10.7679,10.3187,3302 +109,4,0,10.9327,10.3413,2785 +110,4,0,11.0238,10.4992,2884 +111,4,0,10.9475,10.4028,2610 +112,4,0,10.9844,10.4756,2620 +113,4,0,11.1077,10.6407,2696 +114,4,0,11.0053,10.5699,2703 +115,4,0,10.9577,10.5158,2842 +116,4,0,10.9300,10.4304,2804 +117,4,0,11.0849,10.5745,2875 +118,4,0,11.0768,10.5128,2650 +119,4,0,10.9910,10.4937,2846 +120,4,0,10.8608,10.3197,2618 +121,4,0,10.9967,10.3898,2662 +122,4,0,10.9150,10.3266,2692 +123,4,0,11.0080,10.3103,2691 +124,4,0,11.3841,10.4482,2749 +125,4,0,11.0881,10.4587,2608 +126,4,0,11.0995,10.3472,2697 +127,4,0,10.9983,10.2148,2662 +128,4,0,11.0490,10.3955,2650 +129,4,0,10.9584,10.3529,2671 +130,4,0,11.0654,10.3760,2787 +131,4,0,11.2293,10.3926,2711 +132,4,0,11.2125,10.4708,2603 +133,4,0,10.9357,10.3054,2621 +134,4,0,10.9314,10.3124,2676 +135,4,0,11.1074,10.3945,2647 +136,4,0,10.9285,10.3015,2666 +137,4,0,11.0090,10.1046,2671 +138,4,0,11.1195,10.5873,2706 +139,4,0,11.0981,10.5738,2616 +140,4,0,11.0046,10.4280,2604 +141,4,0,11.0087,10.4349,2704 +142,4,0,11.1444,10.5420,2594 +143,4,0,10.9875,10.3406,2608 +144,4,0,11.0139,10.4087,2603 +145,4,0,11.1829,10.4659,2643 +146,4,0,10.9332,10.3133,2594 +147,4,0,10.8936,10.2815,2594 +148,4,0,11.2066,10.2601,2618 +149,4,0,11.1433,10.5183,2613 +150,4,0,10.8780,10.0824,442009 +151,4,0,11.0443,10.3198,51986 +152,4,0,10.9378,10.3659,37534 +153,4,0,10.8855,10.3794,22775 +154,4,0,10.8896,10.3752,19338 +155,4,0,10.7999,10.3072,14536 +156,4,0,10.8582,10.3800,12262 +157,4,0,11.0235,10.4240,10968 +158,4,0,10.8412,10.2821,8801 +159,4,0,11.1194,10.4555,8653 +160,4,0,10.9652,10.3682,5415 +161,4,0,10.9449,10.3810,4568 +162,4,0,10.9383,10.3933,4365 +163,4,0,10.9693,10.3765,4969 +164,4,0,11.2990,10.6422,4044 +165,4,0,11.3647,10.4891,3769 +166,4,0,11.1553,10.3073,4045 +167,4,0,10.8894,10.2845,3021 +168,4,0,10.8916,10.2155,3161 +169,4,0,10.9243,10.1823,3158 +170,4,0,10.9796,10.2257,3695 +171,4,0,11.1860,10.4957,3644 +172,4,0,17.0452,14.9827,3346 +173,4,0,11.0620,10.2016,3538 +174,4,0,10.9364,10.1720,3348 +175,4,0,10.8303,10.2360,2683 +176,4,0,10.7389,10.2501,2673 +177,4,0,10.7837,10.2553,2794 +178,4,0,10.8964,10.3112,2845 +179,4,0,10.9758,10.4487,2867 +180,4,0,10.9953,10.4895,3034 +181,4,0,15.4124,14.8323,2842 +182,4,0,30.5375,30.1381,2774 +183,4,0,30.9445,30.5244,2830 +184,4,0,30.6031,30.1557,2768 +185,4,0,30.8761,30.4399,3072 +186,4,0,30.6193,30.1603,2646 +187,4,0,30.3542,29.8928,2773 +188,4,0,30.6944,30.2301,2594 +189,4,0,31.1673,30.3898,2624 +190,4,0,30.7563,30.1040,2694 +191,4,0,30.6324,29.9571,2651 +192,4,0,31.5364,30.5732,2774 +193,4,0,31.5081,29.6995,2705 +194,4,0,30.9831,30.2571,2756 +195,4,0,30.8695,30.1864,2629 +196,4,0,30.9021,30.1938,2808 +197,4,0,30.7706,29.9049,2596 +198,4,0,30.6469,29.9555,2594 +199,4,0,30.4312,29.9258,2644 +200,4,0,30.4988,29.9670,2624 +201,4,0,30.5070,29.9147,2677 +202,4,0,30.6454,30.0377,2633 +203,4,0,30.5866,30.0397,2621 +204,4,0,30.9333,30.2443,2605 +205,4,0,30.9107,30.3360,2614 +206,4,0,30.4787,29.9273,2640 +207,4,0,30.5295,29.9493,2708 +208,4,0,30.9045,30.3599,2637 +209,4,0,30.7375,30.1543,2596 +210,4,0,30.9581,30.2955,2594 +211,4,0,30.9019,30.2541,2599 +212,4,0,31.0687,30.3587,2605 +213,4,0,31.1848,30.5351,2604 +214,4,0,31.7122,31.0612,2601 +215,4,0,31.3594,30.6202,2624 +216,4,0,31.6332,30.8920,2594 +217,4,0,31.6526,30.9605,2594 +218,4,0,31.3906,30.6242,2630 +219,4,0,32.8175,30.9070,2594 +220,4,0,31.5371,30.0999,2619 +221,4,0,30.9074,30.0633,2610 +222,4,0,30.8622,30.1350,2622 +223,4,0,30.9137,30.2145,2596 +224,4,0,30.7890,30.0452,2594 +225,4,0,31.3750,30.5617,430277 +226,4,0,31.4833,30.2295,55788 +227,4,0,31.0485,30.1373,36999 +228,4,0,31.3480,30.3949,33528 +229,4,0,30.9387,30.1508,29369 +230,4,0,30.6237,30.0964,14046 +231,4,0,30.5793,29.9035,11023 +232,4,0,30.5386,29.9913,8916 +233,4,0,30.6894,30.0625,7834 +234,4,0,31.0306,30.3023,7339 +235,4,0,30.5419,29.9290,6374 +236,4,0,30.5697,29.9782,5975 +237,4,0,30.5783,29.8820,4302 +238,4,0,31.0162,30.2127,4027 +239,4,0,30.8778,30.0182,3709 +240,4,0,30.6817,29.9972,4340 +241,4,0,30.7033,30.0627,3385 +242,4,0,30.6275,29.8097,3167 +243,4,0,30.6834,29.8385,3558 +244,4,0,30.7540,30.0708,2848 +245,4,0,30.9817,30.2221,3000 +246,4,0,31.0995,30.3158,2912 +247,4,0,30.9136,30.1714,3193 +248,4,0,31.1588,30.3490,3184 +249,4,0,30.8432,30.1224,3073 +250,4,0,30.7538,30.2131,3243 +251,4,0,30.8347,30.2058,3306 +252,4,0,30.5677,29.9280,2670 +253,4,0,30.5961,30.0053,2643 +254,4,0,30.6901,30.0857,2656 +255,4,0,30.5477,29.9729,2787 +256,4,0,30.4160,29.7825,2806 +257,4,0,30.5612,30.1076,2937 +258,4,0,30.6614,30.2009,2833 +259,4,0,30.8187,30.1846,2793 +260,4,0,30.7550,30.1835,2746 +261,4,0,30.7129,30.1163,2819 +262,4,0,30.8120,30.2585,2999 +263,4,0,30.3977,29.8660,2746 +264,4,0,30.6392,30.1183,2856 +265,4,0,30.6268,30.0958,2594 +266,4,0,30.6898,30.0390,2605 +267,4,0,30.9654,30.4105,2630 +268,4,0,30.6382,30.0334,2631 +269,4,0,30.6326,30.1106,2673 +270,4,0,30.7354,30.2267,2657 +271,4,0,30.6885,30.1141,2764 +272,4,0,30.3981,29.8438,2607 +273,4,0,30.5433,30.0296,2829 +274,4,0,30.5922,30.0355,2599 +275,4,0,30.4029,29.9674,2610 +276,4,0,30.6371,30.1812,2642 +277,4,0,30.4112,29.8563,2631 +278,4,0,30.5314,29.9352,2707 +279,4,0,30.4915,29.9762,2603 +280,4,0,30.4586,29.8990,2648 +281,4,0,30.8729,30.2477,2628 +282,4,0,30.5998,29.9892,2613 +283,4,0,30.8140,30.1483,2628 +284,4,0,30.6902,29.9810,2778 +285,4,0,30.7207,30.0958,2664 +286,4,0,30.6610,29.9838,2594 +287,4,0,30.8182,30.2211,2594 +288,4,0,30.7847,30.1833,2594 +289,4,0,31.0141,30.3434,2611 +290,4,0,30.7707,30.2055,2605 +291,4,0,30.2958,29.8655,2616 +292,4,0,30.4109,29.8639,2638 +293,4,0,30.6008,30.1326,2615 +294,4,0,30.6424,30.0457,2604 +295,4,0,30.4074,29.9029,2737 +296,4,0,30.4949,29.9991,2601 +297,4,0,30.6459,30.1175,2600 +298,4,0,30.7098,30.1749,2604 +299,4,0,30.6411,30.1893,2619 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.csv new file mode 100644 index 0000000..4997cce --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.4201,30.0753,0.0263,0.0000,0,0,0.0000,0,0.0000,0,1,0,65577,0 +1,2.8640,26.5042,0.0272,0.0000,0,0,0.0000,0,0.0000,0,1,0,46743,0 +2,2.8957,26.9370,0.0167,0.0000,0,0,0.0000,0,0.0000,0,1,0,76371,0 +3,2.9904,27.1919,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,74424,0 +4,5.4201,8.5292,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13502,0 +5,2.8640,8.3622,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10195,0 +6,2.8957,15.9381,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,16307,0 +7,2.9904,15.9329,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16760,0 +8,5.4201,8.4946,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4727,0 +9,2.8640,8.3293,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4600,0 +10,2.8957,15.8138,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7495,0 +11,2.9904,15.9593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6743,0 +12,5.4201,8.3565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3928,0 +13,2.8640,8.2674,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3394,0 +14,2.8957,15.7446,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6361,0 +15,2.9904,15.8115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6262,0 +16,5.4201,8.4545,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12168,0 +17,2.8640,8.4097,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8249,0 +18,2.8957,16.0744,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,12477,0 +19,2.9904,16.1006,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15941,0 +20,5.4201,8.3808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5490,0 +21,2.8640,8.3770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4750,0 +22,2.8957,15.8340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5916,0 +23,2.9904,15.9305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6808,0 +24,5.4201,8.4360,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5214,0 +25,2.8640,8.3958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4862,0 +26,2.8957,15.7654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5604,0 +27,2.9904,15.9897,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6567,0 +28,5.4201,8.6225,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10476,0 +29,2.8640,8.6006,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9101,0 +30,2.8957,15.9653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11227,0 +31,2.9904,16.1819,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9855,0 +32,5.4201,8.4102,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,5418,0 +33,2.8640,8.3973,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3974,0 +34,2.8957,15.5802,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4943,0 +35,2.9904,15.7933,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +36,5.4201,8.4095,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6642,0 +37,2.8640,8.2643,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4249,0 +38,2.8957,15.8603,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5514,0 +39,2.9904,15.8132,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5679,0 +40,5.4201,8.7075,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11523,0 +41,2.8640,8.5207,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7134,0 +42,2.8957,16.1481,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9997,0 +43,2.9904,16.1395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9820,0 +44,5.4201,8.3498,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5449,0 +45,2.8640,8.2871,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +46,2.8957,15.7201,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2383,0 +47,2.9904,15.7547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +48,5.4201,8.4172,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5596,0 +49,2.8640,8.4688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2600,0 +50,2.8957,15.7144,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2856,0 +51,2.9904,16.0410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3377,0 +52,5.4201,8.4948,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8219,0 +53,2.8640,8.5595,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3602,0 +54,2.8957,15.9010,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9110,0 +55,2.9904,16.2485,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9960,0 +56,5.4201,8.3528,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3207,0 +57,2.8640,8.4605,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1906,0 +58,2.8957,15.6502,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +59,2.9904,15.9920,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2970,0 +60,5.4201,8.4728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2658,0 +61,2.8640,8.2711,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +62,2.8957,15.7266,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1297,0 +63,2.9904,15.8534,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2210,0 +64,5.4201,8.5791,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5862,0 +65,2.8640,8.4192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3313,0 +66,2.8957,15.9745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +67,2.9904,16.0379,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8578,0 +68,5.4201,8.4355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3577,0 +69,2.8640,8.3398,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2291,0 +70,2.8957,15.6635,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2658,0 +71,2.9904,15.7357,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3975,0 +72,5.4201,8.3896,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3258,0 +73,2.8640,8.3141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2618,0 +74,2.8957,15.6877,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2954,0 +75,2.9904,15.7504,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3457,0 +76,5.4201,8.7676,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4588,0 +77,2.8640,8.5605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3319,0 +78,2.8957,16.1610,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7119,0 +79,2.9904,16.3222,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6618,0 +80,5.4201,8.4335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2422,0 +81,2.8640,8.3911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +82,2.8957,15.8921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2895,0 +83,2.9904,16.0208,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3060,0 +84,5.4201,8.4858,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2052,0 +85,2.8640,8.3835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,811,0 +86,2.8957,15.8242,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2420,0 +87,2.9904,15.9568,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2555,0 +88,5.4201,8.4013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2712,0 +89,2.8640,8.3235,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +90,2.8957,15.9767,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3662,0 +91,2.9904,15.9763,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4037,0 +92,5.4201,8.4246,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +93,2.8640,8.4126,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,642,0 +94,2.8957,15.8033,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +95,2.9904,15.9639,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +96,5.4201,8.4552,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +97,2.8640,8.4144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +98,2.8957,15.8945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +99,2.9904,16.0621,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +100,5.4201,8.6429,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1849,0 +101,2.8640,8.4957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +102,2.8957,16.2661,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3088,0 +103,2.9904,16.1826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3094,0 +104,5.4201,8.5888,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1287,0 +105,2.8640,8.4288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,619,0 +106,2.8957,15.8571,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +107,2.9904,15.9749,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +108,5.4201,8.4487,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1109,0 +109,2.8640,8.3283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +110,2.8957,15.9278,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1162,0 +111,2.9904,15.9277,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1235,0 +112,5.4201,8.6716,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +113,2.8640,8.5276,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,557,0 +114,2.8957,16.2482,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2703,0 +115,2.9904,16.2345,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2329,0 +116,5.4201,8.5233,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +117,2.8640,8.3951,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +118,2.8957,15.9511,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +119,2.9904,15.9652,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1189,0 +120,5.4201,8.5341,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +121,2.8640,8.3572,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +122,2.8957,15.9340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +123,2.9904,15.9902,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +124,5.4201,8.5856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,470,0 +125,2.8640,8.4920,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,512,0 +126,2.8957,16.0750,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,924,0 +127,2.9904,16.1713,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +128,5.4201,8.4447,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +129,2.8640,8.3889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8957,15.9157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +131,2.9904,16.0039,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +132,5.4201,8.4483,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +133,2.8640,8.4125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8957,15.8868,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +135,2.9904,15.9396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,909,0 +136,5.4201,8.5160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +137,2.8640,8.4744,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,410,0 +138,2.8957,15.8750,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,573,0 +139,2.9904,15.9836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +140,5.4201,8.3454,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +141,2.8640,8.2865,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +142,2.8957,15.5891,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,688,0 +143,2.9904,15.6632,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,692,0 +144,5.4201,8.3172,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +145,2.8640,8.2734,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8957,15.5051,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +147,2.9904,15.6399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +148,5.4201,8.4540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,409,0 +149,2.8640,8.4391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,343,0 +150,2.8957,15.7450,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,544,0 +151,2.9904,15.8255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,541,0 +152,5.4201,8.3439,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +153,2.8640,8.3336,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8957,15.6892,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +155,2.9904,15.6875,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +156,5.4201,8.5163,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +157,2.8640,8.3550,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8957,15.8439,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +159,2.9904,15.7455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +160,5.4201,8.6267,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +161,2.8640,8.5403,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,306,0 +162,2.8957,15.8909,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,400,0 +163,2.9904,15.9556,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,460,0 +164,5.4201,8.5943,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8640,8.4028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8957,15.8581,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +167,2.9904,15.9816,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +168,5.4201,8.8409,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8640,8.5990,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8957,15.9666,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +171,2.9904,16.0189,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +172,5.4201,8.9926,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,315,0 +173,2.8640,8.5135,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,302,0 +174,2.8957,15.8791,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +175,2.9904,15.7656,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,458,0 +176,5.4201,8.4295,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8640,8.2548,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8957,15.6518,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +179,2.9904,15.5944,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +180,5.4201,8.4826,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8640,8.3536,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8957,15.8706,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +183,2.9904,15.8984,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +184,5.4201,8.5848,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,287,0 +185,2.8640,8.4024,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,301,0 +186,2.8957,16.0784,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,340,0 +187,2.9904,16.1390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,404,0 +188,5.4201,8.5247,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8640,8.4663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8957,15.6569,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +191,2.9904,15.8765,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +192,5.4201,8.5122,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8640,8.5253,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8957,15.9321,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +195,2.9904,15.9115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +196,5.4201,8.8972,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,285,0 +197,2.8640,8.6661,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,281,0 +198,2.8957,16.0780,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,304,0 +199,2.9904,16.1829,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,353,0 +200,5.4201,8.7789,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8640,8.7110,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8957,15.9337,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +203,2.9904,15.8975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +204,5.4201,13.3835,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8640,12.7222,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8957,15.4808,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +207,2.9904,15.3955,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +208,5.4201,8.8088,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,282,0 +209,2.8640,8.5956,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,276,0 +210,2.8957,16.1332,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,284,0 +211,2.9904,16.1792,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,329,0 +212,5.4201,8.7133,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8640,8.5177,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8957,16.1456,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +215,2.9904,16.0537,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +216,5.4201,8.9245,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8640,8.6242,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8957,15.7537,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +219,2.9904,15.7594,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +220,5.4201,9.0241,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,309,0 +221,2.8640,8.7217,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +222,2.8957,15.8470,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,278,0 +223,2.9904,15.8926,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,311,0 +224,5.4201,8.4692,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8640,8.4705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8957,15.5973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +227,2.9904,15.7565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,691,0 +228,5.4201,8.4917,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8640,8.3859,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8957,15.6630,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +231,2.9904,15.6555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +232,5.4201,8.6038,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,308,0 +233,2.8640,8.4028,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +234,2.8957,15.8972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,272,0 +235,2.9904,15.8845,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,292,0 +236,5.4201,8.3534,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8640,8.3160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8957,15.5915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +239,2.9904,15.6547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +240,5.4201,8.3591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8640,8.2766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8957,15.6668,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +243,2.9904,15.6494,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +244,5.4201,8.6337,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,300,0 +245,2.8640,8.3980,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +246,2.8957,16.1666,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +247,2.9904,16.0645,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,281,0 +248,5.4201,8.6976,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8640,8.3754,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8957,15.9592,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +251,2.9904,15.9048,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +252,5.4201,8.4983,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8640,8.3163,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8957,15.9380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +255,2.9904,15.9113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +256,5.4201,8.4728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,309,0 +257,2.8640,8.3567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +258,2.8957,15.9563,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +259,2.9904,16.0521,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,274,0 +260,5.4201,8.4283,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8640,8.3356,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8957,15.8459,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +263,2.9904,15.8120,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +264,5.4201,8.4415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8640,8.3865,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8957,15.8141,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +267,2.9904,15.9426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +268,5.4201,8.5175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,311,0 +269,2.8640,8.4991,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +270,2.8957,16.0495,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +271,2.9904,16.1728,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,273,0 +272,5.4201,8.3917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +273,2.8640,8.3619,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8957,15.7455,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +275,2.9904,15.8836,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +276,5.4201,8.2558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8640,8.1922,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8957,15.7506,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +279,2.9904,15.7800,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +280,5.4201,8.7359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,322,0 +281,2.8640,8.5220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +282,2.8957,16.0905,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +283,2.9904,16.2194,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +284,5.4201,8.3335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8640,8.3930,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8957,15.7190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +287,2.9904,16.1401,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +288,5.4201,8.4892,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8640,8.3914,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8957,15.8290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +291,2.9904,15.9798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +292,5.4201,8.4819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,304,0 +293,2.8640,8.4734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +294,2.8957,15.9716,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +295,2.9904,16.0513,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +296,5.4201,8.4620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +297,2.8640,8.3243,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8957,15.8241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +299,2.9904,15.8072,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +300,5.4201,6.7051,0.0640,0.0000,0,0,0.0000,0,0.0000,0,1,0,148834,0 +301,2.8640,6.5425,0.0350,0.0000,0,0,0.0000,0,0.0000,0,1,0,96701,0 +302,2.8957,12.2299,0.0428,0.0000,0,0,0.0000,0,0.0000,0,1,0,161590,0 +303,2.9904,12.2188,0.0557,0.0000,0,0,0.0000,0,0.0000,0,1,0,168053,0 +304,5.4201,8.4245,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8983,0 +305,2.8640,8.4159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6137,0 +306,2.8957,15.7775,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5128,0 +307,2.9904,15.8127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5557,0 +308,5.4201,8.4888,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5465,0 +309,2.8640,8.4265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4105,0 +310,2.8957,15.8027,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6105,0 +311,2.9904,15.8468,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4061,0 +312,5.4201,8.6019,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5965,0 +313,2.8640,8.4361,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +314,2.8957,15.8310,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4351,0 +315,2.9904,15.8255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4655,0 +316,5.4201,8.7143,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +317,2.8640,8.5278,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4820,0 +318,2.8957,16.1085,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,11258,0 +319,2.9904,16.1702,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10879,0 +320,5.4201,8.5768,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5284,0 +321,2.8640,8.4521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +322,2.8957,15.9496,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5295,0 +323,2.9904,15.9430,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +324,5.4201,8.5980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5550,0 +325,2.8640,8.5480,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3154,0 +326,2.8957,15.7519,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,5549,0 +327,2.9904,15.9466,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6691,0 +328,5.4201,8.7193,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8321,0 +329,2.8640,8.5780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10810,0 +330,2.8957,16.1718,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10326,0 +331,2.9904,16.1428,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,11931,0 +332,5.4201,8.4998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5210,0 +333,2.8640,8.5161,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6835,0 +334,2.8957,15.7413,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2735,0 +335,2.9904,15.9772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3091,0 +336,5.4201,8.4391,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4803,0 +337,2.8640,8.4401,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +338,2.8957,15.6587,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3128,0 +339,2.9904,15.9254,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3191,0 +340,5.4201,8.5918,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9804,0 +341,2.8640,8.6042,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9291,0 +342,2.8957,16.0238,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,15349,0 +343,2.9904,16.1593,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13690,0 +344,5.4201,8.5210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4686,0 +345,2.8640,8.4343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4405,0 +346,2.8957,15.8288,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4273,0 +347,2.9904,15.8606,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4150,0 +348,5.4201,8.5359,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5788,0 +349,2.8640,8.5262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4524,0 +350,2.8957,15.5998,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5118,0 +351,2.9904,16.0121,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4453,0 +352,5.4201,8.5390,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7009,0 +353,2.8640,8.5739,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4201,0 +354,2.8957,15.8306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10639,0 +355,2.9904,16.1249,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8643,0 +356,5.4201,8.3914,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4220,0 +357,2.8640,8.4559,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1294,0 +358,2.8957,15.7525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3608,0 +359,2.9904,15.9523,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2838,0 +360,5.4201,8.4050,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3658,0 +361,2.8640,8.4953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +362,2.8957,15.6310,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3382,0 +363,2.9904,16.0053,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2836,0 +364,5.4201,8.5369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3907,0 +365,2.8640,8.6115,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +366,2.8957,15.9239,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5470,0 +367,2.9904,16.2023,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4928,0 +368,5.4201,8.9224,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +369,2.8640,8.6002,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8957,15.8552,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,3966,0 +371,2.9904,15.9173,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3485,0 +372,5.4201,8.9893,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2820,0 +373,2.8640,8.4949,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8957,13.9476,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3544,0 +375,2.9904,16.0240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3383,0 +376,5.4201,8.7807,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +377,2.8640,8.5199,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,296,0 +378,2.8957,16.1759,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +379,2.9904,16.0645,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +380,5.4201,8.5943,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2561,0 +381,2.8640,8.3598,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8957,15.8551,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1016,0 +383,2.9904,15.8478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.4201,8.5873,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +385,2.8640,8.4413,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8957,15.7480,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +387,2.9904,15.9031,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +388,5.4201,8.8150,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +389,2.8640,8.6381,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,283,0 +390,2.8957,15.9467,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +391,2.9904,16.0512,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,303,0 +392,5.4201,8.5757,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +393,2.8640,8.4964,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8957,15.6994,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,688,0 +395,2.9904,15.9507,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +396,5.4201,8.5765,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8640,8.5144,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8957,15.7249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +399,2.9904,15.7922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +400,5.4201,8.8026,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,290,0 +401,2.8640,8.4786,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +402,2.8957,16.1046,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,381,0 +403,2.9904,16.0701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,340,0 +404,5.4201,8.8018,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8640,8.5255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8957,16.1163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +407,2.9904,16.0545,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +408,5.4201,8.8578,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8640,8.5816,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8957,16.1248,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +411,2.9904,16.0939,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +412,5.4201,8.8685,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +413,2.8640,8.7097,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +414,2.8957,16.1447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,304,0 +415,2.9904,16.2707,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,303,0 +416,5.4201,8.7260,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8640,8.4667,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8957,15.9415,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +419,2.9904,15.9614,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +420,5.4201,8.4350,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8640,8.2827,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8957,15.8465,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +423,2.9904,15.7484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +424,5.4201,8.5301,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +425,2.8640,8.4535,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +426,2.8957,16.0048,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,281,0 +427,2.9904,16.0577,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,289,0 +428,5.4201,8.4352,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8640,8.3804,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8957,15.7590,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +431,2.9904,15.7892,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +432,5.4201,8.3663,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8640,8.2771,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8957,15.6644,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +435,2.9904,15.6930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +436,5.4201,8.4464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +437,2.8640,8.3434,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +438,2.8957,15.9015,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,271,0 +439,2.9904,15.9305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,283,0 +440,5.4201,8.4635,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8640,8.3280,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8957,15.9210,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +443,2.9904,15.8115,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +444,5.4201,8.3626,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8640,8.2555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8957,15.6992,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +447,2.9904,15.7466,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +448,5.4201,8.7095,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +449,2.8640,8.5593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +450,2.8957,16.0709,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +451,2.9904,16.1009,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,277,0 +452,5.4201,8.4110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8640,8.2985,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8957,15.7786,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +455,2.9904,15.7572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +456,5.4201,8.4024,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8640,8.2960,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8957,15.7106,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +459,2.9904,15.7717,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +460,5.4201,8.4535,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +461,2.8640,8.3920,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +462,2.8957,15.8797,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +463,2.9904,16.0102,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +464,5.4201,8.3327,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8640,8.2513,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8957,15.7833,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +467,2.9904,15.8048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +468,5.4201,8.4198,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8640,8.2775,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8957,15.7828,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +471,2.9904,15.8532,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +472,5.4201,8.4302,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +473,2.8640,8.3338,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +474,2.8957,15.9779,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +475,2.9904,15.9720,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +476,5.4201,8.4429,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8640,8.2843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8957,15.8537,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +479,2.9904,15.8422,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +480,5.4201,8.3172,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8640,8.1986,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8957,15.6970,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +483,2.9904,15.6683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +484,5.4201,8.4768,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +485,2.8640,8.3611,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +486,2.8957,15.9852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +487,2.9904,16.0122,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +488,5.4201,8.3617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8640,8.3529,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8957,15.8549,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +491,2.9904,15.9840,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +492,5.4201,8.3902,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8640,8.4128,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8957,15.7673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +495,2.9904,16.0482,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +496,5.4201,8.4173,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +497,2.8640,8.4901,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +498,2.8957,15.9981,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +499,2.9904,16.1627,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +500,5.4201,8.3414,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8640,8.3660,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8957,15.8614,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +503,2.9904,15.9954,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +504,5.4201,8.3217,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8640,8.3206,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8957,15.7492,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +507,2.9904,15.8754,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +508,5.4201,8.4687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +509,2.8640,8.4637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +510,2.8957,15.9490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +511,2.9904,16.0601,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +512,5.4201,8.4723,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8640,8.3865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8957,15.9002,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +515,2.9904,15.8731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +516,5.4201,8.5745,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8640,8.6147,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8957,15.6890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +519,2.9904,15.8855,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +520,5.4201,8.6960,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +521,2.8640,8.5359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +522,2.8957,16.1620,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +523,2.9904,16.1450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +524,5.4201,8.5127,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8640,8.4733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8957,15.8809,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +527,2.9904,16.0149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +528,5.4201,8.5274,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8640,8.4649,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8957,15.8985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +531,2.9904,15.9166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +532,5.4201,8.4479,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +533,2.8640,8.3806,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +534,2.8957,15.8470,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +535,2.9904,15.8546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +536,5.4201,8.4768,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8640,8.3738,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8957,15.7901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +539,2.9904,15.8717,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +540,5.4201,8.4640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8640,8.3952,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8957,15.6457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +543,2.9904,15.8356,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +544,5.4201,8.4144,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +545,2.8640,8.4744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +546,2.8957,15.8175,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +547,2.9904,16.0423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +548,5.4201,8.4281,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8640,8.3996,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8957,15.7450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +551,2.9904,15.8339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +552,5.4201,8.4660,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8640,8.3070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8957,15.7345,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +555,2.9904,15.7216,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +556,5.4201,8.5812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +557,2.8640,8.4130,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +558,2.8957,16.0021,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +559,2.9904,16.0826,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +560,5.4201,8.5064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8640,8.4261,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8957,15.8742,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +563,2.9904,15.9925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +564,5.4201,8.5217,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8640,8.5180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8957,15.8402,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +567,2.9904,16.0297,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +568,5.4201,8.5774,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +569,2.8640,8.4841,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +570,2.8957,16.0280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +571,2.9904,16.0380,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +572,5.4201,8.5719,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8640,8.3826,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8957,15.7155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +575,2.9904,15.7969,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +576,5.4201,8.3560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8640,8.2724,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8957,15.8458,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +579,2.9904,15.8488,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +580,5.4201,8.5648,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +581,2.8640,8.6623,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +582,2.8957,15.7412,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +583,2.9904,16.0011,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +584,5.4201,8.5606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8640,8.5316,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8957,15.9027,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +587,2.9904,16.0553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +588,5.4201,8.4645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8640,8.5331,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8957,16.0201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +591,2.9904,16.0888,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +592,5.4201,8.4678,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +593,2.8640,8.4329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +594,2.8957,16.1061,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +595,2.9904,16.0866,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +596,5.4201,8.4048,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8640,8.3904,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8957,15.8407,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +599,2.9904,15.8576,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +600,5.4201,6.7907,0.0396,0.0000,0,0,0.0000,0,0.0000,0,1,0,148834,0 +601,2.8640,6.6302,0.0266,0.0000,0,0,0.0000,0,0.0000,0,1,0,96701,0 +602,2.8957,12.1820,0.0423,0.0000,0,0,0.0000,0,0.0000,0,1,0,161590,0 +603,2.9904,12.2219,0.0218,0.0000,0,0,0.0000,0,0.0000,0,1,0,168053,0 +604,5.4201,8.8084,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8983,0 +605,2.8640,8.4810,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6137,0 +606,2.8957,16.3689,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5128,0 +607,2.9904,16.1408,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5557,0 +608,5.4201,8.5216,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5465,0 +609,2.8640,8.4602,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4105,0 +610,2.8957,15.8960,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6016,0 +611,2.9904,15.9000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4475,0 +612,5.4201,8.5877,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5965,0 +613,2.8640,8.4147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +614,2.8957,16.0568,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5560,0 +615,2.9904,16.0324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2426,0 +616,5.4201,8.7511,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +617,2.8640,8.6093,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4820,0 +618,2.8957,16.4118,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,10882,0 +619,2.9904,16.3528,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,12428,0 +620,5.4201,8.4897,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5284,0 +621,2.8640,8.3037,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +622,2.8957,15.7801,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2598,0 +623,2.9904,15.7788,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +624,5.4201,8.5111,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5550,0 +625,2.8640,8.4782,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3154,0 +626,2.8957,15.8477,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2517,0 +627,2.9904,15.9992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3124,0 +628,5.4201,8.7155,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,8321,0 +629,2.8640,8.6107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10810,0 +630,2.8957,16.3375,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13429,0 +631,2.9904,16.4600,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,16311,0 +632,5.4201,8.4955,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5210,0 +633,2.8640,8.4367,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6835,0 +634,2.8957,15.8908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4122,0 +635,2.9904,16.0250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5697,0 +636,5.4201,8.4652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4803,0 +637,2.8640,8.4902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +638,2.8957,15.9504,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4400,0 +639,2.9904,16.1373,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7862,0 +640,5.4201,8.8771,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,9804,0 +641,2.8640,8.6762,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9291,0 +642,2.8957,16.4365,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,16467,0 +643,2.9904,16.3656,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,13383,0 +644,5.4201,8.5248,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4686,0 +645,2.8640,8.4551,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4405,0 +646,2.8957,15.9665,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6303,0 +647,2.9904,16.0223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5379,0 +648,5.4201,8.4442,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5788,0 +649,2.8640,8.3138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4524,0 +650,2.8957,15.8934,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5273,0 +651,2.9904,15.9013,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4271,0 +652,5.4201,8.6126,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7009,0 +653,2.8640,8.5817,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4201,0 +654,2.8957,16.3143,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10391,0 +655,2.9904,16.3775,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8356,0 +656,5.4201,8.5860,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4220,0 +657,2.8640,8.5039,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1294,0 +658,2.8957,15.9706,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5755,0 +659,2.9904,16.0985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4413,0 +660,5.4201,8.5337,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3658,0 +661,2.8640,8.4771,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +662,2.8957,16.1182,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5013,0 +663,2.9904,16.0262,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3810,0 +664,5.4201,8.5938,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3907,0 +665,2.8640,8.5500,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +666,2.8957,16.1446,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5138,0 +667,2.9904,16.2024,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4208,0 +668,5.4201,8.5008,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +669,2.8640,8.4565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8957,15.7779,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1435,0 +671,2.9904,15.8711,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1057,0 +672,5.4201,8.4345,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2820,0 +673,2.8640,8.2748,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8957,15.7677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1427,0 +675,2.9904,15.7912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1227,0 +676,5.4201,8.5166,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +677,2.8640,8.3785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,296,0 +678,2.8957,15.9466,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +679,2.9904,15.9619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +680,5.4201,8.4104,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2561,0 +681,2.8640,8.3540,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8957,15.7011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +683,2.9904,15.7863,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +684,5.4201,8.4176,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +685,2.8640,8.4122,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8957,15.7579,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,688,0 +687,2.9904,15.9912,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,688,0 +688,5.4201,8.5037,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +689,2.8640,8.3764,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,283,0 +690,2.8957,15.9290,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,342,0 +691,2.9904,15.9495,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,342,0 +692,5.4201,8.5262,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +693,2.8640,8.2837,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8957,15.6306,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +695,2.9904,15.6912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +696,5.4201,8.4808,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8640,8.3846,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8957,15.7019,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +699,2.9904,15.8329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +700,5.4201,8.5768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,290,0 +701,2.8640,8.6485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +702,2.8957,16.0092,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,393,0 +703,2.9904,16.2628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +704,5.4201,8.4093,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8640,8.4244,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8957,15.7695,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +707,2.9904,15.8140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +708,5.4201,8.5802,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8640,8.4917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8957,15.8920,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +711,2.9904,16.0279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +712,5.4201,8.5594,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +713,2.8640,8.6059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +714,2.8957,16.0634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,342,0 +715,2.9904,16.2019,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,332,0 +716,5.4201,8.3377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8640,8.3534,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8957,15.7125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +719,2.9904,15.7488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +720,5.4201,8.6204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.8640,8.5219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8957,16.0583,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +723,2.9904,16.0832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +724,5.4201,8.7920,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +725,2.8640,8.6323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +726,2.8957,22.9310,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,308,0 +727,2.9904,23.2840,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,301,0 +728,5.4201,24.1246,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8640,23.9013,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8957,46.8093,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +731,2.9904,46.6582,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +732,5.4201,24.0503,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8640,23.6401,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8957,46.3449,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +735,2.9904,46.1229,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +736,5.4201,24.1224,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +737,2.8640,23.8817,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +738,2.8957,47.0414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,275,0 +739,2.9904,46.9405,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,294,0 +740,5.4201,24.0045,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8640,23.7307,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8957,46.3170,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +743,2.9904,46.1579,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +744,5.4201,23.8450,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8640,23.5707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8957,46.3741,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +747,2.9904,46.2575,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +748,5.4201,24.1952,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +749,2.8640,23.8894,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +750,2.8957,47.0073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +751,2.9904,46.8103,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,276,0 +752,5.4201,23.7916,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8640,23.5145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8957,46.4258,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +755,2.9904,46.2918,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +756,5.4201,23.9569,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8640,23.6925,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8957,46.3804,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +759,2.9904,45.9877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +760,5.4201,24.1088,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +761,2.8640,23.8753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +762,2.8957,47.0910,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +763,2.9904,46.9724,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +764,5.4201,23.8397,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8640,23.5737,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8957,46.3672,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +767,2.9904,46.2860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +768,5.4201,24.0856,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8640,23.8264,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8957,46.5337,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +771,2.9904,46.4915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +772,5.4201,24.5475,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +773,2.8640,24.2462,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +774,2.8957,47.2266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +775,2.9904,47.1202,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +776,5.4201,23.7818,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8640,23.5220,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8957,46.3737,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +779,2.9904,46.2642,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +780,5.4201,23.8437,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8640,23.5277,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8957,46.3917,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +783,2.9904,46.3034,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +784,5.4201,24.3025,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +785,2.8640,23.9583,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +786,2.8957,47.0318,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +787,2.9904,46.8709,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +788,5.4201,23.9040,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8640,23.6218,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8957,46.5214,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +791,2.9904,46.4089,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +792,5.4201,24.2198,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8640,23.9528,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8957,46.6403,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +795,2.9904,46.5240,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +796,5.4201,24.1802,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +797,2.8640,23.8343,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +798,2.8957,47.2002,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +799,2.9904,47.0737,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +800,5.4201,23.7422,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8640,23.5012,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8957,46.2378,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +803,2.9904,46.1323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +804,5.4201,23.7865,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8640,23.6060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8957,46.2383,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +807,2.9904,46.0659,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +808,5.4201,24.3524,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +809,2.8640,24.0793,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +810,2.8957,47.0588,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +811,2.9904,46.9306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +812,5.4201,24.2059,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8640,23.9035,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8957,46.5500,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +815,2.9904,46.4364,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +816,5.4201,24.1187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8640,23.8734,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8957,46.7392,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +819,2.9904,46.6771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +820,5.4201,24.0972,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +821,2.8640,23.8765,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +822,2.8957,47.1625,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +823,2.9904,46.9852,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +824,5.4201,24.1003,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8640,23.7624,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8957,46.7306,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +827,2.9904,46.5451,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +828,5.4201,24.1970,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8640,23.8115,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8957,46.7935,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +831,2.9904,46.5976,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +832,5.4201,24.8105,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +833,2.8640,24.3344,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +834,2.8957,47.5663,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +835,2.9904,47.2983,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +836,5.4201,24.4461,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8640,23.9235,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8957,46.8163,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +839,2.9904,46.6195,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +840,5.4201,24.1797,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8640,23.8070,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8957,46.5394,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +843,2.9904,46.4695,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +844,5.4201,24.2043,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +845,2.8640,23.9385,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +846,2.8957,47.0559,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +847,2.9904,46.8492,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +848,5.4201,24.2151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8640,23.8287,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8957,46.9722,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +851,2.9904,46.7883,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +852,5.4201,24.8198,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8640,24.2280,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8957,46.5175,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +855,2.9904,46.3050,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +856,5.4201,24.2615,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +857,2.8640,23.9091,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +858,2.8957,47.1730,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +859,2.9904,46.9815,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +860,5.4201,24.0348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8640,23.7744,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8957,46.4094,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +863,2.9904,46.2755,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +864,5.4201,24.0217,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8640,23.6937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8957,46.6953,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +867,2.9904,46.4539,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +868,5.4201,24.4099,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +869,2.8640,24.1236,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +870,2.8957,47.0299,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +871,2.9904,46.8966,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +872,5.4201,23.9847,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8640,23.6909,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8957,46.2470,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +875,2.9904,46.0875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +876,5.4201,24.0563,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8640,23.7301,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8957,46.5172,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +879,2.9904,46.3618,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +880,5.4201,24.1538,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +881,2.8640,23.8913,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +882,2.8957,46.9869,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +883,2.9904,46.8290,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +884,5.4201,24.0667,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8640,23.6512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8957,46.3009,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +887,2.9904,46.1320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +888,5.4201,24.2187,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8640,23.9803,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8957,46.8838,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +891,2.9904,46.8260,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +892,5.4201,24.6225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +893,2.8640,24.1534,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +894,2.8957,47.1493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +895,2.9904,46.9473,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +896,5.4201,24.3839,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8640,23.8877,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8957,46.5899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +899,2.9904,46.3463,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +900,5.4201,19.0083,0.0418,0.0000,0,0,0.0000,0,0.0000,0,1,0,148834,0 +901,2.8640,18.6047,0.0258,0.0000,0,0,0.0000,0,0.0000,0,1,0,96701,0 +902,2.8957,36.1572,0.0549,0.0000,0,0,0.0000,0,0.0000,0,1,0,161590,0 +903,2.9904,35.9940,0.0637,0.0000,0,0,0.0000,0,0.0000,0,1,0,168053,0 +904,5.4201,24.3992,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8983,0 +905,2.8640,23.9333,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,6137,0 +906,2.8957,46.8282,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5913,0 +907,2.9904,46.6037,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5828,0 +908,5.4201,24.3893,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,5465,0 +909,2.8640,24.0514,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4105,0 +910,2.8957,46.8385,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6451,0 +911,2.9904,46.6398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4745,0 +912,5.4201,24.0339,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5965,0 +913,2.8640,23.7082,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +914,2.8957,46.4278,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5843,0 +915,2.9904,46.2567,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2087,0 +916,5.4201,24.5668,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +917,2.8640,24.2185,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4820,0 +918,2.8957,47.5739,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8281,0 +919,2.9904,47.3461,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,12451,0 +920,5.4201,24.5093,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,5284,0 +921,2.8640,24.0693,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +922,2.8957,46.8457,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +923,2.9904,46.6598,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3496,0 +924,5.4201,24.4065,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,5550,0 +925,2.8640,24.0087,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3154,0 +926,2.8957,46.9146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3255,0 +927,2.9904,46.7325,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3536,0 +928,5.4201,24.8155,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,8321,0 +929,2.8640,24.3897,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,10810,0 +930,2.8957,47.5556,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +931,2.9904,47.3685,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,15426,0 +932,5.4201,24.3570,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,5210,0 +933,2.8640,23.9283,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,6835,0 +934,2.8957,46.8173,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4062,0 +935,2.9904,46.5911,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,5227,0 +936,5.4201,24.1004,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4803,0 +937,2.8640,23.6603,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +938,2.8957,46.6258,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4286,0 +939,2.9904,46.4299,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,7735,0 +940,5.4201,24.4477,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9804,0 +941,2.8640,24.1489,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9291,0 +942,2.8957,47.3890,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,15993,0 +943,2.9904,47.2638,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,13807,0 +944,5.4201,24.0182,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,4686,0 +945,2.8640,23.6992,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,4405,0 +946,2.8957,46.3483,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6056,0 +947,2.9904,46.2275,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5657,0 +948,5.4201,24.0814,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5788,0 +949,2.8640,23.7105,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4524,0 +950,2.8957,46.6337,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,5029,0 +951,2.9904,46.4567,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,4096,0 +952,5.4201,24.6215,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7009,0 +953,2.8640,24.1951,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4201,0 +954,2.8957,47.3730,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11524,0 +955,2.9904,47.1866,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8317,0 +956,5.4201,24.2106,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4220,0 +957,2.8640,23.7640,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1294,0 +958,2.8957,46.4288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5703,0 +959,2.9904,46.3220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4587,0 +960,5.4201,24.4141,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3658,0 +961,2.8640,24.1388,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +962,2.8957,46.9982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4888,0 +963,2.9904,46.8201,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3901,0 +964,5.4201,24.5608,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3907,0 +965,2.8640,24.1186,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +966,2.8957,48.0577,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,5341,0 +967,2.9904,47.7915,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,4369,0 +968,5.4201,24.4513,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +969,2.8640,23.7704,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8957,44.6359,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1416,0 +971,2.9904,44.2073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +972,5.4201,24.2963,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2820,0 +973,2.8640,24.0120,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8957,46.5970,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1584,0 +975,2.9904,46.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +976,5.4201,24.1462,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +977,2.8640,23.8762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,296,0 +978,2.8957,47.0235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +979,2.9904,46.8120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1038,0 +980,5.4201,23.9054,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2561,0 +981,2.8640,23.6193,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8957,46.3763,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +983,2.9904,46.2442,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +984,5.4201,23.9554,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +985,2.8640,23.6276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8957,46.3306,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +987,2.9904,46.1301,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,690,0 +988,5.4201,24.3007,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +989,2.8640,24.0049,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,283,0 +990,2.8957,47.0598,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,312,0 +991,2.9904,46.9303,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +992,5.4201,24.1642,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +993,2.8640,23.7752,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8957,46.4850,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +995,2.9904,46.3230,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,690,0 +996,5.4201,23.8758,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8640,23.6225,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8957,46.4291,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +999,2.9904,46.2597,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +1000,5.4201,24.2307,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,290,0 +1001,2.8640,23.9115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +1002,2.8957,47.0263,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,350,0 +1003,2.9904,46.9161,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,334,0 +1004,5.4201,23.8855,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8640,23.6581,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8957,46.5983,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1007,2.9904,46.4189,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +1008,5.4201,24.1163,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8640,23.8725,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8957,46.5417,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1011,2.9904,46.4312,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +1012,5.4201,24.3939,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +1013,2.8640,24.1312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1014,2.8957,47.3085,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,303,0 +1015,2.9904,47.1055,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,332,0 +1016,5.4201,24.4725,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8640,24.2181,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8957,46.6287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1019,2.9904,46.3588,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1020,5.4201,24.3572,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8640,23.9235,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8957,46.7243,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1023,2.9904,46.4474,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1024,5.4201,25.7101,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,269,0 +1025,2.8640,25.9430,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1026,2.8957,48.0504,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,285,0 +1027,2.9904,47.3383,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,301,0 +1028,5.4201,24.4985,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8640,24.0455,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8957,46.3705,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1031,2.9904,46.0873,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1032,5.4201,24.0839,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8640,23.6897,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8957,46.3972,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1035,2.9904,46.3034,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1036,5.4201,24.1483,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1037,2.8640,23.8427,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1038,2.8957,46.7564,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,282,0 +1039,2.9904,46.6277,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,294,0 +1040,5.4201,23.7847,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8640,23.6019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8957,46.2942,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1043,2.9904,46.2209,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1044,5.4201,23.9734,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8640,23.7323,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8957,46.6192,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1047,2.9904,46.4654,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1048,5.4201,24.2770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1049,2.8640,23.9794,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1050,2.8957,47.0779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,278,0 +1051,2.9904,46.9292,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,291,0 +1052,5.4201,23.7660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8640,23.5275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8957,46.4900,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1055,2.9904,46.2896,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1056,5.4201,24.0362,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8640,23.7987,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8957,46.6407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1059,2.9904,46.5110,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1060,5.4201,24.4077,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1061,2.8640,24.0810,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1062,2.8957,47.2685,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,276,0 +1063,2.9904,47.0650,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,281,0 +1064,5.4201,24.1562,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8640,23.8774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8957,46.7676,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1067,2.9904,46.5987,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1068,5.4201,24.4300,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8640,23.9799,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8957,46.9915,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1071,2.9904,46.6882,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1072,5.4201,24.9353,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1073,2.8640,24.4878,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1074,2.8957,47.2125,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,273,0 +1075,2.9904,46.9809,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,279,0 +1076,5.4201,24.1634,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8640,23.8081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8957,46.7763,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1079,2.9904,46.5367,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1080,5.4201,26.3451,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8640,26.0160,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8957,46.3065,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1083,2.9904,46.0803,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1084,5.4201,24.4384,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1085,2.8640,23.9897,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1086,2.8957,46.9772,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1087,2.9904,46.7735,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,275,0 +1088,5.4201,23.9316,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8640,23.6547,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8957,46.2990,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1091,2.9904,46.2090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1092,5.4201,24.1975,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8640,23.8669,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8957,46.6474,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1095,2.9904,46.5870,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1096,5.4201,24.4760,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1097,2.8640,24.0503,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1098,2.8957,47.0918,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1099,2.9904,46.9022,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +1100,5.4201,24.5071,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8640,24.0959,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8957,46.8475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1103,2.9904,46.6042,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1104,5.4201,24.3566,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8640,23.9049,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8957,46.5655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1107,2.9904,46.3047,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1108,5.4201,24.4776,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1109,2.8640,24.1944,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1110,2.8957,47.0442,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1111,2.9904,46.9249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,270,0 +1112,5.4201,25.1307,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8640,24.7474,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8957,46.5273,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1115,2.9904,46.3354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1116,5.4201,24.2140,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8640,23.9251,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8957,46.4832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1119,2.9904,46.3604,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1120,5.4201,25.1142,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1121,2.8640,24.5455,0.3547,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1122,2.8957,47.0449,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1123,2.9904,46.8307,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1124,5.4201,24.2671,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8640,23.8302,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8957,46.5723,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1127,2.9904,46.3962,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1128,5.4201,23.9327,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8640,23.6423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8957,46.4895,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1131,2.9904,46.3008,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1132,5.4201,24.2295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1133,2.8640,23.9632,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1134,2.8957,46.8903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1135,2.9904,46.7962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1136,5.4201,23.7651,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8640,23.5622,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8957,46.3088,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1139,2.9904,46.2105,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1140,5.4201,24.0025,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8640,23.7082,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8957,46.3302,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1143,2.9904,46.1540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1144,5.4201,24.3558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1145,2.8640,23.9817,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1146,2.8957,47.2714,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1147,2.9904,47.1199,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1148,5.4201,24.2456,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8640,23.8537,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8957,46.7062,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1151,2.9904,46.4957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1152,5.4201,24.0726,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8640,23.7838,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8957,47.2177,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1155,2.9904,47.2623,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1156,5.4201,24.9055,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1157,2.8640,24.2809,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1158,2.8957,44.1141,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1159,2.9904,43.5210,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1160,5.4201,24.4877,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8640,23.9503,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8957,46.5578,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1163,2.9904,46.3667,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1164,5.4201,24.4442,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8640,23.9928,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8957,47.3739,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1167,2.9904,46.7107,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1168,5.4201,24.4608,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1169,2.8640,24.0327,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1170,2.8957,46.5643,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1171,2.9904,45.8755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1172,5.4201,23.9365,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8640,23.6601,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8957,46.3740,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1175,2.9904,46.2092,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1176,5.4201,24.0976,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8640,23.7093,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8957,46.4201,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1179,2.9904,46.2828,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1180,5.4201,24.2644,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1181,2.8640,23.9145,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1182,2.8957,47.0262,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1183,2.9904,46.7965,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1184,5.4201,23.8739,0.0325,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8640,23.6270,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8957,46.1622,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1187,2.9904,46.0150,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1188,5.4201,24.3415,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8640,24.0653,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8957,46.8720,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1191,2.9904,46.7515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1192,5.4201,24.5617,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1193,2.8640,24.1050,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1194,2.8957,47.4284,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1195,2.9904,47.3038,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,265,0 +1196,5.4201,25.4770,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8640,24.9913,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8957,46.5094,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +1199,2.9904,46.0084,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.txt new file mode 100644 index 0000000..fb1bbf9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=0 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=8.728 +effective_logical_fps=34.374 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=29.020 +p95_encode_latency_ms=47.910 +max_encode_latency_ms=111.132 +avg_steady_encode_latency_ms=29.575 +p95_steady_encode_latency_ms=47.910 +max_steady_encode_latency_ms=49.061 +avg_tile_encode_latency_ms=21.340 +p95_tile_encode_latency_ms=46.930 +avg_max_tile_encode_latency_ms=28.079 +p95_max_tile_encode_latency_ms=47.201 +avg_steady_max_tile_encode_latency_ms=28.893 +p95_steady_max_tile_encode_latency_ms=47.213 +payload_bytes=4169717 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl_logical.csv new file mode 100644 index 0000000..aaab0bf --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight1_no_drl_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,111.1319,30.0753,263115 +1,4,0,16.4070,15.9381,56764 +2,4,0,16.3900,15.9593,23565 +3,4,0,16.2550,15.8115,19945 +4,4,0,16.5722,16.1006,48835 +5,4,0,16.4224,15.9305,22964 +6,4,0,16.5210,15.9897,22247 +7,4,0,16.8035,16.1819,40659 +8,4,0,16.3570,15.7933,19368 +9,4,0,16.4397,15.8603,22084 +10,4,0,16.6359,16.1481,38474 +11,4,0,16.2526,15.7547,14195 +12,4,0,16.5786,16.0410,14429 +13,4,0,16.8012,16.2485,30891 +14,4,0,16.5933,15.9920,10289 +15,4,0,16.4376,15.8534,7611 +16,4,0,16.7161,16.0379,22753 +17,4,0,16.3090,15.7357,12501 +18,4,0,16.3715,15.7504,12287 +19,4,0,16.9349,16.3222,21644 +20,4,0,16.5050,16.0208,10142 +21,4,0,16.4640,15.9568,7838 +22,4,0,16.4944,15.9767,11071 +23,4,0,16.5116,15.9639,4346 +24,4,0,16.5421,16.0621,4124 +25,4,0,16.7047,16.2661,8679 +26,4,0,16.5807,15.9749,4626 +27,4,0,16.4306,15.9278,4117 +28,4,0,16.8337,16.2482,6371 +29,4,0,16.5235,15.9652,3563 +30,4,0,16.4811,15.9902,3314 +31,4,0,16.6908,16.1713,2688 +32,4,0,16.4289,16.0039,2879 +33,4,0,16.4550,15.9396,2969 +34,4,0,16.5521,15.9836,2021 +35,4,0,16.3421,15.6632,2600 +36,4,0,16.3482,15.6399,2575 +37,4,0,16.4912,15.8255,1837 +38,4,0,16.3385,15.6892,2610 +39,4,0,16.4300,15.8439,2579 +40,4,0,16.7995,15.9556,1553 +41,4,0,16.7428,15.9816,2618 +42,4,0,17.0365,16.0189,2570 +43,4,0,17.1037,15.8791,1446 +44,4,0,16.4647,15.6518,2613 +45,4,0,16.4775,15.8984,2570 +46,4,0,16.6477,16.1390,1332 +47,4,0,16.7729,15.8765,2571 +48,4,0,16.8868,15.9321,2570 +49,4,0,17.5372,16.1829,1223 +50,4,0,16.7620,15.9337,2570 +51,4,0,16.9550,15.4808,2570 +52,4,0,17.1982,16.1792,1171 +53,4,0,16.8384,16.1456,2570 +54,4,0,17.0591,15.7594,2570 +55,4,0,17.1750,15.8926,1167 +56,4,0,16.6685,15.7565,2577 +57,4,0,16.4030,15.6630,2570 +58,4,0,16.5633,15.8972,1137 +59,4,0,16.3294,15.6547,2570 +60,4,0,16.2533,15.6668,2570 +61,4,0,16.6435,16.1666,1116 +62,4,0,16.5995,15.9592,2570 +63,4,0,16.4276,15.9380,2570 +64,4,0,16.5863,16.0521,1117 +65,4,0,16.3735,15.8459,2570 +66,4,0,16.4407,15.9426,2570 +67,4,0,16.6531,16.1728,1114 +68,4,0,16.3465,15.8836,2582 +69,4,0,16.1974,15.7800,2570 +70,4,0,16.8180,16.2194,1117 +71,4,0,16.6176,16.1401,2570 +72,4,0,16.5301,15.9798,2570 +73,4,0,16.5508,16.0513,1099 +74,4,0,16.4037,15.8241,2575 +75,4,0,12.8241,12.2299,575178 +76,4,0,16.4733,15.8127,25805 +77,4,0,16.4835,15.8468,19736 +78,4,0,16.5630,15.8310,17425 +79,4,0,16.7637,16.1702,35522 +80,4,0,16.6066,15.9496,20142 +81,4,0,16.8358,15.9466,20944 +82,4,0,16.8882,16.1718,41388 +83,4,0,16.6337,15.9772,17871 +84,4,0,16.6244,15.9254,16589 +85,4,0,16.8261,16.1593,48134 +86,4,0,16.6189,15.8606,17514 +87,4,0,16.8027,16.0121,19883 +88,4,0,16.8500,16.1249,30492 +89,4,0,16.6453,15.9523,11960 +90,4,0,16.7089,16.0053,10580 +91,4,0,16.9123,16.2023,14721 +92,4,0,16.7515,15.9173,10930 +93,4,0,19.0850,16.0240,10348 +94,4,0,16.9066,16.1759,7850 +95,4,0,16.6358,15.8551,4878 +96,4,0,16.8170,15.9031,3108 +97,4,0,17.0093,16.0512,2275 +98,4,0,16.8115,15.9507,2588 +99,4,0,16.6545,15.7922,2570 +100,4,0,16.8260,16.1046,1280 +101,4,0,16.8261,16.1163,2570 +102,4,0,16.8789,16.1248,2570 +103,4,0,17.1609,16.2707,1141 +104,4,0,16.6333,15.9614,2570 +105,4,0,16.3743,15.8465,2570 +106,4,0,16.6318,16.0577,1104 +107,4,0,16.3195,15.7892,2570 +108,4,0,16.2789,15.6930,2570 +109,4,0,16.5430,15.9305,1084 +110,4,0,16.4337,15.9210,2570 +111,4,0,16.4538,15.7466,2570 +112,4,0,16.6950,16.1009,1077 +113,4,0,16.3994,15.7786,2570 +114,4,0,16.4361,15.7717,2570 +115,4,0,16.5799,16.0102,1068 +116,4,0,16.3565,15.8048,2570 +117,4,0,16.3724,15.8532,2570 +118,4,0,16.5357,15.9779,1069 +119,4,0,16.4057,15.8537,2570 +120,4,0,16.2563,15.6970,2570 +121,4,0,16.5504,16.0122,1064 +122,4,0,16.5026,15.9840,2570 +123,4,0,16.5535,16.0482,2570 +124,4,0,16.6492,16.1627,1060 +125,4,0,16.4509,15.9954,2570 +126,4,0,16.4013,15.8754,2570 +127,4,0,16.6330,16.0601,1060 +128,4,0,16.5051,15.9002,2570 +129,4,0,16.7958,15.8855,2570 +130,4,0,16.7895,16.1620,1060 +131,4,0,16.6779,16.0149,2570 +132,4,0,16.5431,15.9166,2570 +133,4,0,16.4681,15.8546,1060 +134,4,0,16.5010,15.8717,2570 +135,4,0,16.6735,15.8356,2570 +136,4,0,16.7035,16.0423,1060 +137,4,0,16.4443,15.8339,2570 +138,4,0,16.3969,15.7345,2570 +139,4,0,16.7753,16.0826,1060 +140,4,0,16.5857,15.9925,2570 +141,4,0,16.5891,16.0297,2570 +142,4,0,16.6380,16.0380,1060 +143,4,0,16.4982,15.7969,2570 +144,4,0,16.4435,15.8488,2570 +145,4,0,16.8165,16.0011,1060 +146,4,0,16.7470,16.0553,2570 +147,4,0,16.5981,16.0888,2570 +148,4,0,16.6608,16.1061,1060 +149,4,0,16.5384,15.8576,2570 +150,4,0,12.9703,12.2219,575178 +151,4,0,16.9277,16.3689,25805 +152,4,0,16.5465,15.9000,20061 +153,4,0,16.6440,16.0568,16405 +154,4,0,17.0036,16.4118,36695 +155,4,0,16.3999,15.7801,14561 +156,4,0,16.6035,15.9992,14345 +157,4,0,17.0040,16.4600,48871 +158,4,0,16.6247,16.0250,21864 +159,4,0,16.7210,16.1373,22532 +160,4,0,16.9290,16.4365,48945 +161,4,0,16.6018,16.0223,20773 +162,4,0,16.4618,15.9013,19856 +163,4,0,16.9202,16.3775,29957 +164,4,0,16.6735,16.0985,15682 +165,4,0,16.5764,16.1182,13185 +166,4,0,16.7365,16.2024,13669 +167,4,0,16.4628,15.8711,5971 +168,4,0,16.3863,15.7912,6075 +169,4,0,16.5164,15.9619,6196 +170,4,0,16.3015,15.7863,4586 +171,4,0,16.5542,15.9912,3091 +172,4,0,16.5068,15.9495,1663 +173,4,0,16.4058,15.6912,2584 +174,4,0,16.4802,15.8329,2570 +175,4,0,16.8906,16.2628,1339 +176,4,0,16.4169,15.8140,2570 +177,4,0,16.6882,16.0279,2570 +178,4,0,16.7748,16.2019,1208 +179,4,0,16.3513,15.7488,2570 +180,4,0,16.7945,16.0832,2570 +181,4,0,23.9317,23.2840,1143 +182,4,0,47.3237,46.8093,2570 +183,4,0,46.9800,46.3449,2570 +184,4,0,47.4507,47.0414,1099 +185,4,0,46.8520,46.3170,2570 +186,4,0,46.8795,46.3741,2570 +187,4,0,47.5142,47.0073,1075 +188,4,0,46.9676,46.4258,2570 +189,4,0,46.9397,46.3804,2570 +190,4,0,47.5432,47.0910,1069 +191,4,0,46.9532,46.3672,2570 +192,4,0,47.1229,46.5337,2570 +193,4,0,47.7472,47.2266,1060 +194,4,0,46.8915,46.3737,2570 +195,4,0,46.9060,46.3917,2570 +196,4,0,47.5544,47.0318,1060 +197,4,0,46.9775,46.5214,2570 +198,4,0,47.1078,46.6403,2570 +199,4,0,47.7856,47.2002,1060 +200,4,0,46.7243,46.2378,2570 +201,4,0,46.9141,46.2383,2570 +202,4,0,47.6381,47.0588,1060 +203,4,0,47.0903,46.5500,2570 +204,4,0,47.2796,46.7392,2570 +205,4,0,47.6860,47.1625,1060 +206,4,0,47.3670,46.7306,2570 +207,4,0,47.5326,46.7935,2570 +208,4,0,48.2988,47.5663,1060 +209,4,0,47.5511,46.8163,2570 +210,4,0,47.3185,46.5394,2570 +211,4,0,47.6720,47.0559,1060 +212,4,0,47.7135,46.9722,2570 +213,4,0,47.4613,46.5175,2570 +214,4,0,47.7467,47.1730,1060 +215,4,0,46.9728,46.4094,2570 +216,4,0,47.2510,46.6953,2570 +217,4,0,47.6234,47.0299,1060 +218,4,0,47.0077,46.2470,2570 +219,4,0,47.0758,46.5172,2570 +220,4,0,47.5421,46.9869,1060 +221,4,0,47.0408,46.3009,2570 +222,4,0,47.4667,46.8838,2570 +223,4,0,47.9269,47.1493,1060 +224,4,0,47.4173,46.5899,2570 +225,4,0,36.8577,36.1572,575178 +226,4,0,47.5133,46.8282,26861 +227,4,0,47.4101,46.8385,20766 +228,4,0,47.0558,46.4278,16349 +229,4,0,48.2391,47.5739,34117 +230,4,0,47.6193,46.8457,15198 +231,4,0,47.5393,46.9146,15495 +232,4,0,48.1966,47.5556,47702 +233,4,0,47.5919,46.8173,21334 +234,4,0,47.3368,46.6258,22291 +235,4,0,47.9442,47.3890,48895 +236,4,0,46.8985,46.3483,20804 +237,4,0,47.3510,46.6337,19437 +238,4,0,48.0755,47.3730,31051 +239,4,0,47.1598,46.4288,15804 +240,4,0,47.5144,46.9982,13151 +241,4,0,49.0606,48.0577,14033 +242,4,0,47.5849,44.6359,5987 +243,4,0,47.1175,46.5970,5764 +244,4,0,47.4727,47.0235,6054 +245,4,0,46.9127,46.3763,4581 +246,4,0,46.9073,46.3306,3103 +247,4,0,47.5782,47.0598,1673 +248,4,0,47.2047,46.4850,2590 +249,4,0,47.0491,46.4291,2575 +250,4,0,47.5900,47.0263,1243 +251,4,0,47.0808,46.5983,2575 +252,4,0,47.0489,46.5417,2575 +253,4,0,47.8861,47.3085,1169 +254,4,0,47.3826,46.6287,2570 +255,4,0,47.4868,46.7243,2570 +256,4,0,48.8435,48.0504,1120 +257,4,0,47.7449,46.3705,2570 +258,4,0,47.1130,46.3972,2570 +259,4,0,47.3100,46.7564,1106 +260,4,0,46.8165,46.2942,2570 +261,4,0,47.0617,46.6192,2570 +262,4,0,47.6580,47.0779,1099 +263,4,0,47.0014,46.4900,2570 +264,4,0,47.1009,46.6407,2570 +265,4,0,47.7586,47.2685,1087 +266,4,0,47.3770,46.7676,2570 +267,4,0,47.7302,46.9915,2570 +268,4,0,48.0278,47.2125,1082 +269,4,0,47.4035,46.7763,2570 +270,4,0,46.9706,46.3065,2570 +271,4,0,47.6899,46.9772,1070 +272,4,0,46.9888,46.2990,2570 +273,4,0,47.3655,46.6474,2570 +274,4,0,47.8683,47.0918,1065 +275,4,0,47.5355,46.8475,2570 +276,4,0,47.3039,46.5655,2570 +277,4,0,47.8840,47.0442,1065 +278,4,0,47.3077,46.5273,2570 +279,4,0,47.0990,46.4832,2570 +280,4,0,47.8312,47.0449,1060 +281,4,0,47.3186,46.5723,2570 +282,4,0,47.0788,46.4895,2570 +283,4,0,47.4349,46.8903,1060 +284,4,0,46.8244,46.3088,2570 +285,4,0,47.1105,46.3302,2570 +286,4,0,47.8409,47.2714,1060 +287,4,0,47.2904,46.7062,2570 +288,4,0,47.9979,47.2623,2570 +289,4,0,48.2509,44.1141,1060 +290,4,0,47.3975,46.5578,2570 +291,4,0,48.1463,47.3739,2570 +292,4,0,47.9206,46.5643,1060 +293,4,0,47.0373,46.3740,2570 +294,4,0,47.1570,46.4201,2570 +295,4,0,47.6245,47.0262,1060 +296,4,0,46.7852,46.1622,2570 +297,4,0,47.3025,46.8720,2570 +298,4,0,48.2471,47.4284,1060 +299,4,0,47.9095,46.5094,2570 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.csv new file mode 100644 index 0000000..a13df7c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0291,28.9220,0.0256,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8225,25.4314,0.0161,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.7960,25.2195,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7513,25.1141,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0291,5.8753,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8225,5.6565,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.7960,10.4761,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7513,10.4622,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,18017,0 +8,5.0291,15.5557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8225,15.5060,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.7960,20.2708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7513,20.2468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12092,0 +12,5.0291,15.2789,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8225,15.1305,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.7960,20.0724,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7513,20.0313,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,20897,0 +16,5.0291,15.3531,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8225,15.3022,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.7960,20.2148,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7513,20.1831,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,23783,0 +20,5.0291,15.2675,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8225,15.1484,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.7960,20.0908,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7513,20.0442,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +24,5.0291,15.3129,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8225,15.2522,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.7960,20.1857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7513,20.1073,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4846,0 +28,5.0291,15.1623,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8225,15.0753,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.7960,20.0564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7513,19.9965,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3325,0 +32,5.0291,15.1447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8225,15.0286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.7960,19.8985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7513,19.8444,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +36,5.0291,15.0830,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8225,14.9940,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.7960,19.9589,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7513,19.8659,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2776,0 +40,5.0291,15.0399,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8225,14.9174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.7960,19.8294,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7513,19.7210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +44,5.0291,15.0043,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8225,14.8421,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.7960,19.9190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7513,19.8532,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +48,5.0291,15.2064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8225,15.1865,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.7960,20.0238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7513,19.9398,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1784,0 +52,5.0291,15.0053,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8225,14.9016,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.7960,19.8095,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7513,19.7068,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +56,5.0291,15.0385,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8225,14.6641,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.7960,19.4410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7513,19.2830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +60,5.0291,14.9975,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8225,14.7934,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.7960,19.5983,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7513,19.4253,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +64,5.0291,9.0613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8225,13.1638,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.7960,13.5651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7513,13.5956,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +68,5.0291,5.5475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8225,5.4158,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.7960,10.1563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7513,10.1005,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +72,5.0291,5.5927,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8225,5.4754,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.7960,10.2660,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7513,10.2075,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1011,0 +76,5.0291,5.7187,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8225,5.6035,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.7960,10.3238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7513,10.2590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1187,0 +80,5.0291,5.7403,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8225,5.5880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.7960,10.2823,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7513,10.1893,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +84,5.0291,5.7952,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8225,5.5076,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.7960,10.3660,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7513,10.2893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +88,5.0291,5.8583,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8225,5.5671,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.7960,10.4340,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7513,10.4050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +92,5.0291,5.6793,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8225,5.4778,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.7960,10.2495,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7513,10.1661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +96,5.0291,5.8342,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8225,5.5244,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.7960,10.3580,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7513,10.2974,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +100,5.0291,5.8482,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8225,5.6661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.7960,10.3488,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7513,10.3253,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +104,5.0291,5.5710,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8225,5.3872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.7960,10.2922,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7513,10.2715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,960,0 +108,5.0291,5.7374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8225,5.5382,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.7960,10.5093,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7513,10.4411,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +112,5.0291,5.8420,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8225,5.5685,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.7960,10.4100,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7513,10.3162,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +116,5.0291,5.7789,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8225,5.4798,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.7960,10.4057,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7513,10.2966,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +120,5.0291,5.8407,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8225,5.4899,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.7960,10.3663,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7513,11.0557,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +124,5.0291,5.9058,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8225,5.5751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.7960,10.2730,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7513,10.2201,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +128,5.0291,6.0460,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8225,5.6505,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.7960,10.4481,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7513,10.3982,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +132,5.0291,5.7922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8225,5.5507,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.7960,10.3829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7513,10.3579,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +136,5.0291,5.9929,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8225,5.7067,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.7960,10.4901,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7513,10.4396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0291,5.7074,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8225,5.4925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.7960,10.3470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7513,10.2259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0291,5.7415,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8225,5.5339,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.7960,10.3422,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7513,10.2957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +148,5.0291,5.7895,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8225,5.5380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.7960,10.1714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7513,10.1142,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +152,5.0291,5.7515,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8225,5.5189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.7960,10.3768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7513,10.3380,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +156,5.0291,5.7278,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8225,5.5487,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.7960,10.4983,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7513,10.3731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +160,5.0291,5.7094,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8225,5.5814,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.7960,10.2405,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7513,10.2083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +164,5.0291,5.7330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8225,5.5102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.7960,10.1958,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7513,10.1415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +168,5.0291,5.7193,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8225,5.5811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.7960,10.2201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7513,10.1551,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +172,5.0291,5.6823,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8225,5.5740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.7960,10.2378,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7513,10.1930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +176,5.0291,5.9993,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8225,5.6192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.7960,10.4172,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7513,10.3497,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +180,5.0291,5.8974,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8225,5.6112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.7960,10.3751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7513,10.3127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +184,5.0291,5.7788,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8225,5.5666,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.7960,10.4430,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7513,10.4244,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +188,5.0291,5.8225,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8225,5.6187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.7960,10.2441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7513,10.1993,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +192,5.0291,5.8642,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8225,5.6271,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.7960,10.4074,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7513,10.2275,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0291,6.1284,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8225,5.7487,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.7960,10.3944,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7513,10.2600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +200,5.0291,5.9006,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8225,5.5845,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.7960,10.3246,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7513,10.2144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +204,5.0291,5.8197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8225,5.6018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.7960,10.3651,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7513,10.3227,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +208,5.0291,5.7490,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8225,5.5915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.7960,10.3654,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7513,10.3034,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +212,5.0291,5.7093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8225,5.6008,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.7960,10.1901,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7513,10.1586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +216,5.0291,5.9602,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8225,5.6422,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.7960,10.2665,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7513,10.0738,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +220,5.0291,5.8922,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8225,5.5480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.7960,10.2987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7513,10.1865,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0291,5.7817,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8225,5.5705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.7960,10.4152,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7513,10.3201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +228,5.0291,6.0044,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8225,5.6346,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.7960,10.4902,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7513,10.3216,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +232,5.0291,5.9308,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8225,5.5845,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.7960,10.3889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7513,10.3119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +236,5.0291,6.1115,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8225,5.7254,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.7960,10.5310,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7513,10.4060,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +240,5.0291,5.8471,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8225,5.5198,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.7960,10.4079,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.7513,10.3425,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +244,5.0291,6.0527,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8225,5.6265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.7960,10.4261,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.7513,10.2964,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +248,5.0291,6.0773,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8225,5.6857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.7960,10.3588,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.7513,10.2327,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +252,5.0291,5.8771,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8225,5.5189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.7960,10.2911,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.7513,10.1602,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +256,5.0291,5.8556,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8225,5.6410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.7960,10.5851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.7513,10.5363,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +260,5.0291,5.8927,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8225,5.6119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.7960,10.1962,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.7513,10.0743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +264,5.0291,6.0052,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8225,5.6354,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.7960,10.6057,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.7513,10.5716,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +268,5.0291,5.9780,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8225,5.6600,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.7960,10.5174,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.7513,10.4457,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +272,5.0291,5.9533,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8225,5.5843,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.7960,10.3918,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.7513,10.3252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +276,5.0291,6.2202,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8225,5.7942,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.7960,10.5902,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.7513,10.4092,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +280,5.0291,6.1032,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8225,5.6798,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.7960,10.4889,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.7513,10.4310,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +284,5.0291,5.9933,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8225,5.6609,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.7960,10.5079,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.7513,10.4210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +288,5.0291,5.8430,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8225,5.5709,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.7960,10.4005,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.7513,10.3415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +292,5.0291,5.8302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8225,5.6265,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.7960,10.3561,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.7513,10.3183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +296,5.0291,5.7296,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8225,5.5410,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.7960,10.4141,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.7513,10.3522,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +300,5.0291,5.6712,0.0470,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +301,2.8225,5.4630,0.0341,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +302,2.7960,10.1139,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,129935,0 +303,2.7513,10.0649,0.0343,0.0000,0,0,0.0000,0,0.0000,0,1,0,124843,0 +304,5.0291,5.9508,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +305,2.8225,5.7373,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +306,2.7960,10.5269,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,10771,0 +307,2.7513,10.5687,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6793,0 +308,5.0291,5.8243,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +309,2.8225,5.6338,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +310,2.7960,10.3518,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6873,0 +311,2.7513,10.3110,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10681,0 +312,5.0291,5.7745,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +313,2.8225,5.6480,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +314,2.7960,10.2557,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5976,0 +315,2.7513,10.2768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7736,0 +316,5.0291,5.5560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +317,2.8225,5.4276,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +318,2.7960,10.2317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6447,0 +319,2.7513,10.2170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +320,5.0291,5.6916,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +321,2.8225,5.5247,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +322,2.7960,10.4399,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5255,0 +323,2.7513,10.4358,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6074,0 +324,5.0291,5.7745,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +325,2.8225,5.5383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +326,2.7960,10.4583,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4410,0 +327,2.7513,10.4494,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,4205,0 +328,5.0291,5.7120,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +329,2.8225,5.5156,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +330,2.7960,10.3687,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4548,0 +331,2.7513,10.3451,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,4629,0 +332,5.0291,5.6076,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +333,2.8225,5.4143,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +334,2.7960,10.3173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3350,0 +335,2.7513,10.2966,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +336,5.0291,5.6849,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +337,2.8225,5.5001,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +338,2.7960,10.4153,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2741,0 +339,2.7513,10.4242,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +340,5.0291,5.6574,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +341,2.8225,5.5050,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +342,2.7960,10.3795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +343,2.7513,10.3773,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +344,5.0291,5.6487,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +345,2.8225,5.4793,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +346,2.7960,10.3797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1990,0 +347,2.7513,10.3577,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +348,5.0291,5.7892,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +349,2.8225,5.5622,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +350,2.7960,10.4245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +351,2.7513,10.4405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1847,0 +352,5.0291,5.6756,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +353,2.8225,5.5119,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +354,2.7960,10.4036,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +355,2.7513,10.4008,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +356,5.0291,5.6665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +357,2.8225,5.5310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +358,2.7960,10.3762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +359,2.7513,10.3360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +360,5.0291,5.9555,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +361,2.8225,5.5994,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.7960,10.2785,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +363,2.7513,10.1905,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +364,5.0291,5.8471,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +365,2.8225,5.5341,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.7960,10.2889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +367,2.7513,10.2409,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +368,5.0291,6.0317,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +369,2.8225,5.6296,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.7960,10.5855,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +371,2.7513,10.6131,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +372,5.0291,5.9595,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +373,2.8225,5.6261,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.7960,10.4756,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1075,0 +375,2.7513,10.4509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +376,5.0291,5.8302,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +377,2.8225,5.5812,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.7960,10.3806,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +379,2.7513,10.3619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +380,5.0291,5.7609,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +381,2.8225,5.5990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.7960,10.4056,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +383,2.7513,10.3407,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +384,5.0291,5.7373,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +385,2.8225,5.5235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.7960,10.4312,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,942,0 +387,2.7513,10.4044,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +388,5.0291,5.7612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +389,2.8225,5.5693,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.7960,10.4341,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +391,2.7513,10.4048,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +392,5.0291,5.6584,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +393,2.8225,5.5862,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.7960,10.3915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +395,2.7513,10.3810,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +396,5.0291,5.6601,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +397,2.8225,5.6010,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.7960,10.3527,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7513,10.3337,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +400,5.0291,5.9664,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +401,2.8225,5.6153,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.7960,10.4693,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +403,2.7513,10.3798,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +404,5.0291,5.8764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +405,2.8225,5.5756,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.7960,10.4633,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +407,2.7513,10.3761,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +408,5.0291,5.6457,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +409,2.8225,5.6059,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.7960,10.3392,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +411,2.7513,10.3248,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,940,0 +412,5.0291,5.7847,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +413,2.8225,5.6188,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.7960,10.4304,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +415,2.7513,10.4458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +416,5.0291,5.6642,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +417,2.8225,5.5958,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.7960,10.4169,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +419,2.7513,10.4308,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +420,5.0291,5.7065,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +421,2.8225,5.5758,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.7960,10.4433,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +423,2.7513,10.3795,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +424,5.0291,5.6337,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8225,5.4727,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.7960,10.4176,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +427,2.7513,10.4081,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +428,5.0291,5.6441,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8225,5.5145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.7960,10.2399,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +431,2.7513,10.1879,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +432,5.0291,5.7057,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8225,5.5110,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.7960,10.3029,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1171,0 +435,2.7513,10.2323,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +436,5.0291,5.7221,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8225,5.4750,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.7960,10.3577,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7513,10.3402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +440,5.0291,5.6787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8225,5.5530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.7960,10.2628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7513,10.1992,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,986,0 +444,5.0291,5.7309,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8225,5.5543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.7960,10.5554,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7513,10.4768,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +448,5.0291,5.7230,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8225,5.5198,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.7960,10.3559,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +451,2.7513,10.3572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +452,5.0291,5.7720,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8225,5.5002,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.7960,10.3351,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +455,2.7513,10.3030,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +456,5.0291,5.8083,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8225,5.5812,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.7960,10.3263,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +459,2.7513,10.2604,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +460,5.0291,5.8435,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8225,5.5980,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.7960,10.2628,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +463,2.7513,10.2320,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +464,5.0291,5.6517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8225,5.4633,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.7960,10.3255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +467,2.7513,10.2600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +468,5.0291,5.7316,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8225,5.5547,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.7960,10.3146,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +471,2.7513,10.1653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +472,5.0291,5.8433,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8225,5.6847,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.7960,10.2777,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +475,2.7513,10.1958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +476,5.0291,16.1646,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8225,15.9330,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.7960,15.5695,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,937,0 +479,2.7513,15.1307,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +480,5.0291,7.9281,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8225,6.1999,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.7960,7.5725,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.7513,7.5324,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +484,5.0291,6.4043,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8225,5.6081,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.7960,7.7468,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.7513,7.3549,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +488,5.0291,5.8705,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8225,5.5904,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.7960,10.2953,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.7513,10.2102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +492,5.0291,6.1778,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8225,5.7357,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.7960,9.9072,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +495,2.7513,9.8100,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +496,5.0291,5.7328,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8225,5.4086,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.7960,10.2876,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +499,2.7513,10.2440,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +500,5.0291,5.7573,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8225,5.4595,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.7960,10.2528,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +503,2.7513,10.1315,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +504,5.0291,5.8527,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8225,5.5238,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.7960,10.2339,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +507,2.7513,10.1523,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +508,5.0291,5.7087,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8225,5.4612,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.7960,10.2343,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +511,2.7513,10.1305,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +512,5.0291,5.7407,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8225,5.4554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.7960,10.2986,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +515,2.7513,10.2257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +516,5.0291,5.7655,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8225,5.4879,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.7960,10.2794,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +519,2.7513,10.1793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +520,5.0291,5.8328,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8225,5.5373,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.7960,10.4018,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +523,2.7513,10.3653,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +524,5.0291,5.9226,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8225,5.6410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.7960,10.4809,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +527,2.7513,10.4600,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +528,5.0291,5.9225,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8225,5.6252,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.7960,10.4670,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +531,2.7513,10.3810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +532,5.0291,5.8647,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8225,5.5342,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.7960,10.3180,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +535,2.7513,10.2083,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.0291,5.7318,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8225,5.4195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.7960,10.2797,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +539,2.7513,10.1762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +540,5.0291,5.8657,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8225,5.6061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.7960,10.4570,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +543,2.7513,10.3250,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.0291,5.8076,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8225,5.5124,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.7960,10.4106,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +547,2.7513,10.3383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +548,5.0291,5.8591,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8225,5.5987,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.7960,10.6680,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +551,2.7513,10.5835,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.0291,5.7862,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8225,5.5686,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.7960,10.3845,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +555,2.7513,10.3096,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +556,5.0291,6.0599,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8225,5.6597,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.7960,10.4739,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +559,2.7513,10.3946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.0291,5.8561,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8225,5.6448,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.7960,10.5925,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +563,2.7513,10.4965,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0291,5.9235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8225,5.6078,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.7960,10.4470,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +567,2.7513,10.3739,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.0291,5.8637,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8225,5.6275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.7960,10.5691,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7513,10.4855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.0291,5.8331,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8225,5.6401,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.7960,10.5527,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7513,10.4843,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +576,5.0291,5.9844,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8225,5.6151,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.7960,10.4748,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.7513,10.3645,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +580,5.0291,5.7991,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8225,5.5348,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.7960,10.5192,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +583,2.7513,10.4055,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +584,5.0291,5.8818,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8225,5.6088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.7960,10.5473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.7513,10.5346,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.0291,5.7984,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8225,5.5940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.7960,10.5160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.7513,10.5085,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0291,5.7753,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8225,5.5788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.7960,10.3691,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +595,2.7513,10.3651,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +596,5.0291,5.8157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8225,5.6117,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.7960,10.4235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +599,2.7513,10.4020,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +600,5.0291,5.6804,0.0316,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +601,2.8225,5.4390,0.0331,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +602,2.7960,10.0935,0.0639,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +603,2.7513,10.1410,0.0195,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +604,5.0291,5.7286,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +605,2.8225,5.6371,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +606,2.7960,10.3859,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +607,2.7513,10.3141,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,14309,0 +608,5.0291,5.7426,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +609,2.8225,5.5350,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +610,2.7960,10.2550,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11099,0 +611,2.7513,10.0380,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14617,0 +612,5.0291,5.9032,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +613,2.8225,5.6370,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +614,2.7960,10.4968,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5937,0 +615,2.7513,10.4905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4404,0 +616,5.0291,5.8820,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +617,2.8225,5.6093,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +618,2.7960,10.4186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +619,2.7513,10.4217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4120,0 +620,5.0291,5.7234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +621,2.8225,5.5750,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +622,2.7960,10.4385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3467,0 +623,2.7513,10.4382,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3810,0 +624,5.0291,5.7045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +625,2.8225,5.6231,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +626,2.7960,10.3967,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3066,0 +627,2.7513,10.3890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +628,5.0291,5.7094,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +629,2.8225,5.5933,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +630,2.7960,10.4637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2781,0 +631,2.7513,10.4735,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4115,0 +632,5.0291,5.7044,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +633,2.8225,5.4582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +634,2.7960,10.3048,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1711,0 +635,2.7513,10.2431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3590,0 +636,5.0291,5.8078,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +637,2.8225,5.5509,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +638,2.7960,10.4637,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1882,0 +639,2.7513,10.3852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4046,0 +640,5.0291,5.8515,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +641,2.8225,5.5800,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +642,2.7960,10.4962,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1569,0 +643,2.7513,10.4805,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1440,0 +644,5.0291,5.9188,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +645,2.8225,5.5770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +646,2.7960,10.4654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +647,2.7513,10.4905,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,974,0 +648,5.0291,5.8369,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +649,2.8225,5.5845,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +650,2.7960,10.4274,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +651,2.7513,10.3507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +652,5.0291,5.9309,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +653,2.8225,5.5799,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +654,2.7960,10.4049,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +655,2.7513,10.3293,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +656,5.0291,5.8318,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +657,2.8225,5.5078,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +658,2.7960,10.4119,0.0375,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +659,2.7513,10.3501,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +660,5.0291,5.8501,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +661,2.8225,5.5492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.7960,10.4225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7513,10.3488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +664,5.0291,5.7978,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +665,2.8225,5.5217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.7960,10.4533,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +667,2.7513,10.3750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +668,5.0291,6.0230,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +669,2.8225,5.7129,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.7960,10.6225,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +671,2.7513,10.5702,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +672,5.0291,5.7847,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +673,2.8225,5.4950,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.7960,10.4424,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +675,2.7513,10.3816,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +676,5.0291,5.8683,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +677,2.8225,5.5956,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.7960,10.4460,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +679,2.7513,10.3022,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +680,5.0291,5.7939,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +681,2.8225,5.5269,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.7960,10.4213,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +683,2.7513,10.3797,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +684,5.0291,5.8679,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +685,2.8225,5.6043,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.7960,10.5751,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1141,0 +687,2.7513,10.4947,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +688,5.0291,5.8545,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +689,2.8225,5.5750,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.7960,10.4978,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +691,2.7513,10.4645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1000,0 +692,5.0291,5.9052,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +693,2.8225,5.6737,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.7960,10.6043,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,982,0 +695,2.7513,10.5123,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +696,5.0291,5.9551,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +697,2.8225,5.7059,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.7960,10.6662,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +699,2.7513,10.5587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +700,5.0291,5.8453,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +701,2.8225,5.6304,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.7960,10.4592,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +703,2.7513,10.3954,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +704,5.0291,5.9296,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +705,2.8225,5.6057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.7960,10.4625,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +707,2.7513,10.4313,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +708,5.0291,5.8266,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +709,2.8225,5.4910,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.7960,10.3194,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +711,2.7513,10.2535,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +712,5.0291,6.0245,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +713,2.8225,5.5785,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.7960,10.4661,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +715,2.7513,10.4473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +716,5.0291,5.8047,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +717,2.8225,5.5200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.7960,10.4349,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +719,2.7513,10.3515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +720,5.0291,5.9792,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +721,2.8225,5.5393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.7960,10.5271,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +723,2.7513,10.4185,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1026,0 +724,5.0291,6.1472,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8225,5.7839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.7960,14.8592,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,942,0 +727,2.7513,14.8472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +728,5.0291,15.5689,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8225,15.4053,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.7960,29.9530,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +731,2.7513,29.8956,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,5.0291,28.0218,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8225,27.9211,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.7960,42.4321,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +735,2.7513,42.4749,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,5.0291,44.2191,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8225,44.1766,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.7960,58.7332,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +739,2.7513,58.7464,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +740,5.0291,44.4037,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8225,44.4600,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.7960,58.9420,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1100,0 +743,2.7513,59.1076,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +744,5.0291,44.5653,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8225,44.5566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.7960,58.9902,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +747,2.7513,59.0548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +748,5.0291,44.2022,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8225,44.4360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.7960,58.7298,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.7513,59.0568,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +752,5.0291,44.0506,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8225,44.4791,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.7960,58.5461,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.7513,59.1103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,5.0291,43.9089,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8225,44.5155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.7960,58.3945,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +759,2.7513,59.1095,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,5.0291,43.7503,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8225,44.6213,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.7960,58.2729,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +763,2.7513,59.2087,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,5.0291,43.5347,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8225,44.5928,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.7960,57.9624,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +767,2.7513,59.1533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +768,5.0291,43.1872,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8225,44.4211,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.7960,57.7748,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +771,2.7513,58.9890,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +772,5.0291,43.0666,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8225,44.3889,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.7960,57.6694,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +775,2.7513,59.0158,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +776,5.0291,42.9628,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8225,44.3545,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.7960,57.3999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +779,2.7513,59.0027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +780,5.0291,42.8118,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8225,44.5160,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.7960,57.3078,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +783,2.7513,59.0477,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,5.0291,42.5003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8225,44.2422,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.7960,56.8766,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +787,2.7513,58.7523,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,5.0291,42.4470,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8225,44.3694,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.7960,56.9415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +791,2.7513,59.0307,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,5.0291,42.3835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8225,44.6490,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.7960,57.0513,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.7513,59.3189,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.0291,42.2370,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8225,44.6289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.7960,56.6565,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.7513,59.1873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +800,5.0291,41.8874,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8225,44.5911,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.7960,56.3804,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +803,2.7513,59.2075,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +804,5.0291,41.5884,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8225,44.4280,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.7960,56.1566,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +807,2.7513,58.9902,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +808,5.0291,41.2772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8225,44.3133,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.7960,55.8356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +811,2.7513,59.0166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,5.0291,41.3331,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8225,44.6395,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.7960,55.9889,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +815,2.7513,59.2630,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.0291,41.1079,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8225,44.4900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.7960,55.5210,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +819,2.7513,59.0289,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,5.0291,40.8830,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8225,44.3972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.7960,55.2786,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +823,2.7513,58.9460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +824,5.0291,40.7139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8225,44.3227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.7960,55.0489,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +827,2.7513,58.7728,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +828,5.0291,40.4565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8225,44.0573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.7960,54.8327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +831,2.7513,58.5979,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +832,5.0291,40.5369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8225,44.1870,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.7960,54.9057,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.7513,58.6120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +836,5.0291,41.1018,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8225,44.6282,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.7960,55.0296,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.7513,58.7438,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +840,5.0291,40.3398,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8225,44.1014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.7960,54.6361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.7513,58.3999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,5.0291,39.9205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8225,43.1820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.7960,53.3445,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.7513,56.9530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +848,5.0291,40.0607,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8225,44.0017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.7960,54.3320,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +851,2.7513,58.4269,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.0291,40.0481,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8225,44.1178,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.7960,54.4045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.7513,58.5320,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +856,5.0291,40.0486,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8225,43.9455,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.7960,54.1942,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.7513,58.2792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +860,5.0291,39.8475,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8225,44.0925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.7960,54.2015,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.7513,58.5203,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +864,5.0291,39.8642,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8225,44.0205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.7960,54.2230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.7513,58.4556,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,5.0291,39.8345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8225,44.1675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.7960,54.2005,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.7513,58.7045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,5.0291,39.7952,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8225,44.2339,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.7960,54.2721,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +875,2.7513,58.7078,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,5.0291,39.6387,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8225,44.1118,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.7960,54.0055,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.7513,58.4153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,5.0291,39.6100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8225,44.2602,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.7960,53.9327,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.7513,58.6504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +884,5.0291,39.4797,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8225,44.2977,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.7960,53.8863,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.7513,58.8964,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +888,5.0291,39.2720,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8225,44.4099,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.7960,53.7079,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.7513,58.8340,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +892,5.0291,38.9589,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8225,44.1322,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.7960,53.2941,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.7513,58.5115,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +896,5.0291,38.8824,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8225,44.2489,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.7960,53.2247,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.7513,58.7701,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,5.0291,38.5108,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +901,2.8225,44.4239,0.0297,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +902,2.7960,52.5470,0.0236,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +903,2.7513,58.5145,0.0061,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +904,5.0291,37.7037,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +905,2.8225,43.7423,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +906,2.7960,52.1696,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +907,2.7513,58.4265,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +908,5.0291,38.1297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +909,2.8225,44.3627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +910,2.7960,52.4936,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +911,2.7513,58.8593,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +912,5.0291,37.9655,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +913,2.8225,44.4434,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +914,2.7960,52.3263,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +915,2.7513,59.0071,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +916,5.0291,37.7812,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +917,2.8225,44.4590,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +918,2.7960,52.2836,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +919,2.7513,58.9623,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +920,5.0291,37.5425,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +921,2.8225,44.2948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +922,2.7960,51.8478,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +923,2.7513,59.1135,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +924,5.0291,37.5140,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +925,2.8225,44.6666,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +926,2.7960,51.8197,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +927,2.7513,59.0694,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +928,5.0291,36.8374,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +929,2.8225,44.0733,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +930,2.7960,51.2205,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +931,2.7513,58.6197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +932,5.0291,36.8718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +933,2.8225,44.4919,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +934,2.7960,51.3529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +935,2.7513,59.0035,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +936,5.0291,36.7064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +937,2.8225,44.3433,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +938,2.7960,51.1257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +939,2.7513,58.9245,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +940,5.0291,36.4830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +941,2.8225,44.4416,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +942,2.7960,50.8648,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +943,2.7513,58.8547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +944,5.0291,36.2187,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +945,2.8225,44.4147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +946,2.7960,50.7239,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +947,2.7513,59.0218,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +948,5.0291,36.2039,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +949,2.8225,44.6725,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +950,2.7960,50.6780,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +951,2.7513,58.9939,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +952,5.0291,35.8096,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +953,2.8225,44.0985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +954,2.7960,50.0788,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +955,2.7513,58.6658,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +956,5.0291,35.6901,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +957,2.8225,44.2361,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +958,2.7960,50.0051,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +959,2.7513,58.6035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +960,5.0291,35.5530,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +961,2.8225,44.0869,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.7960,49.7672,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +963,2.7513,58.4356,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +964,5.0291,35.4586,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +965,2.8225,44.1388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.7960,49.7150,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +967,2.7513,58.5108,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +968,5.0291,35.3053,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +969,2.8225,44.1939,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.7960,49.6436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.7513,58.7521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +972,5.0291,35.2133,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +973,2.8225,44.5190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.7960,49.6438,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +975,2.7513,58.9368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +976,5.0291,34.9797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +977,2.8225,44.3185,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.7960,49.4447,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +979,2.7513,59.0029,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +980,5.0291,34.7094,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +981,2.8225,44.2870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.7960,49.1213,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +983,2.7513,58.8540,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,5.0291,34.4498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +985,2.8225,44.3755,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.7960,48.9470,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +987,2.7513,58.9376,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +988,5.0291,34.3127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +989,2.8225,44.2491,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.7960,48.7355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +991,2.7513,58.8229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +992,5.0291,34.1178,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +993,2.8225,44.1497,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.7960,48.4554,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +995,2.7513,58.7265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +996,5.0291,34.0021,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +997,2.8225,44.3300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.7960,48.3913,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +999,2.7513,58.8411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1000,5.0291,33.6866,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1001,2.8225,44.3407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.7960,48.1481,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1003,2.7513,58.8870,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1004,5.0291,33.5709,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1005,2.8225,44.3452,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.7960,47.9721,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1007,2.7513,58.8409,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1008,5.0291,33.2802,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1009,2.8225,44.0589,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.7960,47.5439,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1011,2.7513,58.4527,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,5.0291,33.0631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1013,2.8225,43.9913,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.7960,47.1450,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1015,2.7513,58.2298,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1016,5.0291,33.0488,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1017,2.8225,44.2681,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.7960,47.4343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1019,2.7513,59.0405,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1020,5.0291,32.9650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1021,2.8225,44.5199,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.7960,47.3078,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1023,2.7513,59.0552,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1024,5.0291,32.4769,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8225,44.3278,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.7960,46.8262,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1027,2.7513,59.1384,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1028,5.0291,32.3049,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8225,44.3804,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.7960,46.6501,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1031,2.7513,58.9286,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1032,5.0291,31.7034,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8225,44.0697,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.7960,46.0193,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1035,2.7513,58.5477,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1036,5.0291,31.7559,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8225,44.3681,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.7960,46.0654,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1039,2.7513,58.9626,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,5.0291,31.8177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8225,44.1974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.7960,46.1472,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1043,2.7513,58.7263,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1044,5.0291,31.4410,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8225,43.8544,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.7960,45.7131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1047,2.7513,58.3946,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1048,5.0291,31.5064,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8225,44.0833,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.7960,45.8800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1051,2.7513,58.5964,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1052,5.0291,31.4769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8225,44.0779,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.7960,45.7942,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.7513,58.6153,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1056,5.0291,31.5924,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8225,44.0459,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.7960,45.9029,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.7513,58.6131,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1060,5.0291,31.6335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8225,44.0673,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.7960,46.0701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.7513,58.5807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,5.0291,31.4445,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8225,43.9407,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.7960,45.6586,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1067,2.7513,58.3763,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,5.0291,31.5857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8225,46.5508,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.7960,46.3703,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1071,2.7513,58.5568,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,5.0291,31.5690,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8225,44.0334,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.7960,45.8708,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1075,2.7513,58.4084,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1076,5.0291,31.5792,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8225,43.9018,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.7960,45.8458,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1079,2.7513,58.2960,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1080,5.0291,31.3919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8225,44.0777,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.7960,45.7448,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1083,2.7513,58.8000,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1084,5.0291,32.2166,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8225,44.4370,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.7960,46.6110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1087,2.7513,59.0241,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1088,5.0291,31.5806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8225,43.7263,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.7960,45.5528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1091,2.7513,58.1422,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,5.0291,31.6043,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8225,44.1584,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.7960,45.9256,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1095,2.7513,58.6261,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,5.0291,31.5205,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8225,44.0998,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.7960,45.8214,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.7513,58.5151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1100,5.0291,31.4038,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8225,44.3142,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.7960,45.7031,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.7513,58.5992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1104,5.0291,31.6177,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8225,44.3305,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.7960,45.9978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.7513,58.8251,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1108,5.0291,31.5778,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8225,44.4081,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.7960,45.9396,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1111,2.7513,58.9120,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1112,5.0291,31.9105,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8225,44.3117,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.7960,46.2510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1115,2.7513,58.9119,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1116,5.0291,31.7271,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8225,44.2353,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.7960,45.9422,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1119,2.7513,58.6329,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.0291,31.9500,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8225,44.1435,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.7960,46.1867,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1123,2.7513,58.6211,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.0291,31.7166,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8225,44.0802,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.7960,45.9371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1127,2.7513,58.4745,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,5.0291,31.7759,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8225,43.9347,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.7960,45.9303,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1131,2.7513,58.3155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1132,5.0291,31.5944,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8225,43.9312,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.7960,45.8927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1135,2.7513,58.3897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1136,5.0291,31.6655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8225,44.3564,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.7960,46.2022,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1139,2.7513,58.8455,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1140,5.0291,31.8390,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8225,44.2462,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.7960,46.2122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.7513,58.7282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1144,5.0291,31.6400,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8225,43.8369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.7960,45.8284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.7513,58.2859,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.0291,31.5498,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8225,44.3658,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.7960,45.8225,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.7513,58.7868,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.0291,32.2124,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8225,44.4328,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.7960,46.4210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.7513,58.9485,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,5.0291,31.7513,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8225,44.1529,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.7960,45.9517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1159,2.7513,58.5163,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.0291,31.6579,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8225,43.9353,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.7960,45.8740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7513,58.7320,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1164,5.0291,31.9640,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8225,44.2767,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.7960,46.1550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1167,2.7513,58.6637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.0291,31.6355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8225,44.0964,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.7960,45.9266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1171,2.7513,58.5859,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1172,5.0291,31.7421,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8225,44.3876,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.7960,46.3236,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.7513,58.7157,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1176,5.0291,31.7189,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8225,44.0329,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.7960,46.0001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1179,2.7513,58.4608,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.0291,31.5205,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8225,43.9140,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.7960,45.7962,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +1183,2.7513,58.5835,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,5.0291,32.3057,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8225,44.4961,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.7960,47.5207,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.7513,58.3399,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1188,5.0291,32.0810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8225,43.3702,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.7960,45.8889,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.7513,57.5428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1192,5.0291,32.2631,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8225,43.9480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.7960,46.5333,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.7513,58.6119,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1196,5.0291,32.3802,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8225,44.6752,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.7960,50.4238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1199,2.7513,58.9935,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.txt new file mode 100644 index 0000000..4dc39a4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=2 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.539 +effective_logical_fps=45.879 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=30.667 +p95_encode_latency_ms=59.554 +max_encode_latency_ms=105.034 +avg_steady_encode_latency_ms=31.264 +p95_steady_encode_latency_ms=59.554 +max_steady_encode_latency_ms=59.793 +avg_tile_encode_latency_ms=23.959 +p95_tile_encode_latency_ms=58.747 +avg_max_tile_encode_latency_ms=29.794 +p95_max_tile_encode_latency_ms=59.048 +avg_steady_max_tile_encode_latency_ms=30.625 +p95_steady_max_tile_encode_latency_ms=59.055 +payload_bytes=3285466 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2_logical.csv new file mode 100644 index 0000000..1ef8ab4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/30mbps_inflight2_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.0344,28.9220,231707 +1,4,0,10.9628,10.4761,66780 +2,4,0,20.5300,20.2708,39357 +3,4,0,20.4387,20.0724,74679 +4,4,0,20.4560,20.2148,90240 +5,4,0,20.3684,20.0908,51400 +6,4,0,20.3895,20.1857,24471 +7,4,0,20.2870,20.0564,15456 +8,4,0,20.1546,19.8985,12225 +9,4,0,20.1692,19.9589,11577 +10,4,0,20.1064,19.8294,8688 +11,4,0,20.2587,19.9190,6135 +12,4,0,20.2448,20.0238,5248 +13,4,0,20.0611,19.8095,3904 +14,4,0,20.0515,19.4410,4045 +15,4,0,20.0372,19.5983,3841 +16,4,0,14.1868,13.5956,4052 +17,4,0,10.6232,10.1563,3892 +18,4,0,10.7463,10.2660,3655 +19,4,0,10.9882,10.3238,3640 +20,4,0,10.9015,10.2823,3468 +21,4,0,10.9514,10.3660,2760 +22,4,0,11.1082,10.4340,2744 +23,4,0,10.7507,10.2495,2825 +24,4,0,10.9735,10.3580,2942 +25,4,0,10.9724,10.3488,2915 +26,4,0,10.7285,10.2922,3004 +27,4,0,10.9361,10.5093,2971 +28,4,0,10.9322,10.4100,2886 +29,4,0,11.0203,10.4057,2887 +30,4,0,11.7671,11.0557,2822 +31,4,0,11.0868,10.2730,3075 +32,4,0,11.2728,10.4481,2682 +33,4,0,11.0179,10.3829,2794 +34,4,0,11.1538,10.4901,2633 +35,4,0,10.8185,10.3470,2659 +36,4,0,10.9251,10.3422,2694 +37,4,0,10.8368,10.1714,2700 +38,4,0,10.9973,10.3768,2730 +39,4,0,10.9802,10.4983,2717 +40,4,0,10.8709,10.2405,2776 +41,4,0,10.8462,10.1958,2683 +42,4,0,10.8790,10.2201,2871 +43,4,0,10.9162,10.2378,2615 +44,4,0,11.1640,10.4172,2607 +45,4,0,11.0085,10.3751,2632 +46,4,0,11.0822,10.4430,2660 +47,4,0,10.8938,10.2441,2741 +48,4,0,11.1209,10.4074,2645 +49,4,0,11.2865,10.3944,2728 +50,4,0,11.1177,10.3246,2671 +51,4,0,10.9697,10.3651,2626 +52,4,0,11.0532,10.3654,2624 +53,4,0,10.9112,10.1901,2731 +54,4,0,10.9316,10.2665,2640 +55,4,0,11.0206,10.2987,2594 +56,4,0,11.0125,10.4152,2594 +57,4,0,11.1590,10.4902,2594 +58,4,0,11.1847,10.3889,2606 +59,4,0,11.1985,10.5310,2613 +60,4,0,11.0567,10.4079,2614 +61,4,0,11.2161,10.4261,2630 +62,4,0,11.1010,10.3588,2615 +63,4,0,11.0235,10.2911,2609 +64,4,0,11.1540,10.5851,2661 +65,4,0,10.9456,10.1962,2594 +66,4,0,11.3689,10.6057,2602 +67,4,0,11.2003,10.5174,2601 +68,4,0,11.1307,10.3918,2601 +69,4,0,11.4045,10.5902,2615 +70,4,0,11.1963,10.4889,2614 +71,4,0,11.1877,10.5079,2643 +72,4,0,10.9988,10.4005,2640 +73,4,0,11.0765,10.3561,2616 +74,4,0,10.9658,10.4141,2617 +75,4,0,10.6877,10.1139,447803 +76,4,0,11.3169,10.5687,41096 +77,4,0,11.0247,10.3518,29372 +78,4,0,11.0174,10.2768,26146 +79,4,0,10.7065,10.2317,24645 +80,4,0,10.9065,10.4399,18588 +81,4,0,10.9675,10.4583,14136 +82,4,0,10.8487,10.3687,13249 +83,4,0,10.7852,10.3173,8480 +84,4,0,10.8730,10.4242,6999 +85,4,0,10.8087,10.3795,5269 +86,4,0,10.7830,10.3797,5559 +87,4,0,10.9644,10.4405,4427 +88,4,0,10.8471,10.4036,4046 +89,4,0,10.8128,10.3762,4351 +90,4,0,11.1525,10.2785,3187 +91,4,0,10.9736,10.2889,3248 +92,4,0,11.3111,10.6131,3137 +93,4,0,11.1874,10.4756,3487 +94,4,0,11.1017,10.3806,3463 +95,4,0,10.9795,10.4056,3326 +96,4,0,11.0657,10.4312,3675 +97,4,0,11.0082,10.4341,3305 +98,4,0,10.8734,10.3915,2681 +99,4,0,10.8715,10.3527,2717 +100,4,0,11.1028,10.4693,2799 +101,4,0,11.0633,10.4633,2988 +102,4,0,10.8635,10.3392,2997 +103,4,0,11.0252,10.4458,3117 +104,4,0,10.9196,10.4308,2930 +105,4,0,10.8970,10.4433,2760 +106,4,0,10.9008,10.4176,2702 +107,4,0,10.7640,10.2399,2730 +108,4,0,10.8681,10.3029,3302 +109,4,0,10.9425,10.3577,2785 +110,4,0,10.8297,10.2628,2884 +111,4,0,11.0193,10.5554,2610 +112,4,0,10.8434,10.3572,2620 +113,4,0,10.9951,10.3351,2696 +114,4,0,11.0233,10.3263,2703 +115,4,0,11.0287,10.2628,2842 +116,4,0,10.7714,10.3255,2804 +117,4,0,10.8855,10.3146,2875 +118,4,0,11.1379,10.2777,2650 +119,4,0,16.4243,16.1646,2846 +120,4,0,15.5265,7.9281,2618 +121,4,0,11.4606,7.7468,2662 +122,4,0,10.9525,10.2953,2692 +123,4,0,11.6301,9.9072,2691 +124,4,0,10.8697,10.2876,2749 +125,4,0,10.8335,10.2528,2608 +126,4,0,10.9531,10.2339,2697 +127,4,0,10.8395,10.2343,2662 +128,4,0,10.8518,10.2986,2650 +129,4,0,10.8940,10.2794,2671 +130,4,0,11.0410,10.4018,2787 +131,4,0,11.1506,10.4809,2711 +132,4,0,11.0230,10.4670,2603 +133,4,0,10.8958,10.3180,2621 +134,4,0,10.8503,10.2797,2676 +135,4,0,11.0623,10.4570,2647 +136,4,0,10.9455,10.4106,2666 +137,4,0,11.1731,10.6680,2671 +138,4,0,10.8682,10.3845,2706 +139,4,0,11.1512,10.4739,2616 +140,4,0,11.0786,10.5925,2604 +141,4,0,11.0103,10.4470,2704 +142,4,0,11.1273,10.5691,2594 +143,4,0,11.0705,10.5527,2608 +144,4,0,11.1013,10.4748,2603 +145,4,0,11.0634,10.5192,2643 +146,4,0,11.2085,10.5473,2594 +147,4,0,11.0622,10.5160,2594 +148,4,0,10.9278,10.3691,2618 +149,4,0,11.0330,10.4235,2613 +150,4,0,10.7445,10.1410,442009 +151,4,0,10.8388,10.3859,51986 +152,4,0,10.8372,10.2550,37534 +153,4,0,11.1428,10.4968,22775 +154,4,0,11.0021,10.4217,19338 +155,4,0,10.9424,10.4385,14536 +156,4,0,10.9474,10.3967,12262 +157,4,0,10.9333,10.4735,10968 +158,4,0,10.8465,10.3048,8801 +159,4,0,10.9532,10.4637,8653 +160,4,0,11.0243,10.4962,5415 +161,4,0,11.1552,10.4905,4568 +162,4,0,11.0018,10.4274,4365 +163,4,0,11.0211,10.4049,4969 +164,4,0,11.0005,10.4119,4044 +165,4,0,10.9667,10.4225,3769 +166,4,0,10.9801,10.4533,4045 +167,4,0,11.2417,10.6225,3021 +168,4,0,10.9496,10.4424,3161 +169,4,0,11.0355,10.4460,3158 +170,4,0,11.0375,10.4213,3695 +171,4,0,11.0823,10.5751,3644 +172,4,0,11.0154,10.4978,3346 +173,4,0,11.1292,10.6043,3538 +174,4,0,11.1489,10.6662,3348 +175,4,0,11.0024,10.4592,2683 +176,4,0,11.1155,10.4625,2673 +177,4,0,10.9763,10.3194,2794 +178,4,0,11.1887,10.4661,2845 +179,4,0,10.9552,10.4349,2867 +180,4,0,11.1609,10.5271,3034 +181,4,0,15.5810,14.8592,2842 +182,4,0,30.3942,29.9530,2774 +183,4,0,42.9305,42.4749,2830 +184,4,0,59.2035,58.7464,2768 +185,4,0,59.5054,59.1076,3072 +186,4,0,59.5985,59.0548,2646 +187,4,0,59.4981,59.0568,2773 +188,4,0,59.5236,59.1103,2594 +189,4,0,59.5537,59.1095,2624 +190,4,0,59.6222,59.2087,2694 +191,4,0,59.5790,59.1533,2651 +192,4,0,59.4377,58.9890,2774 +193,4,0,59.3884,59.0158,2705 +194,4,0,59.4420,59.0027,2756 +195,4,0,59.4255,59.0477,2629 +196,4,0,59.2824,58.7523,2808 +197,4,0,59.4466,59.0307,2596 +198,4,0,59.6386,59.3189,2594 +199,4,0,59.6343,59.1873,2644 +200,4,0,59.6423,59.2075,2624 +201,4,0,59.4099,58.9902,2677 +202,4,0,59.3784,59.0166,2633 +203,4,0,59.5975,59.2630,2621 +204,4,0,59.4615,59.0289,2605 +205,4,0,59.4123,58.9460,2614 +206,4,0,59.2830,58.7728,2640 +207,4,0,59.1566,58.5979,2708 +208,4,0,59.1900,58.6120,2637 +209,4,0,59.3180,58.7438,2596 +210,4,0,59.0774,58.3999,2594 +211,4,0,58.8990,56.9530,2599 +212,4,0,59.1772,58.4269,2605 +213,4,0,59.1361,58.5320,2604 +214,4,0,59.0822,58.2792,2601 +215,4,0,59.1354,58.5203,2624 +216,4,0,59.1326,58.4556,2594 +217,4,0,59.2948,58.7045,2594 +218,4,0,59.3168,58.7078,2630 +219,4,0,59.1211,58.4153,2594 +220,4,0,59.2330,58.6504,2619 +221,4,0,59.4426,58.8964,2610 +222,4,0,59.2865,58.8340,2622 +223,4,0,59.1216,58.5115,2596 +224,4,0,59.4611,58.7701,2594 +225,4,0,58.9554,58.5145,430277 +226,4,0,58.8696,58.4265,55788 +227,4,0,59.4440,58.8593,36999 +228,4,0,59.5003,59.0071,33528 +229,4,0,59.4071,58.9623,29369 +230,4,0,59.5968,59.1135,14046 +231,4,0,59.4844,59.0694,11023 +232,4,0,59.1395,58.6197,8916 +233,4,0,59.3777,59.0035,7834 +234,4,0,59.3464,58.9245,7339 +235,4,0,59.2744,58.8547,6374 +236,4,0,59.5205,59.0218,5975 +237,4,0,59.5199,58.9939,4302 +238,4,0,59.2885,58.6658,4027 +239,4,0,59.2334,58.6035,3709 +240,4,0,59.1785,58.4356,4340 +241,4,0,59.1945,58.5108,3385 +242,4,0,59.3218,58.7521,3167 +243,4,0,59.4608,58.9368,3558 +244,4,0,59.4304,59.0029,2848 +245,4,0,59.3237,58.8540,3000 +246,4,0,59.3806,58.9376,2912 +247,4,0,59.3173,58.8229,3193 +248,4,0,59.2073,58.7265,3184 +249,4,0,59.2739,58.8411,3073 +250,4,0,59.3601,58.8870,3243 +251,4,0,59.3473,58.8409,3306 +252,4,0,59.0415,58.4527,2670 +253,4,0,59.1193,58.2298,2643 +254,4,0,59.6686,59.0405,2656 +255,4,0,59.6176,59.0552,2787 +256,4,0,59.6912,59.1384,2806 +257,4,0,59.5001,58.9286,2937 +258,4,0,59.1568,58.5477,2833 +259,4,0,59.5338,58.9626,2793 +260,4,0,59.2942,58.7263,2746 +261,4,0,59.0060,58.3946,2819 +262,4,0,59.1371,58.5964,2999 +263,4,0,59.2073,58.6153,2746 +264,4,0,59.1916,58.6131,2856 +265,4,0,59.0717,58.5807,2594 +266,4,0,59.1010,58.3763,2605 +267,4,0,59.1753,58.5568,2630 +268,4,0,59.1282,58.4084,2631 +269,4,0,58.9934,58.2960,2673 +270,4,0,59.4145,58.8000,2657 +271,4,0,59.4608,59.0241,2764 +272,4,0,59.0990,58.1422,2607 +273,4,0,59.2058,58.6261,2829 +274,4,0,59.0857,58.5151,2599 +275,4,0,59.2131,58.5992,2610 +276,4,0,59.3608,58.8251,2642 +277,4,0,59.4922,58.9120,2631 +278,4,0,59.5367,58.9119,2707 +279,4,0,59.4682,58.6329,2603 +280,4,0,59.3408,58.6211,2648 +281,4,0,59.2595,58.4745,2628 +282,4,0,59.1238,58.3155,2613 +283,4,0,59.1792,58.3897,2628 +284,4,0,59.4666,58.8455,2778 +285,4,0,59.3249,58.7282,2664 +286,4,0,59.1048,58.2859,2594 +287,4,0,59.5693,58.7868,2594 +288,4,0,59.7095,58.9485,2594 +289,4,0,59.2489,58.5163,2611 +290,4,0,59.4780,58.7320,2605 +291,4,0,59.5046,58.6637,2616 +292,4,0,59.3493,58.5859,2638 +293,4,0,59.3917,58.7157,2615 +294,4,0,59.1784,58.4608,2604 +295,4,0,59.3862,58.5835,2737 +296,4,0,59.1463,58.3399,2601 +297,4,0,58.9149,57.5428,2600 +298,4,0,59.3954,58.6119,2604 +299,4,0,59.7930,58.9935,2619 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.csv new file mode 100644 index 0000000..5038107 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1224,28.4644,0.0278,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1,2.7862,25.1588,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +2,2.7945,24.7453,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +3,2.8403,25.0906,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +4,5.1224,5.8056,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +5,2.7862,5.6602,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +6,2.7945,10.5303,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +7,2.8403,10.5330,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +8,5.1224,5.6927,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +9,2.7862,5.6215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +10,2.7945,10.5312,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +11,2.8403,10.5033,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +12,5.1224,5.6329,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +13,2.7862,5.5442,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +14,2.7945,10.4934,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +15,2.8403,10.4893,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +16,5.1224,5.6622,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +17,2.7862,5.5421,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +18,2.7945,10.3608,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +19,2.8403,10.3367,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +20,5.1224,5.5520,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +21,2.7862,5.4750,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +22,2.7945,10.3055,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +23,2.8403,10.3105,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +24,5.1224,5.6149,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +25,2.7862,5.4469,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +26,2.7945,10.3351,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +27,2.8403,10.2862,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +28,5.1224,5.6212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +29,2.7862,5.4605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +30,2.7945,10.4442,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +31,2.8403,10.4057,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +32,5.1224,5.7181,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +33,2.7862,5.5894,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +34,2.7945,10.4156,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +35,2.8403,10.3942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +36,5.1224,5.7585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +37,2.7862,5.5918,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +38,2.7945,10.3476,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +39,2.8403,10.3528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +40,5.1224,5.7262,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +41,2.7862,5.5562,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +42,2.7945,10.5116,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +43,2.8403,10.4674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +44,5.1224,5.7735,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +45,2.7862,5.5334,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +46,2.7945,10.5133,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +47,2.8403,10.4365,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +48,5.1224,5.8330,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +49,2.7862,5.6274,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +50,2.7945,10.4518,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +51,2.8403,10.4251,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +52,5.1224,5.7690,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +53,2.7862,5.6323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +54,2.7945,10.4047,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +55,2.8403,10.3257,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +56,5.1224,5.8052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +57,2.7862,5.5845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +58,2.7945,10.4450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +59,2.8403,10.3719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +60,5.1224,5.7863,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +61,2.7862,5.5370,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +62,2.7945,10.3300,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +63,2.8403,10.2768,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +64,5.1224,5.9160,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +65,2.7862,5.6832,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.7945,10.4457,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +67,2.8403,10.3775,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +68,5.1224,5.8470,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +69,2.7862,5.5799,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.7945,10.4718,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +71,2.8403,10.3538,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +72,5.1224,5.8913,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.7862,5.6090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.7945,10.3133,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +75,2.8403,10.2178,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +76,5.1224,6.9822,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.7862,6.3949,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.7945,10.6113,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.8403,10.6058,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +80,5.1224,6.8177,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.7862,6.2787,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.7945,15.3058,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +83,2.8403,14.5822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.1224,5.9618,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.7862,5.6844,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.7945,10.5887,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.8403,10.5467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.1224,6.1637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.7862,5.6563,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.7945,10.4516,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.8403,10.3392,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.1224,6.0292,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.7862,5.6414,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.7945,8.7298,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.8403,8.3992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.1224,6.6353,0.1047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.7862,6.3101,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.7945,10.7814,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.8403,10.6604,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +100,5.1224,6.2778,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.7862,5.8203,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.7945,10.0301,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.8403,9.8881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.1224,6.8561,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.7862,6.0945,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.7945,10.3070,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.8403,10.2172,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +108,5.1224,6.8228,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.7862,6.1748,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.7945,10.2196,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.8403,10.0566,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.1224,6.3252,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.7862,5.8562,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.7945,10.1325,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.8403,9.9500,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.1224,6.6699,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.7862,6.1778,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.7945,10.2465,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.8403,10.0338,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.1224,6.1602,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.7862,5.9083,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.7945,7.4391,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.8403,10.0865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.1224,5.8758,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.7862,5.6112,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.7945,10.3970,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +127,2.8403,10.2927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.1224,6.2936,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.7862,5.9913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.7945,10.5915,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.8403,10.3828,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.1224,6.7049,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.7862,6.0296,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.7945,12.3216,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.8403,14.0970,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.1224,7.9229,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.7862,7.5289,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.7945,10.5478,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.8403,10.4038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.1224,6.6746,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.7862,5.6709,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.7945,10.3175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.8403,10.1750,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.1224,6.5120,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.7862,6.2296,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.7945,10.5903,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.8403,10.3442,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.1224,7.5426,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.7862,6.9172,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.7945,10.5593,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.8403,10.3539,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.1224,7.3075,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.7862,6.1532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.7945,10.4033,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.8403,10.1869,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.1224,6.9409,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.7862,5.9667,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.7945,11.1520,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.8403,10.9996,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.1224,7.3262,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.7862,7.1252,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.7945,10.9845,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.8403,10.9062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.1224,6.3657,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.7862,5.7663,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.7945,10.2608,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.8403,10.1365,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.1224,5.9631,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.7862,5.7172,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.7945,12.1902,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +171,2.8403,12.0727,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.1224,6.0480,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.7862,5.6634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.7945,10.2003,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.8403,9.9302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.1224,6.5048,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.7862,5.9121,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.7945,9.6060,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.8403,10.9929,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.1224,6.6827,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.7862,5.7117,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.7945,10.2751,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.8403,10.1996,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.1224,5.9986,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.7862,5.6641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.7945,10.3166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.8403,10.1555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.1224,6.1044,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.7862,5.7623,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.7945,10.4840,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.8403,10.3233,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.1224,6.2791,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.7862,5.7748,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.7945,10.5437,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.8403,10.4932,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.1224,6.5087,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.7862,5.8084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.7945,10.5885,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.8403,10.3357,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.1224,6.7766,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.7862,7.6356,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.7945,10.6464,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.8403,10.4712,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.1224,6.2488,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.7862,5.7058,0.0249,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.7945,10.5017,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.8403,10.3550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.1224,6.3729,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.7862,5.8517,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.7945,10.8034,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.8403,10.7533,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.1224,6.1445,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.7862,5.7464,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.7945,10.5590,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.8403,10.4686,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.1224,6.2030,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.7862,5.7344,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.7945,10.7236,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.8403,10.6200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.1224,6.0740,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.7862,5.6715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.7945,10.6775,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.8403,10.5615,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.1224,6.0658,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.7862,5.7014,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.7945,10.6766,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.8403,10.6301,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.1224,6.1504,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.7862,5.7211,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.7945,10.6037,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.8403,10.5412,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.1224,6.1063,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.7862,5.7116,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.7945,10.6120,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.8403,10.4619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.1224,6.1523,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.7862,5.7117,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.7945,10.6659,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.8403,10.5861,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.1224,6.1208,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.7862,5.7337,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.7945,10.8087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.8403,10.6052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.1224,6.1791,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.7862,5.7693,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.7945,10.6417,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.8403,10.5242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.1224,6.1559,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.7862,5.7464,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.7945,10.6202,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.8403,10.4794,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.1224,6.2882,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.7862,5.8804,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.7945,10.7791,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.8403,10.6267,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.1224,6.2211,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.7862,5.7881,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.7945,10.7968,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.8403,10.7112,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.1224,6.2171,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.7862,5.7380,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.7945,10.6776,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.8403,10.5920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.1224,5.9615,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.7862,5.6353,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.7945,10.4023,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.8403,10.3492,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.1224,6.0520,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.7862,6.1381,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.7945,9.7726,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.8403,9.9302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.1224,6.5667,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.7862,5.8718,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.7945,9.9550,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.8403,10.0086,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.1224,6.3851,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.7862,5.7605,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.7945,9.9218,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.8403,9.9903,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.1224,6.9960,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.7862,6.1733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.7945,9.9526,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.8403,9.9667,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.1224,5.9519,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.7862,5.5807,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.7945,10.2657,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.8403,10.1766,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.1224,6.0940,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.7862,5.7587,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.7945,10.4288,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.8403,10.3528,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.1224,5.8653,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.7862,5.5910,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.7945,10.3303,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.8403,10.2085,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.1224,6.1885,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.7862,5.7914,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.7945,10.5922,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.8403,10.6478,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.1224,6.4055,0.0881,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +301,2.7862,5.6559,0.0735,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +302,2.7945,10.5247,0.0874,0.0000,0,0,0.0000,0,0.0000,0,1,0,147416,0 +303,2.8403,10.6911,0.1831,0.0000,0,0,0.0000,0,0.0000,0,1,0,152312,0 +304,5.1224,6.3644,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +305,2.7862,5.8782,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +306,2.7945,9.7841,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2076,0 +307,2.8403,10.0642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5112,0 +308,5.1224,6.1478,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +309,2.7862,5.6859,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +310,2.7945,10.7920,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2825,0 +311,2.8403,10.5706,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,8813,0 +312,5.1224,8.4302,0.0552,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +313,2.7862,7.7633,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +314,2.7945,10.4041,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,7771,0 +315,2.8403,10.1212,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15029,0 +316,5.1224,6.8279,0.0432,0.0000,0,0,0.0000,0,0.0000,0,0,0,14312,0 +317,2.7862,5.8782,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +318,2.7945,10.6707,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,14876,0 +319,2.8403,10.4675,0.0438,0.0000,0,0,0.0000,0,0.0000,0,0,0,17102,0 +320,5.1224,7.3052,0.0353,0.0000,0,0,0.0000,0,0.0000,0,0,0,8243,0 +321,2.7862,6.8256,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,6510,0 +322,2.7945,17.3771,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,12659,0 +323,2.8403,17.1510,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,13755,0 +324,5.1224,6.3186,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,6114,0 +325,2.7862,5.7985,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4695,0 +326,2.7945,10.6135,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,7032,0 +327,2.8403,10.5674,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8876,0 +328,5.1224,6.1704,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3558,0 +329,2.7862,5.7376,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +330,2.7945,10.7102,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7098,0 +331,2.8403,10.6090,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8557,0 +332,5.1224,6.2882,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +333,2.7862,5.7408,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2434,0 +334,2.7945,10.6317,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5120,0 +335,2.8403,10.4385,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2292,0 +336,5.1224,6.3360,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2412,0 +337,2.7862,5.8457,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +338,2.7945,10.4380,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2853,0 +339,2.8403,10.4076,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1518,0 +340,5.1224,6.9105,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +341,2.7862,6.1790,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +342,2.7945,10.5118,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2329,0 +343,2.8403,10.3086,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +344,5.1224,6.6278,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +345,2.7862,5.9622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.7945,10.1914,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2553,0 +347,2.8403,10.0250,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +348,5.1224,6.7265,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1862,0 +349,2.7862,5.9066,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.7945,9.9405,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +351,2.8403,9.6468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2457,0 +352,5.1224,7.6458,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +353,2.7862,5.9649,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.7945,8.9693,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +355,2.8403,9.9712,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2313,0 +356,5.1224,6.8912,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.7862,6.1009,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.7945,10.5296,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +359,2.8403,10.2784,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2590,0 +360,5.1224,6.1536,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.7862,5.7574,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.7945,10.5616,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.8403,10.3350,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,852,0 +364,5.1224,6.0871,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.7862,5.7468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.7945,10.4866,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.8403,10.3512,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +368,5.1224,6.0751,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.7862,5.6927,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.7945,10.4661,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.8403,10.2291,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.1224,6.3339,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.7862,5.8983,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.7945,9.9327,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.8403,10.0013,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.1224,6.4570,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.7862,5.5891,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.7945,10.2094,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.8403,9.9678,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.1224,6.6915,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.7862,5.9304,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.7945,10.5663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.8403,10.2026,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.1224,6.6051,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.7862,5.9172,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.7945,10.4415,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.8403,10.2011,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +388,5.1224,6.8333,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.7862,5.9892,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.7945,10.3431,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +391,2.8403,10.0668,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.1224,6.6353,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.7862,5.9159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.7945,10.4253,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.8403,10.2052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.1224,6.6810,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.7862,5.9994,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.7945,10.3054,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.8403,10.0674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.1224,6.8962,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.7862,5.7945,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.7945,9.8201,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.8403,10.1662,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.1224,7.3104,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.7862,6.5051,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.7945,10.7451,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.8403,10.6516,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.1224,8.0915,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.7862,7.8669,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.7945,11.1996,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.8403,10.9608,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.1224,6.1156,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.7862,5.7585,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.7945,11.6703,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.8403,11.5831,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.1224,7.6863,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.7862,7.2153,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.7945,11.0975,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.8403,10.8987,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.1224,6.3912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.7862,5.7556,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.7945,10.9184,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.8403,10.8078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.1224,6.8287,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.7862,5.8194,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.7945,10.4807,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.8403,10.3580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.1224,6.8454,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.7862,5.9465,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.7945,10.4790,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.8403,10.0661,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.1224,7.3262,0.2075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.7862,5.8897,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.7945,9.6834,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.8403,10.1279,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.1224,6.9055,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.7862,6.1468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.7945,10.5700,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.8403,10.2733,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.1224,7.8617,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.7862,6.7805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.7945,10.5704,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.8403,10.4119,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.1224,6.8367,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.7862,6.1178,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.7945,10.4380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.8403,10.1265,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.1224,6.7089,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.7862,5.7800,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.7945,10.1318,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.8403,10.0549,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.1224,6.3586,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.7862,5.6987,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.7945,9.6562,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.8403,8.6250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.1224,6.1556,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.7862,5.7005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.7945,10.8697,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.8403,10.6343,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.1224,6.7694,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.7862,6.0832,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.7945,12.3372,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.8403,12.6156,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.1224,6.0039,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.7862,5.6748,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.7945,10.5702,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.8403,10.3932,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.1224,6.1347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.7862,5.7134,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.7945,10.4608,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.8403,10.3097,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.1224,5.9523,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.7862,5.7268,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.7945,10.4342,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.8403,10.3699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.1224,6.6283,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.7862,5.7640,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.7945,10.6503,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.8403,10.6095,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.1224,6.9570,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.7862,5.7818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.7945,10.0116,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.8403,9.8150,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.1224,6.1236,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.7862,5.6757,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.7945,10.3944,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.8403,10.2530,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.1224,6.1046,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.7862,5.5967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.7945,10.4838,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.8403,10.3335,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.1224,5.8433,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.7862,5.5915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.7945,10.3543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.8403,10.2879,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.1224,5.8999,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.7862,5.5918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.7945,10.4939,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.8403,10.5005,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.1224,5.8039,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.7862,5.5318,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.7945,10.4289,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.8403,10.3380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.1224,5.7723,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.7862,5.5360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.7945,10.4031,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.8403,10.3819,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.1224,5.7717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.7862,5.5099,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.7945,10.4283,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.8403,10.4499,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.1224,5.7733,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.7862,5.4964,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.7945,10.4482,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.8403,10.4662,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.1224,5.7988,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.7862,5.4943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.7945,10.3830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.8403,10.3935,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.1224,5.8320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.7862,5.5159,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.7945,10.4614,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.8403,10.4901,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.1224,5.7450,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.7862,5.5602,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.7945,10.3813,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.8403,10.4146,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.1224,5.8726,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.7862,5.5826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.7945,10.4201,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.8403,10.4292,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.1224,5.8051,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.7862,5.5089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.7945,10.4222,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.8403,10.4341,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.1224,5.7871,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.7862,5.5947,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.7945,10.3867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.8403,10.3627,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.1224,5.8508,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.7862,5.5432,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.7945,10.3435,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.8403,10.3314,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.1224,5.8082,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.7862,5.5313,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.7945,10.3864,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.8403,10.2340,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.1224,5.8030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.7862,5.4994,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.7945,10.4930,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.8403,10.5188,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.1224,5.7841,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.7862,5.5373,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.7945,10.3537,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.8403,10.3746,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.1224,5.8147,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.7862,5.5165,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.7945,10.4705,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.8403,10.4934,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.1224,5.8525,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.7862,5.5534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.7945,10.5179,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.8403,10.4326,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.1224,5.8526,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.7862,5.5639,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.7945,10.3354,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.8403,10.3455,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.1224,5.8549,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.7862,5.5334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.7945,10.3965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.8403,10.3787,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.1224,5.7855,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.7862,5.5374,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.7945,10.3735,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.8403,10.3340,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.1224,5.7945,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.7862,5.4982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.7945,10.6260,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.8403,10.6142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.1224,5.7279,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.7862,5.5027,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.7945,10.5281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.8403,10.5373,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.1224,5.7897,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.7862,5.5175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.7945,10.3619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.8403,10.3600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.1224,5.8297,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.7862,5.5542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.7945,10.4340,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.8403,10.4546,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.1224,5.7533,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.7862,5.4915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.7945,10.5610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.8403,10.5658,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.1224,5.8459,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.7862,5.5433,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.7945,10.4682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.8403,10.4735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.1224,5.7091,0.0455,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +601,2.7862,5.4277,0.0207,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +602,2.7945,10.1757,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +603,2.8403,10.2018,0.0351,0.0000,0,0,0.0000,0,0.0000,0,1,0,146824,0 +604,5.1224,5.7629,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +605,2.7862,5.5342,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +606,2.7945,10.4856,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +607,2.8403,10.5108,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5662,0 +608,5.1224,5.8523,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +609,2.7862,5.6250,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +610,2.7945,10.6034,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15504,0 +611,2.8403,10.5951,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,19541,0 +612,5.1224,5.7425,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +613,2.7862,5.5602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +614,2.7945,10.4399,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8316,0 +615,2.8403,10.4194,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13211,0 +616,5.1224,5.7526,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,14312,0 +617,2.7862,5.5493,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +618,2.7945,10.5283,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8243,0 +619,2.8403,10.5136,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12076,0 +620,5.1224,5.7774,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8243,0 +621,2.7862,5.5362,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6510,0 +622,2.7945,10.4195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +623,2.8403,10.3824,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9434,0 +624,5.1224,5.8110,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6114,0 +625,2.7862,5.5530,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4695,0 +626,2.7945,10.3865,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5456,0 +627,2.8403,10.3390,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9015,0 +628,5.1224,5.8723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3558,0 +629,2.7862,5.5535,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +630,2.7945,10.4673,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4085,0 +631,2.8403,10.4349,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9266,0 +632,5.1224,5.8296,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +633,2.7862,5.5239,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2434,0 +634,2.7945,10.3605,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3730,0 +635,2.8403,10.3473,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6003,0 +636,5.1224,6.1185,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2412,0 +637,2.7862,5.7677,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +638,2.7945,10.7281,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3789,0 +639,2.8403,10.6840,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6704,0 +640,5.1224,6.1520,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +641,2.7862,5.7459,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +642,2.7945,10.7342,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3084,0 +643,2.8403,10.7206,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1352,0 +644,5.1224,5.9710,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +645,2.7862,5.5858,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +646,2.7945,10.4307,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2441,0 +647,2.8403,10.3746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1283,0 +648,5.1224,5.9930,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1862,0 +649,2.7862,5.5977,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +650,2.7945,10.5527,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +651,2.8403,10.5201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +652,5.1224,5.6885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +653,2.7862,5.5225,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +654,2.7945,10.3788,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +655,2.8403,10.3232,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1935,0 +656,5.1224,5.7316,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +657,2.7862,5.5530,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,2.7945,10.4098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +659,2.8403,10.3548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2210,0 +660,5.1224,5.8246,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +661,2.7862,5.5941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.7945,10.5435,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +663,2.8403,10.4966,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +664,5.1224,5.8422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.7862,5.5802,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.7945,10.4767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.8403,10.3908,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2378,0 +668,5.1224,5.9505,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.7862,5.7309,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.7945,10.5505,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.8403,10.4297,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +672,5.1224,6.0165,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.7862,5.7219,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.7945,10.7408,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.8403,10.6973,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +676,5.1224,6.2051,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.7862,5.7518,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.7945,10.7505,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.8403,10.5832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.1224,6.2565,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.7862,5.7550,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.7945,10.6888,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.8403,10.5968,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.1224,6.2868,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.7862,5.7334,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.7945,10.6692,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.8403,10.5396,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.1224,6.2115,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.7862,5.8422,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.7945,10.9412,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.8403,10.8030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.1224,6.3155,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.7862,5.8134,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.7945,10.8438,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.8403,10.7691,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +696,5.1224,6.3534,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.7862,5.8675,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.7945,10.8458,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +699,2.8403,10.7439,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.1224,6.2996,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.7862,5.8361,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.7945,10.6853,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.8403,10.5946,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.1224,6.1521,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.7862,5.7218,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.7945,10.6842,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.8403,10.5242,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.1224,6.2391,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.7862,5.7546,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.7945,10.6652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.8403,10.5877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +712,5.1224,6.2717,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.7862,5.7631,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.7945,10.7759,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.8403,10.7168,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +716,5.1224,6.2644,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.7862,5.7944,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.7945,10.8556,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.8403,10.8020,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +720,5.1224,6.2257,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.7862,5.7636,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.7945,10.8160,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.8403,10.6656,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +724,5.1224,6.2058,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.7862,5.7635,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.7945,14.8803,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.8403,14.8043,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.1224,16.3104,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.7862,15.8628,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.7945,30.8052,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.8403,30.5539,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.1224,16.5254,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.7862,16.1352,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.7945,29.6433,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.8403,29.7229,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.1224,16.5127,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.7862,16.2324,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.7945,30.4875,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.8403,30.2623,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.1224,17.3747,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.7862,16.6186,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.7945,30.2178,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +743,2.8403,29.8848,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.1224,16.4677,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.7862,15.7561,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.7945,30.2457,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.8403,30.0795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.1224,16.5318,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.7862,15.7020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.7945,30.5557,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.8403,30.4773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.1224,16.5357,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.7862,16.0384,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.7945,30.3042,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.8403,29.9932,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.1224,16.3962,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.7862,15.6390,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.7945,30.2696,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.8403,30.0288,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.1224,16.6523,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.7862,15.7989,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.7945,30.3136,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.8403,30.0245,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.1224,16.9653,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.7862,16.4996,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.7945,30.2218,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.8403,30.0983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.1224,16.2102,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.7862,15.7525,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.7945,30.0242,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +771,2.8403,28.4255,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.1224,16.4908,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.7862,16.0308,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.7945,30.6527,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.8403,30.4090,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.1224,16.2305,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.7862,15.7945,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.7945,30.7256,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.8403,31.2175,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.1224,15.8320,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.7862,15.6410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.7945,29.9233,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.8403,29.7999,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.1224,15.8917,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.7862,15.5685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.7945,29.9540,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.8403,29.7937,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.1224,15.8695,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.7862,15.5336,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.7945,30.3420,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.8403,30.1418,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.1224,16.1656,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.7862,15.8212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.7945,30.3110,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.8403,29.9967,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.1224,16.3009,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.7862,15.8208,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.7945,30.6259,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.8403,30.4342,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.1224,16.3780,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.7862,15.8688,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.7945,30.6706,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.8403,30.4175,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.1224,16.2935,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.7862,15.8189,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.7945,30.6353,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.8403,30.5295,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.1224,16.8279,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.7862,16.4736,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.7945,30.4408,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.8403,30.2172,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.1224,16.5683,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.7862,15.8842,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.7945,30.1288,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.8403,29.7262,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.1224,16.7669,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.7862,16.0181,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.7945,30.6282,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.8403,30.3921,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.1224,16.6809,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.7862,15.9544,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.7945,30.1116,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.8403,29.8072,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.1224,16.5689,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.7862,15.8581,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.7945,29.9775,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.8403,29.8798,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.1224,16.9314,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.7862,16.2338,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.7945,29.9429,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.8403,29.7360,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.1224,16.5115,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.7862,15.9067,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.7945,30.4638,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.8403,30.1182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.1224,16.5125,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.7862,15.8716,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.7945,29.8408,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.8403,29.6330,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.1224,16.4288,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.7862,15.8645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.7945,32.5319,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.8403,32.3000,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.1224,16.2534,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.7862,15.7410,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.7945,30.4821,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.8403,30.6167,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.1224,16.7571,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.7862,15.9705,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.7945,29.8307,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.8403,29.6008,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.1224,16.7337,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.7862,15.7983,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.7945,29.9572,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.8403,29.8334,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.1224,16.3115,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.7862,15.9113,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.7945,29.5716,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.8403,29.8657,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.1224,16.6152,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.7862,15.9186,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.7945,29.8424,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.8403,29.6052,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.1224,16.3994,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.7862,15.8644,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.7945,29.8764,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.8403,29.7187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.1224,16.4985,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.7862,16.0249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.7945,29.5580,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.8403,29.5089,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.1224,16.8939,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.7862,16.6578,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.7945,30.6170,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.8403,30.4461,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.1224,17.3705,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.7862,16.8848,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.7945,30.3932,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.8403,30.0255,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.1224,16.2933,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.7862,15.9225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.7945,30.0731,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.8403,29.7684,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.1224,17.5277,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.7862,17.0308,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.7945,31.4040,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.8403,31.1660,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.1224,16.0820,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.7862,15.9868,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.7945,30.4232,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.8403,30.2940,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.1224,16.1231,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.7862,15.7119,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.7945,30.4215,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.8403,30.2605,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.1224,15.9421,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.7862,15.5220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.7945,29.8944,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.8403,29.7618,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.1224,15.2704,0.0492,0.0000,0,0,0.0000,0,0.0000,0,1,0,136603,0 +901,2.7862,15.0627,0.0337,0.0000,0,0,0.0000,0,0.0000,0,1,0,91428,0 +902,2.7945,29.1318,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,140584,0 +903,2.8403,29.1279,0.0265,0.0000,0,0,0.0000,0,0.0000,0,1,0,142535,0 +904,5.1224,15.7106,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,5895,0 +905,2.7862,15.5158,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,4101,0 +906,2.7945,30.2617,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,10754,0 +907,2.8403,31.5078,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,11984,0 +908,5.1224,17.0866,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,13208,0 +909,2.7862,16.7997,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +910,2.7945,29.6642,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +911,2.8403,33.2476,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +912,5.1224,15.9507,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,19394,0 +913,2.7862,15.6009,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5079,0 +914,2.7945,30.0388,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,17114,0 +915,2.8403,29.9155,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,28257,0 +916,5.1224,15.8717,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,14312,0 +917,2.7862,15.8942,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9906,0 +918,2.7945,29.9606,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,19096,0 +919,2.8403,29.8332,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,24502,0 +920,5.1224,16.2482,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,8243,0 +921,2.7862,16.0954,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6510,0 +922,2.7945,29.6137,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,4340,0 +923,2.8403,29.3502,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5282,0 +924,5.1224,16.5707,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,6114,0 +925,2.7862,15.8495,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4695,0 +926,2.7945,30.5980,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,3635,0 +927,2.8403,30.4933,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4398,0 +928,5.1224,16.5712,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3558,0 +929,2.7862,15.8369,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +930,2.7945,30.2769,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +931,2.8403,30.0201,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4138,0 +932,5.1224,16.4905,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +933,2.7862,15.6361,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2434,0 +934,2.7945,30.4403,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2874,0 +935,2.8403,30.4119,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3905,0 +936,5.1224,16.8963,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2412,0 +937,2.7862,17.1775,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +938,2.7945,29.8171,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,2813,0 +939,2.8403,29.5930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2760,0 +940,5.1224,16.7172,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +941,2.7862,15.9792,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +942,2.7945,30.7795,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +943,2.8403,30.7102,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2605,0 +944,5.1224,16.7608,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +945,2.7862,15.8242,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,2.7945,29.6892,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,2500,0 +947,2.8403,29.8567,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2845,0 +948,5.1224,16.3431,0.0294,0.0000,0,0,0.0000,0,0.0000,0,0,0,1862,0 +949,2.7862,15.7491,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,2.7945,30.1977,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +951,2.8403,29.8065,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1023,0 +952,5.1224,16.3836,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +953,2.7862,15.6623,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,2.7945,30.3588,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,1903,0 +955,2.8403,30.1676,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +956,5.1224,15.9769,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.7862,15.6245,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,2.7945,30.8002,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +959,2.8403,30.7240,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +960,5.1224,16.5450,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.7862,15.9000,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.7945,30.2765,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +963,2.8403,30.0170,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.1224,16.8070,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.7862,16.0319,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.7945,30.2384,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.8403,30.1171,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.1224,19.1344,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.7862,18.6265,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.7945,30.3542,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.8403,30.1687,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.1224,16.2411,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.7862,15.7768,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.7945,32.8277,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.8403,32.6905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +976,5.1224,16.2498,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.7862,15.8908,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.7945,30.4530,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.8403,29.9858,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.1224,16.2718,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.7862,15.9683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.7945,30.2466,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.8403,30.4113,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.1224,16.8028,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.7862,15.9544,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.7945,29.8954,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.8403,29.7936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.1224,16.5792,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.7862,15.9490,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.7945,30.4038,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.8403,29.9768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.1224,16.6290,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.7862,15.8117,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.7945,30.5130,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.8403,30.2715,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.1224,16.8053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.7862,15.8488,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.7945,30.5908,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.8403,30.3298,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.1224,16.7525,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.7862,15.9023,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.7945,30.2811,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.8403,30.3013,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1004,5.1224,15.9997,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.7862,16.0190,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.7945,28.3050,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.8403,29.9295,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.1224,16.1245,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.7862,15.7065,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.7945,30.2788,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.8403,30.0706,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.1224,17.4312,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.7862,17.3374,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.7945,30.0192,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.8403,30.0231,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.1224,15.9827,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.7862,15.5536,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.7945,30.0098,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.8403,29.9088,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.1224,15.7545,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.7862,15.4797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.7945,30.1068,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.8403,29.9515,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.1224,16.1818,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.7862,15.8882,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.7945,30.3194,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.8403,30.1077,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.1224,16.1002,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.7862,15.6560,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.7945,30.3012,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.8403,30.2741,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1032,5.1224,16.2841,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.7862,15.7893,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.7945,30.2372,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.8403,30.0098,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.1224,16.1956,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.7862,15.5438,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.7945,24.4641,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.8403,24.1450,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.1224,17.8261,0.1603,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.7862,17.3212,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.7945,30.1514,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.8403,29.8983,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.1224,16.0098,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.7862,15.6285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.7945,30.4215,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.8403,30.1907,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.1224,16.4408,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.7862,16.2150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.7945,30.4593,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.8403,30.2084,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.1224,16.6202,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.7862,16.0027,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.7945,30.2447,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.8403,30.1374,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.1224,16.6520,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.7862,15.8013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.7945,30.1592,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.8403,29.8194,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1060,5.1224,16.6977,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.7862,15.8854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.7945,30.0780,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.8403,29.6397,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.1224,16.0771,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.7862,15.6813,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.7945,30.4105,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.8403,30.5778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.1224,16.8972,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.7862,16.1361,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.7945,30.5220,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.8403,30.3334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.1224,16.3833,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.7862,15.6823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.7945,31.2898,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.8403,31.3134,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.1224,17.5773,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.7862,16.6672,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.7945,30.2780,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.8403,30.2025,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.1224,16.8758,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.7862,16.0675,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.7945,30.5928,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.8403,30.5532,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.1224,16.4681,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.7862,15.7895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.7945,30.5945,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.8403,31.4567,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1088,5.1224,17.0460,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.7862,16.1288,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.7945,29.2616,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.8403,29.1537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.1224,17.4124,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.7862,15.8965,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.7945,26.8860,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.8403,29.9534,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.1224,16.2215,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.7862,15.7215,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.7945,30.2513,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.8403,30.1510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.1224,16.5285,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.7862,16.1268,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.7945,30.3382,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.8403,30.0820,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.1224,16.4364,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.7862,15.9874,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.7945,30.4304,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.8403,30.1694,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.1224,16.1670,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.7862,15.6862,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.7945,30.2815,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.8403,30.0593,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.1224,15.8817,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.7862,15.4325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.7945,30.0637,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.8403,29.9602,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1116,5.1224,15.7021,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.7862,15.5485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.7945,29.8914,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.8403,30.0011,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.1224,16.5168,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.7862,15.6368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.7945,29.6785,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.8403,29.8209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.1224,15.5542,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.7862,15.4012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.7945,29.8909,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.8403,29.8891,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.1224,15.5960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.7862,15.4551,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.7945,30.0620,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.8403,30.0302,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.1224,15.5853,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.7862,15.4353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.7945,29.9413,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.8403,29.9183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.1224,15.5957,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.7862,15.4018,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.7945,29.9095,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.8403,29.8641,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.1224,15.5525,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.7862,15.3760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.7945,30.2695,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.8403,30.1936,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1144,5.1224,15.7259,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.7862,15.4944,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.7945,30.4334,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.8403,30.3502,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.1224,15.6888,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.7862,15.4590,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.7945,29.9772,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.8403,30.0242,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.1224,15.5857,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.7862,15.4121,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.7945,30.2144,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.8403,30.0989,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.1224,15.7470,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.7862,15.5193,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.7945,30.0132,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.8403,30.0694,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.1224,15.5778,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.7862,15.4050,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.7945,30.0598,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.8403,29.9470,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.1224,15.6660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.7862,15.4374,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.7945,30.0899,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.8403,29.9172,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.1224,15.9114,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.7862,15.6479,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.7945,30.1753,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.8403,30.1552,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1172,5.1224,15.6376,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.7862,15.5260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.7945,30.0102,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.8403,30.0175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.1224,15.6207,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.7862,15.4432,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.7945,30.0525,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.8403,29.9644,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.1224,15.6818,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.7862,15.6097,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.7945,29.9688,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.8403,30.0867,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.1224,15.7372,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.7862,15.5651,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.7945,30.0862,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.8403,29.9769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.1224,15.6385,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.7862,15.5523,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.7945,30.0995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.8403,30.0665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.1224,15.7491,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.7862,15.5647,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.7945,30.1427,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.8403,29.9842,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.1224,15.8136,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.7862,15.5636,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.7945,30.3444,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.8403,30.2548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.txt b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.txt new file mode 100644 index 0000000..432eca7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.760 +effective_logical_fps=44.378 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=19.741 +p95_encode_latency_ms=32.077 +max_encode_latency_ms=103.813 +avg_steady_encode_latency_ms=20.034 +p95_steady_encode_latency_ms=32.077 +max_steady_encode_latency_ms=35.656 +avg_tile_encode_latency_ms=14.184 +p95_tile_encode_latency_ms=30.360 +avg_max_tile_encode_latency_ms=18.403 +p95_max_tile_encode_latency_ms=30.626 +avg_steady_max_tile_encode_latency_ms=18.908 +p95_steady_max_tile_encode_latency_ms=30.629 +payload_bytes=3991291 +send_target=none +csv=benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1_logical.csv diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1_logical.csv b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1_logical.csv new file mode 100644 index 0000000..0b6983a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/60mbps_inflight1_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,103.8130,28.4644,254680 +1,4,0,11.1145,10.5330,75429 +2,4,0,10.9832,10.5312,71740 +3,4,0,10.8981,10.4934,99687 +4,4,0,10.8828,10.3608,110030 +5,4,0,10.7663,10.3105,117866 +6,4,0,10.8010,10.3351,53093 +7,4,0,10.8960,10.4442,27359 +8,4,0,10.9008,10.4156,20460 +9,4,0,10.8852,10.3528,18852 +10,4,0,10.9816,10.5116,12000 +11,4,0,11.0605,10.5133,8849 +12,4,0,11.0611,10.4518,7660 +13,4,0,11.0811,10.4047,5308 +14,4,0,11.0306,10.4450,5262 +15,4,0,10.9590,10.3300,3190 +16,4,0,11.0879,10.4457,2652 +17,4,0,11.1222,10.4718,2617 +18,4,0,11.0693,10.3133,2603 +19,4,0,11.4606,10.6113,2626 +20,4,0,17.8810,15.3058,2650 +21,4,0,11.1388,10.5887,2598 +22,4,0,11.0605,10.4516,2598 +23,4,0,11.3975,8.7298,2598 +24,4,0,11.3523,10.7814,2603 +25,4,0,11.6905,10.0301,2598 +26,4,0,11.7699,10.3070,2612 +27,4,0,11.4180,10.2196,2598 +28,4,0,11.3675,10.1325,2598 +29,4,0,11.3715,10.2465,2598 +30,4,0,14.1377,10.0865,2598 +31,4,0,11.0043,10.3970,2603 +32,4,0,11.4870,10.5915,2598 +33,4,0,15.8703,14.0970,2598 +34,4,0,11.3709,10.5478,2598 +35,4,0,11.8301,10.3175,2598 +36,4,0,11.4513,10.5903,2598 +37,4,0,11.9050,10.5593,2598 +38,4,0,12.1451,10.4033,2598 +39,4,0,12.6615,11.1520,2598 +40,4,0,11.7966,10.9845,2598 +41,4,0,12.1167,10.2608,2598 +42,4,0,13.1148,12.1902,2602 +43,4,0,11.3961,10.2003,2598 +44,4,0,13.3057,10.9929,2598 +45,4,0,11.9837,10.2751,2598 +46,4,0,11.1238,10.3166,2598 +47,4,0,11.2201,10.4840,2598 +48,4,0,11.5853,10.5437,2598 +49,4,0,11.9316,10.5885,2598 +50,4,0,11.3130,10.6464,2598 +51,4,0,11.5158,10.5017,2598 +52,4,0,11.7845,10.8034,2598 +53,4,0,11.3202,10.5590,2598 +54,4,0,11.5508,10.7236,2598 +55,4,0,11.4185,10.6775,2598 +56,4,0,11.4512,10.6766,2598 +57,4,0,11.4585,10.6037,2598 +58,4,0,11.3467,10.6120,2598 +59,4,0,11.5568,10.6659,2598 +60,4,0,11.5079,10.8087,2598 +61,4,0,11.4947,10.6417,2598 +62,4,0,11.4236,10.6202,2598 +63,4,0,11.6307,10.7791,2598 +64,4,0,11.6478,10.7968,2598 +65,4,0,11.6163,10.6776,2598 +66,4,0,11.1503,10.4023,2598 +67,4,0,11.6903,9.9302,2598 +68,4,0,12.1074,10.0086,2598 +69,4,0,11.8591,9.9903,2598 +70,4,0,11.8215,9.9667,2598 +71,4,0,11.1045,10.2657,2598 +72,4,0,11.2236,10.4288,2598 +73,4,0,10.9885,10.3303,2598 +74,4,0,11.5310,10.6478,2598 +75,4,0,12.2252,10.6911,527759 +76,4,0,12.1461,10.0642,17184 +77,4,0,11.6853,10.7920,28653 +78,4,0,11.3038,10.4041,47273 +79,4,0,12.0280,10.6707,56196 +80,4,0,18.0435,17.3771,41167 +81,4,0,11.6893,10.6135,26717 +82,4,0,11.5303,10.7102,22502 +83,4,0,11.5800,10.6317,12766 +84,4,0,11.4938,10.4380,8573 +85,4,0,11.8753,10.5118,6812 +86,4,0,11.5180,10.1914,7328 +87,4,0,11.8465,9.9405,5768 +88,4,0,13.2461,9.9712,4457 +89,4,0,11.8675,10.5296,4499 +90,4,0,11.6044,10.5616,2753 +91,4,0,11.2457,10.4866,2601 +92,4,0,11.2675,10.4661,2598 +93,4,0,11.9693,10.0013,2598 +94,4,0,11.5173,10.2094,2598 +95,4,0,11.8589,10.5663,2598 +96,4,0,11.9005,10.4415,2613 +97,4,0,11.8426,10.3431,2612 +98,4,0,11.6957,10.4253,2598 +99,4,0,11.5880,10.3054,2598 +100,4,0,12.3867,10.1662,2598 +101,4,0,11.5244,10.7451,2598 +102,4,0,11.9364,11.1996,2598 +103,4,0,12.4981,11.6703,2598 +104,4,0,11.9632,11.0975,2598 +105,4,0,11.8470,10.9184,2598 +106,4,0,11.7924,10.4807,2598 +107,4,0,12.1293,10.4790,2598 +108,4,0,12.7290,10.1279,2598 +109,4,0,12.0250,10.5700,2598 +110,4,0,12.1252,10.5704,2598 +111,4,0,11.8799,10.4380,2598 +112,4,0,12.0325,10.1318,2598 +113,4,0,11.7568,9.6562,2598 +114,4,0,11.8035,10.8697,2598 +115,4,0,14.1055,12.6156,2598 +116,4,0,11.2561,10.5702,2598 +117,4,0,11.3372,10.4608,2598 +118,4,0,11.0678,10.4342,2598 +119,4,0,12.0802,10.6503,2598 +120,4,0,12.1650,10.0116,2598 +121,4,0,11.2017,10.3944,2598 +122,4,0,11.2773,10.4838,2598 +123,4,0,10.9896,10.3543,2598 +124,4,0,11.1661,10.5005,2598 +125,4,0,10.9815,10.4289,2598 +126,4,0,10.9916,10.4031,2598 +127,4,0,10.9714,10.4499,2598 +128,4,0,11.1150,10.4662,2598 +129,4,0,10.9982,10.3935,2598 +130,4,0,11.0848,10.4901,2598 +131,4,0,11.0150,10.4146,2598 +132,4,0,11.0811,10.4292,2598 +133,4,0,11.0776,10.4341,2598 +134,4,0,11.0796,10.3867,2598 +135,4,0,10.9503,10.3435,2598 +136,4,0,10.9088,10.3864,2598 +137,4,0,11.0840,10.5188,2598 +138,4,0,10.9723,10.3746,2598 +139,4,0,11.0336,10.4934,2598 +140,4,0,11.0640,10.5179,2598 +141,4,0,10.9743,10.3455,2598 +142,4,0,11.0485,10.3965,2598 +143,4,0,10.9887,10.3735,2598 +144,4,0,11.1828,10.6260,2598 +145,4,0,11.1109,10.5373,2598 +146,4,0,10.9595,10.3619,2598 +147,4,0,11.0009,10.4546,2598 +148,4,0,11.0974,10.5658,2598 +149,4,0,11.1268,10.4735,2598 +150,4,0,10.8918,10.2018,515439 +151,4,0,11.0810,10.5108,26412 +152,4,0,11.2336,10.6034,52060 +153,4,0,11.0328,10.4399,46000 +154,4,0,11.1427,10.5283,44537 +155,4,0,11.0248,10.4195,30719 +156,4,0,10.9562,10.3865,25280 +157,4,0,11.1321,10.4673,20198 +158,4,0,11.0391,10.3605,15087 +159,4,0,11.4467,10.7281,14695 +160,4,0,11.4735,10.7342,7073 +161,4,0,11.1485,10.4307,6108 +162,4,0,11.2948,10.5527,5994 +163,4,0,10.9430,10.3788,5446 +164,4,0,10.9582,10.4098,4184 +165,4,0,11.1109,10.5435,4037 +166,4,0,11.0885,10.4767,4279 +167,4,0,11.1484,10.5505,2805 +168,4,0,11.4290,10.7408,2606 +169,4,0,11.5720,10.7505,2598 +170,4,0,11.6357,10.6888,2598 +171,4,0,11.6725,10.6692,2598 +172,4,0,11.6869,10.9412,2598 +173,4,0,11.7932,10.8438,2624 +174,4,0,11.8032,10.8458,2602 +175,4,0,11.6122,10.6853,2598 +176,4,0,11.4457,10.6842,2598 +177,4,0,11.5821,10.6652,2603 +178,4,0,11.6894,10.7759,2603 +179,4,0,11.6929,10.8556,2603 +180,4,0,11.5949,10.8160,2613 +181,4,0,15.6750,14.8803,2598 +182,4,0,31.3180,30.8052,2598 +183,4,0,31.7407,29.7229,2598 +184,4,0,31.3490,30.4875,2598 +185,4,0,31.7727,30.2178,2604 +186,4,0,31.5329,30.2457,2598 +187,4,0,32.1550,30.5557,2598 +188,4,0,31.4962,30.3042,2598 +189,4,0,31.5619,30.2696,2598 +190,4,0,31.6698,30.3136,2598 +191,4,0,31.4590,30.2218,2598 +192,4,0,31.2282,30.0242,2603 +193,4,0,31.5602,30.6527,2598 +194,4,0,32.3544,31.2175,2598 +195,4,0,30.8744,29.9233,2598 +196,4,0,30.8691,29.9540,2598 +197,4,0,31.0518,30.3420,2598 +198,4,0,31.3304,30.3110,2598 +199,4,0,31.4980,30.6259,2598 +200,4,0,31.5862,30.6706,2598 +201,4,0,31.5766,30.6353,2598 +202,4,0,31.3864,30.4408,2598 +203,4,0,31.5234,30.1288,2598 +204,4,0,31.8208,30.6282,2598 +205,4,0,31.7100,30.1116,2598 +206,4,0,31.7548,29.9775,2598 +207,4,0,31.6125,29.9429,2598 +208,4,0,31.9307,30.4638,2598 +209,4,0,31.5215,29.8408,2598 +210,4,0,33.7061,32.5319,2598 +211,4,0,31.5965,30.6167,2598 +212,4,0,31.5347,29.8307,2598 +213,4,0,31.7198,29.9572,2598 +214,4,0,31.7647,29.8657,2598 +215,4,0,31.6875,29.8424,2598 +216,4,0,31.4698,29.8764,2598 +217,4,0,31.3789,29.5580,2598 +218,4,0,31.3574,30.6170,2598 +219,4,0,31.6619,30.3932,2598 +220,4,0,31.3280,30.0731,2598 +221,4,0,32.2729,31.4040,2598 +222,4,0,31.0953,30.4232,2598 +223,4,0,31.1828,30.4215,2598 +224,4,0,30.8572,29.8944,2598 +225,4,0,29.8090,29.1318,511150 +226,4,0,32.1947,31.5078,32734 +227,4,0,35.6555,33.2476,48467 +228,4,0,30.9665,30.0388,69844 +229,4,0,31.2420,29.9606,67816 +230,4,0,32.3924,29.6137,24375 +231,4,0,32.1120,30.5980,18842 +232,4,0,31.5061,30.2769,14004 +233,4,0,31.8911,30.4403,12133 +234,4,0,31.5772,29.8171,9775 +235,4,0,32.1022,30.7795,7378 +236,4,0,31.9461,29.8567,7729 +237,4,0,31.4540,30.1977,5759 +238,4,0,31.5202,30.3588,4291 +239,4,0,31.8508,30.8002,3699 +240,4,0,31.6170,30.2765,2758 +241,4,0,31.7793,30.2384,2598 +242,4,0,31.3888,30.3542,2598 +243,4,0,33.6483,32.8277,2622 +244,4,0,31.2005,30.4530,2598 +245,4,0,31.6779,30.4113,2598 +246,4,0,31.8728,29.8954,2598 +247,4,0,31.5418,30.4038,2598 +248,4,0,31.7907,30.5130,2598 +249,4,0,31.9023,30.5908,2598 +250,4,0,31.8528,30.3013,2613 +251,4,0,32.6896,29.9295,2598 +252,4,0,31.1292,30.2788,2598 +253,4,0,31.0887,30.0231,2598 +254,4,0,30.7803,30.0098,2598 +255,4,0,30.8014,30.1068,2598 +256,4,0,31.1337,30.3194,2598 +257,4,0,31.2842,30.3012,2608 +258,4,0,31.3195,30.2372,2598 +259,4,0,31.2803,24.4641,2598 +260,4,0,31.1299,30.1514,2598 +261,4,0,31.2135,30.4215,2598 +262,4,0,31.4076,30.4593,2598 +263,4,0,31.5154,30.2447,2598 +264,4,0,31.7979,30.1592,2608 +265,4,0,31.8856,30.0780,2598 +266,4,0,31.5783,30.5778,2598 +267,4,0,31.8812,30.5220,2598 +268,4,0,32.9378,31.3134,2598 +269,4,0,32.0752,30.2780,2598 +270,4,0,32.0461,30.5928,2598 +271,4,0,32.9953,31.4567,2604 +272,4,0,31.2021,29.2616,2598 +273,4,0,35.4405,29.9534,2598 +274,4,0,31.2481,30.2513,2598 +275,4,0,31.3287,30.3382,2598 +276,4,0,31.5406,30.4304,2598 +277,4,0,31.1960,30.2815,2598 +278,4,0,30.7486,30.0637,2604 +279,4,0,30.6998,30.0011,2598 +280,4,0,31.4101,29.8209,2598 +281,4,0,30.4144,29.8909,2598 +282,4,0,30.5250,30.0620,2598 +283,4,0,30.4553,29.9413,2598 +284,4,0,30.5276,29.9095,2598 +285,4,0,30.7625,30.2695,2604 +286,4,0,30.9155,30.4334,2598 +287,4,0,30.6393,30.0242,2598 +288,4,0,30.7230,30.2144,2598 +289,4,0,30.6942,30.0694,2598 +290,4,0,30.5634,30.0598,2598 +291,4,0,30.5542,30.0899,2598 +292,4,0,30.7264,30.1753,2604 +293,4,0,30.5703,30.0175,2598 +294,4,0,30.5528,30.0525,2598 +295,4,0,30.8376,30.0867,2598 +296,4,0,30.6441,30.0862,2598 +297,4,0,30.6886,30.0995,2598 +298,4,0,30.6648,30.1427,2598 +299,4,0,30.8475,30.3444,2598 diff --git a/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/summary.md b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/summary.md new file mode 100644 index 0000000..55afc90 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/summary.md @@ -0,0 +1,11 @@ +# Tiled 5K60 Backpressure Probe + +| Case | Frames | Effective fps | Avg logical ms | P95 logical ms | Steady avg ms | Steady p95 ms | Steady max-tile p95 ms | Payload bytes | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---:|---| +| 120mbps_inflight1 | 300 | 44.043 | 20.083 | 32.267 | 20.400 | 32.267 | 30.592 | 5100530 | FAIL | +| 120mbps_inflight2 | 300 | 45.865 | 31.062 | 59.810 | 31.684 | 59.810 | 58.980 | 5100530 | FAIL | +| 120mbps_unlimited | 300 | 55.780 | 57.076 | 136.617 | 58.539 | 136.622 | 126.936 | 5100530 | FAIL | +| 30mbps_inflight1 | 300 | 44.966 | 19.152 | 31.159 | 19.413 | 31.159 | 30.361 | 3285466 | FAIL | +| 30mbps_inflight1_no_drl | 300 | 34.374 | 29.020 | 47.910 | 29.575 | 47.910 | 47.213 | 4169717 | FAIL | +| 30mbps_inflight2 | 300 | 45.879 | 30.667 | 59.554 | 31.264 | 59.554 | 59.055 | 3285466 | FAIL | +| 60mbps_inflight1 | 300 | 44.378 | 19.741 | 32.077 | 20.034 | 32.077 | 30.629 | 3991291 | FAIL | diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.csv new file mode 100644 index 0000000..a4e371a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0032,30.4078,0.0349,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.8614,25.5018,0.0181,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,2.8059,25.5947,0.0254,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.7895,25.5607,0.0075,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.0032,6.0195,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.8614,5.7857,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,2.8059,10.6143,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.7895,10.5696,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.0032,5.7285,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.8614,5.5834,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,2.8059,10.7837,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.7895,10.6964,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.0032,5.7909,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.8614,5.6770,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,2.8059,10.4703,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.7895,10.5074,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.0032,5.5673,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.8614,5.5652,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,2.8059,10.2287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.7895,10.2097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.0032,5.6757,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.8614,5.5200,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,2.8059,10.4403,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.7895,10.4232,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.0032,5.6020,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.8614,5.6373,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,2.8059,10.3377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.7895,10.4435,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.0032,5.6444,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.8614,5.5953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,2.8059,10.2612,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.7895,10.3281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.0032,5.6297,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.8614,5.5573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,2.8059,10.2492,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.7895,10.2492,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.0032,5.5815,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.8614,5.5628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,2.8059,10.2347,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.7895,10.2886,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.0032,6.0465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.8614,5.7664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,2.8059,10.7870,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.7895,10.5810,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.0032,5.6872,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.8614,5.6115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,2.8059,10.4012,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.7895,10.2606,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.0032,5.7638,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.8614,5.5640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,2.8059,10.4666,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.7895,10.4058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.0032,5.7145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.8614,5.5791,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,2.8059,10.4025,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.7895,10.3241,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.0032,5.7817,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.8614,5.6119,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,2.8059,10.4873,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.7895,10.4298,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.0032,5.9008,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.8614,5.6801,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,2.8059,10.7023,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.7895,10.6116,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.0032,6.0356,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.8614,5.6773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.8059,10.4744,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.7895,10.3300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.0032,6.4354,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.8614,6.5069,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.8059,10.8450,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.7895,10.8160,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.0032,6.6559,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.8614,6.0315,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.8059,9.3482,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.7895,10.3124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.0032,6.2007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.8614,6.6330,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.8059,10.9114,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.7895,10.6308,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.0032,6.7404,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.8614,7.3312,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.8059,8.9554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.7895,10.2826,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.0032,6.7168,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.8614,5.8869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.8059,10.9613,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.7895,10.8425,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.0032,6.9875,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.8614,6.2585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.8059,10.5122,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.7895,10.4295,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.0032,6.9812,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.8614,6.1183,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.8059,9.0099,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.7895,10.6884,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.0032,6.9561,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.8614,5.9961,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.8059,16.8035,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.7895,16.8072,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.0032,6.6166,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.8614,6.0209,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.8059,10.9490,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.7895,10.8496,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.0032,6.5335,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.8614,5.8113,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.8059,10.6162,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.7895,10.4496,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.0032,7.0777,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.8614,6.0363,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.8059,13.8207,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.7895,13.3082,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.0032,7.3141,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.8614,6.3731,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.8059,9.6761,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.7895,10.1966,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.0032,6.7168,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.8614,6.2040,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.8059,10.5332,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.7895,10.2919,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.0032,6.4374,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.8614,5.7512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.8059,10.2529,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.7895,10.2354,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.0032,6.8603,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.8614,6.0062,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.8059,10.3304,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,2.7895,10.2291,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.0032,8.2458,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.8614,6.6180,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.8059,12.9134,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.7895,13.0454,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.0032,6.9802,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.8614,6.1857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.8059,10.5103,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.7895,10.1675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.0032,6.2761,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.8614,5.7097,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.8059,9.9819,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.7895,10.0896,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.0032,6.0948,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.8614,5.7889,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.8059,10.4147,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.7895,10.3378,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.0032,6.0921,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.8614,5.7834,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.8059,10.3833,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.7895,10.2534,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.0032,6.1831,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.8614,5.7288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.8059,10.3545,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.7895,10.2421,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.0032,13.4414,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.8614,12.8605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.8059,12.2492,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.7895,11.9897,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.0032,7.1080,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.8614,6.7275,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.8059,11.3246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.7895,11.1072,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.0032,7.0554,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.8614,5.8758,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.8059,16.2346,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.7895,16.0097,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.0032,6.3139,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.8614,5.7698,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.8059,10.5988,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.7895,10.9074,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.0032,6.5556,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.8614,5.9897,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.8059,9.6538,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,2.7895,9.7621,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.0032,7.3865,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.8614,5.8983,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.8059,14.2646,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.7895,14.0592,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.0032,6.5511,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.8614,5.8213,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.8059,10.5953,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.7895,10.4957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.0032,6.4347,0.0320,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.8614,5.8467,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.8059,11.2604,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.7895,11.0366,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.0032,6.8400,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.8614,5.8364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.8059,10.5343,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.7895,10.8368,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.0032,7.1051,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.8614,6.6370,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.8059,11.7579,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.7895,10.0985,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.0032,6.1550,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.8614,5.7668,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.8059,13.9288,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.7895,14.0032,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.0032,6.0904,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.8614,5.7762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.8059,10.4441,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.7895,10.4137,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.0032,6.8718,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.8614,5.8101,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.8059,10.5686,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.7895,10.3842,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.0032,6.6852,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.8614,6.0151,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.8059,10.5546,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.7895,10.2562,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.0032,6.5791,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.8614,5.7767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.8059,10.1818,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.7895,10.1969,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.0032,6.7408,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.8614,5.9074,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.8059,11.1567,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.7895,10.0685,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.0032,7.1776,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.8614,5.9070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.8059,13.8268,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.7895,13.7430,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.0032,8.1943,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.8614,7.5237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.8059,11.1805,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.7895,11.0925,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.0032,7.1082,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.8614,6.2236,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.8059,12.8794,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.7895,12.7772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.0032,6.8452,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.8614,6.2060,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.8059,7.6465,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.7895,10.5002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.0032,6.9352,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.8614,6.1912,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.8059,16.6138,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.7895,16.5445,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.0032,6.6869,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.8614,5.8283,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.8059,8.7095,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.7895,10.4998,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.0032,6.0997,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.8614,5.7158,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.8059,10.5520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.7895,10.4202,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.0032,7.3405,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.8614,6.1965,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.8059,10.7670,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.7895,10.7292,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.0032,8.0144,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.8614,7.3142,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.8059,11.1990,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.7895,10.9203,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.0032,7.1708,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.8614,6.8218,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.8059,10.9882,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.7895,10.8765,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.0032,10.5656,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.8614,5.7578,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.8059,9.5596,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.7895,10.3707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.0032,6.0606,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.8614,5.6978,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.8059,10.7862,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.7895,10.7470,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.0032,5.9843,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.8614,5.6530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.8059,10.7255,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.7895,10.6460,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.0032,7.1314,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.8614,6.8059,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.8059,11.2547,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.7895,11.2328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.0032,9.7315,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.8614,8.3094,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.8059,17.0342,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.7895,15.7889,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.0032,6.5436,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.8614,6.1971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.8059,16.0599,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.7895,16.0248,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.0032,8.4758,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.8614,8.1740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.8059,12.4287,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.7895,12.2193,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.0032,6.4501,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.8614,5.7423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.8059,10.3740,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.7895,10.1753,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.0032,6.7680,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.8614,6.3091,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.8059,10.4344,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.7895,10.3501,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.0032,6.6653,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.8614,5.7707,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.8059,10.5204,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.7895,10.2541,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.0032,6.6498,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.8614,5.8326,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.8059,10.6205,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.7895,10.4170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.0032,6.3212,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +301,2.8614,5.8831,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.8059,10.2807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +303,2.7895,10.1850,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +304,5.0032,6.2017,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +305,2.8614,5.7230,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.8059,10.6268,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +307,2.7895,10.5172,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +308,5.0032,6.7627,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +309,2.8614,6.1937,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.8059,23.9375,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +311,2.7895,23.9423,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +312,5.0032,6.5705,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.8614,5.7892,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.8059,10.2415,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +315,2.7895,10.1241,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +316,5.0032,5.7876,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.8614,5.5478,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.8059,10.4294,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.7895,10.3345,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +320,5.0032,6.3811,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.8614,5.9652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.8059,11.1268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.7895,10.9376,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.0032,9.4264,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.8614,8.9833,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.8059,9.3569,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.7895,7.1465,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.0032,6.9463,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.8614,5.7702,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.8059,10.5246,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.7895,10.3144,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.0032,6.4849,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.8614,5.7598,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.8059,10.7523,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.7895,10.6522,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.0032,6.2869,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.8614,5.7506,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.8059,11.9670,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.7895,11.4770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.0032,6.7084,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.8614,5.7962,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.8059,10.5760,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.7895,10.2887,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.0032,6.3342,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.8614,5.7345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.8059,10.3513,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.7895,10.2547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.0032,6.8338,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.8614,5.8277,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.8059,15.5376,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.7895,15.3483,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.0032,6.3837,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.8614,5.8643,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.8059,10.5967,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.7895,10.3672,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.0032,6.2623,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.8614,5.8274,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.8059,10.8183,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.7895,10.8720,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.0032,6.7613,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.8614,5.7770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.8059,10.1471,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.7895,10.2071,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +364,5.0032,6.7397,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.8614,5.8230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.8059,10.5253,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.7895,10.2904,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +368,5.0032,6.4607,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.8614,5.8302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.8059,10.3642,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.7895,10.3355,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.0032,6.9830,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.8614,5.7783,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.8059,10.0153,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.7895,10.0799,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.0032,6.4338,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.8614,5.7828,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.8059,9.5685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.7895,10.4050,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.0032,7.1316,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.8614,5.9618,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.8059,9.0902,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.7895,8.1813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.0032,6.7412,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.8614,5.9875,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.8059,12.6242,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.7895,12.3620,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +388,5.0032,6.7237,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.8614,5.8240,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.8059,10.4235,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.7895,10.3208,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.0032,6.0093,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.8614,5.9985,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.8059,10.0595,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.7895,10.1187,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.0032,7.3093,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.8614,6.8832,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.8059,10.3678,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.7895,10.1985,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.0032,6.0209,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.8614,5.6910,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.8059,10.3491,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.7895,10.2246,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.0032,6.4802,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.8614,5.8797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.8059,10.4211,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.7895,10.2214,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.0032,6.1988,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.8614,5.8543,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.8059,10.2761,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.7895,10.2999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.0032,6.0789,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.8614,5.7077,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.8059,9.8251,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.7895,9.8480,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.0032,6.0513,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.8614,5.7592,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.8059,10.1070,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.7895,10.0627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.0032,6.2104,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.8614,5.7473,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.8059,10.2873,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.7895,10.1711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.0032,6.1482,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.8614,5.6588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.8059,10.2392,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.7895,10.2193,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.0032,6.5886,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.8614,5.8197,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.8059,10.5209,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.7895,10.4034,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.0032,6.0720,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.8614,5.8033,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.8059,10.5037,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.7895,10.4316,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.0032,6.8417,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.8614,5.9552,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.8059,10.2374,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.7895,10.1640,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.0032,6.6355,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.8614,5.8503,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.8059,10.0804,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.7895,10.0895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.0032,6.6682,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.8614,6.2497,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.8059,10.7698,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.7895,10.6801,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.0032,6.5955,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.8614,5.9953,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.8059,10.4191,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.7895,10.1877,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.0032,6.6716,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.8614,5.8616,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.8059,10.1318,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.7895,10.0315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.0032,6.8652,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.8614,5.9334,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.8059,10.1548,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.7895,10.1844,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.0032,6.5094,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.8614,5.8185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.8059,10.3556,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.7895,10.1593,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.0032,6.7810,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.8614,6.1726,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.8059,10.1268,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.7895,9.7956,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.0032,6.7585,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.8614,5.8289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.8059,9.8067,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.7895,9.6058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.0032,6.3433,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.8614,5.9400,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.8059,7.4561,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.7895,7.4414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.0032,6.5216,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.8614,5.9289,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.8059,9.8087,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.7895,9.9284,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.0032,6.4482,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.8614,5.8017,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.8059,9.9851,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.7895,9.9399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.0032,8.1205,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.8614,7.2431,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.8059,10.4528,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.7895,10.2360,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.0032,6.7295,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.8614,5.9179,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.8059,9.8407,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.7895,9.9435,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.0032,6.5350,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.8614,5.9765,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.8059,9.7599,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.7895,10.1473,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.0032,6.4416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.8614,6.1217,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.8059,9.6642,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.7895,10.0020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.0032,6.5038,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.8614,5.6999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.8059,10.4486,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.7895,10.1205,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.0032,6.8310,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.8614,5.8689,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.8059,10.6533,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.7895,10.1836,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.0032,6.3650,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.8614,5.6692,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.8059,9.2564,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.7895,9.1609,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.0032,6.2870,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.8614,5.7328,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.8059,9.4051,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.7895,9.3066,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.0032,6.2107,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.8614,5.8395,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.8059,10.0570,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.7895,10.0250,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.0032,7.3908,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.8614,6.4628,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.8059,13.3045,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.7895,13.4598,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.0032,6.4550,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.8614,5.7438,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.8059,10.5339,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.7895,10.2504,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.0032,6.5172,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.8614,5.7940,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.8059,10.1981,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.7895,10.1111,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.0032,6.3673,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.8614,5.7024,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.8059,9.8804,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.7895,10.1118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.0032,6.4402,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.8614,5.7337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.8059,10.2279,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.7895,10.0655,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.0032,6.4162,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.8614,5.9623,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.8059,11.2144,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.7895,10.6759,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.0032,6.3619,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.8614,5.7976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.8059,10.3538,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.7895,10.1522,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.0032,6.5533,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.8614,5.9286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.8059,10.1741,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.7895,10.0949,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.0032,6.4256,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.8614,5.6947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.8059,10.0386,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.7895,10.1323,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.0032,6.5347,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.8614,5.7822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.8059,10.1252,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.7895,10.1067,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.0032,6.6895,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.8614,5.9409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.8059,10.2670,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.7895,10.1832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.0032,6.4797,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.8614,5.8900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.8059,10.1061,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.7895,10.1329,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.0032,6.4454,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.8614,5.7773,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.8059,9.9170,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.7895,10.0881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.0032,6.4603,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.8614,5.7299,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.8059,9.9898,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.7895,10.1838,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.0032,7.8578,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.8614,7.1188,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.8059,10.4203,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.7895,10.6411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.0032,6.6602,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.8614,6.0030,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.8059,10.2668,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.7895,10.2553,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.0032,6.4219,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.8614,5.7815,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.8059,10.0585,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.7895,10.0842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.0032,6.1111,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.8614,5.6828,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.8059,10.1155,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.7895,10.1308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.0032,6.2344,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.8614,5.7196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.8059,10.2645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.7895,10.2694,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.0032,5.6634,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.8614,5.6102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.8059,10.2595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.7895,10.3162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.0032,5.6616,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +601,2.8614,5.5682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +602,2.8059,10.3411,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +603,2.7895,10.2432,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +604,5.0032,5.7461,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +605,2.8614,5.6371,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +606,2.8059,10.2723,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +607,2.7895,10.1767,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +608,5.0032,5.7687,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +609,2.8614,5.6052,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +610,2.8059,10.3537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +611,2.7895,10.2629,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +612,5.0032,5.8370,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +613,2.8614,5.6566,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +614,2.8059,10.7657,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +615,2.7895,10.4408,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +616,5.0032,7.1159,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +617,2.8614,6.6390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +618,2.8059,15.8993,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +619,2.7895,15.9157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +620,5.0032,6.0644,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +621,2.8614,5.5878,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +622,2.8059,10.4660,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +623,2.7895,10.4049,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +624,5.0032,5.6879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +625,2.8614,5.4802,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +626,2.8059,10.4590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +627,2.7895,10.3878,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +628,5.0032,5.7328,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +629,2.8614,5.5450,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +630,2.8059,10.4672,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +631,2.7895,10.4308,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +632,5.0032,7.6517,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +633,2.8614,6.2646,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +634,2.8059,6.6738,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +635,2.7895,9.5008,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +636,5.0032,6.2695,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +637,2.8614,5.6547,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +638,2.8059,10.0596,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +639,2.7895,9.9925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +640,5.0032,6.6275,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +641,2.8614,5.7828,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +642,2.8059,10.3943,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +643,2.7895,10.3329,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +644,5.0032,6.4496,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +645,2.8614,5.8877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +646,2.8059,10.4374,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +647,2.7895,10.3262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +648,5.0032,6.6115,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +649,2.8614,5.8403,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +650,2.8059,10.3502,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +651,2.7895,10.2730,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +652,5.0032,6.8918,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +653,2.8614,6.0063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +654,2.8059,10.3758,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +655,2.7895,10.1720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +656,5.0032,6.3985,0.0350,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +657,2.8614,5.9089,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,2.8059,10.2391,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +659,2.7895,10.2975,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +660,5.0032,6.6238,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +661,2.8614,5.8693,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.8059,10.4993,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +663,2.7895,10.2911,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +664,5.0032,6.4540,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.8614,5.6819,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.8059,10.1613,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.7895,10.1113,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +668,5.0032,6.6515,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.8614,5.7390,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.8059,10.4970,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.7895,10.3880,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +672,5.0032,6.3509,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.8614,5.8273,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.8059,10.7064,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.7895,10.4398,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +676,5.0032,6.5813,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.8614,5.7113,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.8059,10.0590,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.7895,10.0010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.0032,6.8305,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.8614,6.0838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.8059,14.9762,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.7895,14.9459,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.0032,6.5776,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.8614,5.8754,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.8059,10.7778,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.7895,10.7002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.0032,6.5115,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.8614,5.9928,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.8059,10.2527,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.7895,10.3210,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.0032,6.5563,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.8614,5.8218,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.8059,10.3079,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.7895,10.1350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.0032,6.6524,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.8614,5.8033,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.8059,10.2326,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.7895,10.1696,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.0032,7.3285,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.8614,6.5440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.8059,10.4922,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.7895,10.2641,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.0032,6.3817,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.8614,5.9800,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.8059,10.3343,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.7895,10.1697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.0032,6.2731,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.8614,5.7568,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.8059,10.0393,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.7895,9.8280,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.0032,7.0507,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.8614,5.9860,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.8059,10.2650,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.7895,10.0274,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.0032,6.9817,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.8614,5.7695,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.8059,10.1107,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.7895,10.1129,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.0032,6.6055,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.8614,5.8896,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.8059,10.5336,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.7895,12.8314,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.0032,6.5795,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.8614,5.7462,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.8059,14.9123,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.7895,14.6985,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.0032,16.6127,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.8614,15.7943,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.8059,33.5991,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.7895,33.3226,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.0032,16.3178,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.8614,15.7857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.8059,30.4406,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.7895,30.3035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.0032,16.4365,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.8614,15.7346,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.8059,31.4040,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.7895,31.0526,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.0032,16.8101,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.8614,16.7864,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.8059,30.3057,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.7895,30.0467,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.0032,18.0098,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.8614,17.3688,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.8059,31.7363,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.7895,31.6835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.0032,19.6439,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.8614,17.2526,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.8059,30.4322,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.7895,30.0167,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.0032,17.1802,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.8614,16.8498,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.8059,30.3348,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.7895,30.0943,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.0032,16.0220,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.8614,15.6210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.8059,30.4991,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.7895,30.2540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.0032,16.1107,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.8614,15.7076,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.8059,30.8009,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.7895,30.5897,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.0032,17.2100,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.8614,16.5770,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.8059,30.3654,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.7895,29.9474,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.0032,16.5397,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.8614,15.7409,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.8059,30.7303,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.7895,30.5145,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.0032,18.2017,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.8614,17.6313,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.8059,30.6929,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.7895,30.4975,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.0032,16.8903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.8614,15.9647,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.8059,30.5102,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.7895,30.2409,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.0032,16.8063,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.8614,15.8775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.8059,29.3703,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.7895,29.3946,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.0032,16.6252,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.8614,15.6495,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.8059,30.6019,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.7895,30.5145,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.0032,17.8869,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.8614,17.2693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.8059,30.4891,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.7895,30.1020,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.0032,16.9978,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.8614,16.0794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.8059,28.8509,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.7895,29.9690,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.0032,16.6447,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.8614,15.8719,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.8059,30.4419,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.7895,30.1268,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.0032,16.8745,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.8614,16.3419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.8059,30.5172,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.7895,30.4684,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.0032,16.5332,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.8614,16.3182,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.8059,30.5179,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.7895,30.0734,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.0032,16.6950,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.8614,15.8453,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.8059,31.0547,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.7895,30.6535,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.0032,17.0620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.8614,16.0233,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.8059,30.3438,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.7895,30.1233,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.0032,19.8792,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.8614,19.0211,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.8059,30.5590,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.7895,30.2165,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.0032,16.7758,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.8614,16.2352,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.8059,28.3635,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.7895,29.8697,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.0032,16.4112,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.8614,15.7814,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.8059,29.8747,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.7895,29.6134,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.0032,17.0557,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.8614,16.1700,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.8059,30.5695,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.7895,30.2858,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.0032,17.0296,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.8614,16.0235,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.8059,30.6010,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.7895,30.5813,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.0032,16.8478,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.8614,15.9719,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.8059,30.2331,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.7895,29.3162,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.0032,18.1414,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.8614,17.1280,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.8059,30.2080,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.7895,29.9490,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.0032,15.8729,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.8614,15.5220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.8059,29.9550,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.7895,29.7356,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.0032,15.8153,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.8614,15.4876,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.8059,30.1277,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.7895,30.0485,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.0032,15.7855,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.8614,15.4858,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.8059,30.2073,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.7895,30.0809,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.0032,15.7742,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.8614,15.4815,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.8059,29.9827,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.7895,29.8579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.0032,15.7547,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.8614,15.4924,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.8059,30.1394,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.7895,30.0067,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.0032,15.7735,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.8614,16.1822,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.8059,30.0735,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.7895,29.4952,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.0032,15.8368,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.8614,17.6340,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.8059,32.1762,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.7895,31.0422,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.0032,15.8015,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.8614,15.5574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.8059,29.7081,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.7895,29.5947,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.0032,15.7225,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.8614,15.4238,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.8059,30.0869,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.7895,29.9692,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.0032,15.7179,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.8614,15.4744,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.8059,30.1870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.7895,30.0940,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.0032,15.7777,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.8614,15.4880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.8059,30.1495,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.7895,29.9855,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.0032,15.7341,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.8614,15.4733,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.8059,30.1858,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.7895,30.0362,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.0032,15.7641,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.8614,15.5571,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.8059,30.0630,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.7895,29.9623,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.0032,15.6967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.8614,15.4739,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.8059,30.0026,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.7895,29.9163,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.0032,15.5927,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +901,2.8614,15.3565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,2.8059,30.0670,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +903,2.7895,29.9778,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +904,5.0032,15.8505,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +905,2.8614,15.5250,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,2.8059,30.1944,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +907,2.7895,30.1585,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +908,5.0032,15.8524,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +909,2.8614,15.5857,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,2.8059,30.8792,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +911,2.7895,30.5375,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +912,5.0032,16.3782,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,2.8614,15.9315,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,2.8059,30.7577,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,2.7895,30.6806,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +916,5.0032,16.3801,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,2.8614,15.9830,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,2.8059,29.9233,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,2.7895,29.6782,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,5.0032,16.0424,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,2.8614,15.6624,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,2.8059,30.1710,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,2.7895,29.8300,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,5.0032,16.0182,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,2.8614,15.6211,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,2.8059,30.0238,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,2.7895,29.6608,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,5.0032,16.2775,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,2.8614,15.8953,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,2.8059,30.0907,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,2.7895,29.8417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,5.0032,16.1357,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,2.8614,15.6921,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,2.8059,35.6933,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,2.7895,35.6173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,5.0032,16.3325,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,2.8614,17.1562,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,2.8059,28.2931,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,2.7895,27.9440,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,5.0032,15.9630,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,2.8614,15.6099,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,2.8059,29.8346,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.7895,29.5839,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,5.0032,15.7413,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,2.8614,15.6641,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,2.8059,30.2262,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,2.7895,30.2783,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,5.0032,16.0203,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,2.8614,15.6278,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,2.8059,30.0118,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,2.7895,29.7358,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,5.0032,16.2045,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,2.8614,15.8057,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,2.8059,28.8201,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,2.7895,28.3241,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,5.0032,17.0063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.8614,16.2389,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,2.8059,30.5002,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,2.7895,30.2930,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,5.0032,19.3922,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.8614,17.0648,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.8059,30.4786,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +963,2.7895,31.0839,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.0032,16.7963,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.8614,16.0674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.8059,30.5438,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.7895,30.1168,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.0032,17.0275,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.8614,16.2503,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.8059,33.3673,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.7895,32.9047,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.0032,16.8173,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.8614,15.7989,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.8059,31.6465,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.7895,31.3506,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +976,5.0032,16.6895,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.8614,15.8386,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.8059,30.5042,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.7895,30.1872,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.0032,16.9091,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.8614,16.0088,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.8059,29.5679,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.7895,29.7779,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.0032,19.0695,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.8614,16.1506,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.8059,27.1969,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.7895,29.8692,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.0032,16.6222,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.8614,16.9265,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.8059,30.3574,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.7895,30.0323,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.0032,17.0667,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.8614,16.3928,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.8059,30.6445,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.7895,30.3642,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.0032,17.4899,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.8614,16.5988,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.8059,33.3893,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.7895,32.3540,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.0032,16.8555,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.8614,15.7574,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.8059,36.3396,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.7895,35.9259,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.0032,16.5024,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.8614,15.6547,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.8059,30.0352,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.7895,29.8021,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.0032,16.1617,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.8614,15.7034,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.8059,30.4550,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.7895,30.2261,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.0032,16.4306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.8614,15.8944,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.8059,32.3861,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.7895,35.7610,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.0032,16.5250,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.8614,15.8958,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.8059,30.7533,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.7895,30.7750,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.0032,16.7019,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.8614,16.1199,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.8059,30.4384,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.7895,30.2082,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.0032,16.9650,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.8614,16.1354,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.8059,30.2150,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.7895,29.7307,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.0032,16.5293,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.8614,15.7072,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.8059,30.4224,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.7895,29.1076,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.0032,16.7540,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.8614,15.9708,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.8059,30.3624,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.7895,30.0782,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.0032,16.3338,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.8614,15.6969,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.8059,30.2605,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.7895,30.0680,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.0032,18.9708,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.8614,18.4991,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.8059,30.3307,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.7895,30.1785,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.0032,16.7685,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.8614,16.0319,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.8059,27.7920,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.7895,29.9494,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.0032,16.7280,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.8614,15.9450,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.8059,29.7528,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.7895,29.8059,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.0032,16.6046,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.8614,16.3024,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.8059,30.4649,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.7895,29.5555,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.0032,16.5506,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.8614,16.2085,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.8059,29.9067,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.7895,29.6911,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.0032,18.6189,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.8614,17.7640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.8059,30.5847,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.7895,29.9669,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0032,16.4943,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.8614,15.7070,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.8059,29.9157,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.7895,29.6502,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.0032,17.5018,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.8614,16.8843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.8059,30.2767,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.7895,30.0172,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.0032,16.5004,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.8614,16.4489,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.8059,30.4444,0.0400,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.7895,30.2375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.0032,16.2952,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.8614,15.7157,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.8059,30.3669,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.7895,29.7934,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.0032,16.7426,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.8614,15.8196,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.8059,30.6309,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.7895,30.5779,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.0032,17.6011,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.8614,16.7361,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.8059,30.6161,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.7895,30.3659,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.0032,17.4302,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.8614,16.2598,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.8059,30.7475,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.7895,30.5385,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.0032,16.7711,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.8614,16.0706,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.8059,31.0637,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.7895,31.1419,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.0032,17.2955,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.8614,16.4605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.8059,30.7553,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.7895,30.7117,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.0032,17.0348,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.8614,16.2045,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.8059,30.2306,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.7895,29.9040,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.0032,16.2295,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.8614,15.6352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.8059,30.1565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.7895,29.9573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.0032,15.7285,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.8614,15.5205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.8059,30.0895,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.7895,29.9547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.0032,15.7902,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.8614,15.4254,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.8059,30.1452,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.7895,30.0020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.0032,15.6255,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.8614,15.4133,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.8059,29.8646,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.7895,29.7560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.0032,15.5584,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.8614,15.3960,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.8059,29.9338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.7895,29.8855,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.0032,15.5700,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.8614,15.3920,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.8059,29.9913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.7895,29.9300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.0032,16.3325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.8614,15.8189,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.8059,30.3967,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.7895,30.1740,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.0032,16.4832,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.8614,15.9433,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.8059,29.7592,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.7895,29.4139,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.0032,16.6344,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.8614,15.9167,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.8059,30.1402,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.7895,30.0539,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.0032,16.3552,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.8614,15.9808,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.8059,30.3520,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.7895,30.3701,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.0032,16.2249,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.8614,15.8816,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.8059,30.1704,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.7895,30.0213,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.0032,16.1586,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.8614,15.7147,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.8059,29.7276,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.7895,29.4906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.0032,16.0150,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.8614,15.6102,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.8059,30.3021,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.7895,30.0922,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.0032,16.8158,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.8614,16.0751,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.8059,29.1972,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.7895,28.8780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.0032,16.9453,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.8614,16.4589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.8059,30.5536,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.7895,30.6108,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.0032,18.7162,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.8614,17.5876,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.8059,30.3568,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.7895,30.2064,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.0032,16.8412,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.8614,18.0606,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.8059,27.1661,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.7895,28.9518,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.0032,17.2321,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.8614,16.2019,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.8059,31.6548,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.7895,32.6499,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.0032,17.4705,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.8614,16.4427,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.8059,30.3125,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.7895,29.9888,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.0032,17.1231,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.8614,15.9544,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.8059,28.3889,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.7895,26.8843,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.0032,16.2987,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.8614,15.8695,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.8059,31.4585,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.7895,31.4415,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.0032,16.6298,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.8614,15.7355,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.8059,32.5737,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.7895,32.8623,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.0032,16.8443,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.8614,15.9112,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.8059,33.5790,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.7895,33.2148,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.0032,16.6955,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.8614,16.4217,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.8059,32.6148,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.7895,32.1280,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.txt b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.txt new file mode 100644 index 0000000..92cdff0 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.839 +effective_logical_fps=43.869 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=20.507 +p95_encode_latency_ms=33.718 +max_encode_latency_ms=107.519 +avg_steady_encode_latency_ms=20.825 +p95_steady_encode_latency_ms=33.718 +max_steady_encode_latency_ms=38.200 +avg_tile_encode_latency_ms=14.457 +p95_tile_encode_latency_ms=30.539 +avg_max_tile_encode_latency_ms=18.730 +p95_max_tile_encode_latency_ms=31.155 +avg_steady_max_tile_encode_latency_ms=19.246 +p95_steady_max_tile_encode_latency_ms=31.407 +payload_bytes=1963652 +send_target=none +csv=benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s_logical.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s_logical.csv new file mode 100644 index 0000000..6fc2644 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_inflight1_5s_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,107.5193,30.4078,337552 +1,4,0,11.0925,10.6143,152351 +2,4,0,11.2726,10.7837,149416 +3,4,0,11.0562,10.5074,142089 +4,4,0,10.7610,10.2287,112777 +5,4,0,10.9473,10.4403,114708 +6,4,0,10.9093,10.4435,64955 +7,4,0,10.9212,10.3281,37587 +8,4,0,10.8175,10.2492,26109 +9,4,0,10.8626,10.2886,23201 +10,4,0,11.2217,10.7870,18705 +11,4,0,10.9028,10.4012,14742 +12,4,0,10.9960,10.4666,11738 +13,4,0,10.9527,10.4025,9530 +14,4,0,11.0822,10.4873,6611 +15,4,0,11.2897,10.7023,3979 +16,4,0,11.3315,10.4744,2445 +17,4,0,11.6954,10.8450,2516 +18,4,0,12.9017,10.3124,2602 +19,4,0,12.6237,10.9114,2599 +20,4,0,13.3438,10.2826,2598 +21,4,0,12.4671,10.9613,2598 +22,4,0,11.9680,10.5122,2598 +23,4,0,14.2327,10.6884,2598 +24,4,0,18.4768,16.8072,2598 +25,4,0,12.4813,10.9490,2598 +26,4,0,12.3457,10.6162,2598 +27,4,0,15.5341,13.8207,2598 +28,4,0,12.4492,10.1966,2598 +29,4,0,11.8075,10.5332,2598 +30,4,0,12.3930,10.2529,2598 +31,4,0,11.9485,10.3304,2598 +32,4,0,16.0897,13.0454,2598 +33,4,0,11.9429,10.5103,2598 +34,4,0,11.8972,10.0896,2598 +35,4,0,11.4861,10.4147,2598 +36,4,0,11.4275,10.3833,2598 +37,4,0,11.3860,10.3545,2598 +38,4,0,14.0738,13.4414,2598 +39,4,0,12.2636,11.3246,2598 +40,4,0,18.4788,16.2346,2598 +41,4,0,12.0025,10.9074,2598 +42,4,0,12.1108,9.7621,2598 +43,4,0,17.6829,14.2646,2598 +44,4,0,11.9425,10.5953,2598 +45,4,0,12.5823,11.2604,2598 +46,4,0,13.6155,10.8368,2598 +47,4,0,13.9294,11.7579,2598 +48,4,0,15.0041,14.0032,2598 +49,4,0,11.1638,10.4441,2598 +50,4,0,12.0558,10.5686,2598 +51,4,0,12.0098,10.5546,2598 +52,4,0,11.7688,10.1969,2598 +53,4,0,12.4789,11.1567,2598 +54,4,0,15.7401,13.8268,2598 +55,4,0,12.6373,11.1805,2598 +56,4,0,14.5018,12.8794,2598 +57,4,0,15.1320,10.5002,2598 +58,4,0,18.2439,16.6138,2598 +59,4,0,13.8307,10.4998,2598 +60,4,0,11.3383,10.5520,2598 +61,4,0,12.7305,10.7670,2598 +62,4,0,12.5526,11.1990,2598 +63,4,0,12.1085,10.9882,2598 +64,4,0,18.6779,10.5656,2598 +65,4,0,11.4315,10.7862,2598 +66,4,0,11.3401,10.7255,2598 +67,4,0,12.2027,11.2547,2598 +68,4,0,18.6425,17.0342,2598 +69,4,0,17.1584,16.0599,2598 +70,4,0,13.2959,12.4287,2598 +71,4,0,11.5973,10.3740,2598 +72,4,0,12.0111,10.4344,2598 +73,4,0,12.0597,10.5204,2598 +74,4,0,12.6845,10.6205,2598 +75,4,0,11.6463,10.2807,2598 +76,4,0,11.4914,10.6268,2598 +77,4,0,25.0780,23.9423,2598 +78,4,0,11.7373,10.2415,2598 +79,4,0,11.0145,10.4294,2598 +80,4,0,11.7112,11.1268,2598 +81,4,0,11.6028,9.4264,2598 +82,4,0,12.1972,10.5246,2598 +83,4,0,11.5843,10.7523,2598 +84,4,0,13.1197,11.9670,2598 +85,4,0,12.0643,10.5760,2598 +86,4,0,11.7787,10.3513,2598 +87,4,0,17.0118,15.5376,2598 +88,4,0,11.5356,10.5967,2598 +89,4,0,11.7783,10.8720,2598 +90,4,0,11.9988,10.2071,2598 +91,4,0,11.8727,10.5253,2598 +92,4,0,11.7905,10.3642,2598 +93,4,0,12.4814,10.0799,2598 +94,4,0,12.4094,10.4050,2598 +95,4,0,13.9767,9.0902,2598 +96,4,0,14.7221,12.6242,2598 +97,4,0,12.0913,10.4235,2598 +98,4,0,11.4165,10.1187,2598 +99,4,0,11.2535,10.3678,2598 +100,4,0,11.3682,10.3491,2598 +101,4,0,11.5762,10.4211,2598 +102,4,0,11.6426,10.2999,2598 +103,4,0,11.4645,9.8480,2598 +104,4,0,11.5120,10.1070,2598 +105,4,0,11.6384,10.2873,2598 +106,4,0,11.4882,10.2392,2598 +107,4,0,11.8724,10.5209,2598 +108,4,0,11.6721,10.5037,2598 +109,4,0,11.7454,10.2374,2598 +110,4,0,12.0092,10.0895,2598 +111,4,0,12.2430,10.7698,2598 +112,4,0,11.8824,10.4191,2598 +113,4,0,12.1055,10.1318,2598 +114,4,0,12.0693,10.1844,2598 +115,4,0,11.8698,10.3556,2598 +116,4,0,12.0131,10.1268,2598 +117,4,0,11.7648,9.8067,2598 +118,4,0,12.1485,7.4561,2598 +119,4,0,11.9468,9.9284,2598 +120,4,0,11.8340,9.9851,2598 +121,4,0,11.7093,10.4528,2598 +122,4,0,12.1565,9.9435,2598 +123,4,0,11.9108,10.1473,2598 +124,4,0,12.2502,10.0020,2598 +125,4,0,12.1933,10.4486,2598 +126,4,0,13.9597,10.6533,2598 +127,4,0,11.6468,9.2564,2598 +128,4,0,11.8165,9.4051,2598 +129,4,0,11.8225,10.0570,2598 +130,4,0,14.9763,13.4598,2598 +131,4,0,11.8446,10.5339,2598 +132,4,0,11.6765,10.1981,2598 +133,4,0,11.7960,10.1118,2598 +134,4,0,11.7289,10.2279,2598 +135,4,0,13.9262,11.2144,2598 +136,4,0,11.6218,10.3538,2598 +137,4,0,11.8072,10.1741,2598 +138,4,0,11.8328,10.1323,2598 +139,4,0,11.8656,10.1252,2598 +140,4,0,11.7917,10.2670,2598 +141,4,0,11.8173,10.1329,2598 +142,4,0,11.7394,10.0881,2598 +143,4,0,11.8839,10.1838,2598 +144,4,0,12.2697,10.6411,2598 +145,4,0,11.6162,10.2668,2598 +146,4,0,11.6837,10.0842,2598 +147,4,0,11.3778,10.1308,2598 +148,4,0,11.4017,10.2694,2598 +149,4,0,10.9684,10.3162,2598 +150,4,0,10.9091,10.3411,2598 +151,4,0,10.9011,10.2723,2598 +152,4,0,10.9604,10.3537,2598 +153,4,0,11.3476,10.7657,2598 +154,4,0,17.3500,15.9157,2598 +155,4,0,11.2338,10.4660,2598 +156,4,0,10.9429,10.4590,2598 +157,4,0,10.9884,10.4672,2598 +158,4,0,16.0416,9.5008,2598 +159,4,0,11.6204,10.0596,2598 +160,4,0,11.7166,10.3943,2598 +161,4,0,11.7673,10.4374,2598 +162,4,0,11.8897,10.3502,2598 +163,4,0,11.8207,10.3758,2598 +164,4,0,11.6901,10.2975,2598 +165,4,0,11.6779,10.4993,2598 +166,4,0,11.7049,10.1613,2598 +167,4,0,12.3517,10.4970,2598 +168,4,0,11.5977,10.7064,2598 +169,4,0,11.7837,10.0590,2598 +170,4,0,16.4190,14.9762,2598 +171,4,0,12.0736,10.7778,2598 +172,4,0,11.8328,10.3210,2598 +173,4,0,11.8013,10.3079,2598 +174,4,0,11.5797,10.2326,2598 +175,4,0,11.8804,10.4922,2598 +176,4,0,11.5933,10.3343,2598 +177,4,0,11.5849,10.0393,2598 +178,4,0,11.8562,10.2650,2598 +179,4,0,12.2084,10.1129,2598 +180,4,0,14.9078,12.8314,2598 +181,4,0,16.1702,14.9123,2598 +182,4,0,34.7848,33.5991,2598 +183,4,0,31.4977,30.4406,2598 +184,4,0,33.1272,31.4040,2598 +185,4,0,31.8041,30.3057,2598 +186,4,0,33.1244,31.7363,2598 +187,4,0,33.2853,30.4322,2598 +188,4,0,31.2356,30.3348,2598 +189,4,0,31.1675,30.4991,2598 +190,4,0,31.6095,30.8009,2598 +191,4,0,31.8373,30.3654,2598 +192,4,0,32.0689,30.7303,2598 +193,4,0,31.9715,30.6929,2598 +194,4,0,31.8175,30.5102,2598 +195,4,0,32.5415,29.3946,2598 +196,4,0,32.1757,30.6019,2598 +197,4,0,31.7845,30.4891,2598 +198,4,0,33.3173,29.9690,2598 +199,4,0,31.6803,30.4419,2598 +200,4,0,31.8917,30.5172,2598 +201,4,0,33.0675,30.5179,2598 +202,4,0,32.5054,31.0547,2598 +203,4,0,31.5877,30.3438,2598 +204,4,0,31.8710,30.5590,2598 +205,4,0,33.5497,29.8697,2598 +206,4,0,31.7209,29.8747,2598 +207,4,0,31.9426,30.5695,2598 +208,4,0,32.1485,30.6010,2598 +209,4,0,31.7892,30.2331,2598 +210,4,0,31.3761,30.2080,2598 +211,4,0,30.7828,29.9550,2598 +212,4,0,30.7519,30.1277,2598 +213,4,0,30.7235,30.2073,2598 +214,4,0,30.5993,29.9827,2598 +215,4,0,30.6780,30.1394,2598 +216,4,0,31.5516,30.0735,2598 +217,4,0,33.4708,32.1762,2598 +218,4,0,31.0282,29.7081,2598 +219,4,0,30.5870,30.0869,2598 +220,4,0,30.6181,30.1870,2598 +221,4,0,30.6794,30.1495,2598 +222,4,0,30.6195,30.1858,2598 +223,4,0,30.6841,30.0630,2598 +224,4,0,30.5837,30.0026,2598 +225,4,0,30.4930,30.0670,2598 +226,4,0,30.7533,30.1944,2598 +227,4,0,31.3257,30.8792,2598 +228,4,0,32.2150,30.7577,2598 +229,4,0,30.9551,29.9233,2598 +230,4,0,31.1005,30.1710,2598 +231,4,0,30.9340,30.0238,2598 +232,4,0,30.9790,30.0907,2598 +233,4,0,36.7770,35.6933,2598 +234,4,0,33.7069,28.2931,2598 +235,4,0,30.8577,29.8346,2598 +236,4,0,30.7855,30.2783,2598 +237,4,0,31.2113,30.0118,2598 +238,4,0,31.1570,28.8201,2598 +239,4,0,31.4683,30.5002,2598 +240,4,0,34.3074,31.0839,2598 +241,4,0,31.9044,30.5438,2598 +242,4,0,34.4764,33.3673,2598 +243,4,0,33.3966,31.6465,2598 +244,4,0,31.9098,30.5042,2598 +245,4,0,32.0091,29.7779,2598 +246,4,0,36.6395,29.8692,2598 +247,4,0,31.9186,30.3574,2598 +248,4,0,32.0575,30.6445,2598 +249,4,0,34.5116,33.3893,2598 +250,4,0,38.1996,36.3396,2598 +251,4,0,31.5507,30.0352,2598 +252,4,0,31.2218,30.4550,2598 +253,4,0,36.7418,35.7610,2598 +254,4,0,31.6515,30.7750,2598 +255,4,0,31.8996,30.4384,2598 +256,4,0,31.7438,30.2150,2598 +257,4,0,31.8604,30.4224,2598 +258,4,0,31.7433,30.3624,2598 +259,4,0,31.2315,30.2605,2598 +260,4,0,31.4500,30.3307,2598 +261,4,0,34.0384,29.9494,2598 +262,4,0,31.7425,29.8059,2598 +263,4,0,31.7127,30.4649,2598 +264,4,0,31.8089,29.9067,2598 +265,4,0,32.2056,30.5847,2598 +266,4,0,31.9041,29.9157,2598 +267,4,0,31.4701,30.2767,2598 +268,4,0,31.3719,30.4444,2598 +269,4,0,31.6787,30.3669,2598 +270,4,0,32.1407,30.6309,2598 +271,4,0,32.3097,30.6161,2598 +272,4,0,32.1686,30.7475,2598 +273,4,0,32.4431,31.1419,2598 +274,4,0,32.4668,30.7553,2598 +275,4,0,31.6429,30.2306,2598 +276,4,0,31.1801,30.1565,2598 +277,4,0,30.6470,30.0895,2598 +278,4,0,30.7460,30.1452,2598 +279,4,0,30.4450,29.8646,2598 +280,4,0,30.4814,29.9338,2598 +281,4,0,30.5797,29.9913,2598 +282,4,0,31.1303,30.3967,2598 +283,4,0,31.6764,29.7592,2598 +284,4,0,31.3446,30.1402,2598 +285,4,0,31.2157,30.3701,2598 +286,4,0,31.1151,30.1704,2598 +287,4,0,31.0553,29.7276,2598 +288,4,0,31.2017,30.3021,2598 +289,4,0,31.5801,29.1972,2598 +290,4,0,31.8552,30.6108,2598 +291,4,0,32.0553,30.3568,2598 +292,4,0,34.2190,28.9518,2598 +293,4,0,34.2010,32.6499,2598 +294,4,0,31.8195,30.3125,2598 +295,4,0,33.7265,28.3889,2598 +296,4,0,32.4580,31.4585,2598 +297,4,0,34.3582,32.8623,2598 +298,4,0,35.1040,33.5790,2598 +299,4,0,33.7179,32.6148,2598 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.csv new file mode 100644 index 0000000..3dd0cf1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.6140,28.6509,0.0463,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,2.8700,25.9258,0.0178,0.0000,0,0,0.0000,0,0.0000,0,1,0,55794,0 +2,3.0210,25.7193,0.0291,0.0000,0,0,0.0000,0,0.0000,0,1,0,98369,0 +3,2.8977,25.6631,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,101258,0 +4,5.6140,6.0045,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,36696,0 +5,2.8700,5.7450,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,25382,0 +6,3.0210,10.5784,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,42425,0 +7,2.8977,10.4672,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,47848,0 +8,5.6140,15.4279,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,34597,0 +9,2.8700,15.3223,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,29235,0 +10,3.0210,20.2686,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,40858,0 +11,2.8977,20.1820,0.0797,0.0000,0,0,0.0000,0,0.0000,0,0,0,44726,0 +12,5.6140,25.1191,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,32584,0 +13,2.8700,25.0410,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,23523,0 +14,3.0210,30.0015,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,42685,0 +15,2.8977,29.9043,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,43297,0 +16,5.6140,35.2174,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,27004,0 +17,2.8700,35.1793,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,16295,0 +18,3.0210,40.2345,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,34610,0 +19,2.8977,40.1692,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,34868,0 +20,5.6140,45.4561,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,25926,0 +21,2.8700,45.5311,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15540,0 +22,3.0210,50.4352,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,36865,0 +23,2.8977,50.4520,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,36377,0 +24,5.6140,55.2687,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,16230,0 +25,2.8700,55.4470,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9349,0 +26,3.0210,60.1706,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,23948,0 +27,2.8977,60.2506,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,15428,0 +28,5.6140,65.0217,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,9611,0 +29,2.8700,61.6520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5217,0 +30,3.0210,66.2227,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13718,0 +31,2.8977,61.6195,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9041,0 +32,5.6140,65.0727,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6568,0 +33,2.8700,61.7974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3716,0 +34,3.0210,66.1417,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9306,0 +35,2.8977,62.3718,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6519,0 +36,5.6140,57.0850,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5187,0 +37,2.8700,57.7229,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2883,0 +38,3.0210,61.7509,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7568,0 +39,2.8977,62.4095,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7563,0 +40,5.6140,51.7375,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4526,0 +41,2.8700,52.1984,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +42,3.0210,56.4330,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6125,0 +43,2.8977,57.1757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5608,0 +44,5.6140,45.7922,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3448,0 +45,2.8700,46.3702,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +46,3.0210,50.6525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4877,0 +47,2.8977,51.3321,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4869,0 +48,5.6140,35.7093,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +49,2.8700,36.2610,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +50,3.0210,40.4957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4029,0 +51,2.8977,41.1157,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4327,0 +52,5.6140,30.1631,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +53,2.8700,30.6040,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +54,3.0210,34.8965,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +55,2.8977,35.4708,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3879,0 +56,5.6140,23.4516,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +57,2.8700,23.9035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +58,3.0210,28.1359,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +59,2.8977,28.6722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +60,5.6140,16.8501,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +61,2.8700,17.7533,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +62,3.0210,21.6915,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +63,2.8977,22.5869,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +64,5.6140,10.3715,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,615,0 +65,2.8700,11.0086,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,3.0210,15.6647,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +67,2.8977,15.7974,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +68,5.6140,6.4341,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +69,2.8700,6.3898,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,3.0210,11.1541,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +71,2.8977,11.2127,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +72,5.6140,5.9182,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.8700,5.6140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,3.0210,10.5591,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +75,2.8977,10.5209,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +76,5.6140,5.8400,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.8700,5.5747,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,3.0210,10.4083,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.8977,10.3097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +80,5.6140,5.8550,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.8700,5.5898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,3.0210,10.5031,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +83,2.8977,10.4279,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.6140,5.8046,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.8700,5.5122,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,3.0210,10.3900,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.8977,10.2975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.6140,5.8042,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.8700,5.5518,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,3.0210,10.4311,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.8977,10.4153,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.6140,5.9070,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.8700,5.6324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,3.0210,10.5583,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.8977,10.5298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.6140,6.0685,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.8700,5.7590,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,3.0210,10.6186,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.8977,10.5365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +100,5.6140,5.7995,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.8700,5.5480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,3.0210,10.4173,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.8977,10.3076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.6140,5.9813,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.8700,5.6150,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,3.0210,10.4474,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.8977,10.3620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +108,5.6140,5.7851,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.8700,5.4929,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,3.0210,10.4292,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.8977,10.4114,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.6140,5.6890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.8700,5.4514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,3.0210,10.4024,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.8977,10.3572,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.6140,5.8317,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.8700,5.5596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,3.0210,10.4406,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.8977,10.3916,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.6140,5.9351,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.8700,5.6170,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,3.0210,10.4540,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.8977,10.3645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.6140,5.8130,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.8700,5.5166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,3.0210,10.2877,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +127,2.8977,10.2078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.6140,5.7678,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.8700,5.4870,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,3.0210,10.3544,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.8977,10.2450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.6140,5.7528,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.8700,5.5049,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,3.0210,10.3799,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.8977,10.3330,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.6140,5.8453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.8700,5.6099,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,3.0210,10.5215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.8977,10.5105,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.6140,5.8110,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.8700,5.5280,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,3.0210,10.4471,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.8977,10.3672,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.6140,5.7741,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.8700,5.5525,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,3.0210,10.4615,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.8977,10.4275,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.6140,5.7916,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.8700,5.4451,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,3.0210,10.2926,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.8977,10.2396,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.6140,5.7514,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.8700,5.5119,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,3.0210,10.3990,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.8977,10.3469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.6140,6.1861,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.8700,5.6816,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,3.0210,10.4845,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.8977,10.2998,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.6140,6.1593,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.8700,5.6833,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,3.0210,10.4093,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.8977,10.2380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.6140,5.8869,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.8700,5.5677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,3.0210,10.3306,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.8977,10.2933,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.6140,5.7175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.8700,5.4730,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,3.0210,10.3268,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +171,2.8977,10.3433,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.6140,5.5745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.8700,5.4605,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,3.0210,10.3479,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.8977,10.3891,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.6140,5.6838,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.8700,5.5156,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,3.0210,10.3605,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.8977,10.3257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.6140,5.6586,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.8700,5.4604,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,3.0210,10.2705,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.8977,10.2923,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.6140,5.6414,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.8700,5.4212,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,3.0210,10.3298,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.8977,10.2908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.6140,5.6366,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.8700,5.4813,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,3.0210,10.3825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.8977,10.3689,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.6140,5.7360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.8700,5.5055,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,3.0210,10.3745,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.8977,10.3848,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.6140,5.6625,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.8700,5.4943,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,3.0210,10.2995,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.8977,10.2595,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.6140,5.5966,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.8700,5.4082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,3.0210,10.2430,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.8977,10.2353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.6140,5.5837,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.8700,5.4124,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,3.0210,10.2836,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.8977,10.2634,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.6140,5.8063,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.8700,5.5862,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,3.0210,10.4682,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.8977,10.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.6140,5.7914,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.8700,5.6050,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,3.0210,10.5489,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.8977,10.5417,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.6140,5.6833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.8700,5.4896,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,3.0210,10.3672,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.8977,10.2886,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.6140,5.7477,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.8700,5.5527,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,3.0210,10.4771,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.8977,10.4646,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.6140,5.7089,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.8700,5.4749,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,3.0210,10.3511,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.8977,10.3080,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.6140,5.6642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.8700,5.4445,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,3.0210,10.4232,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.8977,10.3505,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.6140,5.7496,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.8700,5.5291,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,3.0210,10.4485,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.8977,10.3815,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.6140,5.6451,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.8700,5.4253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,3.0210,10.2873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.8977,10.2151,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.6140,5.6605,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.8700,5.4605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,3.0210,10.3833,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.8977,10.3726,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.6140,5.6876,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.8700,5.4312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,3.0210,10.4664,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.8977,10.3627,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.6140,5.7462,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.8700,5.5374,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,3.0210,10.5455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.8977,10.4625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.6140,5.7717,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.8700,5.5314,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,3.0210,10.4748,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.8977,10.3929,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.6140,5.7301,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.8700,5.4568,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,3.0210,10.3852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.8977,10.3515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.6140,5.6039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.8700,5.4378,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,3.0210,10.6822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.8977,10.6739,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.6140,5.6306,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.8700,5.4478,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,3.0210,10.2605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.8977,10.2423,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.6140,5.6761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.8700,5.5266,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,3.0210,10.3931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.8977,10.3332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.6140,5.6395,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.8700,5.4654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,3.0210,10.2976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.8977,10.2435,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.6140,5.6543,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.8700,5.4711,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,3.0210,10.3524,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.8977,10.2812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.6140,6.0210,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.8700,5.6363,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,3.0210,10.5726,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.8977,10.5631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.6140,5.8353,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.8700,5.5845,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,3.0210,10.5487,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.8977,10.4712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.6140,5.9524,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.8700,5.6809,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,3.0210,10.4813,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.8977,10.3772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.6140,5.7613,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.8700,5.5050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,3.0210,10.3809,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.8977,10.3360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.6140,5.6572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.8700,5.4856,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,3.0210,10.3860,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.8977,10.3670,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.6140,5.6701,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +301,2.8700,5.5001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,3.0210,10.3139,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +303,2.8977,10.2400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +304,5.6140,5.6116,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +305,2.8700,5.4013,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,3.0210,10.1465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +307,2.8977,10.0730,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +308,5.6140,5.7793,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +309,2.8700,5.5137,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,3.0210,10.2824,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +311,2.8977,10.1808,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +312,5.6140,5.7318,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.8700,5.4642,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,3.0210,10.3044,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +315,2.8977,10.1545,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +316,5.6140,5.7793,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.8700,5.4488,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,3.0210,10.3550,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.8977,10.2795,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +320,5.6140,5.7343,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.8700,5.4953,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,3.0210,10.3854,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.8977,10.2561,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.6140,5.8649,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.8700,5.6056,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,3.0210,10.5317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.8977,10.4739,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.6140,5.7627,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.8700,5.5468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,3.0210,10.4943,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.8977,10.4514,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.6140,6.3056,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.8700,5.9612,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,3.0210,10.4703,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.8977,10.3287,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.6140,7.6788,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.8700,5.6294,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,3.0210,10.7000,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.8977,10.5510,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.6140,8.6006,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.8700,5.7880,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,3.0210,9.9636,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.8977,10.1575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.6140,6.3264,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.8700,6.4760,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,3.0210,9.2965,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.8977,8.8956,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.6140,6.1954,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.8700,5.7845,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,3.0210,9.6126,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.8977,10.2220,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.6140,6.9405,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.8700,6.0614,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,3.0210,8.8941,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.8977,10.2239,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.6140,6.3259,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.8700,5.6039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,3.0210,10.4202,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.8977,10.5955,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.6140,6.7271,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.8700,5.8198,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,3.0210,10.9236,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.8977,10.8450,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +364,5.6140,6.5598,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.8700,5.7162,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,3.0210,10.4170,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.8977,10.3476,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +368,5.6140,7.6155,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.8700,5.7473,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,3.0210,10.4804,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.8977,11.1009,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.6140,7.0441,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.8700,6.0088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,3.0210,10.3764,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.8977,9.5825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.6140,6.3255,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.8700,6.2917,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,3.0210,9.4241,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.8977,10.2127,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.6140,6.5655,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.8700,5.9112,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,3.0210,9.8890,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.8977,9.4735,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.6140,6.4427,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.8700,6.2103,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,3.0210,6.0738,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.8977,12.1260,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +388,5.6140,6.6133,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.8700,5.7598,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,3.0210,9.0114,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.8977,10.3292,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.6140,6.6617,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.8700,5.7411,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,3.0210,10.7362,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.8977,10.7722,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.6140,6.5281,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.8700,5.6907,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,3.0210,10.5200,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.8977,10.4187,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.6140,6.3992,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.8700,5.8245,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,3.0210,10.7767,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.8977,10.5732,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.6140,6.6231,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.8700,5.7027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,3.0210,10.4611,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.8977,10.1961,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.6140,6.3499,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.8700,5.6445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,3.0210,10.7971,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.8977,12.0631,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.6140,6.8055,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.8700,5.7057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,3.0210,10.2160,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.8977,9.7617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.6140,6.4456,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.8700,5.7728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,3.0210,13.7874,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.8977,13.4916,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.6140,6.3695,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.8700,5.9052,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,3.0210,15.0462,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.8977,15.9272,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.6140,6.3784,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.8700,5.8336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,3.0210,10.1092,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.8977,9.6624,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.6140,5.8555,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.8700,5.4902,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,3.0210,10.3991,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.8977,10.2530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.6140,5.7548,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.8700,5.4867,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,3.0210,10.4217,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.8977,10.3052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.6140,5.8018,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.8700,5.5377,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,3.0210,10.3901,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.8977,10.2885,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.6140,5.8130,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.8700,5.5412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,3.0210,10.5049,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.8977,10.4465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.6140,5.7923,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.8700,5.5562,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,3.0210,10.5152,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.8977,10.3620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.6140,5.8455,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.8700,5.5526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,3.0210,10.4776,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.8977,10.3893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.6140,5.8277,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.8700,5.5360,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,3.0210,10.4728,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.8977,10.4127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.6140,5.8038,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.8700,5.5689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,3.0210,10.5122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.8977,10.4662,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.6140,5.7221,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.8700,5.4674,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,3.0210,10.3712,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.8977,10.3508,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.6140,5.6692,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.8700,5.4460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,3.0210,10.5713,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.8977,10.5202,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.6140,5.7746,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.8700,5.5913,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,3.0210,10.3945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.8977,10.3296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.6140,5.9000,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.8700,5.6174,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,3.0210,10.6118,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.8977,10.4578,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.6140,6.7361,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.8700,6.1784,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,3.0210,9.8801,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.8977,9.8017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.6140,6.2109,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.8700,5.6465,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,3.0210,10.5365,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.8977,10.4405,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.6140,6.6537,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.8700,5.9970,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,3.0210,9.6957,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.8977,9.5594,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.6140,6.4201,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.8700,5.7165,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,3.0210,10.2836,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.8977,9.8519,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.6140,6.6117,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.8700,5.6711,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,3.0210,10.2230,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.8977,10.0101,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.6140,6.6138,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.8700,5.7780,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,3.0210,9.5337,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.8977,9.0531,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.6140,6.6632,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.8700,5.9153,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,3.0210,11.1369,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.8977,11.0334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.6140,6.3978,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.8700,5.6816,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,3.0210,10.1750,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.8977,10.1350,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.6140,6.3530,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.8700,5.8211,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,3.0210,10.0234,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.8977,10.1436,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.6140,6.3971,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.8700,6.0193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,3.0210,8.7311,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.8977,9.2446,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.6140,6.4281,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.8700,5.7650,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,3.0210,9.9910,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.8977,9.9385,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.6140,6.3136,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.8700,5.6270,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,3.0210,10.4397,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.8977,10.2215,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.6140,6.2256,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.8700,5.6536,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,3.0210,10.1685,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.8977,9.9125,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.6140,6.1065,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.8700,5.6288,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,3.0210,10.6055,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.8977,10.5392,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.6140,6.6466,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.8700,5.6670,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,3.0210,10.2285,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.8977,10.2874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.6140,6.7593,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.8700,5.8558,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,3.0210,10.1993,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.8977,10.0770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.6140,8.8250,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.8700,7.7572,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,3.0210,9.9436,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.8977,9.7343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.6140,8.2033,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.8700,7.5541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,3.0210,10.2060,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.8977,10.0636,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.6140,6.0643,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.8700,5.5843,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,3.0210,9.9025,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.8977,9.8658,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.6140,6.0531,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.8700,5.5698,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,3.0210,10.2393,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.8977,10.4998,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.6140,6.1590,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.8700,5.9257,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,3.0210,9.6850,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.8977,9.8370,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.6140,5.9867,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.8700,5.6208,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,3.0210,10.0070,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.8977,9.8693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.6140,6.1490,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.8700,5.7027,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,3.0210,10.3742,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.8977,10.2473,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.6140,6.3730,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.8700,5.7819,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,3.0210,9.1689,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.8977,10.0029,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.6140,6.0790,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.8700,5.6787,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,3.0210,10.6623,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.8977,10.4923,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.6140,6.4924,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.8700,5.9260,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,3.0210,10.2471,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.8977,10.0763,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.6140,6.3573,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.8700,5.6411,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,3.0210,11.6776,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.8977,11.5479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.6140,6.2882,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.8700,5.8186,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,3.0210,8.9053,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.8977,9.1915,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.6140,6.0215,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.8700,5.6978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,3.0210,10.4071,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.8977,10.2675,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.6140,5.9356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.8700,5.6061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,3.0210,10.3861,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.8977,10.1950,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.6140,5.8676,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.8700,5.6342,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,3.0210,10.4065,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.8977,10.2490,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.6140,6.4065,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +601,2.8700,5.8819,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +602,3.0210,10.6570,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +603,2.8977,10.4695,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +604,5.6140,6.3824,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +605,2.8700,6.5740,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +606,3.0210,8.6679,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +607,2.8977,10.0648,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +608,5.6140,6.1518,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +609,2.8700,5.6505,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +610,3.0210,11.3971,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +611,2.8977,11.3048,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +612,5.6140,6.7375,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +613,2.8700,5.7802,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +614,3.0210,10.4352,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +615,2.8977,10.1436,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +616,5.6140,6.6590,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +617,2.8700,5.9633,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +618,3.0210,10.3290,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +619,2.8977,9.9172,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +620,5.6140,6.1086,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +621,2.8700,5.7168,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +622,3.0210,10.0503,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +623,2.8977,10.0774,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +624,5.6140,6.8831,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +625,2.8700,6.3282,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +626,3.0210,11.0306,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +627,2.8977,9.3531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +628,5.6140,6.3018,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +629,2.8700,5.8290,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +630,3.0210,11.0437,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +631,2.8977,11.0454,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +632,5.6140,6.4457,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +633,2.8700,5.8717,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +634,3.0210,10.4161,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +635,2.8977,9.6135,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +636,5.6140,6.2227,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +637,2.8700,5.7978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +638,3.0210,10.5451,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +639,2.8977,10.3416,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +640,5.6140,6.0383,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +641,2.8700,5.6799,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +642,3.0210,10.3717,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +643,2.8977,10.2803,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +644,5.6140,6.0335,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +645,2.8700,5.8860,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +646,3.0210,10.5624,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +647,2.8977,10.2065,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +648,5.6140,6.0680,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +649,2.8700,5.6995,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +650,3.0210,10.2275,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +651,2.8977,10.2452,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +652,5.6140,5.8284,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +653,2.8700,5.5534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +654,3.0210,10.3533,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +655,2.8977,10.3087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +656,5.6140,5.7208,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +657,2.8700,5.5383,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,3.0210,10.3422,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +659,2.8977,10.2669,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +660,5.6140,5.6915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +661,2.8700,5.5173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,3.0210,10.3455,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +663,2.8977,10.2791,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +664,5.6140,5.6901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.8700,5.4559,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,3.0210,10.4023,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.8977,10.3533,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +668,5.6140,5.7651,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.8700,5.5502,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,3.0210,10.4190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.8977,10.3875,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +672,5.6140,5.9035,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.8700,5.6268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,3.0210,10.5898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.8977,10.6242,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +676,5.6140,5.9041,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.8700,5.7138,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,3.0210,10.3945,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.8977,10.2784,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.6140,5.9036,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.8700,5.6327,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,3.0210,10.4135,0.0240,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.8977,10.3508,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.6140,5.9167,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.8700,5.6823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,3.0210,10.7445,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.8977,10.3827,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.6140,6.3767,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.8700,5.8419,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,3.0210,10.9988,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.8977,10.8390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.6140,6.3082,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.8700,5.7427,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,3.0210,11.0352,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.8977,10.6397,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.6140,6.1694,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.8700,5.6744,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,3.0210,11.0415,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.8977,11.0594,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.6140,9.2457,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.8700,8.5147,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,3.0210,10.5523,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.8977,10.3528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.6140,6.0653,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.8700,5.5818,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,3.0210,10.3187,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.8977,10.1408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.6140,6.0028,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.8700,5.5870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,3.0210,10.5304,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.8977,10.4637,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.6140,5.9108,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.8700,5.6298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,3.0210,10.3928,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.8977,10.2014,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.6140,5.9906,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.8700,5.6130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,3.0210,10.4548,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.8977,10.2723,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.6140,6.0317,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.8700,5.6519,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,3.0210,10.5563,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.8977,10.3385,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.6140,6.1675,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.8700,5.7607,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,3.0210,12.0220,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.8977,11.9334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.6140,15.8075,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.8700,15.4475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,3.0210,30.0413,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.8977,29.8749,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.6140,28.7753,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.8700,28.5660,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,3.0210,38.2488,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.8977,38.0729,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.6140,32.1068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.8700,31.2385,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,3.0210,36.5579,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.8977,36.2373,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.6140,27.1192,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.8700,26.6372,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,3.0210,34.9800,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.8977,34.7436,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.6140,30.9241,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.8700,30.5999,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,3.0210,40.4758,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.8977,40.2481,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.6140,33.0349,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.8700,32.6929,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,3.0210,40.6429,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.8977,40.4687,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.6140,31.8430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.8700,31.6203,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,3.0210,36.5887,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.8977,36.4869,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.6140,27.2925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.8700,27.1439,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,3.0210,36.2338,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.8977,36.1135,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.6140,31.9563,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.8700,31.7125,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,3.0210,40.7043,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.8977,40.5492,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.6140,30.9028,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.8700,30.6257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,3.0210,38.2079,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.8977,38.1245,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.6140,32.7702,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.8700,32.5916,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,3.0210,37.4876,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.8977,37.3845,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.6140,28.1259,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.8700,27.9469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,3.0210,36.2582,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.8977,36.1580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.6140,31.3040,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.8700,31.0245,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,3.0210,40.4399,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.8977,40.3110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.6140,33.4581,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.8700,33.0147,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,3.0210,40.3375,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.8977,40.1097,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.6140,31.9914,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.8700,31.8367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,3.0210,36.8648,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.8977,36.6972,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.6140,28.2778,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.8700,28.0555,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,3.0210,36.1818,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.8977,36.0095,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.6140,31.0416,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.8700,30.7864,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,3.0210,40.5168,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.8977,40.3541,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.6140,33.4703,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.8700,33.0325,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,3.0210,40.8244,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.8977,40.6810,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.6140,32.6113,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.8700,32.3807,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,3.0210,37.2688,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.8977,37.1275,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.6140,27.9887,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.8700,27.7608,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,3.0210,36.4896,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.8977,36.4140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.6140,31.6053,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.8700,31.3232,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,3.0210,38.5720,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.8977,38.4476,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.6140,29.6840,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.8700,29.4533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,3.0210,36.5837,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.8977,36.4793,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.6140,33.2195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.8700,33.0606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,3.0210,41.9976,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.8977,41.9036,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.6140,34.9868,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.8700,34.8538,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,3.0210,42.1407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.8977,42.0291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.6140,32.1313,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.8700,31.9392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,3.0210,38.8778,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.8977,38.8278,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.6140,32.9187,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.8700,32.8323,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,3.0210,39.5498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.8977,39.5907,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.6140,32.7257,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.8700,32.7442,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,3.0210,39.4015,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.8977,39.3979,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.6140,33.1836,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.8700,33.1132,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,3.0210,40.4603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.8977,40.4371,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.6140,33.7820,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.8700,33.7004,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,3.0210,40.6554,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.8977,40.5601,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.6140,32.7177,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.8700,32.5933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,3.0210,39.6046,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.8977,39.5515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.6140,33.1302,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.8700,32.9345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,3.0210,38.1318,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.8977,38.0579,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.6140,28.1421,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.8700,28.0660,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,3.0210,36.5250,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.8977,36.5025,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.6140,31.3434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.8700,31.2972,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,3.0210,40.0642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.8977,39.9759,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.6140,31.1991,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.8700,31.0155,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,3.0210,38.9468,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.8977,38.8600,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.6140,32.7503,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.8700,32.5186,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,3.0210,39.8653,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.8977,39.7526,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.6140,32.9986,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.8700,32.7807,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,3.0210,39.7969,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.8977,39.7037,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.6140,33.3612,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.8700,33.1951,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,3.0210,40.2096,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.8977,40.1335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.6140,32.9681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.8700,32.7620,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,3.0210,37.7313,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.8977,37.6153,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.6140,28.1047,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.8700,27.8212,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,3.0210,35.8079,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.8977,35.6397,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.6140,31.5192,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.8700,31.1713,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,3.0210,40.5878,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.8977,40.4991,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.6140,34.4516,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.8700,34.0078,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,3.0210,39.2440,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.8977,39.0763,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.6140,27.3294,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.8700,27.0317,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,3.0210,35.8498,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.8977,35.6508,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.6140,32.4734,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.8700,32.0231,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,3.0210,40.9985,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.8977,40.7697,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.6140,32.1146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +901,2.8700,31.5738,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,3.0210,38.9472,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +903,2.8977,38.7608,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +904,5.6140,32.7478,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +905,2.8700,32.3486,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,3.0210,42.0065,0.0439,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +907,2.8977,41.9659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +908,5.6140,34.6786,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +909,2.8700,33.8248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,3.0210,38.9185,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +911,2.8977,38.6247,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +912,5.6140,28.4543,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,2.8700,28.0083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,3.0210,36.5357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,2.8977,35.9999,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +916,5.6140,32.0595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,2.8700,31.2524,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,3.0210,47.8442,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,2.8977,47.1866,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,5.6140,35.0897,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,2.8700,34.2785,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,3.0210,42.1164,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,2.8977,41.5304,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,5.6140,30.9444,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,2.8700,30.3939,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,3.0210,35.3192,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,2.8977,34.3167,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,5.6140,28.0394,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,2.8700,27.0224,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,3.0210,35.9913,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,2.8977,35.6552,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,5.6140,32.9887,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,2.8700,32.3770,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,3.0210,40.8343,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,2.8977,40.5393,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,5.6140,31.2410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,2.8700,30.5864,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,3.0210,37.3640,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,2.8977,37.0393,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,5.6140,37.2277,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,2.8700,36.2980,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,3.0210,42.2048,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.8977,41.1159,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,5.6140,38.5772,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,2.8700,36.7978,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,3.0210,42.8260,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,2.8977,42.5512,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,5.6140,34.5484,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,2.8700,32.4573,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,3.0210,37.3339,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,2.8977,36.9414,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,5.6140,28.3344,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,2.8700,27.4525,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,3.0210,34.5812,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,2.8977,33.9638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,5.6140,30.9582,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.8700,30.1690,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,3.0210,42.4620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,2.8977,42.0161,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,5.6140,36.4019,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.8700,39.6939,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,3.0210,44.0577,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +963,2.8977,43.7686,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.6140,38.2991,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.8700,36.8506,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,3.0210,43.0180,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.8977,42.4740,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.6140,34.1054,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.8700,29.7089,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,3.0210,34.6957,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.8977,34.4205,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.6140,31.7087,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.8700,29.7395,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,3.0210,34.8325,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.8977,34.3629,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +976,5.6140,31.4490,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.8700,30.6085,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,3.0210,38.7494,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.8977,38.3628,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.6140,32.7229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.8700,31.7104,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,3.0210,39.3052,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.8977,38.9157,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.6140,33.3790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.8700,32.7788,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,3.0210,47.1575,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.8977,47.3474,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.6140,37.1532,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.8700,36.8663,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,3.0210,41.6975,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.8977,41.5001,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.6140,29.8533,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.8700,19.1898,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,3.0210,26.5442,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.8977,26.3487,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.6140,34.8101,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.8700,34.6420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,3.0210,42.2953,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.8977,42.1711,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.6140,32.0736,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.8700,32.1158,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,3.0210,39.7708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.8977,39.4297,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.6140,33.7233,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.8700,33.5273,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,3.0210,38.2860,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.8977,38.1333,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.6140,29.5701,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.8700,28.6618,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,3.0210,35.9327,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.8977,34.0169,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.6140,32.1402,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.8700,31.5252,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,3.0210,40.8612,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.8977,40.5290,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.6140,34.3452,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.8700,33.9587,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,3.0210,41.1867,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.8977,40.9071,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.6140,32.4165,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.8700,31.8689,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,3.0210,39.6718,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.8977,39.3564,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.6140,34.6945,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.8700,34.2548,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,3.0210,41.6350,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.8977,41.6078,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.6140,33.5147,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.8700,32.9925,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,3.0210,37.6175,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.8977,37.2288,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.6140,28.7673,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.8700,27.9228,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,3.0210,35.1443,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.8977,34.7503,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.6140,31.1152,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.8700,30.6967,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,3.0210,38.3703,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.8977,38.2339,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.6140,33.0360,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.8700,32.6827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,3.0210,39.7782,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.8977,39.6737,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.6140,33.3948,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.8700,33.1524,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,3.0210,40.5647,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.8977,40.4464,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.6140,33.9553,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.8700,33.7330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,3.0210,40.8841,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.8977,40.7637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.6140,33.6370,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.8700,33.3117,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,3.0210,42.0620,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.8977,42.3930,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.6140,36.3402,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.8700,35.8353,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,3.0210,45.9282,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.8977,45.7815,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.6140,33.1400,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.8700,32.4188,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,3.0210,37.2545,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.8977,36.9762,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.6140,29.4498,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.8700,27.3891,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,3.0210,35.6002,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.8977,35.2967,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.6140,32.8323,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.8700,32.3725,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,3.0210,39.6595,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.8977,39.4411,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.6140,30.8607,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.8700,30.4223,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,3.0210,38.7684,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.8977,38.5996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.6140,35.3955,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.8700,35.0403,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,3.0210,42.4967,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.8977,42.1829,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.6140,32.3120,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.8700,32.1257,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,3.0210,37.0765,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.8977,36.9768,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.6140,28.0882,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.8700,27.7437,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,3.0210,36.3410,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.8977,36.0472,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.6140,32.4574,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.8700,32.0772,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,3.0210,40.6623,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.8977,40.6332,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.6140,34.6730,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.8700,34.1039,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,3.0210,42.6448,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.8977,42.0409,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.6140,36.8940,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.8700,36.3931,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,3.0210,42.4529,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.8977,42.2407,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.6140,34.4567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.8700,33.2586,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,3.0210,37.9189,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.8977,37.4835,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.6140,30.0957,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.8700,26.7850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,3.0210,35.7279,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.8977,35.5098,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.6140,33.7769,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.8700,33.6878,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,3.0210,40.0615,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.8977,39.8944,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.6140,33.0592,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.8700,32.9409,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,3.0210,39.8061,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.8977,39.5400,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.6140,34.9580,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.8700,34.4179,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,3.0210,41.2397,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.8977,41.1882,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.6140,35.0204,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.8700,33.8573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,3.0210,38.2430,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.8977,37.9290,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.6140,29.0478,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.8700,28.1957,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,3.0210,35.6180,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.8977,35.3363,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.6140,32.0513,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.8700,30.9538,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,3.0210,39.5582,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.8977,39.2887,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.6140,34.9257,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.8700,34.3602,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,3.0210,41.5819,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.8977,41.2962,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.6140,34.8960,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.8700,34.4128,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,3.0210,42.5234,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.8977,42.4655,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.6140,36.1347,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.8700,35.4961,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,3.0210,45.6525,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.8977,45.4942,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.6140,35.4240,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.8700,34.9464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,3.0210,43.2628,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.8977,39.8420,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.6140,30.7676,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.8700,30.4093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,3.0210,36.5343,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.8977,36.4467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.6140,36.5651,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.8700,35.9464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,3.0210,41.4613,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.8977,41.3620,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.6140,35.2766,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.8700,34.6038,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,3.0210,38.9918,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.8977,38.6576,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.6140,30.7288,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.8700,27.6974,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,3.0210,34.5478,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.8977,34.2398,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.6140,31.5850,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.8700,31.0464,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,3.0210,45.0511,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.8977,44.2353,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.6140,36.4736,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.8700,35.8377,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,3.0210,42.7794,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.8977,42.2605,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.6140,33.6581,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.8700,32.2846,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,3.0210,37.4187,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.8977,36.7331,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.6140,29.9587,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.8700,28.9778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,3.0210,36.3920,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.8977,36.1196,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.6140,35.4168,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.8700,34.8881,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,3.0210,40.9690,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.8977,40.6188,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.6140,36.6972,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.8700,36.2967,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,3.0210,43.7491,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.8977,43.6127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.6140,32.5376,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.8700,31.8174,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,3.0210,36.4188,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.8977,36.2453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.6140,28.2273,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.8700,27.4348,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,3.0210,36.7125,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.8977,36.4918,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.6140,39.9689,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.8700,39.1752,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,3.0210,54.3260,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.8977,54.3132,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.txt b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.txt new file mode 100644 index 0000000..558e782 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.040 +effective_logical_fps=59.521 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=24.841 +p95_encode_latency_ms=44.951 +max_encode_latency_ms=106.421 +avg_steady_encode_latency_ms=23.708 +p95_steady_encode_latency_ms=43.664 +max_steady_encode_latency_ms=55.692 +avg_tile_encode_latency_ms=20.649 +p95_tile_encode_latency_ms=42.207 +avg_max_tile_encode_latency_ms=23.545 +p95_max_tile_encode_latency_ms=43.287 +avg_steady_max_tile_encode_latency_ms=22.657 +p95_steady_max_tile_encode_latency_ms=42.498 +payload_bytes=1963652 +send_target=none +csv=benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s_logical.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s_logical.csv new file mode 100644 index 0000000..9303e57 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/120mbps_unlimited_5s_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,106.4206,28.6509,337552 +1,4,0,11.2302,10.5784,152351 +2,4,0,20.5472,20.2686,149416 +3,4,0,30.2160,30.0015,142089 +4,4,0,40.3952,40.2345,112777 +5,4,0,50.6986,50.4520,114708 +6,4,0,60.4672,60.2506,64955 +7,4,0,70.5834,66.2227,37587 +8,4,0,71.2449,66.1417,26109 +9,4,0,63.0307,62.4095,23201 +10,4,0,57.6991,57.1757,18705 +11,4,0,51.8563,51.3321,14742 +12,4,0,41.5642,41.1157,11738 +13,4,0,35.9007,35.4708,9530 +14,4,0,29.1298,28.6722,6611 +15,4,0,23.0097,22.5869,3979 +16,4,0,16.2800,15.7974,2445 +17,4,0,11.6806,11.2127,2516 +18,4,0,11.1452,10.5591,2602 +19,4,0,10.9224,10.4083,2599 +20,4,0,10.9905,10.5031,2598 +21,4,0,10.9427,10.3900,2598 +22,4,0,10.9403,10.4311,2598 +23,4,0,11.1203,10.5583,2598 +24,4,0,11.1485,10.6186,2598 +25,4,0,10.9190,10.4173,2598 +26,4,0,11.0624,10.4474,2598 +27,4,0,11.0293,10.4292,2598 +28,4,0,10.8761,10.4024,2598 +29,4,0,10.9650,10.4406,2598 +30,4,0,11.1184,10.4540,2598 +31,4,0,10.9526,10.2877,2598 +32,4,0,10.8749,10.3544,2598 +33,4,0,10.8956,10.3799,2598 +34,4,0,11.0246,10.5215,2598 +35,4,0,11.0496,10.4471,2598 +36,4,0,10.9824,10.4615,2598 +37,4,0,10.8736,10.2926,2598 +38,4,0,10.9756,10.3990,2598 +39,4,0,11.3014,10.4845,2598 +40,4,0,11.1559,10.4093,2598 +41,4,0,11.0073,10.3306,2598 +42,4,0,10.8857,10.3433,2598 +43,4,0,10.7890,10.3891,2598 +44,4,0,10.8121,10.3605,2598 +45,4,0,10.9149,10.2923,2598 +46,4,0,10.8582,10.3298,2598 +47,4,0,10.8695,10.3825,2598 +48,4,0,10.8919,10.3848,2598 +49,4,0,10.7827,10.2995,2598 +50,4,0,10.7686,10.2430,2598 +51,4,0,10.7658,10.2836,2598 +52,4,0,10.9588,10.4820,2598 +53,4,0,10.9966,10.5489,2598 +54,4,0,10.7469,10.3672,2598 +55,4,0,10.9725,10.4771,2598 +56,4,0,10.8610,10.3511,2598 +57,4,0,10.8768,10.4232,2598 +58,4,0,10.9371,10.4485,2598 +59,4,0,10.7598,10.2873,2598 +60,4,0,10.8573,10.3833,2598 +61,4,0,10.9576,10.4664,2598 +62,4,0,10.9965,10.5455,2598 +63,4,0,10.9265,10.4748,2598 +64,4,0,10.9285,10.3852,2598 +65,4,0,11.1240,10.6822,2598 +66,4,0,10.7001,10.2605,2598 +67,4,0,10.8133,10.3931,2598 +68,4,0,10.7536,10.2976,2598 +69,4,0,10.8364,10.3524,2598 +70,4,0,11.3160,10.5726,2598 +71,4,0,11.1279,10.5487,2598 +72,4,0,11.0773,10.4813,2598 +73,4,0,10.9157,10.3809,2598 +74,4,0,10.8535,10.3860,2598 +75,4,0,10.7650,10.3139,2598 +76,4,0,10.6646,10.1465,2598 +77,4,0,10.8443,10.2824,2598 +78,4,0,10.8270,10.3044,2598 +79,4,0,10.9488,10.3550,2598 +80,4,0,10.8768,10.3854,2598 +81,4,0,11.0183,10.5317,2598 +82,4,0,11.0182,10.4943,2598 +83,4,0,11.2564,10.4703,2598 +84,4,0,13.7221,10.7000,2598 +85,4,0,14.1405,10.1575,2598 +86,4,0,11.7800,9.2965,2598 +87,4,0,12.0297,10.2220,2598 +88,4,0,14.2783,10.2239,2598 +89,4,0,12.1085,10.5955,2598 +90,4,0,12.3183,10.9236,2598 +91,4,0,11.9341,10.4170,2598 +92,4,0,13.9251,11.1009,2598 +93,4,0,12.2873,10.3764,2598 +94,4,0,12.6126,10.2127,2598 +95,4,0,11.9225,9.8890,2598 +96,4,0,19.1082,12.1260,2598 +97,4,0,13.6838,10.3292,2598 +98,4,0,12.2667,10.7722,2598 +99,4,0,11.8315,10.5200,2598 +100,4,0,11.7803,10.7767,2598 +101,4,0,11.8777,10.4611,2598 +102,4,0,13.5672,12.0631,2598 +103,4,0,12.0312,10.2160,2598 +104,4,0,15.7220,13.7874,2598 +105,4,0,17.7467,15.9272,2598 +106,4,0,11.6135,10.1092,2598 +107,4,0,11.0282,10.3991,2598 +108,4,0,10.9403,10.4217,2598 +109,4,0,10.9421,10.3901,2598 +110,4,0,11.0095,10.5049,2598 +111,4,0,10.9756,10.5152,2598 +112,4,0,11.0563,10.4776,2598 +113,4,0,11.0098,10.4728,2598 +114,4,0,10.9691,10.5122,2598 +115,4,0,10.8977,10.3712,2598 +116,4,0,11.0621,10.5713,2598 +117,4,0,10.9729,10.3945,2598 +118,4,0,11.2310,10.6118,2598 +119,4,0,11.6043,9.8801,2598 +120,4,0,11.5678,10.5365,2598 +121,4,0,11.5750,9.6957,2598 +122,4,0,11.5726,10.2836,2598 +123,4,0,11.8383,10.2230,2598 +124,4,0,11.7075,9.5337,2598 +125,4,0,12.6312,11.1369,2598 +126,4,0,11.7195,10.1750,2598 +127,4,0,11.8940,10.1436,2598 +128,4,0,12.4741,9.2446,2598 +129,4,0,11.8473,9.9910,2598 +130,4,0,11.6266,10.4397,2598 +131,4,0,11.6658,10.1685,2598 +132,4,0,11.5915,10.6055,2598 +133,4,0,12.1207,10.2874,2598 +134,4,0,11.6958,10.1993,2598 +135,4,0,11.9262,9.9436,2598 +136,4,0,11.6703,10.2060,2598 +137,4,0,11.4305,9.9025,2598 +138,4,0,11.6749,10.4998,2598 +139,4,0,11.6918,9.8370,2598 +140,4,0,11.3042,10.0070,2598 +141,4,0,11.6160,10.3742,2598 +142,4,0,12.4586,10.0029,2598 +143,4,0,11.9800,10.6623,2598 +144,4,0,11.5261,10.2471,2598 +145,4,0,13.2880,11.6776,2598 +146,4,0,12.2543,9.1915,2598 +147,4,0,11.2659,10.4071,2598 +148,4,0,11.1044,10.3861,2598 +149,4,0,10.9795,10.4065,2598 +150,4,0,11.5766,10.6570,2598 +151,4,0,13.1709,10.0648,2598 +152,4,0,12.3734,11.3971,2598 +153,4,0,12.0195,10.4352,2598 +154,4,0,11.8632,10.3290,2598 +155,4,0,11.3785,10.0774,2598 +156,4,0,12.3792,11.0306,2598 +157,4,0,12.0348,11.0454,2598 +158,4,0,12.0670,10.4161,2598 +159,4,0,11.4275,10.5451,2598 +160,4,0,11.2523,10.3717,2598 +161,4,0,11.7262,10.5624,2598 +162,4,0,11.3027,10.2452,2598 +163,4,0,11.0019,10.3533,2598 +164,4,0,10.8404,10.3422,2598 +165,4,0,10.7761,10.3455,2598 +166,4,0,10.8286,10.4023,2598 +167,4,0,10.8329,10.4190,2598 +168,4,0,11.1418,10.6242,2598 +169,4,0,11.2135,10.3945,2598 +170,4,0,11.1406,10.4135,2598 +171,4,0,11.3400,10.7445,2598 +172,4,0,11.9501,10.9988,2598 +173,4,0,12.4492,11.0352,2598 +174,4,0,12.2471,11.0594,2598 +175,4,0,12.4128,10.5523,2598 +176,4,0,11.2018,10.3187,2598 +177,4,0,11.3026,10.5304,2598 +178,4,0,11.0700,10.3928,2598 +179,4,0,11.1741,10.4548,2598 +180,4,0,11.2657,10.5563,2598 +181,4,0,12.8052,12.0220,2598 +182,4,0,30.7204,30.0413,2598 +183,4,0,38.6843,38.2488,2598 +184,4,0,37.1334,36.5579,2598 +185,4,0,35.6328,34.9800,2598 +186,4,0,41.0222,40.4758,2598 +187,4,0,41.0431,40.6429,2598 +188,4,0,37.0175,36.5887,2598 +189,4,0,36.5907,36.2338,2598 +190,4,0,41.1275,40.7043,2598 +191,4,0,38.6838,38.2079,2598 +192,4,0,37.9101,37.4876,2598 +193,4,0,36.6021,36.2582,2598 +194,4,0,40.9956,40.4399,2598 +195,4,0,41.0496,40.3375,2598 +196,4,0,37.2561,36.8648,2598 +197,4,0,36.6193,36.1818,2598 +198,4,0,41.0385,40.5168,2598 +199,4,0,41.4816,40.8244,2598 +200,4,0,37.6976,37.2688,2598 +201,4,0,36.8838,36.4896,2598 +202,4,0,39.0352,38.5720,2598 +203,4,0,36.9930,36.5837,2598 +204,4,0,42.3506,41.9976,2598 +205,4,0,42.4635,42.1407,2598 +206,4,0,39.2718,38.8778,2598 +207,4,0,39.9916,39.5907,2598 +208,4,0,39.7713,39.4015,2598 +209,4,0,40.7988,40.4603,2598 +210,4,0,40.9555,40.6554,2598 +211,4,0,39.8971,39.6046,2598 +212,4,0,38.5032,38.1318,2598 +213,4,0,36.9209,36.5250,2598 +214,4,0,40.3359,40.0642,2598 +215,4,0,39.2992,38.9468,2598 +216,4,0,40.2613,39.8653,2598 +217,4,0,40.2025,39.7969,2598 +218,4,0,40.5739,40.2096,2598 +219,4,0,38.1691,37.7313,2598 +220,4,0,36.2887,35.8079,2598 +221,4,0,41.1827,40.5878,2598 +222,4,0,39.7899,39.2440,2598 +223,4,0,36.4835,35.8498,2598 +224,4,0,41.8467,40.9985,2598 +225,4,0,39.5148,38.9472,2598 +226,4,0,42.8688,42.0065,2598 +227,4,0,40.0955,38.9185,2598 +228,4,0,37.5410,36.5357,2598 +229,4,0,48.8605,47.8442,2598 +230,4,0,43.3715,42.1164,2598 +231,4,0,36.0551,35.3192,2598 +232,4,0,37.2236,35.9913,2598 +233,4,0,41.6407,40.8343,2598 +234,4,0,38.1438,37.3640,2598 +235,4,0,43.2958,42.2048,2598 +236,4,0,44.9381,42.8260,2598 +237,4,0,39.5515,37.3339,2598 +238,4,0,35.9445,34.5812,2598 +239,4,0,43.6451,42.4620,2598 +240,4,0,44.8039,44.0577,2598 +241,4,0,45.1987,43.0180,2598 +242,4,0,39.1021,34.6957,2598 +243,4,0,37.0718,34.8325,2598 +244,4,0,39.5662,38.7494,2598 +245,4,0,40.2554,39.3052,2598 +246,4,0,48.2662,47.3474,2598 +247,4,0,42.2100,41.6975,2598 +248,4,0,38.3036,29.8533,2598 +249,4,0,42.6713,42.2953,2598 +250,4,0,40.3653,39.7708,2598 +251,4,0,38.9077,38.2860,2598 +252,4,0,37.9248,35.9327,2598 +253,4,0,41.8752,40.8612,2598 +254,4,0,41.8864,41.1867,2598 +255,4,0,40.5550,39.6718,2598 +256,4,0,42.5041,41.6350,2598 +257,4,0,38.6577,37.6175,2598 +258,4,0,36.6943,35.1443,2598 +259,4,0,39.1176,38.3703,2598 +260,4,0,40.3657,39.7782,2598 +261,4,0,41.0192,40.5647,2598 +262,4,0,41.2902,40.8841,2598 +263,4,0,43.1102,42.3930,2598 +264,4,0,46.4463,45.9282,2598 +265,4,0,38.3723,37.2545,2598 +266,4,0,38.2460,35.6002,2598 +267,4,0,40.4181,39.6595,2598 +268,4,0,39.4938,38.7684,2598 +269,4,0,43.1244,42.4967,2598 +270,4,0,37.5330,37.0765,2598 +271,4,0,36.9962,36.3410,2598 +272,4,0,41.5696,40.6623,2598 +273,4,0,44.0292,42.6448,2598 +274,4,0,43.2200,42.4529,2598 +275,4,0,39.7373,37.9189,2598 +276,4,0,39.3173,35.7279,2598 +277,4,0,40.6453,40.0615,2598 +278,4,0,40.9890,39.8061,2598 +279,4,0,42.6374,41.2397,2598 +280,4,0,40.1052,38.2430,2598 +281,4,0,36.8269,35.6180,2598 +282,4,0,41.0208,39.5582,2598 +283,4,0,42.7458,41.5819,2598 +284,4,0,44.1565,42.5234,2598 +285,4,0,47.0137,45.6525,2598 +286,4,0,44.3666,43.2628,2598 +287,4,0,37.4891,36.5343,2598 +288,4,0,42.7587,41.4613,2598 +289,4,0,40.1282,38.9918,2598 +290,4,0,38.7145,34.5478,2598 +291,4,0,46.1293,45.0511,2598 +292,4,0,44.0361,42.7794,2598 +293,4,0,39.2204,37.4187,2598 +294,4,0,38.1564,36.3920,2598 +295,4,0,42.2544,40.9690,2598 +296,4,0,44.7737,43.7491,2598 +297,4,0,37.7647,36.4188,2598 +298,4,0,37.8170,36.7125,2598 +299,4,0,55.6916,54.3260,2598 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.csv new file mode 100644 index 0000000..1425ed2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9718,28.1478,0.0320,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8039,24.8816,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8191,24.8820,0.0039,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7923,25.1648,0.0109,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9718,5.8850,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8039,5.7005,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8191,10.5466,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7923,10.5446,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9718,5.8126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8039,5.6705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8191,10.4357,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7923,10.3937,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9718,5.7135,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8039,5.5713,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8191,10.4991,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7923,10.4563,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9718,5.6254,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8039,5.4552,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8191,10.3110,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7923,10.2860,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9718,5.6559,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8039,5.5071,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8191,10.2737,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7923,10.2523,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9718,5.6068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8039,5.4491,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8191,10.3421,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7923,10.3458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9718,5.6242,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8039,5.5150,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8191,10.3206,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7923,10.2904,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9718,5.5580,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8039,5.4588,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8191,10.3289,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7923,10.2931,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9718,5.6454,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8039,5.4715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8191,10.5045,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7923,10.3942,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9718,6.0080,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8039,5.6384,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8191,10.6270,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7923,10.5509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9718,6.0720,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8039,5.7639,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8191,10.6348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7923,10.5315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9718,5.9940,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8039,5.6284,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8191,10.6342,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7923,10.4791,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9718,6.1704,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8039,5.7680,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8191,10.6615,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7923,10.5531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9718,6.1395,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8039,5.7615,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8191,11.0130,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7923,10.9420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9718,6.1312,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8039,5.7918,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8191,10.6274,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7923,10.4733,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9718,5.9593,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8039,5.7290,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8191,11.1653,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7923,10.8237,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9718,6.1647,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8039,5.7716,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8191,10.2073,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7923,10.2176,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9718,6.3547,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8039,5.7105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8191,10.4501,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7923,10.2970,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9718,6.1931,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8039,5.7307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8191,10.0405,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7923,10.1926,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9718,6.4290,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8039,5.7444,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8191,10.6134,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7923,10.3552,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9718,5.9401,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8039,5.6285,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8191,10.3165,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7923,10.2164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9718,6.3845,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8039,5.7141,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8191,10.7152,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7923,10.5713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9718,5.7273,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8039,5.4766,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8191,10.3216,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7923,10.2250,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9718,5.8386,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8039,5.5920,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8191,10.3651,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7923,10.3443,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9718,5.8461,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8039,5.5678,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8191,10.5005,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7923,10.4063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9718,5.8354,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8039,5.5680,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8191,10.5303,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7923,10.4500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9718,5.8576,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8039,5.5871,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8191,10.4674,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7923,10.4166,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9718,5.7919,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8039,5.5387,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8191,10.4302,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7923,10.3915,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9718,6.0084,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8039,5.6499,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8191,10.3890,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7923,9.9490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9718,5.7999,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8039,5.5422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8191,10.4988,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7923,10.4633,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9718,5.8465,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8039,5.6061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8191,10.3831,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7923,10.3057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9718,5.8955,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8039,5.5945,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8191,10.5316,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7923,10.4537,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9718,5.7770,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8039,5.4994,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8191,10.4334,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7923,10.3274,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9718,5.9434,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8039,5.6606,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8191,10.5322,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7923,10.4565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9718,5.8616,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8039,5.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8191,10.5650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7923,10.4097,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9718,5.9058,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8039,5.6380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8191,10.3474,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7923,10.3012,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9718,5.8562,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8039,5.6264,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8191,10.4859,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7923,10.4641,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9718,5.8547,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8039,5.6294,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8191,10.4433,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7923,10.3526,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9718,5.7133,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8039,5.5116,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8191,10.3403,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7923,10.2689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9718,5.7821,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8039,5.5406,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8191,10.4475,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7923,10.4502,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9718,5.8592,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8039,5.6787,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8191,10.3864,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7923,10.3636,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9718,5.7115,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8039,5.4583,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8191,10.3665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7923,10.3695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9718,5.7726,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8039,5.5882,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8191,10.5164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7923,10.4613,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9718,5.7883,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8039,5.5602,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8191,10.4619,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7923,10.4420,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9718,5.9024,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8039,5.6060,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8191,10.6065,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7923,10.5136,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9718,5.9650,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8039,5.5896,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8191,10.5225,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7923,10.5446,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9718,6.0438,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8039,5.6619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8191,10.5047,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7923,10.4847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9718,5.8280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8039,5.5385,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8191,10.3913,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7923,10.4015,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9718,5.7428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8039,5.5507,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8191,10.4907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7923,10.4970,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9718,5.7390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8039,5.5151,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8191,10.3728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7923,10.3425,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9718,5.7393,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8039,5.4935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8191,10.3565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7923,10.3127,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9718,5.7603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8039,5.5392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8191,10.3652,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7923,10.3581,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9718,5.8519,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8039,5.5563,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8191,10.3722,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7923,10.3304,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9718,5.9168,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8039,5.5191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8191,10.3405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7923,10.2907,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9718,6.1126,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8039,5.7200,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8191,10.3490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7923,10.3614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9718,5.9161,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8039,5.5338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8191,10.2582,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7923,10.1689,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9718,6.0557,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8039,5.6404,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8191,10.4541,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7923,10.3811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9718,5.9945,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8039,5.6165,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8191,10.3542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7923,10.2558,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9718,5.9726,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8039,5.5838,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8191,10.3895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7923,10.2926,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9718,6.0359,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8039,5.6873,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8191,10.4489,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.7923,10.3997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,4.9718,5.9328,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8039,5.5990,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8191,10.3914,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.7923,10.2565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,4.9718,6.1189,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8039,5.7355,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8191,10.6868,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.7923,10.5038,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,4.9718,6.3432,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8039,5.7535,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8191,10.5282,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.7923,10.3794,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,4.9718,5.9400,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8039,5.5503,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8191,10.2500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.7923,10.0207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,4.9718,5.8734,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8039,5.5943,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8191,10.2171,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.7923,10.0055,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,4.9718,6.2063,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8039,5.8374,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8191,10.3493,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.7923,10.2554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,4.9718,6.0325,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8039,5.6132,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8191,10.4716,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.7923,10.4203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,4.9718,5.9853,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8039,5.5780,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8191,10.5938,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.7923,10.5437,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,4.9718,6.4685,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8039,6.0313,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8191,10.4255,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.7923,10.3692,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,4.9718,6.0929,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8039,5.7364,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8191,10.4715,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.7923,10.3452,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,4.9718,6.0812,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8039,5.6604,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8191,10.4610,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.7923,10.3208,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,4.9718,6.1077,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8039,5.6670,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8191,13.6853,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.7923,13.4753,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,4.9718,6.1680,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8039,5.7156,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8191,10.4800,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.7923,10.3800,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,4.9718,6.3244,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8039,5.7951,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8191,10.3658,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.7923,10.3305,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,4.9718,6.7852,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8039,5.7773,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8191,10.6200,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.7923,10.5206,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,4.9718,6.5841,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8039,5.7962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8191,10.4465,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.7923,10.2515,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,4.9718,6.5955,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8039,7.1046,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8191,11.7192,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7923,11.4662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,4.9718,6.1977,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8039,5.8436,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8191,13.8562,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.7923,13.8032,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,4.9718,6.6439,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8039,5.8675,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8191,11.3194,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.7923,11.2724,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,4.9718,6.7233,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8039,5.9262,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8191,14.2445,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.7923,13.9910,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,4.9718,6.5786,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8039,5.8751,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8191,8.2673,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.7923,9.9430,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,4.9718,6.1294,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8039,5.7186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8191,10.5140,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.7923,10.4528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,4.9718,6.2029,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8039,5.6894,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8191,10.4371,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.7923,10.2626,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,4.9718,6.0331,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8039,5.6193,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8191,10.4319,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.7923,10.3280,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,4.9718,6.2133,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8039,5.7016,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8191,10.4614,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.7923,10.3720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,4.9718,6.2239,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8039,5.7120,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8191,10.3506,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.7923,10.2978,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,4.9718,6.1064,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8039,5.6750,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8191,10.4403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.7923,10.4518,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,4.9718,6.0959,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8039,5.6795,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8191,10.3303,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.7923,10.2765,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,4.9718,6.0140,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8039,5.6001,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8191,10.3142,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.7923,10.2155,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,4.9718,6.7930,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8039,5.8863,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8191,11.2621,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.7923,11.0461,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,4.9718,6.6829,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8039,5.7952,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8191,11.4978,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.7923,11.2302,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,4.9718,6.6475,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8039,5.8775,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8191,10.3951,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.7923,10.1609,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,4.9718,6.4965,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8039,5.7547,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8191,11.8071,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.7923,11.4563,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,4.9718,6.7842,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8039,5.7213,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8191,11.4913,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.7923,11.2773,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,4.9718,6.5745,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8039,5.7073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8191,10.4664,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.7923,10.2858,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,4.9718,6.5885,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8039,5.8191,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8191,10.3416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.7923,10.0980,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,4.9718,6.3334,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8039,5.7165,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8191,10.6525,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.7923,10.5815,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,4.9718,6.1679,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8039,5.6440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8191,10.1265,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.7923,9.8184,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,4.9718,6.2670,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8039,5.7890,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8191,10.6177,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7923,10.4136,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,4.9718,6.2850,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8039,5.7244,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8191,10.4455,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.7923,10.3472,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,4.9718,7.2659,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8039,6.6354,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8191,10.4102,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.7923,10.4253,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,4.9718,6.3970,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8039,5.8947,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8191,11.2067,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.7923,11.0058,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,4.9718,6.2562,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8039,5.8290,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8191,10.4307,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.7923,10.2756,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,4.9718,6.2880,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8039,5.8474,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8191,11.9027,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.7923,11.8306,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,4.9718,5.9109,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8039,5.6381,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8191,10.4698,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.7923,10.3443,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,4.9718,5.8689,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8039,5.6427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8191,10.1261,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.7923,10.1139,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,4.9718,5.8425,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8039,5.6137,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8191,10.2460,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.7923,10.0762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,4.9718,5.9190,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8039,5.6093,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8191,10.3705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.7923,10.3282,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,4.9718,5.8235,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8039,5.6321,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8191,10.3737,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7923,10.3218,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,4.9718,5.8109,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8039,5.6242,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8191,10.3858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7923,10.3840,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,4.9718,5.8255,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8039,5.5962,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8191,10.3256,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7923,10.3640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,4.9718,6.0080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8039,5.6726,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8191,10.3276,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.7923,10.2561,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,4.9718,5.7650,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8039,5.5695,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8191,10.3761,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.7923,10.3529,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,4.9718,5.7114,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8039,5.5681,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8191,10.3211,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.7923,10.3129,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,4.9718,5.6351,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8039,5.5334,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8191,10.4649,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.7923,10.4698,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,4.9718,5.6084,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8039,5.5300,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8191,10.3228,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.7923,10.3249,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,4.9718,5.7835,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8039,5.5574,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8191,10.4586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.7923,10.4617,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,4.9718,5.7609,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8039,5.5263,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8191,10.3613,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.7923,10.3569,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,4.9718,5.8773,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8039,5.5705,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8191,10.4082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.7923,10.3702,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,4.9718,5.8312,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8039,5.6303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8191,10.5437,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.7923,10.5438,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,4.9718,5.8089,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8039,5.5382,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8191,10.3692,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.7923,10.3841,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,4.9718,5.7980,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8039,5.5159,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8191,10.4018,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.7923,10.3185,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,4.9718,5.9454,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8039,5.7243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8191,10.4381,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.7923,10.2263,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,4.9718,5.9032,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8039,5.5981,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8191,10.5316,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.7923,10.4638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,4.9718,5.7885,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8039,5.5941,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8191,10.5246,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.7923,10.4259,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,4.9718,5.7293,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8039,5.5399,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8191,10.3950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.7923,10.3518,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,4.9718,5.6475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8039,5.5257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8191,10.3958,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.7923,10.3771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,4.9718,6.0870,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8039,5.7467,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8191,10.7518,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.7923,10.5428,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,4.9718,13.2480,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8039,12.7878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8191,13.2459,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.7923,12.9905,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,4.9718,6.1802,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8039,5.6273,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8191,10.4331,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.7923,10.3845,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,4.9718,6.3637,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8039,5.7252,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8191,10.4421,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.7923,10.3324,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,4.9718,6.3630,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8039,5.7503,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8191,10.6525,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.7923,10.6967,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,4.9718,6.1105,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8039,5.9017,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8191,9.6880,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.7923,9.1294,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,4.9718,6.2893,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8039,5.7186,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8191,10.6572,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.7923,11.1280,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,4.9718,6.3545,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8039,5.7362,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8191,10.6853,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.7923,10.4356,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,4.9718,6.1854,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8039,5.6718,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8191,10.4113,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.7923,10.2122,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,4.9718,7.2921,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8039,7.8247,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8191,10.1151,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.7923,10.1049,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,4.9718,6.1074,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8039,5.6706,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8191,10.1759,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.7923,9.7882,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,4.9718,6.6125,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8039,5.8512,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8191,11.1864,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.7923,10.3903,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,4.9718,6.2585,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8039,5.6050,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8191,10.3526,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.7923,10.2733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9718,6.4164,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8039,5.7177,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8191,10.3094,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.7923,10.0993,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,4.9718,6.5780,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8039,5.9280,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8191,10.4103,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7923,10.3401,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,4.9718,6.3766,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8039,5.8037,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8191,10.3773,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7923,10.2774,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,4.9718,6.2418,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8039,5.5967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8191,10.3072,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.7923,10.2611,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,4.9718,6.5157,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8039,5.8735,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8191,9.9520,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.7923,9.8883,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,4.9718,6.3252,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8039,5.9393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8191,10.6205,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.7923,10.6059,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,4.9718,6.8310,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8039,5.9158,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8191,10.4745,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.7923,10.2965,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,4.9718,6.8083,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8039,5.8141,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8191,10.1436,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.7923,10.2837,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,4.9718,6.9262,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8039,5.9181,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8191,10.5715,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.7923,10.3104,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,4.9718,6.9804,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,2.8039,5.8018,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8191,12.3150,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.7923,11.9597,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,4.9718,6.4549,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8039,5.8869,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8191,13.4858,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.7923,13.5135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,4.9718,6.8000,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8039,5.9356,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8191,13.9171,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.7923,13.6979,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,4.9718,6.7314,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8039,5.7882,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8191,10.6067,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.7923,12.3359,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,4.9718,6.6303,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8039,5.7344,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8191,12.2618,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.7923,12.0478,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,4.9718,6.5123,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8039,5.8730,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8191,10.6846,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7923,10.4228,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,4.9718,6.6739,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8039,5.6100,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8191,11.9746,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.7923,11.6597,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,4.9718,6.8213,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8039,5.8953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8191,12.6467,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.7923,12.4027,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,4.9718,6.6389,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8039,5.7945,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8191,9.6287,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.7923,8.8223,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,4.9718,7.2083,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8039,5.8008,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8191,10.6562,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.7923,10.4407,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,4.9718,6.8965,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8039,5.9049,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8191,11.4882,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.7923,11.0661,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,4.9718,6.9843,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8039,5.9783,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8191,11.5920,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.7923,12.4292,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,4.9718,6.9985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8039,5.8635,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8191,12.4590,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.7923,12.1980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,4.9718,6.8545,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8039,5.9560,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8191,13.1619,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.7923,12.9210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,4.9718,6.5964,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8039,5.7252,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8191,12.2505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.7923,11.7024,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,4.9718,6.6244,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8039,5.8241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8191,10.4041,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7923,10.0112,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,4.9718,6.4986,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8039,5.8232,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8191,7.8894,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7923,7.9851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,4.9718,6.2872,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8039,5.9302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8191,11.8894,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7923,11.7988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,4.9718,7.0465,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8039,5.7795,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8191,10.0418,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.7923,10.3398,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,4.9718,6.8733,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8039,5.6993,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8191,11.2290,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.7923,10.8767,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,4.9718,6.7955,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8039,6.1027,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8191,12.2700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.7923,11.9150,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,4.9718,6.9215,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8039,6.0630,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8191,10.4266,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.7923,9.7954,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,4.9718,6.8351,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8039,6.2258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8191,10.9766,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.7923,10.8683,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,4.9718,6.9961,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8039,6.0958,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8191,9.9555,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.7923,10.0058,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,4.9718,6.8602,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8039,6.1154,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8191,9.8990,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.7923,9.9805,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,4.9718,7.2068,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8039,6.0901,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8191,9.3308,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.7923,10.3915,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,4.9718,6.7751,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8039,5.8307,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8191,10.2011,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.7923,10.0421,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,4.9718,6.9065,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8039,6.1865,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8191,10.3913,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.7923,10.2535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,4.9718,6.9547,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8039,6.0225,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8191,10.1735,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.7923,10.1034,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,4.9718,7.3221,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8039,5.7842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8191,9.4390,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.7923,9.3575,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,4.9718,6.7867,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.8039,6.0403,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8191,10.9095,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +723,2.7923,10.8372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +724,4.9718,8.8359,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8039,6.1842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8191,10.4369,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +727,2.7923,11.9973,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +728,4.9718,16.6212,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8039,15.7948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8191,29.4008,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +731,2.7923,29.8179,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,4.9718,16.0302,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8039,15.6167,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8191,30.0457,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +735,2.7923,29.9917,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,4.9718,16.4876,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8039,15.6651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8191,29.8004,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +739,2.7923,29.7353,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +740,4.9718,16.0270,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8039,15.7075,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8191,30.1942,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.7923,29.9615,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,4.9718,16.3668,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8039,15.6931,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8191,30.1997,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.7923,29.9075,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +748,4.9718,16.3645,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8039,15.7535,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8191,30.3225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.7923,30.2392,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +752,4.9718,16.4233,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8039,15.9580,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8191,30.4052,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.7923,30.4081,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,4.9718,16.5617,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8039,15.7635,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8191,31.1693,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +759,2.7923,31.1529,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,4.9718,16.7542,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8039,15.7733,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8191,30.4626,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +763,2.7923,30.3921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,4.9718,16.9101,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8039,16.1975,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8191,31.9642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +767,2.7923,30.0452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +768,4.9718,16.9513,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8039,16.2677,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8191,32.9051,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +771,2.7923,32.6415,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,4.9718,16.4148,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8039,15.9229,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8191,29.0467,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +775,2.7923,29.6399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +776,4.9718,16.1429,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8039,15.6618,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8191,33.3334,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +779,2.7923,33.1177,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +780,4.9718,16.5108,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8039,15.7906,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8191,28.5808,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +783,2.7923,29.9581,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,4.9718,16.0745,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8039,15.5753,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8191,30.2240,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.7923,30.0283,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,4.9718,16.8487,0.0460,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8039,16.0379,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8191,30.7810,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.7923,30.7500,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,4.9718,16.7380,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8039,15.9624,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8191,30.3677,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.7923,32.5851,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,4.9718,16.8032,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8039,15.7950,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8191,30.6652,0.1104,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.7923,30.4103,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +800,4.9718,16.4213,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8039,15.7045,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8191,30.2333,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.7923,29.9631,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,4.9718,16.4816,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8039,16.0005,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8191,30.2945,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.7923,29.9936,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +808,4.9718,16.3737,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8039,15.7622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8191,30.0178,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7923,29.7956,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,4.9718,16.4349,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8039,15.7775,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8191,30.9439,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +815,2.7923,30.9384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,4.9718,16.3525,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8039,15.8282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8191,26.8803,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.7923,30.1217,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,4.9718,16.7436,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8039,15.8862,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8191,30.2029,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.7923,29.8798,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,4.9718,16.6540,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8039,16.1335,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8191,30.1763,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.7923,30.0234,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +828,4.9718,16.5915,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8039,15.9399,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8191,30.2119,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.7923,30.2027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +832,4.9718,16.2410,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8039,15.5882,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8191,29.5587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.7923,29.8437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +836,4.9718,16.1046,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8039,15.7375,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8191,30.1715,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.7923,29.9545,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +840,4.9718,16.7028,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8039,15.9084,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8191,30.1120,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.7923,29.7398,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,4.9718,16.4195,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8039,15.7435,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8191,30.5180,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.7923,30.1100,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +848,4.9718,16.5421,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8039,15.9812,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8191,30.4480,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +851,2.7923,30.3397,0.0270,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +852,4.9718,16.5213,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8039,16.4199,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8191,25.6261,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.7923,29.9305,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +856,4.9718,15.6841,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8039,15.4376,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8191,30.0915,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.7923,30.1282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +860,4.9718,15.8783,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8039,16.1270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8191,29.0341,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.7923,29.5620,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9718,15.9767,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8039,15.5390,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8191,30.1799,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.7923,30.1456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,4.9718,16.3860,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8039,15.9486,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8191,30.1235,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.7923,30.0560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,4.9718,16.3785,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8039,15.8222,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8191,33.6880,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.7923,33.4452,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,4.9718,16.5206,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8039,15.6718,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8191,30.2560,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.7923,30.0185,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,4.9718,16.0493,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8039,15.6195,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8191,30.1390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.7923,30.0204,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +884,4.9718,15.9659,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8039,15.6142,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8191,30.3234,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.7923,30.1662,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +888,4.9718,15.8780,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8039,15.5545,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8191,30.3368,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.7923,30.1124,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9718,16.3551,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8039,15.9051,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8191,31.9084,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.7923,31.8430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +896,4.9718,16.6758,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8039,15.7206,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8191,30.1050,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.7923,29.8183,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,4.9718,16.4890,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8039,15.6315,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8191,30.1275,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +903,2.7923,29.8760,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +904,4.9718,16.4500,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8039,15.8711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8191,30.2417,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.7923,29.9869,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +908,4.9718,16.6902,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8039,16.0197,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8191,30.5098,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.7923,30.4404,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +912,4.9718,18.7970,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8039,17.9143,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8191,29.7571,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.7923,29.6123,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9718,16.5482,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8039,16.7144,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8191,27.8135,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.7923,32.0866,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +920,4.9718,18.0336,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8039,17.1898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8191,30.4316,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.7923,30.3400,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9718,16.7253,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8039,16.0810,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8191,32.3158,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.7923,32.1604,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +928,4.9718,18.3046,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8039,17.6034,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8191,30.8052,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.7923,30.5852,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +932,4.9718,16.6939,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8039,15.9748,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8191,30.2808,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.7923,29.9548,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,4.9718,16.7022,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8039,15.8710,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8191,30.5128,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7923,30.2469,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +940,4.9718,16.6150,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8039,15.9071,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8191,32.5461,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7923,32.5410,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9718,16.5618,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8039,15.8423,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8191,30.1642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7923,29.9210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +948,4.9718,16.0327,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8039,15.6113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8191,30.3000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7923,30.1954,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,4.9718,15.8351,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8039,15.5076,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8191,30.2218,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.7923,30.1515,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,4.9718,15.8635,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8039,15.5643,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8191,30.1879,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.7923,30.0523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +960,4.9718,15.9637,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.8039,15.6475,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8191,30.3518,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.7923,30.2455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,4.9718,15.9557,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.8039,15.6569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8191,30.1766,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +967,2.7923,29.9345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +968,4.9718,15.7762,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.8039,15.4849,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8191,30.1655,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.7923,30.0452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +972,4.9718,15.8370,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.8039,15.4964,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8191,30.3006,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +975,2.7923,30.3099,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +976,4.9718,16.5590,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.8039,16.0125,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8191,30.6401,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +979,2.7923,30.3835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +980,4.9718,15.9364,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.8039,15.5271,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8191,30.2245,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.7923,30.1345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,4.9718,15.8322,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.8039,15.5813,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8191,30.4579,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.7923,30.2552,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +988,4.9718,16.3765,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.8039,15.6959,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8191,30.2173,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.7923,24.9400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,4.9718,16.0787,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.8039,15.6633,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8191,30.3442,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.7923,30.1797,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,4.9718,16.0526,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8039,15.6163,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8191,30.1950,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.7923,30.0495,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,4.9718,16.6202,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8039,16.1199,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8191,30.2573,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.7923,30.0294,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1004,4.9718,16.1958,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8039,15.6828,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8191,30.1730,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1007,2.7923,30.0359,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1008,4.9718,16.0205,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8039,15.5990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8191,30.2471,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1011,2.7923,30.0875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,4.9718,15.9548,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8039,15.5953,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8191,30.1136,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1015,2.7923,29.9479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1016,4.9718,15.8413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8039,15.5281,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8191,30.2261,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1019,2.7923,30.0897,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,4.9718,15.8755,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8039,15.6229,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8191,31.6259,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1023,2.7923,31.4406,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,4.9718,16.2447,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8039,15.7136,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8191,29.5072,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.7923,29.3784,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,4.9718,15.8262,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8039,15.5259,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8191,30.0601,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7923,29.9138,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1032,4.9718,15.8319,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8039,15.5427,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8191,30.4788,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.7923,30.2911,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1036,4.9718,16.1531,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8039,16.6401,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8191,28.4108,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.7923,29.7855,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,4.9718,15.7951,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8039,15.5320,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8191,30.0766,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.7923,29.9822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1044,4.9718,15.8898,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8039,15.6352,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8191,30.3205,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.7923,30.1406,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,4.9718,16.0625,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8039,15.6505,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8191,30.1165,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.7923,29.9625,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,4.9718,15.9215,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8039,15.6547,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8191,30.3373,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.7923,30.3130,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,4.9718,15.7130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8039,15.5418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8191,29.8385,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.7923,29.8233,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,4.9718,15.5926,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8039,15.4379,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8191,30.0192,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.7923,29.9308,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,4.9718,15.8702,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8039,15.5668,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8191,30.3620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1067,2.7923,30.2470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,4.9718,16.1210,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8039,15.8170,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8191,30.3034,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.7923,30.3042,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,4.9718,16.2402,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8039,15.6486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8191,29.9525,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.7923,29.8634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,4.9718,16.2181,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8039,15.7017,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8191,30.2378,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.7923,30.0528,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,4.9718,15.9275,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8039,15.5879,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8191,30.0056,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.7923,29.9202,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,4.9718,16.0126,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8039,15.6823,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8191,30.3700,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.7923,30.3285,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,4.9718,15.9992,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8039,15.5390,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8191,30.1823,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.7923,30.0230,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,4.9718,17.4502,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8039,17.2418,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8191,30.2920,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.7923,30.0709,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,4.9718,16.2290,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8039,15.7671,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8191,30.2903,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.7923,30.0938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1100,4.9718,16.0326,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8039,15.5908,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8191,31.9728,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.7923,31.7207,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,4.9718,16.6450,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8039,15.8584,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8191,30.3945,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.7923,30.1497,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,4.9718,16.6503,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8039,16.3013,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8191,29.6403,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.7923,29.3099,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,4.9718,16.6488,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8039,17.4282,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8191,29.2175,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.7923,30.0324,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,4.9718,16.2562,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8039,16.2943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8191,30.1123,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.7923,29.9768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,4.9718,16.0263,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8039,15.5612,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8191,30.0520,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.7923,29.8606,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,4.9718,16.0316,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8039,15.9256,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8191,30.1867,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.7923,30.1951,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,4.9718,16.4030,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8039,16.2142,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8191,29.8060,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.7923,29.7380,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1132,4.9718,16.4439,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8039,15.6839,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8191,30.4915,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.7923,30.2368,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,4.9718,17.0662,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8039,16.1933,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8191,30.2251,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.7923,29.8191,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,4.9718,16.8806,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8039,15.8993,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8191,30.0856,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.7923,29.7537,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,4.9718,16.7342,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8039,15.7962,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8191,30.5121,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.7923,30.2577,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,4.9718,18.4682,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8039,17.6745,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8191,34.5599,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.7923,34.5217,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,4.9718,16.5380,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8039,15.6528,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8191,30.3166,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.7923,30.0394,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,4.9718,16.7582,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8039,15.9334,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8191,33.4295,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.7923,33.1167,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,4.9718,16.7578,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8039,15.8679,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8191,30.4787,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7923,30.2405,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,4.9718,16.6606,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8039,15.6546,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8191,30.5601,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.7923,30.3240,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,4.9718,18.3981,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8039,17.7288,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8191,30.2085,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.7923,29.9974,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,4.9718,16.1564,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8039,15.7872,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8191,29.9345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.7923,29.8227,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,4.9718,15.6858,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8039,15.4917,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8191,30.0759,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.7923,30.0415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,4.9718,15.4740,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8039,15.3432,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8191,29.9190,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.7923,29.8700,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,4.9718,15.5290,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8039,15.3873,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8191,29.9480,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.7923,30.0019,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,4.9718,15.6076,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8039,15.4638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8191,29.9932,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.7923,29.9951,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,4.9718,15.4942,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8039,15.3429,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8191,29.9159,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.7923,29.8502,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,4.9718,15.7320,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8039,15.4782,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8191,30.1926,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.7923,30.1806,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.txt b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.txt new file mode 100644 index 0000000..39230a5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=6.794 +effective_logical_fps=44.157 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=19.992 +p95_encode_latency_ms=32.797 +max_encode_latency_ms=103.421 +avg_steady_encode_latency_ms=20.291 +p95_steady_encode_latency_ms=32.797 +max_steady_encode_latency_ms=36.148 +avg_tile_encode_latency_ms=14.235 +p95_tile_encode_latency_ms=30.337 +avg_max_tile_encode_latency_ms=18.542 +p95_max_tile_encode_latency_ms=30.812 +avg_steady_max_tile_encode_latency_ms=19.052 +p95_steady_max_tile_encode_latency_ms=30.955 +payload_bytes=1391053 +send_target=none +csv=benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s_logical.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s_logical.csv new file mode 100644 index 0000000..9079a61 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_inflight1_5s_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,103.4212,28.1478,231707 +1,4,0,11.0474,10.5466,65901 +2,4,0,10.8945,10.4357,36886 +3,4,0,10.9039,10.4991,69404 +4,4,0,10.7953,10.3110,87864 +5,4,0,10.7457,10.2737,53700 +6,4,0,10.8298,10.3458,24415 +7,4,0,10.7828,10.3206,15407 +8,4,0,10.7461,10.3289,12151 +9,4,0,10.9399,10.5045,11449 +10,4,0,11.3184,10.6270,8599 +11,4,0,11.2408,10.6348,6107 +12,4,0,11.2668,10.6342,5132 +13,4,0,11.4374,10.6615,3880 +14,4,0,11.7679,11.0130,4001 +15,4,0,11.3026,10.6274,3860 +16,4,0,11.7094,11.1653,4045 +17,4,0,11.7286,10.2176,3955 +18,4,0,11.5851,10.4501,3721 +19,4,0,11.6665,10.1926,3748 +20,4,0,12.2705,10.6134,3386 +21,4,0,11.0211,10.3165,2761 +22,4,0,11.7050,10.7152,2750 +23,4,0,10.9011,10.3216,2836 +24,4,0,11.1297,10.3651,2977 +25,4,0,11.0397,10.5005,2960 +26,4,0,11.0416,10.5303,3010 +27,4,0,11.0669,10.4674,2978 +28,4,0,10.9092,10.4302,2889 +29,4,0,11.0514,10.3890,2914 +30,4,0,11.0652,10.4988,2847 +31,4,0,10.8715,10.3831,3111 +32,4,0,11.0616,10.5316,2714 +33,4,0,11.0122,10.4334,2843 +34,4,0,11.0232,10.5322,2633 +35,4,0,11.0381,10.5650,2659 +36,4,0,11.0902,10.3474,2696 +37,4,0,11.0746,10.4859,2728 +38,4,0,11.0063,10.4433,2772 +39,4,0,10.8150,10.3403,2740 +40,4,0,10.9697,10.4502,2809 +41,4,0,11.0985,10.3864,2679 +42,4,0,10.9036,10.3695,2865 +43,4,0,11.0503,10.5164,2612 +44,4,0,10.9802,10.4619,2626 +45,4,0,11.1019,10.6065,2693 +46,4,0,11.2361,10.5446,2708 +47,4,0,11.2090,10.5047,2765 +48,4,0,11.0948,10.4015,2645 +49,4,0,11.0222,10.4970,2733 +50,4,0,10.8719,10.3728,2667 +51,4,0,10.9140,10.3565,2647 +52,4,0,10.9330,10.3652,2659 +53,4,0,10.9750,10.3722,2757 +54,4,0,11.0702,10.3405,2656 +55,4,0,11.1771,10.3614,2594 +56,4,0,10.9795,10.2582,2603 +57,4,0,11.1943,10.4541,2605 +58,4,0,11.1650,10.3542,2610 +59,4,0,11.1290,10.3895,2641 +60,4,0,11.2029,10.4489,2637 +61,4,0,11.1138,10.3914,2691 +62,4,0,11.4248,10.6868,2620 +63,4,0,11.4450,10.5282,2614 +64,4,0,10.9872,10.2500,2666 +65,4,0,11.0340,10.2171,2613 +66,4,0,11.3959,10.3493,2624 +67,4,0,11.2602,10.4716,2612 +68,4,0,11.4127,10.5938,2687 +69,4,0,11.2850,10.4255,2622 +70,4,0,11.1790,10.4715,2623 +71,4,0,11.3513,10.4610,2647 +72,4,0,14.5051,13.6853,2645 +73,4,0,11.4175,10.4800,2643 +74,4,0,11.9408,10.3658,2635 +75,4,0,12.2459,10.6200,2718 +76,4,0,11.8855,10.4465,2602 +77,4,0,15.0901,11.7192,2605 +78,4,0,14.8949,13.8562,2612 +79,4,0,13.0574,11.3194,2607 +80,4,0,15.7460,14.2445,2630 +81,4,0,13.6504,9.9430,2617 +82,4,0,11.3922,10.5140,2661 +83,4,0,11.3290,10.4371,2606 +84,4,0,11.2266,10.4319,2609 +85,4,0,11.3670,10.4614,2612 +86,4,0,11.2967,10.3506,2632 +87,4,0,11.3618,10.4518,2606 +88,4,0,11.1147,10.3303,2610 +89,4,0,11.1288,10.3142,2652 +90,4,0,12.6568,11.2621,2594 +91,4,0,12.8645,11.4978,2609 +92,4,0,12.2189,10.3951,2598 +93,4,0,13.3418,11.8071,2613 +94,4,0,13.0345,11.4913,2618 +95,4,0,12.2383,10.4664,2604 +96,4,0,12.0327,10.3416,2677 +97,4,0,11.7945,10.6525,2620 +98,4,0,11.5055,10.1265,2594 +99,4,0,11.6050,10.6177,2594 +100,4,0,11.5781,10.4455,2598 +101,4,0,11.6280,10.4253,2609 +102,4,0,12.2720,11.2067,2616 +103,4,0,11.5237,10.4307,2630 +104,4,0,13.2857,11.9027,2606 +105,4,0,11.1141,10.4698,2604 +106,4,0,11.0489,10.1261,2609 +107,4,0,10.9793,10.2460,2610 +108,4,0,11.0159,10.3705,2652 +109,4,0,11.0394,10.3737,2600 +110,4,0,10.9887,10.3858,2640 +111,4,0,11.0015,10.3640,2594 +112,4,0,11.1668,10.3276,2594 +113,4,0,10.9709,10.3761,2600 +114,4,0,10.8613,10.3211,2599 +115,4,0,10.8917,10.4698,2607 +116,4,0,10.7802,10.3249,2603 +117,4,0,11.0445,10.4617,2623 +118,4,0,10.9809,10.3613,2600 +119,4,0,11.0845,10.4082,2610 +120,4,0,11.0311,10.5438,2594 +121,4,0,11.0071,10.3841,2594 +122,4,0,10.9837,10.4018,2603 +123,4,0,11.2451,10.4381,2602 +124,4,0,11.0926,10.5316,2619 +125,4,0,11.0518,10.5246,2600 +126,4,0,10.9043,10.3950,2600 +127,4,0,10.8712,10.3958,2594 +128,4,0,11.5674,10.7518,2594 +129,4,0,14.7514,13.2480,2599 +130,4,0,11.5895,10.4331,2607 +131,4,0,11.9437,10.4421,2605 +132,4,0,11.9476,10.6967,2596 +133,4,0,11.4969,9.6880,2594 +134,4,0,12.2435,11.1280,2594 +135,4,0,11.7655,10.6853,2594 +136,4,0,11.3150,10.4113,2594 +137,4,0,12.1576,10.1151,2594 +138,4,0,11.4890,10.1759,2604 +139,4,0,13.0015,11.1864,2594 +140,4,0,11.5755,10.3526,2594 +141,4,0,11.7115,10.3094,2599 +142,4,0,11.9001,10.4103,2594 +143,4,0,12.3147,10.3773,2594 +144,4,0,11.5557,10.3072,2594 +145,4,0,11.9689,9.9520,2604 +146,4,0,11.5917,10.6205,2594 +147,4,0,12.4390,10.4745,2594 +148,4,0,12.3951,10.2837,2594 +149,4,0,12.5612,10.5715,2601 +150,4,0,14.0170,12.3150,2601 +151,4,0,14.6675,13.5135,2594 +152,4,0,15.2170,13.9171,2606 +153,4,0,14.0669,12.3359,2594 +154,4,0,15.7645,12.2618,2594 +155,4,0,11.9146,10.6846,2594 +156,4,0,13.5305,11.9746,2594 +157,4,0,14.6641,12.6467,2594 +158,4,0,12.2363,9.6287,2594 +159,4,0,12.5961,10.6562,2594 +160,4,0,13.1586,11.4882,2594 +161,4,0,14.0511,12.4292,2594 +162,4,0,13.8467,12.4590,2594 +163,4,0,14.8525,13.1619,2598 +164,4,0,13.7928,12.2505,2594 +165,4,0,11.9833,10.4041,2594 +166,4,0,12.2511,7.9851,2594 +167,4,0,12.6310,11.8894,2594 +168,4,0,12.9598,10.3398,2594 +169,4,0,13.4869,11.2290,2594 +170,4,0,13.6534,12.2700,2594 +171,4,0,12.0568,10.4266,2594 +172,4,0,12.6261,10.9766,2594 +173,4,0,12.4780,10.0058,2594 +174,4,0,12.4832,9.9805,2594 +175,4,0,13.6677,10.3915,2594 +176,4,0,12.4405,10.2011,2594 +177,4,0,12.6865,10.3913,2594 +178,4,0,12.3930,10.1735,2594 +179,4,0,12.9140,9.4390,2594 +180,4,0,12.2616,10.9095,2594 +181,4,0,17.0110,11.9973,2594 +182,4,0,32.0280,29.8179,2594 +183,4,0,30.9348,30.0457,2594 +184,4,0,31.5156,29.8004,2594 +185,4,0,31.0365,30.1942,2594 +186,4,0,31.1117,30.1997,2594 +187,4,0,31.4025,30.3225,2594 +188,4,0,31.6943,30.4081,2594 +189,4,0,32.5621,31.1693,2594 +190,4,0,31.9724,30.4626,2594 +191,4,0,33.2908,31.9642,2594 +192,4,0,34.7432,32.9051,2594 +193,4,0,32.3855,29.6399,2594 +194,4,0,34.3738,33.3334,2594 +195,4,0,32.9191,29.9581,2594 +196,4,0,31.4560,30.2240,2594 +197,4,0,32.4594,30.7810,2594 +198,4,0,34.8485,32.5851,2594 +199,4,0,32.1819,30.6652,2594 +200,4,0,31.3571,30.2333,2594 +201,4,0,31.3314,30.2945,2594 +202,4,0,31.3796,30.0178,2594 +203,4,0,32.3753,30.9439,2594 +204,4,0,35.6244,30.1217,2594 +205,4,0,31.5732,30.2029,2594 +206,4,0,31.7089,30.1763,2594 +207,4,0,31.6555,30.2119,2594 +208,4,0,31.5560,29.8437,2594 +209,4,0,30.9720,30.1715,2594 +210,4,0,31.6401,30.1120,2594 +211,4,0,32.0477,30.5180,2594 +212,4,0,31.7112,30.4480,2594 +213,4,0,35.8594,29.9305,2594 +214,4,0,30.7913,30.1282,2594 +215,4,0,31.6473,29.5620,2594 +216,4,0,31.1507,30.1799,2594 +217,4,0,31.1837,30.1235,2594 +218,4,0,34.8527,33.6880,2594 +219,4,0,31.6082,30.2560,2594 +220,4,0,31.0388,30.1390,2594 +221,4,0,30.9941,30.3234,2594 +222,4,0,31.0975,30.3368,2594 +223,4,0,33.6707,31.9084,2594 +224,4,0,31.6392,30.1050,2594 +225,4,0,31.5387,30.1275,2594 +226,4,0,31.4614,30.2417,2594 +227,4,0,32.0476,30.5098,2594 +228,4,0,31.5719,29.7571,2594 +229,4,0,36.1475,32.0866,2594 +230,4,0,32.0780,30.4316,2594 +231,4,0,33.8082,32.3158,2594 +232,4,0,32.2406,30.8052,2594 +233,4,0,31.7173,30.2808,2594 +234,4,0,31.8493,30.5128,2594 +235,4,0,33.8391,32.5461,2594 +236,4,0,31.6631,30.1642,2594 +237,4,0,31.0875,30.3000,2594 +238,4,0,30.9455,30.2218,2594 +239,4,0,30.8004,30.1879,2594 +240,4,0,30.9929,30.3518,2594 +241,4,0,31.0183,30.1766,2594 +242,4,0,30.8563,30.1655,2594 +243,4,0,31.1222,30.3099,2594 +244,4,0,31.6329,30.6401,2594 +245,4,0,31.0123,30.2245,2594 +246,4,0,31.1355,30.4579,2594 +247,4,0,31.2991,30.2173,2594 +248,4,0,31.0821,30.3442,2594 +249,4,0,31.0225,30.1950,2594 +250,4,0,31.1047,30.2573,2594 +251,4,0,31.0799,30.1730,2594 +252,4,0,31.0310,30.2471,2594 +253,4,0,30.9040,30.1136,2594 +254,4,0,30.9150,30.2261,2594 +255,4,0,32.3014,31.6259,2594 +256,4,0,31.2925,29.5072,2594 +257,4,0,30.8064,30.0601,2594 +258,4,0,31.1590,30.4788,2594 +259,4,0,32.5320,29.7855,2594 +260,4,0,30.7985,30.0766,2594 +261,4,0,30.8865,30.3205,2594 +262,4,0,30.8016,30.1165,2594 +263,4,0,30.8434,30.3373,2594 +264,4,0,30.6516,29.8385,2594 +265,4,0,30.5950,30.0192,2594 +266,4,0,30.9451,30.3620,2594 +267,4,0,30.9889,30.3042,2594 +268,4,0,31.3411,29.9525,2594 +269,4,0,31.2455,30.2378,2594 +270,4,0,30.8384,30.0056,2594 +271,4,0,30.9242,30.3700,2594 +272,4,0,30.9665,30.1823,2594 +273,4,0,31.1438,30.2920,2594 +274,4,0,31.2355,30.2903,2594 +275,4,0,32.7906,31.9728,2594 +276,4,0,31.6800,30.3945,2594 +277,4,0,31.1870,29.6403,2594 +278,4,0,32.0483,30.0324,2594 +279,4,0,30.9247,30.1123,2594 +280,4,0,30.8569,30.0520,2594 +281,4,0,31.4840,30.1951,2594 +282,4,0,31.9276,29.8060,2594 +283,4,0,31.8910,30.4915,2594 +284,4,0,32.0028,30.2251,2594 +285,4,0,32.0364,30.0856,2594 +286,4,0,32.1580,30.5121,2594 +287,4,0,36.1367,34.5599,2594 +288,4,0,31.6865,30.3166,2594 +289,4,0,34.7552,33.4295,2594 +290,4,0,31.8862,30.4787,2594 +291,4,0,32.0903,30.5601,2594 +292,4,0,31.4526,30.2085,2594 +293,4,0,31.1923,29.9345,2594 +294,4,0,30.6824,30.0759,2594 +295,4,0,30.3526,29.9190,2594 +296,4,0,30.4995,30.0019,2594 +297,4,0,30.5081,29.9951,2594 +298,4,0,30.3569,29.9159,2594 +299,4,0,30.7453,30.1926,2594 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.csv new file mode 100644 index 0000000..bfb6f5a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0232,28.0576,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.7712,24.9869,0.0131,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8390,25.6320,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8361,25.7116,0.0274,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0232,5.9532,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.7712,5.7621,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8390,10.6250,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8361,10.5817,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.0232,15.4957,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.7712,15.4925,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8390,20.5888,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8361,20.5605,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.0232,25.4950,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.7712,25.4372,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8390,30.3811,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8361,30.3673,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.0232,35.1900,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.7712,35.4444,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8390,40.0659,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8361,40.3558,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.0232,45.0095,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.7712,45.3313,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8390,49.9472,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8361,50.1845,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.0232,54.7944,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.7712,55.0648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8390,59.7569,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8361,60.0478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.0232,64.6367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.7712,61.6458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8390,65.8751,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8361,61.6359,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.0232,61.2388,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.7712,61.6039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8390,65.7591,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8361,61.3658,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.0232,54.8115,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.7712,55.4643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8390,59.7909,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8361,60.3778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.0232,45.4007,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.7712,45.9605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8390,50.2249,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8361,50.8094,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.0232,40.9650,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.7712,41.3501,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8390,45.6952,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8361,46.1794,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.0232,32.6839,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.7712,33.0080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8390,37.3505,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8361,37.8450,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.0232,26.6947,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.7712,27.0138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8390,31.4319,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8361,31.7884,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.0232,20.0195,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.7712,20.2884,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8390,24.7808,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8361,24.9935,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.0232,13.6119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.7712,13.7647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8390,18.3107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8361,18.4012,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.0232,8.4369,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.7712,8.5131,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8390,13.2249,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8361,13.2430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.0232,5.9348,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.7712,5.7094,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8390,10.9358,0.0257,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8361,10.7491,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.0232,6.6158,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.7712,5.8155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8390,10.2970,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8361,10.1172,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.0232,7.2637,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.7712,6.5053,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8390,9.6840,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8361,10.1592,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.0232,6.4595,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.7712,5.8248,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8390,9.8958,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8361,10.2243,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.0232,6.2748,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.7712,5.8284,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8390,9.8277,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8361,10.1136,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.0232,6.4131,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.7712,5.7350,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8390,10.1143,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8361,10.1160,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.0232,6.3754,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.7712,5.7745,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8390,9.8400,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8361,10.1792,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.0232,6.4142,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.7712,5.7468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8390,10.0159,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8361,10.0899,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.0232,6.2292,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.7712,5.8627,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8390,9.5862,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8361,9.8034,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.0232,6.2977,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.7712,5.6180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8390,9.1486,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8361,8.7654,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.0232,8.1551,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.7712,7.2968,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8390,10.3498,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8361,10.1460,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.0232,6.2714,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.7712,5.7495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8390,9.6104,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8361,10.1939,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.0232,7.3439,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.7712,6.6718,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8390,10.2855,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8361,10.1464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.0232,6.4436,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.7712,5.7402,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8390,9.9429,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8361,10.1898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.0232,6.5516,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.7712,5.9117,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8390,9.4927,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8361,10.3506,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.0232,6.4291,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.7712,6.2429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8390,9.6724,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8361,10.1188,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.0232,6.3255,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.7712,5.8125,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8390,9.9704,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8361,9.7275,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.0232,6.7671,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.7712,5.7353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8390,8.7673,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8361,8.6677,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0232,6.5893,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.7712,5.9983,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8390,10.5818,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8361,10.3222,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0232,6.3233,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.7712,5.7725,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8390,10.4141,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8361,10.1595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.0232,6.8098,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.7712,5.9682,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8390,11.1103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8361,10.6654,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.0232,7.7909,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.7712,5.7492,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8390,10.0578,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8361,9.8279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.0232,7.5848,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.7712,7.3117,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8390,12.4758,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8361,12.2799,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.0232,6.7594,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.7712,5.8795,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8390,10.2280,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8361,10.1420,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.0232,6.6238,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.7712,5.8565,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8390,10.0690,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8361,10.0589,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.0232,6.6875,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.7712,5.8637,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8390,10.5478,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8361,10.3276,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.0232,6.3386,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.7712,6.0660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8390,7.5362,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8361,10.1615,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.0232,6.4653,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.7712,5.7851,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8390,10.7096,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8361,10.9269,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.0232,6.8882,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.7712,6.0330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8390,10.3523,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8361,10.1609,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.0232,6.3239,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.7712,6.4265,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8390,8.9902,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8361,10.1557,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.0232,6.8587,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.7712,5.7871,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8390,10.6780,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8361,10.5707,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.0232,6.6472,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.7712,5.8121,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8390,10.4842,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8361,10.3814,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0232,6.6457,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.7712,5.8450,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8390,10.2878,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8361,10.0686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.0232,6.9951,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.7712,5.8880,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8390,10.7141,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8361,10.4484,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.0232,7.8646,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.7712,6.9465,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8390,10.2697,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8361,10.2383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.0232,7.0725,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.7712,5.9336,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8390,10.0013,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8361,9.3912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.0232,6.6763,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.7712,5.8994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8390,10.3962,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8361,10.1948,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.0232,7.1271,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.7712,5.8684,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8390,10.8097,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8361,10.5328,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.0232,6.6355,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.7712,5.8527,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8390,10.7777,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8361,10.7836,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0232,6.7154,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.7712,6.0067,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8390,10.0543,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8361,10.1011,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.0232,6.6122,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.7712,5.9115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8390,10.3160,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8361,10.4634,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.0232,7.6763,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.7712,7.0713,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8390,10.1005,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8361,9.4024,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.0232,6.7782,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.7712,5.9037,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8390,10.7542,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8361,10.6561,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.0232,6.9054,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.7712,5.8565,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8390,10.6617,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8361,10.4591,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.0232,7.3290,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.7712,6.4886,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8390,10.6235,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8361,10.3620,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.0232,6.9452,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.7712,5.8328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8390,10.5077,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8361,10.4571,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.0232,6.7737,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.7712,5.9307,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8390,9.7299,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8361,9.3972,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.0232,6.5674,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.7712,6.1145,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8390,9.6705,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8361,9.9740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.0232,6.6048,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.7712,6.0273,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8390,9.1326,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8361,10.3227,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.0232,6.7747,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.7712,5.8522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8390,10.5226,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8361,10.1286,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.0232,7.2202,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.7712,5.9744,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8390,9.7290,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8361,9.4055,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.0232,6.6435,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.7712,5.8475,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8390,10.1378,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8361,10.1276,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.0232,6.9264,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.7712,5.8193,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8390,10.4145,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8361,10.2942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.0232,6.5433,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.7712,5.8057,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8390,10.5042,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8361,10.5145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.0232,6.4269,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.7712,5.6753,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8390,11.2383,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8361,10.9338,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.0232,6.5158,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.7712,5.7095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8390,10.2169,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8361,10.0634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.0232,6.5679,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.7712,5.8440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8390,10.0769,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8361,10.2037,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.0232,6.5556,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.7712,5.7767,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8390,10.4012,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8361,10.3710,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.0232,8.0288,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.7712,5.7348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8390,9.8742,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8361,10.2170,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.0232,6.4691,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.7712,5.7483,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8390,10.0184,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8361,10.3332,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.0232,7.1364,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.7712,5.7320,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8390,10.0620,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8361,10.0814,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.0232,6.5810,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.7712,5.8903,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8390,10.3681,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8361,10.1648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.0232,6.6097,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.7712,5.7143,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8390,10.0301,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8361,9.6328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.0232,6.4797,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.7712,5.7153,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8390,10.0827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8361,10.1597,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.0232,6.6470,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.7712,6.3438,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8390,9.8543,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8361,10.2125,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.0232,6.5559,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.7712,5.8185,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8390,10.0883,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8361,10.1515,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.0232,6.5902,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.7712,5.9283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8390,10.1740,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8361,10.2894,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.0232,6.6340,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.7712,6.0907,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8390,9.3633,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8361,9.7506,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.0232,6.1517,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.7712,6.2640,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8390,8.5449,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8361,10.1995,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.0232,6.4108,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.7712,5.7204,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8390,10.5935,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8361,10.5335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.0232,6.4818,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.7712,5.7543,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8390,10.2300,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8361,10.1330,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.0232,7.7722,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.7712,7.1304,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8390,10.4144,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8361,10.3564,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.0232,7.3098,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.7712,6.1490,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8390,9.1327,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8361,9.9821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.0232,6.7403,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.7712,5.6218,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8390,10.0794,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8361,9.9117,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.0232,6.3059,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.7712,5.8323,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8390,11.2442,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8361,11.0903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.0232,6.7390,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.7712,5.7943,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8390,10.3253,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8361,10.1823,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.0232,6.6375,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.7712,5.9874,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8390,10.2165,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8361,9.9811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.0232,6.3861,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.7712,6.5311,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8390,8.9081,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8361,9.8764,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.0232,6.4241,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.7712,6.3877,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8390,9.0216,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8361,8.7157,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.0232,6.0850,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.7712,5.7701,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8390,8.5549,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8361,8.4364,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.0232,6.2476,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.7712,5.8022,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8390,10.0779,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8361,10.1268,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.0232,6.2332,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.7712,5.8017,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8390,10.1078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8361,10.0499,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.0232,6.9855,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.7712,5.8467,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8390,9.0479,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8361,10.2197,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.0232,5.8607,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.7712,5.6208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8390,10.4639,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8361,10.3284,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.0232,5.8593,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.7712,5.5573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8390,10.3587,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8361,10.2909,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.0232,5.7270,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.7712,5.4706,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8390,10.2871,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8361,10.2501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.0232,5.8501,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.7712,5.5847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8390,10.3977,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8361,10.3423,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.0232,5.9876,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.7712,5.6290,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8390,10.4120,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8361,10.2518,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.0232,5.9449,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.7712,5.6850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8390,10.3784,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8361,10.3138,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.0232,5.8336,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.7712,5.5903,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8390,10.4588,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8361,10.4163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.0232,5.8394,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.7712,5.5622,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8390,10.4308,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8361,10.4297,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.0232,5.7688,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.7712,5.5946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8390,10.3247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8361,10.4183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.0232,5.8394,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.7712,5.6018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8390,10.3232,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8361,10.4067,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.0232,5.7896,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.7712,5.5549,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8390,10.3543,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8361,10.4129,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.0232,5.9645,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.7712,5.6807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8390,10.5114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8361,10.4186,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.0232,5.7076,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.7712,5.6104,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8390,10.3555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8361,10.3576,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.0232,5.8764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.7712,5.6771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8390,10.3882,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8361,10.4199,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.0232,5.6420,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.7712,5.5234,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8390,10.2362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8361,10.2517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.0232,6.1555,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.7712,5.7040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8390,10.4033,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8361,10.3085,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.0232,6.7144,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.7712,5.8727,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8390,9.9300,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8361,10.0639,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.0232,6.1892,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.7712,5.7618,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8390,10.3419,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8361,10.3497,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.0232,6.5734,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.7712,5.8373,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8390,10.0066,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8361,10.1769,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.0232,6.2324,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.7712,5.7953,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8390,9.4275,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8361,9.5226,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.0232,6.9258,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.7712,5.8918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8390,10.1917,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8361,9.9350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.0232,6.7461,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.7712,5.7633,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8390,10.2794,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8361,10.2215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.0232,6.8293,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.7712,5.9231,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8390,10.2348,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8361,10.2005,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.0232,6.3618,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.7712,5.8619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8390,9.8172,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8361,9.8159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.0232,7.6503,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.7712,6.8248,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8390,9.9789,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8361,9.8360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.0232,6.4559,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.7712,6.4398,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8390,10.2119,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8361,9.9816,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.0232,6.1050,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.7712,5.6833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8390,10.1294,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8361,10.0247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.0232,6.5962,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.7712,5.7801,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8390,9.4597,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8361,10.1159,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.0232,5.9678,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.7712,8.3622,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8390,7.9026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8361,10.6739,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.0232,6.0265,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.7712,7.4387,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8390,10.3406,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8361,12.2683,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.0232,6.4804,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.7712,5.9183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8390,9.7660,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8361,9.7165,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.0232,6.3716,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.7712,5.8437,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8390,10.2717,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8361,10.1493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.0232,6.2324,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.7712,5.7421,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8390,10.3019,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8361,10.1665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.0232,6.3969,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.7712,5.9110,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8390,11.3733,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8361,11.1672,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.0232,6.3677,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.7712,6.6175,0.0340,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8390,9.9212,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8361,10.2408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.0232,6.4270,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.7712,5.6849,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8390,10.1099,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8361,10.0287,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.0232,6.2692,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.7712,5.9345,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8390,9.9771,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8361,9.9944,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.0232,6.2783,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.7712,5.7604,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8390,10.1116,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8361,10.1167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.0232,6.3471,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.7712,5.9282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8390,10.5749,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8361,10.3275,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.0232,6.1571,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.7712,5.7186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8390,10.7683,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8361,10.5870,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.0232,6.2534,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.7712,6.1373,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8390,9.6246,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8361,10.0165,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0232,6.4015,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.7712,5.9441,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8390,10.8848,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8361,10.4775,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.0232,6.4102,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.7712,5.7686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8390,10.4790,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8361,10.3915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.0232,6.1407,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.7712,5.9477,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8390,10.3287,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8361,10.2767,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.0232,6.1216,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.7712,5.6472,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8390,10.2462,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8361,9.4200,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.0232,6.1672,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.7712,5.7280,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8390,10.2319,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8361,10.2889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.0232,6.1875,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.7712,5.8723,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8390,10.1768,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8361,10.1914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.0232,5.9849,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.7712,5.8606,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8390,10.1436,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8361,10.0884,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0232,6.0078,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.7712,5.6553,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8390,11.1071,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8361,10.7547,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.0232,6.2043,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.7712,6.3237,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8390,9.2521,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8361,10.1277,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.0232,6.7521,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,2.7712,6.9513,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8390,10.8157,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.8361,10.2620,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,5.0232,8.1907,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.7712,7.4061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8390,9.9087,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.8361,10.2737,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,5.0232,6.9082,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.7712,6.4624,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8390,9.7805,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.8361,9.4474,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,5.0232,6.0933,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.7712,5.7952,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8390,9.8717,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8361,9.5668,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,5.0232,6.0992,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.7712,5.6384,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8390,10.8978,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8361,10.9165,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.0232,5.8150,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.7712,5.5605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8390,10.1676,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8361,10.1135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.0232,5.8625,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.7712,5.6610,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8390,10.2012,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.8361,10.1905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,5.0232,5.8883,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.7712,5.5729,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8390,10.2105,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.8361,10.1850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,5.0232,5.8905,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.7712,5.6875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8390,10.3865,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.8361,10.3411,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,5.0232,5.9167,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.7712,5.6193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8390,10.4388,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.8361,10.2695,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,5.0232,5.7335,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.7712,5.5751,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8390,10.3511,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.8361,10.3138,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.0232,5.9786,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.7712,5.6186,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8390,10.4198,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.8361,10.3655,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.0232,5.9364,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.7712,5.6900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8390,10.2714,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.8361,10.2695,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.0232,5.7580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.7712,5.6445,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8390,10.2009,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.8361,10.2176,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,5.0232,5.9306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.7712,5.6250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8390,10.5787,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.8361,10.4627,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,5.0232,5.9076,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.7712,5.6396,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8390,10.3338,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8361,10.3520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,5.0232,5.8735,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.7712,5.6288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8390,10.3293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8361,10.3087,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,5.0232,5.7874,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.7712,5.5955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8390,10.5429,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8361,10.4695,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.0232,5.6781,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.7712,5.5261,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8390,10.2362,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.8361,10.1563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.0232,5.8669,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.7712,5.6214,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8390,10.2436,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.8361,10.2241,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,5.0232,5.9075,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.7712,5.6186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8390,10.3130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.8361,10.2088,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.0232,5.9334,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.7712,5.7004,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8390,10.7020,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.8361,10.6146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,5.0232,5.6962,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.7712,6.1892,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8390,7.9787,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8361,10.1498,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,5.0232,5.7692,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.7712,5.4743,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8390,10.4094,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.8361,10.3260,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,5.0232,6.1657,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.7712,5.6912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8390,10.4816,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.8361,10.4623,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.0232,5.6005,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.7712,5.5086,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8390,10.4979,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8361,10.4153,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.0232,5.6279,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.7712,5.4593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8390,10.4097,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8361,10.3959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.0232,5.6351,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.7712,5.5049,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8390,10.2479,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8361,10.2290,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,5.0232,5.6167,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.7712,5.4813,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8390,10.3365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8361,10.2882,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,5.0232,5.7293,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.7712,5.5302,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8390,10.3367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.8361,10.2930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,5.0232,5.5621,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.7712,5.4971,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8390,10.3718,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +723,2.8361,10.3021,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +724,5.0232,5.7928,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.7712,5.5816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8390,11.9109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +727,2.8361,11.8483,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +728,5.0232,15.6851,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.7712,15.4633,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8390,30.2306,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +731,2.8361,30.1066,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,5.0232,28.8733,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.7712,28.7265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8390,38.3612,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +735,2.8361,38.2580,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,5.0232,31.5786,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.7712,31.3179,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8390,38.4100,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +739,2.8361,38.3093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +740,5.0232,31.9386,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.7712,31.7181,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8390,39.5668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.8361,39.4150,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.0232,34.7090,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.7712,34.3920,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8390,39.5401,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.8361,39.3618,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +748,5.0232,28.2071,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.7712,27.8650,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8390,35.2750,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.8361,35.0752,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +752,5.0232,31.3227,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.7712,30.4032,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8390,40.0862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.8361,39.7835,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,5.0232,35.6883,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.7712,35.4265,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8390,41.9993,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +759,2.8361,41.8136,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,5.0232,34.0702,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.7712,33.8805,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8390,40.3399,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +763,2.8361,40.1891,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,5.0232,33.2448,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.7712,32.8788,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8390,37.9506,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +767,2.8361,37.7127,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +768,5.0232,30.2286,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.7712,29.5132,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8390,34.6567,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +771,2.8361,34.2396,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.0232,31.7110,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.7712,30.9003,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8390,39.2886,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +775,2.8361,39.1403,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +776,5.0232,33.6600,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.7712,33.4399,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8390,41.4873,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +779,2.8361,41.3507,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +780,5.0232,35.5731,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.7712,34.9428,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8390,41.4170,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +783,2.8361,40.8954,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,5.0232,34.1079,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.7712,33.3889,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8390,40.5069,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.8361,40.0202,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,5.0232,34.9641,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.7712,33.4355,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8390,38.3216,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.8361,38.0769,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,5.0232,28.8536,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.7712,28.0439,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8390,36.2642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.8361,35.9819,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.0232,32.5910,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.7712,31.1642,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8390,39.4641,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.8361,39.2524,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +800,5.0232,32.2273,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.7712,31.7485,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8390,38.8192,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.8361,38.6914,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.0232,34.0108,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.7712,33.5523,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8390,41.9806,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.8361,41.6894,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +808,5.0232,34.9776,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.7712,34.3559,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8390,39.0284,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.8361,38.9064,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,5.0232,27.8773,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.7712,27.2005,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8390,34.2354,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +815,2.8361,33.7392,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.0232,31.9453,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.7712,31.3073,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8390,41.5647,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8361,42.5429,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,5.0232,34.4896,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.7712,33.7441,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8390,41.5680,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8361,41.0237,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.0232,38.3637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.7712,36.5420,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8390,42.9958,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8361,42.6095,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +828,5.0232,36.2579,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.7712,35.8769,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8390,40.8095,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8361,40.5164,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +832,5.0232,27.3272,0.0836,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.7712,26.0561,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8390,35.1726,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.8361,35.0857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +836,5.0232,36.0067,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.7712,35.4633,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8390,41.4423,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8361,41.0628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +840,5.0232,34.1868,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.7712,32.3056,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8390,37.2061,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.8361,36.7620,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,5.0232,28.5230,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.7712,27.2979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8390,37.8115,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.8361,37.8201,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +848,5.0232,38.2455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.7712,36.7855,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8390,44.2295,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +851,2.8361,43.9544,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +852,5.0232,34.7559,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.7712,33.0360,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8390,37.6068,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.8361,37.4290,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +856,5.0232,23.1281,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.7712,22.5207,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8390,34.4085,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.8361,34.2013,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +860,5.0232,37.1477,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.7712,37.0491,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8390,41.6553,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.8361,41.6817,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.0232,29.7961,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.7712,23.0177,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8390,29.7582,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.8361,29.4551,0.0558,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,5.0232,33.3812,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.7712,32.9851,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8390,41.9330,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.8361,41.7330,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,5.0232,35.5752,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.7712,35.2705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8390,41.6465,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8361,41.6672,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,5.0232,33.3377,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.7712,32.6895,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8390,37.8738,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.8361,37.7095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,5.0232,28.8826,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.7712,28.2233,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8390,36.1990,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.8361,36.1135,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +884,5.0232,32.2759,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.7712,31.0557,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8390,37.9227,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.8361,37.4702,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +888,5.0232,32.5838,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.7712,31.7831,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8390,40.7497,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.8361,40.3533,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.0232,36.3642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.7712,34.5328,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8390,39.6145,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.8361,39.4554,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +896,5.0232,28.3977,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.7712,27.7010,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8390,37.8423,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.8361,37.6979,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,5.0232,33.9843,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.7712,33.7934,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8390,40.9242,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +903,2.8361,40.4767,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +904,5.0232,33.3822,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.7712,30.8801,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8390,37.0130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.8361,36.6973,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +908,5.0232,33.8487,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.7712,33.2549,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8390,38.1228,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.8361,37.9380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +912,5.0232,28.1806,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.7712,27.8253,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8390,35.9693,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.8361,35.7185,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.0232,32.5896,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.7712,31.2725,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8390,38.9192,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8361,38.6080,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +920,5.0232,33.1793,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.7712,32.8280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8390,44.7955,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8361,44.4109,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.0232,35.8737,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.7712,35.4363,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8390,40.3288,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8361,40.0266,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +928,5.0232,28.6973,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.7712,27.8352,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8390,35.6622,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8361,35.3773,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +932,5.0232,32.2470,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.7712,31.8896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8390,39.7029,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.8361,39.4321,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.0232,33.5577,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.7712,32.7705,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8390,41.9350,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8361,41.5046,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +940,5.0232,35.8977,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.7712,35.1755,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8390,42.4703,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.8361,42.2037,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.0232,33.3613,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.7712,32.8144,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8390,37.1524,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.8361,36.4009,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +948,5.0232,29.2044,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.7712,28.1309,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8390,35.5720,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8361,35.2607,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,5.0232,31.5869,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.7712,30.6254,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8390,39.1122,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.8361,38.6595,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,5.0232,34.7263,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.7712,34.0371,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8390,42.6586,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.8361,42.3457,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +960,5.0232,34.5232,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.7712,33.5506,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8390,40.2826,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.8361,40.0175,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.0232,33.3014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.7712,32.3081,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8390,39.1721,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +967,2.8361,38.6921,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +968,5.0232,35.5192,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.7712,33.0138,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8390,37.6546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.8361,37.2863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +972,5.0232,27.7570,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.7712,27.2845,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8390,35.7908,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +975,2.8361,35.5663,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +976,5.0232,31.7381,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.7712,31.3131,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8390,39.7511,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +979,2.8361,39.5716,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +980,5.0232,30.5506,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.7712,30.1997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8390,38.8068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.8361,38.6367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,5.0232,33.5743,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.7712,33.3435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8390,40.2325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.8361,40.0483,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +988,5.0232,32.0356,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.7712,31.7327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8390,39.3258,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.8361,39.1186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.0232,34.6097,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.7712,34.1453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8390,39.3497,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.8361,39.1642,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.0232,28.3640,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.7712,28.1739,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8390,36.8557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.8361,36.5297,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.0232,31.9598,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.7712,31.5433,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8390,41.5353,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.8361,41.3119,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1004,5.0232,34.1398,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.7712,33.2203,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8390,40.2861,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1007,2.8361,39.7624,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1008,5.0232,33.1440,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.7712,32.1827,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8390,38.9667,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1011,2.8361,38.7586,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,5.0232,37.1174,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.7712,34.1927,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8390,41.0412,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1015,2.8361,40.8826,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1016,5.0232,33.9058,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.7712,33.3164,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8390,38.6779,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1019,2.8361,38.5812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.0232,29.5587,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.7712,28.5629,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8390,35.7392,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1023,2.8361,35.6213,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.0232,31.1170,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.7712,30.5528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8390,38.1139,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.8361,40.9467,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.0232,33.6395,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.7712,33.1670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8390,41.1277,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.8361,40.7856,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1032,5.0232,35.4594,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.7712,35.0566,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8390,42.7863,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.8361,42.0230,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1036,5.0232,33.2167,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.7712,32.6477,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8390,39.8830,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.8361,39.5808,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,5.0232,34.6743,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.7712,33.9945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8390,40.9724,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.8361,40.9027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1044,5.0232,39.5540,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.7712,38.8596,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8390,43.2642,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.8361,42.9373,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.0232,35.6663,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.7712,34.4547,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8390,39.1770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8361,38.9733,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.0232,23.9385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.7712,23.6975,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8390,30.7802,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.8361,30.6677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.0232,31.2242,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.7712,31.0107,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8390,38.8567,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.8361,38.7400,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.0232,33.2870,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.7712,33.0886,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8390,42.4721,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.8361,42.1934,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,5.0232,35.0559,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.7712,34.8083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8390,41.3693,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1067,2.8361,41.1073,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,5.0232,35.7778,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.7712,36.3175,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8390,40.9482,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.8361,40.8230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,5.0232,39.4030,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.7712,38.0303,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8390,43.8825,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.8361,43.7341,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.0232,34.1682,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.7712,31.9814,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8390,36.4602,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.8361,35.6567,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.0232,27.4680,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.7712,26.2280,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8390,33.6397,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.8361,33.5177,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.0232,32.1683,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.7712,31.3646,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8390,40.9632,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.8361,40.9205,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.0232,34.9722,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.7712,34.2973,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8390,39.2203,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.8361,39.0915,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,5.0232,27.8439,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.7712,26.9691,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8390,35.3225,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.8361,34.9078,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,5.0232,31.7943,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.7712,30.9943,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8390,40.1119,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.8361,39.9976,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1100,5.0232,34.1465,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.7712,33.3862,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8390,42.1641,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.8361,42.0670,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.0232,35.9268,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.7712,35.3394,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8390,39.9639,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.8361,39.8379,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.0232,29.7906,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.7712,27.6150,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8390,34.6741,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8361,34.2144,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.0232,31.0968,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.7712,30.4587,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8390,38.7767,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8361,38.6238,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.0232,33.3515,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.7712,32.6934,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8390,42.1651,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8361,41.6724,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.0232,35.6992,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.7712,35.1745,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8390,40.6860,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.8361,40.3896,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.0232,28.2489,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.7712,27.3086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8390,35.5668,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.8361,35.3005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,5.0232,31.7363,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.7712,31.1350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8390,39.3210,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.8361,39.0917,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1132,5.0232,34.3824,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.7712,33.3570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8390,39.1850,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.8361,38.7605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.0232,34.2860,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.7712,33.6887,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8390,40.1050,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.8361,39.8171,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.0232,35.0505,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.7712,34.1396,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8390,39.2150,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.8361,38.9052,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.0232,30.9641,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.7712,29.0805,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8390,37.2357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8361,36.9183,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.0232,32.0098,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.7712,30.9286,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8390,39.8078,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8361,39.5866,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.0232,31.4887,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.7712,30.7338,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8390,38.3646,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8361,38.1483,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,5.0232,34.2340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.7712,33.1860,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8390,39.4972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8361,39.1666,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.0232,33.7507,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.7712,32.7085,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8390,40.2937,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8361,39.9622,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.0232,35.2777,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.7712,34.1079,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8390,38.8230,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.8361,38.3478,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.0232,28.6532,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.7712,27.8361,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8390,36.2695,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.8361,35.8128,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.0232,31.8427,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.7712,30.7286,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8390,39.0885,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.8361,38.6251,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.0232,35.2645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.7712,34.0565,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8390,40.8047,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8361,40.5295,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.0232,39.1093,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.7712,37.0551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8390,38.0307,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8361,37.7236,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,5.0232,28.6015,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.7712,27.5508,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8390,35.5356,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8361,35.1078,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.0232,32.7122,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.7712,31.3889,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8390,39.4083,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8361,35.8255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.0232,31.3132,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.7712,30.7800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8390,39.4553,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8361,39.1608,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.0232,37.2127,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.7712,36.7366,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8390,51.5208,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8361,51.0016,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.txt b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.txt new file mode 100644 index 0000000..ffb1a3c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.039 +effective_logical_fps=59.533 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=24.948 +p95_encode_latency_ms=43.802 +max_encode_latency_ms=104.775 +avg_steady_encode_latency_ms=23.942 +p95_steady_encode_latency_ms=43.094 +max_steady_encode_latency_ms=52.595 +avg_tile_encode_latency_ms=20.547 +p95_tile_encode_latency_ms=41.656 +avg_max_tile_encode_latency_ms=23.265 +p95_max_tile_encode_latency_ms=42.549 +avg_steady_max_tile_encode_latency_ms=22.474 +p95_steady_max_tile_encode_latency_ms=41.982 +payload_bytes=1391053 +send_target=none +csv=benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s_logical.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s_logical.csv new file mode 100644 index 0000000..a501412 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/30mbps_unlimited_5s_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.7750,28.0576,231707 +1,4,0,11.1129,10.6250,65901 +2,4,0,20.8588,20.5888,36886 +3,4,0,30.6572,30.3811,69404 +4,4,0,40.5854,40.3558,87864 +5,4,0,50.4384,50.1845,53700 +6,4,0,60.2926,60.0478,24415 +7,4,0,70.5301,65.8751,15407 +8,4,0,67.0397,65.7591,12151 +9,4,0,60.7228,60.3778,11449 +10,4,0,51.1859,50.8094,8599 +11,4,0,46.5952,46.1794,6107 +12,4,0,38.3293,37.8450,5132 +13,4,0,32.2517,31.7884,3880 +14,4,0,25.5855,24.9935,4001 +15,4,0,19.0397,18.4012,3860 +16,4,0,13.8428,13.2430,4045 +17,4,0,11.6420,10.9358,3955 +18,4,0,12.0613,10.2970,3721 +19,4,0,13.1278,10.1592,3748 +20,4,0,12.0635,10.2243,3386 +21,4,0,11.9253,10.1136,2761 +22,4,0,11.6759,10.1160,2750 +23,4,0,11.8750,10.1792,2836 +24,4,0,11.8482,10.0899,2977 +25,4,0,11.8830,9.8034,2960 +26,4,0,11.7206,9.1486,3010 +27,4,0,11.9553,10.3498,2978 +28,4,0,12.1657,10.1939,2889 +29,4,0,11.8245,10.2855,2914 +30,4,0,11.9481,10.1898,2847 +31,4,0,12.8095,10.3506,3111 +32,4,0,12.3670,10.1188,2714 +33,4,0,12.0190,9.9704,2843 +34,4,0,12.0891,8.7673,2633 +35,4,0,11.8264,10.5818,2659 +36,4,0,11.7081,10.4141,2696 +37,4,0,12.3083,11.1103,2728 +38,4,0,12.9299,10.0578,2772 +39,4,0,13.2730,12.4758,2740 +40,4,0,12.4782,10.2280,2809 +41,4,0,12.1853,10.0690,2679 +42,4,0,12.0079,10.5478,2865 +43,4,0,14.2884,10.1615,2612 +44,4,0,12.5496,10.9269,2626 +45,4,0,11.7926,10.3523,2693 +46,4,0,12.7995,10.1557,2708 +47,4,0,12.5903,10.6780,2765 +48,4,0,12.2465,10.4842,2645 +49,4,0,11.8321,10.2878,2733 +50,4,0,12.2801,10.7141,2667 +51,4,0,11.9085,10.2697,2647 +52,4,0,12.5755,10.0013,2659 +53,4,0,11.8729,10.3962,2757 +54,4,0,12.5815,10.8097,2656 +55,4,0,12.9803,10.7836,2594 +56,4,0,12.2917,10.1011,2603 +57,4,0,12.3227,10.4634,2605 +58,4,0,12.0441,10.1005,2610 +59,4,0,12.2689,10.7542,2641 +60,4,0,12.1892,10.6617,2637 +61,4,0,12.1374,10.6235,2691 +62,4,0,12.3008,10.5077,2620 +63,4,0,12.2836,9.7299,2614 +64,4,0,12.2954,9.9740,2666 +65,4,0,13.0776,10.3227,2613 +66,4,0,12.0457,10.5226,2624 +67,4,0,12.4274,9.7290,2612 +68,4,0,12.0470,10.1378,2687 +69,4,0,12.2304,10.4145,2622 +70,4,0,12.1874,10.5145,2623 +71,4,0,13.3678,11.2383,2647 +72,4,0,11.8810,10.2169,2645 +73,4,0,12.0755,10.2037,2643 +74,4,0,11.9110,10.4012,2635 +75,4,0,13.4944,10.2170,2718 +76,4,0,12.0196,10.3332,2602 +77,4,0,12.4345,10.0814,2605 +78,4,0,11.6500,10.3681,2612 +79,4,0,11.9231,10.0301,2607 +80,4,0,11.7240,10.1597,2630 +81,4,0,12.2579,10.2125,2617 +82,4,0,11.8106,10.1515,2661 +83,4,0,11.8046,10.2894,2606 +84,4,0,12.5381,9.7506,2609 +85,4,0,13.2555,10.1995,2612 +86,4,0,12.0551,10.5935,2632 +87,4,0,11.7133,10.2300,2606 +88,4,0,11.7128,10.4144,2610 +89,4,0,12.8745,9.9821,2652 +90,4,0,11.9531,10.0794,2594 +91,4,0,12.5225,11.2442,2609 +92,4,0,11.7645,10.3253,2598 +93,4,0,11.7653,10.2165,2613 +94,4,0,12.7868,9.8764,2618 +95,4,0,12.2584,9.0216,2604 +96,4,0,11.5991,8.5549,2677 +97,4,0,11.7242,10.1268,2620 +98,4,0,11.6532,10.1078,2594 +99,4,0,13.4784,10.2197,2594 +100,4,0,11.1009,10.4639,2598 +101,4,0,11.0035,10.3587,2609 +102,4,0,10.8825,10.2871,2616 +103,4,0,10.9607,10.3977,2630 +104,4,0,11.0759,10.4120,2606 +105,4,0,11.0763,10.3784,2604 +106,4,0,11.0632,10.4588,2609 +107,4,0,11.1065,10.4308,2610 +108,4,0,10.9544,10.4183,2652 +109,4,0,11.0851,10.4067,2600 +110,4,0,11.0892,10.4129,2640 +111,4,0,11.1935,10.5114,2594 +112,4,0,11.0234,10.3576,2594 +113,4,0,11.1959,10.4199,2600 +114,4,0,10.8878,10.2517,2599 +115,4,0,11.5237,10.4033,2607 +116,4,0,12.3668,10.0639,2603 +117,4,0,11.7133,10.3497,2623 +118,4,0,12.1938,10.1769,2600 +119,4,0,12.0119,9.5226,2610 +120,4,0,11.8121,10.1917,2594 +121,4,0,11.8436,10.2794,2594 +122,4,0,11.8642,10.2348,2603 +123,4,0,11.8281,9.8172,2602 +124,4,0,12.0161,9.9789,2619 +125,4,0,11.7031,10.2119,2600 +126,4,0,11.3894,10.1294,2600 +127,4,0,12.6625,10.1159,2594 +128,4,0,15.8368,10.6739,2594 +129,4,0,13.3453,12.2683,2599 +130,4,0,11.8454,9.7660,2607 +131,4,0,11.3790,10.2717,2605 +132,4,0,11.3330,10.3019,2596 +133,4,0,12.3574,11.3733,2594 +134,4,0,11.7577,10.2408,2594 +135,4,0,11.4708,10.1099,2594 +136,4,0,11.8343,9.9944,2594 +137,4,0,11.5970,10.1167,2594 +138,4,0,11.5183,10.5749,2604 +139,4,0,11.5950,10.7683,2594 +140,4,0,12.2040,10.0165,2594 +141,4,0,11.8341,10.8848,2599 +142,4,0,11.6527,10.4790,2594 +143,4,0,11.5458,10.3287,2594 +144,4,0,11.2215,10.2462,2594 +145,4,0,11.6653,10.2889,2604 +146,4,0,11.5719,10.1914,2594 +147,4,0,11.2311,10.1436,2594 +148,4,0,12.2764,11.1071,2594 +149,4,0,12.8075,10.1277,2601 +150,4,0,12.3253,10.8157,2601 +151,4,0,12.1252,10.2737,2594 +152,4,0,11.4406,9.7805,2606 +153,4,0,11.3665,9.8717,2594 +154,4,0,12.2040,10.9165,2594 +155,4,0,10.9535,10.1676,2594 +156,4,0,11.0946,10.2012,2594 +157,4,0,11.0462,10.2105,2594 +158,4,0,11.2209,10.3865,2594 +159,4,0,11.0935,10.4388,2594 +160,4,0,10.8714,10.3511,2594 +161,4,0,11.1143,10.4198,2594 +162,4,0,11.1363,10.2714,2594 +163,4,0,10.9795,10.2176,2598 +164,4,0,11.2630,10.5787,2594 +165,4,0,10.9867,10.3520,2594 +166,4,0,10.9951,10.3293,2594 +167,4,0,11.1008,10.5429,2594 +168,4,0,10.8266,10.2362,2594 +169,4,0,10.9979,10.2436,2594 +170,4,0,11.0508,10.3130,2594 +171,4,0,11.3639,10.7020,2594 +172,4,0,13.3503,10.1498,2594 +173,4,0,10.9209,10.4094,2594 +174,4,0,11.2758,10.4816,2594 +175,4,0,10.9488,10.4979,2594 +176,4,0,10.9070,10.4097,2594 +177,4,0,10.7389,10.2479,2594 +178,4,0,10.7943,10.3365,2594 +179,4,0,10.8078,10.3367,2594 +180,4,0,10.8344,10.3718,2594 +181,4,0,12.4200,11.9109,2594 +182,4,0,30.6785,30.2306,2594 +183,4,0,38.7422,38.3612,2594 +184,4,0,38.9704,38.4100,2594 +185,4,0,40.0915,39.5668,2594 +186,4,0,39.9922,39.5401,2594 +187,4,0,35.8680,35.2750,2594 +188,4,0,41.3931,40.0862,2594 +189,4,0,42.4792,41.9993,2594 +190,4,0,40.9180,40.3399,2594 +191,4,0,39.0372,37.9506,2594 +192,4,0,36.6732,34.6567,2594 +193,4,0,40.5286,39.2886,2594 +194,4,0,42.1654,41.4873,2594 +195,4,0,42.6345,41.4170,2594 +196,4,0,41.8067,40.5069,2594 +197,4,0,40.1994,38.3216,2594 +198,4,0,37.8036,36.2642,2594 +199,4,0,41.3733,39.4641,2594 +200,4,0,39.6719,38.8192,2594 +201,4,0,42.8519,41.9806,2594 +202,4,0,40.2785,39.0284,2594 +203,4,0,36.3259,34.2354,2594 +204,4,0,43.7784,42.5429,2594 +205,4,0,42.5047,41.5680,2594 +206,4,0,44.3845,42.9958,2594 +207,4,0,41.8864,40.8095,2594 +208,4,0,37.4135,35.1726,2594 +209,4,0,42.5547,41.4423,2594 +210,4,0,39.7731,37.2061,2594 +211,4,0,39.8282,37.8201,2594 +212,4,0,45.3872,44.2295,2594 +213,4,0,39.9875,37.6068,2594 +214,4,0,35.5466,34.4085,2594 +215,4,0,42.3735,41.6817,2594 +216,4,0,37.8502,29.7961,2594 +217,4,0,43.0916,41.9330,2594 +218,4,0,42.7695,41.6672,2594 +219,4,0,38.9314,37.8738,2594 +220,4,0,37.3240,36.1990,2594 +221,4,0,39.8326,37.9227,2594 +222,4,0,41.6583,40.7497,2594 +223,4,0,41.9865,39.6145,2594 +224,4,0,39.0213,37.8423,2594 +225,4,0,42.2177,40.9242,2594 +226,4,0,40.2983,37.0130,2594 +227,4,0,39.2215,38.1228,2594 +228,4,0,36.6830,35.9693,2594 +229,4,0,40.8552,38.9192,2594 +230,4,0,46.2434,44.7955,2594 +231,4,0,41.2452,40.3288,2594 +232,4,0,36.9247,35.6622,2594 +233,4,0,40.6645,39.7029,2594 +234,4,0,43.1306,41.9350,2594 +235,4,0,43.5945,42.4703,2594 +236,4,0,38.3815,37.1524,2594 +237,4,0,37.2050,35.5720,2594 +238,4,0,40.6092,39.1122,2594 +239,4,0,43.5365,42.6586,2594 +240,4,0,41.4967,40.2826,2594 +241,4,0,40.5830,39.1721,2594 +242,4,0,40.5981,37.6546,2594 +243,4,0,36.5210,35.7908,2594 +244,4,0,40.2883,39.7511,2594 +245,4,0,39.1536,38.8068,2594 +246,4,0,40.5644,40.2325,2594 +247,4,0,39.7079,39.3258,2594 +248,4,0,39.8570,39.3497,2594 +249,4,0,37.2443,36.8557,2594 +250,4,0,42.0980,41.5353,2594 +251,4,0,41.5213,40.2861,2594 +252,4,0,40.2017,38.9667,2594 +253,4,0,44.6093,41.0412,2594 +254,4,0,39.8817,38.6779,2594 +255,4,0,37.4575,35.7392,2594 +256,4,0,42.6273,40.9467,2594 +257,4,0,42.0730,41.1277,2594 +258,4,0,43.5338,42.7863,2594 +259,4,0,41.0255,39.8830,2594 +260,4,0,42.1816,40.9724,2594 +261,4,0,44.2479,43.2642,2594 +262,4,0,40.7507,39.1770,2594 +263,4,0,31.3165,30.7802,2594 +264,4,0,39.3214,38.8567,2594 +265,4,0,42.8185,42.4721,2594 +266,4,0,41.9488,41.3693,2594 +267,4,0,42.0072,40.9482,2594 +268,4,0,46.1655,43.8825,2594 +269,4,0,39.4468,36.4602,2594 +270,4,0,35.4197,33.6397,2594 +271,4,0,42.4571,40.9632,2594 +272,4,0,40.3404,39.2203,2594 +273,4,0,36.5604,35.3225,2594 +274,4,0,41.4812,40.1119,2594 +275,4,0,43.7315,42.1641,2594 +276,4,0,41.1370,39.9639,2594 +277,4,0,37.5131,34.6741,2594 +278,4,0,40.0686,38.7767,2594 +279,4,0,43.1317,42.1651,2594 +280,4,0,41.6959,40.6860,2594 +281,4,0,37.0059,35.5668,2594 +282,4,0,40.3949,39.3210,2594 +283,4,0,40.9328,39.1850,2594 +284,4,0,41.1450,40.1050,2594 +285,4,0,40.4435,39.2150,2594 +286,4,0,39.4718,37.2357,2594 +287,4,0,40.9866,39.8078,2594 +288,4,0,39.2807,38.3646,2594 +289,4,0,40.6533,39.4972,2594 +290,4,0,41.3272,40.2937,2594 +291,4,0,40.4319,38.8230,2594 +292,4,0,37.5207,36.2695,2594 +293,4,0,41.0312,39.0885,2594 +294,4,0,42.3010,40.8047,2594 +295,4,0,40.8280,39.1093,2594 +296,4,0,37.0192,35.5356,2594 +297,4,0,41.4105,39.4083,2594 +298,4,0,40.5278,39.4553,2594 +299,4,0,52.5947,51.5208,2594 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.csv new file mode 100644 index 0000000..c3fc2dc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0032,28.2452,0.0253,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1,2.8265,25.0115,0.0124,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +2,2.7700,25.6227,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +3,2.7545,22.8119,0.0042,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +4,5.0032,5.7287,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +5,2.8265,5.5735,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +6,2.7700,10.4642,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +7,2.7545,10.4005,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +8,5.0032,15.3920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +9,2.8265,15.3238,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +10,2.7700,20.3944,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +11,2.7545,20.3250,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +12,5.0032,25.2016,0.0259,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +13,2.8265,25.1815,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +14,2.7700,30.1182,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +15,2.7545,30.0658,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +16,5.0032,34.9738,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +17,2.8265,35.1268,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +18,2.7700,39.8273,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +19,2.7545,40.2272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +20,5.0032,44.8284,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +21,2.8265,45.1007,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +22,2.7700,49.7236,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +23,2.7545,50.2209,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +24,5.0032,54.6287,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +25,2.8265,55.2999,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +26,2.7700,59.4890,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +27,2.7545,60.1226,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +28,5.0032,64.4377,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +29,2.8265,61.7394,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +30,2.7700,65.9852,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +31,2.7545,61.9635,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +32,5.0032,57.5135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +33,2.8265,58.2788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +34,2.7700,62.3895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +35,2.7545,61.9131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +36,5.0032,49.3942,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +37,2.8265,50.6561,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +38,2.7700,54.2135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +39,2.7545,55.4507,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +40,5.0032,42.8720,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +41,2.8265,44.3319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +42,2.7700,47.7314,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +43,2.7545,49.1731,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +44,5.0032,36.3900,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +45,2.8265,37.5921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +46,2.7700,41.0611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +47,2.7545,42.4050,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +48,5.0032,29.7149,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +49,2.8265,30.9300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +50,2.7700,34.4554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +51,2.7545,35.6974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +52,5.0032,23.1160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +53,2.8265,24.3065,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +54,2.7700,27.8395,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +55,2.7545,29.0254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +56,5.0032,16.5030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +57,2.8265,17.7231,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +58,2.7700,21.1054,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +59,2.7545,22.3257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +60,5.0032,9.8457,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +61,2.8265,11.0631,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +62,2.7700,14.6508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +63,2.7545,15.8410,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +64,5.0032,5.9435,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +65,2.8265,5.7388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.7700,10.4102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +67,2.7545,10.3514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +68,5.0032,5.9665,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +69,2.8265,5.7272,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.7700,10.5813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +71,2.7545,10.5271,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +72,5.0032,5.8968,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.8265,5.7234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.7700,10.4711,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +75,2.7545,10.3885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +76,5.0032,5.8392,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.8265,5.5968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.7700,10.7616,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.7545,10.5701,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +80,5.0032,7.1779,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.8265,7.1252,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.7700,9.9545,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +83,2.7545,9.8087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.0032,6.6317,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.8265,5.7440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.7700,10.5067,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.7545,10.4430,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.0032,6.9352,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.8265,6.1727,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.7700,9.4874,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.7545,9.5595,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.0032,7.3633,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.8265,6.7867,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.7700,10.2972,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.7545,10.0233,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.0032,7.8796,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.8265,6.8097,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.7700,10.0545,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.7545,9.8905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +100,5.0032,6.7282,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.8265,6.0150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.7700,10.7575,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.7545,10.4898,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.0032,6.5775,1.5090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.8265,7.3639,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.7700,11.0938,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.7545,10.8246,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +108,5.0032,10.0843,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.8265,9.3616,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.7700,10.3502,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.7545,9.9795,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.0032,8.8762,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.8265,8.0732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.7700,10.1865,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.7545,10.1145,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.0032,6.5237,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.8265,5.6878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.7700,10.3174,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.7545,10.1916,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.0032,6.3329,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.8265,6.1223,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.7700,6.7668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.7545,10.1148,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.0032,5.9562,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.8265,5.5776,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.7700,10.3692,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +127,2.7545,10.2519,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.0032,6.3381,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.8265,5.8485,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.7700,10.4920,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.7545,10.3530,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.0032,6.3064,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.8265,5.7346,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.7700,10.4161,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.7545,10.1182,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.0032,6.5210,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.8265,5.6327,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.7700,10.8054,0.3474,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.7545,12.8105,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.0032,6.4633,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.8265,5.6937,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.7700,10.5495,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.7545,10.4610,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.0032,7.2349,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.8265,6.9930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.7700,11.4908,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.7545,11.2804,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.0032,6.7788,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.8265,5.8965,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.7700,12.6085,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.7545,11.4682,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.0032,8.5754,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.8265,8.0830,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.7700,10.5040,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.7545,10.3375,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.0032,8.2902,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.8265,7.2847,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.7700,10.1752,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.7545,10.0899,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.0032,6.5684,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.8265,6.8297,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.7700,8.0861,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.7545,7.8507,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.0032,6.5977,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.8265,5.9809,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.7700,10.9126,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.7545,10.8322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.0032,6.5445,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.8265,5.7122,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.7700,10.3596,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +171,2.7545,10.2311,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.0032,6.4755,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.8265,5.6937,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.7700,10.6760,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.7545,10.5960,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.0032,6.4420,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.8265,5.8498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.7700,10.3652,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.7545,10.1588,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.0032,6.6694,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.8265,5.8638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.7700,10.2600,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.7545,10.1010,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.0032,6.9741,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.8265,6.1158,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.7700,12.0190,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.7545,11.9319,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.0032,6.3834,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.8265,5.6781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.7700,10.5129,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.7545,10.7192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.0032,6.8395,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.8265,6.6919,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.7700,10.2227,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.7545,9.9533,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.0032,6.7155,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.8265,5.9171,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.7700,13.8673,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.7545,13.7792,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.0032,7.0450,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.8265,6.2728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.7700,10.4264,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.7545,10.3262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.0032,8.4805,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.8265,7.7400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.7700,12.4451,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.7545,12.5299,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.0032,7.0456,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.8265,6.2360,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.7700,12.5755,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.7545,12.3515,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.0032,6.1898,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.8265,5.8393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.7700,10.2646,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.7545,10.1598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.0032,6.1921,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.8265,5.7400,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.7700,10.5092,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.7545,10.3976,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.0032,5.9795,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.8265,5.6170,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.7700,10.5128,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.7545,10.4161,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.0032,5.8860,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.8265,5.5756,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.7700,10.3673,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.7545,10.2393,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.0032,5.7759,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.8265,5.4795,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.7700,10.3477,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.7545,10.3283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.0032,5.8193,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.8265,5.5632,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.7700,10.5178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.7545,10.5468,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.0032,5.8123,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.8265,5.5952,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.7700,10.4880,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.7545,10.4147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.0032,5.9311,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.8265,5.6201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.7700,10.6422,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.7545,10.6163,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.0032,5.8164,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.8265,5.5567,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.7700,10.4205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.7545,10.3609,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.0032,5.8162,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.8265,5.5769,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.7700,10.4795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.7545,10.4716,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.0032,5.7850,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.8265,5.5682,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.7700,10.3416,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.7545,10.3303,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.0032,5.7988,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.8265,5.5130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.7700,10.4439,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.7545,10.3892,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.0032,5.6774,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.8265,5.5860,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.7700,10.4468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.7545,10.3705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.0032,6.7510,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.8265,6.2240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.7700,10.3834,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.7545,10.1642,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.0032,5.9778,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.8265,5.6490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.7700,10.2602,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.7545,9.9594,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.0032,5.9175,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.8265,5.5866,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.7700,10.5504,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.7545,10.4727,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.0032,6.0377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.8265,5.7373,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.7700,10.5141,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.7545,10.5333,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.0032,5.7208,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.8265,5.5597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.7700,10.5406,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.7545,10.5384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.0032,5.8192,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.8265,5.5718,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.7700,10.4875,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.7545,10.4565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.0032,5.6570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.8265,5.4631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.7700,10.3011,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.7545,10.1835,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.0032,5.8193,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.8265,5.5385,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.7700,10.5407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.7545,10.5387,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.0032,6.0177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.8265,5.5968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.7700,10.4723,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.7545,10.4453,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.0032,5.7974,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +301,2.8265,5.6118,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.7700,10.3963,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +303,2.7545,10.3955,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +304,5.0032,5.6805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +305,2.8265,5.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.7700,10.2993,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +307,2.7545,10.2690,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +308,5.0032,5.6012,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +309,2.8265,5.4262,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.7700,10.2458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +311,2.7545,10.2037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +312,5.0032,5.7863,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.8265,5.5081,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.7700,10.2659,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +315,2.7545,10.1573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +316,5.0032,5.7785,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.8265,5.4982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.7700,10.4654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.7545,10.4358,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +320,5.0032,5.8654,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.8265,5.5888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.7700,10.5425,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.7545,10.4389,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.0032,5.8842,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.8265,5.6175,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.7700,10.4914,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.7545,10.4477,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.0032,5.8742,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.8265,5.5568,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.7700,10.3663,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.7545,10.2668,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.0032,5.8656,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.8265,5.6374,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.7700,10.5070,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.7545,10.4025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.0032,5.8762,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.8265,5.5937,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.7700,10.6023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.7545,10.5903,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.0032,5.8820,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.8265,5.6239,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.7700,10.6323,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.7545,10.5473,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.0032,5.8361,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.8265,5.5682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.7700,10.4107,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.7545,10.3859,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.0032,5.8339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.8265,5.5684,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.7700,10.5263,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.7545,10.5373,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.0032,5.7999,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.8265,5.6193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.7700,10.4796,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.7545,10.3977,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.0032,5.8581,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.8265,5.5708,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.7700,10.4525,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.7545,10.4093,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.0032,5.8980,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.8265,5.6465,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.7700,10.5469,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.7545,10.5285,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +364,5.0032,5.8701,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.8265,5.5853,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.7700,10.4829,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.7545,10.3896,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +368,5.0032,5.8985,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.8265,5.6072,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.7700,10.4574,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.7545,10.3982,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.0032,5.7791,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.8265,5.6392,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.7700,10.5843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.7545,10.5714,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.0032,5.7223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.8265,5.5529,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.7700,10.4665,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.7545,10.4268,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.0032,5.7383,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.8265,5.5411,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.7700,10.3725,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.7545,10.3500,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.0032,5.7886,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.8265,5.5135,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.7700,10.3636,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.7545,10.2540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +388,5.0032,5.9675,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.8265,5.6530,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.7700,10.5946,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.7545,10.5265,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.0032,6.0801,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.8265,5.7600,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.7700,10.1267,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.7545,10.2032,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.0032,5.9601,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.8265,5.6390,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.7700,10.3770,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.7545,10.3680,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.0032,5.7124,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.8265,5.4385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.7700,10.4249,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.7545,10.3215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.0032,5.8782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.8265,5.6940,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.7700,10.6614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.7545,10.6408,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.0032,5.9018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.8265,5.6503,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.7700,10.4669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.7545,10.4507,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.0032,5.8125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.8265,5.6463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.7700,10.5110,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.7545,10.5183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.0032,5.7373,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.8265,5.4980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.7700,10.2809,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.7545,10.2395,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.0032,5.8378,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.8265,5.6106,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.7700,10.4535,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.7545,10.3455,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.0032,5.8964,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.8265,5.5955,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.7700,10.5902,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.7545,10.5679,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.0032,5.9215,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.8265,5.6176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.7700,10.4473,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.7545,10.4219,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.0032,5.9805,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.8265,5.6919,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.7700,10.7105,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.7545,10.6747,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.0032,5.9691,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.8265,5.5838,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.7700,10.4881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.7545,10.5036,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.0032,5.8297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.8265,5.5662,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.7700,10.4807,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.7545,10.4823,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.0032,5.8126,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.8265,5.5818,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.7700,10.4846,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.7545,10.4978,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.0032,5.8860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.8265,5.5874,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.7700,10.4844,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.7545,10.5066,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.0032,6.1660,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.8265,5.8739,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.7700,10.7235,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.7545,10.6932,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.0032,5.7981,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.8265,5.4993,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.7700,10.4495,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.7545,10.4331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.0032,7.3864,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.8265,5.6357,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.7700,10.4694,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.7545,10.4520,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.0032,5.7874,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.8265,5.6060,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.7700,10.6230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.7545,10.6404,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.0032,5.6557,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.8265,5.5238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.7700,10.4705,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.7545,10.4756,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.0032,5.8319,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.8265,5.5710,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.7700,10.4461,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.7545,10.3950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.0032,5.8447,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.8265,5.5202,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.7700,10.5451,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.7545,10.5650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.0032,5.8183,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.8265,5.5780,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.7700,10.4660,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.7545,10.4730,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.0032,5.9481,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.8265,5.7315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.7700,10.4089,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.7545,10.3945,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.0032,5.7841,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.8265,5.4956,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.7700,10.3615,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.7545,10.3649,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.0032,6.0362,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.8265,5.6998,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.7700,10.5145,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.7545,10.4096,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.0032,5.9009,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.8265,5.5863,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.7700,10.4689,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.7545,10.3727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.0032,5.8016,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.8265,5.5507,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.7700,10.5013,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.7545,10.4624,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.0032,5.7803,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.8265,5.5063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.7700,10.4139,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.7545,10.3670,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.0032,5.7785,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.8265,5.5819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.7700,10.3381,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.7545,10.3498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.0032,5.8553,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.8265,5.5794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.7700,10.4212,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.7545,10.3677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.0032,5.7683,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.8265,5.4960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.7700,10.4108,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.7545,10.3911,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.0032,5.7699,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.8265,5.5297,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.7700,10.4085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.7545,10.3664,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.0032,5.9140,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.8265,5.6296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.7700,10.4795,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.7545,10.3978,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.0032,5.9851,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.8265,5.6413,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.7700,10.6312,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.7545,10.5862,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.0032,5.8810,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.8265,5.6430,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.7700,10.4977,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.7545,10.4977,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.0032,5.8317,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.8265,5.6018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.7700,10.4584,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.7545,10.4184,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.0032,5.7467,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.8265,5.4447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.7700,10.3392,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.7545,10.2447,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.0032,5.9303,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.8265,5.7087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.7700,10.5048,0.0327,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.7545,10.4400,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.0032,5.8977,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.8265,5.6435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.7700,10.6015,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.7545,10.5527,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.0032,5.8375,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.8265,5.5883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.7700,10.4828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.7545,10.4187,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.0032,5.8471,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.8265,5.5718,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.7700,10.4755,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.7545,10.4818,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.0032,5.7303,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.8265,5.5596,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.7700,10.4958,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.7545,10.5264,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.0032,5.7747,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.8265,5.5563,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.7700,10.4465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.7545,10.3831,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.0032,5.8074,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.8265,5.5279,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.7700,10.4213,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.7545,10.3762,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.0032,6.0600,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.8265,5.7800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.7700,10.7215,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.7545,10.6360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.0032,5.9263,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.8265,5.6477,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.7700,10.6319,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.7545,10.5387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.0032,5.7379,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.8265,5.4626,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.7700,10.4555,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.7545,10.4587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.0032,5.7152,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.8265,5.5114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.7700,10.4849,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.7545,10.4994,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.0032,5.7635,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.8265,5.5848,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.7700,10.3948,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.7545,10.3780,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.0032,6.0078,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.8265,5.7179,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.7700,10.6632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.7545,10.5986,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.0032,5.8802,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.8265,5.6214,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.7700,10.4272,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.7545,10.4056,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.0032,5.7512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +601,2.8265,5.5546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +602,2.7700,10.4852,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +603,2.7545,10.4070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +604,5.0032,5.8556,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +605,2.8265,5.5251,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +606,2.7700,10.5705,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +607,2.7545,10.5549,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +608,5.0032,5.8357,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +609,2.8265,5.5890,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +610,2.7700,10.5645,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +611,2.7545,10.5704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +612,5.0032,5.8413,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +613,2.8265,5.6148,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +614,2.7700,10.4120,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +615,2.7545,10.3954,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +616,5.0032,5.7318,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +617,2.8265,5.5853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +618,2.7700,10.3395,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +619,2.7545,10.3127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +620,5.0032,5.7285,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +621,2.8265,5.4743,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +622,2.7700,10.3853,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +623,2.7545,10.2982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +624,5.0032,5.8051,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +625,2.8265,5.5259,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +626,2.7700,10.3911,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +627,2.7545,10.3613,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +628,5.0032,5.8357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +629,2.8265,5.5732,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +630,2.7700,10.5633,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +631,2.7545,10.4678,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +632,5.0032,5.8420,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +633,2.8265,5.5712,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +634,2.7700,10.5167,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +635,2.7545,10.4318,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +636,5.0032,5.7390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +637,2.8265,5.4420,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +638,2.7700,10.4436,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +639,2.7545,10.4229,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +640,5.0032,5.9824,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +641,2.8265,5.5713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +642,2.7700,10.4686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +643,2.7545,10.4622,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +644,5.0032,5.7968,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +645,2.8265,5.5972,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +646,2.7700,10.5261,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +647,2.7545,10.5599,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +648,5.0032,5.6654,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +649,2.8265,5.5345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +650,2.7700,10.4125,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +651,2.7545,10.4171,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +652,5.0032,5.7006,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +653,2.8265,5.5135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +654,2.7700,10.6666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +655,2.7545,10.6545,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +656,5.0032,5.8092,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +657,2.8265,5.5664,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,2.7700,10.3520,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +659,2.7545,10.3359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +660,5.0032,5.7454,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +661,2.8265,5.5645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.7700,10.3618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +663,2.7545,10.3309,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +664,5.0032,5.7399,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.8265,5.5495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.7700,10.4495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.7545,10.3440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +668,5.0032,5.8127,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.8265,5.6328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.7700,10.5388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.7545,10.4995,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +672,5.0032,5.9155,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.8265,5.6238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.7700,10.4840,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.7545,10.4124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +676,5.0032,5.9115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.8265,5.5710,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.7700,10.5029,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.7545,10.4431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +680,5.0032,5.9358,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.8265,5.6912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.7700,10.5284,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +683,2.7545,10.4826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.0032,6.0761,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.8265,5.7647,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.7700,10.5400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.7545,10.4582,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.0032,6.0173,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.8265,5.6530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.7700,10.4103,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.7545,10.3756,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.0032,5.9945,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.8265,5.8157,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.7700,10.7695,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.7545,10.6436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.0032,10.6685,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.8265,8.8861,0.0834,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.7700,8.4150,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.7545,9.6628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +700,5.0032,7.9659,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.8265,6.9268,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.7700,11.0510,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.7545,10.8127,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.0032,7.5612,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.8265,6.3411,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.7700,10.3938,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.7545,10.1440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.0032,6.8633,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.8265,6.2206,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.7700,10.8548,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.7545,10.5823,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.0032,6.7548,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.8265,5.9287,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.7700,10.4305,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.7545,9.9702,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.0032,6.8477,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.8265,5.8673,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.7700,9.9762,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.7545,9.7841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.0032,6.2850,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.8265,5.7657,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.7700,10.6442,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.7545,10.5328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.0032,6.2694,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.8265,5.8884,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.7700,12.1743,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +727,2.7545,12.0662,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.0032,17.9505,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.8265,16.9460,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.7700,30.8988,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.7545,30.8126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.0032,33.1378,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.8265,32.1244,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.7700,40.8591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.7545,39.6626,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.0032,35.2415,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.8265,34.4815,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.7700,39.4502,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.7545,38.9710,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.0032,31.2927,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.8265,28.9609,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.7700,35.5803,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.7545,35.2722,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.0032,33.8069,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.8265,32.3770,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.7700,41.2920,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.7545,41.1974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.0032,32.7440,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.8265,31.9466,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.7700,40.0989,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.7545,40.0564,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.0032,34.7388,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.8265,33.9798,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.7700,41.0977,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.7545,40.9451,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.0032,35.0645,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.8265,34.1224,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.7700,41.3531,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.7545,40.7004,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.0032,34.0616,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.8265,33.2030,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.7700,38.1479,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.7545,37.9110,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.0032,29.5075,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.8265,28.3154,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.7700,36.8347,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.7545,36.3713,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.0032,33.7543,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.8265,32.8964,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.7700,40.8618,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +771,2.7545,40.4469,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.0032,32.6448,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.8265,31.7244,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.7700,38.7389,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.7545,38.2260,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.0032,34.5730,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.8265,33.7895,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.7700,41.1883,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.7545,40.9268,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.0032,36.2571,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.8265,34.6424,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.7700,39.3766,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.7545,38.9320,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.0032,30.3484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.8265,28.2670,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.7700,36.9827,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.7545,36.2934,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.0032,32.3137,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.8265,30.9430,0.0385,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.7700,38.6015,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.7545,38.0372,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.0032,33.9495,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.8265,33.2229,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.7700,40.5665,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.7545,40.0900,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.0032,34.1759,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.8265,33.3205,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.7700,38.3495,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.7545,38.0540,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.0032,28.2601,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.8265,27.3528,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.7700,37.7159,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.7545,37.2723,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.0032,33.2588,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.8265,32.3749,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.7700,40.2670,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.7545,39.8141,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.0032,33.3362,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.8265,31.8295,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.7700,39.3665,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.7545,39.0929,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.0032,34.5743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.8265,33.8045,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.7700,41.7160,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.7545,41.5123,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.0032,34.9594,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.8265,34.4647,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.7700,40.2650,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.7545,40.0688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.0032,32.8110,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.8265,31.3607,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.7700,36.7418,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.7545,36.3873,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.0032,32.3150,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.8265,31.5079,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.7700,40.0732,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.7545,39.7736,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.0032,35.3784,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.8265,34.5548,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.7700,41.8950,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.7545,41.9062,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.0032,36.7978,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.8265,36.0464,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.7700,42.2608,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.7545,42.0834,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.0032,35.0310,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.8265,34.2289,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.7700,38.9132,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.7545,38.7545,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.0032,29.6705,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.8265,28.4636,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.7700,37.1820,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.7545,36.8895,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.0032,32.7717,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.8265,31.5732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.7700,39.2067,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.7545,38.9567,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.0032,32.5013,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.8265,31.8962,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.7700,39.6747,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.7545,39.3581,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.0032,34.4317,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.8265,33.8912,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.7700,39.1849,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.7545,38.9671,0.0271,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.0032,28.3087,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.8265,27.8431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.7700,36.3308,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.7545,36.2037,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.0032,31.5785,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.8265,30.8693,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.7700,40.9566,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.7545,40.7284,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.0032,36.8527,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.8265,36.0969,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.7700,40.2736,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.7545,39.8543,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.0032,27.7801,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.8265,26.9368,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.7700,37.0505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.7545,36.5738,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.0032,31.3314,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.8265,30.2890,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.7700,39.6404,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.7545,37.5925,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.0032,34.4843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.8265,33.5490,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.7700,41.6326,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.7545,41.1930,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.0032,33.6207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.8265,32.5314,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.7700,40.8758,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.7545,40.3626,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.0032,35.1143,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.8265,34.0665,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.7700,39.6797,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.7545,39.4267,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.0032,29.2151,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.8265,28.4447,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.7700,38.7967,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.7545,38.4265,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.0032,32.0776,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.8265,31.0783,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.7700,39.8498,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.7545,39.4660,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.0032,34.5184,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.8265,33.3600,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.7700,40.4069,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.7545,39.9271,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.0032,33.6394,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +901,2.8265,32.8633,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,2.7700,41.5588,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +903,2.7545,41.2280,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +904,5.0032,30.1931,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +905,2.8265,28.5899,0.1600,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,2.7700,42.9721,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +907,2.7545,42.4098,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +908,5.0032,32.0928,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +909,2.8265,30.9085,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,2.7700,38.8689,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +911,2.7545,38.5363,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +912,5.0032,32.0812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,2.8265,31.0628,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,2.7700,38.2887,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,2.7545,37.7123,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +916,5.0032,33.1674,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,2.8265,32.7359,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,2.7700,37.9581,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,2.7545,37.5363,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,5.0032,30.0202,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,2.8265,28.7852,0.0434,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,2.7700,36.6187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,2.7545,35.8829,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,5.0032,31.5328,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,2.8265,29.8597,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,2.7700,39.0592,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,2.7545,38.5868,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,5.0032,35.3400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,2.8265,34.4590,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,2.7700,42.8393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,2.7545,42.3261,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,5.0032,32.5431,0.0249,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,2.8265,31.9874,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,2.7700,41.8417,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,2.7545,41.4753,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,5.0032,36.8176,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,2.8265,36.0063,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,2.7700,41.5585,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,2.7545,41.3095,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,5.0032,29.2712,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,2.8265,28.0554,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,2.7700,34.0871,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.7545,33.4830,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,5.0032,32.2595,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,2.8265,31.1307,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,2.7700,38.8902,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,2.7545,38.4858,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,5.0032,35.4163,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,2.8265,34.6646,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,2.7700,42.2698,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,2.7545,41.8475,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,5.0032,35.7938,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,2.8265,35.1236,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,2.7700,42.4358,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,2.7545,42.1045,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,5.0032,33.2091,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.8265,32.7207,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,2.7700,37.8700,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,2.7545,37.4367,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,5.0032,28.1127,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.8265,27.3267,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.7700,35.6182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +963,2.7545,35.2255,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.0032,32.7872,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.8265,31.8686,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.7700,40.1577,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.7545,39.7516,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.0032,31.9288,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.8265,31.4520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.7700,39.1350,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.7545,38.9637,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.0032,32.8293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.8265,32.5066,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.7700,37.3092,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.7545,37.2032,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +976,5.0032,26.9748,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.8265,26.8422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.7700,35.7171,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.7545,35.6065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.0032,31.6328,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.8265,31.4735,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.7700,39.0870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.7545,38.9654,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.0032,29.5645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.8265,29.3780,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.7700,38.5750,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.7545,38.4267,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.0032,35.1104,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.8265,34.8708,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.7700,41.5860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.7545,41.4002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.0032,31.4268,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.8265,31.1941,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.7700,38.9488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.7545,38.8417,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.0032,33.6205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.8265,33.3378,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.7700,38.3789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.7545,38.2733,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.0032,26.8618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.8265,26.7855,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.7700,35.4638,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.7545,35.4717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.0032,31.7710,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.8265,31.7577,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.7700,40.8210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.7545,40.7418,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.0032,30.6837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.8265,30.5473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.7700,38.6281,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.7545,38.5844,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.0032,32.5705,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.8265,32.5455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.7700,39.7940,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.7545,39.7027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.0032,33.3944,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.8265,32.8644,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.7700,38.1120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.7545,37.9535,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.0032,28.2593,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.8265,28.0838,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.7700,36.3632,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.7545,36.1225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.0032,30.8688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.8265,30.4903,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.7700,39.5328,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.7545,39.3616,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.0032,32.6355,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.8265,32.0470,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.7700,37.1759,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.7545,36.8250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.0032,27.0810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.8265,26.7643,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.7700,35.5532,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.7545,35.1451,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.0032,31.0089,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.8265,30.6919,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.7700,39.9793,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.7545,39.6114,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.0032,33.9546,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.8265,33.2909,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.7700,41.0481,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.7545,40.7697,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.0032,33.8136,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.8265,32.9936,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.7700,41.2785,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.7545,40.7751,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.0032,34.1743,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.8265,33.6408,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.7700,38.3900,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.7545,37.8858,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.0032,28.9095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.8265,28.0529,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.7700,38.6995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.7545,38.0358,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.0032,33.1571,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.8265,32.5983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.7700,41.2288,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.7545,40.9837,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.0032,34.2404,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.8265,32.8496,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.7700,40.4582,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.7545,40.1905,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0032,35.7204,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.8265,35.1985,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.7700,43.0511,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.7545,42.5713,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.0032,35.0228,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.8265,34.0979,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.7700,41.2979,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.7545,40.9567,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.0032,33.4945,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.8265,32.5022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.7700,37.3479,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.7545,37.0910,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.0032,29.3017,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.8265,28.3035,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.7700,37.2227,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.7545,37.0711,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.0032,34.0241,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.8265,33.0562,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.7700,41.1815,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.7545,40.7007,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.0032,32.6429,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.8265,31.5836,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.7700,37.1128,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.7545,36.6704,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.0032,31.2123,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.8265,30.8263,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.7700,36.1080,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.7545,37.3103,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.0032,33.0728,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.8265,31.9941,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.7700,41.3005,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.7545,41.0184,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.0032,33.8003,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.8265,33.0296,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.7700,41.2146,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.7545,40.9188,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.0032,34.7965,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.8265,33.0140,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.7700,38.9150,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.7545,38.4858,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.0032,28.9046,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.8265,28.2748,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.7700,40.2869,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.7545,39.8461,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.0032,33.7341,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.8265,32.8739,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.7700,40.8355,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.7545,40.4882,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.0032,31.2140,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.8265,30.2403,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.7700,38.3575,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.7545,37.9684,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.0032,34.6509,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.8265,34.0910,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.7700,42.5679,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.7545,42.2809,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.0032,35.7589,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.8265,35.1603,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.7700,40.6775,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.7545,40.4683,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.0032,28.9812,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.8265,28.2708,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.7700,36.3666,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.7545,36.0949,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.0032,31.9464,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.8265,31.3919,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.7700,38.3522,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.7545,37.7555,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.0032,32.2962,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.8265,31.7607,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.7700,40.4960,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.7545,39.9152,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.0032,36.0625,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.8265,35.1913,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.7700,42.4855,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.7545,42.0350,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.0032,32.5425,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.8265,32.0824,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.7700,36.5553,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.7545,38.0805,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.0032,28.3088,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.8265,27.4970,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.7700,35.8836,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.7545,35.6817,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.0032,32.0407,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.8265,31.2448,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.7700,40.8204,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.7545,40.5117,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.0032,34.5470,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.8265,33.7040,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.7700,41.2055,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.7545,40.8344,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.0032,33.2887,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.8265,32.7122,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.7700,42.3721,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.7545,42.0973,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.0032,35.6256,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.8265,35.1045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.7700,39.9919,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.7545,39.6712,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.0032,29.9932,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.8265,25.4183,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.7700,35.2300,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.7545,35.1722,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.0032,34.4622,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.8265,34.1911,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.7700,41.5317,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.7545,41.3113,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.0032,33.0071,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.8265,32.1715,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.7700,34.2062,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.7545,33.2464,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.0032,28.9568,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.8265,27.9174,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.7700,36.0286,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.7545,35.8060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.0032,31.9851,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.8265,31.2782,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.7700,40.6983,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.7545,40.4861,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.0032,34.8400,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.8265,33.7387,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.7700,41.5166,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.7545,41.0596,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.0032,34.2544,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.8265,33.6616,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.7700,39.0162,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.7545,38.7287,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.0032,29.9009,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.8265,29.2654,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.7700,38.3697,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.7545,38.0098,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.0032,38.2167,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.8265,38.4381,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.7700,52.0146,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.7545,51.9954,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.txt b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.txt new file mode 100644 index 0000000..7b08847 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.041 +effective_logical_fps=59.517 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=24.671 +p95_encode_latency_ms=43.489 +max_encode_latency_ms=102.034 +avg_steady_encode_latency_ms=23.766 +p95_steady_encode_latency_ms=42.844 +max_steady_encode_latency_ms=53.580 +avg_tile_encode_latency_ms=20.493 +p95_tile_encode_latency_ms=41.310 +avg_max_tile_encode_latency_ms=23.391 +p95_max_tile_encode_latency_ms=42.275 +avg_steady_max_tile_encode_latency_ms=22.704 +p95_steady_max_tile_encode_latency_ms=41.588 +payload_bytes=1629483 +send_target=none +csv=benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s_logical.csv b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s_logical.csv new file mode 100644 index 0000000..39a71d8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/60mbps_unlimited_5s_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,102.0343,28.2452,254680 +1,4,0,10.8954,10.4642,75429 +2,4,0,20.6597,20.3944,71740 +3,4,0,30.3754,30.1182,99687 +4,4,0,40.5037,40.2272,110030 +5,4,0,50.4445,50.2209,117866 +6,4,0,60.3967,60.1226,53093 +7,4,0,70.5687,65.9852,27359 +8,4,0,63.6475,62.3895,20460 +9,4,0,55.7846,55.4507,18852 +10,4,0,49.4599,49.1731,12000 +11,4,0,42.7529,42.4050,8849 +12,4,0,36.1103,35.6974,7660 +13,4,0,29.4256,29.0254,5308 +14,4,0,22.8577,22.3257,5262 +15,4,0,16.2855,15.8410,3190 +16,4,0,11.0808,10.4102,2652 +17,4,0,11.2112,10.5813,2617 +18,4,0,11.0304,10.4711,2603 +19,4,0,11.4170,10.7616,2626 +20,4,0,11.8784,9.9545,2650 +21,4,0,12.1570,10.5067,2598 +22,4,0,12.8471,9.5595,2598 +23,4,0,11.3948,10.2972,2598 +24,4,0,11.9990,10.0545,2603 +25,4,0,12.0687,10.7575,2598 +26,4,0,12.8475,11.0938,2612 +27,4,0,11.5352,10.3502,2598 +28,4,0,11.7545,10.1865,2598 +29,4,0,11.9348,10.3174,2598 +30,4,0,14.9161,10.1148,2598 +31,4,0,11.1068,10.3692,2603 +32,4,0,11.4159,10.4920,2598 +33,4,0,11.5895,10.4161,2598 +34,4,0,14.5256,12.8105,2598 +35,4,0,11.9286,10.5495,2598 +36,4,0,13.0538,11.4908,2598 +37,4,0,14.1528,12.6085,2598 +38,4,0,11.6680,10.5040,2598 +39,4,0,11.7062,10.1752,2598 +40,4,0,12.8712,8.0861,2598 +41,4,0,12.2167,10.9126,2598 +42,4,0,11.7900,10.3596,2602 +43,4,0,12.0180,10.6760,2598 +44,4,0,11.5165,10.3652,2598 +45,4,0,11.6678,10.2600,2598 +46,4,0,13.5309,12.0190,2598 +47,4,0,11.9600,10.7192,2598 +48,4,0,11.7551,10.2227,2598 +49,4,0,15.3154,13.8673,2598 +50,4,0,11.7845,10.4264,2598 +51,4,0,14.0453,12.5299,2598 +52,4,0,13.7589,12.5755,2598 +53,4,0,11.3682,10.2646,2598 +54,4,0,11.2874,10.5092,2598 +55,4,0,11.1417,10.5128,2598 +56,4,0,10.9278,10.3673,2598 +57,4,0,10.8901,10.3477,2598 +58,4,0,11.0726,10.5468,2598 +59,4,0,10.9394,10.4880,2598 +60,4,0,11.2379,10.6422,2598 +61,4,0,10.8797,10.4205,2598 +62,4,0,11.0787,10.4795,2598 +63,4,0,10.9122,10.3416,2598 +64,4,0,11.0156,10.4439,2598 +65,4,0,10.9697,10.4468,2598 +66,4,0,11.3664,10.3834,2598 +67,4,0,11.2228,10.2602,2598 +68,4,0,11.0905,10.5504,2598 +69,4,0,11.1735,10.5333,2598 +70,4,0,10.9554,10.5406,2598 +71,4,0,11.0325,10.4875,2598 +72,4,0,10.7683,10.3011,2598 +73,4,0,11.0967,10.5407,2598 +74,4,0,11.2335,10.4723,2598 +75,4,0,11.0075,10.3963,2598 +76,4,0,10.7668,10.2993,2598 +77,4,0,10.7089,10.2458,2598 +78,4,0,10.8699,10.2659,2598 +79,4,0,11.0095,10.4654,2598 +80,4,0,11.0571,10.5425,2598 +81,4,0,11.0128,10.4914,2598 +82,4,0,10.9008,10.3663,2598 +83,4,0,11.0656,10.5070,2598 +84,4,0,11.1392,10.6023,2598 +85,4,0,11.1283,10.6323,2598 +86,4,0,10.9850,10.4107,2598 +87,4,0,11.0976,10.5373,2598 +88,4,0,10.9851,10.4796,2598 +89,4,0,10.9838,10.4525,2598 +90,4,0,11.0792,10.5469,2598 +91,4,0,10.9825,10.4829,2598 +92,4,0,10.9764,10.4574,2598 +93,4,0,11.0445,10.5843,2598 +94,4,0,10.9309,10.4665,2598 +95,4,0,10.8542,10.3725,2598 +96,4,0,10.9133,10.3636,2598 +97,4,0,11.1013,10.5946,2598 +98,4,0,11.3685,10.2032,2598 +99,4,0,11.0580,10.3770,2598 +100,4,0,10.8905,10.4249,2598 +101,4,0,11.0952,10.6614,2598 +102,4,0,11.1259,10.4669,2598 +103,4,0,11.0179,10.5183,2598 +104,4,0,10.7658,10.2809,2598 +105,4,0,10.9642,10.4535,2598 +106,4,0,11.1960,10.5902,2598 +107,4,0,11.1070,10.4473,2598 +108,4,0,11.2673,10.7105,2598 +109,4,0,11.1770,10.5036,2598 +110,4,0,11.0496,10.4823,2598 +111,4,0,11.0361,10.4978,2598 +112,4,0,11.0715,10.5066,2598 +113,4,0,11.2655,10.7235,2598 +114,4,0,10.9992,10.4495,2598 +115,4,0,12.5160,10.4694,2598 +116,4,0,11.1722,10.6404,2598 +117,4,0,10.9126,10.4756,2598 +118,4,0,11.0307,10.4461,2598 +119,4,0,11.1850,10.5650,2598 +120,4,0,11.0551,10.4730,2598 +121,4,0,11.1936,10.4089,2598 +122,4,0,11.0325,10.3649,2598 +123,4,0,11.2467,10.5145,2598 +124,4,0,11.0175,10.4689,2598 +125,4,0,11.0029,10.5013,2598 +126,4,0,10.9772,10.4139,2598 +127,4,0,10.9393,10.3498,2598 +128,4,0,11.0165,10.4212,2598 +129,4,0,10.9708,10.4108,2598 +130,4,0,10.9760,10.4085,2598 +131,4,0,11.0387,10.4795,2598 +132,4,0,11.2396,10.6312,2598 +133,4,0,11.0523,10.4977,2598 +134,4,0,10.9910,10.4584,2598 +135,4,0,10.9005,10.3392,2598 +136,4,0,11.1696,10.5048,2598 +137,4,0,11.1886,10.6015,2598 +138,4,0,11.0334,10.4828,2598 +139,4,0,11.0031,10.4818,2598 +140,4,0,10.9569,10.5264,2598 +141,4,0,10.9330,10.4465,2598 +142,4,0,10.9460,10.4213,2598 +143,4,0,11.2224,10.7215,2598 +144,4,0,11.1536,10.6319,2598 +145,4,0,11.0080,10.4587,2598 +146,4,0,10.9380,10.4994,2598 +147,4,0,10.9375,10.3948,2598 +148,4,0,11.2614,10.6632,2598 +149,4,0,10.9858,10.4272,2598 +150,4,0,10.9505,10.4852,2598 +151,4,0,11.2136,10.5705,2598 +152,4,0,11.1496,10.5704,2598 +153,4,0,11.0199,10.4120,2598 +154,4,0,10.8535,10.3395,2598 +155,4,0,10.9052,10.3853,2598 +156,4,0,10.9373,10.3911,2598 +157,4,0,11.0186,10.5633,2598 +158,4,0,10.9682,10.5167,2598 +159,4,0,11.0062,10.4436,2598 +160,4,0,11.2040,10.4686,2598 +161,4,0,11.0757,10.5599,2598 +162,4,0,10.8398,10.4171,2598 +163,4,0,11.0800,10.6666,2598 +164,4,0,10.8070,10.3520,2598 +165,4,0,10.8649,10.3618,2598 +166,4,0,10.8778,10.4495,2598 +167,4,0,11.0056,10.5388,2598 +168,4,0,11.0683,10.4840,2598 +169,4,0,11.2167,10.5029,2598 +170,4,0,11.1318,10.5284,2598 +171,4,0,11.2541,10.5400,2598 +172,4,0,11.2356,10.4103,2598 +173,4,0,11.6419,10.7695,2598 +174,4,0,13.2369,10.6685,2598 +175,4,0,12.3466,11.0510,2598 +176,4,0,12.5057,10.3938,2598 +177,4,0,12.0541,10.8548,2598 +178,4,0,11.8650,10.4305,2598 +179,4,0,11.8732,9.9762,2598 +180,4,0,11.5105,10.6442,2598 +181,4,0,12.9052,12.1743,2598 +182,4,0,32.9122,30.8988,2598 +183,4,0,42.5155,40.8591,2598 +184,4,0,40.6469,39.4502,2598 +185,4,0,38.6997,35.5803,2598 +186,4,0,42.9932,41.2920,2598 +187,4,0,41.4495,40.0989,2598 +188,4,0,42.7526,41.0977,2598 +189,4,0,42.8408,41.3531,2598 +190,4,0,39.3997,38.1479,2598 +191,4,0,38.9032,36.8347,2598 +192,4,0,42.7267,40.8618,2598 +193,4,0,40.4049,38.7389,2598 +194,4,0,42.0970,41.1883,2598 +195,4,0,41.3752,39.3766,2598 +196,4,0,39.2600,36.9827,2598 +197,4,0,40.2629,38.6015,2598 +198,4,0,42.3533,40.5665,2598 +199,4,0,39.3085,38.3495,2598 +200,4,0,38.9618,37.7159,2598 +201,4,0,41.7436,40.2670,2598 +202,4,0,41.2288,39.3665,2598 +203,4,0,42.6213,41.7160,2598 +204,4,0,41.0480,40.2650,2598 +205,4,0,40.9447,36.7418,2598 +206,4,0,41.6221,40.0732,2598 +207,4,0,43.3747,41.9062,2598 +208,4,0,43.7211,42.2608,2598 +209,4,0,40.3652,38.9132,2598 +210,4,0,39.2160,37.1820,2598 +211,4,0,41.0887,39.2067,2598 +212,4,0,40.9070,39.6747,2598 +213,4,0,40.0239,39.1849,2598 +214,4,0,37.3306,36.3308,2598 +215,4,0,42.0035,40.9566,2598 +216,4,0,41.2805,40.2736,2598 +217,4,0,38.0375,37.0505,2598 +218,4,0,40.6806,39.6404,2598 +219,4,0,42.7362,41.6326,2598 +220,4,0,42.1376,40.8758,2598 +221,4,0,40.7605,39.6797,2598 +222,4,0,40.1034,38.7967,2598 +223,4,0,41.3137,39.8498,2598 +224,4,0,41.7221,40.4069,2598 +225,4,0,42.4877,41.5588,2598 +226,4,0,44.8018,42.9721,2598 +227,4,0,41.0288,38.8689,2598 +228,4,0,39.3707,38.2887,2598 +229,4,0,38.4511,37.9581,2598 +230,4,0,38.1297,36.6187,2598 +231,4,0,41.4733,39.0592,2598 +232,4,0,43.9012,42.8393,2598 +233,4,0,42.7969,41.8417,2598 +234,4,0,42.8175,41.5585,2598 +235,4,0,37.0732,34.0871,2598 +236,4,0,40.6152,38.8902,2598 +237,4,0,43.3997,42.2698,2598 +238,4,0,43.6313,42.4358,2598 +239,4,0,38.8672,37.8700,2598 +240,4,0,36.9081,35.6182,2598 +241,4,0,41.5579,40.1577,2598 +242,4,0,39.9647,39.1350,2598 +243,4,0,37.8925,37.3092,2598 +244,4,0,36.1662,35.7171,2598 +245,4,0,39.4346,39.0870,2598 +246,4,0,38.9800,38.5750,2598 +247,4,0,42.0397,41.5860,2598 +248,4,0,39.3994,38.9488,2598 +249,4,0,38.8744,38.3789,2598 +250,4,0,36.0682,35.4717,2598 +251,4,0,41.1817,40.8210,2598 +252,4,0,39.0044,38.6281,2598 +253,4,0,40.2055,39.7940,2598 +254,4,0,38.4179,38.1120,2598 +255,4,0,36.7362,36.3632,2598 +256,4,0,40.1689,39.5328,2598 +257,4,0,37.6996,37.1759,2598 +258,4,0,35.9880,35.5532,2598 +259,4,0,40.7220,39.9793,2598 +260,4,0,42.1235,41.0481,2598 +261,4,0,42.4786,41.2785,2598 +262,4,0,39.5997,38.3900,2598 +263,4,0,39.8594,38.6995,2598 +264,4,0,42.3272,41.2288,2598 +265,4,0,42.4247,40.4582,2598 +266,4,0,44.0388,43.0511,2598 +267,4,0,42.7483,41.2979,2598 +268,4,0,38.8670,37.3479,2598 +269,4,0,38.8249,37.2227,2598 +270,4,0,42.7759,41.1815,2598 +271,4,0,38.7293,37.1128,2598 +272,4,0,38.9858,37.3103,2598 +273,4,0,42.5152,41.3005,2598 +274,4,0,42.4515,41.2146,2598 +275,4,0,41.2785,38.9150,2598 +276,4,0,41.6991,40.2869,2598 +277,4,0,42.2474,40.8355,2598 +278,4,0,39.7413,38.3575,2598 +279,4,0,43.5064,42.5679,2598 +280,4,0,41.4429,40.6775,2598 +281,4,0,37.8553,36.3666,2598 +282,4,0,39.5243,38.3522,2598 +283,4,0,41.5699,40.4960,2598 +284,4,0,43.6286,42.4855,2598 +285,4,0,39.7035,38.0805,2598 +286,4,0,37.2326,35.8836,2598 +287,4,0,42.1537,40.8204,2598 +288,4,0,42.5306,41.2055,2598 +289,4,0,43.4884,42.3721,2598 +290,4,0,40.9574,39.9919,2598 +291,4,0,40.6175,35.2300,2598 +292,4,0,42.9011,41.5317,2598 +293,4,0,38.2985,34.2062,2598 +294,4,0,37.8290,36.0286,2598 +295,4,0,41.7308,40.6983,2598 +296,4,0,42.9217,41.5166,2598 +297,4,0,40.2566,39.0162,2598 +298,4,0,39.6249,38.3697,2598 +299,4,0,53.5797,52.0146,2598 diff --git a/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/summary.md b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/summary.md new file mode 100644 index 0000000..2bee560 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/summary.md @@ -0,0 +1,9 @@ +# Tiled 5K60 PTS Fix Probe + +| Case | Frames | Effective fps | Avg logical ms | P95 logical ms | Steady avg ms | Steady p95 ms | Steady max-tile p95 ms | Payload bytes | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---:|---| +| 120mbps_inflight1_5s | 300 | 43.869 | 20.507 | 33.718 | 20.825 | 33.718 | 31.407 | 1963652 | FAIL | +| 120mbps_unlimited_5s | 300 | 59.521 | 24.841 | 44.951 | 23.708 | 43.664 | 42.498 | 1963652 | FAIL | +| 30mbps_inflight1_5s | 300 | 44.157 | 19.992 | 32.797 | 20.291 | 32.797 | 30.955 | 1391053 | FAIL | +| 30mbps_unlimited_5s | 300 | 59.533 | 24.948 | 43.802 | 23.942 | 43.094 | 41.982 | 1391053 | FAIL | +| 60mbps_unlimited_5s | 300 | 59.517 | 24.671 | 43.489 | 23.766 | 42.844 | 41.588 | 1629483 | FAIL | diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.csv new file mode 100644 index 0000000..b1e49ac --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.3625,29.4510,0.0236,0.0000,0,0,0.0000,0,0.0000,0,1,0,51734,0 +1,2.8395,24.9000,0.0082,0.0000,0,0,0.0000,0,0.0000,0,1,0,40146,0 +2,2.9107,25.1965,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,46855,0 +3,2.8969,25.2667,0.0455,0.0000,0,0,0.0000,0,0.0000,0,1,0,54173,0 +4,5.3625,5.9012,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,14986,0 +5,2.8395,5.8002,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11275,0 +6,2.9107,10.8125,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,19376,0 +7,2.8969,10.7712,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20764,0 +8,5.3625,15.9270,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10560,0 +9,2.8395,15.8645,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,14459,0 +10,2.9107,20.8376,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14750,0 +11,2.8969,20.8341,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17834,0 +12,5.3625,25.8416,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,21768,0 +13,2.8395,25.8245,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19304,0 +14,2.9107,30.8184,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19734,0 +15,2.8969,30.8153,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23063,0 +16,5.3625,35.9291,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,23328,0 +17,2.8395,35.8822,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20961,0 +18,2.9107,40.9291,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,23006,0 +19,2.8969,40.9351,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,27103,0 +20,5.3625,45.8915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10127,0 +21,2.8395,46.2390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10085,0 +22,2.9107,50.9078,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12819,0 +23,2.8969,51.2519,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20741,0 +24,5.3625,55.9895,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6518,0 +25,2.8395,56.3105,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6208,0 +26,2.9107,60.9291,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8053,0 +27,2.8969,61.2690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4796,0 +28,5.3625,66.2842,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +29,2.8395,62.9087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3555,0 +30,2.9107,67.6455,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5727,0 +31,2.8969,62.7848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3896,0 +32,5.3625,64.3026,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2834,0 +33,2.8395,62.6858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +34,2.9107,67.4369,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3255,0 +35,2.8969,62.7268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2957,0 +36,5.3625,58.1855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2667,0 +37,2.8395,58.3978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2512,0 +38,2.9107,63.1166,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3176,0 +39,2.8969,62.9281,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2530,0 +40,5.3625,48.6165,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2286,0 +41,2.8395,48.9142,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2035,0 +42,2.9107,53.4761,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1163,0 +43,2.8969,54.1662,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2637,0 +44,5.3625,45.5692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +45,2.8395,46.2052,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +46,2.9107,50.5033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1070,0 +47,2.8969,51.5070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2231,0 +48,5.3625,39.3338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +49,2.8395,40.1111,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,2.9107,44.1632,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +51,2.8969,45.0517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1723,0 +52,5.3625,29.4253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +53,2.8395,30.9760,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,892,0 +54,2.9107,34.3374,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,936,0 +55,2.8969,35.8743,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +56,5.3625,24.2344,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1146,0 +57,2.8395,25.7122,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +58,2.9107,29.0737,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1220,0 +59,2.8969,30.5912,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +60,5.3625,20.2781,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +61,2.8395,21.6934,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +62,2.9107,25.1780,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +63,2.8969,26.5609,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +64,5.3625,13.9603,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +65,2.8395,15.0435,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +66,2.9107,18.2971,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1225,0 +67,2.8969,19.5821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,855,0 +68,5.3625,5.9742,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +69,2.8395,6.4255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +70,2.9107,10.8127,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1135,0 +71,2.8969,11.6452,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1032,0 +72,5.3625,7.0047,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +73,2.8395,5.9839,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +74,2.9107,10.2715,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +75,2.8969,10.4314,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,921,0 +76,5.3625,6.2385,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +77,2.8395,5.9151,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,581,0 +78,2.9107,10.4208,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,991,0 +79,2.8969,10.3186,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1246,0 +80,5.3625,6.5957,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +81,2.8395,6.0147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,567,0 +82,2.9107,10.2785,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1380,0 +83,2.8969,9.9458,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +84,5.3625,6.7138,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +85,2.8395,6.0469,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,564,0 +86,2.9107,10.2367,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +87,2.8969,10.2252,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +88,5.3625,6.7262,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +89,2.8395,6.0632,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,571,0 +90,2.9107,10.1412,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +91,2.8969,10.4115,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +92,5.3625,6.3719,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,642,0 +93,2.8395,5.9646,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,572,0 +94,2.9107,10.1950,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,658,0 +95,2.8969,10.5168,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +96,5.3625,6.3577,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,621,0 +97,2.8395,5.9921,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,564,0 +98,2.9107,9.9114,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +99,2.8969,10.1729,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +100,5.3625,6.4918,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +101,2.8395,5.9932,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,561,0 +102,2.9107,9.9990,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +103,2.8969,10.3861,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +104,5.3625,6.4990,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +105,2.8395,5.8476,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +106,2.9107,10.6335,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +107,2.8969,10.4528,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1001,0 +108,5.3625,6.7674,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,596,0 +109,2.8395,6.0217,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,552,0 +110,2.9107,10.1739,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +111,2.8969,10.3187,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +112,5.3625,6.6075,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,565,0 +113,2.8395,5.9355,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,558,0 +114,2.9107,10.2126,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +115,2.8969,10.3921,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +116,5.3625,7.5827,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,568,0 +117,2.8395,6.6810,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,575,0 +118,2.9107,10.8346,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +119,2.8969,10.6964,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +120,5.3625,6.4340,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,584,0 +121,2.8395,5.8765,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,559,0 +122,2.9107,10.9260,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +123,2.8969,10.6095,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +124,5.3625,6.9955,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,581,0 +125,2.8395,6.3517,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,557,0 +126,2.9107,10.6753,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +127,2.8969,10.5478,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +128,5.3625,6.7043,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +129,2.8395,5.8635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,556,0 +130,2.9107,14.8105,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +131,2.8969,14.5610,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +132,5.3625,6.6888,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,593,0 +133,2.8395,5.7946,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,556,0 +134,2.9107,15.8201,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +135,2.8969,15.4821,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,915,0 +136,5.3625,6.7989,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,564,0 +137,2.8395,5.9155,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,560,0 +138,2.9107,14.7927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +139,2.8969,14.4283,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +140,5.3625,6.6571,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,553,0 +141,2.8395,6.0390,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,555,0 +142,2.9107,10.4456,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,661,0 +143,2.8969,10.3591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +144,5.3625,6.8972,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,552,0 +145,2.8395,6.0188,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,543,0 +146,2.9107,10.7995,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,661,0 +147,2.8969,10.5946,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,668,0 +148,5.3625,6.5440,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,543,0 +149,2.8395,6.0536,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,564,0 +150,2.9107,10.1375,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,670,0 +151,2.8969,10.0350,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,674,0 +152,5.3625,6.7387,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +153,2.8395,5.8958,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +154,2.9107,10.5380,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +155,2.8969,10.4431,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +156,5.3625,6.4092,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +157,2.8395,5.9485,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +158,2.9107,11.5513,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +159,2.8969,11.2093,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,691,0 +160,5.3625,6.6520,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +161,2.8395,5.9612,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +162,2.9107,10.6813,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +163,2.8969,10.6807,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +164,5.3625,6.9723,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +165,2.8395,6.0731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +166,2.9107,14.8936,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +167,2.8969,14.6654,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,670,0 +168,5.3625,6.7708,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +169,2.8395,5.9340,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +170,2.9107,14.3641,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,954,0 +171,2.8969,14.3482,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +172,5.3625,7.0907,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +173,2.8395,5.9830,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +174,2.9107,10.8097,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,642,0 +175,2.8969,10.5683,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +176,5.3625,6.8867,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +177,2.8395,5.8681,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +178,2.9107,10.8138,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +179,2.8969,15.6829,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,652,0 +180,5.3625,6.5623,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +181,2.8395,5.8494,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +182,2.9107,13.0205,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +183,2.8969,12.9405,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +184,5.3625,7.3976,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +185,2.8395,6.0340,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +186,2.9107,10.0842,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +187,2.8969,10.4670,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +188,5.3625,6.8005,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +189,2.8395,5.8725,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +190,2.9107,10.3966,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +191,2.8969,10.4511,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +192,5.3625,6.9035,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +193,2.8395,6.1914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +194,2.9107,15.2127,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +195,2.8969,15.2622,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +196,5.3625,6.7875,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +197,2.8395,5.9145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +198,2.9107,10.2103,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,691,0 +199,2.8969,13.8982,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +200,5.3625,6.6212,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +201,2.8395,5.8064,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +202,2.9107,10.7013,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +203,2.8969,10.4096,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +204,5.3625,7.1449,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +205,2.8395,5.8939,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +206,2.9107,10.5488,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,674,0 +207,2.8969,10.3093,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +208,5.3625,6.8303,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +209,2.8395,5.9633,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +210,2.9107,10.8725,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,661,0 +211,2.8969,10.6314,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +212,5.3625,6.9683,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +213,2.8395,6.1134,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +214,2.9107,11.1642,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +215,2.8969,11.1552,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +216,5.3625,6.8163,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +217,2.8395,6.0113,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +218,2.9107,10.1619,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +219,2.8969,9.5926,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +220,5.3625,6.4486,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +221,2.8395,5.9627,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +222,2.9107,10.3000,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +223,2.8969,10.1888,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +224,5.3625,6.5298,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +225,2.8395,6.0674,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +226,2.9107,10.2070,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +227,2.8969,10.1691,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +228,5.3625,6.3240,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +229,2.8395,5.7429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +230,2.9107,10.2338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,653,0 +231,2.8969,10.3886,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +232,5.3625,6.5658,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +233,2.8395,5.9389,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +234,2.9107,10.0634,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +235,2.8969,10.5006,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,652,0 +236,5.3625,6.2728,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +237,2.8395,5.9453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +238,2.9107,10.1049,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +239,2.8969,9.9923,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,668,0 +240,5.3625,6.3053,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +241,2.8395,5.9428,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +242,2.9107,10.2872,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +243,2.8969,10.4560,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,656,0 +244,5.3625,6.5294,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +245,2.8395,6.0487,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +246,2.9107,10.1837,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +247,2.8969,10.3563,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +248,5.3625,6.3327,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +249,2.8395,5.9817,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +250,2.9107,10.2480,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +251,2.8969,10.3146,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,641,0 +252,5.3625,6.7917,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +253,2.8395,6.1356,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +254,2.9107,9.8723,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +255,2.8969,10.2837,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +256,5.3625,6.3242,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +257,2.8395,6.2526,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +258,2.9107,9.8170,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,776,0 +259,2.8969,9.6393,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +260,5.3625,6.4913,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +261,2.8395,5.8980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +262,2.9107,10.6181,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +263,2.8969,10.4431,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +264,5.3625,6.8134,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +265,2.8395,5.9889,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +266,2.9107,10.3950,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +267,2.8969,10.3545,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +268,5.3625,6.8055,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +269,2.8395,6.0022,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +270,2.9107,10.4781,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +271,2.8969,10.6899,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,656,0 +272,5.3625,6.8758,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +273,2.8395,6.0613,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +274,2.9107,10.0959,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +275,2.8969,10.2560,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,667,0 +276,5.3625,6.5598,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +277,2.8395,5.9102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +278,2.9107,9.6885,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +279,2.8969,10.4830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +280,5.3625,6.0772,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +281,2.8395,5.8059,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +282,2.9107,10.5061,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +283,2.8969,10.5060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +284,5.3625,6.6415,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +285,2.8395,5.8833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +286,2.9107,14.4607,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,677,0 +287,2.8969,14.5793,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +288,5.3625,8.1794,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +289,2.8395,5.8252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +290,2.9107,10.2662,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +291,2.8969,10.4299,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +292,5.3625,6.7868,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +293,2.8395,5.9321,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +294,2.9107,10.3849,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,668,0 +295,2.8969,10.4442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +296,5.3625,6.5004,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +297,2.8395,5.8514,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +298,2.9107,11.1987,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +299,2.8969,11.2104,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +300,5.3625,7.3012,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +301,2.8395,5.9720,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +302,2.9107,10.4215,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +303,2.8969,10.3356,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +304,5.3625,6.8949,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +305,2.8395,5.9170,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +306,2.9107,10.8697,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +307,2.8969,10.5878,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +308,5.3625,6.7431,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +309,2.8395,5.9828,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +310,2.9107,10.2685,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +311,2.8969,10.7649,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +312,5.3625,6.4648,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +313,2.8395,5.9727,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +314,2.9107,10.2469,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +315,2.8969,10.2640,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +316,5.3625,6.5138,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +317,2.8395,6.1195,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +318,2.9107,10.0906,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,653,0 +319,2.8969,10.2212,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +320,5.3625,6.4095,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +321,2.8395,6.2153,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +322,2.9107,9.9328,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +323,2.8969,10.1695,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +324,5.3625,6.3696,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +325,2.8395,5.9093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +326,2.9107,10.5990,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +327,2.8969,10.6051,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +328,5.3625,6.4493,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +329,2.8395,5.9463,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +330,2.9107,10.0364,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +331,2.8969,10.1989,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +332,5.3625,6.5045,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +333,2.8395,5.9075,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +334,2.9107,10.0350,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +335,2.8969,10.1365,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +336,5.3625,6.6125,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +337,2.8395,6.0242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +338,2.9107,10.0114,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +339,2.8969,10.0959,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +340,5.3625,6.2558,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +341,2.8395,6.0356,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +342,2.9107,9.8519,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +343,2.8969,10.2745,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +344,5.3625,6.4290,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +345,2.8395,6.1784,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +346,2.9107,9.9727,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +347,2.8969,10.2067,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +348,5.3625,6.6452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +349,2.8395,5.8655,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +350,2.9107,9.7120,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +351,2.8969,10.1006,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +352,5.3625,6.2925,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +353,2.8395,6.3063,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +354,2.9107,7.0182,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +355,2.8969,9.7440,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +356,5.3625,6.7763,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +357,2.8395,6.0250,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +358,2.9107,9.9402,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +359,2.8969,10.1035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,680,0 +360,5.3625,6.8313,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +361,2.8395,5.8468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +362,2.9107,10.4968,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +363,2.8969,10.4298,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +364,5.3625,6.8613,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +365,2.8395,5.9900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +366,2.9107,10.4302,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +367,2.8969,10.8449,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +368,5.3625,6.4071,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +369,2.8395,6.1407,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +370,2.9107,10.8857,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +371,2.8969,10.8045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +372,5.3625,6.7428,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +373,2.8395,5.8173,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +374,2.9107,10.9712,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +375,2.8969,10.8646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +376,5.3625,6.1631,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +377,2.8395,5.7355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +378,2.9107,10.6833,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,642,0 +379,2.8969,10.5803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +380,5.3625,6.0879,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +381,2.8395,5.7971,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +382,2.9107,10.4127,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +383,2.8969,10.5034,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +384,5.3625,6.6768,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +385,2.8395,6.0003,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +386,2.9107,10.6671,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +387,2.8969,10.6105,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +388,5.3625,6.3829,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +389,2.8395,6.1718,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +390,2.9107,10.4286,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +391,2.8969,10.4066,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +392,5.3625,6.8543,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +393,2.8395,5.9819,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +394,2.9107,10.9162,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +395,2.8969,15.5753,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +396,5.3625,6.1598,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +397,2.8395,5.7014,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +398,2.9107,10.7861,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +399,2.8969,10.6028,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +400,5.3625,6.7087,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +401,2.8395,5.9431,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +402,2.9107,10.5805,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +403,2.8969,10.4157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +404,5.3625,7.2826,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +405,2.8395,5.8963,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +406,2.9107,10.9444,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +407,2.8969,10.7298,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +408,5.3625,6.2558,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +409,2.8395,6.0459,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +410,2.9107,9.9669,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +411,2.8969,10.4566,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +412,5.3625,11.9265,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +413,2.8395,6.0597,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +414,2.9107,15.3447,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +415,2.8969,15.3074,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +416,5.3625,8.0101,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +417,2.8395,5.8280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +418,2.9107,10.2498,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +419,2.8969,10.3601,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +420,5.3625,6.1990,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +421,2.8395,5.7283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +422,2.9107,10.2782,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +423,2.8969,9.9711,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +424,5.3625,7.1267,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +425,2.8395,5.9173,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +426,2.9107,12.2100,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +427,2.8969,12.0803,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +428,5.3625,6.3789,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +429,2.8395,5.8185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +430,2.9107,10.4555,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +431,2.8969,10.4112,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +432,5.3625,6.3906,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +433,2.8395,5.8796,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +434,2.9107,10.7468,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,690,0 +435,2.8969,10.1820,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +436,5.3625,6.7506,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +437,2.8395,5.9654,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +438,2.9107,15.2639,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +439,2.8969,14.9898,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +440,5.3625,6.5014,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +441,2.8395,5.7946,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +442,2.9107,14.3414,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +443,2.8969,14.2384,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +444,5.3625,6.8975,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +445,2.8395,5.8341,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +446,2.9107,14.0749,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +447,2.8969,13.9734,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +448,5.3625,6.4078,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +449,2.8395,6.2139,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +450,2.9107,7.9529,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +451,2.8969,10.3807,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +452,5.3625,6.5688,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +453,2.8395,5.8006,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +454,2.9107,11.1242,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +455,2.8969,10.9812,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +456,5.3625,7.0363,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +457,2.8395,6.1906,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +458,2.9107,11.0813,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +459,2.8969,11.0459,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +460,5.3625,6.6814,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +461,2.8395,5.8453,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +462,2.9107,10.6531,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +463,2.8969,16.2790,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +464,5.3625,6.6978,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +465,2.8395,5.8323,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +466,2.9107,12.1487,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +467,2.8969,12.1160,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +468,5.3625,6.5703,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +469,2.8395,6.6179,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +470,2.9107,9.7241,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +471,2.8969,9.8205,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +472,5.3625,6.7030,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +473,2.8395,5.8934,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +474,2.9107,10.4683,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +475,2.8969,10.4346,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +476,5.3625,6.7621,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +477,2.8395,5.8764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +478,2.9107,10.6388,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +479,2.8969,10.5757,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +480,5.3625,6.8413,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +481,2.8395,6.4128,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +482,2.9107,11.0203,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +483,2.8969,10.9671,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +484,5.3625,7.0239,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +485,2.8395,5.9826,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +486,2.9107,12.4620,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +487,2.8969,12.2297,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +488,5.3625,6.7871,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +489,2.8395,6.2527,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +490,2.9107,11.3698,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +491,2.8969,10.7763,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +492,5.3625,6.7226,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +493,2.8395,5.8515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +494,2.9107,10.6407,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +495,2.8969,10.5475,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +496,5.3625,6.8483,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +497,2.8395,5.9509,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +498,2.9107,10.4540,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +499,2.8969,10.6865,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +500,5.3625,6.5995,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +501,2.8395,5.8730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +502,2.9107,10.6280,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +503,2.8969,10.4054,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +504,5.3625,7.3502,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +505,2.8395,6.0743,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +506,2.9107,10.5457,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +507,2.8969,10.3931,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +508,5.3625,6.5617,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +509,2.8395,5.8340,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +510,2.9107,10.3087,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +511,2.8969,10.3831,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +512,5.3625,6.9026,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +513,2.8395,5.9487,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +514,2.9107,16.5902,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +515,2.8969,16.3517,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +516,5.3625,6.4241,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +517,2.8395,5.8293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +518,2.9107,14.9778,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +519,2.8969,14.7219,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +520,5.3625,6.5012,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +521,2.8395,5.8000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +522,2.9107,17.4402,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +523,2.8969,17.2329,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +524,5.3625,7.0277,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +525,2.8395,6.0235,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +526,2.9107,11.2257,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +527,2.8969,11.1662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +528,5.3625,7.5195,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +529,2.8395,6.9436,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +530,2.9107,10.6955,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +531,2.8969,10.4803,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +532,5.3625,6.9174,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +533,2.8395,6.2405,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +534,2.9107,10.8836,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +535,2.8969,10.7662,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +536,5.3625,6.6448,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +537,2.8395,5.7999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +538,2.9107,10.6771,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +539,2.8969,10.4693,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +540,5.3625,6.3431,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +541,2.8395,6.0230,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +542,2.9107,10.2812,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +543,2.8969,10.3602,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +544,5.3625,6.7947,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +545,2.8395,6.0136,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +546,2.9107,10.4370,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +547,2.8969,10.5830,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +548,5.3625,8.0953,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +549,2.8395,6.3917,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +550,2.9107,9.6747,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +551,2.8969,10.2561,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +552,5.3625,6.4601,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +553,2.8395,5.9745,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +554,2.9107,9.8278,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +555,2.8969,10.3325,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +556,5.3625,8.5378,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +557,2.8395,5.8610,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +558,2.9107,10.4228,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +559,2.8969,10.3615,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +560,5.3625,6.6039,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +561,2.8395,5.7532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +562,2.9107,11.4763,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +563,2.8969,11.3914,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +564,5.3625,6.9647,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +565,2.8395,5.9958,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +566,2.9107,10.7842,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +567,2.8969,10.5678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +568,5.3625,6.7383,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +569,2.8395,5.8572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +570,2.9107,10.4004,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +571,2.8969,10.3493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +572,5.3625,6.9769,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +573,2.8395,6.0947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +574,2.9107,10.2745,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +575,2.8969,10.3938,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +576,5.3625,6.7603,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +577,2.8395,6.0207,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +578,2.9107,10.7345,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +579,2.8969,10.4976,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +580,5.3625,6.6720,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +581,2.8395,5.8560,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +582,2.9107,10.6338,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +583,2.8969,10.5890,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +584,5.3625,7.1596,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +585,2.8395,6.0932,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +586,2.9107,11.0309,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +587,2.8969,10.5681,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +588,5.3625,9.7244,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +589,2.8395,5.7807,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +590,2.9107,10.0106,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +591,2.8969,10.3229,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +592,5.3625,6.0689,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +593,2.8395,5.8493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +594,2.9107,10.5231,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +595,2.8969,10.4411,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +596,5.3625,6.2063,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +597,2.8395,5.8710,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +598,2.9107,10.8931,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +599,2.8969,10.7797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +600,5.3625,6.9828,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +601,2.8395,5.9030,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +602,2.9107,10.7477,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +603,2.8969,10.4544,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +604,5.3625,13.3131,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +605,2.8395,5.9610,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +606,2.9107,10.3487,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +607,2.8969,12.1192,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +608,5.3625,6.3525,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +609,2.8395,5.9252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +610,2.9107,10.8638,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +611,2.8969,10.4338,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +612,5.3625,6.7592,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +613,2.8395,6.1567,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +614,2.9107,10.3094,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +615,2.8969,10.2836,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +616,5.3625,6.5246,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +617,2.8395,6.0323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +618,2.9107,10.2967,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +619,2.8969,10.4447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +620,5.3625,7.0335,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +621,2.8395,6.0715,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +622,2.9107,10.7983,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +623,2.8969,10.7015,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +624,5.3625,6.7685,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +625,2.8395,5.8236,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +626,2.9107,10.6213,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +627,2.8969,10.3355,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +628,5.3625,6.1801,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +629,2.8395,5.7748,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +630,2.9107,10.7018,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +631,2.8969,10.5206,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +632,5.3625,6.2972,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +633,2.8395,5.8324,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +634,2.9107,10.8251,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +635,2.8969,10.6967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +636,5.3625,5.9506,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +637,2.8395,5.6860,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +638,2.9107,10.4920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +639,2.8969,10.4558,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +640,5.3625,5.9582,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +641,2.8395,5.6491,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +642,2.9107,10.6422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +643,2.8969,10.5572,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +644,5.3625,5.7023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +645,2.8395,5.5731,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +646,2.9107,10.5123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +647,2.8969,10.4654,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +648,5.3625,5.6298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +649,2.8395,5.5119,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +650,2.9107,10.4709,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +651,2.8969,10.4585,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +652,5.3625,5.8780,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +653,2.8395,5.6557,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +654,2.9107,10.6195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +655,2.8969,10.5850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +656,5.3625,5.6775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +657,2.8395,5.5890,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +658,2.9107,10.5902,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +659,2.8969,10.5404,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +660,5.3625,5.6428,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +661,2.8395,5.5654,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +662,2.9107,10.5294,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +663,2.8969,10.5167,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +664,5.3625,5.8414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +665,2.8395,5.6232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +666,2.9107,10.6007,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +667,2.8969,10.5476,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +668,5.3625,5.6785,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +669,2.8395,5.5943,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +670,2.9107,10.5502,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +671,2.8969,10.4817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +672,5.3625,5.8279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +673,2.8395,5.6318,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +674,2.9107,10.5975,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +675,2.8969,10.5408,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +676,5.3625,5.9001,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +677,2.8395,5.7340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +678,2.9107,10.6672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +679,2.8969,10.5718,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +680,5.3625,5.9896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +681,2.8395,5.7263,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +682,2.9107,10.5860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +683,2.8969,10.4420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +684,5.3625,6.1202,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +685,2.8395,5.8720,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +686,2.9107,10.8020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +687,2.8969,10.7043,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +688,5.3625,6.1990,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +689,2.8395,5.8325,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +690,2.9107,10.7257,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +691,2.8969,10.5226,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +692,5.3625,7.0303,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +693,2.8395,6.2820,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +694,2.9107,10.4505,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +695,2.8969,10.4899,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +696,5.3625,6.6182,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +697,2.8395,5.7879,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +698,2.9107,9.9024,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +699,2.8969,10.4100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +700,5.3625,6.5153,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +701,2.8395,5.8276,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +702,2.9107,10.8160,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +703,2.8969,10.7041,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +704,5.3625,6.8785,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +705,2.8395,5.8277,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +706,2.9107,10.5980,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +707,2.8969,10.3938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +708,5.3625,6.7386,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +709,2.8395,5.9313,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +710,2.9107,10.4829,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +711,2.8969,10.2239,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +712,5.3625,7.2174,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +713,2.8395,6.1576,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +714,2.9107,10.6599,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +715,2.8969,10.3457,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +716,5.3625,6.7120,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +717,2.8395,6.0640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +718,2.9107,6.1320,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +719,2.8969,10.7597,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +720,5.3625,5.9432,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +721,2.8395,5.6834,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +722,2.9107,10.7324,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +723,2.8969,10.7008,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +724,5.3625,6.2107,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +725,2.8395,5.8942,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +726,2.9107,12.3520,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +727,2.8969,12.2494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +728,5.3625,20.9115,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +729,2.8395,20.8730,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +730,2.9107,31.1470,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +731,2.8969,30.9326,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +732,5.3625,25.6472,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +733,2.8395,24.9840,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +734,2.9107,37.7754,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +735,2.8969,37.5697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +736,5.3625,32.4354,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +737,2.8395,31.8009,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +738,2.9107,36.7145,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +739,2.8969,36.5125,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +740,5.3625,26.7095,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +741,2.8395,26.0041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +742,2.9107,34.5795,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +743,2.8969,34.2818,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +744,5.3625,35.9368,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +745,2.8395,35.8272,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +746,2.9107,41.7450,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +747,2.8969,41.5027,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +748,5.3625,35.9781,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +749,2.8395,35.3762,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +750,2.9107,42.3699,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +751,2.8969,42.1268,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +752,5.3625,34.1202,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +753,2.8395,33.4494,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +754,2.9107,40.7990,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +755,2.8969,40.5018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +756,5.3625,34.2347,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +757,2.8395,33.0356,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +758,2.9107,37.9539,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +759,2.8969,37.6738,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +760,5.3625,28.7871,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +761,2.8395,27.7255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +762,2.9107,36.3570,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +763,2.8969,36.1575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +764,5.3625,35.9268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +765,2.8395,35.3476,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +766,2.9107,41.7460,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +767,2.8969,41.5057,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +768,5.3625,33.2135,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +769,2.8395,32.4676,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +770,2.9107,39.7655,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +771,2.8969,39.3931,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +772,5.3625,35.8366,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +773,2.8395,33.7384,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +774,2.9107,42.7971,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +775,2.8969,42.5340,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +776,5.3625,32.9427,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +777,2.8395,31.5734,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +778,2.9107,36.7468,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +779,2.8969,36.4205,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +780,5.3625,32.2838,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +781,2.8395,31.5125,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +782,2.9107,39.4433,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +783,2.8969,39.1740,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +784,5.3625,33.4348,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +785,2.8395,32.3910,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +786,2.9107,37.2052,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +787,2.8969,36.9697,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +788,5.3625,28.5374,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +789,2.8395,27.9052,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +790,2.9107,36.7073,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +791,2.8969,36.3137,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +792,5.3625,33.8296,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +793,2.8395,32.9862,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +794,2.9107,41.4826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +795,2.8969,40.6917,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +796,5.3625,34.3620,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +797,2.8395,33.5520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +798,2.9107,37.3218,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +799,2.8969,36.8660,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +800,5.3625,28.7991,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +801,2.8395,28.0510,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +802,2.9107,38.8601,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +803,2.8969,38.4464,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +804,5.3625,36.8020,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +805,2.8395,36.1043,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +806,2.9107,42.5250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +807,2.8969,41.4200,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +808,5.3625,37.7080,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +809,2.8395,31.5252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +810,2.9107,37.9410,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +811,2.8969,37.5849,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +812,5.3625,36.4231,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +813,2.8395,35.9080,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +814,2.9107,42.0214,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +815,2.8969,41.7874,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +816,5.3625,35.7902,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +817,2.8395,34.7095,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +818,2.9107,39.8003,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +819,2.8969,39.5712,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +820,5.3625,29.7132,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +821,2.8395,28.6956,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +822,2.9107,34.8646,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +823,2.8969,34.7688,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +824,5.3625,38.1792,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +825,2.8395,37.4505,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +826,2.9107,42.3055,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +827,2.8969,42.0652,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +828,5.3625,35.2130,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +829,2.8395,34.5193,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +830,2.9107,39.8790,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +831,2.8969,39.5844,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +832,5.3625,28.4408,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +833,2.8395,27.0137,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +834,2.9107,37.3090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +835,2.8969,35.5109,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +836,5.3625,37.0741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +837,2.8395,35.7811,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +838,2.9107,41.8696,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +839,2.8969,41.5292,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +840,5.3625,32.5222,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +841,2.8395,31.8907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +842,2.9107,36.5803,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +843,2.8969,36.2918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +844,5.3625,28.4383,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +845,2.8395,27.7204,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +846,2.9107,36.8337,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +847,2.8969,36.6680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +848,5.3625,38.7053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +849,2.8395,36.8640,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +850,2.9107,42.8120,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +851,2.8969,42.5255,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +852,5.3625,33.3091,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +853,2.8395,32.4739,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +854,2.9107,37.0677,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +855,2.8969,36.7626,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +856,5.3625,33.2157,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +857,2.8395,26.5649,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +858,2.9107,35.9027,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +859,2.8969,34.8442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +860,5.3625,35.7859,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +861,2.8395,34.1167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +862,2.9107,38.9887,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +863,2.8969,38.7280,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +864,5.3625,25.2021,0.0385,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +865,2.8395,24.5932,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +866,2.9107,32.3117,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +867,2.8969,32.0271,1.2190,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +868,5.3625,34.6399,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +869,2.8395,33.9086,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +870,2.9107,40.2255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +871,2.8969,39.9240,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +872,5.3625,35.1036,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +873,2.8395,34.2339,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +874,2.9107,41.6353,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +875,2.8969,41.3694,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +876,5.3625,34.4873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +877,2.8395,33.6549,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +878,2.9107,38.8135,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +879,2.8969,38.2966,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +880,5.3625,30.1545,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +881,2.8395,29.0598,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +882,2.9107,37.7901,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +883,2.8969,37.4489,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +884,5.3625,34.1748,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +885,2.8395,33.1956,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +886,2.9107,39.9245,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +887,2.8969,39.3967,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +888,5.3625,33.9065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +889,2.8395,32.8328,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +890,2.9107,40.4701,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +891,2.8969,40.1772,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +892,5.3625,34.7802,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +893,2.8395,33.5218,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +894,2.9107,39.3523,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +895,2.8969,38.8500,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +896,5.3625,31.5328,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +897,2.8395,29.9415,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +898,2.9107,36.5498,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +899,2.8969,36.0941,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +900,5.3625,33.2976,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +901,2.8395,32.4309,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +902,2.9107,38.6139,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +903,2.8969,38.1124,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +904,5.3625,37.8719,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +905,2.8395,37.3842,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +906,2.9107,43.9488,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +907,2.8969,43.7698,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +908,5.3625,33.7491,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +909,2.8395,33.0202,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +910,2.9107,37.8777,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +911,2.8969,37.7431,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +912,5.3625,27.9899,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +913,2.8395,27.2099,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +914,2.9107,36.3071,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +915,2.8969,36.2105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +916,5.3625,38.2474,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +917,2.8395,37.3878,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +918,2.9107,42.8020,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +919,2.8969,42.2185,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +920,5.3625,35.6988,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +921,2.8395,34.7759,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +922,2.9107,41.2767,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +923,2.8969,40.9873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +924,5.3625,33.2228,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +925,2.8395,32.5540,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +926,2.9107,37.7705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +927,2.8969,37.3695,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +928,5.3625,31.3912,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +929,2.8395,30.7440,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +930,2.9107,36.7813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +931,2.8969,36.2007,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +932,5.3625,35.9590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +933,2.8395,35.1464,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +934,2.9107,40.8381,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +935,2.8969,40.5838,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +936,5.3625,38.3829,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +937,2.8395,38.0014,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +938,2.9107,44.8010,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +939,2.8969,44.5169,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +940,5.3625,31.3926,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +941,2.8395,30.6822,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +942,2.9107,35.5252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +943,2.8969,35.2607,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +944,5.3625,28.1427,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +945,2.8395,26.9388,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +946,2.9107,35.9825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +947,2.8969,35.4739,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +948,5.3625,38.6832,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +949,2.8395,37.9157,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +950,2.9107,42.3490,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +951,2.8969,41.7816,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +952,5.3625,33.5505,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +953,2.8395,32.8005,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +954,2.9107,38.1108,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +955,2.8969,38.0132,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +956,5.3625,29.4690,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +957,2.8395,28.7499,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +958,2.9107,36.8523,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +959,2.8969,36.5546,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +960,5.3625,36.2728,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +961,2.8395,35.1202,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +962,2.9107,39.9117,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +963,2.8969,39.6127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +964,5.3625,34.1680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +965,2.8395,33.2226,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +966,2.9107,40.4298,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +967,2.8969,40.3520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +968,5.3625,34.3334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +969,2.8395,33.3499,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +970,2.9107,40.6110,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +971,2.8969,40.3143,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +972,5.3625,35.0842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +973,2.8395,34.4277,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +974,2.9107,39.2441,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +975,2.8969,39.1593,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +976,5.3625,34.0297,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +977,2.8395,31.8322,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +978,2.9107,37.4483,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +979,2.8969,37.2379,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +980,5.3625,34.3800,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +981,2.8395,33.0611,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +982,2.9107,39.8671,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +983,2.8969,39.4877,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +984,5.3625,35.0130,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +985,2.8395,32.4613,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +986,2.9107,37.5582,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +987,2.8969,37.1094,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +988,5.3625,30.2251,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +989,2.8395,29.1361,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +990,2.9107,37.6140,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +991,2.8969,37.3618,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +992,5.3625,33.3001,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +993,2.8395,32.2992,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +994,2.9107,38.0395,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +995,2.8969,37.3574,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +996,5.3625,33.6388,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +997,2.8395,32.6317,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +998,2.9107,38.9802,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +999,2.8969,38.5198,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1000,5.3625,35.6007,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1001,2.8395,34.9541,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1002,2.9107,42.2211,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1003,2.8969,41.5501,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1004,5.3625,36.2369,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1005,2.8395,34.3607,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1006,2.9107,38.7468,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1007,2.8969,38.2977,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1008,5.3625,28.8407,0.0498,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1009,2.8395,28.1167,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1010,2.9107,36.4507,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1011,2.8969,36.0403,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1012,5.3625,33.6917,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1013,2.8395,32.3390,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1014,2.9107,40.1235,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1015,2.8969,39.6093,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1016,5.3625,38.9002,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1017,2.8395,37.7576,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1018,2.9107,43.2840,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1019,2.8969,42.9808,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1020,5.3625,37.6200,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1021,2.8395,36.0178,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1022,2.9107,40.8801,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1023,2.8969,40.4129,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1024,5.3625,28.6435,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1025,2.8395,27.6044,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1026,2.9107,35.4444,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1027,2.8969,35.1747,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1028,5.3625,33.1437,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1029,2.8395,32.3743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1030,2.9107,39.9760,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1031,2.8969,39.5023,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1032,5.3625,33.3362,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1033,2.8395,32.6580,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1034,2.9107,38.6752,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1035,2.8969,38.0643,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1036,5.3625,28.9180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1037,2.8395,28.1066,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1038,2.9107,37.6600,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1039,2.8969,37.2050,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1040,5.3625,36.7022,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1041,2.8395,35.6797,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1042,2.9107,42.3071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1043,2.8969,41.2172,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1044,5.3625,32.9280,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1045,2.8395,32.0787,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1046,2.9107,39.0701,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1047,2.8969,38.8000,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1048,5.3625,33.9317,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1049,2.8395,32.8589,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1050,2.9107,39.7509,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1051,2.8969,39.4880,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1052,5.3625,34.0227,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1053,2.8395,33.3956,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1054,2.9107,38.5139,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1055,2.8969,38.3974,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1056,5.3625,32.6088,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1057,2.8395,30.0506,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1058,2.9107,38.6563,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1059,2.8969,38.4387,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1060,5.3625,33.4694,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1061,2.8395,32.9801,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1062,2.9107,40.8013,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1063,2.8969,40.5629,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1064,5.3625,34.5351,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1065,2.8395,33.7107,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1066,2.9107,40.6286,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1067,2.8969,40.3800,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1068,5.3625,35.8620,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1069,2.8395,34.6135,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1070,2.9107,39.0274,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1071,2.8969,38.7476,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1072,5.3625,30.4910,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1073,2.8395,28.3702,0.0615,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1074,2.9107,35.4557,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1075,2.8969,34.9579,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1076,5.3625,34.0063,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1077,2.8395,32.9055,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1078,2.9107,40.8125,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1079,2.8969,40.4303,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1080,5.3625,34.4640,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1081,2.8395,33.0605,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1082,2.9107,37.9390,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1083,2.8969,37.6831,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1084,5.3625,30.0701,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1085,2.8395,29.6051,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1086,2.9107,37.8880,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1087,2.8969,37.5982,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1088,5.3625,32.9211,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1089,2.8395,32.0641,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1090,2.9107,38.6857,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1091,2.8969,38.2503,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1092,5.3625,32.3948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1093,2.8395,31.0977,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1094,2.9107,38.6693,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1095,2.8969,38.3130,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1096,5.3625,35.1359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1097,2.8395,34.6402,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1098,2.9107,41.5346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1099,2.8969,41.1952,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1100,5.3625,33.5101,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1101,2.8395,33.2267,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1102,2.9107,40.1895,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1103,2.8969,39.9810,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1104,5.3625,33.0523,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1105,2.8395,32.7249,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1106,2.9107,37.7503,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1107,2.8969,37.5289,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1108,5.3625,28.1937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1109,2.8395,27.6741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1110,2.9107,35.7399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1111,2.8969,35.5427,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1112,5.3625,32.2244,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1113,2.8395,31.9303,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1114,2.9107,39.6524,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1115,2.8969,39.3958,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1116,5.3625,33.2300,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1117,2.8395,32.9480,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1118,2.9107,39.9370,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1119,2.8969,39.6870,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1120,5.3625,33.7120,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1121,2.8395,33.4615,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1122,2.9107,42.1127,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1123,2.8969,41.7432,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1124,5.3625,34.9785,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1125,2.8395,34.7076,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1126,2.9107,39.8035,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1127,2.8969,39.6119,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1128,5.3625,27.1193,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1129,2.8395,26.8927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1130,2.9107,35.6576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1131,2.8969,35.4557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1132,5.3625,32.5169,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1133,2.8395,32.1548,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1134,2.9107,41.2168,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1135,2.8969,41.0520,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1136,5.3625,31.7835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1137,2.8395,31.4400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1138,2.9107,39.0474,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1139,2.8969,38.9183,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1140,5.3625,32.8095,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1141,2.8395,32.5303,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1142,2.9107,39.9981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1143,2.8969,39.8880,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1144,5.3625,33.7925,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1145,2.8395,33.6092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1146,2.9107,40.6950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1147,2.8969,40.5877,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1148,5.3625,33.4426,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1149,2.8395,33.2346,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1150,2.9107,40.2451,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1151,2.8969,40.1518,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1152,5.3625,33.7172,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1153,2.8395,33.4729,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1154,2.9107,40.5477,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1155,2.8969,40.2219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1156,5.3625,34.4667,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1157,2.8395,33.3887,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1158,2.9107,39.3467,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1159,2.8969,38.6172,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1160,5.3625,29.7765,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1161,2.8395,28.7355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1162,2.9107,36.7790,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1163,2.8969,35.8214,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1164,5.3625,30.4117,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1165,2.8395,29.0562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1166,2.9107,39.1755,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1167,2.8969,38.2755,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1168,5.3625,34.6490,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1169,2.8395,33.3921,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1170,2.9107,41.7082,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1171,2.8969,40.9113,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1172,5.3625,32.5918,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1173,2.8395,31.5070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1174,2.9107,39.4975,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1175,2.8969,38.7932,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1176,5.3625,33.6560,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1177,2.8395,32.7689,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1178,2.9107,40.3914,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1179,2.8969,39.8765,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1180,5.3625,33.5853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1181,2.8395,32.9588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1182,2.9107,40.4355,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1183,2.8969,39.7090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1184,5.3625,34.4229,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1185,2.8395,32.6961,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1186,2.9107,39.2547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1187,2.8969,37.9842,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1188,5.3625,29.7112,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1189,2.8395,28.0320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1190,2.9107,36.7483,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1191,2.8969,35.5655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1192,5.3625,27.0585,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1193,2.8395,25.5687,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1194,2.9107,36.6237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1195,2.8969,34.4818,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1196,5.3625,35.1977,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1197,2.8395,31.9865,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,537,0 +1198,2.9107,50.1700,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1199,2.8969,46.9052,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.txt b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.txt new file mode 100644 index 0000000..038b67c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=1 +tile_rows=4 +tile_resolution=5120x720 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.037 +effective_logical_fps=59.553 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=25.659 +p95_encode_latency_ms=44.927 +max_encode_latency_ms=105.243 +avg_steady_encode_latency_ms=24.517 +p95_steady_encode_latency_ms=43.199 +max_steady_encode_latency_ms=50.489 +avg_tile_encode_latency_ms=21.029 +p95_tile_encode_latency_ms=41.710 +avg_max_tile_encode_latency_ms=23.890 +p95_max_tile_encode_latency_ms=42.539 +avg_steady_max_tile_encode_latency_ms=22.955 +p95_steady_max_tile_encode_latency_ms=42.026 +payload_bytes=1325066 +send_target=none +csv=benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile_logical.csv diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile_logical.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile_logical.csv new file mode 100644 index 0000000..99b504c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/1x4_30mbps_per_tile_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.2434,29.4510,192908 +1,4,0,11.2837,10.8125,66401 +2,4,0,21.1778,20.8376,57603 +3,4,0,31.1368,30.8184,83869 +4,4,0,41.1841,40.9351,94398 +5,4,0,51.4753,51.2519,53772 +6,4,0,61.5021,61.2690,25575 +7,4,0,71.8305,67.6455,16608 +8,4,0,69.8635,67.4369,11610 +9,4,0,63.9594,63.1166,10885 +10,4,0,54.5508,54.1662,8121 +11,4,0,51.8549,51.5070,6086 +12,4,0,45.4504,45.0517,5058 +13,4,0,36.3348,35.8743,3730 +14,4,0,31.0983,30.5912,3918 +15,4,0,27.0822,26.5609,3624 +16,4,0,20.7354,19.5821,3652 +17,4,0,12.4709,11.6452,3665 +18,4,0,12.6396,10.4314,3452 +19,4,0,12.0588,10.4208,3580 +20,4,0,12.1729,10.2785,3321 +21,4,0,12.3695,10.2367,2588 +22,4,0,12.4725,10.4115,2574 +23,4,0,12.1791,10.5168,2595 +24,4,0,12.2732,10.1729,2709 +25,4,0,12.4396,10.3861,2668 +26,4,0,12.0431,10.6335,2901 +27,4,0,12.4519,10.3187,2654 +28,4,0,12.4119,10.3921,2553 +29,4,0,12.4520,10.8346,2596 +30,4,0,11.8260,10.9260,2603 +31,4,0,12.0398,10.6753,2916 +32,4,0,16.1915,14.8105,2535 +33,4,0,17.1446,15.8201,2702 +34,4,0,16.0386,14.7927,2424 +35,4,0,11.9913,10.4456,2424 +36,4,0,12.1249,10.7995,2424 +37,4,0,12.3215,10.1375,2451 +38,4,0,12.0535,10.5380,2589 +39,4,0,12.9165,11.5513,2488 +40,4,0,12.2792,10.6813,2666 +41,4,0,16.3103,14.8936,2449 +42,4,0,15.7479,14.3641,2674 +43,4,0,12.2973,10.8097,2362 +44,4,0,17.4007,15.6829,2364 +45,4,0,14.4661,13.0205,2426 +46,4,0,13.5641,10.4670,2406 +47,4,0,12.2865,10.4511,2511 +48,4,0,16.9865,15.2622,2362 +49,4,0,15.7889,13.8982,2403 +50,4,0,11.9806,10.7013,2402 +51,4,0,12.6423,10.5488,2405 +52,4,0,12.4434,10.8725,2389 +53,4,0,12.7662,11.1642,2570 +54,4,0,12.3113,10.1619,2412 +55,4,0,12.0663,10.3000,2350 +56,4,0,11.8616,10.2070,2350 +57,4,0,11.8255,10.3886,2365 +58,4,0,12.5512,10.5006,2369 +59,4,0,11.7782,10.1049,2380 +60,4,0,11.9621,10.4560,2423 +61,4,0,12.2477,10.3563,2416 +62,4,0,12.0772,10.3146,2366 +63,4,0,12.7361,10.2837,2361 +64,4,0,12.2115,9.8170,2495 +65,4,0,12.3414,10.6181,2350 +66,4,0,12.4978,10.3950,2371 +67,4,0,12.4875,10.6899,2368 +68,4,0,12.5271,10.2560,2388 +69,4,0,12.7425,10.4830,2363 +70,4,0,11.4740,10.5061,2355 +71,4,0,16.1803,14.5793,2389 +72,4,0,13.6600,10.4299,2391 +73,4,0,12.1389,10.4442,2389 +74,4,0,12.7315,11.2104,2376 +75,4,0,12.9207,10.4215,2459 +76,4,0,12.3177,10.8697,2352 +77,4,0,12.9439,10.7649,2350 +78,4,0,12.0753,10.2640,2350 +79,4,0,12.2478,10.2212,2365 +80,4,0,12.3380,10.1695,2376 +81,4,0,11.7464,10.6051,2359 +82,4,0,12.2118,10.1989,2416 +83,4,0,12.1325,10.1365,2371 +84,4,0,12.3118,10.0959,2372 +85,4,0,12.2003,10.2745,2359 +86,4,0,12.3034,10.2067,2432 +87,4,0,12.7051,10.1006,2356 +88,4,0,14.7124,9.7440,2356 +89,4,0,12.4405,10.1035,2392 +90,4,0,12.0774,10.4968,2350 +91,4,0,12.3488,10.8449,2359 +92,4,0,12.0261,10.8857,2360 +93,4,0,12.5578,10.9712,2360 +94,4,0,11.6654,10.6833,2373 +95,4,0,11.7457,10.5034,2361 +96,4,0,12.2369,10.6671,2362 +97,4,0,11.8941,10.4286,2414 +98,4,0,17.4268,15.5753,2350 +99,4,0,11.6576,10.7861,2350 +100,4,0,11.9764,10.5805,2350 +101,4,0,12.8898,10.9444,2355 +102,4,0,12.1152,10.4566,2350 +103,4,0,22.1339,15.3447,2350 +104,4,0,13.3175,10.3601,2356 +105,4,0,11.7203,10.2782,2350 +106,4,0,14.4086,12.2100,2350 +107,4,0,11.9386,10.4555,2350 +108,4,0,11.9375,10.7468,2402 +109,4,0,16.7749,15.2639,2350 +110,4,0,15.6359,14.3414,2350 +111,4,0,15.6284,14.0749,2350 +112,4,0,14.2788,10.3807,2350 +113,4,0,11.9367,11.1242,2350 +114,4,0,12.7208,11.0813,2350 +115,4,0,17.8585,16.2790,2356 +116,4,0,13.6583,12.1487,2350 +117,4,0,12.5922,9.8205,2350 +118,4,0,11.9408,10.4683,2350 +119,4,0,12.1088,10.6388,2377 +120,4,0,12.5744,11.0203,2350 +121,4,0,13.9405,12.4620,2350 +122,4,0,12.4215,11.3698,2350 +123,4,0,12.0337,10.6407,2350 +124,4,0,12.1380,10.6865,2350 +125,4,0,12.0373,10.6280,2350 +126,4,0,12.3479,10.5457,2350 +127,4,0,12.0055,10.3831,2350 +128,4,0,17.9346,16.5902,2350 +129,4,0,16.0560,14.9778,2350 +130,4,0,18.6706,17.4402,2360 +131,4,0,12.5894,11.2257,2350 +132,4,0,12.7810,10.6955,2350 +133,4,0,12.2334,10.8836,2350 +134,4,0,11.9912,10.6771,2350 +135,4,0,12.6241,10.3602,2350 +136,4,0,12.1790,10.5830,2350 +137,4,0,14.2921,10.2561,2350 +138,4,0,12.4920,10.3325,2350 +139,4,0,14.3588,10.4228,2350 +140,4,0,13.0387,11.4763,2350 +141,4,0,12.6161,10.7842,2355 +142,4,0,11.9475,10.4004,2350 +143,4,0,12.4479,10.3938,2350 +144,4,0,11.9779,10.7345,2350 +145,4,0,12.0780,10.6338,2350 +146,4,0,12.5567,11.0309,2350 +147,4,0,15.3945,10.3229,2350 +148,4,0,11.4144,10.5231,2350 +149,4,0,11.5345,10.8931,2350 +150,4,0,12.4156,10.7477,2350 +151,4,0,20.4845,13.3131,2350 +152,4,0,12.3990,10.8638,2355 +153,4,0,12.1533,10.3094,2350 +154,4,0,12.1199,10.4447,2350 +155,4,0,12.2368,10.7983,2350 +156,4,0,12.0104,10.6213,2350 +157,4,0,11.5277,10.7018,2350 +158,4,0,11.7137,10.8251,2350 +159,4,0,11.2307,10.4920,2350 +160,4,0,11.2455,10.6422,2350 +161,4,0,11.0186,10.5123,2350 +162,4,0,10.8493,10.4709,2350 +163,4,0,11.1841,10.6195,2350 +164,4,0,11.0695,10.5902,2350 +165,4,0,10.9755,10.5294,2350 +166,4,0,11.0979,10.6007,2350 +167,4,0,11.0500,10.5502,2350 +168,4,0,11.1027,10.5975,2350 +169,4,0,11.1261,10.6672,2350 +170,4,0,11.2230,10.5860,2350 +171,4,0,11.4388,10.8020,2350 +172,4,0,11.4268,10.7257,2350 +173,4,0,12.0291,10.4899,2350 +174,4,0,12.3098,10.4100,2350 +175,4,0,12.4829,10.8160,2350 +176,4,0,12.0844,10.5980,2350 +177,4,0,12.1357,10.4829,2350 +178,4,0,12.2301,10.6599,2350 +179,4,0,16.6455,10.7597,2350 +180,4,0,11.2785,10.7324,2350 +181,4,0,13.0040,12.3520,2350 +182,4,0,31.9095,31.1470,2350 +183,4,0,38.9514,37.7754,2350 +184,4,0,37.7671,36.7145,2350 +185,4,0,35.7150,34.5795,2350 +186,4,0,42.5396,41.7450,2350 +187,4,0,43.0513,42.3699,2350 +188,4,0,41.8450,40.7990,2350 +189,4,0,39.2795,37.9539,2350 +190,4,0,38.0141,36.3570,2350 +191,4,0,42.4883,41.7460,2350 +192,4,0,40.9632,39.7655,2350 +193,4,0,45.2557,42.7971,2350 +194,4,0,38.6233,36.7468,2350 +195,4,0,40.7160,39.4433,2350 +196,4,0,38.2093,37.2052,2350 +197,4,0,37.7443,36.7073,2350 +198,4,0,42.8412,41.4826,2350 +199,4,0,38.6224,37.3218,2350 +200,4,0,40.1234,38.8601,2350 +201,4,0,43.5928,42.5250,2350 +202,4,0,44.9210,37.9410,2350 +203,4,0,42.7938,42.0214,2350 +204,4,0,41.2463,39.8003,2350 +205,4,0,36.1581,34.8646,2350 +206,4,0,43.4933,42.3055,2350 +207,4,0,40.8850,39.8790,2350 +208,4,0,39.0855,37.3090,2350 +209,4,0,43.4858,41.8696,2350 +210,4,0,37.9836,36.5803,2350 +211,4,0,38.0560,36.8337,2350 +212,4,0,45.2790,42.8120,2350 +213,4,0,38.7144,37.0677,2350 +214,4,0,43.0992,35.9027,2350 +215,4,0,41.2320,38.9887,2350 +216,4,0,34.7080,32.3117,2350 +217,4,0,41.2812,40.2255,2350 +218,4,0,42.6515,41.6353,2350 +219,4,0,39.6969,38.8135,2350 +220,4,0,39.1095,37.7901,2350 +221,4,0,41.2502,39.9245,2350 +222,4,0,41.4943,40.4701,2350 +223,4,0,40.2424,39.3523,2350 +224,4,0,38.4075,36.5498,2350 +225,4,0,39.8797,38.6139,2350 +226,4,0,45.1713,43.9488,2350 +227,4,0,39.1319,37.8777,2350 +228,4,0,37.5958,36.3071,2350 +229,4,0,44.5763,42.8020,2350 +230,4,0,42.7893,41.2767,2350 +231,4,0,38.7107,37.7705,2350 +232,4,0,37.8533,36.7813,2350 +233,4,0,41.9553,40.8381,2350 +234,4,0,45.7934,44.8010,2350 +235,4,0,36.5617,35.5252,2350 +236,4,0,37.5979,35.9825,2350 +237,4,0,43.9435,42.3490,2350 +238,4,0,39.2654,38.1108,2350 +239,4,0,38.1845,36.8523,2350 +240,4,0,42.5178,39.9117,2350 +241,4,0,41.6743,40.4298,2350 +242,4,0,41.5857,40.6110,2350 +243,4,0,40.1889,39.2441,2350 +244,4,0,40.2160,37.4483,2350 +245,4,0,41.6207,39.8671,2350 +246,4,0,40.6184,37.5582,2350 +247,4,0,39.0613,37.6140,2350 +248,4,0,39.7054,38.0395,2350 +249,4,0,40.3513,38.9802,2350 +250,4,0,44.0630,42.2211,2350 +251,4,0,41.4278,38.7468,2350 +252,4,0,37.6319,36.4507,2350 +253,4,0,42.0357,40.1235,2350 +254,4,0,45.0330,43.2840,2350 +255,4,0,43.1843,40.8801,2350 +256,4,0,37.2090,35.4444,2350 +257,4,0,41.3397,39.9760,2350 +258,4,0,39.6377,38.6752,2350 +259,4,0,38.5388,37.6600,2350 +260,4,0,43.8402,42.3071,2350 +261,4,0,40.4970,39.0701,2350 +262,4,0,41.1777,39.7509,2350 +263,4,0,39.5325,38.5139,2350 +264,4,0,42.0513,38.6563,2350 +265,4,0,41.9794,40.8013,2350 +266,4,0,41.9246,40.6286,2350 +267,4,0,40.8507,39.0274,2350 +268,4,0,39.0483,35.4557,2350 +269,4,0,42.4132,40.8125,2350 +270,4,0,39.5338,37.9390,2350 +271,4,0,38.8639,37.8880,2350 +272,4,0,40.3168,38.6857,2350 +273,4,0,40.4558,38.6693,2350 +274,4,0,42.3401,41.5346,2350 +275,4,0,40.6589,40.1895,2350 +276,4,0,38.2342,37.7503,2350 +277,4,0,36.4568,35.7399,2350 +278,4,0,40.1662,39.6524,2350 +279,4,0,40.5820,39.9370,2350 +280,4,0,42.5482,42.1127,2350 +281,4,0,40.2178,39.8035,2350 +282,4,0,35.9861,35.6576,2350 +283,4,0,41.5481,41.2168,2350 +284,4,0,39.3454,39.0474,2350 +285,4,0,40.2721,39.9981,2350 +286,4,0,40.9040,40.6950,2350 +287,4,0,40.4606,40.2451,2350 +288,4,0,40.7760,40.5477,2350 +289,4,0,39.6940,39.3467,2350 +290,4,0,37.2173,36.7790,2350 +291,4,0,39.5313,39.1755,2350 +292,4,0,41.9498,41.7082,2350 +293,4,0,39.8307,39.4975,2350 +294,4,0,40.6127,40.3914,2350 +295,4,0,40.6602,40.4355,2350 +296,4,0,39.6140,39.2547,2350 +297,4,0,37.1322,36.7483,2350 +298,4,0,36.8999,36.6237,2350 +299,4,0,50.4889,50.1700,2350 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.csv new file mode 100644 index 0000000..b904b23 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0370,33.4704,0.0326,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8478,25.2638,0.0130,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8111,25.6842,0.0138,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7960,32.0780,0.0131,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0370,5.9310,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8478,5.7562,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8111,10.5368,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7960,10.5677,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.0370,15.4662,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8478,15.5006,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8111,20.5321,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7960,20.4951,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.0370,25.3671,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8478,25.4022,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8111,30.2247,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7960,30.2305,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.0370,35.0877,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8478,35.1091,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8111,39.9603,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7960,39.9823,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.0370,44.8002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8478,44.8646,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8111,49.6889,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7960,49.7581,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.0370,54.5169,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8478,54.8580,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8111,59.4147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7960,59.7507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.0370,64.3426,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8478,60.9652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8111,65.5900,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7960,61.0165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.0370,65.5591,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8478,60.9504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8111,65.4911,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7960,60.7810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.0370,65.2729,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8478,60.7702,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8111,65.2501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7960,60.7218,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.0370,59.5468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8478,59.9033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8111,64.4093,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7960,60.9612,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.0370,51.4247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8478,52.1570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8111,56.2330,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7960,56.9969,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.0370,44.1311,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8478,45.1248,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8111,49.0750,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7960,50.1625,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.0370,37.9199,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8478,38.9730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8111,42.8862,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7960,43.7539,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.0370,31.4018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8478,32.2598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8111,36.0993,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7960,37.0126,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.0370,26.2531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8478,26.9556,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8111,30.7025,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7960,31.6158,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.0370,17.7059,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8478,18.5813,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8111,22.2755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7960,23.2123,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.0370,11.4061,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8478,12.2641,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8111,16.0003,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7960,16.8547,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.0370,7.6889,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8478,7.5491,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8111,11.7367,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7960,11.5417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.0370,6.9494,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8478,5.9285,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8111,10.5658,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7960,10.3313,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.0370,6.8153,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8478,6.0569,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8111,10.8596,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7960,10.4882,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.0370,6.3692,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8478,5.7944,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8111,12.1827,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7960,11.5872,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.0370,6.7091,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8478,5.7180,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8111,10.5593,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7960,12.0346,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.0370,6.4212,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8478,5.7178,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8111,9.8387,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7960,11.6684,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.0370,6.5651,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8478,6.0576,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8111,10.1336,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7960,10.0587,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.0370,6.4969,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8478,5.6874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8111,10.8552,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7960,10.7338,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.0370,7.4894,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8478,5.9109,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8111,10.8504,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7960,10.1716,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.0370,6.9015,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8478,5.7940,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8111,11.7103,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7960,11.4569,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.0370,6.5194,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8478,5.7714,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8111,10.3552,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7960,10.2895,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.0370,6.2758,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8478,5.8810,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8111,9.7105,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7960,12.1497,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.0370,6.3438,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8478,6.4665,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8111,11.5531,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7960,11.2860,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.0370,6.9482,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8478,5.9903,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8111,9.4769,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7960,10.2705,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.0370,6.3821,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8478,5.9050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8111,9.2681,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7960,10.4593,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.0370,6.3895,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8478,5.7643,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8111,10.7020,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7960,11.9283,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.0370,7.4941,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8478,6.7363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8111,10.5759,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7960,9.7793,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0370,7.0205,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8478,6.0844,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8111,15.3044,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7960,14.7927,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0370,6.6074,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8478,5.8087,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8111,14.0492,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7960,13.8783,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.0370,6.7890,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8478,6.1044,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8111,10.7361,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7960,10.8791,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.0370,7.0137,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8478,5.9407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8111,11.1115,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7960,10.7776,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.0370,10.1198,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8478,9.1656,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8111,13.1119,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7960,13.0136,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.0370,6.3270,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8478,6.5038,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8111,9.0634,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7960,9.8100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.0370,6.3139,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8478,5.7784,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8111,10.3033,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7960,10.2086,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.0370,6.4669,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8478,5.7916,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8111,10.5179,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7960,10.3079,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.0370,6.1095,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8478,5.9071,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8111,9.5468,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7960,10.3078,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.0370,6.1865,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8478,5.7302,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8111,10.6120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7960,10.2585,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.0370,6.0619,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8478,5.7095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8111,10.2614,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7960,10.1932,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.0370,7.4726,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8478,5.7986,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8111,10.6237,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7960,10.8482,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.0370,6.1441,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8478,5.6881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8111,10.3822,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7960,10.3419,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.0370,6.4502,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8478,5.8156,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8111,10.3859,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7960,10.2834,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0370,7.3818,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8478,6.2661,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8111,10.4435,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7960,10.2222,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.0370,6.5730,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8478,5.9737,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8111,10.4619,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7960,10.3379,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.0370,7.1596,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8478,6.4906,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8111,11.1696,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7960,11.0450,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.0370,6.9343,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8478,5.8124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8111,10.1410,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7960,10.2714,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.0370,6.7720,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8478,5.8618,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8111,9.5162,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7960,10.0692,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.0370,7.9336,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8478,5.7325,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8111,10.4165,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7960,10.1722,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.0370,6.5949,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8478,5.8316,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8111,9.8651,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7960,12.4347,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0370,6.5079,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8478,5.8178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8111,13.5598,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7960,13.4906,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.0370,6.6078,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8478,6.0210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8111,9.8377,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7960,10.1827,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.0370,6.5798,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8478,5.8617,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8111,10.3217,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7960,10.1932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.0370,6.7547,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8478,5.8693,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8111,10.7990,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7960,10.5824,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.0370,6.1355,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8478,5.9615,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8111,9.8266,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.7960,9.9130,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.0370,5.9599,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8478,5.5909,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8111,10.3461,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.7960,10.2829,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.0370,5.7657,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8478,5.5520,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8111,10.2332,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.7960,10.2230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.0370,5.6674,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8478,5.4905,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8111,10.2210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.7960,10.2235,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.0370,5.6665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8478,5.5096,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8111,10.4108,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.7960,10.3910,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.0370,5.6488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8478,5.5337,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8111,10.3479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.7960,10.3580,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.0370,5.5810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8478,5.5619,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8111,10.3346,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.7960,10.3388,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.0370,5.6990,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8478,5.5475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8111,10.3961,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.7960,10.3850,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.0370,5.6012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8478,5.5345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8111,10.3770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.7960,10.3805,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.0370,5.6200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8478,5.5290,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8111,10.3628,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.7960,10.3714,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.0370,5.5750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8478,5.5235,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8111,10.3712,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.7960,10.3728,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.0370,5.6381,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8478,5.5227,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8111,10.3390,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.7960,10.3526,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.0370,5.6218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8478,5.4991,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8111,10.2861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.7960,10.3105,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.0370,5.7061,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8478,5.5708,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8111,10.5020,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.7960,10.5028,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.0370,5.6422,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8478,5.5587,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8111,10.4327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.7960,10.4058,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.0370,5.6989,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8478,5.4944,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8111,10.2445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.7960,10.2220,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.0370,5.7371,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8478,5.4977,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8111,10.2930,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.7960,10.2608,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.0370,5.8930,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8478,5.5681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8111,10.3980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7960,10.3480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.0370,5.7458,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8478,5.6084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8111,10.3088,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.7960,10.3407,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.0370,5.8270,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8478,5.5658,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8111,10.4612,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.7960,10.4423,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.0370,5.7719,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8478,5.6002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8111,10.3902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.7960,10.3225,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.0370,5.7961,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8478,5.5532,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8111,10.4558,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.7960,10.3605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.0370,5.7492,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8478,5.5925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8111,10.4408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.7960,10.3461,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.0370,5.9175,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8478,5.6347,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8111,10.5769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.7960,10.4855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.0370,5.8107,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8478,5.6212,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8111,10.4261,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.7960,10.4155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.0370,5.9114,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8478,5.6091,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8111,10.5485,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.7960,10.4182,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.0370,5.8657,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8478,5.5711,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8111,10.1826,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.7960,10.2155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.0370,5.6823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8478,5.5358,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8111,10.2151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.7960,10.2562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.0370,6.0018,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8478,5.6972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8111,10.9906,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.7960,10.6686,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.0370,6.5032,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8478,6.5688,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8111,13.1076,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.7960,12.9449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.0370,6.0774,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8478,5.6828,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8111,10.3439,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.7960,10.2238,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.0370,6.1153,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8478,5.6473,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8111,10.5817,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.7960,10.4488,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.0370,6.1802,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8478,5.6947,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8111,10.4291,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.7960,10.2526,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.0370,6.0917,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8478,5.6713,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8111,10.4595,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.7960,10.3126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.0370,6.0807,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8478,5.7924,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8111,10.5343,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.7960,10.3914,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.0370,6.2851,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8478,5.9996,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8111,10.0638,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.7960,10.0436,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.0370,6.2915,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8478,5.8991,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8111,10.6845,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.7960,10.5329,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.0370,6.3033,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8478,5.8697,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8111,10.1989,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.7960,10.0870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.0370,6.3104,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8478,6.4335,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8111,10.6063,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.7960,10.4332,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.0370,10.7433,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8478,10.0347,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8111,10.1437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7960,10.1580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.0370,6.0985,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8478,5.7148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8111,10.4005,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.7960,10.3269,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.0370,6.0755,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8478,5.7798,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8111,10.3896,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.7960,10.3071,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.0370,6.0354,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8478,5.7250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8111,10.5284,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.7960,10.3516,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.0370,6.2531,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8478,5.7175,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8111,10.2950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.7960,10.2771,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.0370,6.1677,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8478,5.7348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8111,10.4243,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.7960,10.3371,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.0370,6.1898,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8478,5.7826,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8111,11.0408,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.7960,10.9564,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.0370,6.1263,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8478,5.8539,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8111,9.8755,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.7960,9.8891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.0370,6.2264,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8478,5.7610,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8111,10.5730,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.7960,10.4145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.0370,6.0605,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8478,5.8232,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8111,9.9535,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.7960,10.1753,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.0370,6.0733,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8478,5.6191,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8111,10.6156,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7960,10.5551,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.0370,6.3350,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8478,5.8761,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8111,10.1879,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7960,10.7178,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.0370,6.2313,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8478,5.8290,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8111,9.9148,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7960,9.9771,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.0370,6.3059,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8478,5.8330,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8111,10.0036,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.7960,10.0238,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.0370,6.3544,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8478,5.9377,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8111,10.7314,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.7960,10.6696,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.0370,6.4065,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8478,5.8667,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8111,10.1689,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.7960,10.0451,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.0370,6.5999,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8478,5.7810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8111,10.4498,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.7960,10.3894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.0370,7.1497,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8478,6.2898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8111,10.6224,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.7960,10.5310,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.0370,6.6487,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8478,5.8109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8111,10.2335,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.7960,10.2825,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.0370,6.3665,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8478,5.7813,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8111,10.0838,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.7960,10.1247,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.0370,6.1353,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8478,5.7051,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8111,10.4836,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.7960,10.2375,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.0370,6.6205,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8478,5.8538,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8111,10.7123,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.7960,10.4685,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.0370,6.2698,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8478,5.8321,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8111,9.9985,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.7960,10.2305,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.0370,8.8535,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8478,7.8467,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8111,11.2437,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.7960,11.0352,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.0370,6.1091,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8478,5.8089,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8111,10.0083,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.7960,10.1914,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.0370,6.2223,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8478,5.7390,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8111,10.9497,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.7960,10.8560,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.0370,6.6091,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8478,5.7146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8111,9.8384,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.7960,9.6514,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.0370,6.4384,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8478,5.8521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8111,10.5408,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.7960,10.1436,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.0370,6.3110,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8478,5.6891,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8111,10.1963,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.7960,9.8807,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.0370,6.5336,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8478,5.9133,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8111,9.8700,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.7960,10.0655,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.0370,6.3645,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8478,5.7101,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8111,10.7443,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.7960,10.6506,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.0370,6.3397,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8478,5.8968,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8111,9.8867,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.7960,9.9753,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.0370,6.3918,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8478,5.9000,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8111,9.7824,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.7960,9.8738,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.0370,6.3893,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8478,5.7940,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8111,11.1642,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.7960,10.7906,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.0370,6.5352,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8478,5.8843,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8111,10.0523,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.7960,9.9849,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.0370,6.1853,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8478,5.8301,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8111,9.9113,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.7960,10.5813,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.0370,6.5248,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8478,5.9468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8111,8.6622,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.7960,8.4111,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.0370,6.4743,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8478,5.7906,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8111,8.5873,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.7960,8.7325,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.0370,6.6470,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8478,5.9515,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8111,10.0477,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.7960,9.9504,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.0370,6.5000,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8478,7.8894,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8111,10.2523,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.7960,10.1277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.0370,6.0911,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8478,6.1498,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8111,9.9408,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.7960,10.2265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.0370,6.4283,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8478,5.8239,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8111,10.1651,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.7960,10.0096,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0370,6.4468,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8478,5.8801,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8111,10.3634,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.7960,10.1173,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.0370,6.1026,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8478,5.6404,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8111,10.5334,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7960,10.5013,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.0370,6.6768,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8478,5.9220,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8111,10.4012,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7960,10.1325,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.0370,6.2962,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8478,5.7215,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8111,10.6225,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.7960,10.3990,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.0370,6.3156,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8478,5.9256,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8111,10.0307,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.7960,10.0459,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.0370,6.4893,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8478,5.8703,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8111,10.1510,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.7960,12.5065,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.0370,6.3019,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8478,5.6570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8111,10.5868,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.7960,10.5599,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0370,6.3747,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8478,5.9340,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8111,10.0215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.7960,10.3635,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.0370,6.8383,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8478,6.1870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8111,9.9113,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.7960,9.9004,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.0370,6.6590,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,2.8478,5.8871,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8111,11.6883,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.7960,11.6327,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,5.0370,6.4168,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8478,5.8045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8111,10.1120,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.7960,9.9830,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,5.0370,6.0669,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8478,5.7082,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8111,10.3045,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.7960,10.2952,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,5.0370,6.5973,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8478,5.9057,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8111,10.1773,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.7960,10.1108,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,5.0370,6.1947,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8478,5.7317,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8111,10.7104,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.7960,11.0933,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.0370,6.7354,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8478,5.9257,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8111,10.2830,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7960,10.2928,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.0370,6.0520,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8478,5.6410,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8111,10.3616,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.7960,10.2307,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,5.0370,5.8386,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8478,5.5938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8111,10.1887,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.7960,10.2285,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,5.0370,5.9172,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8478,5.5812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8111,10.3298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.7960,10.2894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,5.0370,5.6494,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8478,5.5103,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8111,10.4716,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.7960,10.6419,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,5.0370,5.7382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8478,5.5875,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8111,10.5198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.7960,10.5275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.0370,5.8827,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8478,5.5610,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8111,10.5381,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.7960,10.5072,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.0370,5.7136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8478,5.6095,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8111,10.3824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.7960,10.3445,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.0370,5.6302,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8478,5.5990,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8111,10.4183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.7960,10.3565,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,5.0370,5.6777,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8478,5.5910,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8111,10.3087,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.7960,10.3324,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,5.0370,5.5968,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8478,5.5015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8111,10.2736,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7960,10.2525,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,5.0370,5.6123,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8478,5.5057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8111,10.2165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7960,10.2165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,5.0370,5.6258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8478,5.5056,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8111,10.2563,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7960,10.2278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.0370,5.7555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8478,5.5286,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8111,10.2624,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.7960,10.2071,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.0370,5.6195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8478,5.5296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8111,10.2265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.7960,10.1809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,5.0370,5.6825,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8478,5.5356,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8111,10.3130,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.7960,10.2645,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.0370,5.7327,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8478,5.5304,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8111,10.3393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.7960,10.2898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,5.0370,5.7861,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8478,5.6430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8111,10.2542,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.7960,10.3109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,5.0370,6.0697,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8478,5.6120,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8111,10.4246,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.7960,10.3388,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,5.0370,5.8027,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8478,5.5890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8111,10.1954,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.7960,10.2472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.0370,5.7900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8478,5.5724,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8111,10.3215,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.7960,10.2618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.0370,5.9867,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8478,5.6348,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8111,10.5003,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.7960,10.3884,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.0370,6.2767,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8478,5.8212,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8111,10.6016,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.7960,10.4668,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,5.0370,6.1653,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8478,5.7139,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8111,10.4340,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.7960,10.2987,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,5.0370,6.0192,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8478,5.7614,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8111,10.0445,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.7960,10.0796,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,5.0370,6.3228,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.8478,5.8931,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8111,10.1040,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +723,2.7960,9.7182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +724,5.0370,6.2335,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8478,6.2608,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8111,11.0719,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +727,2.7960,11.0762,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +728,5.0370,16.8305,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8478,16.1309,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8111,30.9201,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +731,2.7960,30.3693,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,5.0370,32.3981,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8478,31.8825,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8111,40.7688,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +735,2.7960,40.5546,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,5.0370,34.9333,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8478,34.0970,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8111,42.4500,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +739,2.7960,41.9921,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +740,5.0370,35.5099,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8478,34.8300,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8111,41.7384,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.7960,40.7320,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.0370,38.1195,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8478,37.6890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8111,37.8765,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.7960,37.0655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +748,5.0370,29.9661,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8478,29.0669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8111,37.7470,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.7960,37.5619,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +752,5.0370,34.2107,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8478,33.4263,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8111,39.9470,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.7960,35.0617,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,5.0370,34.2069,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8478,30.4168,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8111,37.4045,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +759,2.7960,37.1468,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,5.0370,33.8751,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8478,33.4490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8111,37.9126,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +763,2.7960,37.6242,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,5.0370,29.7653,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8478,28.6311,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8111,37.0714,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +767,2.7960,36.8507,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +768,5.0370,31.9352,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8478,31.2660,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8111,39.7736,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +771,2.7960,39.4117,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.0370,32.7530,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8478,32.5982,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8111,39.9675,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +775,2.7960,39.9260,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +776,5.0370,32.3491,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8478,32.1233,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8111,36.9239,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +779,2.7960,36.7001,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +780,5.0370,30.8736,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8478,30.6296,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8111,35.4509,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +783,2.7960,35.2384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,5.0370,33.7345,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8478,33.1353,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8111,39.8403,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.7960,39.6093,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,5.0370,32.7308,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8478,32.1785,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8111,39.7957,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.7960,39.5338,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,5.0370,33.9291,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8478,33.3135,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8111,41.7625,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.7960,41.6275,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.0370,38.0647,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8478,37.1958,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8111,42.6006,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.7960,42.1166,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +800,5.0370,34.2336,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8478,33.6035,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8111,38.3404,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.7960,38.1405,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.0370,29.7316,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8478,29.0307,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8111,35.7756,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.7960,35.5852,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +808,5.0370,31.5718,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8478,30.5793,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8111,38.2111,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7960,38.0080,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,5.0370,34.9544,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8478,34.3352,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8111,41.8981,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +815,2.7960,41.6827,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.0370,32.9412,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8478,32.4457,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8111,37.5184,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.7960,37.4321,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,5.0370,31.4512,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8478,31.0078,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8111,36.4233,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.7960,36.2931,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.0370,32.9140,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8478,32.0352,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8111,39.9260,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.7960,39.6775,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +828,5.0370,33.6865,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8478,32.8605,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8111,39.2047,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.7960,38.7472,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +832,5.0370,33.8837,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8478,33.2130,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8111,40.2694,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.7960,39.9998,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +836,5.0370,34.3417,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8478,33.6734,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8111,40.5285,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.7960,40.2918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +840,5.0370,34.3403,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8478,33.8402,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8111,40.8876,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.7960,40.6568,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,5.0370,34.2157,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8478,33.8777,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8111,40.8910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.7960,40.7269,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +848,5.0370,33.6017,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8478,33.3177,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8111,40.2852,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +851,2.7960,40.1717,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +852,5.0370,32.8810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8478,32.5734,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8111,37.6213,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.7960,37.4161,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +856,5.0370,28.2895,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8478,28.0422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8111,36.2012,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.7960,35.7962,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +860,5.0370,32.0498,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8478,31.6683,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8111,41.0216,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.7960,40.9811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.0370,34.9727,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8478,35.3663,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8111,41.0423,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.7960,40.6960,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,5.0370,35.5663,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8478,35.1772,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8111,44.7925,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.7960,44.5529,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,5.0370,36.6023,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8478,35.5660,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8111,40.5442,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.7960,40.2844,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,5.0370,27.8482,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8478,25.6290,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8111,33.4966,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.7960,33.3155,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,5.0370,32.6842,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8478,31.8626,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8111,41.4255,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.7960,40.5271,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +884,5.0370,37.0146,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8478,36.4862,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8111,39.8301,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.7960,39.5657,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +888,5.0370,29.0768,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8478,26.4055,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8111,34.1217,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.7960,33.8787,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.0370,31.6615,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8478,30.9864,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8111,38.7127,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.7960,38.1770,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +896,5.0370,33.3652,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8478,33.0069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8111,37.6388,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.7960,37.3936,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,5.0370,28.0942,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8478,27.7212,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8111,35.7617,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +903,2.7960,35.5767,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +904,5.0370,32.2506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8478,31.7295,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8111,40.2371,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.7960,40.0411,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +908,5.0370,32.5565,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8478,31.9074,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8111,40.3267,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.7960,40.0659,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +912,5.0370,37.7561,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8478,37.1818,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8111,44.0065,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.7960,43.6147,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.0370,40.9095,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8478,40.3610,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8111,43.7345,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.7960,43.4918,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +920,5.0370,36.7578,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8478,35.4511,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8111,37.2066,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.7960,34.3267,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.0370,31.2135,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8478,25.0564,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8111,32.5157,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.7960,31.3650,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +928,5.0370,34.1358,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8478,33.4193,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8111,41.8703,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.7960,41.5196,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +932,5.0370,37.1543,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8478,36.6269,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8111,39.0517,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.7960,38.5322,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.0370,29.7970,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8478,28.4522,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8111,36.3876,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7960,35.6880,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +940,5.0370,31.7984,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8478,30.9053,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8111,41.1055,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7960,38.3861,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.0370,36.1211,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8478,35.4489,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8111,40.0003,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7960,39.7071,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +948,5.0370,29.0863,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8478,26.4445,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8111,33.5826,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7960,33.3459,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,5.0370,31.3012,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8478,30.2962,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8111,40.8566,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.7960,39.9427,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,5.0370,35.2983,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8478,34.6816,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8111,41.4135,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.7960,41.1126,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +960,5.0370,31.7486,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.8478,31.2949,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8111,38.1838,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.7960,37.9506,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.0370,34.0315,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.8478,33.6918,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8111,38.3913,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +967,2.7960,38.2512,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +968,5.0370,29.0079,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.8478,28.8742,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8111,36.2693,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.7960,36.0015,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +972,5.0370,30.4414,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.8478,30.1405,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8111,40.1045,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +975,2.7960,39.9692,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +976,5.0370,34.6270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.8478,34.3927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8111,41.8221,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +979,2.7960,41.6958,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +980,5.0370,31.8788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.8478,31.7118,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8111,39.0342,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.7960,38.9286,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,5.0370,33.0366,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.8478,33.0267,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8111,40.1375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.7960,40.0728,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +988,5.0370,32.9537,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.8478,32.8620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8111,39.6788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.7960,39.7015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.0370,33.0863,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.8478,33.0633,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8111,40.3896,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.7960,40.2990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.0370,33.3395,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8478,33.3266,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8111,40.1152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.7960,40.0160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.0370,33.4114,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8478,33.2276,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8111,40.1687,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.7960,40.0952,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1004,5.0370,33.4432,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8478,33.3137,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8111,40.2668,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1007,2.7960,40.1982,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1008,5.0370,33.3756,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8478,33.1587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8111,40.1009,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1011,2.7960,40.0054,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,5.0370,33.3222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8478,33.2639,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8111,40.2355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1015,2.7960,40.1620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1016,5.0370,33.6165,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8478,33.5343,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8111,38.4795,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1019,2.7960,38.3847,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.0370,28.5297,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8478,28.5203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8111,36.6026,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1023,2.7960,36.6067,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.0370,30.9132,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8478,30.8223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8111,38.3904,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.7960,38.2690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.0370,30.7025,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8478,30.5587,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8111,39.3339,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7960,39.2492,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1032,5.0370,37.1209,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8478,36.9100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8111,43.3006,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.7960,42.8213,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1036,5.0370,35.6938,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8478,35.4263,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8111,41.0897,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.7960,40.8834,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,5.0370,37.6660,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8478,33.6752,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8111,38.6298,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.7960,38.2137,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1044,5.0370,30.5965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8478,28.3990,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8111,35.8434,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.7960,35.6259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.0370,31.5779,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8478,30.5079,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8111,38.5558,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.7960,38.2046,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.0370,34.8033,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8478,34.2235,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8111,42.0446,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.7960,41.7707,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.0370,36.0378,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8478,35.3375,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8111,38.7315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.7960,38.1617,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.0370,29.7902,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8478,28.5508,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8111,36.3183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.7960,35.8682,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,5.0370,30.7917,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8478,29.8033,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8111,37.6244,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1067,2.7960,37.0471,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,5.0370,33.0403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8478,32.4064,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8111,39.5138,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.7960,39.1071,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,5.0370,32.4032,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8478,31.7636,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8111,40.4280,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.7960,39.9646,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.0370,35.5585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8478,34.7805,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8111,41.8584,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.7960,41.7766,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.0370,34.5627,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8478,33.9422,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8111,40.7700,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.7960,40.4090,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.0370,34.1712,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8478,33.5653,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8111,38.3922,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.7960,38.3149,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.0370,29.0585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8478,27.8487,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8111,35.6290,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.7960,35.4469,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,5.0370,32.9485,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8478,32.1161,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8111,40.2743,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.7960,40.0532,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,5.0370,32.0763,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8478,31.3782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8111,39.2578,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.7960,39.0214,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1100,5.0370,35.3563,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8478,34.9248,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8111,41.3398,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.7960,40.8680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.0370,34.1772,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8478,33.8333,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8111,38.2993,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.7960,37.4428,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.0370,29.4207,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8478,27.6304,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8111,36.2553,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.7960,36.2803,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.0370,33.3985,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8478,32.7178,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8111,41.0805,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.7960,40.9573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.0370,32.7265,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8478,31.8009,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8111,37.1502,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.7960,36.9308,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.0370,28.4862,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8478,26.9602,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8111,36.6834,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.7960,36.4997,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.0370,39.2665,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8478,38.7793,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8111,46.5232,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.7960,46.2966,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,5.0370,33.0526,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8478,31.9972,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8111,36.4208,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.7960,35.8986,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1132,5.0370,28.1972,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8478,27.2896,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8111,35.1493,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.7960,34.0700,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.0370,33.3575,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8478,32.7002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8111,40.7910,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.7960,40.4904,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.0370,36.1175,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8478,34.5007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8111,40.6947,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.7960,40.4092,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.0370,34.1587,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8478,33.2358,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8111,37.5187,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.7960,37.1925,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.0370,28.3091,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8478,26.3286,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8111,34.7812,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.7960,34.5426,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.0370,33.5294,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8478,33.0598,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8111,40.8649,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.7960,40.6789,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,5.0370,33.0532,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8478,32.2318,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8111,40.2320,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.7960,39.7679,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.0370,37.4478,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8478,36.6593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8111,42.3345,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7960,41.8765,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.0370,33.5272,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8478,33.1358,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8111,37.6327,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.7960,37.1572,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.0370,29.0187,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8478,27.8270,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8111,36.0294,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.7960,36.0025,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.0370,32.7244,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8478,31.8752,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8111,39.8610,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.7960,39.4599,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.0370,32.9091,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8478,32.1550,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8111,40.5033,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.7960,40.0440,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.0370,35.5832,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8478,35.0558,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8111,41.8140,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.7960,41.4249,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,5.0370,34.4614,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8478,33.3524,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8111,38.2841,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.7960,37.9365,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.0370,29.3365,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8478,28.5099,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8111,34.8405,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.7960,33.9584,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.0370,27.8710,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8478,27.0143,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8111,36.2500,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.7960,36.0147,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.0370,36.9955,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8478,36.8442,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8111,51.2553,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.7960,51.3023,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.txt b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.txt new file mode 100644 index 0000000..bce8902 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.037 +effective_logical_fps=59.559 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=25.343 +p95_encode_latency_ms=44.095 +max_encode_latency_ms=116.914 +avg_steady_encode_latency_ms=23.959 +p95_steady_encode_latency_ms=42.847 +max_steady_encode_latency_ms=52.232 +avg_tile_encode_latency_ms=20.983 +p95_tile_encode_latency_ms=41.763 +avg_max_tile_encode_latency_ms=23.753 +p95_max_tile_encode_latency_ms=42.636 +avg_steady_max_tile_encode_latency_ms=22.639 +p95_steady_max_tile_encode_latency_ms=41.814 +payload_bytes=1391053 +send_target=none +csv=benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile_logical.csv diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile_logical.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile_logical.csv new file mode 100644 index 0000000..adee711 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x2_30mbps_per_tile_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,116.9143,33.4704,231707 +1,4,0,11.0861,10.5677,65901 +2,4,0,20.7911,20.5321,36886 +3,4,0,30.5901,30.2305,69404 +4,4,0,40.2612,39.9823,87864 +5,4,0,50.0067,49.7581,53700 +6,4,0,59.9879,59.7507,24415 +7,4,0,69.7367,65.5900,15407 +8,4,0,71.0136,65.5591,12151 +9,4,0,70.7734,65.2729,11449 +10,4,0,65.3639,64.4093,8599 +11,4,0,57.3560,56.9969,6107 +12,4,0,50.5798,50.1625,5132 +13,4,0,44.1560,43.7539,3880 +14,4,0,37.4434,37.0126,4001 +15,4,0,32.2984,31.6158,3860 +16,4,0,23.7871,23.2123,4045 +17,4,0,17.5759,16.8547,3955 +18,4,0,12.7894,11.7367,3721 +19,4,0,11.9415,10.5658,3748 +20,4,0,13.5401,10.8596,3386 +21,4,0,13.9629,12.1827,2761 +22,4,0,13.7121,12.0346,2750 +23,4,0,13.3753,11.6684,2836 +24,4,0,11.8343,10.1336,2977 +25,4,0,12.9756,10.8552,2960 +26,4,0,13.0661,10.8504,3010 +27,4,0,13.2272,11.7103,2978 +28,4,0,12.0717,10.3552,2889 +29,4,0,14.1788,12.1497,2914 +30,4,0,13.0825,11.5531,2847 +31,4,0,13.1138,10.2705,3111 +32,4,0,14.0342,10.4593,2714 +33,4,0,13.8902,11.9283,2843 +34,4,0,11.9845,10.5759,2633 +35,4,0,16.9612,15.3044,2659 +36,4,0,15.5122,14.0492,2696 +37,4,0,12.3088,10.8791,2728 +38,4,0,13.1801,11.1115,2772 +39,4,0,14.9210,13.1119,2740 +40,4,0,12.8510,9.8100,2809 +41,4,0,11.6222,10.3033,2679 +42,4,0,11.7191,10.5179,2865 +43,4,0,12.2841,10.3078,2612 +44,4,0,11.5664,10.6120,2626 +45,4,0,11.2724,10.2614,2693 +46,4,0,13.4775,10.8482,2708 +47,4,0,11.5215,10.3822,2765 +48,4,0,11.7600,10.3859,2645 +49,4,0,12.1392,10.4435,2733 +50,4,0,11.7265,10.4619,2667 +51,4,0,12.4420,11.1696,2647 +52,4,0,12.4244,10.2714,2659 +53,4,0,12.9497,10.0692,2757 +54,4,0,13.0855,10.4165,2656 +55,4,0,14.4562,12.4347,2594 +56,4,0,15.0657,13.5598,2603 +57,4,0,12.2160,10.1827,2605 +58,4,0,11.6475,10.3217,2610 +59,4,0,12.0738,10.7990,2641 +60,4,0,11.7157,9.9130,2637 +61,4,0,11.0951,10.3461,2691 +62,4,0,10.9284,10.2332,2620 +63,4,0,10.8015,10.2235,2614 +64,4,0,10.8163,10.4108,2666 +65,4,0,10.8383,10.3580,2613 +66,4,0,10.8161,10.3388,2624 +67,4,0,10.8442,10.3961,2612 +68,4,0,10.7627,10.3805,2687 +69,4,0,10.7768,10.3714,2622 +70,4,0,10.7620,10.3728,2623 +71,4,0,10.8054,10.3526,2647 +72,4,0,10.7378,10.3105,2645 +73,4,0,10.9539,10.5028,2643 +74,4,0,10.7979,10.4327,2635 +75,4,0,10.7327,10.2445,2718 +76,4,0,10.8610,10.2930,2602 +77,4,0,11.0080,10.3980,2605 +78,4,0,10.9268,10.3407,2612 +79,4,0,11.0655,10.4612,2607 +80,4,0,10.9857,10.3902,2630 +81,4,0,10.9849,10.4558,2617 +82,4,0,10.8532,10.4408,2661 +83,4,0,11.1922,10.5769,2606 +84,4,0,10.9338,10.4261,2609 +85,4,0,11.2332,10.5485,2612 +86,4,0,11.0868,10.2155,2632 +87,4,0,10.9063,10.2562,2606 +88,4,0,11.5295,10.9906,2610 +89,4,0,14.7768,13.1076,2652 +90,4,0,11.2132,10.3439,2594 +91,4,0,11.4012,10.5817,2609 +92,4,0,11.2872,10.4291,2598 +93,4,0,11.1679,10.4595,2613 +94,4,0,11.3192,10.5343,2618 +95,4,0,11.7762,10.0638,2604 +96,4,0,12.2541,10.6845,2677 +97,4,0,11.7896,10.1989,2620 +98,4,0,11.7617,10.6063,2594 +99,4,0,11.3588,10.7433,2594 +100,4,0,11.4900,10.4005,2598 +101,4,0,11.3720,10.3896,2609 +102,4,0,11.3276,10.5284,2616 +103,4,0,11.3733,10.2950,2630 +104,4,0,11.4095,10.4243,2606 +105,4,0,11.8976,11.0408,2604 +106,4,0,11.5327,9.8891,2609 +107,4,0,11.5274,10.5730,2610 +108,4,0,11.6790,10.1753,2652 +109,4,0,11.7610,10.6156,2600 +110,4,0,12.2436,10.7178,2640 +111,4,0,11.8317,9.9771,2594 +112,4,0,11.8415,10.0238,2594 +113,4,0,11.9825,10.7314,2600 +114,4,0,11.8108,10.1689,2599 +115,4,0,12.6295,10.4498,2607 +116,4,0,12.1263,10.6224,2603 +117,4,0,11.9751,10.2825,2623 +118,4,0,11.8455,10.1247,2600 +119,4,0,11.9608,10.4836,2610 +120,4,0,12.5493,10.7123,2594 +121,4,0,12.0047,10.2305,2594 +122,4,0,13.0165,11.2437,2603 +123,4,0,11.4846,10.1914,2602 +124,4,0,12.3317,10.9497,2619 +125,4,0,11.8545,9.8384,2600 +126,4,0,12.0001,10.5408,2600 +127,4,0,11.7307,10.1963,2594 +128,4,0,11.9688,10.0655,2594 +129,4,0,12.0843,10.7443,2599 +130,4,0,11.8058,9.9753,2607 +131,4,0,11.9473,9.8738,2605 +132,4,0,12.4615,11.1642,2596 +133,4,0,11.9255,10.0523,2594 +134,4,0,12.3257,10.5813,2594 +135,4,0,12.0371,8.6622,2594 +136,4,0,12.3622,8.7325,2594 +137,4,0,12.0283,10.0477,2594 +138,4,0,11.5452,10.2523,2604 +139,4,0,11.8110,10.2265,2594 +140,4,0,12.0065,10.1651,2594 +141,4,0,12.0490,10.3634,2599 +142,4,0,11.8500,10.5334,2594 +143,4,0,12.2853,10.4012,2594 +144,4,0,11.8328,10.6225,2594 +145,4,0,11.8982,10.0459,2604 +146,4,0,14.5301,12.5065,2594 +147,4,0,11.9365,10.5868,2594 +148,4,0,11.9489,10.3635,2594 +149,4,0,11.7569,9.9113,2601 +150,4,0,13.7861,11.6883,2601 +151,4,0,11.8980,10.1120,2594 +152,4,0,11.5858,10.3045,2606 +153,4,0,12.2215,10.1773,2594 +154,4,0,12.8767,11.0933,2594 +155,4,0,11.6853,10.2928,2594 +156,4,0,11.2129,10.3616,2594 +157,4,0,10.9656,10.2285,2594 +158,4,0,10.9815,10.3298,2594 +159,4,0,11.0877,10.6419,2594 +160,4,0,10.9699,10.5275,2594 +161,4,0,11.2329,10.5381,2594 +162,4,0,10.9258,10.3824,2594 +163,4,0,10.8470,10.4183,2598 +164,4,0,10.8241,10.3324,2594 +165,4,0,10.7733,10.2736,2594 +166,4,0,10.7559,10.2165,2594 +167,4,0,10.7935,10.2563,2594 +168,4,0,10.8656,10.2624,2594 +169,4,0,10.7359,10.2265,2594 +170,4,0,10.9040,10.3130,2594 +171,4,0,10.8844,10.3393,2594 +172,4,0,10.9863,10.3109,2594 +173,4,0,11.2378,10.4246,2594 +174,4,0,10.9719,10.2472,2594 +175,4,0,10.8480,10.3215,2594 +176,4,0,11.1979,10.5003,2594 +177,4,0,11.3282,10.6016,2594 +178,4,0,11.1509,10.4340,2594 +179,4,0,11.6825,10.0796,2594 +180,4,0,11.8913,10.1040,2594 +181,4,0,13.7430,11.0762,2594 +182,4,0,32.1160,30.9201,2594 +183,4,0,41.2191,40.7688,2594 +184,4,0,44.0274,42.4500,2594 +185,4,0,42.8215,41.7384,2594 +186,4,0,39.1487,38.1195,2594 +187,4,0,39.8183,37.7470,2594 +188,4,0,41.3408,39.9470,2594 +189,4,0,41.6279,37.4045,2594 +190,4,0,38.7298,37.9126,2594 +191,4,0,38.5701,37.0714,2594 +192,4,0,41.3010,39.7736,2594 +193,4,0,40.9168,39.9675,2594 +194,4,0,37.5074,36.9239,2594 +195,4,0,36.1838,35.4509,2594 +196,4,0,40.7589,39.8403,2594 +197,4,0,40.8402,39.7957,2594 +198,4,0,42.7915,41.7625,2594 +199,4,0,44.0919,42.6006,2594 +200,4,0,39.7556,38.3404,2594 +201,4,0,37.1163,35.7756,2594 +202,4,0,40.9795,38.2111,2594 +203,4,0,42.8266,41.8981,2594 +204,4,0,38.4058,37.5184,2594 +205,4,0,37.6450,36.4233,2594 +206,4,0,41.1522,39.9260,2594 +207,4,0,40.3355,39.2047,2594 +208,4,0,41.2509,40.2694,2594 +209,4,0,41.6357,40.5285,2594 +210,4,0,41.8150,40.8876,2594 +211,4,0,41.4624,40.8910,2594 +212,4,0,40.8483,40.2852,2594 +213,4,0,38.2928,37.6213,2594 +214,4,0,36.8274,36.2012,2594 +215,4,0,41.6585,41.0216,2594 +216,4,0,41.9127,41.0423,2594 +217,4,0,45.6390,44.7925,2594 +218,4,0,42.0298,40.5442,2594 +219,4,0,35.9788,33.4966,2594 +220,4,0,42.6626,41.4255,2594 +221,4,0,41.0247,39.8301,2594 +222,4,0,37.5040,34.1217,2594 +223,4,0,40.8887,38.7127,2594 +224,4,0,38.6670,37.6388,2594 +225,4,0,36.7784,35.7617,2594 +226,4,0,41.0782,40.2371,2594 +227,4,0,41.3740,40.3267,2594 +228,4,0,44.8289,44.0065,2594 +229,4,0,44.6079,43.7345,2594 +230,4,0,42.1877,37.2066,2594 +231,4,0,39.8967,32.5157,2594 +232,4,0,43.1860,41.8703,2594 +233,4,0,40.4731,39.0517,2594 +234,4,0,38.2954,36.3876,2594 +235,4,0,42.3723,41.1055,2594 +236,4,0,41.2900,40.0003,2594 +237,4,0,37.0243,33.5826,2594 +238,4,0,42.5919,40.8566,2594 +239,4,0,42.4568,41.4135,2594 +240,4,0,38.9492,38.1838,2594 +241,4,0,39.1557,38.3913,2594 +242,4,0,36.8907,36.2693,2594 +243,4,0,40.6013,40.1045,2594 +244,4,0,42.2047,41.8221,2594 +245,4,0,39.3958,39.0342,2594 +246,4,0,40.4006,40.1375,2594 +247,4,0,40.1583,39.7015,2594 +248,4,0,40.6178,40.3896,2594 +249,4,0,40.3843,40.1152,2594 +250,4,0,40.4997,40.1687,2594 +251,4,0,40.5873,40.2668,2594 +252,4,0,40.5344,40.1009,2594 +253,4,0,40.6588,40.2355,2594 +254,4,0,38.8670,38.4795,2594 +255,4,0,37.1051,36.6067,2594 +256,4,0,38.8710,38.3904,2594 +257,4,0,39.7386,39.3339,2594 +258,4,0,43.7383,43.3006,2594 +259,4,0,41.6308,41.0897,2594 +260,4,0,42.8594,38.6298,2594 +261,4,0,38.4490,35.8434,2594 +262,4,0,40.2087,38.5558,2594 +263,4,0,42.8464,42.0446,2594 +264,4,0,40.1635,38.7315,2594 +265,4,0,37.7807,36.3183,2594 +266,4,0,39.4701,37.6244,2594 +267,4,0,40.3124,39.5138,2594 +268,4,0,41.1902,40.4280,2594 +269,4,0,42.8819,41.8584,2594 +270,4,0,41.6711,40.7700,2594 +271,4,0,39.3132,38.3922,2594 +272,4,0,37.4128,35.6290,2594 +273,4,0,41.4398,40.2743,2594 +274,4,0,40.3045,39.2578,2594 +275,4,0,42.2454,41.3398,2594 +276,4,0,39.1393,38.2993,2594 +277,4,0,38.7570,36.2803,2594 +278,4,0,42.2143,41.0805,2594 +279,4,0,38.7556,37.1502,2594 +280,4,0,38.7415,36.6834,2594 +281,4,0,47.6084,46.5232,2594 +282,4,0,38.2121,36.4208,2594 +283,4,0,37.0778,35.1493,2594 +284,4,0,41.8283,40.7910,2594 +285,4,0,42.9580,40.6947,2594 +286,4,0,39.3150,37.5187,2594 +287,4,0,37.4925,34.7812,2594 +288,4,0,41.9953,40.8649,2594 +289,4,0,41.6216,40.2320,2594 +290,4,0,43.7508,42.3345,2594 +291,4,0,38.7039,37.6327,2594 +292,4,0,37.9323,36.0294,2594 +293,4,0,41.2928,39.8610,2594 +294,4,0,41.7180,40.5033,2594 +295,4,0,42.9773,41.8140,2594 +296,4,0,40.0492,38.2841,2594 +297,4,0,36.2850,34.8405,2594 +298,4,0,37.7397,36.2500,2594 +299,4,0,52.2319,51.3023,2594 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.csv new file mode 100644 index 0000000..dd59513 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.csv @@ -0,0 +1,2401 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,3.7192,25.9833,0.0340,0.0000,0,0,0.0000,0,0.0000,0,1,0,30187,0 +1,1.4840,21.7617,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,21317,0 +2,1.4615,21.9518,0.0059,0.0000,0,0,0.0000,0,0.0000,0,1,0,29716,0 +3,1.4377,22.7278,0.0132,0.0000,0,0,0.0000,0,0.0000,0,1,0,33523,0 +4,1.4343,22.4170,0.0030,0.0000,0,0,0.0000,0,0.0000,0,1,0,35320,0 +5,1.4369,20.7952,0.0038,0.0000,0,0,0.0000,0,0.0000,0,1,0,32573,0 +6,1.4422,22.8173,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,39080,0 +7,1.5085,22.1583,0.0037,0.0000,0,0,0.0000,0,0.0000,0,1,0,38946,0 +8,3.7192,4.6358,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8167,0 +9,1.4840,4.5160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7319,0 +10,1.4615,7.2345,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8877,0 +11,1.4377,7.2875,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8493,0 +12,1.4343,10.0907,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9412,0 +13,1.4369,10.1352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11297,0 +14,1.4422,12.8896,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6766,0 +15,1.5085,12.9810,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9690,0 +16,3.7192,15.8020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4691,0 +17,1.4840,15.9106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3560,0 +18,1.4615,18.5490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5638,0 +19,1.4377,18.7465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5022,0 +20,1.4343,21.3982,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4941,0 +21,1.4369,21.6127,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6660,0 +22,1.4422,24.1497,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,8018,0 +23,1.5085,24.5348,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6692,0 +24,3.7192,27.0560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9206,0 +25,1.4840,27.4219,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8815,0 +26,1.4615,29.8326,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,10334,0 +27,1.4377,30.2239,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8363,0 +28,1.4343,32.6210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8770,0 +29,1.4369,33.1635,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12457,0 +30,1.4422,35.5059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8857,0 +31,1.5085,36.0384,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9102,0 +32,3.7192,38.2325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12278,0 +33,1.4840,38.8401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,10344,0 +34,1.4615,41.0727,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11837,0 +35,1.4377,41.7371,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11063,0 +36,1.4343,43.9083,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,10854,0 +37,1.4369,44.6136,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,13965,0 +38,1.4422,46.7448,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11581,0 +39,1.5085,47.5475,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9321,0 +40,3.7192,49.6009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +41,1.4840,50.5147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6145,0 +42,1.4615,52.4621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6617,0 +43,1.4377,53.4233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8238,0 +44,1.4343,55.3234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8852,0 +45,1.4369,56.2999,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11512,0 +46,1.4422,58.1675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16081,0 +47,1.5085,59.2263,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15989,0 +48,3.7192,61.0373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3726,0 +49,1.4840,62.0862,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2712,0 +50,1.4615,63.8668,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3826,0 +51,1.4377,64.9359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +52,1.4343,66.7174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3022,0 +53,1.4369,67.8224,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2707,0 +54,1.4422,69.5847,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3142,0 +55,1.5085,70.7345,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5517,0 +56,3.7192,72.4562,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +57,1.4840,73.2940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1974,0 +58,1.4615,74.9582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2287,0 +59,1.4377,73.2535,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +60,1.4343,74.8480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2218,0 +61,1.4369,73.2176,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +62,1.4422,74.7965,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2386,0 +63,1.5085,73.3443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3734,0 +64,3.7192,74.7717,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +65,1.4840,73.3135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +66,1.4615,74.7563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +67,1.4377,73.4715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +68,1.4343,74.7873,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +69,1.4369,73.4764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +70,1.4422,74.7512,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +71,1.5085,73.6771,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2759,0 +72,3.7192,74.7544,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +73,1.4840,73.6192,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +74,1.4615,74.6981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,1.4377,73.7001,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +76,1.4343,74.6847,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +77,1.4369,73.7830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +78,1.4422,74.6719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1711,0 +79,1.5085,73.7506,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2105,0 +80,3.7192,74.5784,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +81,1.4840,73.8518,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1145,0 +82,1.4615,74.5752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +83,1.4377,73.8258,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +84,1.4343,74.5109,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +85,1.4369,73.9106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +86,1.4422,74.4950,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +87,1.5085,73.9930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +88,3.7192,74.4752,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +89,1.4840,74.0141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +90,1.4615,74.4220,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,383,0 +91,1.4377,74.0550,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +92,1.4343,74.4020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1192,0 +93,1.4369,74.1408,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1225,0 +94,1.4422,74.4412,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1264,0 +95,1.5085,74.2337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +96,3.7192,74.4596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +97,1.4840,74.3115,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,639,0 +98,1.4615,74.4846,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +99,1.4377,74.3347,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +100,1.4343,74.5228,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +101,1.4369,74.4115,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,984,0 +102,1.4422,74.5162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +103,1.5085,74.4502,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +104,3.7192,74.5158,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,675,0 +105,1.4840,74.4809,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,530,0 +106,1.4615,74.4730,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,475,0 +107,1.4377,74.5472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,391,0 +108,1.4343,74.5138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +109,1.4369,74.6881,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +110,1.4422,74.5443,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +111,1.5085,74.7499,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,674,0 +112,3.7192,74.6013,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +113,1.4840,74.8594,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,406,0 +114,1.4615,74.6040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +115,1.4377,74.8232,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,383,0 +116,1.4343,74.4792,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,414,0 +117,1.4369,74.8017,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,415,0 +118,1.4422,74.4555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +119,1.5085,74.8771,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +120,3.7192,74.3859,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,564,0 +121,1.4840,74.7920,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +122,1.4615,74.3860,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,548,0 +123,1.4377,74.8930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +124,1.4343,74.3166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +125,1.4369,74.8852,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,466,0 +126,1.4422,74.3257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,408,0 +127,1.5085,74.8315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,658,0 +128,3.7192,74.2871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,506,0 +129,1.4840,74.9105,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,348,0 +130,1.4615,74.1934,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +131,1.4377,74.8525,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,505,0 +132,1.4343,74.0707,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,502,0 +133,1.4369,74.8444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,556,0 +134,1.4422,73.9119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +135,1.5085,74.7768,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +136,3.7192,73.7784,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,525,0 +137,1.4840,74.6726,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +138,1.4615,73.6546,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +139,1.4377,74.6270,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,576,0 +140,1.4343,73.5799,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,549,0 +141,1.4369,74.6494,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +142,1.4422,73.5152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,592,0 +143,1.5085,74.6468,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,663,0 +144,3.7192,73.4242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,488,0 +145,1.4840,74.6251,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +146,1.4615,73.3033,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +147,1.4377,74.6456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,535,0 +148,1.4343,73.2504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,494,0 +149,1.4369,74.5898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,553,0 +150,1.4422,73.1684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,570,0 +151,1.5085,74.6271,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,603,0 +152,3.7192,73.0890,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,403,0 +153,1.4840,74.5845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +154,1.4615,73.0442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,580,0 +155,1.4377,74.5625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,663,0 +156,1.4343,72.9565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,682,0 +157,1.4369,74.5601,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +158,1.4422,72.8338,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,673,0 +159,1.5085,74.5426,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +160,3.7192,72.7409,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,362,0 +161,1.4840,74.5559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,335,0 +162,1.4615,72.7141,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +163,1.4377,74.5935,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +164,1.4343,72.7703,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +165,1.4369,74.6771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +166,1.4422,72.7915,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +167,1.5085,74.8023,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +168,3.7192,72.8385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +169,1.4840,74.7780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +170,1.4615,72.8680,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,368,0 +171,1.4377,74.7843,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +172,1.4343,72.8253,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +173,1.4369,74.7458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,419,0 +174,1.4422,73.0205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +175,1.5085,74.7934,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,386,0 +176,3.7192,72.9013,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,347,0 +177,1.4840,74.7869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,333,0 +178,1.4615,72.7947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +179,1.4377,74.8227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,381,0 +180,1.4343,73.0538,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,404,0 +181,1.4369,74.9543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,383,0 +182,1.4422,73.0003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +183,1.5085,75.0148,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +184,3.7192,73.1919,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,343,0 +185,1.4840,75.0537,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,338,0 +186,1.4615,73.1835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +187,1.4377,75.0981,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,410,0 +188,1.4343,73.0625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +189,1.4369,75.1679,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,459,0 +190,1.4422,73.0209,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,399,0 +191,1.5085,75.2365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,374,0 +192,3.7192,72.8745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,349,0 +193,1.4840,75.2273,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +194,1.4615,72.7168,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,420,0 +195,1.4377,75.2709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,467,0 +196,1.4343,72.8665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,500,0 +197,1.4369,75.1900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,542,0 +198,1.4422,73.0497,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,512,0 +199,1.5085,75.5280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,414,0 +200,3.7192,73.1480,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,333,0 +201,1.4840,75.4889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +202,1.4615,73.0563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +203,1.4377,75.4886,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +204,1.4343,73.2035,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,480,0 +205,1.4369,75.7829,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,514,0 +206,1.4422,73.3852,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,430,0 +207,1.5085,75.7397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +208,3.7192,68.4373,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,336,0 +209,1.4840,71.1205,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +210,1.4615,71.3496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,417,0 +211,1.4377,73.8864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,545,0 +212,1.4343,73.3365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,642,0 +213,1.4369,75.9573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +214,1.4422,73.1722,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,534,0 +215,1.5085,75.8750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +216,3.7192,61.9098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,356,0 +217,1.4840,64.6415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +218,1.4615,64.5993,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,504,0 +219,1.4377,67.3610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +220,1.4343,67.5096,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +221,1.4369,70.1470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +222,1.4422,70.2542,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +223,1.5085,72.7235,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,510,0 +224,3.7192,56.8734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,348,0 +225,1.4840,59.7570,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +226,1.4615,59.6658,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,458,0 +227,1.4377,62.4666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +228,1.4343,62.5997,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,395,0 +229,1.4369,65.3725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +230,1.4422,65.5450,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +231,1.5085,67.9841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,462,0 +232,3.7192,52.0123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,346,0 +233,1.4840,54.4350,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,330,0 +234,1.4615,54.6359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,419,0 +235,1.4377,57.2295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,398,0 +236,1.4343,57.5772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +237,1.4369,59.9777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +238,1.4422,60.2469,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +239,1.5085,62.9790,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,466,0 +240,3.7192,47.7368,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,340,0 +241,1.4840,50.5084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,331,0 +242,1.4615,50.5229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +243,1.4377,53.2614,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,404,0 +244,1.4343,53.2501,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +245,1.4369,56.0620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +246,1.4422,56.0258,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,394,0 +247,1.5085,58.8454,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,485,0 +248,3.7192,44.0373,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +249,1.4840,46.6055,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +250,1.4615,46.6454,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +251,1.4377,49.3372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +252,1.4343,49.3035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +253,1.4369,52.1085,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,476,0 +254,1.4422,51.9110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +255,1.5085,54.7596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +256,3.7192,38.3710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +257,1.4840,41.0179,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +258,1.4615,41.1295,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +259,1.4377,43.9883,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,412,0 +260,1.4343,43.8382,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,410,0 +261,1.4369,46.6574,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +262,1.4422,46.4506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,401,0 +263,1.5085,50.0507,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +264,3.7192,34.5671,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +265,1.4840,37.5174,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +266,1.4615,37.3778,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +267,1.4377,40.1776,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,494,0 +268,1.4343,40.1278,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,509,0 +269,1.4369,43.5093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,521,0 +270,1.4422,42.9793,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +271,1.5085,45.7949,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +272,3.7192,30.0053,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +273,1.4840,33.3843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +274,1.4615,33.0255,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +275,1.4377,35.6283,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +276,1.4343,35.2952,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +277,1.4369,38.3019,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +278,1.4422,37.9514,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +279,1.5085,40.9080,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +280,3.7192,25.1471,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +281,1.4840,28.1624,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +282,1.4615,27.6819,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +283,1.4377,30.7177,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +284,1.4343,30.2383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +285,1.4369,33.2948,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +286,1.4422,32.6256,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +287,1.5085,35.6590,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +288,3.7192,21.9357,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +289,1.4840,23.1443,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +290,1.4615,22.3675,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,428,0 +291,1.4377,25.5156,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +292,1.4343,24.8504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +293,1.4369,28.1016,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +294,1.4422,27.3662,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +295,1.5085,30.6643,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +296,3.7192,17.5478,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +297,1.4840,20.6269,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +298,1.4615,20.1855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,397,0 +299,1.4377,23.2134,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +300,1.4343,22.7419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,386,0 +301,1.4369,25.5255,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +302,1.4422,25.0675,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +303,1.5085,28.0023,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +304,3.7192,10.4324,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +305,1.4840,13.4995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +306,1.4615,13.1254,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,451,0 +307,1.4377,17.4797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,412,0 +308,1.4343,17.0799,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +309,1.4369,20.2947,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,453,0 +310,1.4422,19.8904,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,395,0 +311,1.5085,23.0785,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +312,3.7192,7.8336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +313,1.4840,10.9279,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +314,1.4615,10.4403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +315,1.4377,13.5910,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,404,0 +316,1.4343,13.0612,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,391,0 +317,1.4369,16.3175,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,471,0 +318,1.4422,15.8348,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +319,1.5085,19.0906,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +320,3.7192,3.6114,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +321,1.4840,5.5875,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +322,1.4615,6.2138,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,421,0 +323,1.4377,8.3466,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +324,1.4343,8.9262,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +325,1.4369,11.1714,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,526,0 +326,1.4422,11.7701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +327,1.5085,15.3012,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +328,3.7192,3.5816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +329,1.4840,4.6245,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +330,1.4615,6.2358,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,406,0 +331,1.4377,7.3537,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,368,0 +332,1.4343,8.9548,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +333,1.4369,10.0701,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,368,0 +334,1.4422,11.8314,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +335,1.5085,12.9234,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +336,3.7192,3.5689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +337,1.4840,3.6364,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +338,1.4615,6.0558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,498,0 +339,1.4377,6.2203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +340,1.4343,8.6670,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +341,1.4369,8.9723,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +342,1.4422,11.5509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +343,1.5085,11.8130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,459,0 +344,3.7192,3.4751,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +345,1.4840,3.5452,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +346,1.4615,5.9773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,369,0 +347,1.4377,6.1563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +348,1.4343,8.6342,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +349,1.4369,8.8798,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +350,1.4422,11.3574,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +351,1.5085,11.5744,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +352,3.7192,3.5635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +353,1.4840,3.5564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +354,1.4615,5.9811,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +355,1.4377,6.1291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +356,1.4343,8.5736,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,388,0 +357,1.4369,8.7127,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,411,0 +358,1.4422,11.3338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +359,1.5085,11.4232,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +360,3.7192,3.5677,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +361,1.4840,3.5522,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +362,1.4615,5.9609,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +363,1.4377,6.0297,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,426,0 +364,1.4343,8.2930,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +365,1.4369,8.4177,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,464,0 +366,1.4422,10.8871,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +367,1.5085,10.9708,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +368,3.7192,3.6546,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +369,1.4840,3.5232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +370,1.4615,5.9470,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +371,1.4377,6.1165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,412,0 +372,1.4343,8.5333,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,408,0 +373,1.4369,8.7720,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +374,1.4422,11.2178,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +375,1.5085,11.5099,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +376,3.7192,3.6512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +377,1.4840,3.5197,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +378,1.4615,6.0663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,407,0 +379,1.4377,6.1582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,403,0 +380,1.4343,8.6975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,461,0 +381,1.4369,8.7952,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,520,0 +382,1.4422,11.1097,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +383,1.5085,11.1958,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +384,3.7192,3.6412,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +385,1.4840,3.6622,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +386,1.4615,5.9013,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +387,1.4377,6.0142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +388,1.4343,8.4650,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,368,0 +389,1.4369,8.5629,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +390,1.4422,11.0736,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +391,1.5085,11.2698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +392,3.7192,3.6939,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +393,1.4840,3.5783,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +394,1.4615,6.2165,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,430,0 +395,1.4377,6.2418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +396,1.4343,8.9754,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +397,1.4369,9.0440,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +398,1.4422,11.8580,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +399,1.5085,11.8810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +400,3.7192,3.8619,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +401,1.4840,3.7135,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +402,1.4615,6.1410,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +403,1.4377,6.3421,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +404,1.4343,8.8455,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +405,1.4369,9.0765,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +406,1.4422,11.7093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +407,1.5085,11.9169,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +408,3.7192,4.0603,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +409,1.4840,3.6833,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +410,1.4615,6.2102,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,409,0 +411,1.4377,6.3758,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +412,1.4343,8.9411,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,393,0 +413,1.4369,9.1516,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,413,0 +414,1.4422,11.7842,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +415,1.5085,12.0397,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +416,3.7192,3.5660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +417,1.4840,3.5978,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +418,1.4615,6.1228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,400,0 +419,1.4377,6.3471,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +420,1.4343,8.8928,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,394,0 +421,1.4369,9.1418,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +422,1.4422,11.7093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +423,1.5085,11.9892,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +424,3.7192,3.7358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +425,1.4840,3.6082,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +426,1.4615,6.4517,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,500,0 +427,1.4377,6.3607,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +428,1.4343,9.0105,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +429,1.4369,9.1501,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,414,0 +430,1.4422,11.8980,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +431,1.5085,12.0069,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,458,0 +432,3.7192,3.8533,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +433,1.4840,3.6600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +434,1.4615,5.6336,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +435,1.4377,5.9060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,387,0 +436,1.4343,8.0146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +437,1.4369,8.3212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,471,0 +438,1.4422,10.4648,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +439,1.5085,10.6852,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +440,3.7192,3.9406,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +441,1.4840,3.7070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +442,1.4615,5.6033,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +443,1.4377,5.8475,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +444,1.4343,7.7802,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +445,1.4369,8.1352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +446,1.4422,10.3192,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +447,1.5085,10.6330,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +448,3.7192,3.9925,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +449,1.4840,3.7095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +450,1.4615,5.3965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,392,0 +451,1.4377,5.6269,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +452,1.4343,7.5486,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +453,1.4369,8.0035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +454,1.4422,10.1206,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +455,1.5085,10.5702,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +456,3.7192,3.6959,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +457,1.4840,3.5652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +458,1.4615,6.0723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,384,0 +459,1.4377,6.1830,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +460,1.4343,8.7362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +461,1.4369,8.9135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +462,1.4422,11.4934,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +463,1.5085,11.6387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +464,3.7192,3.5767,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +465,1.4840,3.5362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +466,1.4615,6.0380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +467,1.4377,6.1724,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +468,1.4343,8.6976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,399,0 +469,1.4369,8.9025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +470,1.4422,11.4885,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +471,1.5085,11.6830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +472,3.7192,3.6196,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +473,1.4840,3.5693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +474,1.4615,5.9627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,381,0 +475,1.4377,6.1054,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +476,1.4343,8.5491,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +477,1.4369,8.7094,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,395,0 +478,1.4422,11.2493,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +479,1.5085,11.4667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +480,3.7192,3.5763,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +481,1.4840,3.5850,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +482,1.4615,5.8957,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +483,1.4377,6.0829,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +484,1.4343,8.4347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +485,1.4369,8.6782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +486,1.4422,11.1078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +487,1.5085,11.3472,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,407,0 +488,3.7192,3.7095,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +489,1.4840,3.5770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +490,1.4615,5.9131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +491,1.4377,6.1358,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +492,1.4343,8.5034,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,416,0 +493,1.4369,8.7515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +494,1.4422,11.2252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +495,1.5085,11.5437,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +496,3.7192,3.6163,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +497,1.4840,3.5797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +498,1.4615,6.0025,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,383,0 +499,1.4377,6.1255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +500,1.4343,8.6144,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +501,1.4369,8.7801,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +502,1.4422,11.3037,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +503,1.5085,11.4695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +504,3.7192,3.6650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +505,1.4840,3.5446,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +506,1.4615,5.9967,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +507,1.4377,6.1164,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +508,1.4343,8.5375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +509,1.4369,8.7298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +510,1.4422,11.2627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +511,1.5085,11.4179,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +512,3.7192,3.6210,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +513,1.4840,3.5800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +514,1.4615,5.9500,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +515,1.4377,6.1330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +516,1.4343,8.5704,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +517,1.4369,8.7905,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +518,1.4422,11.3439,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +519,1.5085,11.4967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +520,3.7192,3.7179,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +521,1.4840,3.5795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +522,1.4615,6.1305,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +523,1.4377,6.5635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +524,1.4343,10.0441,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +525,1.4369,10.0350,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,388,0 +526,1.4422,11.2679,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +527,1.5085,11.7580,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +528,3.7192,3.9843,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +529,1.4840,3.5760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +530,1.4615,5.8529,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +531,1.4377,6.0298,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,388,0 +532,1.4343,8.5363,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +533,1.4369,8.6857,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,405,0 +534,1.4422,11.0665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +535,1.5085,11.1320,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +536,3.7192,3.7317,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +537,1.4840,3.6100,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +538,1.4615,5.9461,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +539,1.4377,6.1004,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +540,1.4343,8.5266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +541,1.4369,8.6918,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +542,1.4422,11.2197,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +543,1.5085,11.2716,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +544,3.7192,3.7382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +545,1.4840,3.5682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +546,1.4615,6.0358,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +547,1.4377,6.1025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,401,0 +548,1.4343,8.5973,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,412,0 +549,1.4369,8.7399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,453,0 +550,1.4422,11.2828,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +551,1.5085,11.4399,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +552,3.7192,3.6480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +553,1.4840,3.5632,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +554,1.4615,6.0137,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +555,1.4377,6.1038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +556,1.4343,8.6187,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +557,1.4369,8.7239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +558,1.4422,11.3127,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +559,1.5085,11.4507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +560,3.7192,3.6681,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +561,1.4840,3.5814,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +562,1.4615,5.9860,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +563,1.4377,6.1313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +564,1.4343,8.5806,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +565,1.4369,8.7683,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +566,1.4422,11.2892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +567,1.5085,11.4386,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,374,0 +568,3.7192,3.6562,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +569,1.4840,3.5757,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +570,1.4615,6.3601,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +571,1.4377,6.3439,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +572,1.4343,8.5590,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +573,1.4369,8.5983,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +574,1.4422,11.1204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +575,1.5085,11.2094,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +576,3.7192,3.7337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +577,1.4840,3.5913,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +578,1.4615,5.9240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +579,1.4377,6.0784,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +580,1.4343,8.4677,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +581,1.4369,8.6435,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +582,1.4422,11.0597,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +583,1.5085,11.2615,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +584,3.7192,3.7995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +585,1.4840,3.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +586,1.4615,6.0151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +587,1.4377,6.1501,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +588,1.4343,8.5822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +589,1.4369,8.7797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +590,1.4422,11.3600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +591,1.5085,11.5503,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +592,3.7192,3.6126,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +593,1.4840,3.5508,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +594,1.4615,5.9518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +595,1.4377,6.1318,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +596,1.4343,8.5870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +597,1.4369,8.7948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +598,1.4422,11.3402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +599,1.5085,11.5404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +600,3.7192,3.5085,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +601,1.4840,3.5598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +602,1.4615,5.9688,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,381,0 +603,1.4377,6.1133,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +604,1.4343,8.5475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,386,0 +605,1.4369,8.7892,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,406,0 +606,1.4422,11.2901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +607,1.5085,11.4854,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +608,3.7192,3.5525,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +609,1.4840,3.5967,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +610,1.4615,5.9129,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +611,1.4377,6.1247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,374,0 +612,1.4343,8.5017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +613,1.4369,8.7233,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +614,1.4422,11.1893,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +615,1.5085,11.3960,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +616,3.7192,3.5655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +617,1.4840,3.5882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +618,1.4615,5.9563,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +619,1.4377,6.1205,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +620,1.4343,8.5403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +621,1.4369,8.7335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +622,1.4422,11.3059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +623,1.5085,11.4200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +624,3.7192,4.2316,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +625,1.4840,3.6571,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +626,1.4615,5.6547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +627,1.4377,6.1689,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +628,1.4343,8.1487,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +629,1.4369,8.4318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +630,1.4422,10.5996,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +631,1.5085,11.0457,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +632,3.7192,3.8490,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +633,1.4840,3.7095,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +634,1.4615,5.5734,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +635,1.4377,5.9448,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +636,1.4343,8.0235,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +637,1.4369,8.4387,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +638,1.4422,10.4843,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +639,1.5085,10.8891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +640,3.7192,3.7499,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +641,1.4840,3.5980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +642,1.4615,5.9890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +643,1.4377,6.1496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +644,1.4343,8.5785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +645,1.4369,8.8096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +646,1.4422,11.2774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +647,1.5085,11.5715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +648,3.7192,3.6252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +649,1.4840,3.5483,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +650,1.4615,6.0250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +651,1.4377,6.1414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +652,1.4343,8.6579,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +653,1.4369,8.8254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +654,1.4422,11.4086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +655,1.5085,11.5735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +656,3.7192,3.5793,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +657,1.4840,3.5273,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +658,1.4615,5.9821,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +659,1.4377,6.0904,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +660,1.4343,8.5475,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +661,1.4369,8.7012,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,393,0 +662,1.4422,11.2305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +663,1.5085,11.3571,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +664,3.7192,3.5488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +665,1.4840,3.5383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +666,1.4615,5.9394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +667,1.4377,6.0746,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +668,1.4343,8.5033,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +669,1.4369,8.6798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +670,1.4422,11.1862,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +671,1.5085,11.3559,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +672,3.7192,3.7458,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +673,1.4840,3.5722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +674,1.4615,5.8920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +675,1.4377,6.0789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +676,1.4343,8.4509,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +677,1.4369,8.6248,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +678,1.4422,11.0917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +679,1.5085,11.2730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +680,3.7192,3.6489,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +681,1.4840,3.5548,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +682,1.4615,6.0154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +683,1.4377,6.1370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +684,1.4343,8.6443,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +685,1.4369,8.8326,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +686,1.4422,11.4177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +687,1.5085,11.5565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +688,3.7192,3.6812,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +689,1.4840,3.5593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +690,1.4615,6.0266,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +691,1.4377,6.1347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +692,1.4343,8.7127,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +693,1.4369,8.8116,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +694,1.4422,11.4358,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +695,1.5085,11.5621,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +696,3.7192,3.5802,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +697,1.4840,3.5438,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +698,1.4615,5.9917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +699,1.4377,6.0645,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +700,1.4343,8.5573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +701,1.4369,8.6836,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +702,1.4422,11.2282,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +703,1.5085,11.3457,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +704,3.7192,3.5926,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +705,1.4840,3.5878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +706,1.4615,5.9196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +707,1.4377,6.1443,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +708,1.4343,8.5099,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +709,1.4369,8.7583,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +710,1.4422,11.2338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +711,1.5085,11.4367,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +712,3.7192,3.6887,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +713,1.4840,3.6197,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +714,1.4615,6.8475,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +715,1.4377,6.8674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +716,1.4343,9.4675,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +717,1.4369,9.3044,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +718,1.4422,11.1565,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +719,1.5085,11.1938,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +720,3.7192,3.7068,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +721,1.4840,3.6030,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +722,1.4615,5.8776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +723,1.4377,6.0634,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +724,1.4343,8.4515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +725,1.4369,8.6187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +726,1.4422,11.0764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +727,1.5085,11.2769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +728,3.7192,3.6380,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +729,1.4840,3.5770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +730,1.4615,5.9247,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +731,1.4377,6.1223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +732,1.4343,8.5635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +733,1.4369,8.7950,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +734,1.4422,11.3030,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +735,1.5085,11.5056,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +736,3.7192,3.5329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +737,1.4840,3.5483,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +738,1.4615,5.9334,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +739,1.4377,6.0864,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +740,1.4343,8.5385,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +741,1.4369,8.6864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +742,1.4422,11.1805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +743,1.5085,11.3172,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +744,3.7192,3.6297,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +745,1.4840,3.5492,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +746,1.4615,5.9633,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +747,1.4377,6.0877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +748,1.4343,8.5203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +749,1.4369,8.6878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +750,1.4422,11.2284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +751,1.5085,11.3434,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +752,3.7192,3.5427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +753,1.4840,3.5369,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +754,1.4615,5.9465,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +755,1.4377,6.0591,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +756,1.4343,8.5194,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +757,1.4369,8.6762,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +758,1.4422,11.1877,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +759,1.5085,11.3503,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +760,3.7192,3.6127,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +761,1.4840,3.5788,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +762,1.4615,6.0347,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +763,1.4377,6.0183,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +764,1.4343,8.4457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +765,1.4369,8.5596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +766,1.4422,11.0338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +767,1.5085,11.1204,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +768,3.7192,3.6495,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +769,1.4840,3.5526,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +770,1.4615,5.9279,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +771,1.4377,6.1444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +772,1.4343,8.5802,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +773,1.4369,8.8183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +774,1.4422,11.2677,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +775,1.5085,11.5218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +776,3.7192,3.7064,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +777,1.4840,3.5569,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +778,1.4615,6.0823,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +779,1.4377,6.2170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +780,1.4343,8.7716,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +781,1.4369,8.9207,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +782,1.4422,11.5272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +783,1.5085,11.7062,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,384,0 +784,3.7192,3.5315,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +785,1.4840,3.5206,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +786,1.4615,6.0220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +787,1.4377,6.1462,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +788,1.4343,8.7118,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +789,1.4369,8.8611,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +790,1.4422,11.5762,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +791,1.5085,11.6313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +792,3.7192,3.5125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +793,1.4840,3.5226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +794,1.4615,6.0103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +795,1.4377,6.1238,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +796,1.4343,8.6519,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +797,1.4369,8.7845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +798,1.4422,11.3852,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +799,1.5085,11.5297,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +800,3.7192,3.7047,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +801,1.4840,3.5540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +802,1.4615,6.0582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +803,1.4377,6.1567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +804,1.4343,8.6913,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +805,1.4369,8.8393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +806,1.4422,11.4473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +807,1.5085,11.5554,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +808,3.7192,3.4912,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +809,1.4840,3.5567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +810,1.4615,5.9640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +811,1.4377,6.1393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +812,1.4343,8.5876,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +813,1.4369,8.7996,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +814,1.4422,11.3646,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +815,1.5085,11.5219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +816,3.7192,3.7678,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +817,1.4840,3.5662,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +818,1.4615,6.0386,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +819,1.4377,6.1574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +820,1.4343,8.6820,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +821,1.4369,8.8554,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +822,1.4422,11.4260,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +823,1.5085,11.6042,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +824,3.7192,3.5778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +825,1.4840,3.5342,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +826,1.4615,5.9919,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +827,1.4377,6.1349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +828,1.4343,8.6415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +829,1.4369,8.8283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +830,1.4422,11.4166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,374,0 +831,1.5085,11.6036,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +832,3.7192,3.5473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +833,1.4840,3.5392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +834,1.4615,5.9447,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +835,1.4377,6.1343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +836,1.4343,8.5751,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +837,1.4369,8.8193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,379,0 +838,1.4422,11.3983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +839,1.5085,11.5524,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +840,3.7192,3.4910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +841,1.4840,3.5417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +842,1.4615,5.9569,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +843,1.4377,6.1402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +844,1.4343,8.5773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +845,1.4369,8.8133,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +846,1.4422,11.2988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +847,1.5085,11.5465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +848,3.7192,3.5222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +849,1.4840,3.5513,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +850,1.4615,5.8924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +851,1.4377,6.0593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +852,1.4343,8.4615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +853,1.4369,8.6422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +854,1.4422,11.1161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +855,1.5085,11.3122,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +856,3.7192,3.6384,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +857,1.4840,3.6025,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +858,1.4615,5.9832,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +859,1.4377,6.1310,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +860,1.4343,8.5871,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +861,1.4369,8.7427,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +862,1.4422,11.2713,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +863,1.5085,11.4140,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +864,3.7192,3.6072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +865,1.4840,3.5733,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +866,1.4615,6.6491,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +867,1.4377,6.6620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +868,1.4343,9.3355,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +869,1.4369,9.1903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,374,0 +870,1.4422,14.4934,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +871,1.5085,14.4380,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,375,0 +872,3.7192,4.9122,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +873,1.4840,3.6979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +874,1.4615,5.5616,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +875,1.4377,6.2550,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +876,1.4343,8.2458,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +877,1.4369,8.6872,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +878,1.4422,10.7238,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +879,1.5085,11.2130,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,371,0 +880,3.7192,3.6642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +881,1.4840,3.5811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +882,1.4615,6.4936,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +883,1.4377,6.2865,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +884,1.4343,8.4469,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +885,1.4369,8.6154,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +886,1.4422,12.5300,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +887,1.5085,12.4819,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,415,0 +888,3.7192,3.7160,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +889,1.4840,3.6043,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +890,1.4615,5.8628,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +891,1.4377,6.0470,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +892,1.4343,8.3725,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +893,1.4369,8.5735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +894,1.4422,11.0198,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +895,1.5085,11.2077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +896,3.7192,3.6332,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +897,1.4840,3.6204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +898,1.4615,5.9778,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +899,1.4377,6.1471,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +900,1.4343,8.5609,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +901,1.4369,8.8223,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +902,1.4422,11.2861,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +903,1.5085,11.5188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +904,3.7192,3.5593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +905,1.4840,3.5991,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +906,1.4615,5.9345,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +907,1.4377,6.1233,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +908,1.4343,8.5160,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +909,1.4369,8.7313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +910,1.4422,11.2074,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +911,1.5085,11.3968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +912,3.7192,3.8655,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +913,1.4840,3.5793,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +914,1.4615,6.0511,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +915,1.4377,6.1316,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +916,1.4343,8.7060,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +917,1.4369,8.8366,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +918,1.4422,11.4812,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +919,1.5085,11.6030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +920,3.7192,3.5702,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +921,1.4840,3.5676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +922,1.4615,5.9960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +923,1.4377,6.1406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +924,1.4343,8.6188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +925,1.4369,8.8056,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +926,1.4422,11.3773,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +927,1.5085,11.5596,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,384,0 +928,3.7192,3.7344,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +929,1.4840,3.5410,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +930,1.4615,6.0206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +931,1.4377,6.1252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +932,1.4343,8.6639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +933,1.4369,8.8130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +934,1.4422,11.4095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +935,1.5085,11.5547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,373,0 +936,3.7192,3.7412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +937,1.4840,3.5594,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +938,1.4615,6.0425,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +939,1.4377,6.1153,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +940,1.4343,8.5686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +941,1.4369,8.7267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +942,1.4422,11.2719,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +943,1.5085,11.4221,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +944,3.7192,3.7008,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +945,1.4840,3.5326,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +946,1.4615,6.0000,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +947,1.4377,6.0763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +948,1.4343,8.5299,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +949,1.4369,8.6780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +950,1.4422,11.3130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +951,1.5085,11.3475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +952,3.7192,3.6386,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +953,1.4840,3.5520,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +954,1.4615,5.9262,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +955,1.4377,6.1145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +956,1.4343,8.5433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +957,1.4369,8.7495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +958,1.4422,11.2364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +959,1.5085,11.4395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,382,0 +960,3.7192,3.5789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +961,1.4840,3.5746,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +962,1.4615,5.9742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +963,1.4377,6.1671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +964,1.4343,8.6197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +965,1.4369,8.8226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +966,1.4422,11.4135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +967,1.5085,11.5683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +968,3.7192,3.6336,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +969,1.4840,3.5878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +970,1.4615,5.9534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +971,1.4377,6.1494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +972,1.4343,8.5596,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +973,1.4369,8.7421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +974,1.4422,11.2091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +975,1.5085,11.4400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +976,3.7192,3.5670,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +977,1.4840,3.5548,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +978,1.4615,5.9919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +979,1.4377,6.0682,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +980,1.4343,8.5554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +981,1.4369,8.6742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +982,1.4422,11.3242,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,377,0 +983,1.5085,11.3708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +984,3.7192,3.6459,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +985,1.4840,3.6180,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +986,1.4615,5.8467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +987,1.4377,6.0410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +988,1.4343,8.3450,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +989,1.4369,8.5797,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +990,1.4422,10.9615,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,372,0 +991,1.5085,11.1656,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +992,3.7192,3.7775,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +993,1.4840,3.5630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +994,1.4615,5.9817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +995,1.4377,6.1370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +996,1.4343,8.6237,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +997,1.4369,8.8021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +998,1.4422,11.3375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,378,0 +999,1.5085,11.5246,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1000,3.7192,3.5006,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1001,1.4840,3.5654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1002,1.4615,5.9508,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1003,1.4377,6.1493,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1004,1.4343,8.5823,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1005,1.4369,8.8480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1006,1.4422,11.3718,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1007,1.5085,11.6028,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1008,3.7192,3.5918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1009,1.4840,3.5346,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1010,1.4615,5.9341,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1011,1.4377,6.0467,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1012,1.4343,8.4982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1013,1.4369,8.6286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1014,1.4422,11.2957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1015,1.5085,11.3205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1016,3.7192,3.6539,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1017,1.4840,3.5891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1018,1.4615,6.0334,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1019,1.4377,6.1604,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1020,1.4343,8.6423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1021,1.4369,8.7900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1022,1.4422,11.3207,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1023,1.5085,11.4730,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1024,3.7192,3.6345,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1025,1.4840,3.6018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1026,1.4615,6.6475,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1027,1.4377,6.4480,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1028,1.4343,8.4517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1029,1.4369,8.6564,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1030,1.4422,11.8833,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1031,1.5085,11.6922,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1032,3.7192,3.9392,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1033,1.4840,3.8212,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1034,1.4615,5.0062,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1035,1.4377,5.4761,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1036,1.4343,7.4030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1037,1.4369,8.0498,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1038,1.4422,9.9998,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +1039,1.5085,10.6649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1040,3.7192,3.7862,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1041,1.4840,3.6024,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1042,1.4615,6.1566,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1043,1.4377,6.1651,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1044,1.4343,8.7631,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1045,1.4369,8.8805,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1046,1.4422,11.4109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1047,1.5085,11.4853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1048,3.7192,3.6258,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1049,1.4840,3.5204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1050,1.4615,5.9303,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1051,1.4377,6.1196,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1052,1.4343,8.5334,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1053,1.4369,8.7310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1054,1.4422,11.2680,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,376,0 +1055,1.5085,11.4563,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1056,3.7192,3.8638,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1057,1.4840,3.5795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1058,1.4615,6.0542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1059,1.4377,6.1724,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1060,1.4343,8.6878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1061,1.4369,8.8643,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1062,1.4422,11.4433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1063,1.5085,11.6458,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1064,3.7192,3.6063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1065,1.4840,3.5425,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1066,1.4615,5.9610,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1067,1.4377,6.0683,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1068,1.4343,8.5253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1069,1.4369,8.6900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1070,1.4422,11.1833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1071,1.5085,11.3519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1072,3.7192,3.6333,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1073,1.4840,3.6015,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1074,1.4615,5.9309,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1075,1.4377,6.1403,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1076,1.4343,8.5315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1077,1.4369,8.7831,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1078,1.4422,11.2055,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1079,1.5085,11.4661,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1080,3.7192,3.6458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1081,1.4840,3.5681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1082,1.4615,5.9848,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1083,1.4377,6.0416,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1084,1.4343,8.4697,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1085,1.4369,8.5787,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1086,1.4422,11.8778,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1087,1.5085,11.6681,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1088,3.7192,3.8181,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1089,1.4840,3.5631,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1090,1.4615,6.0398,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1091,1.4377,6.1600,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1092,1.4343,8.6614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1093,1.4369,8.8445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1094,1.4422,11.4415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1095,1.5085,11.6047,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1096,3.7192,3.6397,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1097,1.4840,3.6085,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1098,1.4615,6.0150,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1099,1.4377,6.1972,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1100,1.4343,8.6277,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1101,1.4369,8.8848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1102,1.4422,11.4766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1103,1.5085,11.6255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1104,3.7192,3.8547,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1105,1.4840,3.5607,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1106,1.4615,5.9610,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1107,1.4377,6.1144,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1108,1.4343,8.5216,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1109,1.4369,8.7097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1110,1.4422,11.2147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,370,0 +1111,1.5085,11.3902,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1112,3.7192,3.7742,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1113,1.4840,3.5804,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1114,1.4615,6.0522,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1115,1.4377,6.1444,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1116,1.4343,8.7703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1117,1.4369,8.7967,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1118,1.4422,11.5277,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1119,1.5085,11.5149,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1120,3.7192,3.9551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1121,1.4840,3.6348,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1122,1.4615,5.8264,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1123,1.4377,5.9877,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1124,1.4343,8.5143,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1125,1.4369,9.7291,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1126,1.4422,14.8538,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1127,1.5085,14.8717,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1128,3.7192,4.0707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1129,1.4840,3.6267,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1130,1.4615,5.4303,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1131,1.4377,5.9926,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1132,1.4343,8.2620,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1133,1.4369,8.4781,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1134,1.4422,11.7234,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1135,1.5085,11.5118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1136,3.7192,4.7831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1137,1.4840,3.8298,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1138,1.4615,6.0029,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1139,1.4377,5.9396,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1140,1.4343,8.3903,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1141,1.4369,7.4839,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1142,1.4422,9.8855,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1143,1.5085,9.9085,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1144,3.7192,3.6898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1145,1.4840,3.5595,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1146,1.4615,6.1256,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1147,1.4377,6.1092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1148,1.4343,8.6673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1149,1.4369,8.7596,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1150,1.4422,11.4712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1151,1.5085,11.4945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1152,3.7192,3.6874,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1153,1.4840,3.5255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1154,1.4615,6.0463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1155,1.4377,6.1410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1156,1.4343,8.6405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1157,1.4369,9.0083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1158,1.4422,11.4484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1159,1.5085,11.7615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1160,3.7192,3.8945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1161,1.4840,3.6688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1162,1.4615,6.2076,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1163,1.4377,6.3448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1164,1.4343,8.8037,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1165,1.4369,8.9880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1166,1.4422,11.5654,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1167,1.5085,11.6547,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1168,3.7192,3.6982,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1169,1.4840,3.5550,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1170,1.4615,6.0206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1171,1.4377,6.1536,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1172,1.4343,8.6452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1173,1.4369,8.8198,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1174,1.4422,11.4062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1175,1.5085,11.5825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1176,3.7192,3.6291,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1177,1.4840,3.5895,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1178,1.4615,6.0145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1179,1.4377,6.1495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1180,1.4343,8.6900,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1181,1.4369,8.8144,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1182,1.4422,11.3840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1183,1.5085,11.5279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1184,3.7192,3.6416,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1185,1.4840,3.5337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1186,1.4615,6.1160,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1187,1.4377,6.1494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1188,1.4343,8.7305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1189,1.4369,8.8175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1190,1.4422,11.4907,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1191,1.5085,11.5737,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1192,3.7192,3.6475,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1193,1.4840,3.5902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1194,1.4615,5.9908,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1195,1.4377,6.1433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1196,1.4343,8.5965,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1197,1.4369,8.7762,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1198,1.4422,11.3410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1199,1.5085,11.4831,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1200,3.7192,3.6337,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1201,1.4840,3.5744,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1202,1.4615,6.1043,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1203,1.4377,6.1724,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1204,1.4343,8.7327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1205,1.4369,8.7868,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1206,1.4422,11.3673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1207,1.5085,11.4248,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1208,3.7192,3.6623,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1209,1.4840,3.6444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1210,1.4615,6.6042,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1211,1.4377,6.7011,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1212,1.4343,8.8381,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1213,1.4369,9.0085,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1214,1.4422,12.8255,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1215,1.5085,12.8336,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1216,3.7192,4.6224,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1217,1.4840,3.7987,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1218,1.4615,5.9669,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1219,1.4377,5.8480,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1220,1.4343,13.3013,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1221,1.4369,13.1279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1222,1.4422,12.9027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1223,1.5085,12.7175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1224,3.7192,4.0771,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1225,1.4840,3.7098,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1226,1.4615,5.8921,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1227,1.4377,5.9708,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1228,1.4343,9.6041,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1229,1.4369,9.5364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1230,1.4422,10.5770,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1231,1.5085,11.0546,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1232,3.7192,4.4046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1233,1.4840,3.7750,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1234,1.4615,4.9400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1235,1.4377,7.0497,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1236,1.4343,7.3499,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1237,1.4369,8.2866,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1238,1.4422,9.7582,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1239,1.5085,10.6769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1240,3.7192,3.8210,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1241,1.4840,3.5911,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1242,1.4615,6.3796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1243,1.4377,6.2373,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1244,1.4343,8.8945,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1245,1.4369,8.8519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1246,1.4422,11.6450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1247,1.5085,11.5680,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1248,3.7192,3.7417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1249,1.4840,3.5008,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1250,1.4615,6.0862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1251,1.4377,6.1250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1252,1.4343,8.8424,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1253,1.4369,8.8485,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1254,1.4422,11.6250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1255,1.5085,11.6094,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1256,3.7192,3.6519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1257,1.4840,3.5565,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1258,1.4615,6.0790,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1259,1.4377,6.2453,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1260,1.4343,8.7705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1261,1.4369,9.0519,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1262,1.4422,11.5953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1263,1.5085,11.8506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1264,3.7192,3.7385,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1265,1.4840,3.5458,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1266,1.4615,6.0968,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1267,1.4377,6.1681,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1268,1.4343,8.7438,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1269,1.4369,8.8708,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1270,1.4422,11.5156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1271,1.5085,11.6239,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1272,3.7192,3.5599,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1273,1.4840,3.4951,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1274,1.4615,6.0571,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1275,1.4377,6.1788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1276,1.4343,8.7393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1277,1.4369,8.9272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1278,1.4422,11.6162,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1279,1.5085,11.7643,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1280,3.7192,3.5255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1281,1.4840,3.5627,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1282,1.4615,6.0317,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1283,1.4377,6.2275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1284,1.4343,8.7866,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1285,1.4369,8.9868,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1286,1.4422,11.5870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1287,1.5085,11.7990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1288,3.7192,3.5044,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1289,1.4840,3.5108,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1290,1.4615,6.0558,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1291,1.4377,6.1936,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1292,1.4343,8.7507,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1293,1.4369,8.9476,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1294,1.4422,11.5489,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1295,1.5085,11.7882,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1296,3.7192,3.6335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1297,1.4840,3.5827,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1298,1.4615,6.0340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1299,1.4377,6.1842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1300,1.4343,8.7233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1301,1.4369,8.8790,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1302,1.4422,11.4699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1303,1.5085,11.6748,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1304,3.7192,3.4839,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1305,1.4840,3.5128,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1306,1.4615,5.8889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1307,1.4377,6.0510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1308,1.4343,8.4810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1309,1.4369,8.6752,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1310,1.4422,11.1459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1311,1.5085,11.3645,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1312,3.7192,3.6556,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1313,1.4840,3.5714,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1314,1.4615,6.0263,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1315,1.4377,6.1783,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1316,1.4343,8.7152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1317,1.4369,8.9198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1318,1.4422,11.4755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1319,1.5085,11.7067,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1320,3.7192,3.5389,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1321,1.4840,3.5676,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1322,1.4615,6.0494,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1323,1.4377,6.2108,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1324,1.4343,8.7492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1325,1.4369,8.9482,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1326,1.4422,11.5530,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1327,1.5085,11.7655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1328,3.7192,3.5189,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1329,1.4840,3.5994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1330,1.4615,5.8953,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1331,1.4377,6.1473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1332,1.4343,8.5650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1333,1.4369,8.8565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1334,1.4422,11.3109,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1335,1.5085,11.6260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1336,3.7192,3.5131,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1337,1.4840,3.5680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1338,1.4615,5.9735,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1339,1.4377,6.1627,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1340,1.4343,8.6004,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1341,1.4369,8.8430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1342,1.4422,11.3641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1343,1.5085,11.5982,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1344,3.7192,3.6816,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1345,1.4840,3.5574,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1346,1.4615,6.1695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1347,1.4377,6.1416,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1348,1.4343,8.7485,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1349,1.4369,8.7349,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1350,1.4422,11.5584,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1351,1.5085,11.3996,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1352,3.7192,3.8576,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1353,1.4840,3.6104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1354,1.4615,6.0305,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1355,1.4377,6.0772,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1356,1.4343,8.5015,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1357,1.4369,8.6818,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1358,1.4422,11.2242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1359,1.5085,11.3860,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1360,3.7192,3.9932,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1361,1.4840,3.5988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1362,1.4615,6.2011,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1363,1.4377,6.1804,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1364,1.4343,9.0890,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1365,1.4369,8.9710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1366,1.4422,11.9540,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1367,1.5085,11.9415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1368,3.7192,4.5110,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1369,1.4840,3.7378,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1370,1.4615,6.0116,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1371,1.4377,6.1243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1372,1.4343,8.5641,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1373,1.4369,8.7320,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1374,1.4422,11.3855,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1375,1.5085,11.3941,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1376,3.7192,3.7720,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1377,1.4840,3.6010,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1378,1.4615,6.2751,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1379,1.4377,6.3392,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1380,1.4343,9.1360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1381,1.4369,9.1733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1382,1.4422,12.0001,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1383,1.5085,12.0507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1384,3.7192,3.7225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1385,1.4840,3.6568,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1386,1.4615,5.9613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1387,1.4377,6.1667,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1388,1.4343,8.5165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1389,1.4369,8.7334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1390,1.4422,11.1402,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1391,1.5085,11.4421,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1392,3.7192,3.6877,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1393,1.4840,3.6085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1394,1.4615,6.1745,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1395,1.4377,6.3648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1396,1.4343,8.9239,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1397,1.4369,9.1696,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1398,1.4422,11.9829,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1399,1.5085,12.1300,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1400,3.7192,4.0978,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1401,1.4840,3.6572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1402,1.4615,5.6675,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1403,1.4377,5.8979,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1404,1.4343,8.0068,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1405,1.4369,8.4055,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1406,1.4422,10.6227,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1407,1.5085,10.8821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1408,3.7192,4.0025,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1409,1.4840,3.7443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1410,1.4615,5.0803,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1411,1.4377,5.0722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1412,1.4343,7.1583,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1413,1.4369,7.3260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1414,1.4422,9.6081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1415,1.5085,9.8854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1416,3.7192,3.7343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1417,1.4840,3.5903,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1418,1.4615,5.9412,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1419,1.4377,6.0985,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1420,1.4343,8.5530,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1421,1.4369,8.7524,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1422,1.4422,11.2539,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1423,1.5085,11.4675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1424,3.7192,3.5869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1425,1.4840,3.5495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1426,1.4615,5.9351,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1427,1.4377,6.0915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1428,1.4343,8.5518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1429,1.4369,8.7741,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1430,1.4422,11.2412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1431,1.5085,11.4569,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1432,3.7192,3.5953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1433,1.4840,3.5942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1434,1.4615,5.8947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1435,1.4377,6.0511,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1436,1.4343,8.4007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1437,1.4369,8.5786,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1438,1.4422,10.9792,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1439,1.5085,11.1501,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1440,3.7192,3.6051,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1441,1.4840,3.5745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1442,1.4615,5.9387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1443,1.4377,6.1098,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1444,1.4343,8.5161,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1445,1.4369,8.7223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1446,1.4422,11.2200,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1447,1.5085,11.3950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1448,3.7192,3.6311,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1449,1.4840,3.5587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1450,1.4615,6.7285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1451,1.4377,6.8849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1452,1.4343,11.5664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1453,1.4369,11.9537,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1454,1.4422,19.4178,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1455,1.5085,19.9270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1456,3.7192,12.3102,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1457,1.4840,12.7452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1458,1.4615,20.4434,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1459,1.4377,20.7243,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1460,1.4343,28.6618,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1461,1.4369,28.7650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1462,1.4422,36.4706,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1463,1.5085,36.3384,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1464,3.7192,26.6987,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1465,1.4840,26.4940,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1466,1.4615,34.8767,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1467,1.4377,34.7905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1468,1.4343,37.3483,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1469,1.4369,37.3594,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1470,1.4422,39.9639,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1471,1.5085,39.9783,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1472,3.7192,28.1058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1473,1.4840,27.8076,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1474,1.4615,31.7552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1475,1.4377,31.7290,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1476,1.4343,33.7618,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1477,1.4369,33.4789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1478,1.4422,35.8180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1479,1.5085,35.7550,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1480,3.7192,25.9264,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1481,1.4840,25.9664,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1482,1.4615,30.5719,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1483,1.4377,31.0304,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1484,1.4343,36.1570,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1485,1.4369,36.2445,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1486,1.4422,38.7436,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1487,1.5085,38.9113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1488,3.7192,29.3990,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1489,1.4840,29.6523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1490,1.4615,35.2950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1491,1.4377,35.2701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1492,1.4343,37.8800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1493,1.4369,37.8955,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1494,1.4422,40.6108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1495,1.5085,40.6109,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1496,3.7192,24.9467,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1497,1.4840,25.0725,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1498,1.4615,29.8695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1499,1.4377,31.7253,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1500,1.4343,33.1285,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1501,1.4369,34.2834,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1502,1.4422,35.6782,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1503,1.5085,36.8928,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1504,3.7192,26.9052,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1505,1.4840,28.3290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1506,1.4615,30.8729,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1507,1.4377,33.4576,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1508,1.4343,38.4490,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1509,1.4369,40.2689,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1510,1.4422,41.6926,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1511,1.5085,42.9313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1512,3.7192,29.5978,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1513,1.4840,31.2948,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1514,1.4615,33.6466,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1515,1.4377,37.2790,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1516,1.4343,38.1271,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1517,1.4369,40.2664,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1518,1.4422,40.8885,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1519,1.5085,42.9717,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1520,3.7192,24.8886,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1521,1.4840,27.6589,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1522,1.4615,30.0882,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1523,1.4377,32.6396,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1524,1.4343,32.1109,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1525,1.4369,34.2707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1526,1.4422,33.7746,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1527,1.5085,36.6480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1528,3.7192,24.5942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1529,1.4840,27.9325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1530,1.4615,27.2282,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1531,1.4377,32.5510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1532,1.4343,31.6131,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1533,1.4369,36.0225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1534,1.4422,35.5150,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1535,1.5085,38.3615,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1536,3.7192,24.4997,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1537,1.4840,28.3244,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1538,1.4615,27.5481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1539,1.4377,33.7919,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1540,1.4343,33.5432,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1541,1.4369,36.4032,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1542,1.4422,36.1120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1543,1.5085,38.9484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1544,3.7192,22.4934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1545,1.4840,25.9899,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1546,1.4615,25.6665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1547,1.4377,31.1155,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1548,1.4343,30.6252,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1549,1.4369,35.0545,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1550,1.4422,34.7098,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1551,1.5085,37.6932,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1552,3.7192,24.4358,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1553,1.4840,28.2634,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1554,1.4615,27.7365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1555,1.4377,33.3496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1556,1.4343,32.6806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1557,1.4369,38.1181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1558,1.4422,37.8227,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1559,1.5085,40.7827,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1560,3.7192,23.4762,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1561,1.4840,27.2865,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1562,1.4615,26.6703,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1563,1.4377,33.6397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1564,1.4343,33.5587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1565,1.4369,36.4241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1566,1.4422,36.3888,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1567,1.5085,39.0470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1568,3.7192,22.7540,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1569,1.4840,26.2892,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1570,1.4615,26.1818,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1571,1.4377,31.4416,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1572,1.4343,31.3160,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1573,1.4369,36.1547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1574,1.4422,36.0690,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1575,1.5085,38.7309,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1576,3.7192,25.9395,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1577,1.4840,29.3826,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1578,1.4615,29.2708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1579,1.4377,34.5535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1580,1.4343,34.4562,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1581,1.4369,38.3743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1582,1.4422,38.3053,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1583,1.5085,41.1132,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1584,3.7192,22.7037,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1585,1.4840,26.2204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1586,1.4615,26.0918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1587,1.4377,31.4417,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1588,1.4343,31.3098,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1589,1.4369,35.7470,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1590,1.4422,35.6567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1591,1.5085,38.3767,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1592,3.7192,23.5825,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1593,1.4840,27.1958,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1594,1.4615,27.0776,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1595,1.4377,32.4164,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1596,1.4343,32.2858,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1597,1.4369,36.4709,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1598,1.4422,36.3666,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1599,1.5085,39.1850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1600,3.7192,23.3731,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1601,1.4840,26.8088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1602,1.4615,26.6929,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1603,1.4377,31.9056,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1604,1.4343,31.7447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1605,1.4369,35.9858,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1606,1.4422,35.9182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1607,1.5085,38.6793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1608,3.7192,23.5951,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1609,1.4840,26.9638,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1610,1.4615,26.8212,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1611,1.4377,32.0703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1612,1.4343,31.9690,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1613,1.4369,36.0525,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1614,1.4422,35.9854,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1615,1.5085,38.8451,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1616,3.7192,23.3547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1617,1.4840,26.7568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1618,1.4615,26.6504,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1619,1.4377,31.8899,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1620,1.4343,31.8204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1621,1.4369,36.0547,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1622,1.4422,35.8708,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1623,1.5085,38.6465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1624,3.7192,23.3114,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1625,1.4840,26.8220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1626,1.4615,26.7381,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1627,1.4377,31.9840,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1628,1.4343,31.9061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1629,1.4369,36.1746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1630,1.4422,36.0823,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1631,1.5085,39.1250,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1632,3.7192,23.5232,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1633,1.4840,27.0215,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1634,1.4615,26.9913,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1635,1.4377,33.1468,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1636,1.4343,33.1493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1637,1.4369,36.0830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1638,1.4422,35.8917,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1639,1.5085,38.9936,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1640,3.7192,23.1863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1641,1.4840,27.3081,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1642,1.4615,26.8994,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1643,1.4377,31.9639,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1644,1.4343,31.6580,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1645,1.4369,37.3698,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1646,1.4422,37.1142,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1647,1.5085,40.1035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1648,3.7192,26.7880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1649,1.4840,30.9860,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1650,1.4615,30.5510,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1651,1.4377,35.0265,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1652,1.4343,34.5332,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1653,1.4369,37.5565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1654,1.4422,37.1220,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1655,1.5085,40.1334,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1656,3.7192,22.8687,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1657,1.4840,27.0647,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1658,1.4615,26.4802,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1659,1.4377,31.0964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1660,1.4343,29.7351,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1661,1.4369,35.4585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1662,1.4422,34.8781,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1663,1.5085,37.9504,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1664,3.7192,26.8277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1665,1.4840,30.4352,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1666,1.4615,29.6269,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1667,1.4377,40.4993,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1668,1.4343,33.8938,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1669,1.4369,42.0808,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1670,1.4422,41.5221,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1671,1.5085,44.4450,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1672,3.7192,27.3855,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1673,1.4840,30.7482,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1674,1.4615,29.8617,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1675,1.4377,33.9975,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1676,1.4343,33.4207,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1677,1.4369,36.3013,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1678,1.4422,35.7845,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1679,1.5085,38.8035,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1680,3.7192,25.7044,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1681,1.4840,28.9114,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1682,1.4615,23.1704,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1683,1.4377,28.0557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1684,1.4343,27.6145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1685,1.4369,30.4812,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1686,1.4422,30.0048,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1687,1.5085,32.9733,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1688,3.7192,24.7894,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1689,1.4840,28.1804,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1690,1.4615,27.5068,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1691,1.4377,33.0292,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1692,1.4343,32.1335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1693,1.4369,37.0769,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1694,1.4422,36.5157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1695,1.5085,39.4324,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1696,3.7192,24.8929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1697,1.4840,28.7265,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1698,1.4615,28.0334,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1699,1.4377,33.6965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1700,1.4343,32.7383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1701,1.4369,37.2798,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1702,1.4422,36.7015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1703,1.5085,39.8788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1704,3.7192,22.2018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1705,1.4840,26.1462,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1706,1.4615,25.3818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1707,1.4377,32.1920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1708,1.4343,30.3297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1709,1.4369,34.8454,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1710,1.4422,33.5622,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1711,1.5085,37.5210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1712,3.7192,21.2289,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1713,1.4840,26.0312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1714,1.4615,24.2735,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1715,1.4377,31.3016,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1716,1.4343,28.6828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1717,1.4369,36.4574,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1718,1.4422,35.5953,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1719,1.5085,39.2319,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1720,3.7192,24.8735,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1721,1.4840,29.2792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1722,1.4615,28.0654,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1723,1.4377,34.3488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1724,1.4343,32.5955,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1725,1.4369,37.6533,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1726,1.4422,36.6415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1727,1.5085,40.4062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1728,3.7192,20.7480,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1729,1.4840,25.1771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1730,1.4615,23.7642,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1731,1.4377,30.3626,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1732,1.4343,28.3185,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1733,1.4369,35.3055,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1734,1.4422,34.3677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1735,1.5085,38.0162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1736,3.7192,23.3730,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1737,1.4840,27.8637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1738,1.4615,26.4546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1739,1.4377,32.9948,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1740,1.4343,31.0914,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1741,1.4369,37.1484,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1742,1.4422,36.1695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1743,1.5085,39.9070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1744,3.7192,21.5371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1745,1.4840,26.1271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1746,1.4615,24.6817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1747,1.4377,31.3167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1748,1.4343,29.1586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1749,1.4369,34.7543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1750,1.4422,33.4102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1751,1.5085,37.5858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1752,3.7192,20.8869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1753,1.4840,25.8087,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1754,1.4615,23.9494,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1755,1.4377,30.9488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1756,1.4343,28.2240,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1757,1.4369,34.9889,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1758,1.4422,33.6163,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1759,1.5085,37.7433,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1760,3.7192,22.2203,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1761,1.4840,27.1812,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1762,1.4615,25.2250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1763,1.4377,32.2510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1764,1.4343,29.3281,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1765,1.4369,37.3513,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1766,1.4422,36.5534,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1767,1.5085,40.0299,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1768,3.7192,23.3433,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1769,1.4840,27.6268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1770,1.4615,26.5080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1771,1.4377,32.8331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1772,1.4343,31.2645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1773,1.4369,37.1849,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1774,1.4422,36.3590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1775,1.5085,39.9359,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1776,3.7192,21.8206,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1777,1.4840,26.1825,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1778,1.4615,25.0023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1779,1.4377,31.4171,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1780,1.4343,29.6659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1781,1.4369,35.9075,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1782,1.4422,35.0139,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1783,1.5085,38.6318,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1784,3.7192,22.3583,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1785,1.4840,26.7888,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1786,1.4615,25.4862,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1787,1.4377,31.9500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1788,1.4343,30.0790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1789,1.4369,36.2020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1790,1.4422,35.2055,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1791,1.5085,38.9067,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1792,3.7192,22.2817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1793,1.4840,26.7680,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1794,1.4615,25.3650,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1795,1.4377,33.3145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1796,1.4343,29.8394,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1797,1.4369,35.9542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1798,1.4422,33.7733,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1799,1.5085,38.6098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1800,3.7192,21.1723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1801,1.4840,26.8368,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1802,1.4615,23.8625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1803,1.4377,31.9841,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1804,1.4343,27.5536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1805,1.4369,36.5172,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1806,1.4422,33.1762,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1807,1.5085,39.4236,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1808,3.7192,23.2237,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1809,1.4840,30.3520,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1810,1.4615,25.8668,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1811,1.4377,34.5063,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1812,1.4343,29.7813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1813,1.4369,38.8167,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1814,1.4422,35.1021,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1815,1.5085,41.4417,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1816,3.7192,21.5737,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1817,1.4840,27.7888,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1818,1.4615,24.0487,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1819,1.4377,32.6189,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1820,1.4343,27.3798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1821,1.4369,35.9543,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1822,1.4422,33.8851,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1823,1.5085,38.5792,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1824,3.7192,21.6462,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1825,1.4840,26.9354,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1826,1.4615,23.8835,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1827,1.4377,31.7209,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1828,1.4343,27.1245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1829,1.4369,35.0279,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1830,1.4422,33.4022,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1831,1.5085,37.5366,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1832,3.7192,22.4159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1833,1.4840,27.2557,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1834,1.4615,25.0722,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1835,1.4377,32.9665,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1836,1.4343,29.2721,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1837,1.4369,35.7193,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1838,1.4422,33.0168,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1839,1.5085,38.2297,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1840,3.7192,20.3725,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1841,1.4840,26.2969,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1842,1.4615,22.7355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1843,1.4377,31.4690,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1844,1.4343,26.3305,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1845,1.4369,35.4978,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1846,1.4422,31.6103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1847,1.5085,38.2451,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1848,3.7192,22.3622,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1849,1.4840,28.6088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1850,1.4615,24.7734,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1851,1.4377,33.9666,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1852,1.4343,28.3309,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1853,1.4369,38.5067,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1854,1.4422,33.6356,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1855,1.5085,41.2762,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1856,3.7192,20.9810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1857,1.4840,27.4951,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1858,1.4615,23.4240,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1859,1.4377,32.5545,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1860,1.4343,27.0138,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1861,1.4369,36.7458,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1862,1.4422,32.3404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1863,1.5085,39.6212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1864,3.7192,20.2336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1865,1.4840,26.6768,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1866,1.4615,22.7771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1867,1.4377,31.8637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1868,1.4343,26.1921,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1869,1.4369,36.0289,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1870,1.4422,31.4463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1871,1.5085,38.7332,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1872,3.7192,20.6455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1873,1.4840,27.1895,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1874,1.4615,23.2575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1875,1.4377,32.3956,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1876,1.4343,26.7343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1877,1.4369,35.9255,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1878,1.4422,33.6085,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1879,1.5085,38.6438,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1880,3.7192,20.8593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1881,1.4840,27.1328,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1882,1.4615,23.4748,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1883,1.4377,32.4776,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1884,1.4343,27.2089,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1885,1.4369,35.7265,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1886,1.4422,33.2990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1887,1.5085,38.3177,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1888,3.7192,22.3693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1889,1.4840,27.9081,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1890,1.4615,24.5453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1891,1.4377,33.3503,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1892,1.4343,28.0553,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1893,1.4369,37.3980,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1894,1.4422,34.4447,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1895,1.5085,40.0230,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1896,3.7192,23.7143,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1897,1.4840,29.1190,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1898,1.4615,25.6211,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1899,1.4377,34.2920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1900,1.4343,28.7302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1901,1.4369,36.4499,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1902,1.4422,33.2324,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1903,1.5085,39.0462,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1904,3.7192,22.0225,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1905,1.4840,27.2192,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1906,1.4615,22.6076,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1907,1.4377,31.7065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1908,1.4343,25.4743,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1909,1.4369,35.7060,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1910,1.4422,29.7791,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1911,1.5085,38.1073,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1912,3.7192,21.9247,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1913,1.4840,28.7960,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1914,1.4615,24.4155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1915,1.4377,33.9804,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1916,1.4343,27.8143,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1917,1.4369,38.5829,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1918,1.4422,32.8056,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1919,1.5085,41.3526,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1920,3.7192,19.6754,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1921,1.4840,26.6430,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1922,1.4615,22.2785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1923,1.4377,31.9277,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1924,1.4343,25.8468,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1925,1.4369,36.4930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1926,1.4422,30.9184,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1927,1.5085,39.4806,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1928,3.7192,20.9207,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1929,1.4840,28.2205,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1930,1.4615,23.4323,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1931,1.4377,33.4878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1932,1.4343,27.5833,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1933,1.4369,36.3334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1934,1.4422,32.6322,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1935,1.5085,38.7591,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1936,3.7192,20.8635,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1937,1.4840,27.4305,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1938,1.4615,22.9079,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1939,1.4377,32.1881,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1940,1.4343,26.0130,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1941,1.4369,37.1993,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1942,1.4422,30.7878,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1943,1.5085,39.1763,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1944,3.7192,23.2143,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1945,1.4840,29.7678,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1946,1.4615,25.3878,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1947,1.4377,35.0972,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1948,1.4343,28.5490,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1949,1.4369,37.3262,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1950,1.4422,33.8677,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1951,1.5085,40.0194,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1952,3.7192,19.8092,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1953,1.4840,26.3072,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1954,1.4615,21.8147,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1955,1.4377,30.9068,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1956,1.4343,24.4854,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1957,1.4369,34.8287,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1958,1.4422,28.7186,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1959,1.5085,37.0221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1960,3.7192,22.5030,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1961,1.4840,29.0847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1962,1.4615,24.3276,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1963,1.4377,33.7948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1964,1.4343,27.1075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1965,1.4369,37.3989,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1966,1.4422,31.3032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1967,1.5085,39.2749,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1968,3.7192,19.7100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1969,1.4840,26.7481,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1970,1.4615,22.0428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1971,1.4377,32.9488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1972,1.4343,25.1619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1973,1.4369,35.5135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1974,1.4422,29.9074,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1975,1.5085,38.1820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1976,3.7192,18.2929,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1977,1.4840,26.6645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1978,1.4615,20.7500,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1979,1.4377,31.5665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1980,1.4343,23.5320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1981,1.4369,36.3293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1982,1.4422,27.4344,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1983,1.5085,39.0244,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1984,3.7192,21.3248,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1985,1.4840,29.2091,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1986,1.4615,23.8675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1987,1.4377,34.2220,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1988,1.4343,26.9771,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1989,1.4369,38.0003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1990,1.4422,31.2796,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1991,1.5085,40.6040,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1992,3.7192,18.6136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1993,1.4840,26.2537,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +1994,1.4615,20.9718,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1995,1.4377,31.3735,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1996,1.4343,24.0354,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1997,1.4369,35.4475,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1998,1.4422,28.3305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +1999,1.5085,38.0829,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2000,3.7192,19.0972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2001,1.4840,26.8106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2002,1.4615,21.5217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2003,1.4377,31.8815,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2004,1.4343,24.5175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2005,1.4369,35.4831,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2006,1.4422,28.6875,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2007,1.5085,38.1743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2008,3.7192,18.1098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2009,1.4840,26.0317,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2010,1.4615,20.6613,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2011,1.4377,31.2127,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2012,1.4343,23.5994,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2013,1.4369,35.9242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2014,1.4422,27.8055,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2015,1.5085,38.6061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2016,3.7192,20.2011,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2017,1.4840,27.6114,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2018,1.4615,22.5400,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2019,1.4377,32.6351,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2020,1.4343,25.5884,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2021,1.4369,36.8618,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2022,1.4422,29.9133,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2023,1.5085,39.5144,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2024,3.7192,18.7132,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2025,1.4840,26.3171,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2026,1.4615,21.2398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2027,1.4377,32.9581,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2028,1.4343,24.3488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2029,1.4369,35.6145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2030,1.4422,28.7688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2031,1.5085,38.3488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2032,3.7192,17.6452,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2033,1.4840,26.4767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2034,1.4615,20.0765,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2035,1.4377,31.6189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2036,1.4343,22.7795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2037,1.4369,36.3110,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2038,1.4422,26.3531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2039,1.5085,39.0777,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2040,3.7192,17.9296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2041,1.4840,28.8156,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2042,1.4615,22.0321,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2043,1.4377,34.3490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2044,1.4343,24.6620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2045,1.4369,36.9954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2046,1.4422,28.1173,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2047,1.5085,39.7189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2048,3.7192,15.8805,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2049,1.4840,25.4438,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2050,1.4615,18.4007,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2051,1.4377,30.5319,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2052,1.4343,21.0406,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2053,1.4369,35.7280,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2054,1.4422,24.4818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2055,1.5085,38.4060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2056,3.7192,16.9381,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2057,1.4840,29.3832,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2058,1.4615,22.3627,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2059,1.4377,34.5483,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2060,1.4343,24.9487,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2061,1.4369,38.4915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2062,1.4422,28.3264,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2063,1.5085,41.1439,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2064,3.7192,14.8082,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2065,1.4840,26.0827,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2066,1.4615,18.9473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2067,1.4377,31.5933,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2068,1.4343,21.8687,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2069,1.4369,35.1997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2070,1.4422,24.9101,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2071,1.5085,37.8823,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2072,3.7192,15.4307,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2073,1.4840,26.7181,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2074,1.4615,19.4464,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2075,1.4377,31.7934,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2076,1.4343,22.0938,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2077,1.4369,37.1874,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2078,1.4422,25.5832,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2079,1.5085,39.7765,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2080,3.7192,17.7336,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2081,1.4840,29.4230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2082,1.4615,22.2990,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2083,1.4377,33.8671,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2084,1.4343,23.9999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2085,1.4369,37.1049,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2086,1.4422,27.2252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2087,1.5085,39.5512,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2088,3.7192,16.0570,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2089,1.4840,26.6857,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2090,1.4615,19.1930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2091,1.4377,31.4080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2092,1.4343,21.3678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2093,1.4369,34.2310,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2094,1.4422,24.1001,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2095,1.5085,36.5135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2096,3.7192,15.5358,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2097,1.4840,26.3029,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2098,1.4615,18.7880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2099,1.4377,31.3797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2100,1.4343,21.4280,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2101,1.4369,36.3020,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2102,1.4422,24.6462,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2103,1.5085,38.9543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2104,3.7192,15.0502,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2105,1.4840,28.1466,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2106,1.4615,20.5437,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2107,1.4377,33.3571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2108,1.4343,23.1573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2109,1.4369,37.4965,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2110,1.4422,26.4447,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2111,1.5085,40.2119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2112,3.7192,14.0726,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2113,1.4840,26.3847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2114,1.4615,18.7975,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2115,1.4377,31.5096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2116,1.4343,21.3586,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2117,1.4369,35.6563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2118,1.4422,24.5201,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2119,1.5085,38.3550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2120,3.7192,14.3481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2121,1.4840,26.8332,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2122,1.4615,19.1273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2123,1.4377,31.9273,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2124,1.4343,21.6820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2125,1.4369,36.1680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2126,1.4422,24.8426,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2127,1.5085,38.8434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2128,3.7192,14.1716,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2129,1.4840,26.9277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2130,1.4615,19.1708,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2131,1.4377,32.0422,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2132,1.4343,21.7389,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2133,1.4369,37.1140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2134,1.4422,25.1480,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2135,1.5085,39.7222,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2136,3.7192,14.3905,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2137,1.4840,28.0407,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2138,1.4615,20.1058,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2139,1.4377,33.1008,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2140,1.4343,22.7673,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2141,1.4369,35.6342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2142,1.4422,25.6781,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2143,1.5085,38.1630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2144,3.7192,16.4739,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2145,1.4840,25.6174,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2146,1.4615,17.7317,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2147,1.4377,30.3881,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2148,1.4343,19.9532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2149,1.4369,34.6351,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2150,1.4422,22.9191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2151,1.5085,37.1722,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2152,3.7192,16.2805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2153,1.4840,29.0808,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2154,1.4615,21.1010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2155,1.4377,33.9630,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2156,1.4343,23.5170,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2157,1.4369,37.8042,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2158,1.4422,26.4655,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2159,1.5085,40.2108,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2160,3.7192,13.7781,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2161,1.4840,26.4217,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2162,1.4615,18.5051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2163,1.4377,31.5076,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2164,1.4343,21.0958,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2165,1.4369,35.6022,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2166,1.4422,24.2567,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2167,1.5085,38.2710,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2168,3.7192,13.4506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2169,1.4840,26.5096,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2170,1.4615,18.5430,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2171,1.4377,31.6352,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2172,1.4343,21.2094,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2173,1.4369,35.9198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2174,1.4422,24.3692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2175,1.5085,38.6684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2176,3.7192,13.0095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2177,1.4840,26.4720,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2178,1.4615,18.4442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2179,1.4377,31.6145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2180,1.4343,21.1084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2181,1.4369,35.9213,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2182,1.4422,24.2998,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2183,1.5085,38.7017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2184,3.7192,12.9661,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2185,1.4840,26.4767,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2186,1.4615,18.4905,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2187,1.4377,31.7135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2188,1.4343,21.1363,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2189,1.4369,36.0322,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2190,1.4422,24.1972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2191,1.5085,38.8301,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2192,3.7192,12.9678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2193,1.4840,26.5293,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2194,1.4615,18.4445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2195,1.4377,31.7164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2196,1.4343,21.1720,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2197,1.4369,35.9534,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2198,1.4422,24.2996,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2199,1.5085,38.7333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2200,3.7192,13.0449,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2201,1.4840,26.4431,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2202,1.4615,18.3026,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2203,1.4377,31.6211,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2204,1.4343,20.9485,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2205,1.4369,35.2695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2206,1.4422,24.0287,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2207,1.5085,38.0820,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2208,3.7192,12.8176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2209,1.4840,26.1130,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2210,1.4615,17.7096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2211,1.4377,31.3109,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2212,1.4343,20.3727,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2213,1.4369,36.0106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2214,1.4422,23.4183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2215,1.5085,38.7567,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2216,3.7192,13.0256,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2217,1.4840,27.6806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2218,1.4615,19.7700,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2219,1.4377,33.4102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2220,1.4343,22.4311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2221,1.4369,36.2110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2222,1.4422,25.6235,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2223,1.5085,39.0671,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2224,3.7192,13.1898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2225,1.4840,25.5948,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2226,1.4615,16.5324,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2227,1.4377,30.7896,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2228,1.4343,19.2095,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2229,1.4369,35.9551,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2230,1.4422,22.1497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2231,1.5085,38.7384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2232,3.7192,13.4992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2233,1.4840,29.6762,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2234,1.4615,19.1198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2235,1.4377,36.1605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2236,1.4343,23.0722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2237,1.4369,38.9328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2238,1.4422,25.8178,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2239,1.5085,41.7110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2240,3.7192,10.3627,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2241,1.4840,26.1105,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2242,1.4615,15.9068,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2243,1.4377,32.1114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2244,1.4343,18.5771,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2245,1.4369,34.8599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2246,1.4422,21.3789,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2247,1.5085,37.6272,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2248,3.7192,11.5482,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2249,1.4840,27.9785,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2250,1.4615,17.9250,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2251,1.4377,33.1334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2252,1.4343,20.5233,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2253,1.4369,38.0542,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2254,1.4422,23.2833,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2255,1.5085,40.8264,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2256,3.7192,11.5135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2257,1.4840,29.0293,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2258,1.4615,16.3624,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2259,1.4377,34.1945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2260,1.4343,21.5538,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2261,1.4369,38.2181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2262,1.4422,24.1804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2263,1.5085,40.9011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2264,3.7192,9.2157,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2265,1.4840,26.1170,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2266,1.4615,14.0355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2267,1.4377,31.2580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2268,1.4343,18.5142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2269,1.4369,35.4043,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2270,1.4422,21.1652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2271,1.5085,38.1008,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2272,3.7192,9.5690,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2273,1.4840,26.6985,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2274,1.4615,14.2876,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2275,1.4377,31.8153,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2276,1.4343,18.9319,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2277,1.4369,36.0569,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2278,1.4422,21.5368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2279,1.5085,38.7478,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2280,3.7192,9.2795,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2281,1.4840,26.6761,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2282,1.4615,14.0055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2283,1.4377,31.9155,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2284,1.4343,18.9705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2285,1.4369,35.8068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2286,1.4422,21.6737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2287,1.5085,38.5693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2288,3.7192,9.3324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2289,1.4840,26.4230,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2290,1.4615,14.1170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2291,1.4377,31.5969,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2292,1.4343,18.5865,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2293,1.4369,36.3310,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2294,1.4422,21.3382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2295,1.5085,39.0224,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2296,3.7192,8.9930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2297,1.4840,27.1536,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2298,1.4615,13.8718,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2299,1.4377,32.3486,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2300,1.4343,19.2836,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2301,1.4369,36.5487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2302,1.4422,22.1388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2303,1.5085,39.4235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2304,3.7192,9.5098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2305,1.4840,26.7683,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2306,1.4615,13.9198,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2307,1.4377,31.9209,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2308,1.4343,18.6094,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2309,1.4369,35.5457,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2310,1.4422,21.1841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2311,1.5085,38.1410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2312,3.7192,9.5952,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2313,1.4840,26.7219,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2314,1.4615,13.9172,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2315,1.4377,31.8050,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2316,1.4343,18.5626,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2317,1.4369,35.7803,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2318,1.4422,21.1480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2319,1.5085,38.4224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2320,3.7192,9.4680,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2321,1.4840,26.8456,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2322,1.4615,13.9103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2323,1.4377,31.8707,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2324,1.4343,18.7294,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2325,1.4369,36.2409,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2326,1.4422,21.3576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2327,1.5085,38.8912,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2328,3.7192,9.2887,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2329,1.4840,27.1041,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2330,1.4615,13.7181,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2331,1.4377,32.2174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2332,1.4343,19.0305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2333,1.4369,36.1286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2334,1.4422,21.6025,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2335,1.5085,38.7852,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2336,3.7192,9.1282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2337,1.4840,26.6170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2338,1.4615,13.5449,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2339,1.4377,31.6320,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2340,1.4343,18.4131,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2341,1.4369,36.0238,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2342,1.4422,20.9488,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2343,1.5085,38.6198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2344,3.7192,9.1142,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2345,1.4840,27.2120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2346,1.4615,13.5140,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2347,1.4377,32.2946,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2348,1.4343,18.9005,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2349,1.4369,36.1300,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2350,1.4422,21.4692,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2351,1.5085,38.7650,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2352,3.7192,9.0536,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2353,1.4840,26.4505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2354,1.4615,13.3874,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2355,1.4377,31.6292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2356,1.4343,18.1753,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2357,1.4369,35.5203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2358,1.4422,20.7985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2359,1.5085,38.1212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2360,3.7192,8.9348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2361,1.4840,26.6574,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2362,1.4615,13.2762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2363,1.4377,31.9433,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2364,1.4343,18.3815,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2365,1.4369,36.1709,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2366,1.4422,20.9392,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2367,1.5085,38.8248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2368,3.7192,8.5980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2369,1.4840,26.8893,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2370,1.4615,13.0035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2371,1.4377,32.1652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2372,1.4343,18.5519,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2373,1.4369,36.4274,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2374,1.4422,21.2293,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2375,1.5085,39.1259,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2376,3.7192,8.7950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2377,1.4840,27.0747,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2378,1.4615,13.1567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2379,1.4377,32.3350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2380,1.4343,18.6605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2381,1.4369,36.5070,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2382,1.4422,21.1675,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2383,1.5085,38.8621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2384,3.7192,8.6528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2385,1.4840,27.4791,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2386,1.4615,12.8515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2387,1.4377,35.3836,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2388,1.4343,18.3764,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2389,1.4369,43.3488,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2390,1.4422,20.9381,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2391,1.5085,51.4472,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2392,3.7192,8.9764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2393,1.4840,44.4220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,326,0 +2394,1.4615,15.2065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2395,1.4377,52.5919,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2396,1.4343,23.1487,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2397,1.4369,61.0400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2398,1.4422,31.1566,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 +2399,1.5085,69.1975,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,366,0 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.txt b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.txt new file mode 100644 index 0000000..7dd96be --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.txt @@ -0,0 +1,62 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=4 +tile_resolution=2560x720 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=15 +data_rate_limit_mbps=15 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.057 +effective_logical_fps=59.322 +tile_frames_requested=2400 +tile_frames_encoded=2400 +failed_tile_frames=0 +avg_encode_latency_ms=31.410 +p95_encode_latency_ms=84.981 +max_encode_latency_ms=181.235 +avg_steady_encode_latency_ms=28.143 +p95_steady_encode_latency_ms=51.302 +max_steady_encode_latency_ms=85.029 +avg_tile_encode_latency_ms=22.525 +p95_tile_encode_latency_ms=73.337 +avg_max_tile_encode_latency_ms=28.870 +p95_max_tile_encode_latency_ms=74.647 +avg_steady_max_tile_encode_latency_ms=26.473 +p95_steady_max_tile_encode_latency_ms=50.120 +payload_bytes=1558336 +send_target=none +csv=benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile_logical.csv diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile_logical.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile_logical.csv new file mode 100644 index 0000000..5fd901d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/2x4_15mbps_per_tile_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,8,0,181.2348,25.9833,260662 +1,8,0,13.8439,12.9810,70021 +2,8,0,25.2233,24.5348,45222 +3,8,0,36.7693,36.0384,75904 +4,8,0,48.1542,47.5475,91243 +5,8,0,59.7286,59.2263,79996 +6,8,0,71.2829,70.7345,27143 +7,8,0,82.7027,74.9582,18466 +8,8,0,85.5189,74.7873,14116 +9,8,0,85.4268,74.7544,12776 +10,8,0,85.3657,74.5784,9713 +11,8,0,85.3711,74.4752,7374 +12,8,0,85.3682,74.5228,6224 +13,8,0,85.4490,74.7499,3942 +14,8,0,85.6455,74.8771,3934 +15,8,0,85.5578,74.8930,3905 +16,8,0,85.3460,74.9105,4282 +17,8,0,85.1610,74.6726,4477 +18,8,0,85.1000,74.6456,4193 +19,8,0,84.8802,74.5845,4704 +20,8,0,85.0295,74.8023,3705 +21,8,0,85.0022,74.7934,2991 +22,8,0,84.8011,75.0148,2965 +23,8,0,84.8208,75.2365,3174 +24,8,0,84.9799,75.5280,3534 +25,8,0,84.9971,75.7829,3452 +26,8,0,80.3522,75.9573,3846 +27,8,0,73.6924,72.7235,3191 +28,8,0,68.9888,67.9841,3123 +29,8,0,63.9808,62.9790,3120 +30,8,0,59.7660,58.8454,3217 +31,8,0,55.8673,54.7596,3624 +32,8,0,51.2191,50.0507,3060 +33,8,0,46.9232,45.7949,3382 +34,8,0,42.1039,40.9080,2852 +35,8,0,37.2749,35.6590,2868 +36,8,0,34.3230,30.6643,2946 +37,8,0,29.8205,28.0023,2991 +38,8,0,23.9190,23.0785,3199 +39,8,0,20.2572,19.0906,3168 +40,8,0,16.1080,15.3012,3335 +41,8,0,13.8741,12.9234,2902 +42,8,0,12.9475,11.8130,3089 +43,8,0,12.7067,11.5744,2891 +44,8,0,12.7398,11.4232,2941 +45,8,0,12.6732,10.9708,3102 +46,8,0,12.9219,11.5099,3098 +47,8,0,12.7382,11.1958,3243 +48,8,0,12.9741,11.2698,2889 +49,8,0,12.9688,11.8810,3016 +50,8,0,13.1856,11.9169,2940 +51,8,0,13.2365,12.0397,3005 +52,8,0,12.9104,11.9892,3040 +53,8,0,12.9804,12.0069,3195 +54,8,0,13.3395,10.6852,3077 +55,8,0,13.5023,10.6330,2872 +56,8,0,13.2788,10.5702,2874 +57,8,0,12.8309,11.6387,2873 +58,8,0,12.8249,11.6830,2928 +59,8,0,12.7924,11.4667,2928 +60,8,0,12.8073,11.3472,2970 +61,8,0,12.9957,11.5437,3104 +62,8,0,12.7852,11.4695,2874 +63,8,0,12.6852,11.4179,2869 +64,8,0,12.7596,11.4967,2960 +65,8,0,13.2539,11.7580,2894 +66,8,0,13.0816,11.1320,2925 +67,8,0,12.9808,11.2716,2912 +68,8,0,12.7502,11.4399,3050 +69,8,0,12.7335,11.4507,2873 +70,8,0,12.7168,11.4386,2871 +71,8,0,12.6674,11.2094,2878 +72,8,0,12.9320,11.2615,2870 +73,8,0,12.9667,11.5503,2880 +74,8,0,12.7491,11.5404,2857 +75,8,0,12.6784,11.4854,2979 +76,8,0,12.7704,11.3960,2856 +77,8,0,12.7695,11.4200,2859 +78,8,0,13.7311,11.0457,2860 +79,8,0,13.2612,10.8891,2854 +80,8,0,12.9393,11.5715,2869 +81,8,0,12.7010,11.5735,2859 +82,8,0,12.7053,11.3571,2908 +83,8,0,12.7189,11.3559,2857 +84,8,0,12.9155,11.2730,2854 +85,8,0,12.7272,11.5565,2854 +86,8,0,12.7042,11.5621,2877 +87,8,0,12.7065,11.3457,2848 +88,8,0,12.7366,11.4367,2848 +89,8,0,12.8112,11.1938,2879 +90,8,0,12.8890,11.2769,2848 +91,8,0,12.7461,11.5056,2848 +92,8,0,12.6504,11.3172,2848 +93,8,0,12.7574,11.3434,2852 +94,8,0,12.6801,11.3503,2867 +95,8,0,12.7044,11.1204,2877 +96,8,0,12.7378,11.5218,2885 +97,8,0,12.7090,11.7062,2866 +98,8,0,12.6138,11.6313,2848 +99,8,0,12.5726,11.5297,2848 +100,8,0,12.7139,11.5554,2853 +101,8,0,12.6561,11.5219,2859 +102,8,0,12.8227,11.6042,2859 +103,8,0,12.7043,11.6036,2881 +104,8,0,12.7038,11.5524,2875 +105,8,0,12.6735,11.5465,2862 +106,8,0,12.6455,11.3122,2872 +107,8,0,12.7505,11.4140,2868 +108,8,0,15.9379,14.4934,2870 +109,8,0,14.3835,11.2130,2867 +110,8,0,14.0348,12.5300,2908 +111,8,0,12.8338,11.2077,2848 +112,8,0,12.8719,11.5188,2848 +113,8,0,12.7209,11.3968,2848 +114,8,0,12.8543,11.6030,2848 +115,8,0,12.6980,11.5596,2872 +116,8,0,12.7061,11.5547,2861 +117,8,0,12.7654,11.4221,2860 +118,8,0,12.7278,11.3475,2848 +119,8,0,12.7487,11.4395,2864 +120,8,0,12.7254,11.5683,2848 +121,8,0,12.7824,11.4400,2848 +122,8,0,12.7310,11.3708,2859 +123,8,0,12.8323,11.1656,2854 +124,8,0,12.8656,11.5246,2860 +125,8,0,12.7715,11.6028,2848 +126,8,0,12.7044,11.3205,2848 +127,8,0,12.7698,11.4730,2848 +128,8,0,13.2638,11.8833,2848 +129,8,0,13.5427,10.6649,2852 +130,8,0,12.8167,11.4853,2848 +131,8,0,12.8040,11.4563,2858 +132,8,0,12.9471,11.6458,2848 +133,8,0,12.7139,11.3519,2848 +134,8,0,12.8082,11.4661,2848 +135,8,0,13.3806,11.8778,2848 +136,8,0,12.8210,11.6047,2848 +137,8,0,12.9008,11.6255,2848 +138,8,0,12.9469,11.3902,2852 +139,8,0,12.8673,11.5277,2848 +140,8,0,16.7560,14.8717,2848 +141,8,0,14.3207,11.7234,2848 +142,8,0,13.6484,9.9085,2848 +143,8,0,12.8560,11.4945,2848 +144,8,0,12.9678,11.7615,2848 +145,8,0,12.9347,11.6547,2848 +146,8,0,12.7715,11.5825,2848 +147,8,0,12.7230,11.5279,2848 +148,8,0,12.6725,11.5737,2848 +149,8,0,12.7227,11.4831,2848 +150,8,0,12.7066,11.4248,2848 +151,8,0,13.8965,12.8336,2848 +152,8,0,16.0330,13.3013,2848 +153,8,0,13.5956,11.0546,2848 +154,8,0,14.4299,10.6769,2848 +155,8,0,13.0845,11.6450,2848 +156,8,0,12.7131,11.6250,2848 +157,8,0,12.7958,11.8506,2848 +158,8,0,12.8140,11.6239,2848 +159,8,0,12.6705,11.7643,2848 +160,8,0,12.6804,11.7990,2848 +161,8,0,12.7374,11.7882,2848 +162,8,0,12.7456,11.6748,2848 +163,8,0,12.6210,11.3645,2848 +164,8,0,12.8221,11.7067,2848 +165,8,0,12.7435,11.7655,2848 +166,8,0,12.7756,11.6260,2848 +167,8,0,12.7437,11.5982,2848 +168,8,0,12.6847,11.5584,2848 +169,8,0,13.0774,11.3860,2848 +170,8,0,13.3938,11.9540,2848 +171,8,0,13.9592,11.3941,2848 +172,8,0,13.0248,12.0507,2848 +173,8,0,13.1124,11.4421,2848 +174,8,0,13.0605,12.1300,2848 +175,8,0,13.4537,10.8821,2848 +176,8,0,13.1108,9.8854,2848 +177,8,0,12.9450,11.4675,2848 +178,8,0,12.8435,11.4569,2848 +179,8,0,12.7547,11.1501,2848 +180,8,0,12.6978,11.3950,2848 +181,8,0,21.2530,19.9270,2848 +182,8,0,37.5073,36.4706,2848 +183,8,0,41.3355,39.9783,2848 +184,8,0,38.8412,35.8180,2848 +185,8,0,40.4673,38.9113,2848 +186,8,0,41.7141,40.6109,2848 +187,8,0,38.1893,36.8928,2848 +188,8,0,44.2234,42.9313,2848 +189,8,0,44.4366,42.9717,2848 +190,8,0,40.2555,36.6480,2848 +191,8,0,41.1623,38.3615,2848 +192,8,0,40.5949,38.9484,2848 +193,8,0,39.1170,37.6932,2848 +194,8,0,41.9242,40.7827,2848 +195,8,0,40.1138,39.0470,2848 +196,8,0,39.9597,38.7309,2848 +197,8,0,42.3208,41.1132,2848 +198,8,0,39.4778,38.3767,2848 +199,8,0,40.2127,39.1850,2848 +200,8,0,40.0075,38.6793,2848 +201,8,0,40.0505,38.8451,2848 +202,8,0,39.9053,38.6465,2848 +203,8,0,40.3180,39.1250,2848 +204,8,0,40.1126,38.9936,2848 +205,8,0,41.2535,40.1035,2848 +206,8,0,42.6187,40.1334,2848 +207,8,0,40.9689,37.9504,2848 +208,8,0,47.2214,44.4450,2848 +209,8,0,41.5495,38.8035,2848 +210,8,0,40.9824,32.9733,2848 +211,8,0,41.7783,39.4324,2848 +212,8,0,41.4398,39.8788,2848 +213,8,0,38.7067,37.5210,2848 +214,8,0,40.0406,39.2319,2848 +215,8,0,41.4230,40.4062,2848 +216,8,0,39.0335,38.0162,2848 +217,8,0,40.8249,39.9070,2848 +218,8,0,38.5002,37.5858,2848 +219,8,0,38.5556,37.7433,2848 +220,8,0,41.1553,40.0299,2848 +221,8,0,40.8533,39.9359,2848 +222,8,0,39.4860,38.6318,2848 +223,8,0,39.9240,38.9067,2848 +224,8,0,39.8712,38.6098,2848 +225,8,0,40.7103,39.4236,2848 +226,8,0,42.9468,41.4417,2848 +227,8,0,40.1319,38.5792,2848 +228,8,0,40.0005,37.5366,2848 +229,8,0,39.8384,38.2297,2848 +230,8,0,39.5060,38.2451,2848 +231,8,0,42.4835,41.2762,2848 +232,8,0,40.6547,39.6212,2848 +233,8,0,40.0329,38.7332,2848 +234,8,0,39.9048,38.6438,2848 +235,8,0,39.8005,38.3177,2848 +236,8,0,42.0634,40.0230,2848 +237,8,0,41.7255,39.0462,2848 +238,8,0,42.3105,38.1073,2848 +239,8,0,42.3274,41.3526,2848 +240,8,0,40.4582,39.4806,2848 +241,8,0,40.6315,38.7591,2848 +242,8,0,41.4952,39.1763,2848 +243,8,0,42.1328,40.0194,2848 +244,8,0,39.8640,37.0221,2848 +245,8,0,42.6463,39.2749,2848 +246,8,0,39.6678,38.1820,2848 +247,8,0,40.3591,39.0244,2848 +248,8,0,41.8605,40.6040,2848 +249,8,0,39.4102,38.0829,2848 +250,8,0,39.4468,38.1743,2848 +251,8,0,39.7352,38.6061,2848 +252,8,0,40.8970,39.5144,2848 +253,8,0,39.4030,38.3488,2848 +254,8,0,40.2317,39.0777,2848 +255,8,0,40.7752,39.7189,2848 +256,8,0,39.5299,38.4060,2848 +257,8,0,42.3565,41.1439,2848 +258,8,0,39.0465,37.8823,2848 +259,8,0,40.9240,39.7765,2848 +260,8,0,42.5955,39.5512,2848 +261,8,0,39.4880,36.5135,2848 +262,8,0,40.3347,38.9543,2848 +263,8,0,41.3128,40.2119,2848 +264,8,0,39.6298,38.3550,2848 +265,8,0,40.2119,38.8434,2848 +266,8,0,41.0252,39.7222,2848 +267,8,0,39.6471,38.1630,2848 +268,8,0,39.9727,37.1722,2848 +269,8,0,42.3831,40.2108,2848 +270,8,0,39.5423,38.2710,2848 +271,8,0,39.5971,38.6684,2848 +272,8,0,39.5380,38.7017,2848 +273,8,0,39.6862,38.8301,2848 +274,8,0,39.6545,38.7333,2848 +275,8,0,39.1036,38.0820,2848 +276,8,0,39.7307,38.7567,2848 +277,8,0,39.9800,39.0671,2848 +278,8,0,39.7075,38.7384,2848 +279,8,0,42.6695,41.7110,2848 +280,8,0,38.5545,37.6272,2848 +281,8,0,41.7118,40.8264,2848 +282,8,0,41.9597,40.9011,2848 +283,8,0,39.1316,38.1008,2848 +284,8,0,39.9160,38.7478,2848 +285,8,0,39.5150,38.5693,2848 +286,8,0,40.1027,39.0224,2848 +287,8,0,40.1118,39.4235,2848 +288,8,0,39.6760,38.1410,2848 +289,8,0,39.8813,38.4224,2848 +290,8,0,40.1788,38.8912,2848 +291,8,0,39.9549,38.7852,2848 +292,8,0,39.9280,38.6198,2848 +293,8,0,40.0396,38.7650,2848 +294,8,0,39.5124,38.1212,2848 +295,8,0,40.0217,38.8248,2848 +296,8,0,40.2434,39.1259,2848 +297,8,0,40.4127,38.8621,2848 +298,8,0,52.8782,51.4472,2848 +299,8,0,70.9143,69.1975,2848 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.csv new file mode 100644 index 0000000..a7e1020 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1405,28.1593,0.0252,0.0000,0,0,0.0000,0,0.0000,0,1,0,54181,0 +1,2.8855,24.8109,0.0134,0.0000,0,0,0.0000,0,0.0000,0,1,0,41835,0 +2,2.8814,24.9417,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,51497,0 +3,2.8803,25.2004,0.0078,0.0000,0,0,0.0000,0,0.0000,0,1,0,55455,0 +4,5.1405,5.8393,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,15381,0 +5,2.8855,5.5786,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11231,0 +6,2.8814,10.2695,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,20331,0 +7,2.8803,10.2471,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,21364,0 +8,5.1405,15.0330,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,10450,0 +9,2.8855,14.9512,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,15545,0 +10,2.8814,19.7748,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15078,0 +11,2.8803,19.6627,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18070,0 +12,5.1405,24.6032,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,18747,0 +13,2.8855,24.5009,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,17122,0 +14,2.8814,29.4048,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,18810,0 +15,2.8803,29.3376,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,22446,0 +16,5.1405,34.1726,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,20781,0 +17,2.8855,34.3738,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,16800,0 +18,2.8814,39.0207,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20267,0 +19,2.8803,39.2547,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24825,0 +20,5.1405,43.8422,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10374,0 +21,2.8855,43.9693,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8962,0 +22,2.8814,48.6676,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11624,0 +23,2.8803,48.9948,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19459,0 +24,5.1405,53.4635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6001,0 +25,2.8855,54.0228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4269,0 +26,2.8814,58.3467,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7376,0 +27,2.8803,58.8220,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4223,0 +28,5.1405,63.1709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3686,0 +29,2.8855,60.6538,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +30,2.8814,64.7754,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4455,0 +31,2.8803,60.6180,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3334,0 +32,5.1405,58.7929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2938,0 +33,2.8855,59.1691,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2304,0 +34,2.8814,63.4706,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3067,0 +35,2.8803,60.6571,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +36,5.1405,51.9903,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2842,0 +37,2.8855,52.7051,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +38,2.8814,56.6380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3201,0 +39,2.8803,57.4517,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +40,5.1405,43.0478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2371,0 +41,2.8855,43.8382,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1299,0 +42,2.8814,47.6021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1053,0 +43,2.8803,48.5359,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2561,0 +44,5.1405,36.8789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1424,0 +45,2.8855,37.6167,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +46,2.8814,41.5838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +47,2.8803,42.3432,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +48,5.1405,30.0617,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1276,0 +49,2.8855,30.6322,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +50,2.8814,34.5764,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +51,2.8803,35.2371,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +52,5.1405,23.3860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +53,2.8855,23.9973,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +54,2.8814,28.1031,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,968,0 +55,2.8803,28.6295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +56,5.1405,16.6880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +57,2.8855,17.6680,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +58,2.8814,21.2615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1183,0 +59,2.8803,22.2749,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +60,5.1405,10.0512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +61,2.8855,10.9273,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +62,2.8814,14.6505,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1030,0 +63,2.8803,15.5586,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +64,5.1405,5.8911,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +65,2.8855,5.5453,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +66,2.8814,10.3152,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1333,0 +67,2.8803,10.2736,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,984,0 +68,5.1405,5.9947,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +69,2.8855,5.6627,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +70,2.8814,10.6023,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1140,0 +71,2.8803,10.4069,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1141,0 +72,5.1405,6.1950,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +73,2.8855,5.7257,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +74,2.8814,10.7034,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1105,0 +75,2.8803,10.5313,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1036,0 +76,5.1405,6.1221,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +77,2.8855,5.7029,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +78,2.8814,10.5270,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +79,2.8803,10.3695,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1265,0 +80,5.1405,6.0550,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +81,2.8855,5.7033,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +82,2.8814,10.5868,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1481,0 +83,2.8803,10.4489,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +84,5.1405,6.1743,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,778,0 +85,2.8855,5.7648,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +86,2.8814,10.5560,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +87,2.8803,10.4254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +88,5.1405,6.3330,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +89,2.8855,5.8782,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +90,2.8814,14.0336,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +91,2.8803,13.7753,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +92,5.1405,6.9559,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +93,2.8855,6.2540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +94,2.8814,15.3071,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +95,2.8803,14.8320,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +96,5.1405,6.2028,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +97,2.8855,5.7177,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +98,2.8814,10.3536,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +99,2.8803,10.2312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,956,0 +100,5.1405,5.7867,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +101,2.8855,5.5443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,691,0 +102,2.8814,10.3403,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +103,2.8803,10.2305,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +104,5.1405,16.6028,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,688,0 +105,2.8855,5.9112,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +106,2.8814,17.1939,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +107,2.8803,17.4905,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1128,0 +108,5.1405,6.3902,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +109,2.8855,5.7411,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,689,0 +110,2.8814,10.3590,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,957,0 +111,2.8803,10.1122,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +112,5.1405,6.2763,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +113,2.8855,5.7762,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +114,2.8814,10.5393,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,901,0 +115,2.8803,10.3887,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +116,5.1405,7.1823,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +117,2.8855,6.4353,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +118,2.8814,10.5362,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +119,2.8803,10.2133,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +120,5.1405,6.2091,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +121,2.8855,5.7857,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +122,2.8814,9.9451,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +123,2.8803,10.0172,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,849,0 +124,5.1405,6.4876,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +125,2.8855,5.7919,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +126,2.8814,10.5313,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1194,0 +127,2.8803,10.3154,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +128,5.1405,6.2268,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +129,2.8855,5.8404,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +130,2.8814,9.9824,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +131,2.8803,10.1004,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +132,5.1405,6.1190,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +133,2.8855,5.5470,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +134,2.8814,10.4922,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +135,2.8803,10.3518,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1030,0 +136,5.1405,6.2740,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +137,2.8855,5.8525,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +138,2.8814,10.1167,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +139,2.8803,9.9496,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +140,5.1405,6.3405,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +141,2.8855,5.5953,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +142,2.8814,10.2404,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +143,2.8803,10.0343,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +144,5.1405,6.0147,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +145,2.8855,5.5609,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +146,2.8814,10.1738,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +147,2.8803,10.1181,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +148,5.1405,6.4017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +149,2.8855,5.7013,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +150,2.8814,10.3739,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +151,2.8803,10.1260,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +152,5.1405,6.1007,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +153,2.8855,6.1500,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +154,2.8814,6.7700,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +155,2.8803,10.4697,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +156,5.1405,6.1580,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +157,2.8855,5.7402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +158,2.8814,10.5464,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +159,2.8803,10.2443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +160,5.1405,7.0070,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +161,2.8855,5.6494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +162,2.8814,9.7716,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +163,2.8803,9.6684,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +164,5.1405,6.3845,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +165,2.8855,5.6335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +166,2.8814,10.4646,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,849,0 +167,2.8803,10.2243,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +168,5.1405,10.7439,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +169,2.8855,9.8454,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +170,2.8814,10.4008,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1026,0 +171,2.8803,10.2392,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +172,5.1405,6.4993,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +173,2.8855,5.6932,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +174,2.8814,11.3043,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +175,2.8803,11.1778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +176,5.1405,6.4115,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +177,2.8855,5.8042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +178,2.8814,10.1684,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +179,2.8803,9.9461,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +180,5.1405,6.3585,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +181,2.8855,5.7479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +182,2.8814,11.1076,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +183,2.8803,10.8700,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +184,5.1405,11.1357,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +185,2.8855,9.8127,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +186,2.8814,9.3863,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +187,2.8803,9.1179,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +188,5.1405,6.2486,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +189,2.8855,5.6288,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +190,2.8814,11.6113,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +191,2.8803,11.4462,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +192,5.1405,6.7099,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +193,2.8855,5.7244,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +194,2.8814,11.2487,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +195,2.8803,11.3918,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +196,5.1405,6.3515,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +197,2.8855,6.6763,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +198,2.8814,11.5123,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +199,2.8803,11.2718,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +200,5.1405,6.8726,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +201,2.8855,6.2398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +202,2.8814,11.8633,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +203,2.8803,11.3995,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +204,5.1405,6.3833,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +205,2.8855,5.8038,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +206,2.8814,10.6912,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +207,2.8803,10.4732,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +208,5.1405,6.5472,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +209,2.8855,5.7691,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +210,2.8814,11.6756,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,827,0 +211,2.8803,11.2356,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +212,5.1405,8.2198,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +213,2.8855,5.8016,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +214,2.8814,10.1732,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +215,2.8803,10.0634,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +216,5.1405,6.5384,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +217,2.8855,5.7854,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +218,2.8814,11.7562,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +219,2.8803,11.8852,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +220,5.1405,6.8592,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +221,2.8855,6.0165,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +222,2.8814,11.5659,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +223,2.8803,11.3733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +224,5.1405,6.6918,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +225,2.8855,5.6640,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +226,2.8814,9.9113,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +227,2.8803,9.9703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +228,5.1405,14.5349,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +229,2.8855,14.5885,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +230,2.8814,19.2430,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +231,2.8803,19.2278,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +232,5.1405,7.7940,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +233,2.8855,7.5385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +234,2.8814,12.6250,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +235,2.8803,12.5761,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +236,5.1405,6.0563,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +237,2.8855,5.6436,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +238,2.8814,10.4558,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +239,2.8803,10.2317,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +240,5.1405,6.3205,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +241,2.8855,5.8128,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +242,2.8814,13.7763,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +243,2.8803,13.4994,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +244,5.1405,7.0664,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +245,2.8855,5.8790,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +246,2.8814,10.2105,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +247,2.8803,10.0518,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,882,0 +248,5.1405,6.5779,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +249,2.8855,5.8409,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +250,2.8814,10.2833,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +251,2.8803,10.0653,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +252,5.1405,6.6870,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +253,2.8855,5.8515,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +254,2.8814,11.2166,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,827,0 +255,2.8803,10.9587,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +256,5.1405,6.7093,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +257,2.8855,5.9635,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +258,2.8814,10.6475,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +259,2.8803,10.3849,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +260,5.1405,6.9619,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +261,2.8855,6.0572,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +262,2.8814,10.6115,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +263,2.8803,10.3295,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +264,5.1405,6.6056,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +265,2.8855,9.4938,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +266,2.8814,10.1992,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +267,2.8803,9.8996,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +268,5.1405,6.3529,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +269,2.8855,5.8972,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +270,2.8814,12.5158,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +271,2.8803,12.4227,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,827,0 +272,5.1405,6.3655,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +273,2.8855,5.7037,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +274,2.8814,11.6765,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +275,2.8803,11.4178,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +276,5.1405,6.3239,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +277,2.8855,5.7230,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +278,2.8814,11.2275,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +279,2.8803,11.1178,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +280,5.1405,6.2943,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +281,2.8855,5.7000,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +282,2.8814,10.5875,0.0569,0.0000,0,0,0.0000,0,0.0000,0,0,0,811,0 +283,2.8803,10.5248,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +284,5.1405,6.4421,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +285,2.8855,5.8046,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +286,2.8814,12.3150,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +287,2.8803,11.9592,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +288,5.1405,6.6360,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +289,2.8855,5.7096,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +290,2.8814,11.0520,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +291,2.8803,10.7948,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +292,5.1405,7.1683,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +293,2.8855,9.4148,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +294,2.8814,10.1896,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +295,2.8803,10.0375,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +296,5.1405,6.5023,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +297,2.8855,5.6462,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +298,2.8814,12.8985,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +299,2.8803,12.6707,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +300,5.1405,6.9363,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +301,2.8855,6.1714,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +302,2.8814,12.1365,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +303,2.8803,11.8719,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +304,5.1405,6.4437,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +305,2.8855,5.7981,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +306,2.8814,8.9810,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +307,2.8803,10.1180,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +308,5.1405,6.9882,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +309,2.8855,6.0664,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +310,2.8814,10.1205,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +311,2.8803,9.8250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +312,5.1405,6.5387,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +313,2.8855,5.6829,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +314,2.8814,10.4218,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +315,2.8803,10.3506,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +316,5.1405,6.4787,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +317,2.8855,5.8489,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +318,2.8814,10.0669,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +319,2.8803,9.7856,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +320,5.1405,6.4711,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +321,2.8855,7.5880,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +322,2.8814,10.2831,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +323,2.8803,10.1651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +324,5.1405,6.8680,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +325,2.8855,5.6530,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +326,2.8814,11.9652,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +327,2.8803,11.8908,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +328,5.1405,5.8578,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +329,2.8855,5.4922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +330,2.8814,9.7667,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +331,2.8803,9.4126,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +332,5.1405,6.5797,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +333,2.8855,6.0449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +334,2.8814,13.2130,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +335,2.8803,13.1585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +336,5.1405,6.1997,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +337,2.8855,5.7505,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +338,2.8814,10.3996,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +339,2.8803,10.2093,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +340,5.1405,6.0676,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +341,2.8855,5.6515,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +342,2.8814,10.9777,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +343,2.8803,10.7864,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +344,5.1405,6.2110,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +345,2.8855,5.7068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +346,2.8814,10.9978,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +347,2.8803,10.7703,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +348,5.1405,8.5154,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +349,2.8855,7.6092,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +350,2.8814,9.9944,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +351,2.8803,9.8703,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +352,5.1405,6.0593,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +353,2.8855,5.5676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +354,2.8814,10.2487,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +355,2.8803,10.0775,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +356,5.1405,6.3085,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +357,2.8855,5.7373,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +358,2.8814,10.2904,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +359,2.8803,10.2403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +360,5.1405,6.0033,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +361,2.8855,5.7185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +362,2.8814,10.0959,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +363,2.8803,9.0308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +364,5.1405,6.0477,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +365,2.8855,5.5043,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +366,2.8814,10.4481,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +367,2.8803,10.2643,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +368,5.1405,6.0680,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +369,2.8855,5.6269,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +370,2.8814,10.1822,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +371,2.8803,10.0301,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +372,5.1405,6.3106,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +373,2.8855,5.7585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +374,2.8814,10.3794,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +375,2.8803,10.2421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +376,5.1405,6.7084,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +377,2.8855,5.7149,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +378,2.8814,9.7102,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +379,2.8803,9.8790,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +380,5.1405,6.1916,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +381,2.8855,5.6699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +382,2.8814,10.2232,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +383,2.8803,10.1249,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +384,5.1405,5.9053,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +385,2.8855,5.6373,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +386,2.8814,10.3281,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +387,2.8803,10.1314,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +388,5.1405,6.1493,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +389,2.8855,5.6674,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +390,2.8814,10.0548,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +391,2.8803,9.9428,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +392,5.1405,6.1905,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +393,2.8855,5.6443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +394,2.8814,9.9821,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +395,2.8803,9.9148,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +396,5.1405,6.0665,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +397,2.8855,5.6930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +398,2.8814,8.6662,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +399,2.8803,8.2580,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +400,5.1405,6.1802,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +401,2.8855,5.6875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +402,2.8814,10.5932,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +403,2.8803,10.2667,0.2199,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +404,5.1405,6.3599,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +405,2.8855,5.8293,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +406,2.8814,9.8473,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +407,2.8803,9.7911,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +408,5.1405,6.1982,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +409,2.8855,5.6227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +410,2.8814,10.1747,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +411,2.8803,10.1328,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +412,5.1405,7.0790,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +413,2.8855,5.7236,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +414,2.8814,11.0580,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +415,2.8803,11.0298,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +416,5.1405,6.3752,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +417,2.8855,5.6361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +418,2.8814,9.7962,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +419,2.8803,9.6894,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +420,5.1405,6.5837,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +421,2.8855,5.7723,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +422,2.8814,10.4051,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +423,2.8803,10.1523,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +424,5.1405,6.4218,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +425,2.8855,5.7507,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +426,2.8814,10.6099,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +427,2.8803,10.6136,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +428,5.1405,6.4536,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +429,2.8855,5.7068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +430,2.8814,10.2559,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +431,2.8803,9.9682,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +432,5.1405,6.9032,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +433,2.8855,6.1417,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +434,2.8814,10.6354,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +435,2.8803,10.4116,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +436,5.1405,6.5134,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +437,2.8855,5.7986,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +438,2.8814,13.0571,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +439,2.8803,12.7776,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +440,5.1405,10.4917,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +441,2.8855,9.3688,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +442,2.8814,10.5700,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +443,2.8803,10.5110,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +444,5.1405,6.2045,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +445,2.8855,5.7069,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +446,2.8814,10.6106,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +447,2.8803,10.4684,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +448,5.1405,6.2877,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +449,2.8855,5.6268,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +450,2.8814,11.0534,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +451,2.8803,10.8020,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +452,5.1405,6.9668,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +453,2.8855,6.0877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +454,2.8814,10.4596,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +455,2.8803,10.0582,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +456,5.1405,6.9303,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +457,2.8855,5.8114,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +458,2.8814,10.5171,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +459,2.8803,9.8769,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +460,5.1405,6.9171,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +461,2.8855,6.4348,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +462,2.8814,10.2590,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +463,2.8803,9.8070,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +464,5.1405,6.8817,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +465,2.8855,5.8546,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +466,2.8814,10.4753,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +467,2.8803,10.0254,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +468,5.1405,6.7991,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +469,2.8855,5.9013,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +470,2.8814,10.3816,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +471,2.8803,10.0898,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +472,5.1405,6.5309,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +473,2.8855,5.7739,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +474,2.8814,10.6432,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +475,2.8803,9.1447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +476,5.1405,6.3838,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +477,2.8855,5.6932,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +478,2.8814,10.4189,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +479,2.8803,10.0946,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +480,5.1405,6.6888,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +481,2.8855,5.8347,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +482,2.8814,9.7416,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +483,2.8803,9.4359,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +484,5.1405,6.6149,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +485,2.8855,5.7039,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +486,2.8814,10.3758,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +487,2.8803,9.9955,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +488,5.1405,6.9018,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +489,2.8855,5.9961,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +490,2.8814,9.9975,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +491,2.8803,9.7369,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +492,5.1405,7.4020,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +493,2.8855,10.1984,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +494,2.8814,10.1982,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +495,2.8803,9.9754,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +496,5.1405,6.1669,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +497,2.8855,5.6227,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +498,2.8814,10.3148,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +499,2.8803,10.2086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +500,5.1405,5.8964,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +501,2.8855,5.5349,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +502,2.8814,10.1892,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +503,2.8803,10.1057,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +504,5.1405,5.7954,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +505,2.8855,5.5899,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +506,2.8814,10.2796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +507,2.8803,10.2144,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +508,5.1405,5.7853,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +509,2.8855,5.5257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +510,2.8814,10.1571,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +511,2.8803,10.0693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +512,5.1405,5.7755,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +513,2.8855,5.5641,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +514,2.8814,10.2071,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +515,2.8803,10.1349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +516,5.1405,5.6443,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +517,2.8855,5.6918,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +518,2.8814,10.4830,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +519,2.8803,10.3343,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +520,5.1405,6.1666,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +521,2.8855,5.7002,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +522,2.8814,10.0139,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +523,2.8803,9.6929,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +524,5.1405,6.3400,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +525,2.8855,5.7191,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +526,2.8814,10.4430,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +527,2.8803,10.1533,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +528,5.1405,6.3599,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +529,2.8855,6.0248,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +530,2.8814,10.1991,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +531,2.8803,9.9114,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +532,5.1405,6.5772,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +533,2.8855,5.6884,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +534,2.8814,11.0447,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +535,2.8803,10.8771,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +536,5.1405,6.2586,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +537,2.8855,5.6880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +538,2.8814,9.9040,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +539,2.8803,9.7978,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +540,5.1405,6.9236,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +541,2.8855,6.2434,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +542,2.8814,12.5868,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +543,2.8803,13.0252,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +544,5.1405,6.6159,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +545,2.8855,9.5413,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +546,2.8814,10.3099,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +547,2.8803,10.1015,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +548,5.1405,6.9603,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +549,2.8855,6.0753,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +550,2.8814,10.1115,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +551,2.8803,9.8461,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +552,5.1405,6.0650,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +553,2.8855,5.6605,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +554,2.8814,10.4778,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +555,2.8803,10.4008,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +556,5.1405,6.1945,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +557,2.8855,5.6966,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +558,2.8814,10.4130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +559,2.8803,10.2620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +560,5.1405,5.8306,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +561,2.8855,5.8930,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +562,2.8814,13.5297,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +563,2.8803,13.4576,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +564,5.1405,6.3255,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +565,2.8855,5.9576,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +566,2.8814,10.8174,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +567,2.8803,10.5922,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +568,5.1405,9.8771,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +569,2.8855,9.1006,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +570,2.8814,10.9184,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +571,2.8803,10.8238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +572,5.1405,6.6671,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +573,2.8855,5.8590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +574,2.8814,14.2236,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +575,2.8803,14.1191,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +576,5.1405,6.1235,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +577,2.8855,5.5523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +578,2.8814,10.6003,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +579,2.8803,10.2660,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +580,5.1405,5.9317,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +581,2.8855,5.5392,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +582,2.8814,10.1342,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +583,2.8803,9.9624,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +584,5.1405,6.4442,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +585,2.8855,5.9559,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +586,2.8814,10.9937,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +587,2.8803,10.9403,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +588,5.1405,6.5574,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +589,2.8855,6.2189,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +590,2.8814,13.5847,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +591,2.8803,13.3439,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +592,5.1405,5.9825,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +593,2.8855,5.7809,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +594,2.8814,10.6152,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +595,2.8803,10.5534,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +596,5.1405,6.2528,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +597,2.8855,9.1310,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +598,2.8814,9.8210,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +599,2.8803,9.7384,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +600,5.1405,6.1916,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +601,2.8855,5.7055,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +602,2.8814,10.5074,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +603,2.8803,10.3488,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +604,5.1405,6.2092,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +605,2.8855,5.6709,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +606,2.8814,10.3762,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +607,2.8803,10.1806,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +608,5.1405,6.1465,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +609,2.8855,5.7342,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +610,2.8814,10.0534,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +611,2.8803,9.8074,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +612,5.1405,9.6435,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +613,2.8855,8.8295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +614,2.8814,10.0757,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +615,2.8803,9.9634,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +616,5.1405,6.1022,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +617,2.8855,5.6689,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +618,2.8814,11.4319,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +619,2.8803,11.1982,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +620,5.1405,6.4693,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +621,2.8855,5.7120,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +622,2.8814,10.4160,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +623,2.8803,10.1742,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +624,5.1405,6.4510,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +625,2.8855,5.6217,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +626,2.8814,11.8080,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +627,2.8803,11.4978,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +628,5.1405,6.5709,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +629,2.8855,5.7361,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +630,2.8814,10.4600,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +631,2.8803,10.3807,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +632,5.1405,6.2867,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +633,2.8855,5.6448,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +634,2.8814,13.3874,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +635,2.8803,13.3509,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +636,5.1405,6.8110,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +637,2.8855,6.0748,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +638,2.8814,10.4465,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +639,2.8803,10.1628,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +640,5.1405,6.4908,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +641,2.8855,5.6612,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +642,2.8814,11.1403,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +643,2.8803,11.0131,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +644,5.1405,6.6024,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +645,2.8855,5.7519,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +646,2.8814,10.4528,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +647,2.8803,10.3667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +648,5.1405,6.5287,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +649,2.8855,5.7409,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +650,2.8814,13.0109,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +651,2.8803,12.9776,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +652,5.1405,7.0014,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +653,2.8855,5.8563,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +654,2.8814,10.5671,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +655,2.8803,10.3214,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +656,5.1405,6.9380,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +657,2.8855,6.0598,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +658,2.8814,10.3645,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +659,2.8803,9.4418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +660,5.1405,6.4252,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +661,2.8855,5.6473,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +662,2.8814,10.5115,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +663,2.8803,10.2024,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +664,5.1405,6.4541,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +665,2.8855,5.6341,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +666,2.8814,10.5267,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +667,2.8803,10.3020,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +668,5.1405,6.3658,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +669,2.8855,5.7389,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +670,2.8814,10.9642,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +671,2.8803,10.6028,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +672,5.1405,9.8921,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +673,2.8855,9.0785,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +674,2.8814,10.4341,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +675,2.8803,10.2718,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +676,5.1405,6.4690,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +677,2.8855,5.8158,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +678,2.8814,10.4585,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +679,2.8803,10.2758,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +680,5.1405,6.9591,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +681,2.8855,6.1673,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +682,2.8814,10.4386,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +683,2.8803,10.2665,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +684,5.1405,6.2656,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +685,2.8855,5.6800,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +686,2.8814,13.9043,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +687,2.8803,13.6795,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +688,5.1405,6.0691,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +689,2.8855,5.7089,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +690,2.8814,10.6783,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +691,2.8803,10.6331,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +692,5.1405,6.6626,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +693,2.8855,5.8160,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +694,2.8814,11.1192,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +695,2.8803,10.8000,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +696,5.1405,6.5878,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +697,2.8855,5.9022,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +698,2.8814,11.8507,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +699,2.8803,11.6453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +700,5.1405,6.6027,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +701,2.8855,5.6980,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +702,2.8814,12.2918,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +703,2.8803,12.0228,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +704,5.1405,7.2613,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +705,2.8855,7.3425,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +706,2.8814,10.2453,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +707,2.8803,9.9254,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +708,5.1405,6.5043,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +709,2.8855,5.6355,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +710,2.8814,10.3059,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +711,2.8803,10.0499,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +712,5.1405,6.9206,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +713,2.8855,5.9841,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +714,2.8814,12.8485,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +715,2.8803,12.7732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +716,5.1405,6.6529,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +717,2.8855,5.7261,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +718,2.8814,13.1234,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +719,2.8803,12.8912,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +720,5.1405,10.6386,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +721,2.8855,9.8458,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +722,2.8814,10.3771,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +723,2.8803,10.1307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +724,5.1405,6.3884,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +725,2.8855,5.6430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +726,2.8814,11.5312,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +727,2.8803,11.4918,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +728,5.1405,16.6049,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +729,2.8855,16.2556,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +730,2.8814,29.9717,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +731,2.8803,29.7557,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +732,5.1405,29.8413,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +733,2.8855,29.2934,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +734,2.8814,37.4258,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +735,2.8803,37.1778,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +736,5.1405,29.0846,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +737,2.8855,28.5177,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +738,2.8814,38.7572,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +739,2.8803,38.6100,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +740,5.1405,37.2737,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +741,2.8855,36.7387,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +742,2.8814,42.7302,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +743,2.8803,42.5079,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +744,5.1405,33.3677,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +745,2.8855,32.2895,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +746,2.8814,36.2662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +747,2.8803,36.0851,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +748,5.1405,27.3467,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +749,2.8855,26.7350,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +750,2.8814,33.9035,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +751,2.8803,33.7565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +752,5.1405,31.9121,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +753,2.8855,30.7064,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +754,2.8814,39.6051,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +755,2.8803,39.3175,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +756,5.1405,34.1973,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +757,2.8855,33.6063,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +758,2.8814,45.7340,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +759,2.8803,45.4615,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +760,5.1405,33.1934,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +761,2.8855,32.7726,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +762,2.8814,37.2567,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +763,2.8803,36.9900,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +764,5.1405,27.9675,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +765,2.8855,27.4868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +766,2.8814,35.4170,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +767,2.8803,35.1917,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +768,5.1405,31.7166,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +769,2.8855,31.1462,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +770,2.8814,39.8808,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +771,2.8803,39.6567,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +772,5.1405,33.7070,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +773,2.8855,32.9822,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +774,2.8814,40.5933,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +775,2.8803,40.1897,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +776,5.1405,33.2985,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +777,2.8855,32.8285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +778,2.8814,39.5774,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +779,2.8803,39.3307,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +780,5.1405,33.6815,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +781,2.8855,33.0641,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +782,2.8814,37.6830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +783,2.8803,37.4378,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +784,5.1405,29.7673,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +785,2.8855,28.9839,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +786,2.8814,36.9265,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +787,2.8803,36.4443,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +788,5.1405,31.8272,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +789,2.8855,31.0712,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +790,2.8814,39.5192,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +791,2.8803,39.1273,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +792,5.1405,31.6187,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +793,2.8855,30.7251,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +794,2.8814,39.8716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +795,2.8803,39.3416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +796,5.1405,35.2226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +797,2.8855,34.2311,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +798,2.8814,45.4599,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +799,2.8803,44.9710,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +800,5.1405,32.8083,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +801,2.8855,32.1703,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +802,2.8814,43.6916,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +803,2.8803,43.2638,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +804,5.1405,34.0829,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +805,2.8855,33.4924,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +806,2.8814,43.4253,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +807,2.8803,43.1569,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +808,5.1405,33.1623,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +809,2.8855,32.6256,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +810,2.8814,37.1115,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +811,2.8803,36.7957,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +812,5.1405,28.3086,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +813,2.8855,27.4870,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +814,2.8814,35.4122,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +815,2.8803,35.2880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +816,5.1405,31.3399,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +817,2.8855,30.7302,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +818,2.8814,39.4261,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +819,2.8803,39.2034,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +820,5.1405,33.9563,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +821,2.8855,33.3217,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +822,2.8814,44.4741,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +823,2.8803,44.1652,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +824,5.1405,36.0465,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +825,2.8855,35.3325,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +826,2.8814,40.2712,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +827,2.8803,40.1686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +828,5.1405,29.8856,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +829,2.8855,24.7455,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +830,2.8814,32.2590,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +831,2.8803,31.9530,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +832,5.1405,32.4703,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +833,2.8855,31.7631,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +834,2.8814,40.8761,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +835,2.8803,40.7650,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +836,5.1405,35.2034,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +837,2.8855,34.3000,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +838,2.8814,39.1817,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +839,2.8803,38.6809,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +840,5.1405,28.6842,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +841,2.8855,27.6725,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +842,2.8814,36.0113,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +843,2.8803,35.3601,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +844,5.1405,31.7856,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +845,2.8855,31.0054,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +846,2.8814,38.8978,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +847,2.8803,38.4697,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +848,5.1405,33.2541,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +849,2.8855,32.0377,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +850,2.8814,39.3841,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +851,2.8803,38.9045,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +852,5.1405,34.0722,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +853,2.8855,33.3484,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +854,2.8814,41.3470,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +855,2.8803,40.8718,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +856,5.1405,35.7148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +857,2.8855,34.6339,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +858,2.8814,39.4036,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +859,2.8803,38.7055,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +860,5.1405,28.3204,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +861,2.8855,27.3559,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +862,2.8814,36.0876,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +863,2.8803,35.5855,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +864,5.1405,31.9819,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +865,2.8855,30.7700,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +866,2.8814,40.0940,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +867,2.8803,38.9763,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +868,5.1405,32.4730,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +869,2.8855,31.4349,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +870,2.8814,39.5076,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +871,2.8803,39.2493,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +872,5.1405,33.7490,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +873,2.8855,33.0042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +874,2.8814,37.7369,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +875,2.8803,37.4289,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +876,5.1405,28.4047,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +877,2.8855,27.5946,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +878,2.8814,35.9412,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +879,2.8803,35.5595,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +880,5.1405,32.4449,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +881,2.8855,31.7171,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +882,2.8814,39.8608,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +883,2.8803,39.5897,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +884,5.1405,31.2189,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +885,2.8855,30.5010,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +886,2.8814,38.2178,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +887,2.8803,37.9687,0.1840,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +888,5.1405,34.1224,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +889,2.8855,33.7141,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +890,2.8814,45.3644,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +891,2.8803,45.3035,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +892,5.1405,33.9929,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +893,2.8855,33.3071,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +894,2.8814,38.1871,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +895,2.8803,37.8925,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +896,5.1405,28.1954,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +897,2.8855,27.6948,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +898,2.8814,35.8536,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +899,2.8803,35.5885,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +900,5.1405,32.1217,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +901,2.8855,31.4310,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +902,2.8814,40.6157,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +903,2.8803,40.3625,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +904,5.1405,32.5154,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +905,2.8855,31.9145,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +906,2.8814,39.2334,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +907,2.8803,38.9967,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +908,5.1405,33.2201,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +909,2.8855,32.0647,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +910,2.8814,44.2146,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +911,2.8803,43.9842,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +912,5.1405,34.8109,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +913,2.8855,32.8270,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +914,2.8814,37.5493,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +915,2.8803,37.3568,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +916,5.1405,29.9186,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +917,2.8855,29.5439,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +918,2.8814,35.2493,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +919,2.8803,35.0133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +920,5.1405,32.3880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +921,2.8855,31.7045,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +922,2.8814,40.4814,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +923,2.8803,40.2185,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +924,5.1405,32.5995,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +925,2.8855,31.9165,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +926,2.8814,38.7255,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +927,2.8803,38.4394,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +928,5.1405,32.7748,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +929,2.8855,32.0771,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +930,2.8814,40.2630,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +931,2.8803,40.0208,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +932,5.1405,36.8747,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +933,2.8855,36.1091,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +934,2.8814,41.6163,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +935,2.8803,41.3583,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +936,5.1405,33.4108,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +937,2.8855,32.8006,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +938,2.8814,37.5717,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +939,2.8803,37.2332,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +940,5.1405,29.3791,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +941,2.8855,28.1799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +942,2.8814,36.5043,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +943,2.8803,35.9110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +944,5.1405,32.4463,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +945,2.8855,31.6157,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +946,2.8814,40.5207,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +947,2.8803,40.2580,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +948,5.1405,32.2896,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +949,2.8855,31.6852,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +950,2.8814,38.4793,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +951,2.8803,38.2552,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +952,5.1405,32.9378,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +953,2.8855,32.0830,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +954,2.8814,39.0987,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +955,2.8803,38.6353,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +956,5.1405,34.6218,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +957,2.8855,32.8764,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +958,2.8814,40.9652,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +959,2.8803,40.7097,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +960,5.1405,35.2954,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +961,2.8855,33.8157,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +962,2.8814,38.8403,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +963,2.8803,38.7581,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +964,5.1405,28.9262,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +965,2.8855,28.4640,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +966,2.8814,36.0235,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +967,2.8803,35.8608,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +968,5.1405,32.6410,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +969,2.8855,31.9417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +970,2.8814,41.0318,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +971,2.8803,40.7172,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +972,5.1405,32.2699,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +973,2.8855,31.5324,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +974,2.8814,38.6845,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +975,2.8803,38.4474,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +976,5.1405,32.6255,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +977,2.8855,31.6855,0.0493,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +978,2.8814,36.4678,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +979,2.8803,36.2283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +980,5.1405,29.6272,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +981,2.8855,28.4540,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +982,2.8814,36.7770,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +983,2.8803,36.5735,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +984,5.1405,32.4108,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +985,2.8855,31.4439,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +986,2.8814,40.2231,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +987,2.8803,39.9648,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +988,5.1405,31.7855,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +989,2.8855,31.2089,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +990,2.8814,38.6749,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +991,2.8803,38.2540,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +992,5.1405,33.3485,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +993,2.8855,32.8413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +994,2.8814,43.4796,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +995,2.8803,43.2244,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +996,5.1405,34.9678,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +997,2.8855,34.2747,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +998,2.8814,44.5174,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +999,2.8803,44.2612,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1000,5.1405,34.3442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1001,2.8855,33.6913,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1002,2.8814,41.5485,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1003,2.8803,41.4009,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1004,5.1405,33.8826,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1005,2.8855,33.3368,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1006,2.8814,37.9604,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1007,2.8803,37.7179,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1008,5.1405,29.2068,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1009,2.8855,28.0587,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1010,2.8814,36.5136,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1011,2.8803,36.2426,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1012,5.1405,32.2779,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1013,2.8855,31.4811,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1014,2.8814,40.0823,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1015,2.8803,40.1377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1016,5.1405,33.2862,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1017,2.8855,32.1931,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1018,2.8814,43.7660,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1019,2.8803,43.2160,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1020,5.1405,34.6268,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1021,2.8855,34.1222,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1022,2.8814,44.3088,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1023,2.8803,44.2789,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1024,5.1405,32.3167,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1025,2.8855,31.7335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1026,2.8814,36.5534,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1027,2.8803,36.2859,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1028,5.1405,28.2542,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1029,2.8855,27.2052,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1030,2.8814,35.5502,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1031,2.8803,35.2900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1032,5.1405,32.6088,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1033,2.8855,31.9552,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1034,2.8814,40.2210,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1035,2.8803,39.9971,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1036,5.1405,30.8860,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1037,2.8855,30.2488,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1038,2.8814,41.8155,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1039,2.8803,41.8244,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1040,5.1405,34.5857,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1041,2.8855,34.2698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1042,2.8814,38.6228,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1043,2.8803,38.4623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1044,5.1405,28.3020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1045,2.8855,27.2754,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1046,2.8814,36.1733,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1047,2.8803,35.9070,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1048,5.1405,32.6530,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1049,2.8855,31.9682,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1050,2.8814,39.2467,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1051,2.8803,38.8729,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1052,5.1405,30.3146,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1053,2.8855,29.7316,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1054,2.8814,38.2229,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1055,2.8803,38.1033,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1056,5.1405,37.2828,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1057,2.8855,36.5934,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1058,2.8814,41.5761,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1059,2.8803,41.3140,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1060,5.1405,33.8040,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1061,2.8855,33.2053,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1062,2.8814,45.1724,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1063,2.8803,44.8577,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1064,5.1405,37.2016,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1065,2.8855,36.0003,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1066,2.8814,40.6659,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1067,2.8803,39.6482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1068,5.1405,27.4513,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1069,2.8855,26.1231,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1070,2.8814,33.3472,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1071,2.8803,33.0780,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1072,5.1405,31.3869,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1073,2.8855,30.5495,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1074,2.8814,43.5547,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1075,2.8803,43.5402,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1076,5.1405,34.3720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1077,2.8855,33.5613,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1078,2.8814,38.5777,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1079,2.8803,38.3085,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1080,5.1405,27.5165,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1081,2.8855,26.8062,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1082,2.8814,35.7955,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1083,2.8803,35.5523,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1084,5.1405,32.9793,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1085,2.8855,32.1131,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1086,2.8814,40.9702,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1087,2.8803,40.6996,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1088,5.1405,31.3283,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1089,2.8855,30.4929,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1090,2.8814,38.3311,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1091,2.8803,38.0861,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1092,5.1405,34.5291,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1093,2.8855,33.8284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1094,2.8814,37.9528,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1095,2.8803,37.4783,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1096,5.1405,28.1475,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1097,2.8855,27.6250,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1098,2.8814,35.8810,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1099,2.8803,35.6264,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1100,5.1405,31.9847,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1101,2.8855,30.9795,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1102,2.8814,46.7213,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1103,2.8803,46.5743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1104,5.1405,32.8128,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1105,2.8855,31.9808,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1106,2.8814,44.8352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1107,2.8803,44.3089,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1108,5.1405,34.1783,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1109,2.8855,32.7219,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1110,2.8814,37.8690,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1111,2.8803,37.3607,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1112,5.1405,29.6262,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1113,2.8855,27.3858,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1114,2.8814,35.9400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1115,2.8803,35.0267,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1116,5.1405,31.3380,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1117,2.8855,29.9315,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1118,2.8814,38.9145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1119,2.8803,38.2304,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1120,5.1405,32.0077,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1121,2.8855,30.8185,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1122,2.8814,37.9990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1123,2.8803,37.3140,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1124,5.1405,32.3774,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1125,2.8855,31.1498,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1126,2.8814,36.4910,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1127,2.8803,35.6875,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1128,5.1405,30.2314,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1129,2.8855,29.4837,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1130,2.8814,37.4067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1131,2.8803,37.1034,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1132,5.1405,31.9624,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1133,2.8855,31.1984,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1134,2.8814,40.4595,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1135,2.8803,40.1911,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1136,5.1405,31.3943,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1137,2.8855,30.6750,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1138,2.8814,38.3630,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1139,2.8803,38.1417,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1140,5.1405,32.9010,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1141,2.8855,31.8052,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1142,2.8814,37.0568,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1143,2.8803,36.2531,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1144,5.1405,29.2994,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1145,2.8855,28.6204,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1146,2.8814,36.6854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1147,2.8803,35.8821,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1148,5.1405,31.8370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1149,2.8855,30.5626,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1150,2.8814,38.9570,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1151,2.8803,38.4943,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1152,5.1405,30.3933,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1153,2.8855,29.2178,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1154,2.8814,38.7515,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1155,2.8803,38.5073,0.0793,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1156,5.1405,35.0041,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1157,2.8855,33.6921,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1158,2.8814,38.8711,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1159,2.8803,38.5471,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1160,5.1405,27.6616,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1161,2.8855,26.9200,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1162,2.8814,35.7019,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1163,2.8803,35.2350,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1164,5.1405,32.2458,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1165,2.8855,31.5376,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1166,2.8814,39.4126,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1167,2.8803,39.0232,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1168,5.1405,30.5063,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1169,2.8855,29.5800,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1170,2.8814,36.6414,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1171,2.8803,36.2578,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1172,5.1405,33.3485,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1173,2.8855,32.8036,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1174,2.8814,45.4084,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1175,2.8803,45.1585,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1176,5.1405,35.5048,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1177,2.8855,34.6724,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1178,2.8814,46.6275,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1179,2.8803,46.3871,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1180,5.1405,33.8818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1181,2.8855,33.1267,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1182,2.8814,38.3280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1183,2.8803,37.8444,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1184,5.1405,29.2991,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1185,2.8855,26.4057,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1186,2.8814,34.3905,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1187,2.8803,34.1007,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1188,5.1405,30.8719,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1189,2.8855,30.0395,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1190,2.8814,36.3191,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1191,2.8803,36.0117,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1192,5.1405,29.5996,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1193,2.8855,28.7516,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1194,2.8814,37.4781,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1195,2.8803,36.7638,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1196,5.1405,37.8355,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1197,2.8855,37.2263,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1198,2.8814,50.5814,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +1199,2.8803,49.8630,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.txt b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.txt new file mode 100644 index 0000000..dd8a889 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.txt @@ -0,0 +1,58 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=4 +tile_rows=1 +tile_resolution=1280x2880 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.036 +effective_logical_fps=59.567 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=25.087 +p95_encode_latency_ms=45.874 +max_encode_latency_ms=103.488 +avg_steady_encode_latency_ms=24.221 +p95_steady_encode_latency_ms=44.961 +max_steady_encode_latency_ms=51.386 +avg_tile_encode_latency_ms=20.580 +p95_tile_encode_latency_ms=42.746 +avg_max_tile_encode_latency_ms=23.529 +p95_max_tile_encode_latency_ms=44.533 +avg_steady_max_tile_encode_latency_ms=22.870 +p95_steady_max_tile_encode_latency_ms=43.695 +payload_bytes=1476775 +send_target=none +csv=benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile_logical.csv diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile_logical.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile_logical.csv new file mode 100644 index 0000000..7b97f45 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x1_30mbps_per_tile_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,103.4878,28.1593,202968 +1,4,0,10.9204,10.2695,68307 +2,4,0,20.0510,19.7748,59143 +3,4,0,29.7086,29.4048,77125 +4,4,0,39.5614,39.2547,82673 +5,4,0,49.2398,48.9948,50419 +6,4,0,59.0347,58.8220,21869 +7,4,0,68.8785,64.7754,14590 +8,4,0,64.5584,63.4706,10896 +9,4,0,57.9174,57.4517,10830 +10,4,0,48.9918,48.5359,7284 +11,4,0,42.7995,42.3432,5602 +12,4,0,35.8098,35.2371,4755 +13,4,0,29.0754,28.6295,3948 +14,4,0,22.8336,22.2749,3741 +15,4,0,16.1530,15.5586,3549 +16,4,0,11.1477,10.3152,3963 +17,4,0,11.3173,10.6023,3876 +18,4,0,11.5303,10.7034,3659 +19,4,0,11.2917,10.5270,3737 +20,4,0,11.3283,10.5868,3973 +21,4,0,11.3290,10.5560,3107 +22,4,0,14.9958,14.0336,3118 +23,4,0,16.6571,15.3071,3148 +24,4,0,11.2018,10.3536,3239 +25,4,0,11.0028,10.3403,3201 +26,4,0,18.6170,17.4905,3364 +27,4,0,11.6805,10.3590,3138 +28,4,0,11.3803,10.5393,3071 +29,4,0,12.1496,10.5362,3074 +30,4,0,11.8886,10.0172,3088 +31,4,0,11.8718,10.5313,3454 +32,4,0,11.8343,10.1004,3027 +33,4,0,11.4711,10.4922,3188 +34,4,0,11.0379,10.1167,2958 +35,4,0,11.4470,10.2404,2979 +36,4,0,11.4490,10.1738,2984 +37,4,0,11.3647,10.3739,2997 +38,4,0,15.0983,10.4697,3074 +39,4,0,12.0134,10.5464,3039 +40,4,0,12.4724,9.7716,3134 +41,4,0,11.8760,10.4646,3007 +42,4,0,11.9931,10.7439,3184 +43,4,0,12.9811,11.3043,3009 +44,4,0,12.0606,10.1684,2985 +45,4,0,12.8280,11.1076,3007 +46,4,0,12.1677,11.1357,2980 +47,4,0,13.0599,11.6113,3084 +48,4,0,13.0648,11.3918,2965 +49,4,0,14.0387,11.5123,3026 +50,4,0,13.0510,11.8633,3007 +51,4,0,11.6222,10.6912,3007 +52,4,0,14.2857,11.6756,3029 +53,4,0,13.3833,10.1732,3096 +54,4,0,13.3543,11.8852,3020 +55,4,0,13.3793,11.5659,2954 +56,4,0,11.9890,9.9703,2954 +57,4,0,19.7048,19.2430,2954 +58,4,0,13.1060,12.6250,2974 +59,4,0,11.2038,10.4558,3002 +60,4,0,14.9963,13.7763,3024 +61,4,0,12.2837,10.2105,3074 +62,4,0,11.7516,10.2833,3002 +63,4,0,12.5265,11.2166,2990 +64,4,0,12.1163,10.6475,3107 +65,4,0,12.1138,10.6115,2960 +66,4,0,11.7355,10.1992,3008 +67,4,0,13.7509,12.5158,2985 +68,4,0,12.7946,11.6765,3038 +69,4,0,12.4445,11.2275,2993 +70,4,0,11.9115,10.5875,2969 +71,4,0,13.9959,12.3150,2977 +72,4,0,12.4646,11.0520,2959 +73,4,0,11.7279,10.1896,2996 +74,4,0,14.1879,12.8985,3000 +75,4,0,13.6246,12.1365,3122 +76,4,0,12.8580,10.1180,2954 +77,4,0,11.9165,10.1205,2954 +78,4,0,12.0653,10.4218,2954 +79,4,0,12.0108,10.0669,2959 +80,4,0,11.8019,10.2831,2960 +81,4,0,13.7780,11.9652,2954 +82,4,0,12.0361,9.7667,2998 +83,4,0,14.4047,13.2130,2959 +84,4,0,11.3671,10.3996,2954 +85,4,0,11.8719,10.9777,2954 +86,4,0,12.2276,10.9978,3026 +87,4,0,11.5854,9.9944,2959 +88,4,0,11.1192,10.2487,2954 +89,4,0,11.3225,10.2904,2982 +90,4,0,11.3199,10.0959,2954 +91,4,0,11.4707,10.4481,2975 +92,4,0,11.1982,10.1822,2954 +93,4,0,11.5367,10.3794,2954 +94,4,0,11.8355,9.8790,2960 +95,4,0,11.4398,10.2232,2959 +96,4,0,11.6588,10.3281,2960 +97,4,0,11.2958,10.0548,3004 +98,4,0,11.2451,9.9821,2954 +99,4,0,11.3267,8.6662,2954 +100,4,0,11.8659,10.5932,2954 +101,4,0,11.7493,9.8473,2954 +102,4,0,11.6840,10.1747,2954 +103,4,0,13.2087,11.0580,2954 +104,4,0,11.6778,9.7962,2965 +105,4,0,11.6257,10.4051,2998 +106,4,0,12.2683,10.6136,2958 +107,4,0,11.9507,10.2559,2954 +108,4,0,12.2010,10.6354,2980 +109,4,0,14.4292,13.0571,2954 +110,4,0,12.0565,10.5700,2954 +111,4,0,11.4829,10.6106,2954 +112,4,0,12.1219,11.0534,2954 +113,4,0,12.2675,10.4596,2954 +114,4,0,12.8739,10.5171,2954 +115,4,0,12.2045,10.2590,2954 +116,4,0,12.4417,10.4753,2954 +117,4,0,12.2102,10.3816,2954 +118,4,0,12.0678,10.6432,2954 +119,4,0,11.8919,10.4189,2958 +120,4,0,11.9726,9.7416,2954 +121,4,0,11.8425,10.3758,2954 +122,4,0,12.1037,9.9975,2954 +123,4,0,11.5183,10.1984,2954 +124,4,0,11.1888,10.3148,2954 +125,4,0,10.9468,10.1892,2954 +126,4,0,10.9883,10.2796,2954 +127,4,0,10.7929,10.1571,2954 +128,4,0,10.8715,10.2071,2954 +129,4,0,11.0343,10.4830,2954 +130,4,0,11.2480,10.0139,2954 +131,4,0,11.6656,10.4430,2954 +132,4,0,11.6210,10.1991,2954 +133,4,0,12.5904,11.0447,2954 +134,4,0,12.3123,9.9040,2954 +135,4,0,14.6093,13.0252,2954 +136,4,0,11.8514,10.3099,2954 +137,4,0,11.7009,10.1115,2954 +138,4,0,11.4172,10.4778,2954 +139,4,0,11.3906,10.4130,2954 +140,4,0,14.6860,13.5297,2954 +141,4,0,12.5959,10.8174,2954 +142,4,0,12.1575,10.9184,2954 +143,4,0,15.7110,14.2236,2954 +144,4,0,11.8752,10.6003,2954 +145,4,0,11.0386,10.1342,2954 +146,4,0,12.3646,10.9937,2954 +147,4,0,14.5267,13.5847,2954 +148,4,0,11.5547,10.6152,2954 +149,4,0,11.5791,9.8210,2954 +150,4,0,11.6910,10.5074,2954 +151,4,0,11.2473,10.3762,2954 +152,4,0,11.3125,10.0534,2954 +153,4,0,11.6288,10.0757,2954 +154,4,0,12.4735,11.4319,2954 +155,4,0,11.6318,10.4160,2954 +156,4,0,13.2862,11.8080,2954 +157,4,0,11.8393,10.4600,2954 +158,4,0,14.8112,13.3874,2954 +159,4,0,11.8081,10.4465,2954 +160,4,0,12.4626,11.1403,2954 +161,4,0,11.7963,10.4528,2954 +162,4,0,14.5321,13.0109,2954 +163,4,0,12.1701,10.5671,2954 +164,4,0,11.9400,10.3645,2954 +165,4,0,11.8031,10.5115,2954 +166,4,0,11.7982,10.5267,2954 +167,4,0,12.4877,10.9642,2954 +168,4,0,11.6866,10.4341,2954 +169,4,0,11.9196,10.4585,2954 +170,4,0,11.9050,10.4386,2954 +171,4,0,14.9671,13.9043,2954 +172,4,0,11.4748,10.6783,2954 +173,4,0,12.5037,11.1192,2954 +174,4,0,13.1678,11.8507,2954 +175,4,0,13.6714,12.2918,2954 +176,4,0,12.0220,10.2453,2954 +177,4,0,11.7340,10.3059,2954 +178,4,0,14.4880,12.8485,2954 +179,4,0,14.4626,13.1234,2954 +180,4,0,11.8115,10.6386,2954 +181,4,0,12.9743,11.5312,2954 +182,4,0,30.7952,29.9717,2954 +183,4,0,38.2852,37.4258,2954 +184,4,0,39.6899,38.7572,2954 +185,4,0,43.5992,42.7302,2954 +186,4,0,38.5022,36.2662,2954 +187,4,0,35.0226,33.9035,2954 +188,4,0,41.2777,39.6051,2954 +189,4,0,46.6795,45.7340,2954 +190,4,0,38.2145,37.2567,2954 +191,4,0,36.2438,35.4170,2954 +192,4,0,41.0860,39.8808,2954 +193,4,0,41.8679,40.5933,2954 +194,4,0,40.5720,39.5774,2954 +195,4,0,38.7236,37.6830,2954 +196,4,0,37.9249,36.9265,2954 +197,4,0,40.6195,39.5192,2954 +198,4,0,40.9870,39.8716,2954 +199,4,0,46.5346,45.4599,2954 +200,4,0,44.8183,43.6916,2954 +201,4,0,44.1975,43.4253,2954 +202,4,0,38.1210,37.1115,2954 +203,4,0,36.6062,35.4122,2954 +204,4,0,40.4060,39.4261,2954 +205,4,0,45.5107,44.4741,2954 +206,4,0,41.4700,40.2712,2954 +207,4,0,38.2000,32.2590,2954 +208,4,0,42.1101,40.8761,2954 +209,4,0,40.3812,39.1817,2954 +210,4,0,37.2763,36.0113,2954 +211,4,0,40.1631,38.8978,2954 +212,4,0,40.7007,39.3841,2954 +213,4,0,42.5207,41.3470,2954 +214,4,0,40.7457,39.4036,2954 +215,4,0,37.3711,36.0876,2954 +216,4,0,42.2054,40.0940,2954 +217,4,0,40.9838,39.5076,2954 +218,4,0,38.9738,37.7369,2954 +219,4,0,37.1582,35.9412,2954 +220,4,0,40.9653,39.8608,2954 +221,4,0,39.4800,38.2178,2954 +222,4,0,46.4372,45.3644,2954 +223,4,0,39.2055,38.1871,2954 +224,4,0,36.7130,35.8536,2954 +225,4,0,41.6859,40.6157,2954 +226,4,0,40.2955,39.2334,2954 +227,4,0,45.1060,44.2146,2954 +228,4,0,39.9909,37.5493,2954 +229,4,0,36.1618,35.2493,2954 +230,4,0,41.5297,40.4814,2954 +231,4,0,39.6013,38.7255,2954 +232,4,0,41.3170,40.2630,2954 +233,4,0,42.9011,41.6163,2954 +234,4,0,38.5289,37.5717,2954 +235,4,0,38.2319,36.5043,2954 +236,4,0,41.7208,40.5207,2954 +237,4,0,39.5199,38.4793,2954 +238,4,0,40.0330,39.0987,2954 +239,4,0,42.9291,40.9652,2954 +240,4,0,41.0005,38.8403,2954 +241,4,0,36.9755,36.0235,2954 +242,4,0,42.2720,41.0318,2954 +243,4,0,39.9593,38.6845,2954 +244,4,0,37.8517,36.4678,2954 +245,4,0,38.7249,36.7770,2954 +246,4,0,41.5658,40.2231,2954 +247,4,0,39.5769,38.6749,2954 +248,4,0,44.5228,43.4796,2954 +249,4,0,45.5549,44.5174,2954 +250,4,0,42.6779,41.5485,2954 +251,4,0,39.0448,37.9604,2954 +252,4,0,38.0635,36.5136,2954 +253,4,0,41.4953,40.1377,2954 +254,4,0,45.1680,43.7660,2954 +255,4,0,45.3870,44.3088,2954 +256,4,0,37.5247,36.5534,2954 +257,4,0,37.0138,35.5502,2954 +258,4,0,41.2578,40.2210,2954 +259,4,0,42.9409,41.8244,2954 +260,4,0,39.5649,38.6228,2954 +261,4,0,37.4708,36.1733,2954 +262,4,0,40.3074,39.2467,2954 +263,4,0,39.4095,38.2229,2954 +264,4,0,42.3324,41.5761,2954 +265,4,0,46.2915,45.1724,2954 +266,4,0,42.2115,40.6659,2954 +267,4,0,35.1351,33.3472,2954 +268,4,0,44.9537,43.5547,2954 +269,4,0,39.5301,38.5777,2954 +270,4,0,36.7004,35.7955,2954 +271,4,0,42.0985,40.9702,2954 +272,4,0,39.5450,38.3311,2954 +273,4,0,39.2738,37.9528,2954 +274,4,0,36.7209,35.8810,2954 +275,4,0,48.0082,46.7213,2954 +276,4,0,45.8515,44.8352,2954 +277,4,0,38.7682,37.8690,2954 +278,4,0,38.3830,35.9400,2954 +279,4,0,40.2022,38.9145,2954 +280,4,0,39.1099,37.9990,2954 +281,4,0,37.4414,36.4910,2954 +282,4,0,38.4464,37.4067,2954 +283,4,0,41.8817,40.4595,2954 +284,4,0,39.3895,38.3630,2954 +285,4,0,38.0568,37.0568,2954 +286,4,0,37.8063,36.6854,2954 +287,4,0,40.1891,38.9570,2954 +288,4,0,39.8775,38.7515,2954 +289,4,0,39.9874,38.8711,2954 +290,4,0,36.8766,35.7019,2954 +291,4,0,40.3477,39.4126,2954 +292,4,0,37.7999,36.6414,2954 +293,4,0,46.3113,45.4084,2954 +294,4,0,47.4777,46.6275,2954 +295,4,0,39.1065,38.3280,2954 +296,4,0,37.5469,34.3905,2954 +297,4,0,38.0536,36.3191,2954 +298,4,0,38.4932,37.4781,2954 +299,4,0,51.3864,50.5814,2954 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.csv new file mode 100644 index 0000000..9d40099 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.csv @@ -0,0 +1,2401 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,3.8659,25.9413,0.0237,0.0000,0,0,0.0000,0,0.0000,0,1,0,30304,0 +1,1.6612,22.6020,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,22597,0 +2,1.6679,22.7835,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,30265,0 +3,1.6084,28.2926,0.0163,0.0000,0,0,0.0000,0,0.0000,0,1,0,33936,0 +4,1.6447,22.5563,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,35525,0 +5,1.6658,22.3092,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,33903,0 +6,1.6692,22.1730,0.0038,0.0000,0,0,0.0000,0,0.0000,0,1,0,39365,0 +7,1.6227,25.8712,0.0079,0.0000,0,0,0.0000,0,0.0000,0,1,0,38930,0 +8,3.8659,4.2557,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8612,0 +9,1.6612,4.0266,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7437,0 +10,1.6679,6.7426,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8988,0 +11,1.6084,6.6405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8908,0 +12,1.6447,9.4823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9834,0 +13,1.6658,9.4390,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10690,0 +14,1.6692,12.3545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6824,0 +15,1.6227,12.2926,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9286,0 +16,3.8659,15.2280,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4847,0 +17,1.6612,15.1575,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3613,0 +18,1.6679,18.0136,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5777,0 +19,1.6084,17.9673,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4870,0 +20,1.6447,20.7422,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5326,0 +21,1.6658,20.7141,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,5681,0 +22,1.6692,23.5402,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,8128,0 +23,1.6227,23.4704,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7015,0 +24,3.8659,26.2867,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8582,0 +25,1.6612,26.2109,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7729,0 +26,1.6679,29.1942,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9577,0 +27,1.6084,29.0828,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +28,1.6447,32.0221,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8102,0 +29,1.6658,31.9907,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9370,0 +30,1.6692,34.7838,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8715,0 +31,1.6227,34.7815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8816,0 +32,3.8659,37.5177,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +33,1.6612,37.5483,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9660,0 +34,1.6679,40.3750,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10645,0 +35,1.6084,40.3781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9875,0 +36,1.6447,43.2155,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9783,0 +37,1.6658,43.2001,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11755,0 +38,1.6692,46.1036,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10788,0 +39,1.6227,46.0797,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8251,0 +40,3.8659,49.0585,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6044,0 +41,1.6612,48.9848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5465,0 +42,1.6679,51.8187,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6103,0 +43,1.6084,51.7815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7836,0 +44,1.6447,54.6251,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7894,0 +45,1.6658,54.5825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9675,0 +46,1.6692,57.5619,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14602,0 +47,1.6227,57.4970,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14263,0 +48,3.8659,60.0297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3936,0 +49,1.6612,59.9520,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2388,0 +50,1.6679,62.7934,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3575,0 +51,1.6084,62.7676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4280,0 +52,1.6447,65.6468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4456,0 +53,1.6658,65.5741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5478,0 +54,1.6692,68.4605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2553,0 +55,1.6227,68.4229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4753,0 +56,3.8659,71.2872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2169,0 +57,1.6612,71.2700,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1799,0 +58,1.6679,74.1445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1912,0 +59,1.6084,72.1449,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2448,0 +60,1.6447,75.0155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2502,0 +61,1.6658,72.1677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3419,0 +62,1.6692,75.0906,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2176,0 +63,1.6227,72.1231,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3340,0 +64,3.8659,74.9418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +65,1.6612,72.0298,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +66,1.6679,74.8657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +67,1.6084,72.0127,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +68,1.6447,74.9010,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1821,0 +69,1.6658,72.0900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +70,1.6692,74.9447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +71,1.6227,72.0523,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +72,3.8659,74.9640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +73,1.6612,72.1600,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +74,1.6679,75.0105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +75,1.6084,72.0250,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +76,1.6447,74.8026,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1757,0 +77,1.6658,71.8706,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +78,1.6692,74.7464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +79,1.6227,71.9429,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1839,0 +80,3.8659,74.8115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +81,1.6612,71.9954,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,901,0 +82,1.6679,74.8683,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,621,0 +83,1.6084,71.9397,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +84,1.6447,74.8356,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +85,1.6658,72.0070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +86,1.6692,74.8085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +87,1.6227,71.9748,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +88,3.8659,74.8303,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +89,1.6612,71.8544,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +90,1.6679,74.7390,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +91,1.6084,71.8970,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,541,0 +92,1.6447,74.9188,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,534,0 +93,1.6658,72.1107,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +94,1.6692,74.9761,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1299,0 +95,1.6227,72.0064,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,647,0 +96,3.8659,74.8254,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +97,1.6612,71.9932,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +98,1.6679,74.8368,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,484,0 +99,1.6084,71.9565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,464,0 +100,1.6447,74.8695,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +101,1.6658,72.0028,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,573,0 +102,1.6692,74.8146,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,991,0 +103,1.6227,71.9841,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,504,0 +104,3.8659,74.8408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,686,0 +105,1.6612,71.9813,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,581,0 +106,1.6679,74.8251,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,563,0 +107,1.6084,71.9744,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,533,0 +108,1.6447,74.7998,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,549,0 +109,1.6658,71.9481,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +110,1.6692,74.8073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,440,0 +111,1.6227,71.8815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +112,3.8659,74.7507,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,543,0 +113,1.6612,71.9165,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,533,0 +114,1.6679,74.8178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +115,1.6084,71.9811,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,578,0 +116,1.6447,74.8525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,652,0 +117,1.6658,71.9262,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +118,1.6692,74.7857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +119,1.6227,71.8945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +120,3.8659,74.7195,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,512,0 +121,1.6612,71.8155,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,522,0 +122,1.6679,74.6005,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,590,0 +123,1.6084,71.7849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,538,0 +124,1.6447,74.5830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,591,0 +125,1.6658,71.8460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +126,1.6692,74.7150,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,447,0 +127,1.6227,71.8208,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +128,3.8659,74.8429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,511,0 +129,1.6612,71.9593,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,505,0 +130,1.6679,74.6415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,671,0 +131,1.6084,71.8962,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,694,0 +132,1.6447,74.6053,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +133,1.6658,71.7652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +134,1.6692,74.5628,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,546,0 +135,1.6227,71.7306,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +136,3.8659,74.5758,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,479,0 +137,1.6612,71.6730,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,461,0 +138,1.6679,74.5430,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +139,1.6084,71.7116,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,581,0 +140,1.6447,74.5157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,658,0 +141,1.6658,71.4568,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +142,1.6692,74.2438,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +143,1.6227,71.3856,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +144,3.8659,74.2030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,470,0 +145,1.6612,71.3905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,492,0 +146,1.6679,74.2319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +147,1.6084,71.3754,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,550,0 +148,1.6447,74.2283,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +149,1.6658,71.3360,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +150,1.6692,74.1839,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,616,0 +151,1.6227,71.3939,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +152,3.8659,74.2050,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +153,1.6612,71.3257,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,460,0 +154,1.6679,74.1804,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +155,1.6084,71.3341,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,522,0 +156,1.6447,74.0942,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,593,0 +157,1.6658,71.2134,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +158,1.6692,74.0903,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +159,1.6227,71.2753,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,553,0 +160,3.8659,76.7226,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +161,1.6612,73.9372,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +162,1.6679,74.1050,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +163,1.6084,71.2403,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +164,1.6447,74.3051,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +165,1.6658,71.4392,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +166,1.6692,74.2746,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +167,1.6227,71.4377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +168,3.8659,74.3348,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +169,1.6612,71.5173,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,457,0 +170,1.6679,74.5199,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,437,0 +171,1.6084,71.7079,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +172,1.6447,74.5943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,433,0 +173,1.6658,71.7940,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +174,1.6692,74.6221,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,426,0 +175,1.6227,71.7994,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +176,3.8659,74.6224,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,466,0 +177,1.6612,71.6077,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +178,1.6679,74.5198,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,437,0 +179,1.6084,71.7436,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +180,1.6447,74.5826,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +181,1.6658,72.0415,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +182,1.6692,74.6494,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,449,0 +183,1.6227,72.0666,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +184,3.8659,74.7008,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,456,0 +185,1.6612,72.0593,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,402,0 +186,1.6679,74.7906,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +187,1.6084,72.1317,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,428,0 +188,1.6447,74.8476,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +189,1.6658,72.2669,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +190,1.6692,74.9296,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,479,0 +191,1.6227,72.8090,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +192,3.8659,74.9857,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,438,0 +193,1.6612,72.8911,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,402,0 +194,1.6679,75.0367,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,456,0 +195,1.6084,72.8458,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +196,1.6447,75.0100,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +197,1.6658,72.8346,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,463,0 +198,1.6692,75.3896,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,522,0 +199,1.6227,72.8204,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,457,0 +200,3.8659,75.2995,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,458,0 +201,1.6612,72.8085,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +202,1.6679,75.4862,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,514,0 +203,1.6084,73.0875,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,453,0 +204,1.6447,75.5363,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,493,0 +205,1.6658,73.1605,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,503,0 +206,1.6692,75.5873,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,480,0 +207,1.6227,73.1169,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,483,0 +208,3.8659,75.8813,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +209,1.6612,70.5793,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,410,0 +210,1.6679,72.5183,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,469,0 +211,1.6084,72.5048,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,462,0 +212,1.6447,75.0169,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +213,1.6658,73.0835,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,459,0 +214,1.6692,75.2612,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +215,1.6227,73.4069,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,445,0 +216,3.8659,75.3388,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +217,1.6612,73.2293,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,434,0 +218,1.6679,75.2513,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,511,0 +219,1.6084,73.3404,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,530,0 +220,1.6447,75.1026,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,498,0 +221,1.6658,73.2818,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,586,0 +222,1.6692,74.9987,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,420,0 +223,1.6227,73.6180,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,465,0 +224,3.8659,69.3701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +225,1.6612,70.5880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,419,0 +226,1.6679,71.6967,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,474,0 +227,1.6084,73.1015,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,526,0 +228,1.6447,74.7150,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,472,0 +229,1.6658,73.6601,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,514,0 +230,1.6692,75.1611,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +231,1.6227,73.5168,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,446,0 +232,3.8659,63.6010,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +233,1.6612,64.6478,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,396,0 +234,1.6679,66.0609,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,466,0 +235,1.6084,67.3855,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,508,0 +236,1.6447,69.0772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +237,1.6658,70.1018,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,547,0 +238,1.6692,71.8460,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +239,1.6227,73.0792,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +240,3.8659,58.2216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,409,0 +241,1.6612,59.3990,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,389,0 +242,1.6679,61.2615,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +243,1.6084,62.1775,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,544,0 +244,1.6447,64.0130,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +245,1.6658,65.2967,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,500,0 +246,1.6692,67.1678,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +247,1.6227,68.4464,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +248,3.8659,54.0904,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +249,1.6612,55.2134,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +250,1.6679,56.7870,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,582,0 +251,1.6084,58.0505,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +252,1.6447,59.6338,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,633,0 +253,1.6658,60.8104,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,594,0 +254,1.6692,62.4286,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,480,0 +255,1.6227,63.5361,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,482,0 +256,3.8659,50.2584,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,417,0 +257,1.6612,51.7058,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,400,0 +258,1.6679,53.0303,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +259,1.6084,54.4914,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +260,1.6447,55.8618,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +261,1.6658,57.3250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +262,1.6692,58.6437,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,446,0 +263,1.6227,60.1465,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +264,3.8659,45.8422,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,410,0 +265,1.6612,46.9348,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,384,0 +266,1.6679,48.4749,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +267,1.6084,49.6831,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +268,1.6447,51.9535,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +269,1.6658,52.4805,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,430,0 +270,1.6692,54.8028,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,506,0 +271,1.6227,55.2944,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +272,3.8659,40.3043,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,395,0 +273,1.6612,40.8625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,388,0 +274,1.6679,43.2111,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +275,1.6084,43.8428,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +276,1.6447,45.9110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +277,1.6658,46.5370,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +278,1.6692,48.6293,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,420,0 +279,1.6227,49.2397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +280,3.8659,36.0288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +281,1.6612,36.6225,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,386,0 +282,1.6679,38.7392,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +283,1.6084,39.4187,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,438,0 +284,1.6447,41.5482,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +285,1.6658,42.2160,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +286,1.6692,44.3118,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +287,1.6227,44.9621,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +288,3.8659,30.8738,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +289,1.6612,31.4784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +290,1.6679,34.8002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +291,1.6084,34.7007,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +292,1.6447,37.5819,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,471,0 +293,1.6658,37.5280,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,446,0 +294,1.6692,40.4315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +295,1.6227,40.3465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +296,3.8659,27.3783,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,403,0 +297,1.6612,27.1874,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +298,1.6679,29.9022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +299,1.6084,29.8218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +300,1.6447,32.6694,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,466,0 +301,1.6658,32.5687,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +302,1.6692,35.3451,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +303,1.6227,35.2602,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +304,3.8659,22.4112,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,391,0 +305,1.6612,22.2053,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +306,1.6679,25.0719,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +307,1.6084,24.9982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,460,0 +308,1.6447,27.8185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,499,0 +309,1.6658,27.8414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,508,0 +310,1.6692,30.5847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,464,0 +311,1.6227,30.5257,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +312,3.8659,18.8882,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,413,0 +313,1.6612,18.8774,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,385,0 +314,1.6679,21.7112,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +315,1.6084,21.6763,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +316,1.6447,24.4974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,495,0 +317,1.6658,24.4692,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,503,0 +318,1.6692,27.3063,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,465,0 +319,1.6227,27.2676,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +320,3.8659,13.7843,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,430,0 +321,1.6612,13.5856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +322,1.6679,16.3322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +323,1.6084,16.3271,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +324,1.6447,19.0705,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,457,0 +325,1.6658,19.0113,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,469,0 +326,1.6692,21.7150,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,497,0 +327,1.6227,21.6724,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +328,3.8659,10.5334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,390,0 +329,1.6612,10.3210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +330,1.6679,13.0995,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,440,0 +331,1.6084,12.9862,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,438,0 +332,1.6447,15.8125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,434,0 +333,1.6658,15.7468,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,471,0 +334,1.6692,19.6634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +335,1.6227,19.6792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +336,3.8659,4.9500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,384,0 +337,1.6612,4.7964,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +338,1.6679,7.6198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,488,0 +339,1.6084,7.5213,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,468,0 +340,1.6447,10.3066,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,561,0 +341,1.6658,10.2961,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,527,0 +342,1.6692,13.1222,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,433,0 +343,1.6227,13.1438,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,457,0 +344,3.8659,3.6311,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +345,1.6612,3.6584,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +346,1.6679,6.1115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +347,1.6084,6.2203,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +348,1.6447,8.8719,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +349,1.6658,8.8846,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +350,1.6692,11.5032,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +351,1.6227,11.5428,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,421,0 +352,3.8659,3.6242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +353,1.6612,3.5575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +354,1.6679,6.0940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,434,0 +355,1.6084,6.0859,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +356,1.6447,8.7617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +357,1.6658,8.7143,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +358,1.6692,11.5124,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +359,1.6227,11.4530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +360,3.8659,3.5689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +361,1.6612,3.4398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +362,1.6679,6.0767,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +363,1.6084,6.0135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +364,1.6447,8.7847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +365,1.6658,8.6990,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +366,1.6692,11.4096,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,482,0 +367,1.6227,11.3555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +368,3.8659,3.5521,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +369,1.6612,3.4221,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +370,1.6679,5.9831,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +371,1.6084,5.9342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +372,1.6447,8.6661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +373,1.6658,8.5513,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +374,1.6692,11.2618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +375,1.6227,11.1964,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +376,3.8659,3.6724,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +377,1.6612,3.4415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +378,1.6679,6.1886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +379,1.6084,6.1141,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +380,1.6447,8.8170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +381,1.6658,8.7100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +382,1.6692,11.4896,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,490,0 +383,1.6227,11.4575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +384,3.8659,3.6567,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +385,1.6612,3.4287,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +386,1.6679,6.0899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +387,1.6084,6.0085,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +388,1.6447,8.7656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,439,0 +389,1.6658,8.6808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,438,0 +390,1.6692,11.4611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +391,1.6227,11.3982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +392,3.8659,3.6424,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +393,1.6612,3.4678,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +394,1.6679,6.0190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,428,0 +395,1.6084,5.9938,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,451,0 +396,1.6447,8.7172,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +397,1.6658,8.6043,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +398,1.6692,11.3853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +399,1.6227,11.3280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +400,3.8659,3.5873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +401,1.6612,3.4405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +402,1.6679,6.0142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +403,1.6084,5.9992,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +404,1.6447,8.6635,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +405,1.6658,8.5703,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +406,1.6692,11.2566,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +407,1.6227,11.2111,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +408,3.8659,3.6360,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +409,1.6612,3.4625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +410,1.6679,5.9350,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +411,1.6084,5.8885,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +412,1.6447,8.5811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +413,1.6658,8.3983,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +414,1.6692,11.1582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +415,1.6227,11.0878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +416,3.8659,3.8102,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +417,1.6612,3.5172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +418,1.6679,6.1221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +419,1.6084,6.0648,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +420,1.6447,8.8360,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +421,1.6658,8.7337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +422,1.6692,11.5463,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,509,0 +423,1.6227,11.5235,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +424,3.8659,3.6213,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +425,1.6612,3.4738,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +426,1.6679,6.0820,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +427,1.6084,5.9722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,450,0 +428,1.6447,8.6615,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,499,0 +429,1.6658,8.5851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,482,0 +430,1.6692,11.4315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +431,1.6227,11.4011,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,457,0 +432,3.8659,3.7676,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +433,1.6612,3.5365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +434,1.6679,6.2038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +435,1.6084,6.0697,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +436,1.6447,8.7004,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +437,1.6658,8.6624,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +438,1.6692,11.4256,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,516,0 +439,1.6227,11.3742,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +440,3.8659,3.5538,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +441,1.6612,3.4260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +442,1.6679,5.9017,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +443,1.6084,5.8602,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +444,1.6447,8.4426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +445,1.6658,8.3813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +446,1.6692,11.1510,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +447,1.6227,11.0510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +448,3.8659,4.1007,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +449,1.6612,3.5711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +450,1.6679,5.9979,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +451,1.6084,5.8730,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +452,1.6447,8.3888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +453,1.6658,8.2319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +454,1.6692,10.8375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +455,1.6227,10.7278,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +456,3.8659,3.7161,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +457,1.6612,3.4657,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +458,1.6679,5.9985,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +459,1.6084,5.8375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +460,1.6447,10.8265,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +461,1.6658,10.6779,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +462,1.6692,11.8682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +463,1.6227,13.2370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +464,3.8659,4.0879,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +465,1.6612,3.7170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +466,1.6679,5.9383,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +467,1.6084,5.9069,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +468,1.6447,8.4235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +469,1.6658,8.2570,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +470,1.6692,10.7957,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +471,1.6227,10.9120,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +472,3.8659,3.7946,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +473,1.6612,3.5602,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +474,1.6679,5.8737,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +475,1.6084,5.9175,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +476,1.6447,8.4226,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +477,1.6658,8.5347,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +478,1.6692,11.2334,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,454,0 +479,1.6227,11.3181,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +480,3.8659,3.6485,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +481,1.6612,3.5436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +482,1.6679,6.2056,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +483,1.6084,6.1807,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +484,1.6447,8.9177,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,458,0 +485,1.6658,8.9125,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +486,1.6692,11.7722,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,462,0 +487,1.6227,11.9131,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,446,0 +488,3.8659,4.1150,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +489,1.6612,3.6906,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +490,1.6679,5.7646,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +491,1.6084,5.9531,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +492,1.6447,8.2440,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +493,1.6658,8.4113,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +494,1.6692,10.8898,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,491,0 +495,1.6227,10.9653,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,433,0 +496,3.8659,3.9550,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +497,1.6612,3.7217,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +498,1.6679,5.5690,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +499,1.6084,5.7143,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +500,1.6447,7.7177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +501,1.6658,7.8168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +502,1.6692,14.0745,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,465,0 +503,1.6227,13.7985,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +504,3.8659,3.8296,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +505,1.6612,3.4787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +506,1.6679,5.5617,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +507,1.6084,5.8379,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +508,1.6447,8.0302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +509,1.6658,8.2980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +510,1.6692,10.5424,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +511,1.6227,10.6961,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +512,3.8659,4.1629,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +513,1.6612,3.7450,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +514,1.6679,5.1090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +515,1.6084,4.8544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +516,1.6447,7.3530,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,489,0 +517,1.6658,7.3498,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,469,0 +518,1.6692,10.0180,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +519,1.6227,9.9725,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +520,3.8659,3.9667,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +521,1.6612,3.7075,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +522,1.6679,5.6867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +523,1.6084,5.7981,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +524,1.6447,7.9327,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +525,1.6658,8.0485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +526,1.6692,10.1846,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,433,0 +527,1.6227,10.3834,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +528,3.8659,4.3474,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +529,1.6612,3.9603,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +530,1.6679,5.8253,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +531,1.6084,5.5823,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +532,1.6447,7.5690,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +533,1.6658,7.3650,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +534,1.6692,9.7754,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,449,0 +535,1.6227,9.8282,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +536,3.8659,3.8078,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +537,1.6612,3.6087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +538,1.6679,6.0950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +539,1.6084,6.0867,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +540,1.6447,8.6700,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +541,1.6658,8.7058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +542,1.6692,11.3656,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,437,0 +543,1.6227,11.3077,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +544,3.8659,3.6883,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +545,1.6612,3.6641,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +546,1.6679,5.9814,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +547,1.6084,6.0915,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +548,1.6447,8.6267,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +549,1.6658,8.7267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +550,1.6692,11.2672,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,472,0 +551,1.6227,11.3602,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +552,3.8659,3.5884,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +553,1.6612,3.4401,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +554,1.6679,5.8746,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +555,1.6084,5.8517,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +556,1.6447,8.3663,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +557,1.6658,8.3346,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +558,1.6692,10.9954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +559,1.6227,10.9310,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +560,3.8659,3.6140,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +561,1.6612,3.4650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +562,1.6679,5.9813,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +563,1.6084,6.0211,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +564,1.6447,8.6292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +565,1.6658,8.5909,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +566,1.6692,11.2693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +567,1.6227,11.2095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +568,3.8659,3.5466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +569,1.6612,3.5015,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +570,1.6679,5.9400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +571,1.6084,5.9633,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +572,1.6447,8.5422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +573,1.6658,8.5356,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +574,1.6692,11.2135,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +575,1.6227,11.1699,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +576,3.8659,3.5201,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +577,1.6612,3.4457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +578,1.6679,5.9090,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +579,1.6084,5.8800,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +580,1.6447,8.4860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +581,1.6658,8.3928,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +582,1.6692,10.9898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,431,0 +583,1.6227,10.9485,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +584,3.8659,3.5847,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +585,1.6612,3.4541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +586,1.6679,5.9592,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +587,1.6084,5.9077,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +588,1.6447,8.8427,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +589,1.6658,8.6355,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +590,1.6692,11.2133,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,433,0 +591,1.6227,11.1325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +592,3.8659,4.0856,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +593,1.6612,3.8948,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +594,1.6679,4.1048,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +595,1.6084,5.0468,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +596,1.6447,5.9467,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +597,1.6658,6.9715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,428,0 +598,1.6692,8.3180,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,441,0 +599,1.6227,9.4847,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +600,3.8659,3.6000,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +601,1.6612,3.4310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +602,1.6679,5.8843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +603,1.6084,5.8585,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +604,1.6447,8.4524,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,430,0 +605,1.6658,8.3857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,440,0 +606,1.6692,11.0221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,462,0 +607,1.6227,10.9577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +608,3.8659,3.7525,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +609,1.6612,3.4875,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +610,1.6679,5.9904,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +611,1.6084,5.9295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +612,1.6447,8.5365,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,473,0 +613,1.6658,8.4548,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +614,1.6692,11.1896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +615,1.6227,11.1147,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +616,3.8659,3.5957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +617,1.6612,3.4628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +618,1.6679,5.9818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +619,1.6084,5.9129,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +620,1.6447,8.5705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,420,0 +621,1.6658,8.4663,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +622,1.6692,11.2140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +623,1.6227,11.1461,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +624,3.8659,3.6155,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +625,1.6612,3.5121,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +626,1.6679,5.9236,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +627,1.6084,5.8454,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +628,1.6447,8.3957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +629,1.6658,8.3342,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +630,1.6692,10.9522,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +631,1.6227,10.8726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +632,3.8659,4.4064,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +633,1.6612,3.7215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +634,1.6679,7.2502,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +635,1.6084,7.1808,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +636,1.6447,8.0128,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +637,1.6658,8.0426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +638,1.6692,11.0505,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +639,1.6227,10.3290,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +640,3.8659,3.8368,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +641,1.6612,3.4634,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +642,1.6679,5.9492,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +643,1.6084,5.8530,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +644,1.6447,8.6670,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +645,1.6658,8.4920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +646,1.6692,12.2904,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +647,1.6227,12.1943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +648,3.8659,3.7995,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +649,1.6612,3.4716,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +650,1.6679,6.0993,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +651,1.6084,5.9752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +652,1.6447,8.6942,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +653,1.6658,8.5994,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +654,1.6692,11.4095,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +655,1.6227,11.3941,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +656,3.8659,3.7665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +657,1.6612,3.5406,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +658,1.6679,6.0482,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +659,1.6084,6.0515,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +660,1.6447,8.7102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,444,0 +661,1.6658,8.6899,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,445,0 +662,1.6692,11.4585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,428,0 +663,1.6227,11.4330,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +664,3.8659,3.6435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +665,1.6612,3.4645,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +666,1.6679,6.0326,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +667,1.6084,5.9852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +668,1.6447,8.8266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,445,0 +669,1.6658,8.7517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,456,0 +670,1.6692,11.5348,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +671,1.6227,11.5322,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +672,3.8659,3.7780,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +673,1.6612,3.4758,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +674,1.6679,6.0295,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +675,1.6084,5.9802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +676,1.6447,8.8088,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,435,0 +677,1.6658,8.6805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,452,0 +678,1.6692,11.5516,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +679,1.6227,11.4448,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +680,3.8659,4.0678,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +681,1.6612,3.4619,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +682,1.6679,6.0980,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +683,1.6084,5.9628,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +684,1.6447,8.6592,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +685,1.6658,8.5151,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,449,0 +686,1.6692,11.3343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +687,1.6227,11.2910,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +688,3.8659,3.9304,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +689,1.6612,3.4905,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +690,1.6679,6.0721,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +691,1.6084,5.9491,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +692,1.6447,8.6898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +693,1.6658,8.4659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,483,0 +694,1.6692,11.2288,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +695,1.6227,11.1775,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +696,3.8659,3.7555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +697,1.6612,3.4616,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +698,1.6679,6.0447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +699,1.6084,6.0040,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +700,1.6447,8.6990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +701,1.6658,8.6222,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,420,0 +702,1.6692,11.4082,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +703,1.6227,11.4144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +704,3.8659,3.6323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +705,1.6612,3.4287,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +706,1.6679,6.0133,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +707,1.6084,5.9527,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +708,1.6447,8.6643,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +709,1.6658,8.5272,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +710,1.6692,11.3108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +711,1.6227,11.3041,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +712,3.8659,3.6075,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +713,1.6612,3.4570,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +714,1.6679,6.1301,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +715,1.6084,6.0307,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +716,1.6447,8.7213,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +717,1.6658,8.5800,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +718,1.6692,11.3442,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +719,1.6227,11.2603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +720,3.8659,3.7928,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +721,1.6612,3.4676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +722,1.6679,5.9564,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +723,1.6084,5.9135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +724,1.6447,8.6423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +725,1.6658,8.4774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,427,0 +726,1.6692,11.2513,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +727,1.6227,11.1517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +728,3.8659,3.6502,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +729,1.6612,3.3921,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +730,1.6679,5.9850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +731,1.6084,5.9312,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +732,1.6447,8.6150,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +733,1.6658,8.5368,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +734,1.6692,11.2383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +735,1.6227,11.1617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +736,3.8659,3.7199,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +737,1.6612,3.4459,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +738,1.6679,6.0365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +739,1.6084,6.0203,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +740,1.6447,8.7005,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +741,1.6658,8.6800,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +742,1.6692,11.4523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +743,1.6227,11.4116,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +744,3.8659,3.8848,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +745,1.6612,3.6221,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +746,1.6679,6.3434,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +747,1.6084,6.2771,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +748,1.6447,9.0677,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +749,1.6658,9.0228,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +750,1.6692,12.2423,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +751,1.6227,12.1707,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +752,3.8659,3.9425,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +753,1.6612,3.7053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +754,1.6679,5.9425,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +755,1.6084,5.9650,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +756,1.6447,8.1297,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,436,0 +757,1.6658,8.2447,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,438,0 +758,1.6692,11.9410,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +759,1.6227,11.7620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +760,3.8659,4.9658,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +761,1.6612,4.9077,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +762,1.6679,7.4839,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +763,1.6084,7.4566,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +764,1.6447,10.0244,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +765,1.6658,9.9983,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,442,0 +766,1.6692,12.6122,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +767,1.6227,12.5445,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +768,3.8659,3.7523,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +769,1.6612,3.4473,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +770,1.6679,5.9417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +771,1.6084,5.8935,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +772,1.6447,8.5183,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +773,1.6658,8.4105,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +774,1.6692,11.1544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +775,1.6227,11.1208,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +776,3.8659,3.5768,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +777,1.6612,3.4861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +778,1.6679,5.8933,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +779,1.6084,5.9085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +780,1.6447,8.4666,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,443,0 +781,1.6658,8.4295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,461,0 +782,1.6692,11.0786,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +783,1.6227,11.0383,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +784,3.8659,3.5624,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +785,1.6612,3.4414,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +786,1.6679,5.8905,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +787,1.6084,5.8519,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +788,1.6447,8.4445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +789,1.6658,8.3901,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +790,1.6692,11.0603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +791,1.6227,10.9799,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +792,3.8659,3.6325,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +793,1.6612,3.4136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +794,1.6679,5.9331,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +795,1.6084,5.8980,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +796,1.6447,8.5247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +797,1.6658,8.4821,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +798,1.6692,11.1818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +799,1.6227,11.1365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +800,3.8659,3.6516,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +801,1.6612,3.4802,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +802,1.6679,5.9783,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +803,1.6084,5.9510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +804,1.6447,8.6077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +805,1.6658,8.5760,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +806,1.6692,11.3248,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +807,1.6227,11.2817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +808,3.8659,3.7620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +809,1.6612,3.5420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +810,1.6679,6.0303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +811,1.6084,6.0354,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +812,1.6447,8.6013,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +813,1.6658,8.5824,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +814,1.6692,11.2669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +815,1.6227,11.1968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +816,3.8659,3.5801,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +817,1.6612,3.4568,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +818,1.6679,5.9233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +819,1.6084,5.9296,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +820,1.6447,8.5482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +821,1.6658,8.5063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,432,0 +822,1.6692,11.2873,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +823,1.6227,11.1316,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +824,3.8659,3.7419,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +825,1.6612,3.5273,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +826,1.6679,5.9005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +827,1.6084,5.8717,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +828,1.6447,8.3937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +829,1.6658,8.3089,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +830,1.6692,11.3883,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +831,1.6227,11.1787,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +832,3.8659,4.2524,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +833,1.6612,3.5988,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +834,1.6679,5.9035,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +835,1.6084,5.8721,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +836,1.6447,8.4122,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +837,1.6658,8.3863,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +838,1.6692,11.0709,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +839,1.6227,10.9325,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +840,3.8659,4.3757,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +841,1.6612,3.6692,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +842,1.6679,5.2759,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +843,1.6084,5.5453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +844,1.6447,7.6762,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +845,1.6658,7.9742,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +846,1.6692,10.2448,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +847,1.6227,10.4309,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +848,3.8659,3.8551,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +849,1.6612,3.4574,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +850,1.6679,5.9481,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +851,1.6084,5.8935,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +852,1.6447,8.5512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +853,1.6658,8.4462,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +854,1.6692,11.1576,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +855,1.6227,11.0732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +856,3.8659,3.6907,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +857,1.6612,3.4693,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +858,1.6679,5.9016,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +859,1.6084,5.8921,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +860,1.6447,8.4757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +861,1.6658,8.4223,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +862,1.6692,11.1197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +863,1.6227,11.0671,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +864,3.8659,3.5827,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +865,1.6612,3.4589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +866,1.6679,5.9188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +867,1.6084,5.8946,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +868,1.6447,8.5489,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,425,0 +869,1.6658,8.4386,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +870,1.6692,11.1102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +871,1.6227,11.0611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +872,3.8659,3.6777,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +873,1.6612,3.4955,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +874,1.6679,5.9342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +875,1.6084,5.8900,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +876,1.6447,8.4582,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +877,1.6658,8.3654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +878,1.6692,11.1165,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +879,1.6227,11.0159,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +880,3.8659,3.7139,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +881,1.6612,3.4702,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +882,1.6679,5.9153,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +883,1.6084,5.9394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +884,1.6447,8.5145,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +885,1.6658,8.4722,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +886,1.6692,11.1858,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +887,1.6227,11.1268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +888,3.8659,3.5985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +889,1.6612,3.4372,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +890,1.6679,5.9426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +891,1.6084,5.9056,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +892,1.6447,8.5219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +893,1.6658,8.4345,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +894,1.6692,11.1554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +895,1.6227,11.1087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +896,3.8659,3.5931,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +897,1.6612,3.4459,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +898,1.6679,5.9219,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +899,1.6084,5.8435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +900,1.6447,8.4510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +901,1.6658,8.3721,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +902,1.6692,11.1340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +903,1.6227,11.0643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +904,3.8659,3.7390,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +905,1.6612,3.4717,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +906,1.6679,6.0502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +907,1.6084,5.8913,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +908,1.6447,8.5077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +909,1.6658,8.4694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +910,1.6692,11.1866,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +911,1.6227,11.1080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +912,3.8659,3.7977,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +913,1.6612,3.4797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +914,1.6679,6.0734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +915,1.6084,5.9603,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +916,1.6447,8.7573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +917,1.6658,8.6875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +918,1.6692,11.4720,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +919,1.6227,11.4572,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +920,3.8659,3.6241,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +921,1.6612,3.4883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +922,1.6679,6.0168,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +923,1.6084,5.9548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +924,1.6447,8.6505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +925,1.6658,8.5567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +926,1.6692,11.3334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +927,1.6227,11.3400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +928,3.8659,3.5513,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +929,1.6612,3.4667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +930,1.6679,5.9267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +931,1.6084,5.8911,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +932,1.6447,8.5038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +933,1.6658,8.4237,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +934,1.6692,11.1423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +935,1.6227,11.0826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +936,3.8659,3.5815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +937,1.6612,3.5227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +938,1.6679,5.9278,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +939,1.6084,5.9547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +940,1.6447,8.4959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +941,1.6658,8.4848,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +942,1.6692,11.1353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +943,1.6227,11.0917,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +944,3.8659,3.6093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +945,1.6612,3.5077,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +946,1.6679,5.8745,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +947,1.6084,5.8620,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +948,1.6447,8.3648,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +949,1.6658,8.3197,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +950,1.6692,10.8932,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +951,1.6227,10.8170,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +952,3.8659,3.8058,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +953,1.6612,3.4620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +954,1.6679,6.2517,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +955,1.6084,6.0904,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +956,1.6447,8.6867,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,429,0 +957,1.6658,8.5425,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +958,1.6692,11.2713,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +959,1.6227,11.1590,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +960,3.8659,3.6576,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +961,1.6612,3.4447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +962,1.6679,5.8525,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +963,1.6084,5.8486,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +964,1.6447,8.2988,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +965,1.6658,8.1467,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +966,1.6692,10.7985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +967,1.6227,10.6781,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +968,3.8659,3.7601,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +969,1.6612,3.4037,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +970,1.6679,6.0594,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +971,1.6084,5.9672,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +972,1.6447,8.6788,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +973,1.6658,8.6062,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +974,1.6692,11.4404,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +975,1.6227,11.2607,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +976,3.8659,3.7171,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +977,1.6612,3.5407,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +978,1.6679,6.1364,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +979,1.6084,6.1060,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +980,1.6447,8.8665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +981,1.6658,8.8451,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +982,1.6692,11.6808,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +983,1.6227,11.6295,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +984,3.8659,3.7692,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +985,1.6612,3.5250,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +986,1.6679,6.3958,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +987,1.6084,6.2918,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +988,1.6447,9.0220,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +989,1.6658,8.9758,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +990,1.6692,11.9402,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +991,1.6227,12.0270,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +992,3.8659,4.4469,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +993,1.6612,3.8022,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +994,1.6679,5.8981,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +995,1.6084,5.6950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +996,1.6447,7.8695,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +997,1.6658,7.6147,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +998,1.6692,9.7999,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +999,1.6227,9.9160,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1000,3.8659,3.9286,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1001,1.6612,3.6926,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1002,1.6679,5.6738,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1003,1.6084,5.7538,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1004,1.6447,7.8786,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1005,1.6658,7.9543,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1006,1.6692,10.0614,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1007,1.6227,10.0365,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1008,3.8659,4.0200,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1009,1.6612,3.6154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1010,1.6679,5.5433,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1011,1.6084,5.5906,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1012,1.6447,8.2011,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,423,0 +1013,1.6658,8.0806,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1014,1.6692,10.2407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1015,1.6227,10.1203,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1016,3.8659,3.8341,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1017,1.6612,3.4358,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1018,1.6679,5.5156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1019,1.6084,5.6328,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1020,1.6447,7.9997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,422,0 +1021,1.6658,8.1525,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1022,1.6692,10.6623,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1023,1.6227,10.7515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1024,3.8659,3.5544,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1025,1.6612,3.4151,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1026,1.6679,5.9289,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1027,1.6084,5.8969,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1028,1.6447,8.4743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1029,1.6658,8.4286,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1030,1.6692,11.0435,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1031,1.6227,11.0350,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1032,3.8659,3.6326,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1033,1.6612,3.5100,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1034,1.6679,5.8780,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1035,1.6084,5.9001,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1036,1.6447,8.4070,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1037,1.6658,8.4504,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1038,1.6692,11.1064,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1039,1.6227,11.1004,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1040,3.8659,3.6539,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1041,1.6612,3.4258,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1042,1.6679,5.9873,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1043,1.6084,5.9261,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1044,1.6447,8.6080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,424,0 +1045,1.6658,8.5687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1046,1.6692,11.3022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1047,1.6227,11.2617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1048,3.8659,3.5678,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1049,1.6612,3.4789,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1050,1.6679,5.9950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1051,1.6084,5.9200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1052,1.6447,8.4721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1053,1.6658,8.4659,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1054,1.6692,11.1204,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1055,1.6227,11.0409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1056,3.8659,3.7128,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1057,1.6612,3.4824,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1058,1.6679,6.0799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1059,1.6084,6.0047,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1060,1.6447,8.6013,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1061,1.6658,8.5365,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1062,1.6692,11.2152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1063,1.6227,11.1800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1064,3.8659,3.6643,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1065,1.6612,3.5140,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1066,1.6679,5.8697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1067,1.6084,5.8819,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1068,1.6447,8.3789,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1069,1.6658,8.5971,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1070,1.6692,11.0897,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1071,1.6227,10.9396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1072,3.8659,4.0228,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1073,1.6612,3.5497,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1074,1.6679,5.7021,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1075,1.6084,5.6322,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1076,1.6447,7.6820,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1077,1.6658,7.5098,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1078,1.6692,9.7812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1079,1.6227,9.7683,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1080,3.8659,4.0410,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1081,1.6612,3.6217,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1082,1.6679,5.6139,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1083,1.6084,5.2424,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1084,1.6447,7.5392,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1085,1.6658,7.5290,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1086,1.6692,10.0098,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1087,1.6227,9.9590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1088,3.8659,3.7199,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1089,1.6612,3.4951,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1090,1.6679,5.9381,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1091,1.6084,5.8733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1092,1.6447,8.4200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1093,1.6658,8.4450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1094,1.6692,11.1172,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1095,1.6227,11.0721,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1096,3.8659,3.7880,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1097,1.6612,3.5417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1098,1.6679,6.1737,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1099,1.6084,6.0468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1100,1.6447,8.6705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1101,1.6658,8.6385,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1102,1.6692,11.4478,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1103,1.6227,11.4108,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1104,3.8659,3.7692,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1105,1.6612,3.4470,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1106,1.6679,6.0337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1107,1.6084,6.0010,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1108,1.6447,8.7098,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1109,1.6658,8.6275,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1110,1.6692,11.5013,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1111,1.6227,11.5100,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1112,3.8659,3.5723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1113,1.6612,3.4214,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1114,1.6679,5.9719,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1115,1.6084,5.9351,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1116,1.6447,8.6407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1117,1.6658,8.5444,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1118,1.6692,11.3691,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1119,1.6227,11.3477,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1120,3.8659,3.7070,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1121,1.6612,3.5311,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1122,1.6679,6.0019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1123,1.6084,5.9869,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1124,1.6447,8.6844,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1125,1.6658,8.6003,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1126,1.6692,11.4404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1127,1.6227,11.4217,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1128,3.8659,3.5485,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1129,1.6612,3.4567,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1130,1.6679,5.9523,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1131,1.6084,5.9380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1132,1.6447,8.5816,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1133,1.6658,8.5186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1134,1.6692,11.2566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1135,1.6227,11.2403,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1136,3.8659,3.6361,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1137,1.6612,3.4636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1138,1.6679,6.0332,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1139,1.6084,6.0305,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1140,1.6447,8.6974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1141,1.6658,8.6979,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1142,1.6692,11.4893,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1143,1.6227,11.4936,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1144,3.8659,3.5394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1145,1.6612,3.4933,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1146,1.6679,6.0834,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1147,1.6084,5.9762,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1148,1.6447,8.6430,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1149,1.6658,8.5682,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1150,1.6692,11.2383,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1151,1.6227,11.1680,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1152,3.8659,3.7273,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1153,1.6612,3.4420,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1154,1.6679,5.9084,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1155,1.6084,5.8894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1156,1.6447,8.5575,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1157,1.6658,8.4763,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1158,1.6692,11.0523,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1159,1.6227,10.9471,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1160,3.8659,3.8395,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1161,1.6612,3.6338,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1162,1.6679,5.9759,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1163,1.6084,5.9610,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1164,1.6447,8.7073,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1165,1.6658,8.6332,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1166,1.6692,11.4011,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1167,1.6227,11.3920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1168,3.8659,3.5597,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1169,1.6612,3.4630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1170,1.6679,6.0675,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1171,1.6084,6.0465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1172,1.6447,8.9126,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1173,1.6658,8.8260,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1174,1.6692,11.6675,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1175,1.6227,11.7174,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1176,3.8659,3.8373,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1177,1.6612,3.5730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1178,1.6679,6.0635,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1179,1.6084,6.1393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1180,1.6447,8.7605,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1181,1.6658,8.7838,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1182,1.6692,11.5375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1183,1.6227,11.5298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1184,3.8659,3.6327,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1185,1.6612,3.5501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1186,1.6679,6.2693,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1187,1.6084,6.2478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1188,1.6447,8.9985,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1189,1.6658,8.9145,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1190,1.6692,11.7592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1191,1.6227,11.8000,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1192,3.8659,3.5957,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1193,1.6612,3.5482,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1194,1.6679,6.0920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1195,1.6084,6.1090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1196,1.6447,8.6822,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1197,1.6658,8.6877,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1198,1.6692,11.4335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1199,1.6227,11.4448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1200,3.8659,3.5154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1201,1.6612,3.4288,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1202,1.6679,5.9241,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1203,1.6084,5.9082,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1204,1.6447,8.4395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1205,1.6658,8.3945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1206,1.6692,11.0018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1207,1.6227,10.9132,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1208,3.8659,3.6300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1209,1.6612,3.5112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1210,1.6679,5.8694,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1211,1.6084,5.8806,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1212,1.6447,8.5188,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1213,1.6658,8.4174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1214,1.6692,11.0052,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1215,1.6227,10.8734,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1216,3.8659,4.0941,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1217,1.6612,3.5322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1218,1.6679,5.7199,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1219,1.6084,5.5969,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1220,1.6447,7.7235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1221,1.6658,7.7577,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1222,1.6692,10.3792,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1223,1.6227,10.2707,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1224,3.8659,3.6370,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1225,1.6612,3.4901,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1226,1.6679,5.8793,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1227,1.6084,5.8762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1228,1.6447,8.3250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1229,1.6658,8.2500,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1230,1.6692,10.8488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1231,1.6227,10.7339,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1232,3.8659,3.6708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1233,1.6612,3.4531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1234,1.6679,5.9309,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1235,1.6084,5.9295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1236,1.6447,8.5318,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1237,1.6658,8.5098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1238,1.6692,11.1909,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1239,1.6227,11.1556,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1240,3.8659,3.5854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1241,1.6612,3.4690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1242,1.6679,5.9206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1243,1.6084,5.8881,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1244,1.6447,8.5130,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1245,1.6658,8.4422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1246,1.6692,11.1193,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1247,1.6227,11.0782,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1248,3.8659,3.6073,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1249,1.6612,3.4572,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1250,1.6679,5.9428,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1251,1.6084,5.8838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1252,1.6447,8.4798,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1253,1.6658,8.4054,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1254,1.6692,11.1245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1255,1.6227,11.0730,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1256,3.8659,3.7963,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1257,1.6612,3.5056,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1258,1.6679,5.9415,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1259,1.6084,5.8787,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1260,1.6447,8.8500,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1261,1.6658,8.6520,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1262,1.6692,11.0689,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1263,1.6227,10.9044,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1264,3.8659,4.3632,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1265,1.6612,3.8975,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1266,1.6679,6.3893,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1267,1.6084,6.2242,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1268,1.6447,7.7522,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1269,1.6658,7.5012,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1270,1.6692,9.6799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1271,1.6227,9.8571,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1272,3.8659,4.1295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1273,1.6612,3.6082,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1274,1.6679,5.5005,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1275,1.6084,5.4921,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1276,1.6447,7.8025,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1277,1.6658,7.7897,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1278,1.6692,10.1032,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1279,1.6227,8.7466,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1280,3.8659,3.7335,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1281,1.6612,3.5018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1282,1.6679,5.8634,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1283,1.6084,5.8528,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1284,1.6447,8.5551,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1285,1.6658,8.4053,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1286,1.6692,11.1162,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1287,1.6227,11.0246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1288,3.8659,3.8141,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1289,1.6612,3.4754,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1290,1.6679,5.9938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1291,1.6084,5.9689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1292,1.6447,8.5931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1293,1.6658,8.5567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1294,1.6692,11.2743,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1295,1.6227,11.2289,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1296,3.8659,3.6453,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1297,1.6612,3.4680,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1298,1.6679,5.8842,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1299,1.6084,5.9445,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1300,1.6447,8.4924,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1301,1.6658,8.4981,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1302,1.6692,11.1658,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1303,1.6227,11.1148,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1304,3.8659,3.7052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1305,1.6612,3.4418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1306,1.6679,6.0930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1307,1.6084,5.9911,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1308,1.6447,8.7110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1309,1.6658,8.6225,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1310,1.6692,11.4837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1311,1.6227,11.4718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1312,3.8659,3.6158,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1313,1.6612,3.4520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1314,1.6679,5.9902,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1315,1.6084,5.9925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1316,1.6447,8.6642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1317,1.6658,8.6521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1318,1.6692,11.4463,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1319,1.6227,11.4422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1320,3.8659,3.5927,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1321,1.6612,3.4534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1322,1.6679,5.9820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1323,1.6084,5.9724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1324,1.6447,8.6206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1325,1.6658,8.5605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1326,1.6692,11.2970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1327,1.6227,11.2647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1328,3.8659,3.5984,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1329,1.6612,3.4635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1330,1.6679,5.9578,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1331,1.6084,5.9006,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1332,1.6447,8.4926,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1333,1.6658,8.4098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1334,1.6692,11.0970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1335,1.6227,11.0045,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1336,3.8659,3.5841,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1337,1.6612,3.4217,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1338,1.6679,5.9075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1339,1.6084,5.8867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1340,1.6447,8.4770,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1341,1.6658,8.4379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1342,1.6692,11.0969,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1343,1.6227,11.0313,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1344,3.8659,3.6030,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1345,1.6612,3.4972,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1346,1.6679,5.8962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1347,1.6084,5.8535,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1348,1.6447,8.3882,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1349,1.6658,8.3287,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1350,1.6692,11.3783,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1351,1.6227,11.1799,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1352,3.8659,5.1098,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1353,1.6612,4.2540,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1354,1.6679,3.7504,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1355,1.6084,5.0315,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1356,1.6447,5.2344,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1357,1.6658,7.2773,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1358,1.6692,7.4787,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1359,1.6227,9.4982,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1360,3.8659,3.6353,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1361,1.6612,3.4730,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1362,1.6679,5.8923,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1363,1.6084,5.8458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1364,1.6447,8.3396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1365,1.6658,8.3021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1366,1.6692,10.9347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1367,1.6227,10.8295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1368,3.8659,3.5914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1369,1.6612,3.4875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1370,1.6679,5.8968,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1371,1.6084,5.9493,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1372,1.6447,8.5401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1373,1.6658,8.5249,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1374,1.6692,11.2575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1375,1.6227,11.2110,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1376,3.8659,3.6939,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1377,1.6612,3.4693,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1378,1.6679,5.9466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1379,1.6084,5.9445,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1380,1.6447,8.5370,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1381,1.6658,8.5012,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1382,1.6692,11.2043,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1383,1.6227,11.1661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1384,3.8659,3.6277,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1385,1.6612,3.4646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1386,1.6679,5.9210,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1387,1.6084,5.8486,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1388,1.6447,8.5165,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1389,1.6658,8.3575,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1390,1.6692,11.1215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1391,1.6227,11.0618,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1392,3.8659,3.7527,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1393,1.6612,3.4449,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1394,1.6679,6.0165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1395,1.6084,5.9810,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1396,1.6447,8.6717,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1397,1.6658,8.6156,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1398,1.6692,11.3610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1399,1.6227,11.3314,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1400,3.8659,3.6760,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1401,1.6612,3.4939,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1402,1.6679,6.0302,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1403,1.6084,5.9919,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1404,1.6447,8.7587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1405,1.6658,8.6713,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1406,1.6692,11.3340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1407,1.6227,11.3168,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1408,3.8659,3.5435,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1409,1.6612,3.4352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1410,1.6679,5.8997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1411,1.6084,5.8666,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1412,1.6447,8.4375,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1413,1.6658,8.4283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1414,1.6692,11.0434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1415,1.6227,10.9105,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1416,3.8659,3.6234,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1417,1.6612,3.4267,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1418,1.6679,6.0314,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1419,1.6084,5.9110,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1420,1.6447,8.4827,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1421,1.6658,8.3858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1422,1.6692,11.0980,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1423,1.6227,11.0217,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1424,3.8659,3.7343,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1425,1.6612,3.4604,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1426,1.6679,5.9328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1427,1.6084,5.9064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1428,1.6447,8.4847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1429,1.6658,8.4165,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1430,1.6692,11.1459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1431,1.6227,11.0947,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1432,3.8659,3.6131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1433,1.6612,3.4475,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1434,1.6679,5.9789,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1435,1.6084,5.9493,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1436,1.6447,8.6261,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1437,1.6658,8.5285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1438,1.6692,11.2691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1439,1.6227,11.2237,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1440,3.8659,3.5902,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1441,1.6612,3.4599,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1442,1.6679,5.9181,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1443,1.6084,5.8827,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1444,1.6447,8.4400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1445,1.6658,8.3547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1446,1.6692,11.0170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1447,1.6227,10.9446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1448,3.8659,3.5989,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1449,1.6612,3.4657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1450,1.6679,6.7340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1451,1.6084,6.6826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1452,1.6447,11.6325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1453,1.6658,11.6521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1454,1.6692,19.2540,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1455,1.6227,19.3307,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1456,3.8659,13.1825,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1457,1.6612,13.1615,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1458,1.6679,19.5928,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1459,1.6084,19.7929,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1460,1.6447,27.5183,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1461,1.6658,27.5965,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1462,1.6692,36.5502,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1463,1.6227,36.5870,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1464,3.8659,26.4089,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1465,1.6612,26.1485,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1466,1.6679,35.3453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1467,1.6084,34.9832,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1468,1.6447,38.3890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1469,1.6658,38.1447,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1470,1.6692,40.8448,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1471,1.6227,40.3482,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1472,3.8659,29.7491,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1473,1.6612,27.5568,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1474,1.6679,31.3841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1475,1.6084,31.0557,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1476,1.6447,33.7966,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1477,1.6658,33.4509,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1478,1.6692,36.1685,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1479,1.6227,35.8583,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1480,3.8659,26.8406,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1481,1.6612,25.9691,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1482,1.6679,31.1305,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1483,1.6084,28.7170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1484,1.6447,33.6563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1485,1.6658,33.2120,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1486,1.6692,36.0231,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1487,1.6227,35.5076,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1488,3.8659,29.3724,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1489,1.6612,28.8513,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1490,1.6679,35.1337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1491,1.6084,34.9774,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1492,1.6447,37.6382,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1493,1.6658,37.4382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1494,1.6692,40.4207,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1495,1.6227,40.3406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1496,3.8659,25.2426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1497,1.6612,25.3337,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1498,1.6679,29.8067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1499,1.6084,30.2239,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1500,1.6447,35.2899,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1501,1.6658,35.3701,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1502,1.6692,37.8462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1503,1.6227,37.8578,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1504,3.8659,29.0069,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1505,1.6612,29.0081,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1506,1.6679,37.1039,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1507,1.6084,36.9457,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1508,1.6447,39.7055,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1509,1.6658,39.5640,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1510,1.6692,42.7295,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1511,1.6227,42.7660,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1512,3.8659,27.3437,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1513,1.6612,27.4855,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1514,1.6679,32.2039,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1515,1.6084,32.5241,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1516,1.6447,36.2409,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1517,1.6658,36.2356,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1518,1.6692,38.7908,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1519,1.6227,38.6995,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1520,3.8659,29.8186,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1521,1.6612,27.7751,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1522,1.6679,32.2304,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1523,1.6084,31.3023,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1524,1.6447,34.4118,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1525,1.6658,34.3134,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1526,1.6692,36.9492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1527,1.6227,36.8259,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1528,3.8659,27.6783,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1529,1.6612,26.5297,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1530,1.6679,31.7761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1531,1.6084,31.5060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1532,1.6447,33.9843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1533,1.6658,33.7352,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1534,1.6692,36.2421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1535,1.6227,36.0120,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1536,3.8659,26.0513,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1537,1.6612,25.8473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1538,1.6679,30.8596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1539,1.6084,30.7347,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1540,1.6447,36.3235,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1541,1.6658,36.1890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1542,1.6692,38.8040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1543,1.6227,38.7770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1544,3.8659,29.2239,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1545,1.6612,29.1587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1546,1.6679,34.2004,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1547,1.6084,34.1857,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1548,1.6447,38.5053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1549,1.6658,38.4321,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1550,1.6692,41.1750,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1551,1.6227,41.1162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1552,3.8659,25.5211,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1553,1.6612,25.4145,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1554,1.6679,30.5367,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1555,1.6084,30.4312,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1556,1.6447,35.0581,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1557,1.6658,34.9707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1558,1.6692,37.7461,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1559,1.6227,37.6610,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1560,3.8659,26.3190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1561,1.6612,26.1187,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1562,1.6679,31.1576,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1563,1.6084,31.1271,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1564,1.6447,35.6766,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1565,1.6658,35.5717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1566,1.6692,38.3159,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1567,1.6227,38.2120,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1568,3.8659,26.0517,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1569,1.6612,25.9821,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1570,1.6679,31.0530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1571,1.6084,31.0367,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1572,1.6447,35.7089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1573,1.6658,35.5898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1574,1.6692,38.3937,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1575,1.6227,38.3428,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1576,3.8659,26.3447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1577,1.6612,26.2706,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1578,1.6679,31.1656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1579,1.6084,31.3140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1580,1.6447,35.9643,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1581,1.6658,35.8741,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1582,1.6692,38.5459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1583,1.6227,38.5096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1584,3.8659,26.2637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1585,1.6612,26.2421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1586,1.6679,31.3212,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1587,1.6084,31.2993,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1588,1.6447,35.8909,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1589,1.6658,35.8072,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1590,1.6692,38.5839,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1591,1.6227,38.5139,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1592,3.8659,26.4006,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1593,1.6612,26.2642,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1594,1.6679,31.3763,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1595,1.6084,31.2595,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1596,1.6447,35.4775,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1597,1.6658,35.3368,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1598,1.6692,38.0676,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1599,1.6227,37.9637,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1600,3.8659,25.9719,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1601,1.6612,25.8652,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1602,1.6679,31.0122,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1603,1.6084,30.9748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1604,1.6447,34.3690,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1605,1.6658,34.2294,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1606,1.6692,36.9959,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1607,1.6227,36.8391,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1608,3.8659,25.6178,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1609,1.6612,25.4742,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1610,1.6679,30.5387,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1611,1.6084,30.4296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1612,1.6447,36.2954,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1613,1.6658,36.1466,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1614,1.6692,38.8575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1615,1.6227,38.7134,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1616,3.8659,28.4578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1617,1.6612,28.2694,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1618,1.6679,33.2412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1619,1.6084,33.3228,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1620,1.6447,36.7220,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1621,1.6658,36.6665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1622,1.6692,39.3890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1623,1.6227,39.2976,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1624,3.8659,24.8510,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1625,1.6612,24.7220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1626,1.6679,29.8105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1627,1.6084,29.7425,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1628,1.6447,35.4159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1629,1.6658,35.2878,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1630,1.6692,37.9501,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1631,1.6227,37.8870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1632,3.8659,27.9572,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1633,1.6612,27.9148,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1634,1.6679,32.8400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1635,1.6084,32.8492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1636,1.6447,37.4271,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1637,1.6658,37.3011,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1638,1.6692,40.0605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1639,1.6227,39.8810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1640,3.8659,26.1262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1641,1.6612,25.9521,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1642,1.6679,31.0063,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1643,1.6084,30.9666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1644,1.6447,34.6093,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1645,1.6658,34.4830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1646,1.6692,37.2019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1647,1.6227,37.0908,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1648,3.8659,25.7327,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1649,1.6612,25.5201,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1650,1.6679,30.5960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1651,1.6084,30.4504,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1652,1.6447,35.6533,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1653,1.6658,35.5020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1654,1.6692,38.2539,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1655,1.6227,38.1097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1656,3.8659,27.8640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1657,1.6612,27.6774,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1658,1.6679,32.5309,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1659,1.6084,32.6558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1660,1.6447,36.2425,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1661,1.6658,36.1818,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1662,1.6692,38.8950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1663,1.6227,38.8531,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1664,3.8659,25.2043,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1665,1.6612,25.0664,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1666,1.6679,30.1307,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1667,1.6084,29.9913,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1668,1.6447,35.5589,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1669,1.6658,35.4531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1670,1.6692,38.1924,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1671,1.6227,38.0869,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1672,3.8659,27.7390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1673,1.6612,27.6289,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1674,1.6679,32.6124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1675,1.6084,32.6204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1676,1.6447,36.0138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1677,1.6658,35.8677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1678,1.6692,38.5397,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1679,1.6227,38.4009,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1680,3.8659,25.0258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1681,1.6612,24.8850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1682,1.6679,29.9890,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1683,1.6084,29.8964,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1684,1.6447,36.2861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1685,1.6658,36.1415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1686,1.6692,38.9165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1687,1.6227,38.7347,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1688,3.8659,28.9953,0.0321,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1689,1.6612,28.8463,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1690,1.6679,34.0063,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1691,1.6084,33.9225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1692,1.6447,36.5680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1693,1.6658,36.4387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1694,1.6692,39.1441,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1695,1.6227,39.0497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1696,3.8659,25.0570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1697,1.6612,24.4327,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1698,1.6679,29.1475,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1699,1.6084,28.8182,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1700,1.6447,34.5660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1701,1.6658,34.3499,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1702,1.6692,36.9251,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1703,1.6227,36.7617,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1704,3.8659,29.6501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1705,1.6612,29.4360,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1706,1.6679,34.4765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1707,1.6084,34.3349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1708,1.6447,38.5450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1709,1.6658,38.3654,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1710,1.6692,41.0519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1711,1.6227,40.9455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1712,3.8659,25.7874,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1713,1.6612,25.5787,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1714,1.6679,30.8184,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1715,1.6084,30.7038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1716,1.6447,35.2513,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1717,1.6658,35.1184,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1718,1.6692,37.7812,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1719,1.6227,37.6636,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1720,3.8659,26.8164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1721,1.6612,26.6750,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1722,1.6679,32.4628,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1723,1.6084,32.1183,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1724,1.6447,36.2861,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1725,1.6658,36.1661,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1726,1.6692,38.9475,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1727,1.6227,38.7038,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1728,3.8659,26.6702,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1729,1.6612,26.5071,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1730,1.6679,31.5947,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1731,1.6084,31.7273,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1732,1.6447,37.6804,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1733,1.6658,37.4732,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1734,1.6692,40.0691,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1735,1.6227,39.8880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1736,3.8659,30.0395,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1737,1.6612,29.4421,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1738,1.6679,34.9104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1739,1.6084,34.4573,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1740,1.6447,37.8557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1741,1.6658,37.5668,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1742,1.6692,39.5032,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1743,1.6227,39.1311,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1744,3.8659,28.3231,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1745,1.6612,26.5429,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1746,1.6679,32.9040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1747,1.6084,30.8403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1748,1.6447,34.8767,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1749,1.6658,33.3398,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1750,1.6692,37.1287,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1751,1.6227,35.7219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1752,3.8659,28.4318,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1753,1.6612,26.1928,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1754,1.6679,32.2844,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1755,1.6084,28.7434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1756,1.6447,34.7075,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1757,1.6658,32.2749,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1758,1.6692,37.1365,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1759,1.6227,34.6579,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1760,3.8659,27.0970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1761,1.6612,23.8606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1762,1.6679,33.0468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1763,1.6084,27.3940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1764,1.6447,35.6608,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1765,1.6658,32.6329,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1766,1.6692,38.1915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1767,1.6227,35.2025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1768,3.8659,27.4921,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1769,1.6612,23.6394,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1770,1.6679,32.4539,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1771,1.6084,27.0583,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1772,1.6447,37.6131,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1773,1.6658,32.0238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1774,1.6692,40.1831,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1775,1.6227,37.2306,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1776,3.8659,29.1126,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1777,1.6612,25.2395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1778,1.6679,33.9900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1779,1.6084,28.6054,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1780,1.6447,38.3593,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1781,1.6658,33.5753,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1782,1.6692,40.8239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1783,1.6227,37.8020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1784,3.8659,25.9983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1785,1.6612,22.1431,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1786,1.6679,31.6520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1787,1.6084,25.5257,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1788,1.6447,34.1687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1789,1.6658,31.2118,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1790,1.6692,36.7509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1791,1.6227,33.7957,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1792,3.8659,25.6558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1793,1.6612,21.6592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1794,1.6679,30.5726,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1795,1.6084,25.1499,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1796,1.6447,34.7873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1797,1.6658,30.1217,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1798,1.6692,37.3921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1799,1.6227,34.3647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1800,3.8659,28.3411,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1801,1.6612,24.4044,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1802,1.6679,33.2554,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1803,1.6084,27.8263,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1804,1.6447,38.7694,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1805,1.6658,32.8597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1806,1.6692,41.2722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1807,1.6227,38.4004,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1808,3.8659,27.6472,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1809,1.6612,23.8591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1810,1.6679,32.6992,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1811,1.6084,27.2825,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1812,1.6447,37.0666,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1813,1.6658,32.3107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1814,1.6692,39.6763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1815,1.6227,36.6808,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1816,3.8659,26.0407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1817,1.6612,22.1437,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1818,1.6679,30.8957,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1819,1.6084,25.5564,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1820,1.6447,35.4365,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1821,1.6658,30.5135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1822,1.6692,38.0439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1823,1.6227,34.9660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1824,3.8659,26.6258,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1825,1.6612,22.7080,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1826,1.6679,31.6206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1827,1.6084,26.1589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1828,1.6447,35.9881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1829,1.6658,31.2429,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1830,1.6692,38.6554,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1831,1.6227,35.6218,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1832,3.8659,26.4638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1833,1.6612,22.6068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1834,1.6679,31.5109,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1835,1.6084,25.9740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1836,1.6447,35.9243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1837,1.6658,31.0767,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1838,1.6692,38.5537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1839,1.6227,35.5346,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1840,3.8659,26.5837,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1841,1.6612,22.8173,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1842,1.6679,31.6669,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1843,1.6084,26.1593,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1844,1.6447,36.2189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1845,1.6658,31.2824,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1846,1.6692,38.7952,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1847,1.6227,35.7818,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1848,3.8659,26.7153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1849,1.6612,22.8605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1850,1.6679,31.6864,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1851,1.6084,26.2093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1852,1.6447,36.3135,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1853,1.6658,31.2244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1854,1.6692,38.8678,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1855,1.6227,35.8544,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1856,3.8659,27.0188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1857,1.6612,23.1291,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1858,1.6679,32.0210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1859,1.6084,26.4487,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1860,1.6447,35.9977,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1861,1.6658,31.4411,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1862,1.6692,38.4614,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1863,1.6227,35.3770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1864,3.8659,26.8818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1865,1.6612,22.8920,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1866,1.6679,31.6866,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1867,1.6084,26.3206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1868,1.6447,35.7587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1869,1.6658,31.2309,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1870,1.6692,38.3126,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1871,1.6227,35.2852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1872,3.8659,26.5567,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1873,1.6612,22.5776,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1874,1.6679,31.3749,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1875,1.6084,25.9542,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1876,1.6447,35.8475,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1877,1.6658,30.9140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1878,1.6692,38.4179,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1879,1.6227,35.3866,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1880,3.8659,26.5774,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1881,1.6612,22.7737,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1882,1.6679,31.6479,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1883,1.6084,26.2188,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1884,1.6447,36.2461,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1885,1.6658,31.3053,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1886,1.6692,38.9126,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1887,1.6227,35.8575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1888,3.8659,26.8036,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1889,1.6612,22.8501,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1890,1.6679,31.6827,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1891,1.6084,26.3030,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1892,1.6447,36.0353,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1893,1.6658,31.2452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1894,1.6692,38.5854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1895,1.6227,35.5065,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1896,3.8659,26.7301,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1897,1.6612,22.8469,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1898,1.6679,31.6965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1899,1.6084,26.1287,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1900,1.6447,35.8220,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1901,1.6658,31.1240,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1902,1.6692,38.3309,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1903,1.6227,35.2190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1904,3.8659,26.7375,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1905,1.6612,22.7986,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1906,1.6679,31.6147,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1907,1.6084,26.1552,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1908,1.6447,35.8629,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1909,1.6658,31.0190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1910,1.6692,38.3253,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1911,1.6227,35.2595,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1912,3.8659,26.6380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1913,1.6612,22.7532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1914,1.6679,31.6071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1915,1.6084,26.1060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1916,1.6447,35.9259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1917,1.6658,31.1813,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1918,1.6692,38.4945,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1919,1.6227,35.4939,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1920,3.8659,26.5035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1921,1.6612,22.6475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1922,1.6679,32.8777,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1923,1.6084,25.9983,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1924,1.6447,35.4506,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1925,1.6658,32.2404,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1926,1.6692,38.0584,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1927,1.6227,35.0146,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1928,3.8659,26.5617,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1929,1.6612,22.3988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1930,1.6679,33.5099,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1931,1.6084,26.0011,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1932,1.6447,36.2802,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1933,1.6658,32.9277,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1934,1.6692,38.9500,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1935,1.6227,35.7649,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1936,3.8659,29.1184,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1937,1.6612,25.2905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1938,1.6679,34.2307,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1939,1.6084,28.5865,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1940,1.6447,38.1297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1941,1.6658,33.6220,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1942,1.6692,40.5931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1943,1.6227,37.5558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1944,3.8659,27.7053,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1945,1.6612,23.0634,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1946,1.6679,31.9346,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1947,1.6084,26.1480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1948,1.6447,35.8488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1949,1.6658,30.9502,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1950,1.6692,37.8974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1951,1.6227,34.3698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1952,3.8659,27.0499,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1953,1.6612,22.8724,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1954,1.6679,32.6917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1955,1.6084,26.1448,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1956,1.6447,35.3024,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1957,1.6658,32.1675,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1958,1.6692,38.0376,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1959,1.6227,34.8359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1960,3.8659,26.2503,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1961,1.6612,22.2587,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1962,1.6679,31.2536,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1963,1.6084,25.7754,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1964,1.6447,36.4439,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1965,1.6658,30.9375,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1966,1.6692,39.2356,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1967,1.6227,36.0448,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1968,3.8659,29.5266,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1969,1.6612,25.6619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1970,1.6679,35.3109,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1971,1.6084,29.2028,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1972,1.6447,38.0715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1973,1.6658,35.1141,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1974,1.6692,40.8753,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1975,1.6227,37.8906,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1976,3.8659,25.5338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1977,1.6612,21.5415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1978,1.6679,30.3745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1979,1.6084,24.9570,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1980,1.6447,34.3455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1981,1.6658,29.9947,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1982,1.6692,36.9569,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1983,1.6227,33.8829,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1984,3.8659,27.9701,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1985,1.6612,24.1877,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1986,1.6679,33.0212,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1987,1.6084,27.5674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1988,1.6447,38.1287,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1989,1.6658,32.6393,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1990,1.6692,40.7071,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1991,1.6227,37.7579,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1992,3.8659,27.5112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1993,1.6612,23.6666,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +1994,1.6679,32.4654,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1995,1.6084,27.0050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1996,1.6447,37.0329,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1997,1.6658,31.9943,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1998,1.6692,39.5596,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +1999,1.6227,36.6103,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2000,3.8659,26.6169,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2001,1.6612,22.4719,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2002,1.6679,31.3782,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2003,1.6084,26.1187,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2004,1.6447,36.6157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2005,1.6658,30.9751,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2006,1.6692,39.2418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2007,1.6227,36.2042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2008,3.8659,27.5443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2009,1.6612,23.6605,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2010,1.6679,32.4807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2011,1.6084,26.9748,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2012,1.6447,36.0250,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2013,1.6658,31.9249,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2014,1.6692,38.4701,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2015,1.6227,35.5401,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2016,3.8659,26.6899,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2017,1.6612,22.2034,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2018,1.6679,32.2314,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2019,1.6084,25.1900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2020,1.6447,34.3618,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2021,1.6658,29.9785,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2022,1.6692,36.8147,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2023,1.6227,32.9413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2024,3.8659,26.6274,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2025,1.6612,21.9100,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2026,1.6679,31.4855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2027,1.6084,25.0312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2028,1.6447,36.3440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2029,1.6658,29.5025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2030,1.6692,38.9565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2031,1.6227,35.2594,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2032,3.8659,28.5008,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2033,1.6612,23.9172,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2034,1.6679,33.4044,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2035,1.6084,26.9478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2036,1.6447,36.7176,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2037,1.6658,31.4368,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2038,1.6692,39.2793,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2039,1.6227,35.5329,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2040,3.8659,25.1517,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2041,1.6612,20.5441,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2042,1.6679,30.1205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2043,1.6084,23.6464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2044,1.6447,34.8552,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2045,1.6658,28.1985,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2046,1.6692,37.4039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2047,1.6227,33.7236,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2048,3.8659,27.4938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2049,1.6612,22.8691,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2050,1.6679,32.4045,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2051,1.6084,25.9058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2052,1.6447,37.1101,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2053,1.6658,30.3482,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2054,1.6692,39.6072,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2055,1.6227,35.8822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2056,3.8659,26.6691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2057,1.6612,22.0686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2058,1.6679,31.4956,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2059,1.6084,25.1661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2060,1.6447,36.0800,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2061,1.6658,29.7368,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2062,1.6692,38.7140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2063,1.6227,35.0605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2064,3.8659,26.2549,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2065,1.6612,21.7687,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2066,1.6679,31.2430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2067,1.6084,24.8961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2068,1.6447,35.0285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2069,1.6658,29.4904,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2070,1.6692,37.6027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2071,1.6227,33.9988,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2072,3.8659,25.7188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2073,1.6612,21.2113,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2074,1.6679,30.6358,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2075,1.6084,24.3565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2076,1.6447,35.6966,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2077,1.6658,28.8762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2078,1.6692,38.2343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2079,1.6227,34.7309,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2080,3.8659,27.2662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2081,1.6612,22.8192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2082,1.6679,32.2209,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2083,1.6084,25.9472,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2084,1.6447,36.8581,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2085,1.6658,30.5920,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2086,1.6692,39.4610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2087,1.6227,35.8523,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2088,3.8659,26.3178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2089,1.6612,21.8589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2090,1.6679,31.2516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2091,1.6084,25.0233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2092,1.6447,35.5931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2093,1.6658,29.6701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2094,1.6692,38.2096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2095,1.6227,34.5947,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2096,3.8659,26.4277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2097,1.6612,21.8833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2098,1.6679,31.2248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2099,1.6084,25.0400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2100,1.6447,35.6226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2101,1.6658,29.5867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2102,1.6692,38.1541,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2103,1.6227,34.4974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2104,3.8659,26.5192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2105,1.6612,22.0671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2106,1.6679,31.4225,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2107,1.6084,25.2360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2108,1.6447,35.9275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2109,1.6658,29.8138,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2110,1.6692,38.4845,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2111,1.6227,34.9447,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2112,3.8659,26.4367,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2113,1.6612,22.0883,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2114,1.6679,31.3802,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2115,1.6084,25.3194,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2116,1.6447,35.9939,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2117,1.6658,29.9960,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2118,1.6692,38.5897,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2119,1.6227,35.0799,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2120,3.8659,26.4979,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2121,1.6612,22.0418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2122,1.6679,31.3890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2123,1.6084,25.3156,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2124,1.6447,35.6048,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2125,1.6658,30.1564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2126,1.6692,38.1753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2127,1.6227,34.7513,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2128,3.8659,26.2894,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2129,1.6612,21.9508,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2130,1.6679,31.1596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2131,1.6084,25.0673,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2132,1.6447,35.7239,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2133,1.6658,29.7223,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2134,1.6692,38.2709,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2135,1.6227,34.9130,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2136,3.8659,26.9762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2137,1.6612,22.5740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2138,1.6679,31.7907,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2139,1.6084,25.7193,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2140,1.6447,36.4105,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2141,1.6658,30.3994,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2142,1.6692,38.9858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2143,1.6227,35.5554,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2144,3.8659,26.6145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2145,1.6612,22.3833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2146,1.6679,32.7193,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2147,1.6084,25.6268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2148,1.6447,35.2935,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2149,1.6658,30.5363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2150,1.6692,37.8886,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2151,1.6227,33.4096,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2152,3.8659,26.0893,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2153,1.6612,20.6436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2154,1.6679,30.7945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2155,1.6084,23.6220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2156,1.6447,35.3150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2157,1.6658,27.5262,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2158,1.6692,37.8401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2159,1.6227,33.8576,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2160,3.8659,28.4735,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2161,1.6612,23.5926,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2162,1.6679,33.3801,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2163,1.6084,26.6337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2164,1.6447,38.1559,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2165,1.6658,31.2020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2166,1.6692,40.8673,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2167,1.6227,37.1447,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2168,3.8659,26.8895,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2169,1.6612,22.1805,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2170,1.6679,31.8171,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2171,1.6084,25.3108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2172,1.6447,36.1932,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2173,1.6658,29.8570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2174,1.6692,38.8177,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2175,1.6227,34.7758,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2176,3.8659,26.4103,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2177,1.6612,21.6637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2178,1.6679,31.1932,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2179,1.6084,24.6804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2180,1.6447,35.4804,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2181,1.6658,29.1704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2182,1.6692,38.0110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2183,1.6227,34.2721,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2184,3.8659,26.3655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2185,1.6612,21.6417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2186,1.6679,31.1803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2187,1.6084,24.7234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2188,1.6447,35.7041,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2189,1.6658,29.2019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2190,1.6692,38.3290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2191,1.6227,34.5830,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2192,3.8659,26.3192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2193,1.6612,21.7542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2194,1.6679,31.3390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2195,1.6084,24.8840,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2196,1.6447,35.9212,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2197,1.6658,29.4565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2198,1.6692,38.5520,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2199,1.6227,34.8028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2200,3.8659,26.3842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2201,1.6612,21.7667,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2202,1.6679,31.3191,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2203,1.6084,24.9155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2204,1.6447,35.8113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2205,1.6658,29.3780,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2206,1.6692,38.3542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2207,1.6227,34.6183,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2208,3.8659,26.3588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2209,1.6612,21.8614,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2210,1.6679,31.3039,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2211,1.6084,24.9232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2212,1.6447,34.8589,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2213,1.6658,29.4198,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2214,1.6692,37.4136,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2215,1.6227,33.6944,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2216,3.8659,25.4704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2217,1.6612,20.9370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2218,1.6679,30.4500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2219,1.6084,24.0140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2220,1.6447,35.4936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2221,1.6658,28.5659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2222,1.6692,38.0824,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2223,1.6227,34.4665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2224,3.8659,27.7611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2225,1.6612,23.2808,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2226,1.6679,32.6029,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2227,1.6084,26.3752,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2228,1.6447,35.8657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2229,1.6658,30.9296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2230,1.6692,38.3347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2231,1.6227,34.6507,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2232,3.8659,24.9798,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2233,1.6612,20.4208,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2234,1.6679,29.8577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2235,1.6084,23.5863,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2236,1.6447,34.0437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2237,1.6658,28.2286,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2238,1.6692,36.6602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2239,1.6227,33.0729,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2240,3.8659,26.7355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2241,1.6612,22.2346,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2242,1.6679,31.6646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2243,1.6084,25.3465,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2244,1.6447,37.6915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2245,1.6658,29.9678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2246,1.6692,40.3292,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2247,1.6227,37.2086,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2248,3.8659,28.0188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2249,1.6612,24.0582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2250,1.6679,32.9657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2251,1.6084,27.2957,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2252,1.6447,37.6218,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2253,1.6658,32.2999,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2254,1.6692,40.3181,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2255,1.6227,37.1473,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2256,3.8659,25.9551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2257,1.6612,21.8143,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2258,1.6679,30.9004,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2259,1.6084,25.1010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2260,1.6447,35.9210,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2261,1.6658,29.9990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2262,1.6692,38.5046,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2263,1.6227,35.2761,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2264,3.8659,27.6075,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2265,1.6612,23.0750,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2266,1.6679,37.7234,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2267,1.6084,26.8720,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2268,1.6447,40.3044,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2269,1.6658,31.7298,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2270,1.6692,44.2325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2271,1.6227,39.5093,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2272,3.8659,33.9535,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2273,1.6612,28.1777,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2274,1.6679,36.2549,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2275,1.6084,33.2131,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2276,1.6447,38.6875,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2277,1.6658,35.0347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2278,1.6692,40.5270,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2279,1.6227,37.2444,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2280,3.8659,24.7859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2281,1.6612,19.5830,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2282,1.6679,27.3523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2283,1.6084,22.2059,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2284,1.6447,29.4796,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2285,1.6658,26.2251,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2286,1.6692,31.7755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2287,1.6227,28.5300,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2288,3.8659,28.5729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2289,1.6612,24.0923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2290,1.6679,33.5687,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2291,1.6084,27.0360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2292,1.6447,35.4434,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2293,1.6658,32.2095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2294,1.6692,37.1349,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2295,1.6227,33.7816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2296,3.8659,27.6547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2297,1.6612,23.6506,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2298,1.6679,32.5129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2299,1.6084,27.1440,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2300,1.6447,37.9162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2301,1.6658,32.0630,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2302,1.6692,40.5314,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2303,1.6227,37.5277,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2304,3.8659,29.4658,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2305,1.6612,25.6055,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2306,1.6679,34.3662,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2307,1.6084,28.9423,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2308,1.6447,38.4155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2309,1.6658,33.9233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2310,1.6692,40.9901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2311,1.6227,37.9342,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2312,3.8659,25.8705,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2313,1.6612,21.9796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2314,1.6679,30.8217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2315,1.6084,25.3280,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2316,1.6447,35.1676,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2317,1.6658,30.3064,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2318,1.6692,37.7068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2319,1.6227,34.6887,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2320,3.8659,26.7306,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2321,1.6612,22.7515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2322,1.6679,31.7455,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2323,1.6084,26.1890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2324,1.6447,35.6504,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2325,1.6658,31.2926,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2326,1.6692,38.3086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2327,1.6227,35.2869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2328,3.8659,26.2310,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2329,1.6612,22.3276,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2330,1.6679,31.1400,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2331,1.6084,25.7452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2332,1.6447,35.9624,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2333,1.6658,30.7617,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2334,1.6692,38.5631,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2335,1.6227,35.5870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2336,3.8659,27.0854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2337,1.6612,23.2982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2338,1.6679,32.1230,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2339,1.6084,26.6604,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2340,1.6447,36.6795,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2341,1.6658,31.7315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2342,1.6692,39.3349,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2343,1.6227,36.2924,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2344,3.8659,26.6370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2345,1.6612,22.7607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2346,1.6679,32.0669,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2347,1.6084,26.1252,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2348,1.6447,36.3776,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2349,1.6658,31.5571,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2350,1.6692,38.9727,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2351,1.6227,35.9108,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2352,3.8659,27.2774,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2353,1.6612,23.3553,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2354,1.6679,32.4027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2355,1.6084,26.6294,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2356,1.6447,34.8937,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2357,1.6658,31.8405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2358,1.6692,37.3784,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2359,1.6227,34.3010,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2360,3.8659,26.1682,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2361,1.6612,22.0155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2362,1.6679,30.5160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2363,1.6084,24.8007,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2364,1.6447,33.9342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2365,1.6658,29.5080,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2366,1.6692,36.2196,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2367,1.6227,33.0370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2368,3.8659,27.8213,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2369,1.6612,23.9304,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2370,1.6679,32.6414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2371,1.6084,27.1826,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2372,1.6447,38.2350,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2373,1.6658,32.1883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2374,1.6692,40.7461,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2375,1.6227,37.7690,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2376,3.8659,28.1101,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2377,1.6612,24.2203,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2378,1.6679,32.9988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2379,1.6084,27.5409,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2380,1.6447,36.6725,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2381,1.6658,32.5409,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2382,1.6692,39.2326,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2383,1.6227,36.1718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2384,3.8659,25.1984,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2385,1.6612,21.3656,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2386,1.6679,30.2244,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2387,1.6084,24.7383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2388,1.6447,37.9389,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2389,1.6658,29.8695,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2390,1.6692,45.9080,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2391,1.6227,37.5270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2392,3.8659,40.3622,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2393,1.6612,32.0634,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,380,0 +2394,1.6679,48.3231,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2395,1.6084,39.8720,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2396,1.6447,56.2981,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2397,1.6658,47.8194,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2398,1.6692,64.5073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 +2399,1.6227,55.9738,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,418,0 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.txt b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.txt new file mode 100644 index 0000000..899d0ff --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.txt @@ -0,0 +1,62 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=4 +tile_rows=2 +tile_resolution=1280x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=15 +data_rate_limit_mbps=15 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.051 +effective_logical_fps=59.396 +tile_frames_requested=2400 +tile_frames_encoded=2400 +failed_tile_frames=0 +avg_encode_latency_ms=31.421 +p95_encode_latency_ms=83.656 +max_encode_latency_ms=193.288 +avg_steady_encode_latency_ms=28.219 +p95_steady_encode_latency_ms=56.191 +max_steady_encode_latency_ms=85.548 +avg_tile_encode_latency_ms=23.913 +p95_tile_encode_latency_ms=72.013 +avg_max_tile_encode_latency_ms=28.931 +p95_max_tile_encode_latency_ms=74.841 +avg_steady_max_tile_encode_latency_ms=26.558 +p95_steady_max_tile_encode_latency_ms=55.537 +payload_bytes=1661452 +send_target=none +csv=benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile_logical.csv diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile_logical.csv b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile_logical.csv new file mode 100644 index 0000000..5268470 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/4x2_15mbps_per_tile_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,8,0,193.2876,28.2926,264825 +1,8,0,13.2635,12.3545,70579 +2,8,0,24.2066,23.5402,45257 +3,8,0,35.5048,34.7838,69195 +4,8,0,46.5984,46.1036,82357 +5,8,0,58.1253,57.5619,71882 +6,8,0,69.1238,68.4605,31419 +7,8,0,80.3618,75.0906,19765 +8,8,0,83.9716,74.9447,13968 +9,8,0,83.8823,75.0105,13516 +10,8,0,83.8552,74.8683,7362 +11,8,0,84.0420,74.9761,5796 +12,8,0,83.9189,74.8695,4941 +13,8,0,83.8324,74.8408,4650 +14,8,0,83.7754,74.8525,4937 +15,8,0,83.6550,74.7195,4673 +16,8,0,83.6647,74.8429,5345 +17,8,0,83.4814,74.5758,5017 +18,8,0,83.2292,74.2319,4706 +19,8,0,83.1888,74.2050,4685 +20,8,0,83.2923,76.7226,5289 +21,8,0,83.5358,74.6221,3489 +22,8,0,83.9093,74.6494,3447 +23,8,0,84.4196,74.9296,3500 +24,8,0,84.6410,75.3896,3613 +25,8,0,84.9190,75.5873,3780 +26,8,0,85.5481,75.8813,3737 +27,8,0,85.5213,75.3388,3880 +28,8,0,79.6437,75.1611,3694 +29,8,0,73.9582,73.0792,3661 +30,8,0,68.9785,68.4464,3624 +31,8,0,64.2289,63.5361,4177 +32,8,0,60.7271,60.1465,3383 +33,8,0,55.9527,55.2944,3420 +34,8,0,50.0560,49.2397,3315 +35,8,0,45.5442,44.9621,3360 +36,8,0,41.1090,40.4315,3398 +37,8,0,36.1673,35.3451,3424 +38,8,0,31.3445,30.5847,3581 +39,8,0,27.8953,27.3063,3565 +40,8,0,22.5684,21.7150,3524 +41,8,0,20.6399,19.6792,3406 +42,8,0,14.0367,13.1438,3698 +43,8,0,12.5787,11.5428,3303 +44,8,0,12.5544,11.5124,3334 +45,8,0,12.4935,11.4096,3355 +46,8,0,12.3157,11.2618,3323 +47,8,0,12.5700,11.4896,3408 +48,8,0,12.4972,11.4611,3315 +49,8,0,12.4727,11.3853,3370 +50,8,0,12.3368,11.2566,3323 +51,8,0,12.4633,11.1582,3308 +52,8,0,12.6800,11.5463,3382 +53,8,0,12.5911,11.4315,3523 +54,8,0,12.5314,11.4256,3370 +55,8,0,12.3908,11.1510,3272 +56,8,0,12.8144,10.8375,3272 +57,8,0,15.0300,13.2370,3274 +58,8,0,13.3457,10.9120,3283 +59,8,0,12.8933,11.3181,3310 +60,8,0,12.7707,11.9131,3385 +61,8,0,13.2880,10.9653,3370 +62,8,0,16.9786,14.0745,3319 +63,8,0,12.9715,10.6961,3268 +64,8,0,13.3375,10.0180,3421 +65,8,0,13.3001,10.3834,3283 +66,8,0,13.4238,9.8282,3299 +67,8,0,12.7785,11.3656,3287 +68,8,0,12.7495,11.3602,3322 +69,8,0,12.3050,10.9954,3277 +70,8,0,12.5180,11.2693,3272 +71,8,0,12.4524,11.2135,3292 +72,8,0,12.3874,10.9898,3330 +73,8,0,12.6440,11.2133,3293 +74,8,0,14.0665,9.4847,3306 +75,8,0,12.4669,11.0221,3359 +76,8,0,12.5467,11.1896,3323 +77,8,0,12.4878,11.2140,3270 +78,8,0,12.5050,10.9522,3274 +79,8,0,13.9838,11.0505,3291 +80,8,0,14.0069,12.2904,3293 +81,8,0,12.7574,11.4095,3291 +82,8,0,12.4472,11.4585,3331 +83,8,0,12.5646,11.5348,3333 +84,8,0,12.6999,11.5516,3319 +85,8,0,12.9565,11.3343,3304 +86,8,0,12.7967,11.2288,3366 +87,8,0,12.5920,11.4144,3270 +88,8,0,12.4574,11.3108,3268 +89,8,0,12.4358,11.3442,3273 +90,8,0,12.4995,11.2513,3277 +91,8,0,12.3108,11.2383,3292 +92,8,0,12.6933,11.4523,3273 +93,8,0,13.1005,12.2423,3297 +94,8,0,14.3315,11.9410,3306 +95,8,0,13.9310,12.6122,3298 +96,8,0,12.6652,11.1544,3273 +97,8,0,12.4200,11.0786,3341 +98,8,0,12.2884,11.0603,3268 +99,8,0,12.4648,11.1818,3268 +100,8,0,12.4582,11.3248,3268 +101,8,0,12.5829,11.2669,3268 +102,8,0,12.5035,11.2873,3282 +103,8,0,12.9823,11.3883,3273 +104,8,0,13.1389,11.0709,3278 +105,8,0,13.6475,10.4309,3279 +106,8,0,12.7145,11.1576,3275 +107,8,0,12.5377,11.1197,3268 +108,8,0,12.4738,11.1102,3285 +109,8,0,12.4982,11.1165,3268 +110,8,0,12.5534,11.1858,3268 +111,8,0,12.4391,11.1554,3268 +112,8,0,12.4702,11.1340,3268 +113,8,0,12.5008,11.1866,3268 +114,8,0,12.7260,11.4720,3268 +115,8,0,12.5325,11.3400,3274 +116,8,0,12.4376,11.1423,3273 +117,8,0,12.4594,11.1353,3268 +118,8,0,12.4227,10.8932,3268 +119,8,0,12.5765,11.2713,3283 +120,8,0,12.4198,10.7985,3268 +121,8,0,12.5666,11.4404,3268 +122,8,0,12.7174,11.6808,3268 +123,8,0,12.9642,12.0270,3268 +124,8,0,13.6536,9.9160,3268 +125,8,0,13.2060,10.0614,3268 +126,8,0,12.9637,10.2407,3273 +127,8,0,12.7529,10.7515,3272 +128,8,0,12.4516,11.0435,3268 +129,8,0,12.4834,11.1064,3268 +130,8,0,12.4970,11.3022,3274 +131,8,0,12.4147,11.1204,3268 +132,8,0,12.5152,11.2152,3268 +133,8,0,12.6130,11.0897,3268 +134,8,0,12.9890,9.7812,3268 +135,8,0,12.9904,10.0098,3268 +136,8,0,12.5681,11.1172,3268 +137,8,0,12.5435,11.4478,3268 +138,8,0,12.5950,11.5100,3268 +139,8,0,12.4344,11.3691,3268 +140,8,0,12.5212,11.4404,3268 +141,8,0,12.3889,11.2566,3268 +142,8,0,12.4979,11.4936,3268 +143,8,0,12.2229,11.2383,3268 +144,8,0,12.4306,11.0523,3268 +145,8,0,13.0360,11.4011,3268 +146,8,0,12.6193,11.7174,3268 +147,8,0,12.7128,11.5375,3268 +148,8,0,12.6223,11.8000,3268 +149,8,0,12.5140,11.4448,3268 +150,8,0,12.3243,11.0018,3268 +151,8,0,12.5327,11.0052,3268 +152,8,0,13.3217,10.3792,3268 +153,8,0,12.3918,10.8488,3268 +154,8,0,12.5140,11.1909,3268 +155,8,0,12.4463,11.1193,3268 +156,8,0,12.4443,11.1245,3268 +157,8,0,12.5861,11.0689,3268 +158,8,0,13.3944,9.8571,3268 +159,8,0,13.0305,10.1032,3268 +160,8,0,12.7040,11.1162,3268 +161,8,0,12.5032,11.2743,3268 +162,8,0,12.4310,11.1658,3268 +163,8,0,12.6410,11.4837,3268 +164,8,0,12.5318,11.4463,3268 +165,8,0,12.4516,11.2970,3268 +166,8,0,12.3479,11.0970,3268 +167,8,0,12.4023,11.0969,3268 +168,8,0,12.9111,11.3783,3268 +169,8,0,15.2620,9.4982,3268 +170,8,0,12.4789,10.9347,3268 +171,8,0,12.5118,11.2575,3268 +172,8,0,12.4515,11.2043,3268 +173,8,0,12.3911,11.1215,3268 +174,8,0,12.6019,11.3610,3268 +175,8,0,12.4684,11.3340,3268 +176,8,0,12.3466,11.0434,3268 +177,8,0,12.3783,11.0980,3268 +178,8,0,12.5463,11.1459,3268 +179,8,0,12.4522,11.2691,3268 +180,8,0,12.4089,11.0170,3268 +181,8,0,20.6470,19.3307,3268 +182,8,0,38.0255,36.5870,3268 +183,8,0,42.5090,40.8448,3268 +184,8,0,39.6545,36.1685,3268 +185,8,0,40.3542,36.0231,3268 +186,8,0,41.7296,40.4207,3268 +187,8,0,39.2887,37.8578,3268 +188,8,0,43.9980,42.7660,3268 +189,8,0,40.2415,38.7908,3268 +190,8,0,41.9287,36.9492,3268 +191,8,0,39.6886,36.2421,3268 +192,8,0,40.3341,38.8040,3268 +193,8,0,42.1084,41.1750,3268 +194,8,0,38.5373,37.7461,3268 +195,8,0,39.2303,38.3159,3268 +196,8,0,39.2548,38.3937,3268 +197,8,0,39.4375,38.5459,3268 +198,8,0,39.4441,38.5839,3268 +199,8,0,39.0237,38.0676,3268 +200,8,0,38.0652,36.9959,3268 +201,8,0,39.9770,38.8575,3268 +202,8,0,40.3851,39.3890,3268 +203,8,0,38.9562,37.9501,3268 +204,8,0,41.1710,40.0605,3268 +205,8,0,38.3006,37.2019,3268 +206,8,0,39.6612,38.2539,3268 +207,8,0,40.0920,38.8950,3268 +208,8,0,39.2247,38.1924,3268 +209,8,0,39.6945,38.5397,3268 +210,8,0,40.0173,38.9165,3268 +211,8,0,40.3505,39.1441,3268 +212,8,0,39.2992,36.9251,3268 +213,8,0,42.5140,41.0519,3268 +214,8,0,39.0615,37.7812,3268 +215,8,0,40.0507,38.9475,3268 +216,8,0,41.3711,40.0691,3268 +217,8,0,42.1597,39.5032,3268 +218,8,0,40.9019,37.1287,3268 +219,8,0,40.4349,37.1365,3268 +220,8,0,39.3620,38.1915,3268 +221,8,0,41.2016,40.1831,3268 +222,8,0,41.9168,40.8239,3268 +223,8,0,37.7712,36.7509,3268 +224,8,0,38.4779,37.3921,3268 +225,8,0,42.3280,41.2722,3268 +226,8,0,40.5555,39.6763,3268 +227,8,0,39.1328,38.0439,3268 +228,8,0,39.6277,38.6554,3268 +229,8,0,39.5553,38.5537,3268 +230,8,0,39.7300,38.7952,3268 +231,8,0,39.9384,38.8678,3268 +232,8,0,39.7389,38.4614,3268 +233,8,0,39.5584,38.3126,3268 +234,8,0,39.6021,38.4179,3268 +235,8,0,39.7571,38.9126,3268 +236,8,0,39.6524,38.5854,3268 +237,8,0,39.6231,38.3309,3268 +238,8,0,39.6217,38.3253,3268 +239,8,0,39.5727,38.4945,3268 +240,8,0,39.1764,38.0584,3268 +241,8,0,40.0771,38.9500,3268 +242,8,0,41.8287,40.5931,3268 +243,8,0,40.6603,37.8974,3268 +244,8,0,39.5192,38.0376,3268 +245,8,0,40.1796,39.2356,3268 +246,8,0,41.5800,40.8753,3268 +247,8,0,38.0625,36.9569,3268 +248,8,0,41.5931,40.7071,3268 +249,8,0,40.6298,39.5596,3268 +250,8,0,40.2500,39.2418,3268 +251,8,0,39.7011,38.4701,3268 +252,8,0,39.2326,36.8147,3268 +253,8,0,40.0296,38.9565,3268 +254,8,0,40.4358,39.2793,3268 +255,8,0,38.4686,37.4039,3268 +256,8,0,40.8378,39.6072,3268 +257,8,0,39.7922,38.7140,3268 +258,8,0,38.6115,37.6027,3268 +259,8,0,39.3140,38.2343,3268 +260,8,0,40.5013,39.4610,3268 +261,8,0,39.1984,38.2096,3268 +262,8,0,39.4403,38.1541,3268 +263,8,0,39.5627,38.4845,3268 +264,8,0,39.5155,38.5897,3268 +265,8,0,39.2521,38.1753,3268 +266,8,0,39.4426,38.2709,3268 +267,8,0,40.2270,38.9858,3268 +268,8,0,38.9939,37.8886,3268 +269,8,0,39.2002,37.8401,3268 +270,8,0,41.8867,40.8673,3268 +271,8,0,39.7959,38.8177,3268 +272,8,0,39.3055,38.0110,3268 +273,8,0,39.4275,38.3290,3268 +274,8,0,39.4102,38.5520,3268 +275,8,0,39.3523,38.3542,3268 +276,8,0,38.5007,37.4136,3268 +277,8,0,39.1399,38.0824,3268 +278,8,0,39.6028,38.3347,3268 +279,8,0,37.6648,36.6602,3268 +280,8,0,41.3391,40.3292,3268 +281,8,0,41.2527,40.3181,3268 +282,8,0,39.5466,38.5046,3268 +283,8,0,45.3219,44.2325,3268 +284,8,0,42.4543,40.5270,3268 +285,8,0,35.0705,31.7755,3268 +286,8,0,40.5147,37.1349,3268 +287,8,0,41.6714,40.5314,3268 +288,8,0,42.0692,40.9901,3268 +289,8,0,38.8387,37.7068,3268 +290,8,0,39.3761,38.3086,3268 +291,8,0,39.5795,38.5631,3268 +292,8,0,40.2500,39.3349,3268 +293,8,0,40.0637,38.9727,3268 +294,8,0,38.7290,37.3784,3268 +295,8,0,38.6208,36.2196,3268 +296,8,0,42.0082,40.7461,3268 +297,8,0,40.4012,39.2326,3268 +298,8,0,46.9023,45.9080,3268 +299,8,0,65.6689,64.5073,3268 diff --git a/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/summary.md b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/summary.md new file mode 100644 index 0000000..a6bd08b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/summary.md @@ -0,0 +1,9 @@ +# Tiled 5K60 Tile Shape Probe + +| Case | Tile grid | Tile resolution | Frames | Effective fps | Avg logical ms | P95 logical ms | Steady p95 ms | Steady max-tile p95 ms | Payload bytes | Result | +|---|---|---|---:|---:|---:|---:|---:|---:|---:|---| +| 1x4_30mbps_per_tile | 1x4 | 5120x720 | 300 | 59.553 | 25.659 | 44.927 | 43.199 | 42.026 | 1325066 | FAIL | +| 2x2_30mbps_per_tile | 2x2 | 2560x1440 | 300 | 59.559 | 25.343 | 44.095 | 42.847 | 41.814 | 1391053 | FAIL | +| 2x4_15mbps_per_tile | 2x4 | 2560x720 | 300 | 59.322 | 31.410 | 84.981 | 51.302 | 50.120 | 1558336 | FAIL | +| 4x1_30mbps_per_tile | 4x1 | 1280x2880 | 300 | 59.567 | 25.087 | 45.874 | 44.961 | 43.695 | 1476775 | FAIL | +| 4x2_15mbps_per_tile | 4x2 | 1280x1440 | 300 | 59.396 | 31.421 | 83.656 | 56.191 | 55.537 | 1661452 | FAIL | diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.csv new file mode 100644 index 0000000..8bcfc8b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.1029,29.5730,0.0283,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.1290,25.6470,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.9825,26.9392,0.0199,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8917,25.7874,0.0187,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,6.1029,5.8361,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.1290,5.6460,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.9825,10.5118,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8917,10.4366,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,6.1029,15.3773,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.1290,15.3049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.9825,20.3583,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8917,20.2801,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,6.1029,25.2060,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.1290,25.1406,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.9825,30.0282,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8917,30.0108,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,6.1029,35.1422,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.1290,35.0841,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.9825,39.9853,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8917,39.9173,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,6.1029,45.1617,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.1290,45.1178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.9825,50.1575,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8917,50.0541,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,6.1029,55.0586,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.1290,55.1915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.9825,60.0181,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8917,60.2210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,6.1029,64.7849,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.1290,61.8157,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.9825,66.2857,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8917,61.6999,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,6.1029,66.1328,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.1290,61.8742,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.9825,66.1012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8917,61.8748,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,6.1029,60.3918,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.1290,61.1208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.9825,65.1704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8917,62.0453,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,6.1029,51.4921,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.1290,52.4588,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.9825,56.3285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8917,57.3764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,6.1029,44.5692,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.1290,45.7443,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.9825,49.3672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8917,50.8082,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,6.1029,38.2166,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.1290,39.5348,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.9825,42.8811,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8917,44.5295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,6.1029,32.2826,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.1290,33.8788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.9825,37.0267,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8917,38.7517,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,6.1029,24.8011,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.1290,26.4223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.9825,29.5190,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8917,31.1782,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,6.1029,20.3727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.1290,21.8895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.9825,24.9577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8917,26.6359,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,6.1029,14.5605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.1290,16.1101,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.9825,19.2428,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8917,21.1005,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,6.1029,5.7757,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.1290,6.0776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.9825,10.3002,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8917,10.8089,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,6.1029,5.8933,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.1290,5.5454,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.9825,10.2806,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8917,10.1594,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,6.1029,5.8239,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.1290,5.5967,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.9825,10.3642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8917,10.2788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,6.1029,5.9055,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.1290,5.5549,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.9825,10.3150,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8917,10.2216,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,6.1029,5.8850,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.1290,5.5644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.9825,10.3936,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8917,10.2885,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,6.1029,5.9513,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.1290,5.6409,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.9825,10.3708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8917,10.2692,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,6.1029,5.9110,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.1290,5.6490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.9825,10.4334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8917,10.4127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,6.1029,6.2688,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.1290,5.7710,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.9825,10.3728,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8917,10.2042,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,6.1029,6.3059,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.1290,6.0092,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.9825,10.4160,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8917,10.2405,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,6.1029,6.6280,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.1290,5.7772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.9825,10.2047,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8917,9.8946,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,6.1029,6.3684,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.1290,5.6130,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.9825,10.0049,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8917,9.5800,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,6.1029,6.4436,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.1290,5.5896,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.9825,10.3496,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8917,10.0519,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,6.1029,6.6868,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.1290,5.8354,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.9825,10.6985,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8917,10.6000,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,6.1029,6.6061,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.1290,5.7507,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.9825,10.3893,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8917,10.2528,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,6.1029,7.0080,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.1290,6.1308,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.9825,12.6156,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8917,12.3812,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,6.1029,6.6216,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.1290,5.8127,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.9825,10.9241,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8917,10.7072,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,6.1029,6.6334,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.1290,5.7265,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.9825,12.8143,0.1117,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8917,12.9083,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,6.1029,6.8689,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.1290,5.7373,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.9825,10.9125,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8917,10.4367,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,6.1029,6.9523,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.1290,5.9689,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.9825,11.2734,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8917,11.2642,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,6.1029,6.7440,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.1290,5.6665,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.9825,10.1811,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8917,9.9035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,6.1029,6.0634,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.1290,5.6676,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.9825,10.3560,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8917,10.2493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,6.1029,6.0381,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.1290,5.6332,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.9825,10.3903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8917,10.3001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,6.1029,5.9038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.1290,5.5750,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.9825,10.3722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8917,10.3160,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,6.1029,5.7229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.1290,5.5024,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.9825,10.3642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8917,10.3165,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,6.1029,5.7403,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.1290,5.5330,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.9825,10.4305,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8917,10.3635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,6.1029,5.6928,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.1290,5.4755,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.9825,10.3504,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8917,10.3255,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,6.1029,5.6269,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.1290,5.4526,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.9825,10.3412,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8917,10.3302,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,6.1029,5.6419,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.1290,5.4576,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.9825,10.3745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8917,10.3245,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,6.1029,5.7175,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.1290,5.4977,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.9825,10.3544,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8917,10.3407,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,6.1029,5.6614,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.1290,5.4543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.9825,10.3127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8917,10.2947,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,6.1029,5.6641,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.1290,5.4687,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.9825,10.3356,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8917,10.3031,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,6.1029,5.7308,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.1290,5.4909,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.9825,10.3629,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8917,10.3810,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,6.1029,5.8005,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.1290,5.5702,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.9825,10.4159,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8917,10.3734,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,6.1029,5.5890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.1290,5.4559,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.9825,10.6898,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8917,10.6715,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,6.1029,5.5468,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.1290,5.4242,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.9825,10.3223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8917,10.2945,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,6.1029,5.6589,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.1290,5.4886,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.9825,10.3427,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8917,10.3216,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,6.1029,5.5311,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.1290,5.3817,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.9825,10.2342,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8917,10.2251,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,6.1029,5.5872,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.1290,5.4595,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.9825,10.2596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8917,10.2522,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,6.1029,5.5726,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.1290,5.3974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.9825,10.2302,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8917,10.2121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,6.1029,5.6845,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.1290,5.5595,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.9825,10.4095,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8917,10.4170,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,6.1029,5.7843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.1290,5.6310,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.9825,10.4917,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8917,10.4845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,6.1029,5.7791,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.1290,5.5949,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.9825,10.3969,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8917,10.3785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,6.1029,5.9574,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.1290,5.7672,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.9825,10.5543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8917,10.4993,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,6.1029,5.7965,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,3.1290,5.6053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.9825,10.3668,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8917,10.3222,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,6.1029,5.8270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,3.1290,5.6280,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.9825,10.4489,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8917,10.3243,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,6.1029,5.9429,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,3.1290,5.6443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.9825,10.4129,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8917,10.3078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,6.1029,5.8412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,3.1290,5.5889,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.9825,10.3041,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8917,10.2402,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,6.1029,6.0683,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,3.1290,5.8096,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.9825,10.5589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8917,10.5699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,6.1029,5.8823,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,3.1290,5.6604,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.9825,10.3477,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8917,10.1989,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,6.1029,6.7088,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,3.1290,5.7073,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.9825,10.3995,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8917,10.1211,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,6.1029,6.3950,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,3.1290,5.5976,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.9825,12.5028,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8917,12.3327,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,6.1029,6.0170,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,3.1290,5.6202,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.9825,10.2991,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8917,10.1335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,6.1029,6.1682,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,3.1290,5.7419,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.9825,10.3735,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8917,10.2643,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,6.1029,5.9254,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,3.1290,5.5970,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.9825,10.3778,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8917,10.2467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,6.1029,6.0478,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,3.1290,5.6934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.9825,10.5150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8917,10.4558,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,6.1029,6.0726,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,3.1290,5.6383,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.9825,10.5386,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8917,10.4680,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,6.1029,6.0578,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,3.1290,5.6694,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.9825,10.5225,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8917,10.4172,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,6.1029,6.2836,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,3.1290,5.8175,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.9825,10.6307,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8917,10.5427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,6.1029,6.1120,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,3.1290,5.7221,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.9825,10.4639,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8917,10.3905,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,6.1029,5.9875,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,3.1290,5.6326,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.9825,10.4676,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8917,10.3434,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,6.1029,6.3705,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,3.1290,5.6694,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.9825,9.6481,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8917,13.6098,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,6.1029,6.6055,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,3.1290,5.7155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.9825,9.5001,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8917,8.8305,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,6.1029,6.4032,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,3.1290,5.8437,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.9825,10.4580,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8917,10.2839,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,6.1029,6.0908,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,3.1290,5.7295,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.9825,10.3623,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8917,10.2805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,6.1029,6.0458,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,3.1290,5.6258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.9825,10.2850,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8917,10.1387,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,6.1029,7.2255,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,3.1290,6.8365,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.9825,10.3577,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8917,10.2282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,6.1029,6.4394,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,3.1290,6.5397,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.9825,9.2212,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8917,11.1543,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,6.1029,6.6443,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,3.1290,5.9607,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.9825,10.4327,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8917,10.2522,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,6.1029,6.4163,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,3.1290,5.6881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.9825,10.2812,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8917,10.1138,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,6.1029,6.0778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,3.1290,5.6635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.9825,10.6049,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8917,10.5709,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,6.1029,6.2103,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,3.1290,5.7380,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.9825,10.4953,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8917,10.3366,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,6.1029,5.9536,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,3.1290,5.7170,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.9825,10.7570,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8917,10.8598,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,6.1029,5.8969,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,3.1290,6.0448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.9825,9.4827,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8917,10.1130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,6.1029,6.7190,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,3.1290,5.8063,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.9825,9.9749,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8917,9.8097,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,6.1029,6.1121,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.1290,5.6531,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.9825,13.0155,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8917,12.6508,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,6.1029,6.1245,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.1290,5.7181,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.9825,11.3212,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8917,11.3040,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,6.1029,7.9295,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.1290,7.1360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.9825,10.6704,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8917,10.4167,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,6.1029,6.7608,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.1290,5.7857,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.9825,10.7316,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8917,10.6090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,6.1029,7.2898,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.1290,6.3663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.9825,10.2200,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8917,10.1212,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,6.1029,6.1709,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.1290,5.7817,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.9825,10.6642,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8917,10.6040,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,6.1029,6.6986,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.1290,5.7914,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.9825,10.4898,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8917,10.4563,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,6.1029,6.3928,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.1290,5.7189,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.9825,9.4206,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8917,9.5675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,6.1029,6.7282,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.1290,6.0062,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.9825,10.3630,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8917,10.1325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,6.1029,6.7023,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.1290,5.6580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.9825,10.0885,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8917,9.3932,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,6.1029,6.6528,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.1290,5.9632,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.9825,10.1674,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8917,10.1125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,6.1029,6.4292,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.1290,5.9768,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.9825,10.9057,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8917,10.7215,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,6.1029,7.7084,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.1290,6.7179,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.9825,10.1640,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8917,9.8398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,6.1029,8.1130,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.1290,5.9663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.9825,9.0066,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8917,9.7482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,6.1029,6.4908,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.1290,5.7083,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.9825,10.1605,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8917,9.9982,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,6.1029,6.6111,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.1290,5.8707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.9825,10.9679,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8917,10.9160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,6.1029,6.6337,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.1290,6.0827,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.9825,10.5353,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8917,10.3190,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,6.1029,6.5456,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.1290,5.6940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.9825,10.6077,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8917,10.6150,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,6.1029,7.0480,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.1290,6.3160,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.9825,10.4664,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8917,10.3810,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,6.1029,6.9715,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.1290,5.8753,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.9825,10.9367,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8917,10.8317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,6.1029,6.5675,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.1290,5.7969,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.9825,12.1013,0.0927,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8917,12.2564,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,6.1029,6.6680,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.1290,5.7978,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.9825,10.7842,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8917,10.6148,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,6.1029,6.6142,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.1290,5.6906,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.9825,9.8569,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8917,9.7351,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,6.1029,6.2545,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.1290,5.7227,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.9825,10.0073,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8917,9.2496,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,6.1029,6.0978,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.1290,5.7937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.9825,10.4463,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8917,10.2555,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,6.1029,6.1986,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.1290,5.7639,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.9825,10.2604,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8917,10.2624,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,6.1029,6.3636,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.1290,5.9466,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.9825,10.2677,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8917,10.1250,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,6.1029,6.2347,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.1290,5.7141,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.9825,10.3759,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8917,10.2279,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,6.1029,6.1287,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.1290,5.8840,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.9825,10.9620,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8917,10.7542,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,6.1029,6.2474,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,3.1290,5.9419,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.9825,10.0631,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8917,10.0324,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,6.1029,6.2063,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,3.1290,5.9156,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.9825,10.1083,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8917,10.0986,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,6.1029,6.1835,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,3.1290,5.8903,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.9825,10.0928,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8917,10.1302,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,6.1029,6.3385,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,3.1290,5.9178,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.9825,10.1677,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8917,14.1255,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,6.1029,6.3555,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,3.1290,5.7322,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.9825,10.2728,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8917,10.2823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,6.1029,6.3098,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,3.1290,5.8582,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.9825,10.0477,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8917,9.9296,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,6.1029,6.4367,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,3.1290,6.0690,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.9825,10.3992,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8917,10.3486,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,6.1029,6.2557,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,3.1290,5.6964,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.9825,10.0289,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8917,9.9522,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,6.1029,6.1629,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,3.1290,5.7985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.9825,9.9063,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8917,9.9238,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,6.1029,6.1798,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,3.1290,5.7718,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.9825,9.9827,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8917,9.9015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,6.1029,6.1512,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,3.1290,5.7642,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.9825,9.8946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8917,9.9240,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,6.1029,6.4450,0.0862,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,3.1290,5.8653,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.9825,9.9391,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8917,9.9115,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,6.1029,6.3882,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,3.1290,5.7330,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.9825,10.2161,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8917,10.1922,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,6.1029,6.4102,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,3.1290,5.7790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.9825,9.8585,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8917,9.8828,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,6.1029,6.1700,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,3.1290,5.6622,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.9825,9.9380,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8917,9.9271,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,6.1029,6.9419,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,3.1290,6.3324,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.9825,11.6750,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8917,11.4011,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,6.1029,5.9528,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,3.1290,5.6927,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.9825,10.1068,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8917,10.1001,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,6.1029,6.0175,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,3.1290,5.6302,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.9825,10.5116,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8917,10.4434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,6.1029,5.8580,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,3.1290,5.5746,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.9825,10.6008,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8917,10.3800,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,6.1029,6.3128,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,3.1290,5.6881,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.9825,10.4122,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8917,10.1655,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,6.1029,6.6563,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,3.1290,5.6231,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.9825,9.9427,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8917,9.9124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,6.1029,6.1279,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,3.1290,5.6494,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.9825,10.4848,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8917,10.1438,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,6.1029,6.4799,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,3.1290,5.7588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.9825,11.6252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8917,11.5485,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,6.1029,7.3285,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,3.1290,6.4992,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.9825,9.5294,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8917,10.2485,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,6.1029,6.4885,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,3.1290,5.7773,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.9825,10.4202,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8917,10.3827,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,6.1029,6.8266,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,3.1290,5.8682,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.9825,10.6886,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8917,10.6020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,6.1029,6.5088,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,3.1290,5.7112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.9825,10.9580,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8917,10.8523,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,6.1029,7.0013,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,3.1290,6.4742,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.9825,10.6513,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8917,10.6051,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,6.1029,6.5580,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,3.1290,5.7465,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.9825,10.6282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8917,10.2830,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,6.1029,7.0284,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,3.1290,6.6239,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.9825,10.8358,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8917,10.7677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,6.1029,6.8412,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,3.1290,6.0827,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.9825,10.6438,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.8917,10.5768,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,6.1029,6.2495,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,3.1290,5.6500,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.9825,10.6189,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.8917,10.5818,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,6.1029,6.2867,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,3.1290,5.7912,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.9825,10.5120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.8917,10.3378,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,6.1029,6.1262,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,3.1290,5.9585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.9825,10.3527,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8917,9.8956,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,6.1029,6.4846,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,3.1290,5.7980,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.9825,10.3750,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8917,10.1305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,6.1029,6.7800,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,3.1290,5.9030,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.9825,10.0025,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8917,9.9723,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,6.1029,6.3431,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,3.1290,5.5973,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.9825,9.9588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.8917,9.9519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,6.1029,6.2772,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,3.1290,5.8008,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.9825,10.2788,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.8917,10.1120,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,6.1029,6.4853,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,3.1290,5.9590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.9825,10.6058,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.8917,10.4138,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,6.1029,6.6147,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,3.1290,5.6340,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.9825,10.3978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.8917,10.2660,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,6.1029,6.1292,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,3.1290,5.6247,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.9825,10.2737,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.8917,10.0545,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,6.1029,5.9241,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,3.1290,5.5939,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.9825,10.3088,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.8917,10.1670,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,6.1029,5.9618,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,3.1290,5.5896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.9825,10.3878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.8917,10.2779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,6.1029,5.8251,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,3.1290,5.5359,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.9825,10.3527,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.8917,10.2566,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,6.1029,5.8519,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,3.1290,5.6236,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.9825,10.3025,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.8917,10.1813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,6.1029,6.0255,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,3.1290,5.6682,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.9825,10.3585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8917,10.3200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,6.1029,8.2079,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,3.1290,7.8948,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.9825,10.3410,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8917,10.1914,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,6.1029,7.7682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,3.1290,6.8105,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.9825,10.0442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8917,10.0140,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,6.1029,6.0524,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,3.1290,5.6215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.9825,10.1880,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.8917,10.0132,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,6.1029,6.0377,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,3.1290,5.5622,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.9825,10.4262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.8917,10.3055,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,6.1029,6.0116,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,3.1290,5.6510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.9825,10.2978,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.8917,10.1795,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,6.1029,5.7812,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,3.1290,5.4841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.9825,10.2335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.8917,10.1547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,6.1029,5.7894,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,3.1290,5.5402,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.9825,10.2599,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8917,10.1742,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,6.1029,5.8234,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,3.1290,5.5793,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.9825,10.2225,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.8917,10.1093,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,6.1029,6.5205,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,3.1290,5.8101,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.9825,10.2812,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.8917,9.9461,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,6.1029,6.5684,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,3.1290,5.6845,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.9825,10.3673,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8917,10.1534,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,6.1029,6.5966,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,3.1290,6.5915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.9825,10.3926,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8917,10.3767,0.0427,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,6.1029,6.7756,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,3.1290,6.0739,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.9825,10.2552,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8917,10.0898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,6.1029,6.0903,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,3.1290,5.7875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.9825,9.6287,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8917,10.2958,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,6.1029,6.7785,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,3.1290,6.4810,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.9825,10.5775,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.8917,10.3880,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,6.1029,6.1844,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,3.1290,5.8808,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.9825,10.0465,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +723,2.8917,10.0902,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +724,6.1029,6.4315,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,3.1290,6.1230,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.9825,11.2106,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +727,2.8917,11.7012,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +728,6.1029,16.1316,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,3.1290,15.8379,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.9825,29.4370,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +731,2.8917,29.7526,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,6.1029,28.3785,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,3.1290,28.6180,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.9825,37.9088,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +735,2.8917,37.7726,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,6.1029,31.9805,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,3.1290,31.5287,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.9825,38.2748,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +739,2.8917,37.9222,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +740,6.1029,32.0275,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,3.1290,31.6265,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.9825,39.8225,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.8917,39.4239,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,6.1029,35.8098,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,3.1290,35.0283,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.9825,42.0763,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.8917,41.7020,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +748,6.1029,33.6147,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,3.1290,33.0688,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.9825,40.1007,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.8917,39.7272,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +752,6.1029,33.7342,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,3.1290,33.0145,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.9825,37.7060,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.8917,37.3113,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,6.1029,28.5515,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,3.1290,27.6333,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.9825,35.3457,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +759,2.8917,35.1024,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,6.1029,31.8550,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,3.1290,31.1145,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.9825,40.1953,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +763,2.8917,39.9189,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,6.1029,33.6749,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,3.1290,33.1217,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.9825,40.4946,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +767,2.8917,40.2810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +768,6.1029,31.6679,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,3.1290,31.2999,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.9825,36.2745,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +771,2.8917,36.1010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,6.1029,27.0983,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,3.1290,26.9431,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.9825,36.0000,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +775,2.8917,35.8774,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +776,6.1029,32.2278,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,3.1290,31.9283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.9825,39.4109,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +779,2.8917,39.2620,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +780,6.1029,29.3532,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,3.1290,29.0852,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.9825,38.4333,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +783,2.8917,38.3148,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,6.1029,35.2245,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,3.1290,35.0644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.9825,42.3110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.8917,42.1650,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,6.1029,31.8697,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,3.1290,31.6540,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.9825,38.9767,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.8917,38.8215,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,6.1029,32.6285,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,3.1290,32.4610,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.9825,37.4375,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.8917,37.3410,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,6.1029,27.5119,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,3.1290,27.2862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.9825,36.1406,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.8917,36.0127,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +800,6.1029,31.9015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,3.1290,31.6152,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.9825,40.5647,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.8917,40.4640,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,6.1029,30.9703,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,3.1290,30.8411,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.9825,38.5620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.8917,38.4970,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +808,6.1029,32.3920,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,3.1290,32.2800,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.9825,39.7024,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.8917,39.6222,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,6.1029,33.2296,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,3.1290,33.2021,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.9825,38.1518,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +815,2.8917,38.1050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,6.1029,28.3230,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,3.1290,28.2258,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.9825,35.7262,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8917,35.5825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,6.1029,30.3563,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,3.1290,30.1519,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.9825,37.9239,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8917,37.8335,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,6.1029,32.8278,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,3.1290,32.5601,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.9825,41.6596,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8917,41.5474,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +828,6.1029,34.9083,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,3.1290,34.7417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.9825,41.4132,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8917,41.3122,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +832,6.1029,31.2751,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,3.1290,31.1427,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.9825,38.8217,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.8917,38.7426,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +836,6.1029,33.5027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,3.1290,33.3442,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.9825,38.2662,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8917,38.2261,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +840,6.1029,26.7853,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,3.1290,26.6781,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.9825,35.5766,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.8917,35.5108,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,6.1029,31.6683,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,3.1290,31.5566,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.9825,39.4010,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +847,2.8917,39.3601,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +848,6.1029,30.0353,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,3.1290,29.7525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.9825,36.8147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +851,2.8917,36.7558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +852,6.1029,32.7050,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,3.1290,32.5262,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.9825,41.3273,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +855,2.8917,41.2690,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +856,6.1029,34.8339,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,3.1290,34.6894,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.9825,41.4814,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +859,2.8917,41.4123,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +860,6.1029,31.8795,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,3.1290,31.7858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.9825,36.6947,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.8917,36.6446,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,6.1029,28.6479,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,3.1290,28.5015,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.9825,36.0136,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.8917,35.9927,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +868,6.1029,30.2110,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,3.1290,30.1389,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.9825,40.3650,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.8917,40.2807,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,6.1029,34.6710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,3.1290,34.5470,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.9825,41.2600,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8917,41.1488,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,6.1029,30.3668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,3.1290,30.0850,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.9825,38.4183,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.8917,38.3133,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,6.1029,34.9937,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.1290,34.5913,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.9825,41.7433,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.8917,41.6126,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +884,6.1029,31.7365,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.1290,31.4677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.9825,36.4008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.8917,36.2579,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +888,6.1029,27.1317,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.1290,26.8020,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.9825,35.9278,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.8917,35.7336,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,6.1029,31.9203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.1290,31.5779,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.9825,40.8690,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +895,2.8917,40.7064,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +896,6.1029,30.8279,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.1290,30.4372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.9825,38.5260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +899,2.8917,38.3862,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,6.1029,33.2165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.1290,32.3681,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.9825,37.8736,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +903,2.8917,37.4427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +904,6.1029,27.8282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.1290,26.9990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.9825,36.2141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.8917,35.6145,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +908,6.1029,31.1780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.1290,30.1915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.9825,38.5007,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.8917,37.7926,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +912,6.1029,29.7895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.1290,29.0022,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.9825,37.5350,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.8917,37.0766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,6.1029,33.6129,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.1290,32.8392,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.9825,40.1987,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8917,39.4418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +920,6.1029,32.3083,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.1290,31.1617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.9825,40.8978,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8917,40.2987,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,6.1029,35.7773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.1290,34.6885,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.9825,40.2595,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8917,39.4984,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +928,6.1029,27.4660,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.1290,26.0559,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.9825,35.7044,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8917,34.6333,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +932,6.1029,31.9494,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.1290,30.5121,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.9825,38.9933,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.8917,38.2521,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,6.1029,30.9538,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.1290,28.8404,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.9825,37.5387,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8917,36.7810,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +940,6.1029,33.8741,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.1290,32.7720,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.9825,40.2279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.8917,39.2831,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,6.1029,32.6954,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.1290,30.9744,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.9825,39.7125,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.8917,38.7822,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +948,6.1029,35.0393,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.1290,32.9978,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.9825,41.0972,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8917,40.6270,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,6.1029,33.5823,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.1290,31.7585,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.9825,41.8084,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.8917,41.2131,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,6.1029,33.8283,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.1290,32.6775,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.9825,38.4030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.8917,37.4225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +960,6.1029,28.1608,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,3.1290,26.3070,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.9825,37.1324,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.8917,36.8834,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,6.1029,33.2606,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,3.1290,30.5926,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.9825,41.0247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +967,2.8917,40.0919,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +968,6.1029,30.7825,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,3.1290,28.5574,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.9825,36.7458,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.8917,35.5283,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +972,6.1029,34.3589,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,3.1290,32.3728,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.9825,40.6323,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +975,2.8917,39.4796,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +976,6.1029,32.7911,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,3.1290,31.0801,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.9825,40.3948,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +979,2.8917,39.5616,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +980,6.1029,38.3732,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,3.1290,32.9149,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.9825,44.6665,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.8917,43.3552,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,6.1029,34.5562,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,3.1290,33.3308,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.9825,38.6417,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.8917,37.9319,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +988,6.1029,26.6485,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,3.1290,25.9548,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.9825,32.3135,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.8917,30.5618,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,6.1029,31.5272,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,3.1290,29.9434,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.9825,39.6383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.8917,38.7506,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,6.1029,34.1842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,3.1290,32.6976,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.9825,41.1401,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.8917,40.4042,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,6.1029,32.7082,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,3.1290,31.9587,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.9825,39.8206,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.8917,39.3931,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1004,6.1029,34.0938,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,3.1290,33.6864,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.9825,40.2003,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1007,2.8917,37.6513,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1008,6.1029,28.3903,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,3.1290,27.1641,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.9825,37.0153,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1011,2.8917,35.7720,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,6.1029,32.6380,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,3.1290,30.1758,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.9825,41.9989,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1015,2.8917,41.2933,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1016,6.1029,32.1737,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,3.1290,30.7437,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.9825,38.1805,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1019,2.8917,37.2603,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,6.1029,32.3837,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,3.1290,30.7864,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.9825,38.9126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1023,2.8917,37.9022,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,6.1029,34.4644,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,3.1290,33.0243,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.9825,40.6070,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.8917,39.8895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,6.1029,33.0001,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,3.1290,31.9184,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.9825,41.7662,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.8917,41.3478,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1032,6.1029,34.8563,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,3.1290,33.6209,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.9825,40.5737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.8917,39.8517,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1036,6.1029,32.9536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,3.1290,31.7760,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.9825,37.2657,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.8917,36.5701,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1040,6.1029,29.4220,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,3.1290,27.6539,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.9825,36.8364,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.8917,35.9247,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1044,6.1029,32.4985,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,3.1290,30.7211,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.9825,40.8026,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.8917,39.9603,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,6.1029,32.8859,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,3.1290,30.8524,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.9825,38.5836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8917,37.8066,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,6.1029,32.6500,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,3.1290,31.5355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.9825,39.2071,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1055,2.8917,37.9625,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,6.1029,34.0350,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,3.1290,33.3241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.9825,40.4681,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.8917,40.1220,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,6.1029,33.0544,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,3.1290,32.6609,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.9825,39.8275,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.8917,39.5831,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,6.1029,33.3128,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,3.1290,33.0271,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.9825,39.9744,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1067,2.8917,39.6477,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1068,6.1029,34.2167,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,3.1290,33.8319,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.9825,40.6167,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.8917,40.3422,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1072,6.1029,34.1375,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,3.1290,33.8932,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.9825,41.8574,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.8917,41.6512,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,6.1029,34.6793,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,3.1290,34.0051,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.9825,38.9302,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.8917,38.6716,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,6.1029,30.4067,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,3.1290,29.2673,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.9825,36.1700,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.8917,34.8592,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,6.1029,31.5026,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.1290,30.6282,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.9825,38.9028,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.8917,38.6740,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,6.1029,34.6922,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.1290,34.0724,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.9825,41.7580,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.8917,41.5222,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1092,6.1029,34.4479,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.1290,33.2895,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.9825,37.8384,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.8917,37.2553,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1096,6.1029,28.0467,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.1290,27.3092,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.9825,35.3990,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1099,2.8917,34.9975,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1100,6.1029,31.4113,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.1290,30.6525,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.9825,40.6006,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.8917,39.5591,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,6.1029,33.4905,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.1290,33.2193,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.9825,40.9036,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.8917,40.7545,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,6.1029,32.1382,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.1290,31.6914,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.9825,36.5501,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8917,36.2533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,6.1029,27.8487,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.1290,27.5031,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.9825,35.7253,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8917,35.5845,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,6.1029,31.6252,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.1290,31.2788,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.9825,40.7383,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8917,40.5615,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,6.1029,33.8652,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.1290,33.5087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.9825,38.4122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.8917,38.3216,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,6.1029,27.1723,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.1290,26.9071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.9825,35.7856,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.8917,35.6795,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1128,6.1029,32.1566,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.1290,31.7533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.9825,40.0386,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.8917,39.9209,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1132,6.1029,30.3706,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.1290,30.1126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.9825,38.1185,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.8917,37.9929,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,6.1029,33.8088,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.1290,33.5888,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.9825,38.5426,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.8917,38.4083,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,6.1029,27.6448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.1290,27.3912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.9825,36.3713,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.8917,36.2867,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,6.1029,31.8113,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.1290,31.6051,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.9825,40.4618,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8917,40.3210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,6.1029,30.9747,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.1290,30.6385,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.9825,37.4811,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8917,37.3245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,6.1029,32.0463,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.1290,31.8548,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.9825,39.9086,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8917,39.7631,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,6.1029,34.7930,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.1290,34.4796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.9825,41.3347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8917,41.2287,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,6.1029,32.6526,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.1290,32.4119,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.9825,39.4191,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8917,39.3476,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,6.1029,33.3070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.1290,33.1624,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.9825,40.0562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.8917,39.9813,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,6.1029,33.1042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.1290,32.9772,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.9825,39.9464,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.8917,39.8907,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,6.1029,33.2418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.1290,33.1276,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.9825,40.0163,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.8917,39.9706,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,6.1029,33.2170,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.1290,33.0775,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.9825,40.0619,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8917,40.0275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,6.1029,33.2811,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.1290,33.2070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.9825,40.0508,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8917,39.9691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,6.1029,33.2446,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.1290,33.1495,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.9825,40.0571,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8917,39.9268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,6.1029,33.7211,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.1290,33.5962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.9825,38.6017,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8917,38.5010,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,6.1029,29.3286,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.1290,29.1053,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.9825,38.2705,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8917,38.0793,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,6.1029,37.6151,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.1290,37.2512,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.9825,51.8964,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8917,51.9273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.txt new file mode 100644 index 0000000..e97acdc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.txt @@ -0,0 +1,59 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +tile_reset_every_frames=0 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.038 +effective_logical_fps=59.543 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=24.733 +p95_encode_latency_ms=42.688 +max_encode_latency_ms=108.377 +avg_steady_encode_latency_ms=23.511 +p95_steady_encode_latency_ms=41.922 +max_steady_encode_latency_ms=52.771 +avg_tile_encode_latency_ms=20.585 +p95_tile_encode_latency_ms=41.214 +avg_max_tile_encode_latency_ms=23.506 +p95_max_tile_encode_latency_ms=41.768 +avg_steady_max_tile_encode_latency_ms=22.541 +p95_steady_max_tile_encode_latency_ms=41.328 +payload_bytes=1391053 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset_logical.csv new file mode 100644 index 0000000..03f0840 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_no_reset_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,108.3765,29.5730,231707 +1,4,0,10.9858,10.5118,65901 +2,4,0,20.5963,20.3583,36886 +3,4,0,30.2961,30.0282,69404 +4,4,0,40.2091,39.9853,87864 +5,4,0,50.3220,50.1575,53700 +6,4,0,60.4911,60.2210,24415 +7,4,0,70.3743,66.2857,15407 +8,4,0,72.0609,66.1328,12151 +9,4,0,66.4176,65.1704,11449 +10,4,0,57.7507,57.3764,8599 +11,4,0,51.2103,50.8082,6107 +12,4,0,44.9905,44.5295,5132 +13,4,0,39.1816,38.7517,3880 +14,4,0,31.6185,31.1782,4001 +15,4,0,27.1793,26.6359,3860 +16,4,0,21.5483,21.1005,4045 +17,4,0,11.4334,10.8089,3955 +18,4,0,10.9358,10.2806,3721 +19,4,0,10.8982,10.3642,3748 +20,4,0,11.0461,10.3150,3386 +21,4,0,11.0829,10.3936,2761 +22,4,0,11.0612,10.3708,2750 +23,4,0,10.9495,10.4334,2836 +24,4,0,11.3398,10.3728,2977 +25,4,0,11.2627,10.4160,2960 +26,4,0,11.5943,10.2047,3010 +27,4,0,12.0471,10.0049,2978 +28,4,0,11.7037,10.3496,2889 +29,4,0,12.1785,10.6985,2914 +30,4,0,11.6951,10.3893,2847 +31,4,0,13.8827,12.6156,3111 +32,4,0,12.2158,10.9241,2714 +33,4,0,14.3495,12.9083,2843 +34,4,0,12.4803,10.9125,2633 +35,4,0,12.6434,11.2734,2659 +36,4,0,12.0784,10.1811,2696 +37,4,0,11.1706,10.3560,2728 +38,4,0,11.1282,10.3903,2772 +39,4,0,10.9995,10.3722,2740 +40,4,0,10.8512,10.3642,2809 +41,4,0,10.8620,10.4305,2679 +42,4,0,10.8358,10.3504,2865 +43,4,0,10.8148,10.3412,2612 +44,4,0,10.7829,10.3745,2626 +45,4,0,10.8468,10.3544,2693 +46,4,0,10.7948,10.3127,2708 +47,4,0,10.7800,10.3356,2765 +48,4,0,10.8727,10.3810,2645 +49,4,0,10.8542,10.4159,2733 +50,4,0,11.1102,10.6898,2667 +51,4,0,10.7454,10.3223,2647 +52,4,0,10.8039,10.3427,2659 +53,4,0,10.6418,10.2342,2757 +54,4,0,10.6745,10.2596,2656 +55,4,0,10.6428,10.2302,2594 +56,4,0,10.8737,10.4170,2603 +57,4,0,10.9390,10.4917,2605 +58,4,0,10.9350,10.3969,2610 +59,4,0,11.1135,10.5543,2641 +60,4,0,10.9317,10.3668,2637 +61,4,0,10.9686,10.4489,2691 +62,4,0,11.1165,10.4129,2620 +63,4,0,10.9108,10.3041,2614 +64,4,0,11.2500,10.5699,2666 +65,4,0,10.9542,10.3477,2613 +66,4,0,11.8464,10.3995,2624 +67,4,0,13.6687,12.5028,2612 +68,4,0,11.0541,10.2991,2687 +69,4,0,11.2103,10.3735,2622 +70,4,0,11.0978,10.3778,2623 +71,4,0,11.3298,10.5150,2647 +72,4,0,11.3832,10.5386,2645 +73,4,0,11.2868,10.5225,2643 +74,4,0,11.4859,10.6307,2635 +75,4,0,11.2954,10.4639,2718 +76,4,0,11.2700,10.4676,2602 +77,4,0,15.8012,13.6098,2605 +78,4,0,11.7765,9.5001,2612 +79,4,0,11.4453,10.4580,2607 +80,4,0,11.1890,10.3623,2630 +81,4,0,11.1554,10.2850,2617 +82,4,0,11.1745,10.3577,2661 +83,4,0,13.9652,11.1543,2606 +84,4,0,11.3005,10.4327,2609 +85,4,0,11.6606,10.2812,2612 +86,4,0,11.7521,10.6049,2632 +87,4,0,11.3695,10.4953,2606 +88,4,0,11.7401,10.8598,2610 +89,4,0,12.0920,10.1130,2652 +90,4,0,11.9340,9.9749,2594 +91,4,0,13.8373,13.0155,2609 +92,4,0,12.2686,11.3212,2598 +93,4,0,11.9143,10.6704,2613 +94,4,0,12.2749,10.7316,2618 +95,4,0,11.6863,10.2200,2604 +96,4,0,11.3577,10.6642,2677 +97,4,0,11.9033,10.4898,2620 +98,4,0,11.9180,9.5675,2594 +99,4,0,11.6578,10.3630,2594 +100,4,0,11.9612,10.0885,2598 +101,4,0,11.6136,10.1674,2609 +102,4,0,11.7457,10.9057,2616 +103,4,0,11.8260,10.1640,2630 +104,4,0,14.3289,9.7482,2606 +105,4,0,11.5851,10.1605,2604 +106,4,0,12.3566,10.9679,2609 +107,4,0,11.6766,10.5353,2610 +108,4,0,12.2439,10.6150,2652 +109,4,0,11.7870,10.4664,2600 +110,4,0,12.5354,10.9367,2640 +111,4,0,13.6103,12.2564,2594 +112,4,0,12.0681,10.7842,2594 +113,4,0,11.9440,9.8569,2600 +114,4,0,11.5858,10.0073,2599 +115,4,0,11.2912,10.4463,2607 +116,4,0,11.3956,10.2624,2603 +117,4,0,11.8956,10.2677,2623 +118,4,0,11.4533,10.3759,2600 +119,4,0,12.6232,10.9620,2610 +120,4,0,11.7495,10.0631,2594 +121,4,0,11.6564,10.1083,2594 +122,4,0,11.5968,10.1302,2603 +123,4,0,15.6965,14.1255,2602 +124,4,0,11.5587,10.2823,2619 +125,4,0,11.5509,10.0477,2600 +126,4,0,11.5963,10.3992,2600 +127,4,0,11.5890,10.0289,2594 +128,4,0,11.5110,9.9238,2594 +129,4,0,11.4514,9.9827,2599 +130,4,0,11.4947,9.9240,2607 +131,4,0,11.7632,9.9391,2605 +132,4,0,11.5402,10.2161,2596 +133,4,0,11.6997,9.8828,2594 +134,4,0,11.6514,9.9380,2594 +135,4,0,12.7521,11.6750,2594 +136,4,0,11.1960,10.1068,2594 +137,4,0,11.2476,10.5116,2594 +138,4,0,11.3123,10.6008,2604 +139,4,0,11.6160,10.4122,2594 +140,4,0,11.9948,9.9427,2594 +141,4,0,11.6960,10.4848,2599 +142,4,0,12.8798,11.6252,2594 +143,4,0,12.6054,10.2485,2594 +144,4,0,11.8392,10.4202,2594 +145,4,0,12.1352,10.6886,2604 +146,4,0,12.5643,10.9580,2594 +147,4,0,11.8175,10.6513,2594 +148,4,0,11.9268,10.6282,2594 +149,4,0,11.8503,10.8358,2601 +150,4,0,12.0349,10.6438,2601 +151,4,0,12.0895,10.6189,2594 +152,4,0,11.4074,10.5120,2606 +153,4,0,11.2307,10.3527,2594 +154,4,0,11.6894,10.3750,2594 +155,4,0,11.8501,10.0025,2594 +156,4,0,11.4057,9.9588,2594 +157,4,0,11.2388,10.2788,2594 +158,4,0,11.6570,10.6058,2594 +159,4,0,11.8220,10.3978,2594 +160,4,0,11.2740,10.2737,2594 +161,4,0,11.0542,10.3088,2594 +162,4,0,11.0889,10.3878,2594 +163,4,0,11.0297,10.3527,2598 +164,4,0,11.1333,10.3025,2594 +165,4,0,11.1269,10.3585,2594 +166,4,0,10.9975,10.3410,2594 +167,4,0,11.7297,10.0442,2594 +168,4,0,11.1175,10.1880,2594 +169,4,0,11.2718,10.4262,2594 +170,4,0,11.0578,10.2978,2594 +171,4,0,10.9106,10.2335,2594 +172,4,0,10.9587,10.2599,2594 +173,4,0,10.9198,10.2225,2594 +174,4,0,11.7490,10.2812,2594 +175,4,0,11.6068,10.3673,2594 +176,4,0,11.8335,10.3926,2594 +177,4,0,11.5700,10.2552,2594 +178,4,0,12.0640,10.2958,2594 +179,4,0,11.3736,10.5775,2594 +180,4,0,11.6141,10.0902,2594 +181,4,0,13.5013,11.7012,2594 +182,4,0,31.5988,29.7526,2594 +183,4,0,39.0930,37.9088,2594 +184,4,0,39.3118,38.2748,2594 +185,4,0,40.7954,39.8225,2594 +186,4,0,43.5261,42.0763,2594 +187,4,0,41.1430,40.1007,2594 +188,4,0,38.9322,37.7060,2594 +189,4,0,36.8148,35.3457,2594 +190,4,0,41.3223,40.1953,2594 +191,4,0,41.4353,40.4946,2594 +192,4,0,36.9138,36.2745,2594 +193,4,0,36.3851,36.0000,2594 +194,4,0,39.9200,39.4109,2594 +195,4,0,38.8813,38.4333,2594 +196,4,0,42.6742,42.3110,2594 +197,4,0,39.3263,38.9767,2594 +198,4,0,37.7404,37.4375,2594 +199,4,0,36.5145,36.1406,2594 +200,4,0,41.0199,40.5647,2594 +201,4,0,38.9944,38.5620,2594 +202,4,0,40.0055,39.7024,2594 +203,4,0,38.3849,38.1518,2594 +204,4,0,35.9604,35.7262,2594 +205,4,0,38.2908,37.9239,2594 +206,4,0,42.1522,41.6596,2594 +207,4,0,41.8809,41.4132,2594 +208,4,0,39.2022,38.8217,2594 +209,4,0,38.6233,38.2662,2594 +210,4,0,35.9333,35.5766,2594 +211,4,0,39.7792,39.4010,2594 +212,4,0,37.3340,36.8147,2594 +213,4,0,41.6745,41.3273,2594 +214,4,0,41.8470,41.4814,2594 +215,4,0,37.0334,36.6947,2594 +216,4,0,36.3946,36.0136,2594 +217,4,0,40.6990,40.3650,2594 +218,4,0,41.5618,41.2600,2594 +219,4,0,38.7452,38.4183,2594 +220,4,0,42.3201,41.7433,2594 +221,4,0,36.7860,36.4008,2594 +222,4,0,36.3762,35.9278,2594 +223,4,0,41.2711,40.8690,2594 +224,4,0,38.9260,38.5260,2594 +225,4,0,38.2346,37.8736,2594 +226,4,0,36.5988,36.2141,2594 +227,4,0,38.9552,38.5007,2594 +228,4,0,37.9148,37.5350,2594 +229,4,0,40.5864,40.1987,2594 +230,4,0,41.3392,40.8978,2594 +231,4,0,40.7633,40.2595,2594 +232,4,0,36.6801,35.7044,2594 +233,4,0,39.9863,38.9933,2594 +234,4,0,38.6788,37.5387,2594 +235,4,0,40.9562,40.2279,2594 +236,4,0,40.4889,39.7125,2594 +237,4,0,42.2482,41.0972,2594 +238,4,0,42.9493,41.8084,2594 +239,4,0,38.9979,38.4030,2594 +240,4,0,38.2016,37.1324,2594 +241,4,0,42.2984,41.0247,2594 +242,4,0,38.7795,36.7458,2594 +243,4,0,41.4997,40.6323,2594 +244,4,0,41.0260,40.3948,2594 +245,4,0,45.4225,44.6665,2594 +246,4,0,39.3603,38.6417,2594 +247,4,0,33.3993,32.3135,2594 +248,4,0,40.4673,39.6383,2594 +249,4,0,41.9982,41.1401,2594 +250,4,0,40.3913,39.8206,2594 +251,4,0,40.7627,40.2003,2594 +252,4,0,37.8934,37.0153,2594 +253,4,0,44.4202,41.9989,2594 +254,4,0,39.3504,38.1805,2594 +255,4,0,39.8143,38.9126,2594 +256,4,0,41.5752,40.6070,2594 +257,4,0,42.2222,41.7662,2594 +258,4,0,41.8388,40.5737,2594 +259,4,0,38.0513,37.2657,2594 +260,4,0,37.3858,36.8364,2594 +261,4,0,41.9175,40.8026,2594 +262,4,0,40.1963,38.5836,2594 +263,4,0,40.1554,39.2071,2594 +264,4,0,41.2875,40.4681,2594 +265,4,0,40.2265,39.8275,2594 +266,4,0,40.3921,39.9744,2594 +267,4,0,41.1110,40.6167,2594 +268,4,0,42.3615,41.8574,2594 +269,4,0,39.9500,38.9302,2594 +270,4,0,38.1825,36.1700,2594 +271,4,0,40.0968,38.9028,2594 +272,4,0,43.1758,41.7580,2594 +273,4,0,39.3051,37.8384,2594 +274,4,0,36.5121,35.3990,2594 +275,4,0,41.6992,40.6006,2594 +276,4,0,41.3702,40.9036,2594 +277,4,0,37.3550,36.5501,2594 +278,4,0,36.3390,35.7253,2594 +279,4,0,41.3716,40.7383,2594 +280,4,0,39.0739,38.4122,2594 +281,4,0,36.3731,35.7856,2594 +282,4,0,40.7051,40.0386,2594 +283,4,0,38.6254,38.1185,2594 +284,4,0,39.0206,38.5426,2594 +285,4,0,36.9048,36.3713,2594 +286,4,0,40.9350,40.4618,2594 +287,4,0,38.0442,37.4811,2594 +288,4,0,40.3264,39.9086,2594 +289,4,0,41.8641,41.3347,2594 +290,4,0,39.8665,39.4191,2594 +291,4,0,40.4045,40.0562,2594 +292,4,0,40.2549,39.9464,2594 +293,4,0,40.3442,40.0163,2594 +294,4,0,40.4655,40.0619,2594 +295,4,0,40.3415,40.0508,2594 +296,4,0,40.4198,40.0571,2594 +297,4,0,38.8837,38.6017,2594 +298,4,0,38.9617,38.2705,2594 +299,4,0,52.7709,51.9273,2594 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.csv new file mode 100644 index 0000000..d36f543 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2021,28.2829,0.0251,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8237,24.7637,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8121,24.6368,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8580,22.4254,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.2021,5.7697,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8237,5.6738,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8121,10.4537,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8580,10.4505,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.2021,15.4005,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8237,15.3600,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8121,20.4789,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8580,20.3795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.2021,25.4180,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8237,25.4272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8121,30.3335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8580,30.3376,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.2021,35.1170,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8237,35.3529,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8121,40.0604,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8580,40.4951,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.2021,45.0426,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8237,45.3534,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8121,49.9209,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8580,50.2308,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.2021,54.7675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8237,55.0592,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8121,59.7550,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8580,59.9264,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.2021,64.3335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8237,61.3662,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8121,65.8832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8580,61.5228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.2021,55.7896,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8237,56.4584,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8121,60.5815,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8580,61.2979,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.2021,47.7165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8237,48.5554,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8121,52.5356,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8580,53.3878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.2021,41.6582,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8237,42.3511,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8121,46.5171,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8580,47.1678,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.2021,35.0722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8237,35.6063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8121,39.8879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8580,40.4655,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.2021,29.0188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8237,29.4845,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8121,34.5450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8580,34.6867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.2021,22.8010,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8237,22.8070,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8121,27.5864,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8580,27.5515,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.2021,16.4284,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8237,16.3900,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8121,21.2310,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8580,21.0501,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.2021,13.1241,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8237,12.9869,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8121,18.1644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8580,18.0671,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.2021,6.6405,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8237,6.3871,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8121,11.3453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8580,11.2723,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.2021,5.9846,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8237,5.7029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8121,10.6252,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8580,10.4817,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.2021,5.9674,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8237,5.6780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8121,10.6130,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8580,10.5124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.2021,6.1301,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8237,5.8263,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8121,10.7081,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8580,10.5184,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.2021,6.0892,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8237,5.7508,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8121,10.5686,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8580,10.5034,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.2021,6.6385,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8237,6.3477,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8121,10.6824,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8580,10.5027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.2021,6.1632,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8237,5.7643,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8121,10.7285,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8580,10.5810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.2021,6.1754,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8237,5.8427,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8121,11.2198,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8580,10.9955,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.2021,6.7852,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8237,5.7358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8121,10.6010,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8580,10.4988,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.2021,7.4133,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8237,6.4607,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8121,10.6492,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8580,10.4320,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.2021,8.4052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8237,7.3997,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8121,10.7553,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8580,10.4947,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.2021,6.8355,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8237,5.8941,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8121,16.3895,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8580,16.8493,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.2021,6.5789,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8237,5.6825,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8121,10.3117,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8580,10.2858,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.2021,5.5611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8237,5.4196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8121,10.5037,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8580,10.4087,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.2021,6.0845,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8237,5.7544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8121,10.3395,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8580,10.1765,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.2021,6.0808,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8237,5.6474,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8121,10.2253,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8580,9.8377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.2021,6.0602,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8237,5.7353,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8121,10.5991,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8580,10.5123,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.2021,6.6602,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8237,5.7601,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8121,10.0548,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8580,9.7946,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.2021,6.4976,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8237,5.7599,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8121,10.2855,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8580,10.0085,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.2021,6.5645,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8237,5.8315,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8121,10.4908,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8580,10.2745,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.2021,6.5204,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8237,5.7456,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8121,10.5843,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8580,10.3626,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.2021,6.4289,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8237,5.6985,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8121,10.5160,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8580,10.2972,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.2021,8.0116,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8237,6.9744,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8121,10.3944,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8580,10.5297,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.2021,6.7516,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8237,5.7191,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8121,10.6538,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8580,10.4027,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.2021,6.3592,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8237,5.7889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8121,10.2611,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8580,9.9552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.2021,6.8705,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8237,6.6356,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8121,8.7576,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8580,8.5170,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.2021,6.1973,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8237,5.7069,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8121,10.5095,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8580,10.3645,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.2021,6.4106,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8237,5.8662,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8121,10.8488,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8580,10.6255,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.2021,6.3617,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8237,5.8852,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8121,10.8039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8580,10.7067,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.2021,6.2566,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8237,5.8439,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8121,10.7930,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8580,10.6423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.2021,6.3621,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8237,5.8960,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8121,10.8225,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8580,10.7205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.2021,6.3147,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8237,5.8580,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8121,10.6746,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8580,10.5668,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.2021,6.1310,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8237,5.7683,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8121,10.7197,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8580,10.5994,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.2021,6.1515,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8237,5.7613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8121,10.7086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8580,10.6780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.2021,5.8749,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8237,5.6375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8121,10.6150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8580,10.5422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.2021,6.2426,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8237,5.7921,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8121,10.9689,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8580,10.8062,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.2021,6.1417,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8237,5.7817,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8121,10.8275,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8580,10.7935,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.2021,6.1396,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8237,5.7911,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8121,10.8033,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8580,10.7329,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.2021,6.2054,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8237,5.8329,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8121,10.7640,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8580,10.6773,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.2021,6.2627,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8237,5.8275,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8121,10.9012,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8580,10.7643,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.2021,6.5137,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8237,6.1106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8121,11.2590,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8580,11.1873,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.2021,6.2353,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8237,5.8468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8121,10.8986,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8580,10.8727,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.2021,6.1425,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8237,5.7947,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8121,10.9947,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8580,10.8522,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.2021,6.1560,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8237,5.8320,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8121,10.9002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8580,10.8745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.2021,6.1127,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8237,5.7619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8121,10.8042,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8580,10.7085,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.2021,6.0717,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8237,5.7769,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8121,10.7409,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8580,10.7212,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.2021,6.0567,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8237,5.7155,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8121,10.9227,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8580,10.8078,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.2021,6.2004,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8237,5.8792,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8121,10.9296,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8580,10.8470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.2021,6.1910,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8237,5.8000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8121,10.7899,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8580,10.6796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.2021,6.2868,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8237,5.8631,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8121,10.9002,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8580,10.8150,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.2021,6.3099,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8237,5.8365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8121,10.8712,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8580,10.7775,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.2021,6.2003,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8237,5.8068,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8121,10.8825,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8580,10.7600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.2021,6.3546,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8237,5.8819,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8121,10.8402,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8580,10.7493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.2021,6.2645,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8237,5.7771,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8121,10.7894,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8580,10.6525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.2021,5.8403,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8237,5.5998,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8121,10.5589,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8580,10.5155,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.2021,5.8327,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8237,5.5664,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8121,10.5052,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8580,10.4732,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.2021,5.7191,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8237,5.4895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8121,10.4772,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8580,10.3940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.2021,5.7320,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8237,5.4747,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8121,10.2999,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8580,10.1801,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.2021,5.8907,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8237,5.6438,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8121,10.3147,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8580,10.2693,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.2021,5.8164,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8237,5.5237,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8121,10.3478,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8580,10.3055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.2021,5.8700,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8237,5.5615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8121,10.5332,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8580,10.4331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.2021,5.9631,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8237,5.6406,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8121,10.5468,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8580,10.4337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.2021,5.9240,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8237,5.5332,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8121,10.4040,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8580,10.3794,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.2021,6.0041,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8237,5.7013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8121,10.5743,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8580,10.4798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.2021,6.0182,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8237,5.6510,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8121,10.7600,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8580,10.6074,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.2021,5.9773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8237,5.6486,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8121,10.4391,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8580,10.3428,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.2021,6.0202,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8237,5.7190,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8121,10.6167,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8580,10.5772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.2021,5.9382,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8237,5.7158,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8121,10.4940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8580,10.4612,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.2021,6.7819,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8237,6.1522,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8121,10.9253,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8580,10.8718,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.2021,7.3362,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8237,6.3315,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8121,10.5075,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8580,10.2588,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.2021,6.3290,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8237,5.6863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8121,10.7103,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8580,10.4962,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.2021,6.4909,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8237,5.7278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8121,10.6659,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8580,10.4423,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.2021,6.7350,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8237,5.8294,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8121,10.4901,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8580,10.3483,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.2021,6.6225,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8237,5.6717,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8121,10.6581,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8580,10.1120,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.2021,6.4715,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8237,5.8153,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8121,10.0287,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8580,9.8370,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.2021,6.4592,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8237,5.8011,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8121,10.2255,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8580,9.8589,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.2021,6.5203,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8237,5.9234,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8121,10.1068,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8580,9.8624,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.2021,6.2129,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8237,5.8500,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8121,10.1450,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8580,9.8486,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.2021,6.6180,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8237,5.7431,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8121,10.4436,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8580,10.2728,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.2021,6.0047,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8237,5.6861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8121,10.3159,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8580,10.2401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.2021,5.9710,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8237,5.6997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8121,10.5400,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8580,10.3730,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.2021,6.1829,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8237,5.8608,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8121,9.3582,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8580,9.4115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.2021,6.1905,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8237,5.7081,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8121,10.2216,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8580,10.2236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.2021,6.0395,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8237,5.7328,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8121,11.0346,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8580,10.9663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.2021,6.0471,0.0327,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8237,5.5767,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8121,10.4185,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8580,10.1685,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.2021,6.1768,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8237,5.7125,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8121,10.3588,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8580,10.2982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.2021,6.2780,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8237,5.8505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8121,10.2340,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8580,10.2006,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.2021,6.4020,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8237,5.6088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8121,10.3299,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8580,7.9140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.2021,6.0352,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8237,5.7180,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8121,10.6366,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8580,10.4489,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.2021,6.0699,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8237,5.7123,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8121,10.1677,0.0263,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8580,10.0261,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.2021,6.1658,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8237,5.6059,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8121,9.9875,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8580,9.7157,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.2021,5.8709,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8237,5.6976,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8121,10.5998,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8580,10.5423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.2021,6.4100,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8237,5.7836,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8121,10.1997,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8580,9.8758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.2021,6.7085,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8237,5.9390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8121,10.5155,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8580,10.3003,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.2021,6.1417,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8237,5.6745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8121,10.1345,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8580,10.0851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.2021,6.6889,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8237,5.9247,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8121,10.4757,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8580,10.3453,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.2021,6.4801,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8237,5.6722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8121,10.2540,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8580,10.1274,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.2021,6.7381,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8237,7.2223,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8121,10.1619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8580,9.9947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.2021,13.3165,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8237,12.3994,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8121,11.7933,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8580,11.6118,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.2021,5.9241,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8237,5.5782,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8121,10.4731,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8580,10.3565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.2021,6.2513,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8237,5.8080,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8121,13.3099,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8580,13.1429,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.2021,6.2749,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8237,5.8744,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8121,10.6883,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8580,10.6598,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.2021,6.5454,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8237,5.9299,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8121,8.3730,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8580,9.2728,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.2021,6.3095,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8237,6.0322,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8121,10.5604,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8580,10.3100,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.2021,45.8428,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +481,2.8237,26.5647,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +482,2.8121,25.3179,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +483,2.8580,25.8439,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +484,5.2021,5.9135,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +485,2.8237,5.7266,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +486,2.8121,10.6077,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +487,2.8580,10.5781,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +488,5.2021,15.5371,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +489,2.8237,15.4203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +490,2.8121,20.3823,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +491,2.8580,20.2886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +492,5.2021,25.2560,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +493,2.8237,25.2052,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +494,2.8121,30.3295,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +495,2.8580,30.2589,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +496,5.2021,35.1508,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +497,2.8237,35.0771,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +498,2.8121,40.1198,0.0246,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +499,2.8580,40.1140,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +500,5.2021,45.0500,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +501,2.8237,45.0354,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +502,2.8121,50.0388,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +503,2.8580,49.9835,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +504,5.2021,55.0199,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +505,2.8237,54.9654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +506,2.8121,60.0730,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +507,2.8580,60.0013,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +508,5.2021,64.9604,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +509,2.8237,61.3745,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +510,2.8121,66.3870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +511,2.8580,61.3609,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +512,5.2021,66.3784,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +513,2.8237,61.3473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +514,2.8121,66.3437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +515,2.8580,61.3728,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +516,5.2021,66.3435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +517,2.8237,61.3922,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +518,2.8121,66.4544,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +519,2.8580,61.2481,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +520,5.2021,66.3445,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +521,2.8237,61.5799,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +522,2.8121,66.4942,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +523,2.8580,61.4065,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +524,5.2021,66.4701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +525,2.8237,61.5050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +526,2.8121,66.4706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +527,2.8580,61.5280,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +528,5.2021,66.5010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +529,2.8237,61.4607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +530,2.8121,66.4565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +531,2.8580,61.4002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +532,5.2021,66.4282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +533,2.8237,61.6182,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +534,2.8121,66.6338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +535,2.8580,61.6329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +536,5.2021,66.5587,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +537,2.8237,61.7967,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +538,2.8121,66.7275,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +539,2.8580,61.6952,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +540,5.2021,66.8505,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +541,2.8237,61.9077,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +542,2.8121,66.7551,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +543,2.8580,62.0190,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +544,5.2021,66.8182,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +545,2.8237,61.7421,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +546,2.8121,66.5659,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +547,2.8580,61.9140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +548,5.2021,66.8712,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +549,2.8237,61.9758,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +550,2.8121,66.7000,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +551,2.8580,62.0930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +552,5.2021,61.8668,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +553,2.8237,62.0103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +554,2.8121,66.5555,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +555,2.8580,62.0478,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +556,5.2021,53.6477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +557,2.8237,54.0959,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +558,2.8121,58.2449,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +559,2.8580,58.8864,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +560,5.2021,46.7024,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +561,2.8237,47.1661,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +562,2.8121,51.3156,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +563,2.8580,52.1494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +564,5.2021,40.4437,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +565,2.8237,41.1199,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +566,2.8121,45.2270,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +567,2.8580,46.1438,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.2021,33.7570,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +569,2.8237,34.6192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +570,2.8121,38.3524,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8580,39.3870,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +572,5.2021,27.4417,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +573,2.8237,28.2775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +574,2.8121,32.2303,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +575,2.8580,33.0734,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +576,5.2021,22.7826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +577,2.8237,23.5349,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +578,2.8121,27.5350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +579,2.8580,28.4405,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +580,5.2021,13.7416,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +581,2.8237,14.5818,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +582,2.8121,18.4751,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +583,2.8580,19.2656,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +584,5.2021,7.9656,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +585,2.8237,8.6397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +586,2.8121,12.5948,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +587,2.8580,13.2698,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +588,5.2021,5.7020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +589,2.8237,5.4899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +590,2.8121,10.2657,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +591,2.8580,10.2362,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +592,5.2021,5.8884,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +593,2.8237,5.5392,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +594,2.8121,10.3312,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +595,2.8580,10.2027,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +596,5.2021,6.0434,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +597,2.8237,5.5895,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +598,2.8121,10.4607,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +599,2.8580,10.3179,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +600,5.2021,6.4618,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +601,2.8237,5.7566,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8121,9.9089,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +603,2.8580,9.9250,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +604,5.2021,6.0295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +605,2.8237,5.7174,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8121,10.4916,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +607,2.8580,10.2860,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +608,5.2021,6.1511,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +609,2.8237,5.7456,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8121,10.3673,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +611,2.8580,10.1609,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +612,5.2021,6.4097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +613,2.8237,5.6507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8121,10.5065,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +615,2.8580,10.3631,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +616,5.2021,10.3006,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +617,2.8237,9.3104,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8121,10.3905,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +619,2.8580,10.1852,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +620,5.2021,6.1201,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +621,2.8237,6.2035,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8121,7.9971,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +623,2.8580,10.3973,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.2021,6.6494,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +625,2.8237,5.7460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8121,10.6513,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +627,2.8580,10.4284,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +628,5.2021,6.3902,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +629,2.8237,5.8120,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8121,10.1812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +631,2.8580,10.0560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +632,5.2021,5.9473,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +633,2.8237,5.5488,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8121,11.0264,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +635,2.8580,11.0102,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +636,5.2021,6.0844,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +637,2.8237,5.6745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8121,10.2073,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +639,2.8580,10.2291,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +640,5.2021,6.3571,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8237,6.4275,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8121,10.4440,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +643,2.8580,10.2171,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +644,5.2021,6.5663,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8237,6.0509,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8121,10.1380,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +647,2.8580,10.0483,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +648,5.2021,6.3663,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8237,5.8325,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8121,10.4737,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +651,2.8580,10.2860,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.2021,5.9850,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8237,5.8002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8121,10.3170,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +655,2.8580,10.3238,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +656,5.2021,6.4669,0.0532,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8237,7.0655,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8121,10.4075,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +659,2.8580,10.2316,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +660,5.2021,6.0221,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8237,5.6045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8121,10.0693,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +663,2.8580,9.9549,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +664,5.2021,6.0635,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8237,5.6825,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8121,10.4526,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +667,2.8580,10.3360,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +668,5.2021,6.0530,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8237,5.6884,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8121,10.9409,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +671,2.8580,10.7146,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +672,5.2021,6.4564,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8237,5.6795,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8121,10.6802,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +675,2.8580,10.4748,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.2021,6.8872,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8237,5.7032,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8121,10.2822,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +679,2.8580,10.1724,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.2021,7.3131,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8237,6.6635,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8121,10.7995,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +683,2.8580,10.5667,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.2021,6.7648,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8237,5.7327,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8121,10.3387,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +687,2.8580,10.1010,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +688,5.2021,6.4453,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8237,5.8107,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8121,10.6093,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +691,2.8580,10.4696,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +692,5.2021,6.0507,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8237,5.6174,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8121,10.3760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +695,2.8580,10.1880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +696,5.2021,6.0365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8237,5.7135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8121,10.4430,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.8580,10.2857,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +700,5.2021,8.0994,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8237,7.1238,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8121,10.9298,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8580,10.5222,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.2021,6.5307,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8237,5.7155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8121,10.7542,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8580,10.5447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +708,5.2021,6.8663,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8237,5.7689,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8121,9.9630,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8580,10.1656,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +712,5.2021,6.6299,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8237,5.6820,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8121,10.4442,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +715,2.8580,10.2710,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +716,5.2021,6.4961,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8237,5.7818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8121,9.9412,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +719,2.8580,9.7286,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +720,5.2021,6.6851,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.8237,5.7166,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8121,10.4283,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +723,2.8580,10.3000,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +724,5.2021,6.6757,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8237,5.6894,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8121,10.7375,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +727,2.8580,10.5145,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +728,5.2021,6.8899,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8237,6.2127,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8121,10.8098,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +731,2.8580,10.5928,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +732,5.2021,6.6786,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8237,5.8202,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8121,10.4440,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +735,2.8580,10.0554,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +736,5.2021,6.6004,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8237,5.8720,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8121,10.8193,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +739,2.8580,10.8190,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +740,5.2021,6.6910,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8237,5.7448,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8121,10.4357,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.8580,10.3651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +744,5.2021,6.3889,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8237,5.6461,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8121,10.3387,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.8580,10.1235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +748,5.2021,7.0230,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8237,5.9068,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8121,11.4301,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.8580,11.4551,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +752,5.2021,6.3704,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8237,5.6448,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8121,10.6355,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.8580,10.4081,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +756,5.2021,6.3163,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8237,5.8027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8121,10.4615,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +759,2.8580,10.5379,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +760,5.2021,7.0951,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8237,6.3173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8121,10.5473,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +763,2.8580,10.4224,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +764,5.2021,6.2273,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8237,5.6369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8121,10.6381,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +767,2.8580,10.4265,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +768,5.2021,6.9170,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8237,5.8875,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8121,10.2412,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +771,2.8580,10.2455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +772,5.2021,6.4154,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8237,6.5177,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8121,10.1022,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +775,2.8580,9.8179,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +776,5.2021,6.2127,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8237,5.6889,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8121,10.4740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +779,2.8580,10.3183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +780,5.2021,6.1588,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8237,5.7458,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8121,10.6870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +783,2.8580,10.7084,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +784,5.2021,5.8496,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8237,5.5409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8121,10.2300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.8580,10.1766,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +788,5.2021,5.8730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8237,5.5599,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8121,10.3815,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.8580,10.2876,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +792,5.2021,5.7334,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8237,5.5176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8121,10.3228,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.8580,10.2560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +796,5.2021,5.8223,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8237,5.6219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8121,10.5542,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.8580,10.3914,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +800,5.2021,5.9098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8237,5.6260,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8121,10.2065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.8580,10.1062,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +804,5.2021,5.6673,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8237,5.5480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8121,10.2938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.8580,10.1837,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +808,5.2021,5.9177,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8237,5.5740,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8121,10.3721,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +811,2.8580,10.3052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +812,5.2021,5.7613,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8237,5.5181,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8121,10.3598,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +815,2.8580,10.2638,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.2021,6.0371,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8237,5.6316,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8121,10.6102,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +819,2.8580,10.6121,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +820,5.2021,5.8792,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8237,5.5747,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8121,10.4357,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +823,2.8580,10.3639,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +824,5.2021,5.9005,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8237,5.6199,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8121,10.2805,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +827,2.8580,10.1849,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +828,5.2021,6.1862,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8237,5.7250,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8121,10.5595,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8580,10.3785,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +832,5.2021,6.0159,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8237,5.6287,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8121,10.7483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.8580,10.3605,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +836,5.2021,6.6845,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8237,6.0153,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8121,9.7306,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8580,9.3948,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +840,5.2021,6.0541,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8237,5.6679,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8121,10.6078,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +843,2.8580,10.3636,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +844,5.2021,6.7652,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8237,5.8947,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8121,10.4820,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +847,2.8580,10.2812,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +848,5.2021,6.5625,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8237,5.9698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8121,10.2495,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +851,2.8580,10.0407,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +852,5.2021,6.2796,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8237,5.5980,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8121,10.4555,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +855,2.8580,10.2722,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +856,5.2021,6.2029,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8237,5.6593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8121,10.1303,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +859,2.8580,9.6020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +860,5.2021,6.3688,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8237,5.6031,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8121,10.3739,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +863,2.8580,10.1239,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +864,5.2021,6.4580,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8237,5.6437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8121,10.6308,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +867,2.8580,10.6216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +868,5.2021,6.6902,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8237,5.6791,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8121,10.4051,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +871,2.8580,10.2292,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +872,5.2021,6.4871,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8237,6.4222,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8121,8.6323,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8580,9.6665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +876,5.2021,6.3501,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8237,5.6010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8121,10.2102,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +879,2.8580,9.9900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +880,5.2021,7.1039,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8237,5.7810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8121,10.0505,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.8580,10.1873,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +884,5.2021,6.4688,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8237,5.6490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8121,10.5268,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +887,2.8580,10.2840,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +888,5.2021,6.5652,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8237,5.8932,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8121,10.4158,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +891,2.8580,9.9558,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.2021,6.7300,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8237,5.6723,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8121,9.9456,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +895,2.8580,10.0216,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +896,5.2021,6.3041,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8237,5.8228,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8121,11.9782,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +899,2.8580,12.0995,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +900,5.2021,6.4010,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8237,5.9334,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8121,10.4340,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +903,2.8580,10.2688,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +904,5.2021,6.4117,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8237,5.6664,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8121,11.6611,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +907,2.8580,11.1575,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +908,5.2021,6.2389,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8237,5.7257,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8121,10.3874,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +911,2.8580,10.2654,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +912,5.2021,5.9630,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8237,5.6069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8121,10.2169,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +915,2.8580,9.9913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +916,5.2021,6.9219,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8237,6.2287,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8121,10.3980,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8580,10.1998,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +920,5.2021,6.0323,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8237,5.6372,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8121,10.3107,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8580,10.1499,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +924,5.2021,6.1372,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8237,5.6753,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8121,10.4895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8580,10.3505,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +928,5.2021,6.1391,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8237,5.7024,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8121,10.5587,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8580,10.5165,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +932,5.2021,5.9270,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8237,5.6481,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8121,10.5446,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +935,2.8580,10.3110,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.2021,6.2040,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8237,5.7328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8121,10.5871,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +939,2.8580,10.3898,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +940,5.2021,6.3472,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8237,5.8427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8121,10.7335,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +943,2.8580,10.6492,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +944,5.2021,6.0491,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8237,5.6421,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8121,10.4588,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +947,2.8580,10.3496,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +948,5.2021,6.0103,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8237,5.6500,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8121,10.4073,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +951,2.8580,10.3187,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +952,5.2021,5.8894,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8237,5.5697,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8121,10.3873,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +955,2.8580,10.3163,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,5.2021,5.9490,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8237,5.6164,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8121,10.6013,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +959,2.8580,10.3445,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +960,5.2021,42.6038,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +961,2.8237,26.0537,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +962,2.8121,26.0219,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +963,2.8580,23.3407,0.0101,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +964,5.2021,5.9885,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +965,2.8237,5.7666,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +966,2.8121,10.6604,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +967,2.8580,10.6198,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +968,5.2021,15.6601,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +969,2.8237,15.5905,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +970,2.8121,20.6138,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +971,2.8580,20.5932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +972,5.2021,25.6697,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +973,2.8237,25.6366,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +974,2.8121,30.6095,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +975,2.8580,30.5090,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +976,5.2021,35.5023,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +977,2.8237,35.4580,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +978,2.8121,40.4682,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +979,2.8580,40.4277,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +980,5.2021,45.4195,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +981,2.8237,45.4110,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +982,2.8121,50.4624,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +983,2.8580,50.4152,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +984,5.2021,55.3889,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +985,2.8237,55.3278,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +986,2.8121,60.3747,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +987,2.8580,60.3191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +988,5.2021,65.3094,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +989,2.8237,61.5438,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +990,2.8121,66.6188,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +991,2.8580,61.6853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +992,5.2021,66.7657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +993,2.8237,61.7205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +994,2.8121,66.6665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +995,2.8580,61.6208,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +996,5.2021,66.6193,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +997,2.8237,61.5007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +998,2.8121,66.5312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +999,2.8580,61.4691,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1000,5.2021,66.5110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1001,2.8237,61.5344,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1002,2.8121,66.5018,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1003,2.8580,61.6654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1004,5.2021,66.6903,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1005,2.8237,61.7358,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1006,2.8121,66.8180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1007,2.8580,61.7815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1008,5.2021,66.8268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1009,2.8237,61.8515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1010,2.8121,67.0319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1011,2.8580,62.1010,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1012,5.2021,67.0547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1013,2.8237,62.3309,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1014,2.8121,67.0444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1015,2.8580,62.4505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1016,5.2021,66.9248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1017,2.8237,62.3611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1018,2.8121,67.0069,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1019,2.8580,62.6554,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1020,5.2021,67.0566,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1021,2.8237,62.5381,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1022,2.8121,67.1221,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1023,2.8580,62.5132,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1024,5.2021,66.5804,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1025,2.8237,62.7312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1026,2.8121,67.1544,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1027,2.8580,62.5695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1028,5.2021,58.5532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1029,2.8237,58.8936,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1030,2.8121,63.5718,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1031,2.8580,62.6059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1032,5.2021,51.0314,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1033,2.8237,51.3040,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1034,2.8121,55.8728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1035,2.8580,56.1468,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1036,5.2021,44.9339,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1037,2.8237,45.1440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1038,2.8121,49.7255,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1039,2.8580,50.0000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1040,5.2021,38.5658,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1041,2.8237,38.8055,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1042,2.8121,43.3289,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1043,2.8580,43.6290,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1044,5.2021,32.2052,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1045,2.8237,32.3039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1046,2.8121,36.8775,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1047,2.8580,37.1322,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1048,5.2021,25.8030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1049,2.8237,25.7408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1050,2.8121,30.3205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8580,30.4200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1052,5.2021,19.4259,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1053,2.8237,19.4444,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1054,2.8121,24.1145,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1055,2.8580,24.1579,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1056,5.2021,13.0695,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1057,2.8237,12.9060,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1058,2.8121,17.7177,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1059,2.8580,17.6296,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1060,5.2021,6.6498,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1061,2.8237,6.4125,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1062,2.8121,11.4294,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1063,2.8580,11.2877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1064,5.2021,5.8817,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1065,2.8237,5.6147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1066,2.8121,10.5295,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1067,2.8580,10.4687,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1068,5.2021,5.8095,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1069,2.8237,5.5394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1070,2.8121,10.5257,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1071,2.8580,10.4655,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1072,5.2021,5.6860,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1073,2.8237,5.4740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1074,2.8121,10.3676,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1075,2.8580,10.2600,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1076,5.2021,5.9514,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1077,2.8237,5.6787,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1078,2.8121,10.6787,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1079,2.8580,10.6023,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1080,5.2021,5.8748,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1081,2.8237,5.6498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8121,10.5676,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1083,2.8580,10.4636,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1084,5.2021,5.7681,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1085,2.8237,5.5241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8121,10.5966,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1087,2.8580,10.5451,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1088,5.2021,5.8053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1089,2.8237,5.6028,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8121,10.5055,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1091,2.8580,10.4190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1092,5.2021,5.7462,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1093,2.8237,5.5221,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8121,10.4107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1095,2.8580,10.3808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1096,5.2021,5.7435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1097,2.8237,5.5039,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8121,10.4981,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1099,2.8580,10.4328,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1100,5.2021,5.6943,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1101,2.8237,5.4541,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8121,10.4733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1103,2.8580,10.3959,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.2021,5.8536,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1105,2.8237,5.6236,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8121,10.4908,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1107,2.8580,10.3836,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1108,5.2021,5.8253,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1109,2.8237,5.5625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8121,10.5115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1111,2.8580,10.4350,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1112,5.2021,5.7694,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1113,2.8237,5.5253,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8121,10.4885,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1115,2.8580,10.4188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1116,5.2021,5.9293,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1117,2.8237,5.7269,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8121,10.4545,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1119,2.8580,10.3195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1120,5.2021,5.8768,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8237,5.5365,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8121,10.3602,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1123,2.8580,10.3085,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1124,5.2021,5.9114,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8237,5.6941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8121,10.6615,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1127,2.8580,10.5468,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1128,5.2021,5.8549,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8237,5.5847,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8121,10.6027,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1131,2.8580,10.5191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1132,5.2021,5.9454,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8237,5.6206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8121,10.5995,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1135,2.8580,10.5374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1136,5.2021,5.9466,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8237,5.6997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8121,10.5216,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1139,2.8580,10.4503,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1140,5.2021,5.8846,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8237,5.6740,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8121,10.6163,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1143,2.8580,10.6054,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1144,5.2021,5.8912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8237,5.6681,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8121,10.5945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1147,2.8580,10.6267,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1148,5.2021,6.0862,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8237,5.8267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8121,11.0155,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1151,2.8580,10.8417,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1152,5.2021,6.7073,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8237,5.8848,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8121,10.8483,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1155,2.8580,10.5947,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1156,5.2021,7.7533,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8237,6.7499,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8121,10.6708,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1159,2.8580,10.5970,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1160,5.2021,6.8007,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8237,6.0212,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8121,10.4598,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1163,2.8580,10.0690,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.2021,6.1663,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8237,5.7742,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8121,10.7064,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1167,2.8580,10.5490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1168,5.2021,6.2675,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8237,5.8630,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8121,11.1805,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1171,2.8580,10.9695,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1172,5.2021,7.1627,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8237,6.4570,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8121,10.8263,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1175,2.8580,10.4525,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1176,5.2021,6.5065,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8237,5.9612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8121,14.1637,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8580,13.8584,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1180,5.2021,6.2465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8237,5.7888,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8121,10.7891,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8580,10.5760,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1184,5.2021,9.9450,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8237,8.9435,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8121,10.7273,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8580,10.5018,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1188,5.2021,6.7739,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8237,5.9185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8121,10.6885,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8580,10.4150,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1192,5.2021,6.7162,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8237,6.0973,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8121,10.3431,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1195,2.8580,10.0724,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1196,5.2021,6.2436,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8237,5.8059,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8121,10.8287,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1199,2.8580,10.6921,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.txt new file mode 100644 index 0000000..e20344c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.txt @@ -0,0 +1,67 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +tile_reset_every_frames=120 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=4.999 +effective_logical_fps=60.014 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=20.909 +p95_encode_latency_ms=71.783 +max_encode_latency_ms=123.874 +avg_steady_encode_latency_ms=19.770 +p95_steady_encode_latency_ms=71.783 +max_steady_encode_latency_ms=123.874 +avg_tile_encode_latency_ms=16.438 +p95_tile_encode_latency_ms=61.978 +avg_max_tile_encode_latency_ms=18.872 +p95_max_tile_encode_latency_ms=66.513 +avg_steady_max_tile_encode_latency_ms=17.887 +p95_steady_max_tile_encode_latency_ms=66.559 +payload_bytes=2614696 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120_logical.csv new file mode 100644 index 0000000..01ae289 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset120_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,100.4502,28.2829,231707 +1,4,0,10.9519,10.4537,65901 +2,4,0,20.6696,20.4789,36886 +3,4,0,30.6248,30.3376,69404 +4,4,0,40.7108,40.4951,87864 +5,4,0,50.4581,50.2308,53700 +6,4,0,60.1484,59.9264,24415 +7,4,0,70.0229,65.8832,15407 +8,4,0,61.6438,61.2979,12151 +9,4,0,53.7188,53.3878,11449 +10,4,0,47.5096,47.1678,8599 +11,4,0,40.8812,40.4655,6107 +12,4,0,35.0794,34.6867,5132 +13,4,0,28.0420,27.5864,3880 +14,4,0,21.6480,21.2310,4001 +15,4,0,18.5396,18.1644,3860 +16,4,0,11.9288,11.3453,4045 +17,4,0,11.3280,10.6252,3955 +18,4,0,11.3211,10.6130,3721 +19,4,0,11.4424,10.7081,3748 +20,4,0,11.4085,10.5686,3386 +21,4,0,11.6022,10.6824,2761 +22,4,0,11.4225,10.7285,2750 +23,4,0,12.0862,11.2198,2836 +24,4,0,12.6054,10.6010,2977 +25,4,0,12.2179,10.6492,2960 +26,4,0,12.2596,10.7553,3010 +27,4,0,18.2420,16.8493,2978 +28,4,0,11.7709,10.3117,2889 +29,4,0,10.9632,10.5037,2914 +30,4,0,11.3464,10.3395,2847 +31,4,0,11.4660,10.2253,3111 +32,4,0,11.3538,10.5991,2714 +33,4,0,12.0403,10.0548,2843 +34,4,0,11.5858,10.2855,2633 +35,4,0,11.6312,10.4908,2659 +36,4,0,12.1137,10.5843,2696 +37,4,0,11.7010,10.5160,2728 +38,4,0,12.4829,10.5297,2772 +39,4,0,12.1643,10.6538,2740 +40,4,0,11.9113,10.2611,2809 +41,4,0,12.6676,8.7576,2679 +42,4,0,11.4875,10.5095,2865 +43,4,0,11.7618,10.8488,2612 +44,4,0,11.6212,10.8039,2626 +45,4,0,11.5135,10.7930,2693 +46,4,0,11.6446,10.8225,2708 +47,4,0,11.4702,10.6746,2765 +48,4,0,11.4012,10.7197,2645 +49,4,0,11.4388,10.7086,2733 +50,4,0,11.2000,10.6150,2667 +51,4,0,11.6911,10.9689,2647 +52,4,0,11.5288,10.8275,2659 +53,4,0,11.4683,10.8033,2757 +54,4,0,11.4047,10.7640,2656 +55,4,0,11.6272,10.9012,2594 +56,4,0,11.9785,11.2590,2603 +57,4,0,11.5861,10.8986,2605 +58,4,0,11.6263,10.9947,2610 +59,4,0,11.5747,10.9002,2641 +60,4,0,11.4585,10.8042,2637 +61,4,0,11.3615,10.7409,2691 +62,4,0,11.5157,10.9227,2620 +63,4,0,11.5676,10.9296,2614 +64,4,0,11.4797,10.7899,2666 +65,4,0,11.6406,10.9002,2613 +66,4,0,11.6518,10.8712,2624 +67,4,0,11.5045,10.8825,2612 +68,4,0,11.6265,10.8402,2687 +69,4,0,11.5444,10.7894,2622 +70,4,0,11.0692,10.5589,2623 +71,4,0,11.0553,10.5052,2647 +72,4,0,10.9559,10.4772,2645 +73,4,0,10.8163,10.2999,2643 +74,4,0,11.1465,10.3147,2635 +75,4,0,10.9681,10.3478,2718 +76,4,0,11.1544,10.5332,2602 +77,4,0,11.2320,10.5468,2605 +78,4,0,11.1720,10.4040,2612 +79,4,0,11.2591,10.5743,2607 +80,4,0,11.4459,10.7600,2630 +81,4,0,11.1786,10.4391,2617 +82,4,0,11.3227,10.6167,2661 +83,4,0,11.1563,10.4940,2606 +84,4,0,11.5231,10.9253,2609 +85,4,0,12.3337,10.5075,2612 +86,4,0,11.7948,10.7103,2632 +87,4,0,11.9373,10.6659,2606 +88,4,0,12.1014,10.4901,2610 +89,4,0,12.1956,10.6581,2652 +90,4,0,11.9365,10.0287,2594 +91,4,0,11.9074,10.2255,2609 +92,4,0,11.6925,10.1068,2598 +93,4,0,11.5853,10.1450,2613 +94,4,0,11.7491,10.4436,2618 +95,4,0,11.2835,10.3159,2604 +96,4,0,11.3113,10.5400,2677 +97,4,0,11.8753,9.4115,2620 +98,4,0,11.4011,10.2236,2594 +99,4,0,11.9444,11.0346,2594 +100,4,0,11.3459,10.4185,2598 +101,4,0,11.4432,10.3588,2609 +102,4,0,12.0735,10.2340,2616 +103,4,0,11.6988,10.3299,2630 +104,4,0,11.4796,10.6366,2606 +105,4,0,11.6013,10.1677,2604 +106,4,0,11.4045,9.9875,2609 +107,4,0,11.6066,10.5998,2610 +108,4,0,11.6654,10.1997,2652 +109,4,0,11.8385,10.5155,2600 +110,4,0,11.6951,10.1345,2640 +111,4,0,11.9164,10.4757,2594 +112,4,0,11.6985,10.2540,2594 +113,4,0,11.7722,10.1619,2600 +114,4,0,13.4616,13.3165,2599 +115,4,0,11.0821,10.4731,2607 +116,4,0,14.0550,13.3099,2603 +117,4,0,11.5874,10.6883,2623 +118,4,0,12.9730,9.2728,2600 +119,4,0,11.4352,10.5604,2610 +120,4,0,123.8738,45.8428,231707 +121,4,0,11.0977,10.6077,65901 +122,4,0,20.6578,20.3823,36886 +123,4,0,30.5556,30.3295,69404 +124,4,0,40.3985,40.1198,87864 +125,4,0,50.2282,50.0388,53700 +126,4,0,60.2423,60.0730,24415 +127,4,0,70.0977,66.3870,15407 +128,4,0,71.5239,66.3784,12151 +129,4,0,71.5528,66.4544,11449 +130,4,0,71.4734,66.4942,8599 +131,4,0,71.6416,66.4706,6107 +132,4,0,71.6937,66.5010,5132 +133,4,0,71.6248,66.6338,3880 +134,4,0,71.8489,66.7275,4001 +135,4,0,72.2048,66.8505,3860 +136,4,0,72.0994,66.8182,4045 +137,4,0,72.3068,66.8712,3955 +138,4,0,67.4330,66.5555,3721 +139,4,0,59.5075,58.8864,3748 +140,4,0,52.7325,52.1494,3386 +141,4,0,46.6445,46.1438,2761 +142,4,0,39.9946,39.3870,2750 +143,4,0,33.4896,33.0734,2836 +144,4,0,28.8237,28.4405,2977 +145,4,0,19.8620,19.2656,2960 +146,4,0,13.9195,13.2698,3010 +147,4,0,10.9202,10.2657,2978 +148,4,0,11.0495,10.3312,2889 +149,4,0,11.2563,10.4607,2914 +150,4,0,11.7769,9.9250,2847 +151,4,0,11.3400,10.4916,3111 +152,4,0,11.2518,10.3673,2714 +153,4,0,11.6716,10.5065,2843 +154,4,0,11.8891,10.3905,2633 +155,4,0,14.0505,10.3973,2659 +156,4,0,12.0725,10.6513,2696 +157,4,0,11.7024,10.1812,2728 +158,4,0,11.8677,11.0264,2772 +159,4,0,11.3849,10.2291,2740 +160,4,0,11.3879,10.4440,2809 +161,4,0,11.4611,10.1380,2679 +162,4,0,11.3998,10.4737,2865 +163,4,0,11.5560,10.3238,2612 +164,4,0,11.3810,10.4075,2626 +165,4,0,11.2993,10.0693,2693 +166,4,0,11.1483,10.4526,2708 +167,4,0,11.8797,10.9409,2765 +168,4,0,11.9894,10.6802,2645 +169,4,0,12.0578,10.2822,2733 +170,4,0,11.9936,10.7995,2667 +171,4,0,12.1056,10.3387,2647 +172,4,0,11.6443,10.6093,2659 +173,4,0,11.1407,10.3760,2757 +174,4,0,11.3297,10.4430,2656 +175,4,0,12.2969,10.9298,2594 +176,4,0,12.0100,10.7542,2603 +177,4,0,12.4052,10.1656,2605 +178,4,0,11.8104,10.4442,2610 +179,4,0,11.8102,9.9412,2641 +180,4,0,12.1395,10.4283,2637 +181,4,0,12.2004,10.7375,2691 +182,4,0,12.1447,10.8098,2620 +183,4,0,12.1588,10.4440,2614 +184,4,0,12.3470,10.8193,2666 +185,4,0,12.2891,10.4357,2613 +186,4,0,11.5362,10.3387,2624 +187,4,0,13.3740,11.4551,2612 +188,4,0,11.8135,10.6355,2687 +189,4,0,12.2434,10.5379,2622 +190,4,0,11.9886,10.5473,2623 +191,4,0,11.6404,10.6381,2647 +192,4,0,12.5099,10.2455,2645 +193,4,0,11.6864,10.1022,2643 +194,4,0,11.4288,10.4740,2635 +195,4,0,11.5088,10.7084,2718 +196,4,0,10.9940,10.2300,2602 +197,4,0,11.0820,10.3815,2605 +198,4,0,11.0412,10.3228,2612 +199,4,0,11.1055,10.5542,2607 +200,4,0,11.0463,10.2065,2630 +201,4,0,10.8893,10.2938,2617 +202,4,0,11.1449,10.3721,2661 +203,4,0,10.9640,10.3598,2606 +204,4,0,11.3445,10.6121,2609 +205,4,0,11.0539,10.4357,2612 +206,4,0,11.1646,10.2805,2632 +207,4,0,11.3827,10.5595,2606 +208,4,0,11.5798,10.7483,2610 +209,4,0,11.6046,9.7306,2652 +210,4,0,11.7229,10.6078,2594 +211,4,0,11.9033,10.4820,2609 +212,4,0,11.7374,10.2495,2598 +213,4,0,11.6980,10.4555,2613 +214,4,0,11.5698,10.1303,2618 +215,4,0,11.8025,10.3739,2604 +216,4,0,12.2110,10.6308,2677 +217,4,0,12.0459,10.4051,2620 +218,4,0,13.2425,9.6665,2594 +219,4,0,11.5517,10.2102,2594 +220,4,0,12.6215,10.1873,2598 +221,4,0,11.8629,10.5268,2609 +222,4,0,12.0888,10.4158,2616 +223,4,0,11.9880,10.0216,2630 +224,4,0,13.3787,12.0995,2606 +225,4,0,12.0126,10.4340,2604 +226,4,0,13.2679,11.6611,2609 +227,4,0,11.3858,10.3874,2610 +228,4,0,11.1919,10.2169,2652 +229,4,0,11.7317,10.3980,2600 +230,4,0,11.1227,10.3107,2640 +231,4,0,11.4100,10.4895,2594 +232,4,0,11.4601,10.5587,2594 +233,4,0,11.3837,10.5446,2600 +234,4,0,11.4845,10.5871,2599 +235,4,0,11.5336,10.7335,2607 +236,4,0,11.2508,10.4588,2603 +237,4,0,11.2294,10.4073,2623 +238,4,0,11.0983,10.3873,2600 +239,4,0,11.3233,10.6013,2610 +240,4,0,118.3164,42.6038,231707 +241,4,0,11.1238,10.6604,65901 +242,4,0,20.9305,20.6138,36886 +243,4,0,30.8414,30.6095,69404 +244,4,0,40.6697,40.4682,87864 +245,4,0,50.6531,50.4624,53700 +246,4,0,60.5548,60.3747,24415 +247,4,0,70.5255,66.6188,15407 +248,4,0,71.9099,66.7657,12151 +249,4,0,71.7818,66.6193,11449 +250,4,0,71.8042,66.5110,8599 +251,4,0,71.9439,66.8180,6107 +252,4,0,72.2325,67.0319,5132 +253,4,0,72.6513,67.0547,3880 +254,4,0,72.7937,67.0069,4001 +255,4,0,72.7421,67.1221,3860 +256,4,0,72.2235,67.1544,4045 +257,4,0,64.4312,63.5718,3955 +258,4,0,56.5616,56.1468,3721 +259,4,0,50.5200,50.0000,3748 +260,4,0,44.2702,43.6290,3386 +261,4,0,37.7564,37.1322,2761 +262,4,0,31.1573,30.4200,2750 +263,4,0,24.6871,24.1579,2836 +264,4,0,18.1426,17.7177,2977 +265,4,0,11.8408,11.4294,2960 +266,4,0,11.1013,10.5295,3010 +267,4,0,11.1030,10.5257,2978 +268,4,0,10.8466,10.3676,2889 +269,4,0,11.2155,10.6787,2914 +270,4,0,11.0715,10.5676,2847 +271,4,0,11.1160,10.5966,3111 +272,4,0,10.9643,10.5055,2714 +273,4,0,10.9916,10.4107,2843 +274,4,0,11.0029,10.4981,2633 +275,4,0,10.9701,10.4733,2659 +276,4,0,10.9859,10.4908,2696 +277,4,0,10.9911,10.5115,2728 +278,4,0,11.0011,10.4885,2772 +279,4,0,11.1928,10.4545,2740 +280,4,0,10.9855,10.3602,2809 +281,4,0,11.2201,10.6615,2679 +282,4,0,11.1766,10.6027,2865 +283,4,0,11.2841,10.5995,2612 +284,4,0,11.1119,10.5216,2626 +285,4,0,11.1507,10.6163,2693 +286,4,0,11.1717,10.6267,2708 +287,4,0,11.6400,11.0155,2765 +288,4,0,12.3721,10.8483,2645 +289,4,0,12.6136,10.6708,2733 +290,4,0,11.9074,10.4598,2667 +291,4,0,11.5603,10.7064,2647 +292,4,0,11.9969,11.1805,2659 +293,4,0,12.1583,10.8263,2757 +294,4,0,15.6813,14.1637,2656 +295,4,0,11.7065,10.7891,2594 +296,4,0,12.2016,10.7273,2603 +297,4,0,12.3362,10.6885,2605 +298,4,0,11.6895,10.3431,2610 +299,4,0,11.5855,10.8287,2641 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.csv new file mode 100644 index 0000000..34eaf22 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1278,29.1635,0.0290,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8284,24.5503,0.0137,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8020,25.0479,0.0064,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8807,25.0518,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.1278,5.6952,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8284,5.5807,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8020,10.4325,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8807,10.3796,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.1278,15.2850,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8284,15.2493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8020,20.0779,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8807,20.0815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.1278,25.0897,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8284,25.0524,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8020,29.9420,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8807,29.9053,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.1278,34.7384,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8284,34.9782,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8020,39.7240,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8807,39.9682,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.1278,44.6995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8284,45.2474,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8020,49.9419,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8807,50.5022,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.1278,54.8697,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8284,55.7363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8020,59.8345,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8807,60.6903,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.1278,64.9787,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8284,62.3741,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8020,66.0938,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8807,62.6631,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.1278,60.7847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8284,62.1153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8020,65.4992,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8807,62.8266,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.1278,52.4934,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8284,54.1528,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8020,57.3640,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8807,59.0331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.1278,45.3994,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8284,47.3182,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8020,50.6225,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8807,52.1359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.1278,39.5552,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8284,40.9544,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8020,44.3619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8807,46.0955,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.1278,33.3974,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8284,34.9684,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8020,38.0928,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8807,39.7553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.1278,26.2822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8284,27.8882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8020,31.0890,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8807,32.7695,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.1278,20.0308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8284,21.5748,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8020,24.6019,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8807,26.4075,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.1278,13.2140,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8284,14.8818,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8020,17.8318,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8807,19.6915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.1278,9.8398,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8284,11.5569,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8020,14.6357,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8807,16.4309,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.1278,5.8968,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8284,5.5986,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8020,10.4930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8807,10.4637,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.1278,5.8791,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8284,5.6322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8020,10.4870,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8807,10.4460,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.1278,5.8977,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8284,5.5892,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8020,10.5370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8807,10.5040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.1278,5.8018,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8284,5.5343,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8020,10.5190,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8807,10.4268,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.1278,5.8547,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8284,5.6065,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8020,10.4627,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8807,10.4185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.1278,5.8711,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8284,5.5844,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8020,10.4693,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8807,10.3814,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.1278,5.7494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8284,5.5335,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8020,10.3390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8807,10.3078,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.1278,5.7975,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8284,5.4889,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8020,10.3787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8807,10.2676,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.1278,5.8317,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8284,5.5795,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8020,10.5200,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8807,10.4644,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.1278,5.8412,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8284,5.5501,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8020,10.4733,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8807,10.4258,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.1278,5.7862,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8284,5.5150,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8020,10.4822,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8807,10.3833,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.1278,5.6737,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8284,5.4781,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8020,10.3284,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8807,10.2978,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.1278,5.7257,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8284,5.4912,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8020,10.3367,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8807,10.2935,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.1278,5.8078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8284,5.5263,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8020,10.4705,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8807,10.4119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.1278,5.6969,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8284,5.4537,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8020,10.3731,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8807,10.3171,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.1278,5.8048,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8284,5.5565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8020,10.4861,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8807,10.4032,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.1278,5.7825,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8284,5.5423,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8020,10.4431,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8807,10.3885,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.1278,5.8266,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8284,5.5658,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8020,10.3928,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8807,10.3422,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.1278,5.7329,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8284,5.5098,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8020,10.3413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8807,10.2599,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.1278,5.7185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8284,5.5009,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8020,10.3685,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8807,10.3349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.1278,5.7461,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8284,5.5148,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8020,10.3830,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8807,10.3059,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.1278,5.6742,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8284,5.4488,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8020,10.3447,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8807,10.2609,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.1278,5.6445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8284,5.4887,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8020,10.3925,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8807,10.3263,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.1278,5.8520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8284,5.6287,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8020,10.4243,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8807,10.4693,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.1278,5.5955,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8284,5.4772,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8020,10.3897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8807,10.3735,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.1278,5.6814,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8284,5.5073,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8020,10.3225,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8807,10.2836,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.1278,5.6335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8284,5.4740,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8020,10.2733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8807,10.2423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.1278,5.8601,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8284,5.6440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8020,10.3591,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8807,10.3742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.1278,5.7322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8284,5.5307,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8020,10.4527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8807,10.3809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.1278,5.7632,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8284,5.5635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8020,10.3982,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8807,10.3493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.1278,5.8539,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8284,5.6057,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8020,10.5041,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8807,10.3965,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.1278,5.9376,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8284,5.6087,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8020,10.4774,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8807,10.4158,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.1278,6.1397,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8284,5.6853,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8020,12.7882,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8807,12.6615,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.1278,7.3831,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8284,6.2440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8020,11.3223,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8807,11.1187,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.1278,6.9346,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8284,5.9050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8020,8.7509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8807,10.1872,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.1278,6.0457,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8284,5.6310,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8020,10.3854,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8807,10.2339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.1278,6.4875,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8284,5.7373,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8020,10.1538,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8807,10.1737,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.1278,6.0802,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8284,5.6714,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8020,10.4158,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8807,10.2800,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.1278,6.1590,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8284,5.6941,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8020,10.4980,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8807,10.4208,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.1278,5.8035,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8284,5.5123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8020,10.4905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8807,10.3890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.1278,5.9669,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8284,5.6270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8020,10.4821,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8807,10.4738,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.1278,5.8993,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8284,5.5257,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8020,10.3363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8807,10.2619,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.1278,5.8360,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8284,5.5922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8020,10.4412,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8807,10.3991,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.1278,5.6122,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8284,5.4361,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8020,10.2842,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8807,10.2426,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.1278,5.8320,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8284,5.5808,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8020,10.4874,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8807,10.4545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.1278,5.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8284,5.4461,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8020,10.3722,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8807,10.3474,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.1278,5.6511,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8284,5.4575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8020,10.2900,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8807,10.2419,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.1278,5.7551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8284,5.5722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8020,10.3461,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8807,10.2875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.1278,5.7154,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8284,5.5247,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8020,10.3163,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8807,10.2373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.1278,5.8210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8284,5.6142,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8020,10.4291,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8807,10.3700,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.1278,5.8004,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8284,5.5759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8020,10.4853,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8807,10.3765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.1278,5.8378,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8284,5.5941,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8020,10.3178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8807,10.1625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.1278,6.7716,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8284,5.7793,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8020,9.9947,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8807,10.0411,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.1278,6.4354,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8284,5.6822,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8020,10.1753,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8807,10.6544,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.1278,6.5818,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8284,5.6588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8020,10.3590,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8807,10.1376,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.1278,6.5342,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8284,5.8837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8020,8.6185,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8807,10.1945,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.1278,6.1372,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8284,5.7028,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8020,9.9987,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8807,10.0369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.1278,6.6978,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8284,5.9624,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8020,10.3045,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8807,10.1243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.1278,6.2802,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8284,5.6291,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8020,9.9860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8807,10.0873,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.1278,6.2516,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8284,5.7320,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8020,9.9320,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8807,10.1488,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.1278,6.6053,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8284,5.7105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8020,10.1354,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8807,10.2058,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.1278,6.1916,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8284,5.7740,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8020,10.6983,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8807,10.3096,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.1278,6.2988,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8284,5.7927,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8020,10.0230,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8807,10.1392,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.1278,6.4633,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8284,5.8003,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8020,10.6705,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8807,10.4142,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.1278,6.1830,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8284,5.7632,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8020,12.4347,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8807,12.3505,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.1278,6.2716,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8284,5.6299,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8020,11.2532,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8807,11.0154,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.1278,6.5499,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8284,5.7530,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8020,9.9427,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8807,10.3310,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.1278,6.6772,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8284,5.6887,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8020,10.5196,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8807,10.2941,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.1278,6.4330,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8284,5.7530,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8020,9.9680,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8807,10.7167,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.1278,6.3165,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8284,5.8148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8020,10.0024,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8807,10.2158,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.1278,6.1199,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8284,5.7581,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8020,9.9132,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8807,10.1109,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.1278,6.1879,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8284,5.6050,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8020,10.5413,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8807,10.5161,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.1278,5.9868,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8284,5.7456,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8020,9.9276,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8807,10.1595,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.1278,5.8852,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8284,5.7000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8020,10.0687,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8807,10.1535,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.1278,6.0530,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8284,5.7841,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8020,10.0293,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8807,10.1635,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.1278,6.2833,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8284,5.7661,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8020,9.9614,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8807,10.0043,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.1278,6.2575,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8284,5.7941,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8020,10.5056,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8807,10.1647,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.1278,6.2009,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8284,5.7780,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8020,9.8588,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8807,9.9649,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.1278,6.5555,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8284,5.8265,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8020,10.3856,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8807,10.2328,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.1278,6.2255,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8284,5.7609,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8020,10.0474,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8807,9.9891,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.1278,6.5769,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8284,5.8645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8020,10.4350,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8807,10.3550,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.1278,6.2232,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8284,5.7026,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8020,10.3695,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8807,10.2376,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.1278,5.7721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8284,5.5432,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8020,10.2289,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8807,10.2059,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.1278,5.6816,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8284,5.5903,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8020,10.1515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8807,10.2261,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.1278,5.6844,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8284,5.5705,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8020,10.1007,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8807,9.8818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.1278,6.0039,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8284,5.6183,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8020,10.3946,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8807,10.2563,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.1278,5.8825,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8284,5.5060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8020,10.3123,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8807,10.2450,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.1278,5.8953,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8284,5.5774,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8020,10.4090,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8807,10.3582,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.1278,5.7024,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8284,5.5363,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8020,10.4216,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8807,10.3424,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.1278,6.0104,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8284,5.7205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8020,10.5049,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8807,10.4877,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.1278,5.7635,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8284,5.5678,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8020,10.4676,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8807,10.3809,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.1278,5.9094,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8284,5.5445,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8020,10.4448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8807,10.4624,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.1278,6.0708,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8284,5.7378,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8020,10.5264,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8807,10.5145,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.1278,5.7989,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8284,5.6126,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8020,10.4800,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8807,10.5080,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.1278,5.8379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8284,5.6132,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8020,10.3044,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8807,10.3117,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.1278,5.6083,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8284,5.5608,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8020,10.2503,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8807,10.3088,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.1278,5.6610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8284,5.5704,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8020,10.2157,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8807,10.2600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.1278,5.6662,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8284,5.5933,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8020,10.1768,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8807,10.2252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.1278,5.7564,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8284,5.6230,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8020,10.2617,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8807,10.2421,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.1278,5.9378,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8284,5.6346,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8020,10.4383,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8807,10.2473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.1278,6.2506,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8284,5.8570,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8020,9.7912,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8807,10.2073,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.1278,6.3656,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8284,5.8228,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8020,10.1568,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8807,9.9420,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.1278,6.2207,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8284,5.7766,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8020,9.9995,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8807,9.9509,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.1278,6.1991,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8284,5.7650,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8020,10.1472,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8807,10.0394,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.1278,6.3575,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8284,5.7266,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8020,10.2141,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8807,9.9912,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.1278,6.1394,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8284,5.9275,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8020,10.1596,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8807,12.3703,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.1278,6.3741,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8284,5.7229,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8020,10.1733,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8807,11.8211,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.1278,6.4016,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8284,5.7172,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8020,10.3827,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8807,10.2726,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.1278,6.3857,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8284,5.6215,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8020,13.5535,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8807,13.3595,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.1278,6.1658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8284,5.6635,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8020,10.0547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8807,10.1391,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.1278,6.0845,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8284,5.6117,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8020,10.4918,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8807,10.4383,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.1278,5.9001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8284,5.5760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8020,10.3921,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8807,10.3215,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.1278,5.7020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8284,5.5336,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8020,10.2358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8807,10.2705,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.1278,5.6202,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8284,5.5219,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8020,10.1970,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8807,10.2807,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.1278,6.3527,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8284,5.6665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8020,10.3442,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8807,10.0383,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.1278,6.1878,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8284,5.7797,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8020,10.6256,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8807,10.3607,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.1278,6.0385,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8284,5.7140,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8020,10.6523,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8807,10.5908,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.1278,6.2935,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8284,5.7872,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8020,9.7272,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8807,9.8592,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.1278,6.2381,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8284,5.8878,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8020,10.8140,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8807,10.8761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.1278,6.2564,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8284,5.6956,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8020,9.8835,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8807,10.0695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.1278,5.9303,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8284,5.6625,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8020,12.3565,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8807,12.3624,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.1278,6.2310,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8284,5.9170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8020,13.8476,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8807,13.8629,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.1278,6.3511,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8284,5.6567,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8020,10.1197,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8807,9.6496,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.1278,6.0457,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8284,5.6187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8020,10.5250,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8807,10.4697,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.1278,6.1204,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8284,5.6828,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8020,10.2206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8807,10.1716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.1278,6.1166,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8284,5.8362,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8020,10.8788,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8807,10.7691,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.1278,6.0641,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8284,5.7469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8020,10.8304,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8807,10.4900,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.1278,6.5673,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8284,5.7056,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8020,10.3065,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8807,10.1412,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.1278,6.0847,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8284,5.7216,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8020,9.7681,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8807,10.1911,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.1278,6.0101,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8284,5.6835,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8020,10.5933,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8807,10.5445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.1278,6.0788,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8284,5.6313,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8020,10.2872,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8807,10.2292,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.1278,5.9150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8284,5.6159,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8020,10.1388,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8807,10.1574,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.1278,5.9262,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8284,5.5953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8020,10.3138,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8807,10.2345,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.1278,28.4471,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +601,2.8284,32.1281,0.0101,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +602,2.8020,25.2672,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +603,2.8807,25.0332,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +604,5.1278,5.8466,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +605,2.8284,5.6867,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +606,2.8020,10.7684,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +607,2.8807,10.6790,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +608,5.1278,15.4917,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +609,2.8284,15.5593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +610,2.8020,20.4797,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +611,2.8807,20.5059,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +612,5.1278,25.4438,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +613,2.8284,25.4572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +614,2.8020,30.5832,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +615,2.8807,30.5120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +616,5.1278,35.5443,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +617,2.8284,35.4977,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +618,2.8020,40.4985,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +619,2.8807,40.4259,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +620,5.1278,45.5620,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +621,2.8284,45.5300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +622,2.8020,50.5065,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +623,2.8807,50.4539,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +624,5.1278,55.3918,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +625,2.8284,55.3375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +626,2.8020,60.4270,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +627,2.8807,60.3649,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +628,5.1278,65.4226,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +629,2.8284,61.8548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +630,2.8020,67.0082,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +631,2.8807,61.7530,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +632,5.1278,66.7412,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +633,2.8284,61.9073,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +634,2.8020,66.9081,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +635,2.8807,61.8628,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +636,5.1278,66.9594,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +637,2.8284,62.0066,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +638,2.8020,66.9515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +639,2.8807,61.7566,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +640,5.1278,66.8535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +641,2.8284,61.7914,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +642,2.8020,66.7298,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +643,2.8807,61.7549,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +644,5.1278,66.7376,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +645,2.8284,61.6458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +646,2.8020,66.7456,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +647,2.8807,61.6988,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +648,5.1278,66.6425,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +649,2.8284,61.6933,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +650,2.8020,66.5632,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +651,2.8807,61.4743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +652,5.1278,66.4608,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +653,2.8284,61.4462,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +654,2.8020,66.4724,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +655,2.8807,61.3075,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +656,5.1278,66.0797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +657,2.8284,61.7473,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +658,2.8020,66.5186,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +659,2.8807,61.6250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +660,5.1278,66.4840,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +661,2.8284,61.6458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +662,2.8020,66.4038,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +663,2.8807,61.5270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +664,5.1278,66.2200,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +665,2.8284,61.5352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +666,2.8020,66.0527,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +667,2.8807,61.5180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +668,5.1278,66.1399,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +669,2.8284,61.7759,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +670,2.8020,66.0559,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +671,2.8807,61.7919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +672,5.1278,59.6096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +673,2.8284,60.2655,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +674,2.8020,64.3745,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +675,2.8807,62.2007,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +676,5.1278,51.4833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +677,2.8284,52.5334,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +678,2.8020,56.2588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +679,2.8807,57.2677,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +680,5.1278,44.7740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +681,2.8284,45.8173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +682,2.8020,49.4118,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +683,2.8807,50.9953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +684,5.1278,38.4076,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +685,2.8284,39.7755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +686,2.8020,43.1608,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +687,2.8807,44.8619,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +688,5.1278,31.8761,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +689,2.8284,33.2788,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +690,2.8020,36.4630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8807,37.9732,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +692,5.1278,25.3787,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +693,2.8284,26.7967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +694,2.8020,30.0300,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +695,2.8807,31.4363,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +696,5.1278,19.0308,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +697,2.8284,20.2936,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +698,2.8020,23.5738,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +699,2.8807,24.8440,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +700,5.1278,12.2459,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +701,2.8284,13.4653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +702,2.8020,17.3894,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +703,2.8807,18.2455,0.0681,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +704,5.1278,6.4422,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +705,2.8284,7.2664,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +706,2.8020,10.8933,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +707,2.8807,11.5119,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +708,5.1278,6.1213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +709,2.8284,5.6633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +710,2.8020,10.1084,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +711,2.8807,9.8302,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +712,5.1278,7.8025,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +713,2.8284,5.6907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +714,2.8020,10.1113,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +715,2.8807,10.0809,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +716,5.1278,6.0325,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +717,2.8284,5.6680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +718,2.8020,10.3440,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +719,2.8807,10.2070,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +720,5.1278,7.8411,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +721,2.8284,5.7575,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8020,10.6217,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +723,2.8807,10.5257,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +724,5.1278,6.7049,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +725,2.8284,5.7555,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8020,10.6329,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +727,2.8807,10.9097,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +728,5.1278,6.1867,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +729,2.8284,5.7431,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8020,10.7985,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +731,2.8807,10.7215,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +732,5.1278,6.8808,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +733,2.8284,5.9783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8020,8.1775,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +735,2.8807,9.9981,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +736,5.1278,7.0904,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +737,2.8284,6.4300,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8020,10.5962,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +739,2.8807,10.5172,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +740,5.1278,6.9616,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +741,2.8284,5.9357,0.0321,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8020,10.7405,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +743,2.8807,10.4705,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.1278,6.8547,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +745,2.8284,6.3790,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8020,8.2958,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +747,2.8807,9.8091,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +748,5.1278,6.6188,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +749,2.8284,5.9080,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8020,11.3563,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +751,2.8807,12.2368,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +752,5.1278,6.6022,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +753,2.8284,6.0694,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8020,9.7422,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +755,2.8807,10.0717,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +756,5.1278,6.7196,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +757,2.8284,5.8117,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8020,9.3621,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +759,2.8807,9.6476,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +760,5.1278,6.6397,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8284,5.7794,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8020,12.8884,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +763,2.8807,12.5669,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +764,5.1278,6.4127,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8284,5.9792,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8020,13.5760,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +767,2.8807,13.5562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +768,5.1278,6.1728,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8284,5.8308,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8020,11.0695,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +771,2.8807,11.2675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.1278,6.0948,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8284,5.7990,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8020,10.9312,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +775,2.8807,10.7793,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +776,5.1278,6.3300,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8284,6.0655,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8020,10.7103,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +779,2.8807,10.6065,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +780,5.1278,6.3211,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8284,6.1829,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8020,11.0954,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +783,2.8807,10.9575,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.1278,6.0728,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8284,5.7157,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8020,10.9622,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +787,2.8807,10.5437,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +788,5.1278,6.5020,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8284,6.3093,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8020,10.6675,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +791,2.8807,10.5037,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +792,5.1278,6.0425,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8284,5.7053,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8020,10.5787,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +795,2.8807,10.5255,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.1278,6.0711,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8284,6.0302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8020,9.2008,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +799,2.8807,10.0231,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +800,5.1278,6.2415,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8284,5.8463,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8020,9.2235,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +803,2.8807,11.2113,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.1278,6.1860,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8284,5.8443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8020,13.9716,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +807,2.8807,13.7654,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +808,5.1278,6.1896,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8284,5.7891,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8020,12.7847,0.0515,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +811,2.8807,12.6900,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +812,5.1278,6.2792,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8284,5.9657,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8020,10.9905,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +815,2.8807,10.9824,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +816,5.1278,6.6322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8284,6.1445,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8020,11.2812,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8807,12.7833,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +820,5.1278,6.3227,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8284,6.0327,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8020,10.9198,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8807,10.7258,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.1278,6.8523,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8284,5.7823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8020,10.1421,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8807,10.0293,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +828,5.1278,5.9946,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8284,5.6528,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8020,11.0220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8807,10.5960,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +832,5.1278,6.1736,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8284,5.7161,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8020,10.5757,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,2.8807,10.3715,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +836,5.1278,6.1814,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8284,5.7051,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8020,10.6471,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +839,2.8807,10.4778,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +840,5.1278,6.2540,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8284,5.7747,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8020,10.8106,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +843,2.8807,10.7270,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.1278,5.9969,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8284,5.6676,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8020,10.5924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +847,2.8807,10.5750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +848,5.1278,6.0135,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8284,5.6556,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8020,10.8144,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +851,2.8807,10.6816,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.1278,6.3171,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8284,5.8966,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8020,10.7606,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +855,2.8807,10.7099,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +856,5.1278,6.1809,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8284,5.7481,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8020,10.6575,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +859,2.8807,10.5249,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +860,5.1278,6.2598,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8284,5.8297,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8020,10.6919,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.8807,10.5954,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +864,5.1278,6.0432,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8284,5.7126,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8020,11.2967,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.8807,11.2767,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +868,5.1278,6.0629,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8284,5.6881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8020,10.7315,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.8807,10.5712,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +872,5.1278,6.1845,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8284,5.7637,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8020,10.7535,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8807,10.6739,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +876,5.1278,6.0382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8284,5.7625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8020,11.0308,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +879,2.8807,10.9243,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +880,5.1278,6.5712,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8284,6.1390,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8020,11.0890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +883,2.8807,11.0047,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +884,5.1278,5.9759,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8284,5.6884,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8020,10.5908,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +887,2.8807,10.5495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +888,5.1278,6.2465,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8284,5.9951,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8020,10.8476,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +891,2.8807,10.7640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.1278,5.9852,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8284,5.7048,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8020,10.5478,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +895,2.8807,10.4648,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +896,5.1278,5.8738,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8284,5.6380,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8020,10.4273,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +899,2.8807,10.3066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +900,5.1278,6.3638,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8284,6.0518,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8020,11.1690,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +903,2.8807,10.9692,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +904,5.1278,6.4184,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8284,5.7660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8020,10.3002,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.8807,9.7392,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +908,5.1278,8.1688,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8284,7.6575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8020,12.6240,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.8807,12.3369,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +912,5.1278,7.3105,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8284,5.7613,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8020,10.4881,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.8807,10.3994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +916,5.1278,6.2883,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8284,5.7419,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8020,9.6197,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8807,8.8689,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +920,5.1278,6.8973,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8284,5.9345,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8020,10.6550,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8807,10.4770,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +924,5.1278,6.6894,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8284,5.7434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8020,10.5225,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8807,10.4738,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +928,5.1278,6.5438,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8284,6.7169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8020,9.3007,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +931,2.8807,9.9975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +932,5.1278,6.0598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8284,5.5800,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8020,10.7714,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +935,2.8807,10.8979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.1278,6.7900,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8284,5.7136,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8020,12.5680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +939,2.8807,12.3495,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +940,5.1278,6.2696,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8284,5.9243,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8020,10.8797,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +943,2.8807,10.8235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +944,5.1278,6.1255,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8284,5.8979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8020,10.5113,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +947,2.8807,10.4100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +948,5.1278,6.5945,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8284,5.7297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8020,10.4097,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8807,10.3198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +952,5.1278,6.9425,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8284,6.4159,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8020,9.3587,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.8807,11.2503,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +956,5.1278,6.0413,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8284,5.6440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8020,10.5210,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.8807,10.3572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +960,5.1278,6.2364,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.8284,5.8145,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8020,10.8447,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.8807,10.7887,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.1278,6.0684,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.8284,5.6915,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8020,10.4715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +967,2.8807,10.3466,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +968,5.1278,6.0870,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.8284,5.7132,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8020,10.5684,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.8807,10.3818,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +972,5.1278,8.0320,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.8284,5.7201,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8020,10.9228,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +975,2.8807,10.5433,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +976,5.1278,6.4987,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.8284,5.8196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8020,9.8887,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +979,2.8807,9.5615,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +980,5.1278,6.3972,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.8284,6.1402,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8020,11.1883,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +983,2.8807,11.0998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.1278,6.0752,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.8284,5.7085,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8020,10.9625,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +987,2.8807,10.9757,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +988,5.1278,6.2111,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.8284,5.7520,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8020,10.5946,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +991,2.8807,10.4674,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.1278,6.5930,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.8284,5.9016,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8020,10.5704,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.8807,10.4870,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.1278,6.0521,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8284,5.6601,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8020,10.4213,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.8807,10.3201,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.1278,6.9042,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8284,5.9241,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8020,11.8949,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.8807,11.7623,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1004,5.1278,6.2492,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8284,5.8516,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8020,12.3655,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1007,2.8807,12.1987,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1008,5.1278,6.7022,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8284,6.0957,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8020,9.1551,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1011,2.8807,10.4048,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.1278,7.1102,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8284,6.6095,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8020,10.2674,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1015,2.8807,10.2243,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1016,5.1278,6.1185,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8284,5.8164,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8020,10.8618,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1019,2.8807,10.8131,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.1278,7.1653,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8284,5.7286,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8020,10.5157,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1023,2.8807,10.3293,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.1278,6.4720,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8284,5.8045,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8020,9.5020,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1027,2.8807,10.0162,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.1278,7.0261,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8284,6.1033,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8020,9.9457,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1031,2.8807,10.0422,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1032,5.1278,6.4944,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8284,5.8659,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8020,10.2311,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1035,2.8807,10.0083,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1036,5.1278,6.5257,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8284,5.7266,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8020,10.3585,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.8807,10.2048,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1040,5.1278,6.7120,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8284,5.7401,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8020,10.3620,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.8807,10.1118,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1044,5.1278,6.7240,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8284,5.9703,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8020,10.6301,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.8807,10.6028,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.1278,6.3772,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8284,5.7207,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8020,10.3267,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8807,10.1453,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.1278,10.2714,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8284,9.5738,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8020,10.5963,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1055,2.8807,10.4878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.1278,6.5536,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8284,5.9271,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8020,10.2835,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1059,2.8807,10.3147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.1278,6.6120,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8284,5.6981,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8020,10.9567,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1063,2.8807,10.8722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.1278,6.4623,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8284,5.7260,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8020,8.8262,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1067,2.8807,8.8117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1068,5.1278,6.4918,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8284,5.7775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8020,10.1184,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1071,2.8807,9.9763,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1072,5.1278,6.0188,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8284,5.6717,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8020,11.0663,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1075,2.8807,10.5070,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.1278,5.9282,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8284,5.6261,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8020,10.3640,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1079,2.8807,10.2782,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.1278,6.2893,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8284,5.7746,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8020,10.4715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.8807,10.3468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.1278,6.3173,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8284,5.7307,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8020,10.0397,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.8807,10.1003,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.1278,6.8126,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8284,5.8470,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8020,10.1263,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.8807,10.0344,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1092,5.1278,7.0902,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8284,6.3009,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8020,10.8892,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.8807,10.6765,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.1278,6.6414,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8284,5.7075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8020,13.6299,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1099,2.8807,13.4095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1100,5.1278,6.1368,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8284,5.7469,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8020,10.8847,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,2.8807,10.9591,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.1278,6.8556,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8284,5.8710,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8020,9.9535,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1107,2.8807,10.1211,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.1278,7.0008,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8284,5.6049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8020,8.7575,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8807,10.2536,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.1278,5.9045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8284,5.6158,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8020,10.4604,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8807,10.3667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.1278,6.7344,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8284,5.8380,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8020,10.5336,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8807,10.2974,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1120,5.1278,6.6292,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8284,5.7250,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8020,9.6733,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1123,2.8807,9.9907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.1278,6.3023,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8284,5.6464,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8020,10.2766,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.8807,10.0190,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1128,5.1278,7.0829,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8284,6.2660,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8020,8.3764,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.8807,9.6359,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1132,5.1278,6.4313,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8284,5.6877,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8020,10.4300,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.8807,10.1946,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.1278,6.7262,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8284,5.6488,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8020,10.3125,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.8807,10.0386,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.1278,6.4686,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8284,5.7010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8020,9.6842,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.8807,10.0657,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.1278,6.4993,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8284,5.7262,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8020,10.3628,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8807,10.1431,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.1278,7.0984,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8284,6.1863,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8020,10.9579,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8807,11.1280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.1278,6.5301,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8284,5.7562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8020,10.3603,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8807,10.3279,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.1278,8.1799,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8284,7.4478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8020,10.5620,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8807,10.5157,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.1278,6.9446,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8284,6.1768,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8020,10.9441,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8807,10.9319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.1278,6.0301,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8284,5.7032,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8020,11.0568,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1167,2.8807,10.6924,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.1278,6.3732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8284,5.8394,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8020,10.7367,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.8807,10.5917,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.1278,6.3512,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8284,5.6760,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8020,10.6537,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.8807,10.4270,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.1278,6.5453,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8284,5.7763,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8020,9.6807,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8807,9.4441,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.1278,6.6903,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8284,6.7458,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8020,11.2881,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8807,11.2803,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1184,5.1278,6.0022,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8284,5.6645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8020,10.4273,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8807,10.3061,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.1278,6.0417,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8284,5.6596,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8020,10.4281,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8807,10.2606,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.1278,6.1174,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8284,6.1522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8020,8.7680,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8807,8.8468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.1278,6.2957,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8284,6.0204,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8020,10.4983,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8807,10.3707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.txt new file mode 100644 index 0000000..8ea8e31 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.txt @@ -0,0 +1,63 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=5.000 +effective_logical_fps=60.003 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=17.509 +p95_encode_latency_ms=65.848 +max_encode_latency_ms=111.154 +avg_steady_encode_latency_ms=15.954 +p95_steady_encode_latency_ms=57.918 +max_steady_encode_latency_ms=111.154 +avg_tile_encode_latency_ms=13.254 +p95_tile_encode_latency_ms=59.062 +avg_max_tile_encode_latency_ms=15.669 +p95_max_tile_encode_latency_ms=60.440 +avg_steady_max_tile_encode_latency_ms=14.301 +p95_steady_max_tile_encode_latency_ms=51.309 +payload_bytes=2003860 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.csv new file mode 100644 index 0000000..3c059ea --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1405,28.8280,0.0332,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.0309,25.1373,0.0150,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.9124,25.5557,0.0065,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8901,24.9801,0.0106,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.1405,5.7700,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.0309,5.6407,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.9124,10.4062,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8901,10.4081,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.1405,5.6710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.0309,5.5705,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.9124,10.4541,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8901,10.4425,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.1405,5.5850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.0309,5.5409,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.9124,10.2774,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8901,10.3061,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.1405,5.6122,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.0309,5.5275,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.9124,10.2738,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8901,10.2674,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.1405,5.7570,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.0309,5.6703,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.9124,10.3931,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8901,10.4803,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.1405,5.5956,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.0309,5.5715,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.9124,10.3328,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8901,10.3972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.1405,5.5623,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.0309,5.5462,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.9124,10.5288,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8901,10.4811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.1405,5.6539,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.0309,5.5284,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.9124,10.3297,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8901,10.3569,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.1405,5.6398,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.0309,5.5975,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.9124,10.4119,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8901,10.3748,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.1405,5.5465,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.0309,5.4861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.9124,10.3540,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8901,10.3884,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.1405,5.6217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.0309,5.5108,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.9124,10.3397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8901,10.3082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.1405,5.6095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.0309,5.5708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.9124,10.2522,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8901,10.2540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.1405,5.6478,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.0309,5.5969,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.9124,10.3374,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8901,10.3207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.1405,5.6143,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.0309,5.5527,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.9124,10.3122,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8901,10.3029,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.1405,5.6934,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.0309,5.5666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.9124,10.4264,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8901,10.3227,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.1405,5.7908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.0309,5.6098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.9124,10.4750,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8901,10.4017,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.1405,5.7298,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.0309,5.6444,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.9124,10.3613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8901,10.2942,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.1405,5.7443,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.0309,5.6519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.9124,10.4265,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8901,10.3234,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.1405,5.9078,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.0309,5.6465,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.9124,10.5503,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8901,10.4062,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.1405,6.2265,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.0309,5.7261,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.9124,10.1265,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8901,10.1910,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.1405,6.2635,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.0309,5.9183,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.9124,10.0308,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8901,10.2075,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.1405,6.4749,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.0309,5.8729,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.9124,10.6939,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8901,10.4852,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.1405,7.3755,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.0309,6.8154,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.9124,10.4931,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8901,10.3347,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.1405,6.2193,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.0309,5.7260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.9124,10.4568,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8901,10.3273,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.1405,6.8293,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.0309,5.9137,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.9124,9.3953,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8901,10.4234,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.1405,6.1983,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.0309,6.0242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.9124,10.7008,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8901,10.8686,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.1405,6.1710,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.0309,5.7920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.9124,7.4822,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8901,7.3692,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.1405,6.1593,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.0309,6.5186,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.9124,9.8012,0.0850,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8901,9.8925,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.1405,6.3820,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.0309,5.7260,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.9124,11.5578,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8901,11.3658,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.1405,6.4169,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.0309,5.8422,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.9124,10.4410,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8901,10.3543,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.1405,6.0871,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.0309,5.6870,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.9124,10.4051,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8901,10.3393,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.1405,6.3751,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.0309,5.8660,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.9124,10.4002,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8901,10.2143,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.1405,7.3381,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.0309,6.1998,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.9124,10.1037,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8901,10.2008,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.1405,6.5798,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.0309,5.6882,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.9124,9.2257,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8901,9.2025,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.1405,6.5512,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.0309,5.7863,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.9124,10.5879,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8901,10.3745,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.1405,6.6688,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.0309,5.9124,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.9124,9.3930,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8901,10.3718,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.1405,6.9198,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.0309,5.9770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.9124,11.9666,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8901,8.5790,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.1405,6.7542,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.0309,5.9295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.9124,10.9095,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8901,10.8172,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.1405,6.6269,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.0309,6.0255,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.9124,10.3638,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8901,13.7981,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.1405,6.0663,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.0309,5.6826,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.9124,10.4321,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8901,10.3277,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.1405,6.8377,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.0309,5.7600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.9124,10.3778,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8901,10.2620,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.1405,6.2148,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.0309,5.7295,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.9124,10.5133,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8901,10.4237,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.1405,5.7810,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.0309,5.5615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.9124,10.2940,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8901,10.2724,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.1405,5.8289,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.0309,5.5966,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.9124,10.3181,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8901,10.3180,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.1405,6.0317,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.0309,5.7257,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.9124,10.5605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8901,10.5169,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.1405,5.8332,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.0309,5.6722,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.9124,10.4949,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8901,10.4560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.1405,5.8567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.0309,5.6548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.9124,10.4025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8901,10.3562,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.1405,5.8645,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.0309,5.5713,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.9124,10.2813,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8901,10.2453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.1405,5.7340,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.0309,5.5487,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.9124,10.2523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8901,10.2682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.1405,5.6718,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.0309,5.5479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.9124,10.1878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8901,10.2376,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.1405,5.9805,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.0309,5.6409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.9124,10.5130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8901,10.3706,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.1405,5.8898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.0309,5.6562,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.9124,10.3600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8901,10.2838,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.1405,5.8893,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.0309,5.6777,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.9124,10.3662,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8901,10.3145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.1405,6.0577,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.0309,5.6975,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.9124,10.4076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8901,10.3123,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.1405,6.3440,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.0309,5.8192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.9124,10.7693,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8901,10.6132,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.1405,7.6414,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.0309,5.7832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.9124,10.2366,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8901,10.2027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.1405,6.7643,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.0309,6.0682,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.9124,10.0753,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8901,10.1778,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.1405,6.6840,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.0309,5.6969,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.9124,10.6423,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8901,10.6199,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.1405,6.7831,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.0309,6.2196,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.9124,10.4197,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8901,10.3732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.1405,6.7878,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,3.0309,6.1287,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.9124,10.4362,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8901,10.4046,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.1405,6.1482,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,3.0309,5.7445,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.9124,10.2622,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8901,10.1862,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.1405,6.2179,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,3.0309,5.7518,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.9124,11.1822,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8901,11.1106,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.1405,6.5766,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,3.0309,5.8453,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.9124,10.3480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8901,10.3352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.1405,6.8030,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,3.0309,5.9892,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.9124,10.1453,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8901,9.9929,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.1405,6.5076,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,3.0309,5.9550,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.9124,10.1399,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8901,9.8138,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.1405,6.4348,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,3.0309,5.8796,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.9124,9.4210,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8901,9.7068,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.1405,6.3607,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,3.0309,5.7553,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.9124,9.9863,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8901,9.8663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.1405,6.3301,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,3.0309,5.7382,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.9124,9.8782,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8901,10.1655,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.1405,6.1020,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,3.0309,5.7058,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.9124,10.2480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8901,10.1423,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.1405,6.0700,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,3.0309,5.7274,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.9124,10.3659,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8901,10.1449,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.1405,6.2255,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,3.0309,5.7108,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.9124,10.1865,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8901,10.1372,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.1405,6.4284,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,3.0309,5.8311,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.9124,9.9398,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8901,9.8910,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.1405,6.2831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,3.0309,5.6665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.9124,10.1342,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8901,10.2006,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.1405,7.7730,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,3.0309,7.2553,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.9124,10.1162,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8901,10.1404,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.1405,6.6338,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,3.0309,5.7947,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.9124,10.3972,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8901,10.2433,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.1405,5.9322,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,3.0309,5.6575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.9124,10.3927,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8901,10.3190,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.1405,6.7490,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,3.0309,5.9646,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.9124,10.6604,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8901,10.3937,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.1405,6.8758,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,3.0309,5.9267,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.9124,9.6268,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8901,10.0378,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.1405,5.9840,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,3.0309,5.6135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.9124,10.6964,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8901,10.6843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.1405,5.8457,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,3.0309,5.6039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.9124,10.4135,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8901,10.3765,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.1405,5.7698,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,3.0309,5.9784,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.9124,9.8184,0.6828,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8901,10.4414,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.1405,6.3955,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,3.0309,5.9102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.9124,10.1774,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8901,10.1531,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.1405,6.5452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,3.0309,5.9290,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.9124,10.2809,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8901,10.1702,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.1405,6.4014,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,3.0309,5.9470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.9124,10.4415,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8901,10.3613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.1405,7.5145,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,3.0309,6.8775,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.9124,10.2000,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8901,10.1706,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.1405,7.8628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,3.0309,7.0517,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.9124,10.1438,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8901,10.1405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.1405,5.8961,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,3.0309,5.6583,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.9124,10.1878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8901,10.1961,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.1405,6.3697,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,3.0309,5.7012,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.9124,10.2088,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8901,10.1657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.1405,7.0518,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,3.0309,6.0468,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.9124,10.1850,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8901,10.0875,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.1405,6.0491,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,3.0309,5.7536,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.9124,9.9486,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8901,10.1419,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.1405,6.0687,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.0309,5.6882,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.9124,10.2280,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8901,10.1570,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.1405,6.0235,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.0309,5.6591,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.9124,10.2207,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8901,10.1455,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.1405,5.9820,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.0309,5.6471,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.9124,12.8010,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8901,12.7230,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.1405,6.6557,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.0309,6.1817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.9124,10.4637,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8901,10.3757,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.1405,6.4728,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.0309,5.7385,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.9124,10.5783,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8901,10.5321,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.1405,6.4305,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.0309,5.7073,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.9124,10.5267,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8901,10.5590,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.1405,6.3761,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.0309,5.8791,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.9124,10.4460,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8901,10.3804,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.1405,6.4103,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.0309,5.6825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.9124,10.4708,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8901,10.4439,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.1405,6.4702,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.0309,5.9046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.9124,10.4042,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8901,10.3842,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.1405,6.4503,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.0309,5.7301,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.9124,10.4708,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8901,10.4266,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.1405,6.4357,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.0309,5.7841,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.9124,10.7447,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8901,10.6512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.1405,6.5430,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.0309,5.7460,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.9124,10.9540,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8901,10.9097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.1405,6.5236,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.0309,5.7677,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.9124,11.3186,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8901,11.2446,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.1405,6.9831,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.0309,6.0431,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.9124,10.8289,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8901,10.5961,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.1405,6.4825,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.0309,5.8363,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.9124,9.8540,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8901,10.0638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.1405,6.1895,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.0309,5.7135,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.9124,10.3269,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8901,10.2789,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.1405,6.5349,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.0309,5.8098,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.9124,9.8160,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8901,9.8606,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.1405,6.4171,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.0309,5.8008,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.9124,11.9948,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8901,11.6096,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.1405,6.9075,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.0309,5.8905,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.9124,9.5416,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8901,9.8610,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.1405,6.0148,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.0309,5.7123,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.9124,10.1847,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8901,10.1878,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.1405,5.9745,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.0309,5.6007,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.9124,10.2243,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8901,10.2169,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.1405,5.9207,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.0309,5.6803,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.9124,10.0852,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8901,10.1863,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.1405,5.9232,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.0309,5.6499,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.9124,10.1823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8901,10.1862,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.1405,5.9827,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.0309,5.6986,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.9124,10.1770,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8901,10.1889,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.1405,10.6622,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.0309,10.2995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.9124,10.2221,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8901,10.2153,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.1405,6.1051,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.0309,5.6913,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.9124,10.4478,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8901,10.3169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.1405,6.0078,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.0309,5.7437,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.9124,10.1680,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8901,10.1582,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.1405,5.9358,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.0309,5.6855,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.9124,10.0789,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8901,10.1634,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.1405,9.8975,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.0309,7.5378,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.9124,10.2701,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8901,10.2223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.1405,5.7720,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,3.0309,5.5020,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.9124,10.2288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8901,10.2029,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.1405,5.9168,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,3.0309,5.5518,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.9124,10.3127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8901,10.2613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.1405,5.9416,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,3.0309,5.7147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.9124,10.1092,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8901,10.1544,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.1405,6.0738,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,3.0309,5.6848,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.9124,10.1622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8901,10.1980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.1405,6.1044,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,3.0309,5.6681,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.9124,10.1724,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8901,10.1748,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.1405,5.9920,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,3.0309,5.7224,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.9124,10.2753,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8901,10.2228,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.1405,6.4004,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,3.0309,5.8993,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.9124,10.1097,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8901,10.1204,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.1405,6.2263,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,3.0309,5.9232,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.9124,10.6829,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8901,10.5960,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.1405,6.3582,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,3.0309,5.7948,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.9124,10.5707,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8901,10.5191,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.1405,6.1463,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,3.0309,5.9131,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.9124,9.3053,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8901,10.1862,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.1405,6.4820,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,3.0309,5.8545,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.9124,10.5687,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8901,10.3347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.1405,6.1657,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,3.0309,5.7198,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.9124,10.7127,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8901,10.5268,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.1405,6.0405,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,3.0309,5.6391,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.9124,10.2596,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8901,10.2226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.1405,5.9081,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,3.0309,5.6418,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.9124,10.3437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8901,10.1985,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.1405,5.9870,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,3.0309,5.6740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.9124,10.1465,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8901,10.2429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.1405,5.9775,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,3.0309,5.6422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.9124,10.1959,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8901,10.1694,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.1405,5.9136,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,3.0309,5.6409,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.9124,10.1972,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8901,10.2024,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.1405,5.9535,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,3.0309,5.6803,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.9124,10.2554,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8901,10.1760,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.1405,6.0980,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,3.0309,5.9102,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.9124,10.1655,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8901,9.9731,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.1405,5.9797,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,3.0309,5.7028,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.9124,10.3530,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8901,10.2299,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.1405,5.9990,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,3.0309,5.6392,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.9124,10.4960,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8901,10.4115,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.1405,5.7010,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,3.0309,5.4432,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.9124,10.3689,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8901,10.3497,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.1405,6.3813,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,3.0309,5.8340,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.9124,10.4552,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8901,10.4692,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.1405,6.2453,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,3.0309,5.9193,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.9124,10.2390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8901,10.2267,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.1405,6.3758,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,3.0309,5.9560,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.9124,11.0010,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8901,10.7810,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.1405,6.3563,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,3.0309,5.9959,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.9124,9.9949,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8901,10.1806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.1405,6.3550,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,3.0309,5.8611,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.9124,10.0680,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8901,10.0946,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.1405,6.2780,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,3.0309,5.7292,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.9124,10.5158,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8901,10.2575,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.1405,8.6752,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,3.0309,8.0508,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.9124,10.6080,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8901,10.5705,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.1405,8.2251,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,3.0309,7.4485,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.9124,10.7403,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8901,10.5345,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.1405,30.0173,0.0163,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +601,3.0309,30.6782,0.0095,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +602,2.9124,25.4765,0.0069,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +603,2.8901,26.0972,0.0104,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +604,5.1405,5.8191,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +605,3.0309,5.6155,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +606,2.9124,10.4056,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +607,2.8901,10.4004,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +608,5.1405,5.8094,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +609,3.0309,5.6246,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +610,2.9124,10.6007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +611,2.8901,10.4213,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +612,5.1405,5.8025,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +613,3.0309,5.6041,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +614,2.9124,10.6205,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +615,2.8901,10.6535,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +616,5.1405,5.7309,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +617,3.0309,5.5580,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +618,2.9124,10.4307,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +619,2.8901,10.3982,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +620,5.1405,5.7212,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +621,3.0309,5.5681,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +622,2.9124,10.5731,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +623,2.8901,10.5586,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +624,5.1405,5.6997,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +625,3.0309,5.4958,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +626,2.9124,10.5724,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +627,2.8901,10.5319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +628,5.1405,5.6255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +629,3.0309,5.4685,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +630,2.9124,10.3213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +631,2.8901,10.3158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +632,5.1405,5.5895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +633,3.0309,5.4641,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +634,2.9124,10.4538,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +635,2.8901,10.4267,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +636,5.1405,5.6591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +637,3.0309,5.5075,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +638,2.9124,10.4858,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +639,2.8901,10.4552,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +640,5.1405,5.7027,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +641,3.0309,5.5666,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +642,2.9124,10.4428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +643,2.8901,10.3912,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +644,5.1405,5.7772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +645,3.0309,5.6074,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +646,2.9124,10.4874,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +647,2.8901,10.4424,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +648,5.1405,5.8341,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +649,3.0309,5.5936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +650,2.9124,10.5146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +651,2.8901,10.4589,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +652,5.1405,5.6889,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +653,3.0309,5.5798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +654,2.9124,10.5877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +655,2.8901,10.5403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +656,5.1405,5.9691,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +657,3.0309,5.7540,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +658,2.9124,10.6371,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +659,2.8901,10.5451,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +660,5.1405,6.0313,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +661,3.0309,5.6532,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +662,2.9124,10.6253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +663,2.8901,10.5001,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +664,5.1405,5.8934,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +665,3.0309,5.6689,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +666,2.9124,10.5250,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +667,2.8901,10.4198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +668,5.1405,5.9080,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +669,3.0309,5.6805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +670,2.9124,10.5230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +671,2.8901,10.4060,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +672,5.1405,5.9105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +673,3.0309,5.6780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +674,2.9124,10.9640,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +675,2.8901,10.7766,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +676,5.1405,6.5032,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +677,3.0309,6.0927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +678,2.9124,10.8227,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +679,2.8901,10.7803,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +680,5.1405,6.6022,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +681,3.0309,5.8400,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +682,2.9124,10.6811,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +683,2.8901,10.4367,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +684,5.1405,6.6987,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +685,3.0309,5.8187,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +686,2.9124,10.0683,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +687,2.8901,9.8595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +688,5.1405,5.9535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +689,3.0309,5.6854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +690,2.9124,10.5493,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8901,10.4492,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +692,5.1405,6.0626,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +693,3.0309,5.6372,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +694,2.9124,11.1961,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +695,2.8901,11.0050,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +696,5.1405,6.5447,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +697,3.0309,6.1262,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +698,2.9124,10.2691,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +699,2.8901,10.3643,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +700,5.1405,6.6089,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +701,3.0309,6.0275,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +702,2.9124,10.5478,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +703,2.8901,10.3169,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +704,5.1405,8.7840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +705,3.0309,7.9950,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +706,2.9124,12.4883,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +707,2.8901,12.3076,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +708,5.1405,6.0255,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +709,3.0309,5.7716,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +710,2.9124,10.3522,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +711,2.8901,10.2876,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +712,5.1405,5.9296,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +713,3.0309,5.6513,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +714,2.9124,10.4851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +715,2.8901,10.4019,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +716,5.1405,5.9847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +717,3.0309,5.6897,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +718,2.9124,10.6027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +719,2.8901,10.5086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +720,5.1405,6.1070,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +721,3.0309,5.7718,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.9124,10.6120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +723,2.8901,10.4664,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +724,5.1405,5.7970,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +725,3.0309,5.5264,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.9124,10.4462,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +727,2.8901,10.2936,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +728,5.1405,6.0765,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +729,3.0309,5.7028,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.9124,10.4938,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +731,2.8901,10.4553,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +732,5.1405,5.9772,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +733,3.0309,5.6259,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.9124,10.5037,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +735,2.8901,10.4428,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +736,5.1405,6.0537,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +737,3.0309,5.6662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.9124,10.5198,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +739,2.8901,10.4378,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +740,5.1405,6.0054,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +741,3.0309,5.6465,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.9124,10.3836,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +743,2.8901,10.4056,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.1405,5.8670,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +745,3.0309,5.6151,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.9124,10.4960,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +747,2.8901,10.3964,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +748,5.1405,6.1006,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +749,3.0309,5.6147,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.9124,10.4143,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +751,2.8901,10.3751,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +752,5.1405,6.0582,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +753,3.0309,5.6071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.9124,10.6268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +755,2.8901,10.5591,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +756,5.1405,6.0096,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +757,3.0309,5.6613,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.9124,10.4671,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +759,2.8901,10.4207,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +760,5.1405,5.9295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,3.0309,5.6595,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.9124,10.4933,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +763,2.8901,10.4715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +764,5.1405,6.0535,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,3.0309,5.6237,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.9124,10.5512,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +767,2.8901,10.5358,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +768,5.1405,5.8566,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,3.0309,5.6240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.9124,10.4583,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +771,2.8901,10.5086,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.1405,5.8529,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,3.0309,5.6128,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.9124,10.5430,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +775,2.8901,10.4805,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +776,5.1405,5.9280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,3.0309,5.6165,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.9124,10.4650,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +779,2.8901,10.4145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +780,5.1405,6.0094,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,3.0309,5.6285,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.9124,10.4903,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +783,2.8901,10.4634,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.1405,5.8281,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,3.0309,5.5946,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.9124,10.4901,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +787,2.8901,10.4371,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +788,5.1405,6.0593,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,3.0309,5.6422,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.9124,10.5337,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +791,2.8901,10.4329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +792,5.1405,5.8941,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,3.0309,5.6277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.9124,10.4749,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +795,2.8901,10.4726,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.1405,5.8418,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,3.0309,5.5766,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.9124,10.4965,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +799,2.8901,10.4627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +800,5.1405,6.0020,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,3.0309,5.6358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.9124,10.4672,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +803,2.8901,10.4346,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.1405,6.0054,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,3.0309,5.5980,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.9124,10.4943,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +807,2.8901,10.3965,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +808,5.1405,5.8577,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,3.0309,5.6501,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.9124,10.4195,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +811,2.8901,10.3897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +812,5.1405,6.0143,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,3.0309,5.6328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.9124,10.4601,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +815,2.8901,10.3562,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +816,5.1405,6.0020,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,3.0309,5.5840,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.9124,10.4029,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8901,10.3663,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +820,5.1405,5.8227,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,3.0309,5.5982,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.9124,10.5042,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8901,10.4333,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.1405,5.9698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,3.0309,5.6527,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.9124,10.3871,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8901,10.3440,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +828,5.1405,5.8957,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,3.0309,5.5814,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.9124,10.4709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8901,10.4485,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +832,5.1405,5.9737,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,3.0309,5.6232,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.9124,10.4145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,2.8901,10.3741,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +836,5.1405,5.9568,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,3.0309,5.6263,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.9124,10.4352,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +839,2.8901,10.3801,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +840,5.1405,5.8173,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,3.0309,5.5703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.9124,10.4831,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +843,2.8901,10.4005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.1405,5.7219,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,3.0309,5.5769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.9124,10.4230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +847,2.8901,10.4202,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +848,5.1405,5.7337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,3.0309,5.5410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.9124,10.4778,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +851,2.8901,10.4662,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.1405,5.6922,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,3.0309,5.5165,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.9124,10.3492,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +855,2.8901,10.3290,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +856,5.1405,5.7045,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,3.0309,5.5520,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.9124,10.4226,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +859,2.8901,10.4178,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +860,5.1405,5.6618,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,3.0309,5.5320,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.9124,10.4134,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.8901,10.3752,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +864,5.1405,5.7207,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,3.0309,5.5342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.9124,10.4095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.8901,10.3563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +868,5.1405,5.9970,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,3.0309,5.6647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.9124,10.4791,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.8901,10.4188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +872,5.1405,6.0511,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,3.0309,5.6588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.9124,10.5516,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8901,10.4290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +876,5.1405,6.2487,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,3.0309,5.8078,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.9124,10.7494,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +879,2.8901,10.5807,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +880,5.1405,6.2770,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.0309,5.8755,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.9124,10.6743,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +883,2.8901,10.5829,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +884,5.1405,6.2043,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.0309,5.7804,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.9124,10.6859,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +887,2.8901,10.5745,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +888,5.1405,6.3126,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.0309,5.8293,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.9124,11.4497,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +891,2.8901,11.2883,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.1405,6.0514,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.0309,5.6805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.9124,10.6695,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +895,2.8901,10.5499,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +896,5.1405,6.1105,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.0309,5.7190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.9124,10.7400,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +899,2.8901,10.6147,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +900,5.1405,7.0212,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.0309,5.9202,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.9124,11.7328,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +903,2.8901,11.4411,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +904,5.1405,6.5695,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.0309,6.0935,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.9124,11.1834,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.8901,12.5975,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +908,5.1405,6.5368,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.0309,6.2017,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.9124,11.1704,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.8901,11.2084,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +912,5.1405,6.6125,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.0309,6.1049,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.9124,11.0245,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.8901,11.0781,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +916,5.1405,6.7714,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.0309,5.9167,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.9124,10.1510,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8901,10.0381,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +920,5.1405,6.6525,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.0309,5.8357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.9124,10.1065,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8901,10.0346,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +924,5.1405,6.3975,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.0309,5.7831,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.9124,9.9235,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8901,9.9708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +928,5.1405,6.7321,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.0309,5.6780,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.9124,10.0439,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +931,2.8901,10.1209,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +932,5.1405,6.3243,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.0309,5.7068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.9124,9.9383,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +935,2.8901,9.9230,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.1405,6.4016,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.0309,5.8438,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.9124,10.2181,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +939,2.8901,9.9465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +940,5.1405,6.3314,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.0309,5.7262,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.9124,9.9637,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +943,2.8901,9.9280,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +944,5.1405,6.6097,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.0309,5.8900,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.9124,10.0274,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +947,2.8901,9.9603,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +948,5.1405,6.5181,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.0309,5.9286,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.9124,10.1563,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8901,9.9827,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +952,5.1405,6.4745,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.0309,5.7216,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.9124,9.8919,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.8901,9.8188,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +956,5.1405,6.5662,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.0309,5.9094,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.9124,10.3210,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.8901,10.0855,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +960,5.1405,7.8516,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,3.0309,6.8727,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.9124,9.9775,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.8901,9.7725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.1405,6.2102,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,3.0309,5.7288,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.9124,10.5300,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +967,2.8901,10.4782,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +968,5.1405,5.9649,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,3.0309,5.6615,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.9124,10.4495,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.8901,10.4147,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +972,5.1405,6.3405,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,3.0309,5.7675,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.9124,10.3371,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +975,2.8901,10.2277,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +976,5.1405,6.5408,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,3.0309,5.8932,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.9124,9.6508,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +979,2.8901,9.4793,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +980,5.1405,6.5249,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,3.0309,5.8190,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.9124,9.9156,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +983,2.8901,10.0652,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.1405,6.4433,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,3.0309,5.8542,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.9124,10.0603,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +987,2.8901,9.9612,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +988,5.1405,6.5148,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,3.0309,5.7970,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.9124,10.1118,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +991,2.8901,9.9917,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.1405,6.7491,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,3.0309,5.7348,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.9124,10.0085,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.8901,9.9178,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.1405,6.2576,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,3.0309,6.0066,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.9124,6.0399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.8901,10.0240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.1405,5.8623,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,3.0309,5.5978,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.9124,10.2471,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.8901,10.1581,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1004,5.1405,5.9029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,3.0309,5.6606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.9124,10.2649,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1007,2.8901,10.1788,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1008,5.1405,6.4845,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,3.0309,5.6540,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.9124,10.4217,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1011,2.8901,10.1857,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.1405,6.5035,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,3.0309,5.7343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.9124,10.0559,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1015,2.8901,9.5891,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1016,5.1405,6.0902,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,3.0309,5.7275,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.9124,10.6553,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1019,2.8901,10.4985,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.1405,6.1534,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,3.0309,5.7405,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.9124,10.6822,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1023,2.8901,10.6342,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.1405,6.6899,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,3.0309,5.8027,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.9124,10.4117,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1027,2.8901,10.2809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.1405,6.7453,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,3.0309,5.7652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.9124,10.4770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1031,2.8901,10.2855,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1032,5.1405,6.9233,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,3.0309,5.8170,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.9124,13.4071,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1035,2.8901,13.1713,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1036,5.1405,6.3210,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,3.0309,5.8009,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.9124,10.2877,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.8901,10.2760,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1040,5.1405,7.1355,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,3.0309,5.8155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.9124,10.7975,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.8901,10.5270,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1044,5.1405,6.7012,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,3.0309,5.8250,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.9124,10.4712,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.8901,10.2587,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.1405,6.2445,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,3.0309,5.7715,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.9124,10.6582,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8901,10.6181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.1405,6.7783,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,3.0309,5.7363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.9124,10.5293,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1055,2.8901,10.3635,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.1405,6.9485,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,3.0309,5.7823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.9124,10.5795,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1059,2.8901,10.2248,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.1405,6.7354,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,3.0309,5.8515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.9124,10.4447,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1063,2.8901,10.3179,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.1405,6.9481,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,3.0309,5.8410,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.9124,10.1827,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1067,2.8901,10.2665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1068,5.1405,6.6374,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,3.0309,5.8362,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.9124,10.4113,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1071,2.8901,10.2722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1072,5.1405,6.8042,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,3.0309,5.8106,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.9124,10.4731,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1075,2.8901,10.2007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.1405,6.2008,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,3.0309,5.8125,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.9124,10.6030,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1079,2.8901,10.5517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.1405,8.5391,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,3.0309,7.7783,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.9124,10.3608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.8901,10.3270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.1405,7.0625,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.0309,5.9212,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.9124,10.4900,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.8901,10.2759,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.1405,6.5542,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.0309,5.7773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.9124,10.0070,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.8901,9.9692,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1092,5.1405,6.3543,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.0309,5.7523,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.9124,10.0055,0.0390,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.8901,9.9511,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.1405,7.3093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.0309,6.4017,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.9124,10.4264,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1099,2.8901,10.1898,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1100,5.1405,6.5660,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.0309,6.0284,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.9124,10.2892,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,2.8901,10.1661,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.1405,6.4380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.0309,5.6942,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.9124,10.1688,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1107,2.8901,10.2845,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.1405,6.4730,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.0309,6.0814,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.9124,9.3561,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8901,9.9339,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.1405,6.6493,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.0309,5.9317,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.9124,9.7991,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8901,10.1243,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.1405,6.5320,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.0309,5.7393,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.9124,9.6471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8901,10.2650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1120,5.1405,6.2485,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.0309,5.7124,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.9124,10.3818,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1123,2.8901,10.3125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.1405,6.7452,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.0309,5.9487,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.9124,10.4486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.8901,10.3067,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1128,5.1405,6.3640,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.0309,5.6174,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.9124,12.6691,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.8901,12.5908,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1132,5.1405,6.7982,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.0309,6.1154,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.9124,10.6235,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.8901,10.5364,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.1405,6.6445,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.0309,5.7866,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.9124,12.0094,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.8901,12.0837,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.1405,6.6094,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.0309,5.9675,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.9124,10.5045,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.8901,10.3458,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.1405,6.6644,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.0309,5.9173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.9124,10.3462,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8901,10.2523,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.1405,6.5523,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.0309,5.7639,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.9124,10.4383,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8901,10.2455,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.1405,6.6337,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.0309,5.7805,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.9124,10.7576,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8901,10.6930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.1405,6.6227,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.0309,5.8202,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.9124,10.3399,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8901,10.2579,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.1405,6.4900,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.0309,5.6492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.9124,10.7707,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8901,10.7135,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.1405,6.7580,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.0309,5.8118,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.9124,10.2362,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1167,2.8901,10.1876,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.1405,6.4515,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.0309,5.7352,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.9124,10.2815,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.8901,10.2265,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.1405,6.7147,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.0309,5.8927,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.9124,10.1201,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.8901,9.8810,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.1405,6.4604,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.0309,5.8806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.9124,9.9168,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8901,9.9698,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.1405,6.4759,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.0309,5.8663,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.9124,10.2609,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8901,10.0281,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1184,5.1405,6.4843,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.0309,7.1113,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.9124,10.0593,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8901,10.0022,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.1405,6.6937,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.0309,6.0465,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.9124,10.7967,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8901,11.4564,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.1405,6.5255,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.0309,5.7189,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.9124,9.9161,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8901,10.0268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.1405,6.5875,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.0309,5.6686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.9124,10.2469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8901,10.1320,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.txt new file mode 100644 index 0000000..246c99e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.txt @@ -0,0 +1,63 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=4.997 +effective_logical_fps=60.040 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=12.255 +p95_encode_latency_ms=12.937 +max_encode_latency_ms=112.592 +avg_steady_encode_latency_ms=12.015 +p95_steady_encode_latency_ms=12.937 +max_steady_encode_latency_ms=112.592 +avg_tile_encode_latency_ms=8.351 +p95_tile_encode_latency_ms=10.741 +avg_max_tile_encode_latency_ms=10.589 +p95_max_tile_encode_latency_ms=11.325 +avg_steady_max_tile_encode_latency_ms=10.537 +p95_steady_max_tile_encode_latency_ms=11.325 +payload_bytes=2003860 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1_logical.csv new file mode 100644 index 0000000..37fde4b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_inflight1_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.8997,28.8280,231707 +1,4,0,10.9527,10.4081,65901 +2,4,0,10.9785,10.4541,36886 +3,4,0,10.7915,10.3061,69404 +4,4,0,10.7973,10.2738,87864 +5,4,0,11.0706,10.4803,53700 +6,4,0,10.8807,10.3972,24415 +7,4,0,10.9173,10.5288,15407 +8,4,0,10.8520,10.3569,12151 +9,4,0,10.8446,10.4119,11449 +10,4,0,10.7942,10.3884,8599 +11,4,0,10.8893,10.3397,6107 +12,4,0,10.8027,10.2540,5132 +13,4,0,10.8700,10.3374,3880 +14,4,0,10.8470,10.3122,4001 +15,4,0,10.9109,10.4264,3860 +16,4,0,10.9999,10.4750,4045 +17,4,0,11.0209,10.3613,3955 +18,4,0,11.0038,10.4265,3721 +19,4,0,11.0789,10.5503,3748 +20,4,0,11.7097,10.1910,3386 +21,4,0,11.8692,10.2075,2761 +22,4,0,11.6672,10.6939,2750 +23,4,0,11.4147,10.4931,2836 +24,4,0,11.4166,10.4568,2977 +25,4,0,12.3845,10.4234,2960 +26,4,0,12.2624,10.8686,3010 +27,4,0,11.7406,7.4822,2978 +28,4,0,11.5946,9.8925,2889 +29,4,0,12.5271,11.5578,2914 +30,4,0,11.6473,10.4410,2847 +31,4,0,11.2779,10.4051,3111 +32,4,0,11.6916,10.4002,2714 +33,4,0,12.0581,10.2008,2843 +34,4,0,11.6563,9.2257,2633 +35,4,0,11.8015,10.5879,2659 +36,4,0,13.0176,10.3718,2696 +37,4,0,13.5575,11.9666,2728 +38,4,0,12.3767,10.9095,2772 +39,4,0,15.4832,13.7981,2740 +40,4,0,11.1043,10.4321,2809 +41,4,0,12.1019,10.3778,2679 +42,4,0,11.5326,10.5133,2865 +43,4,0,11.0238,10.2940,2612 +44,4,0,10.9853,10.3181,2626 +45,4,0,11.3015,10.5605,2693 +46,4,0,11.0657,10.4949,2708 +47,4,0,11.0387,10.4025,2765 +48,4,0,11.0321,10.2813,2645 +49,4,0,10.9257,10.2682,2733 +50,4,0,10.8765,10.2376,2667 +51,4,0,11.1741,10.5130,2647 +52,4,0,11.0087,10.3600,2659 +53,4,0,11.0938,10.3662,2757 +54,4,0,11.1861,10.4076,2656 +55,4,0,11.6710,10.7693,2594 +56,4,0,12.9323,10.2366,2603 +57,4,0,12.2658,10.1778,2605 +58,4,0,12.1489,10.6423,2610 +59,4,0,11.6784,10.4197,2641 +60,4,0,11.7644,10.4362,2637 +61,4,0,11.4383,10.2622,2691 +62,4,0,12.2551,11.1822,2620 +63,4,0,11.6792,10.3480,2614 +64,4,0,11.9306,10.1453,2666 +65,4,0,11.6037,10.1399,2613 +66,4,0,11.8138,9.7068,2624 +67,4,0,12.2569,9.9863,2612 +68,4,0,12.0292,10.1655,2687 +69,4,0,11.3088,10.2480,2622 +70,4,0,11.3004,10.3659,2623 +71,4,0,11.2126,10.1865,2647 +72,4,0,11.9284,9.9398,2645 +73,4,0,11.5358,10.2006,2643 +74,4,0,11.6917,10.1404,2635 +75,4,0,11.7330,10.3972,2718 +76,4,0,11.1515,10.3927,2602 +77,4,0,11.9646,10.6604,2605 +78,4,0,12.0664,10.0378,2612 +79,4,0,11.5407,10.6964,2607 +80,4,0,11.0473,10.4135,2630 +81,4,0,11.6551,10.4414,2617 +82,4,0,11.2810,10.1774,2661 +83,4,0,11.3033,10.2809,2606 +84,4,0,11.4388,10.4415,2609 +85,4,0,11.4804,10.2000,2612 +86,4,0,11.5024,10.1438,2632 +87,4,0,11.1572,10.1961,2606 +88,4,0,11.6053,10.2088,2610 +89,4,0,11.8082,10.1850,2652 +90,4,0,11.3614,10.1419,2594 +91,4,0,11.2636,10.2280,2609 +92,4,0,11.2037,10.2207,2598 +93,4,0,13.6939,12.8010,2613 +94,4,0,11.5959,10.4637,2618 +95,4,0,11.8250,10.5783,2604 +96,4,0,11.8742,10.5590,2677 +97,4,0,11.5971,10.4460,2620 +98,4,0,11.7065,10.4708,2594 +99,4,0,11.6780,10.4042,2594 +100,4,0,11.6454,10.4708,2598 +101,4,0,11.9119,10.7447,2609 +102,4,0,12.2938,10.9540,2616 +103,4,0,12.5828,11.3186,2630 +104,4,0,12.3745,10.8289,2606 +105,4,0,11.9774,10.0638,2604 +106,4,0,11.6004,10.3269,2609 +107,4,0,12.0575,9.8606,2610 +108,4,0,13.3979,11.9948,2652 +109,4,0,11.9180,9.8610,2600 +110,4,0,11.2154,10.1878,2640 +111,4,0,11.0994,10.2243,2594 +112,4,0,11.1910,10.1863,2594 +113,4,0,11.0637,10.1862,2600 +114,4,0,11.0691,10.1889,2599 +115,4,0,11.1616,10.6622,2607 +116,4,0,11.1794,10.4478,2603 +117,4,0,11.2868,10.1680,2623 +118,4,0,11.2134,10.1634,2600 +119,4,0,13.1173,10.2701,2610 +120,4,0,10.8309,10.2288,2594 +121,4,0,10.9951,10.3127,2594 +122,4,0,11.2310,10.1544,2603 +123,4,0,11.2813,10.1980,2602 +124,4,0,11.2882,10.1748,2619 +125,4,0,11.2695,10.2753,2600 +126,4,0,11.2364,10.1204,2600 +127,4,0,11.5853,10.6829,2594 +128,4,0,11.9072,10.5707,2594 +129,4,0,12.3544,10.1862,2599 +130,4,0,11.6387,10.5687,2607 +131,4,0,11.3251,10.7127,2605 +132,4,0,11.1216,10.2596,2596 +133,4,0,11.0796,10.3437,2594 +134,4,0,11.1791,10.2429,2594 +135,4,0,11.1267,10.1959,2594 +136,4,0,11.0423,10.2024,2594 +137,4,0,11.1788,10.2554,2594 +138,4,0,11.3895,10.1655,2604 +139,4,0,11.0929,10.3530,2594 +140,4,0,11.0751,10.4960,2594 +141,4,0,10.8854,10.3689,2599 +142,4,0,11.5505,10.4692,2594 +143,4,0,11.7654,10.2390,2594 +144,4,0,12.3338,11.0010,2594 +145,4,0,11.9058,10.1806,2604 +146,4,0,11.7230,10.0946,2594 +147,4,0,11.8516,10.5158,2594 +148,4,0,11.6913,10.6080,2594 +149,4,0,11.9219,10.7403,2601 +150,4,0,112.5923,30.6782,231707 +151,4,0,10.9530,10.4056,65901 +152,4,0,11.0334,10.6007,36886 +153,4,0,11.3253,10.6535,69404 +154,4,0,10.9596,10.4307,87864 +155,4,0,11.0606,10.5731,53700 +156,4,0,11.0780,10.5724,24415 +157,4,0,10.8003,10.3213,15407 +158,4,0,10.8673,10.4538,12151 +159,4,0,11.0173,10.4858,11449 +160,4,0,10.9707,10.4428,8599 +161,4,0,10.9780,10.4874,6107 +162,4,0,11.1099,10.5146,5132 +163,4,0,11.1554,10.5877,3880 +164,4,0,11.1685,10.6371,4001 +165,4,0,11.3919,10.6253,3860 +166,4,0,11.1002,10.5250,4045 +167,4,0,11.0809,10.5230,3955 +168,4,0,11.6309,10.9640,3721 +169,4,0,11.9453,10.8227,3748 +170,4,0,12.0528,10.6811,3386 +171,4,0,11.7945,10.0683,2761 +172,4,0,11.2083,10.5493,2750 +173,4,0,12.0383,11.1961,2836 +174,4,0,12.2420,10.3643,2977 +175,4,0,11.7260,10.5478,2960 +176,4,0,13.5369,12.4883,3010 +177,4,0,11.3322,10.3522,2978 +178,4,0,11.1658,10.4851,2889 +179,4,0,11.3798,10.6027,2914 +180,4,0,11.2227,10.6120,2847 +181,4,0,11.0316,10.4462,3111 +182,4,0,11.3002,10.4938,2714 +183,4,0,11.1913,10.5037,2843 +184,4,0,11.2555,10.5198,2633 +185,4,0,11.2033,10.4056,2659 +186,4,0,11.0450,10.4960,2696 +187,4,0,11.2003,10.4143,2728 +188,4,0,11.3029,10.6268,2772 +189,4,0,11.1738,10.4671,2740 +190,4,0,11.0686,10.4933,2809 +191,4,0,11.2800,10.5512,2679 +192,4,0,11.0726,10.5086,2865 +193,4,0,11.0738,10.5430,2612 +194,4,0,11.0125,10.4650,2626 +195,4,0,11.1920,10.4903,2693 +196,4,0,10.9694,10.4901,2708 +197,4,0,11.2024,10.5337,2765 +198,4,0,11.0293,10.4749,2645 +199,4,0,11.0098,10.4965,2733 +200,4,0,11.2197,10.4672,2667 +201,4,0,11.2060,10.4943,2647 +202,4,0,10.9992,10.4195,2659 +203,4,0,11.1690,10.4601,2757 +204,4,0,11.1298,10.4029,2656 +205,4,0,10.9598,10.5042,2594 +206,4,0,11.0753,10.3871,2603 +207,4,0,11.1781,10.4709,2605 +208,4,0,11.1318,10.4145,2610 +209,4,0,11.0895,10.4352,2641 +210,4,0,10.9880,10.4831,2637 +211,4,0,10.9181,10.4230,2691 +212,4,0,10.9547,10.4778,2620 +213,4,0,10.8713,10.3492,2614 +214,4,0,10.8662,10.4226,2666 +215,4,0,10.9412,10.4134,2613 +216,4,0,10.9775,10.4095,2624 +217,4,0,11.1540,10.4791,2612 +218,4,0,11.2844,10.5516,2687 +219,4,0,11.5250,10.7494,2622 +220,4,0,11.5935,10.6743,2623 +221,4,0,11.4956,10.6859,2647 +222,4,0,12.3016,11.4497,2645 +223,4,0,11.2983,10.6695,2643 +224,4,0,11.4012,10.7400,2635 +225,4,0,13.2818,11.7328,2718 +226,4,0,13.5354,12.5975,2602 +227,4,0,11.9272,11.2084,2605 +228,4,0,11.8659,11.0781,2612 +229,4,0,12.1205,10.1510,2607 +230,4,0,12.0070,10.1065,2630 +231,4,0,11.7423,9.9708,2617 +232,4,0,11.8685,10.1209,2661 +233,4,0,11.7085,9.9383,2606 +234,4,0,11.7351,10.2181,2609 +235,4,0,11.7538,9.9637,2612 +236,4,0,11.7752,10.0274,2632 +237,4,0,11.8269,10.1563,2606 +238,4,0,11.7919,9.8919,2610 +239,4,0,11.7849,10.3210,2652 +240,4,0,11.7722,9.9775,2594 +241,4,0,11.5406,10.5300,2609 +242,4,0,11.0685,10.4495,2598 +243,4,0,11.7676,10.3371,2613 +244,4,0,12.1753,9.6508,2618 +245,4,0,11.9214,10.0652,2604 +246,4,0,11.8096,10.0603,2677 +247,4,0,11.7048,10.1118,2620 +248,4,0,11.8998,10.0085,2594 +249,4,0,15.5084,10.0240,2594 +250,4,0,10.9422,10.2471,2598 +251,4,0,11.0225,10.2649,2609 +252,4,0,11.7127,10.4217,2616 +253,4,0,11.7389,10.0559,2630 +254,4,0,11.4785,10.6553,2606 +255,4,0,11.4444,10.6822,2604 +256,4,0,12.0011,10.4117,2609 +257,4,0,11.9763,10.4770,2610 +258,4,0,15.1948,13.4071,2652 +259,4,0,11.8290,10.2877,2600 +260,4,0,12.7620,10.7975,2640 +261,4,0,11.8833,10.4712,2594 +262,4,0,11.4959,10.6582,2594 +263,4,0,12.1502,10.5293,2600 +264,4,0,12.2186,10.5795,2599 +265,4,0,12.0906,10.4447,2607 +266,4,0,12.4886,10.2665,2603 +267,4,0,11.9247,10.4113,2623 +268,4,0,12.0394,10.4731,2600 +269,4,0,11.3947,10.6030,2610 +270,4,0,12.0070,10.3608,2594 +271,4,0,12.1005,10.4900,2594 +272,4,0,11.9429,10.0070,2603 +273,4,0,11.7570,10.0055,2602 +274,4,0,11.7931,10.4264,2619 +275,4,0,11.5734,10.2892,2600 +276,4,0,11.9263,10.2845,2600 +277,4,0,12.5386,9.9339,2594 +278,4,0,12.4985,10.1243,2594 +279,4,0,12.1087,10.2650,2599 +280,4,0,11.4773,10.3818,2607 +281,4,0,11.6739,10.4486,2605 +282,4,0,13.8625,12.6691,2596 +283,4,0,11.9188,10.6235,2594 +284,4,0,13.5003,12.0837,2594 +285,4,0,11.6900,10.5045,2594 +286,4,0,12.0723,10.3462,2594 +287,4,0,11.7013,10.4383,2594 +288,4,0,12.0865,10.7576,2604 +289,4,0,11.6129,10.3399,2594 +290,4,0,12.1320,10.7707,2594 +291,4,0,11.7855,10.2362,2599 +292,4,0,11.5207,10.2815,2594 +293,4,0,11.8242,10.1201,2594 +294,4,0,11.8560,9.9698,2594 +295,4,0,11.7400,10.2609,2604 +296,4,0,11.9054,10.0593,2594 +297,4,0,12.8521,11.4564,2594 +298,4,0,11.9123,10.0268,2594 +299,4,0,12.0627,10.2469,2601 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_logical.csv new file mode 100644 index 0000000..cfd6361 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset150_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.2118,29.1635,231707 +1,4,0,10.9126,10.4325,65901 +2,4,0,20.4190,20.0815,36886 +3,4,0,30.2062,29.9420,69404 +4,4,0,40.1865,39.9682,87864 +5,4,0,50.7002,50.5022,53700 +6,4,0,60.8891,60.6903,24415 +7,4,0,71.4630,66.0938,15407 +8,4,0,67.4159,65.4992,12151 +9,4,0,59.3938,59.0331,11449 +10,4,0,52.5519,52.1359,8599 +11,4,0,46.4913,46.0955,6107 +12,4,0,40.2019,39.7553,5132 +13,4,0,33.1580,32.7695,3880 +14,4,0,26.9493,26.4075,4001 +15,4,0,20.2335,19.6915,3860 +16,4,0,16.8878,16.4309,4045 +17,4,0,11.0880,10.4930,3955 +18,4,0,11.1553,10.4870,3721 +19,4,0,11.1486,10.5370,3748 +20,4,0,11.0442,10.5190,3386 +21,4,0,10.9920,10.4627,2761 +22,4,0,11.0631,10.4693,2750 +23,4,0,10.8316,10.3390,2836 +24,4,0,10.9208,10.3787,2977 +25,4,0,11.0524,10.5200,2960 +26,4,0,11.0257,10.4733,3010 +27,4,0,10.9639,10.4822,2978 +28,4,0,10.8788,10.3284,2889 +29,4,0,10.8703,10.3367,2914 +30,4,0,10.9844,10.4705,2847 +31,4,0,10.9008,10.3731,3111 +32,4,0,10.9686,10.4861,2714 +33,4,0,10.9705,10.4431,2843 +34,4,0,10.9091,10.3928,2633 +35,4,0,10.8697,10.3413,2659 +36,4,0,10.8779,10.3685,2696 +37,4,0,10.8060,10.3830,2728 +38,4,0,10.8539,10.3447,2772 +39,4,0,10.8500,10.3925,2740 +40,4,0,10.9548,10.4693,2809 +41,4,0,10.8428,10.3897,2679 +42,4,0,10.7992,10.3225,2865 +43,4,0,10.7142,10.2733,2612 +44,4,0,10.9602,10.3742,2626 +45,4,0,10.9763,10.4527,2693 +46,4,0,10.9381,10.3982,2708 +47,4,0,11.0695,10.5041,2765 +48,4,0,11.1930,10.4774,2645 +49,4,0,13.7015,12.7882,2733 +50,4,0,12.9762,11.3223,2667 +51,4,0,13.7414,10.1872,2647 +52,4,0,11.2025,10.3854,2659 +53,4,0,11.8777,10.1737,2757 +54,4,0,11.2477,10.4158,2656 +55,4,0,11.2982,10.4980,2594 +56,4,0,11.0012,10.4905,2603 +57,4,0,11.1677,10.4821,2605 +58,4,0,10.9658,10.3363,2610 +59,4,0,11.0570,10.4412,2641 +60,4,0,10.7787,10.2842,2637 +61,4,0,11.0021,10.4874,2691 +62,4,0,10.8726,10.3722,2620 +63,4,0,10.7481,10.2900,2614 +64,4,0,10.8337,10.3461,2666 +65,4,0,10.8248,10.3163,2613 +66,4,0,10.9906,10.4291,2624 +67,4,0,11.0420,10.4853,2612 +68,4,0,10.9199,10.3178,2687 +69,4,0,12.4937,10.0411,2622 +70,4,0,12.1635,10.6544,2623 +71,4,0,11.7095,10.3590,2647 +72,4,0,13.6677,10.1945,2645 +73,4,0,11.5346,10.0369,2643 +74,4,0,11.5815,10.3045,2635 +75,4,0,11.6990,10.0873,2718 +76,4,0,11.9597,10.1488,2602 +77,4,0,12.1577,10.2058,2605 +78,4,0,12.0896,10.6983,2612 +79,4,0,11.6527,10.1392,2607 +80,4,0,12.4490,10.6705,2630 +81,4,0,13.7912,12.4347,2617 +82,4,0,12.5787,11.2532,2661 +83,4,0,12.6168,10.3310,2606 +84,4,0,11.8872,10.5196,2609 +85,4,0,12.6173,10.7167,2612 +86,4,0,12.1105,10.2158,2632 +87,4,0,11.8954,10.1109,2606 +88,4,0,11.8707,10.5413,2610 +89,4,0,11.3507,10.1595,2652 +90,4,0,11.3347,10.1535,2594 +91,4,0,11.3923,10.1635,2609 +92,4,0,11.9223,10.0043,2598 +93,4,0,11.8978,10.5056,2613 +94,4,0,11.6617,9.9649,2618 +95,4,0,12.2221,10.3856,2604 +96,4,0,11.9883,10.0474,2677 +97,4,0,12.3682,10.4350,2620 +98,4,0,11.3544,10.3695,2594 +99,4,0,10.9420,10.2289,2594 +100,4,0,10.9637,10.2261,2598 +101,4,0,10.8920,10.1007,2609 +102,4,0,11.0813,10.3946,2616 +103,4,0,10.9489,10.3123,2630 +104,4,0,10.9476,10.4090,2606 +105,4,0,10.8920,10.4216,2604 +106,4,0,11.0488,10.5049,2609 +107,4,0,10.8624,10.4676,2610 +108,4,0,11.0745,10.4624,2652 +109,4,0,11.1270,10.5264,2600 +110,4,0,10.9368,10.5080,2640 +111,4,0,10.9694,10.3117,2594 +112,4,0,10.8611,10.3088,2594 +113,4,0,10.8705,10.2600,2600 +114,4,0,10.9272,10.2252,2599 +115,4,0,10.9581,10.2617,2607 +116,4,0,11.0939,10.4383,2603 +117,4,0,12.1995,10.2073,2623 +118,4,0,12.0057,10.1568,2600 +119,4,0,11.7207,9.9995,2610 +120,4,0,11.8477,10.1472,2594 +121,4,0,11.6445,10.2141,2594 +122,4,0,14.1505,12.3703,2603 +123,4,0,13.2696,11.8211,2602 +124,4,0,11.6982,10.3827,2619 +125,4,0,14.9618,13.5535,2600 +126,4,0,11.4351,10.1391,2600 +127,4,0,11.3129,10.4918,2594 +128,4,0,11.0394,10.3921,2594 +129,4,0,10.9213,10.2705,2599 +130,4,0,10.7466,10.2807,2607 +131,4,0,11.7223,10.3442,2605 +132,4,0,12.2139,10.6256,2596 +133,4,0,11.4500,10.6523,2594 +134,4,0,11.7142,9.8592,2594 +135,4,0,11.4506,10.8761,2594 +136,4,0,11.6590,10.0695,2594 +137,4,0,12.9629,12.3624,2594 +138,4,0,14.6927,13.8629,2604 +139,4,0,11.9700,10.1197,2594 +140,4,0,11.4472,10.5250,2594 +141,4,0,11.3424,10.2206,2599 +142,4,0,11.7702,10.8788,2594 +143,4,0,11.4762,10.8304,2594 +144,4,0,11.6723,10.3065,2594 +145,4,0,11.7999,10.1911,2604 +146,4,0,11.6706,10.5933,2594 +147,4,0,11.1577,10.2872,2594 +148,4,0,11.1636,10.1574,2594 +149,4,0,11.1689,10.3138,2601 +150,4,0,111.1542,32.1281,231707 +151,4,0,11.2209,10.7684,65901 +152,4,0,20.8425,20.5059,36886 +153,4,0,30.8154,30.5832,69404 +154,4,0,40.6957,40.4985,87864 +155,4,0,50.7211,50.5065,53700 +156,4,0,60.6210,60.4270,24415 +157,4,0,70.7085,67.0082,15407 +158,4,0,71.9180,66.9081,12151 +159,4,0,72.1135,66.9594,11449 +160,4,0,71.9880,66.8535,8599 +161,4,0,72.0057,66.7456,6107 +162,4,0,71.6518,66.6425,5132 +163,4,0,71.6873,66.4724,3880 +164,4,0,71.6330,66.5186,4001 +165,4,0,71.7325,66.4840,3860 +166,4,0,71.7444,66.2200,4045 +167,4,0,72.0753,66.1399,3955 +168,4,0,65.7655,64.3745,3721 +169,4,0,57.7754,57.2677,3748 +170,4,0,51.5162,50.9953,3386 +171,4,0,45.2910,44.8619,2761 +172,4,0,38.5995,37.9732,2750 +173,4,0,32.0296,31.4363,2836 +174,4,0,25.5915,24.8440,2977 +175,4,0,19.1469,18.2455,2960 +176,4,0,12.1992,11.5119,3010 +177,4,0,11.5457,10.1084,2978 +178,4,0,13.2490,10.1113,2889 +179,4,0,11.1717,10.3440,2914 +180,4,0,13.4120,10.6217,2847 +181,4,0,12.4488,10.9097,3111 +182,4,0,12.0589,10.7985,2714 +183,4,0,14.3989,9.9981,2843 +184,4,0,11.9223,10.5962,2633 +185,4,0,12.1857,10.7405,2659 +186,4,0,13.9216,9.8091,2696 +187,4,0,13.5497,12.2368,2728 +188,4,0,12.4265,10.0717,2772 +189,4,0,12.5317,9.6476,2740 +190,4,0,14.7234,12.8884,2809 +191,4,0,14.5443,13.5760,2679 +192,4,0,11.9293,11.2675,2865 +193,4,0,11.5191,10.9312,2612 +194,4,0,11.6615,10.7103,2626 +195,4,0,11.8268,11.0954,2693 +196,4,0,11.6205,10.9622,2708 +197,4,0,11.5240,10.6675,2765 +198,4,0,11.3766,10.5787,2645 +199,4,0,12.4620,10.0231,2733 +200,4,0,13.6162,11.2113,2667 +201,4,0,14.8861,13.9716,2647 +202,4,0,13.5269,12.7847,2659 +203,4,0,11.7518,10.9905,2757 +204,4,0,13.5843,12.7833,2656 +205,4,0,11.5365,10.9198,2594 +206,4,0,12.1043,10.1421,2603 +207,4,0,11.7053,11.0220,2605 +208,4,0,11.4675,10.5757,2610 +209,4,0,11.4439,10.6471,2641 +210,4,0,11.6110,10.8106,2637 +211,4,0,11.2566,10.5924,2691 +212,4,0,11.4566,10.8144,2620 +213,4,0,11.6166,10.7606,2614 +214,4,0,11.4681,10.6575,2666 +215,4,0,11.5367,10.6919,2613 +216,4,0,12.0665,11.2967,2624 +217,4,0,11.4445,10.7315,2612 +218,4,0,11.5585,10.7535,2687 +219,4,0,11.6263,11.0308,2622 +220,4,0,11.8568,11.0890,2623 +221,4,0,11.2432,10.5908,2647 +222,4,0,11.4553,10.8476,2645 +223,4,0,11.2134,10.5478,2643 +224,4,0,11.0248,10.4273,2635 +225,4,0,11.8715,11.1690,2718 +226,4,0,11.7819,10.3002,2602 +227,4,0,13.9638,12.6240,2605 +228,4,0,12.6404,10.4881,2612 +229,4,0,12.4795,9.6197,2607 +230,4,0,12.3624,10.6550,2630 +231,4,0,12.0540,10.5225,2617 +232,4,0,12.8992,9.9975,2661 +233,4,0,12.0377,10.8979,2606 +234,4,0,14.2287,12.5680,2609 +235,4,0,11.6739,10.8797,2612 +236,4,0,11.5735,10.5113,2632 +237,4,0,11.9643,10.4097,2606 +238,4,0,14.0910,11.2503,2610 +239,4,0,11.3048,10.5210,2652 +240,4,0,11.7345,10.8447,2594 +241,4,0,11.2472,10.4715,2609 +242,4,0,11.3390,10.5684,2598 +243,4,0,14.0591,10.9228,2613 +244,4,0,12.0459,9.8887,2618 +245,4,0,12.0501,11.1883,2604 +246,4,0,11.8830,10.9757,2677 +247,4,0,11.5026,10.5946,2620 +248,4,0,12.0395,10.5704,2594 +249,4,0,11.2858,10.4213,2594 +250,4,0,13.5762,11.8949,2598 +251,4,0,13.1549,12.3655,2609 +252,4,0,13.6052,10.4048,2616 +253,4,0,14.3732,10.2674,2630 +254,4,0,11.6255,10.8618,2606 +255,4,0,12.6649,10.5157,2604 +256,4,0,12.4343,10.0162,2609 +257,4,0,12.4721,10.0422,2610 +258,4,0,12.2087,10.2311,2652 +259,4,0,11.8367,10.3585,2600 +260,4,0,11.8049,10.3620,2640 +261,4,0,12.3578,10.6301,2594 +262,4,0,11.5803,10.3267,2594 +263,4,0,12.0741,10.5963,2600 +264,4,0,12.2701,10.3147,2599 +265,4,0,12.4374,10.9567,2607 +266,4,0,11.8165,8.8262,2603 +267,4,0,12.0613,10.1184,2623 +268,4,0,11.9832,11.0663,2600 +269,4,0,11.0922,10.3640,2610 +270,4,0,11.4746,10.4715,2594 +271,4,0,11.6832,10.1003,2594 +272,4,0,12.2540,10.1263,2603 +273,4,0,12.9309,10.8892,2602 +274,4,0,15.4203,13.6299,2619 +275,4,0,11.9567,10.9591,2600 +276,4,0,12.4615,10.1211,2600 +277,4,0,13.7464,10.2536,2594 +278,4,0,11.1066,10.4604,2594 +279,4,0,12.6676,10.5336,2599 +280,4,0,12.3620,9.9907,2607 +281,4,0,11.7079,10.2766,2605 +282,4,0,14.1111,9.6359,2596 +283,4,0,11.6148,10.4300,2594 +284,4,0,11.9340,10.3125,2594 +285,4,0,12.2390,10.0657,2594 +286,4,0,11.5427,10.3628,2594 +287,4,0,12.9390,11.1280,2594 +288,4,0,12.0436,10.3603,2604 +289,4,0,12.1862,10.5620,2594 +290,4,0,11.9123,10.9441,2594 +291,4,0,11.7045,11.0568,2599 +292,4,0,11.5106,10.7367,2594 +293,4,0,11.8944,10.6537,2594 +294,4,0,12.0079,9.6807,2594 +295,4,0,12.2437,11.2881,2604 +296,4,0,11.1840,10.4273,2594 +297,4,0,11.1728,10.4281,2594 +298,4,0,11.8781,8.8468,2594 +299,4,0,12.2012,10.4983,2601 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.csv new file mode 100644 index 0000000..3ea4835 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9859,28.8565,0.0239,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8725,25.0108,0.0163,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8447,25.2990,0.0138,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7660,22.8985,0.0123,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9859,5.8502,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8725,5.6848,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8447,10.5465,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7660,10.5482,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9859,15.4985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8725,15.4538,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8447,20.4553,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7660,20.3955,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9859,25.4635,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8725,25.4174,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8447,30.4080,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7660,30.3734,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9859,35.4129,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8725,35.4179,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8447,40.2571,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7660,40.6514,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9859,45.2215,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8725,45.5935,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8447,50.5331,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7660,50.8240,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9859,55.4378,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8725,55.9694,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8447,60.5035,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7660,60.9207,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9859,65.6690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8725,62.4826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8447,66.8975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7660,62.5030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9859,59.1462,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8725,59.5604,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8447,63.9917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7660,62.6125,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9859,51.2020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8725,51.9077,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8447,56.0158,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7660,56.7486,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9859,44.6876,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8725,45.3268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8447,49.6408,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7660,50.4953,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9859,38.5127,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8725,39.1527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8447,43.4472,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7660,44.3007,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9859,32.1878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8725,33.0842,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8447,36.9864,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7660,38.0093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9859,26.7249,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8725,27.5370,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8447,31.3050,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7660,32.3662,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9859,18.7124,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8725,19.6973,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8447,23.4898,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7660,24.4595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9859,12.5318,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8725,13.4759,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8447,17.5448,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7660,18.2352,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9859,6.1478,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8725,6.7405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8447,10.9905,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7660,11.5495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9859,5.7410,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8725,5.5347,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8447,10.3535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7660,10.3105,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9859,5.6830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8725,5.5434,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8447,10.2843,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7660,10.2718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9859,5.8078,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8725,5.5535,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8447,10.3829,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7660,10.2498,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9859,5.7299,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8725,5.5585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8447,10.2433,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7660,10.2154,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9859,5.6528,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8725,5.5650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8447,10.3701,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7660,10.2637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9859,5.7235,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8725,5.5547,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8447,10.2692,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7660,10.2506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9859,5.7715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8725,5.5540,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8447,10.4431,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7660,10.3453,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9859,5.9072,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8725,5.5436,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8447,10.2460,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7660,10.2268,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9859,5.8605,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8725,5.6337,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8447,10.5792,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7660,10.4889,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9859,5.7443,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8725,5.5647,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8447,10.3320,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7660,10.2580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9859,5.8318,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8725,5.5603,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8447,10.4197,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7660,10.3060,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9859,5.7809,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8725,5.5210,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8447,10.3172,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7660,10.2097,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9859,5.9755,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8725,5.6593,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8447,10.4709,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7660,10.3966,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9859,5.8403,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8725,5.6183,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8447,10.4712,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7660,10.3325,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9859,6.1467,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8725,5.6777,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8447,10.4647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7660,10.4677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9859,5.6865,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8725,5.5303,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8447,10.4009,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7660,10.4087,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9859,5.8613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8725,5.6814,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8447,10.4031,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7660,10.3669,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9859,5.8839,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8725,5.6394,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8447,10.5209,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7660,10.4085,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9859,7.4367,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8725,6.7855,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8447,10.7023,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7660,10.5333,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9859,6.1143,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8725,5.9888,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8447,10.2532,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7660,10.2391,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9859,6.4321,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8725,5.9238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8447,10.7098,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7660,10.4666,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9859,6.3627,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8725,5.7189,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8447,10.3811,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7660,10.2624,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9859,6.8278,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8725,6.8624,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8447,11.1072,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7660,10.9036,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9859,6.7090,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8725,5.7453,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8447,10.7018,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7660,10.5834,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9859,6.4350,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8725,5.8177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8447,9.9697,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7660,10.2340,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9859,6.4298,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8725,5.8895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8447,10.5841,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7660,10.3652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9859,6.0703,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8725,5.7053,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8447,10.3475,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7660,10.2917,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9859,6.2651,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8725,5.8326,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8447,10.5739,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7660,10.3685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9859,6.1755,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8725,5.8300,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8447,10.8290,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7660,10.7175,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9859,6.1070,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8725,5.9231,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8447,10.4200,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7660,10.3445,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9859,6.2885,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8725,5.7294,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8447,10.4862,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7660,10.3519,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9859,6.1560,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8725,5.7074,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8447,10.6109,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7660,10.5699,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9859,6.0883,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8725,5.8210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8447,10.5196,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7660,10.3229,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9859,6.2588,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8725,5.7453,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8447,10.6321,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7660,10.4917,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9859,6.1485,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8725,5.6735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8447,10.6293,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7660,10.4758,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9859,6.2193,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8725,5.7478,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8447,10.6565,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7660,10.5757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9859,5.8415,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8725,5.6427,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8447,10.2961,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7660,10.2408,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9859,5.9045,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8725,5.5921,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8447,10.3900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7660,10.3481,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9859,5.7460,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8725,5.5679,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8447,10.3978,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7660,10.3337,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9859,5.8441,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8725,5.6173,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8447,10.5060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7660,10.4388,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9859,5.7317,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8725,5.5760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8447,10.4487,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7660,10.3529,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9859,5.7958,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8725,5.5473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8447,10.4467,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7660,10.3795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9859,5.8447,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8725,5.5666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8447,10.4471,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7660,10.3925,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9859,5.7582,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8725,5.5487,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8447,10.3979,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.7660,10.3333,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,4.9859,5.7968,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8725,5.5928,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8447,10.4400,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.7660,10.3492,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,4.9859,5.8054,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8725,5.5627,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8447,10.3126,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.7660,10.2501,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,4.9859,6.0548,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8725,5.6993,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8447,10.5054,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.7660,10.2834,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,4.9859,5.9019,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8725,5.6817,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8447,10.3180,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.7660,10.2922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,4.9859,5.7859,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8725,5.5552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8447,10.4053,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.7660,10.3758,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,4.9859,5.7880,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8725,5.5869,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8447,10.3566,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.7660,10.2808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,4.9859,5.8334,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8725,5.6148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8447,10.5123,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.7660,10.5046,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,4.9859,5.9106,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8725,5.6475,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8447,10.4769,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.7660,10.4184,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,4.9859,5.9568,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8725,5.6791,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8447,10.6392,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.7660,10.4700,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,4.9859,6.0165,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8725,5.7443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8447,10.6206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.7660,10.4405,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,4.9859,6.2423,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8725,5.7901,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8447,10.6593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.7660,10.5716,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,4.9859,6.2664,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8725,5.8689,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8447,10.9049,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.7660,10.6971,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,4.9859,7.5370,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8725,6.6475,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8447,10.3466,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.7660,9.9578,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,4.9859,6.7691,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8725,5.7876,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8447,11.2780,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.7660,11.2323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,4.9859,6.9275,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8725,5.9190,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8447,10.2655,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.7660,10.5076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,4.9859,6.6079,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8725,5.8078,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8447,9.7914,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.7660,10.3925,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,4.9859,6.5565,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8725,7.0205,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8447,11.9996,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7660,11.7463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,4.9859,6.8255,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8725,5.7764,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8447,10.5019,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.7660,10.4330,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,4.9859,6.6231,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8725,5.9516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8447,10.1947,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.7660,10.1168,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,4.9859,6.0585,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8725,5.6527,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8447,10.3045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.7660,10.2348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,4.9859,6.1212,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8725,5.6812,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8447,10.4890,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.7660,10.3841,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,4.9859,6.5940,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8725,5.9012,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8447,9.5868,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.7660,10.1146,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,4.9859,6.3144,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8725,5.6981,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8447,10.2479,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.7660,10.2142,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,4.9859,7.2755,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8725,6.9486,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8447,10.3811,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.7660,10.2057,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,4.9859,6.1260,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8725,5.7417,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8447,10.2869,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.7660,10.1581,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,4.9859,6.6517,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8725,5.8070,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8447,10.2966,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.7660,10.2005,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,4.9859,9.1765,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8725,8.1575,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8447,9.6233,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.7660,10.2579,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,4.9859,6.2650,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8725,5.8034,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8447,10.7273,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.7660,10.4883,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,4.9859,6.3165,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8725,5.7778,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8447,10.8229,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.7660,10.5481,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,4.9859,48.2468,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +361,2.8725,29.7302,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +362,2.8447,26.0724,0.0193,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +363,2.7660,25.4538,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +364,4.9859,5.8800,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +365,2.8725,5.7424,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +366,2.8447,10.6850,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +367,2.7660,10.6207,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +368,4.9859,15.5516,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +369,2.8725,15.5442,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +370,2.8447,20.5674,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +371,2.7660,20.4980,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +372,4.9859,25.4477,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +373,2.8725,25.4469,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +374,2.8447,30.4120,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +375,2.7660,30.4084,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +376,4.9859,35.3096,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +377,2.8725,35.2658,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +378,2.8447,40.1508,0.0422,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +379,2.7660,40.1460,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +380,4.9859,45.2203,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +381,2.8725,45.1547,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +382,2.8447,50.0322,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +383,2.7660,50.0510,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +384,4.9859,54.9237,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +385,2.8725,54.9213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +386,2.8447,59.9630,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +387,2.7660,59.9321,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +388,4.9859,64.8317,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +389,2.8725,61.3474,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +390,2.8447,66.2437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +391,2.7660,61.1628,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +392,4.9859,66.0660,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +393,2.8725,61.1279,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +394,2.8447,66.0205,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +395,2.7660,60.9347,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +396,4.9859,65.8590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +397,2.8725,60.9192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +398,2.8447,65.7989,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +399,2.7660,60.8262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +400,4.9859,65.8764,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +401,2.8725,60.8813,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +402,2.8447,65.8271,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +403,2.7660,60.9555,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +404,4.9859,65.9590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +405,2.8725,60.9044,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +406,2.8447,65.8569,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +407,2.7660,60.9809,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +408,4.9859,65.8967,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +409,2.8725,61.0772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +410,2.8447,66.0106,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +411,2.7660,60.9830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +412,4.9859,65.8664,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +413,2.8725,61.2599,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +414,2.8447,65.9048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +415,2.7660,61.3221,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +416,4.9859,66.0658,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +417,2.8725,61.5699,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +418,2.8447,65.9538,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +419,2.7660,61.5552,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +420,4.9859,65.9304,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +421,2.8725,61.6179,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +422,2.8447,66.1099,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +423,2.7660,61.8626,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +424,4.9859,66.0591,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +425,2.8725,61.9673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +426,2.8447,65.8565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +427,2.7660,61.8990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +428,4.9859,60.7141,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +429,2.8725,61.8699,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +430,2.8447,65.9096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +431,2.7660,62.2997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +432,4.9859,52.8566,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +433,2.8725,54.0780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +434,2.8447,57.5705,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +435,2.7660,58.9769,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +436,4.9859,47.0178,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +437,2.8725,48.2670,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +438,2.8447,51.8851,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +439,2.7660,53.0541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +440,4.9859,42.1606,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +441,2.8725,43.2603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +442,2.8447,46.9838,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +443,2.7660,48.4122,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +444,4.9859,33.1138,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +445,2.8725,34.8385,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +446,2.8447,37.8208,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +447,2.7660,39.6734,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +448,4.9859,26.5875,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +449,2.8725,28.2858,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +450,2.8447,31.2551,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.7660,32.9780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +452,4.9859,20.2020,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +453,2.8725,21.8033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +454,2.8447,24.6536,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +455,2.7660,26.3492,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +456,4.9859,13.7622,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +457,2.8725,15.3226,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +458,2.8447,18.0385,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +459,2.7660,19.9483,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +460,4.9859,9.5241,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +461,2.8725,11.3737,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +462,2.8447,14.3070,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +463,2.7660,16.2102,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +464,4.9859,5.8431,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +465,2.8725,5.5779,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +466,2.8447,10.5104,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +467,2.7660,10.4126,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +468,4.9859,5.8014,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +469,2.8725,5.5346,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +470,2.8447,10.4880,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +471,2.7660,10.3335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +472,4.9859,5.8471,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +473,2.8725,5.5335,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +474,2.8447,10.4366,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +475,2.7660,10.3558,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +476,4.9859,5.8417,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +477,2.8725,5.5395,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +478,2.8447,10.4082,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +479,2.7660,10.3320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +480,4.9859,5.6625,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +481,2.8725,5.4785,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8447,10.2531,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +483,2.7660,10.2620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +484,4.9859,5.9528,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +485,2.8725,5.5290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8447,10.3545,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +487,2.7660,10.3618,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +488,4.9859,5.7272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +489,2.8725,5.5647,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8447,10.5020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +491,2.7660,10.4876,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +492,4.9859,5.7552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +493,2.8725,5.5416,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8447,10.4056,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +495,2.7660,10.4388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +496,4.9859,5.5560,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +497,2.8725,5.4263,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8447,10.3384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +499,2.7660,10.3131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +500,4.9859,5.8133,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +501,2.8725,5.5602,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8447,10.4940,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +503,2.7660,10.5520,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,4.9859,5.6705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +505,2.8725,5.4852,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8447,10.3251,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +507,2.7660,10.3067,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +508,4.9859,5.6414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +509,2.8725,5.4481,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8447,10.2760,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +511,2.7660,10.1972,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +512,4.9859,5.6511,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +513,2.8725,5.4936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8447,10.2378,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +515,2.7660,10.2676,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +516,4.9859,5.7512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +517,2.8725,5.5595,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8447,10.2823,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +519,2.7660,10.2355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +520,4.9859,5.6861,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8725,5.5023,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8447,10.4419,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +523,2.7660,10.2937,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +524,4.9859,5.8699,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8725,5.5142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8447,10.2801,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +527,2.7660,10.2370,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +528,4.9859,5.7199,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8725,5.5345,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8447,10.3444,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +531,2.7660,10.3142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +532,4.9859,5.7189,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8725,5.5797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8447,10.2877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +535,2.7660,10.3060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +536,4.9859,5.7550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8725,5.5679,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8447,10.2940,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +539,2.7660,10.2512,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +540,4.9859,5.6743,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8725,5.5871,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8447,10.1474,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +543,2.7660,10.1970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +544,4.9859,5.8299,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8725,5.6165,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8447,10.1143,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +547,2.7660,10.1775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +548,4.9859,5.8475,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8725,5.6564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8447,10.2204,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +551,2.7660,10.1624,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +552,4.9859,5.9880,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8725,5.5946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8447,10.1903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +555,2.7660,10.1448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +556,4.9859,5.6853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8725,5.5890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8447,10.0925,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +559,2.7660,10.1766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +560,4.9859,6.0964,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8725,5.9007,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8447,10.4344,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +563,2.7660,10.2851,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9859,6.6106,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8725,5.7575,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8447,9.9375,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +567,2.7660,10.0019,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +568,4.9859,6.3428,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8725,5.8614,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8447,10.2439,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +571,2.7660,10.0903,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +572,4.9859,6.1754,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8725,5.7213,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8447,10.4180,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +575,2.7660,10.1551,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +576,4.9859,6.3880,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8725,5.8628,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8447,10.1591,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.7660,10.0456,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +580,4.9859,6.3995,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8725,6.1840,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8447,10.0382,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.7660,9.9506,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +584,4.9859,6.1299,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8725,5.7314,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8447,10.1834,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.7660,10.0043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +588,4.9859,6.2054,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8725,5.8149,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8447,9.9299,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.7660,9.8876,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +592,4.9859,7.0000,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8725,6.2590,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8447,8.0070,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +595,2.7660,10.1932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +596,4.9859,6.3898,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8725,5.8019,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8447,9.9547,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +599,2.7660,9.8986,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +600,4.9859,6.2816,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,2.8725,5.7415,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8447,11.4718,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +603,2.7660,11.2579,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +604,4.9859,6.3479,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8725,5.5833,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8447,10.1521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +607,2.7660,10.1924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +608,4.9859,9.8103,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8725,9.9202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8447,14.6219,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +611,2.7660,14.6673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +612,4.9859,6.2844,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8725,6.4110,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8447,10.3635,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +615,2.7660,10.1997,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,4.9859,6.6360,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8725,5.8236,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8447,9.3232,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +619,2.7660,9.2233,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +620,4.9859,5.7970,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8725,5.5755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8447,10.2425,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7660,10.2288,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +624,4.9859,6.0815,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8725,5.6553,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8447,10.6192,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.7660,10.6739,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +628,4.9859,6.7726,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8725,6.2642,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8447,10.3133,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.7660,10.1332,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +632,4.9859,6.4961,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8725,5.7159,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8447,10.3416,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.7660,10.2779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +636,4.9859,6.2660,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8725,5.8194,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8447,10.4258,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +639,2.7660,10.2711,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +640,4.9859,6.4582,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8725,5.7852,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8447,10.4036,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +643,2.7660,10.3332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +644,4.9859,6.5749,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8725,5.7777,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8447,10.2950,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +647,2.7660,10.2878,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +648,4.9859,6.6889,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8725,5.7477,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8447,10.3986,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +651,2.7660,10.3360,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +652,4.9859,6.2982,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8725,5.5899,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8447,10.3278,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +655,2.7660,10.2221,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +656,4.9859,6.2477,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8725,5.5954,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8447,10.3897,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +659,2.7660,10.2253,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +660,4.9859,6.1967,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8725,5.7359,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8447,10.4932,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +663,2.7660,10.2799,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +664,4.9859,6.4723,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8725,5.9435,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8447,10.7684,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7660,10.5734,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +668,4.9859,6.5998,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8725,5.6852,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8447,10.5398,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7660,10.3798,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +672,4.9859,6.8935,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8725,6.2345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8447,10.4970,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.7660,10.4370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +676,4.9859,6.2815,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8725,5.7511,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8447,10.4420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.7660,10.2795,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +680,4.9859,6.3241,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8725,5.7057,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8447,10.3971,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.7660,10.1576,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +684,4.9859,6.4876,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8725,5.7775,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8447,10.1397,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.7660,10.1179,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +688,4.9859,6.1565,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8725,5.6528,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8447,10.2814,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +691,2.7660,10.1894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +692,4.9859,6.2257,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8725,5.6952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8447,10.5919,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +695,2.7660,10.4280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,4.9859,6.1166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8725,5.7185,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8447,10.4022,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +699,2.7660,10.3353,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +700,4.9859,5.7983,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8725,5.5814,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8447,10.1914,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +703,2.7660,10.1351,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +704,4.9859,5.8989,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8725,5.5707,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8447,10.2112,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +707,2.7660,10.1499,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +708,4.9859,5.9088,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8725,5.5757,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8447,10.3200,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.7660,10.2038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +712,4.9859,5.9008,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8725,5.6165,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8447,10.1681,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.7660,10.1122,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +716,4.9859,6.4610,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8725,5.7272,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8447,7.1577,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.7660,7.8605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +720,4.9859,31.6773,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8725,32.6070,0.0078,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8447,24.8111,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.7660,25.5477,0.0212,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,4.9859,5.9075,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8725,5.7059,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8447,10.5365,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.7660,10.5003,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,4.9859,15.4630,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8725,15.3735,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8447,20.4612,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.7660,20.3582,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,4.9859,25.3245,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8725,25.2236,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8447,30.3072,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.7660,30.2175,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,4.9859,35.2022,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8725,35.1482,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8447,40.2453,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.7660,40.1561,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,4.9859,45.2338,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8725,45.1645,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8447,50.2421,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.7660,50.2532,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,4.9859,55.2879,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8725,55.2019,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8447,60.1777,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.7660,60.1067,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,4.9859,65.1546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8725,61.5630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8447,66.6091,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.7660,61.6889,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,4.9859,66.6349,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8725,61.6752,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8447,66.7177,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.7660,61.6574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,4.9859,66.6313,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8725,61.7796,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8447,66.7717,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.7660,61.6440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,4.9859,66.7211,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8725,61.8058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8447,66.8117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.7660,61.6536,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,4.9859,66.7523,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8725,61.7218,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8447,66.6942,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.7660,61.7015,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,4.9859,66.9146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8725,61.8235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8447,66.9527,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.7660,62.1170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,4.9859,67.0475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8725,62.2410,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8447,66.8956,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.7660,62.2540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,4.9859,66.6882,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8725,62.2581,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8447,67.0545,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.7660,62.3581,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,4.9859,66.8897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8725,62.4365,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8447,66.8833,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.7660,62.4582,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,4.9859,65.4547,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8725,62.5931,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8447,67.1732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.7660,62.8061,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,4.9859,57.4192,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8725,57.8905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8447,62.2971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.7660,62.9710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,4.9859,51.5635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8725,52.4554,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8447,56.4097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.7660,57.3848,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,4.9859,43.4215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8725,44.2265,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8447,48.5183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.7660,49.0641,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,4.9859,38.9764,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8725,39.4922,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8447,43.9166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.7660,44.3652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,4.9859,30.5079,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8725,30.8366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8447,35.3065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.7660,35.6590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,4.9859,24.5054,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8725,24.7835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8447,29.3574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7660,29.5928,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,4.9859,17.9408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8725,18.0235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8447,22.8495,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.7660,22.8050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,4.9859,11.6354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8725,11.4166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8447,16.4319,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.7660,16.4212,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,4.9859,5.8795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8725,5.5955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8447,10.5030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.7660,10.4591,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,4.9859,5.9010,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8725,5.6158,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8447,10.6308,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.7660,10.5563,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,4.9859,5.9659,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8725,5.6688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8447,10.6804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.7660,10.6311,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,4.9859,6.2773,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8725,5.9180,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8447,10.8581,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.7660,10.7446,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,4.9859,6.4562,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8725,5.8144,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8447,10.6354,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.7660,10.4606,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,4.9859,6.2126,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8725,5.7993,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8447,10.7616,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.7660,10.7391,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,4.9859,6.1680,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8725,5.7147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8447,10.6113,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.7660,10.5288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,4.9859,6.2702,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8725,5.7925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8447,10.6994,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.7660,10.6423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,4.9859,6.1282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8725,5.7764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8447,10.8380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.7660,10.6988,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,4.9859,6.3240,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8725,5.8279,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8447,10.6049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.7660,10.5573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,4.9859,6.0127,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8725,5.7278,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8447,10.7111,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.7660,10.5762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9859,5.9710,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8725,5.6419,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8447,10.4841,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.7660,10.4305,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,4.9859,5.8369,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8725,5.5574,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8447,10.3355,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.7660,10.2709,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,4.9859,6.1872,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8725,5.8965,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8447,10.6822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.7660,10.6104,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,4.9859,5.8089,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8725,5.5377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8447,10.3859,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.7660,10.3935,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,4.9859,5.7893,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8725,5.5764,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8447,10.4605,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.7660,10.4985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,4.9859,5.8087,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8725,5.6152,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8447,10.4498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.7660,10.4435,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,4.9859,5.7861,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8725,5.5979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8447,10.4682,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.7660,10.4693,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9859,5.9164,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8725,5.7095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8447,10.5020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.7660,10.4360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,4.9859,5.7586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8725,5.5943,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8447,10.5197,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.7660,10.5203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,4.9859,5.7898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8725,5.5607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8447,10.5059,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.7660,10.4639,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,4.9859,5.8954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8725,5.6465,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8447,10.4977,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.7660,10.4760,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,4.9859,5.8597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8725,5.6580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8447,10.6405,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.7660,10.6165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,4.9859,5.8573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8725,5.6393,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8447,10.5305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.7660,10.4851,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9859,6.0360,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8725,5.7700,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8447,10.5105,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.7660,10.4430,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,4.9859,5.9377,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8725,5.6590,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8447,10.3725,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.7660,10.3014,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9859,5.9531,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8725,5.6681,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8447,10.8603,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.7660,11.1183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,4.9859,6.9241,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8725,6.1791,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8447,10.5847,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.7660,10.5449,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,4.9859,6.6112,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8725,5.7777,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8447,11.2484,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.7660,11.1815,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,4.9859,6.9406,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8725,6.2427,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8447,10.5786,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7660,10.3470,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,4.9859,7.9630,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8725,7.0892,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8447,10.5343,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7660,10.3993,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9859,6.7089,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8725,5.8677,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8447,10.0609,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7660,10.1507,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,4.9859,6.2574,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8725,5.8294,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8447,10.5279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7660,10.3770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,4.9859,6.9275,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8725,5.7989,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8447,10.1978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.7660,10.0103,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,4.9859,6.0708,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8725,5.7434,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8447,10.5033,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.7660,10.2725,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,4.9859,6.0631,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.8725,5.6902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8447,10.5409,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +963,2.7660,10.3935,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +964,4.9859,6.3108,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.8725,5.8381,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8447,10.6372,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +967,2.7660,10.4192,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +968,4.9859,6.1700,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.8725,5.7609,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8447,10.7877,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +971,2.7660,10.6420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +972,4.9859,6.2679,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.8725,5.7949,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8447,10.5530,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +975,2.7660,10.4841,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +976,4.9859,5.9836,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.8725,5.6132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8447,10.4300,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +979,2.7660,10.3889,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +980,4.9859,5.8661,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.8725,5.5414,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8447,10.4313,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.7660,10.2441,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +984,4.9859,5.8055,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.8725,5.5309,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8447,10.2755,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.7660,10.1985,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +988,4.9859,5.8734,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.8725,5.5376,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8447,10.5512,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.7660,10.4917,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +992,4.9859,5.8550,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.8725,5.5800,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8447,10.4314,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.7660,10.3982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +996,4.9859,5.8406,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8725,5.5749,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8447,10.4452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +999,2.7660,10.4192,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1000,4.9859,5.8385,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8725,5.6317,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8447,10.4027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1003,2.7660,10.3376,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1004,4.9859,5.6814,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8725,5.5097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8447,10.3742,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1007,2.7660,10.3675,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1008,4.9859,5.8098,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8725,5.5827,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8447,10.4439,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1011,2.7660,10.4057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,4.9859,5.7382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8725,5.4974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8447,10.4147,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1015,2.7660,10.3906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1016,4.9859,5.8094,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8725,5.5955,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8447,10.4160,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1019,2.7660,10.3515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1020,4.9859,5.8768,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8725,5.6249,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8447,10.5236,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1023,2.7660,10.4797,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1024,4.9859,5.8950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8725,5.6291,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8447,10.4118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.7660,10.3496,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1028,4.9859,5.8488,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8725,5.6128,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8447,10.3738,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7660,10.3088,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1032,4.9859,5.9312,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8725,5.6777,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8447,10.5516,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.7660,10.4321,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1036,4.9859,7.0912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8725,6.5585,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8447,10.7030,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.7660,10.5941,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1040,4.9859,6.5246,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8725,5.7217,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8447,10.2594,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.7660,10.2614,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1044,4.9859,6.4175,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8725,5.7842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8447,10.2415,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.7660,9.9665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1048,4.9859,6.8413,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8725,5.8102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8447,10.5562,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1051,2.7660,9.7801,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1052,4.9859,6.6252,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8725,5.6645,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8447,9.8405,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1055,2.7660,9.7434,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,4.9859,6.2790,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8725,6.2254,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8447,9.7114,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1059,2.7660,10.1580,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1060,4.9859,6.8237,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8725,5.7023,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8447,10.3173,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1063,2.7660,10.3068,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1064,4.9859,6.5100,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8725,5.7213,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8447,10.6011,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1067,2.7660,10.3620,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1068,4.9859,6.8500,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8725,6.9946,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8447,9.3707,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.7660,9.9050,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1072,4.9859,6.2064,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8725,5.5970,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8447,10.3012,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.7660,10.0198,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1076,4.9859,7.1460,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8725,6.8626,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8447,11.9038,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.7660,11.6889,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1080,4.9859,40.4439,0.0173,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1081,2.8725,25.8838,0.0192,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1082,2.8447,25.3650,0.0063,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1083,2.7660,25.1969,0.0119,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1084,4.9859,5.8328,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1085,2.8725,5.6428,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1086,2.8447,10.4589,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1087,2.7660,10.3736,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1088,4.9859,15.4298,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1089,2.8725,15.3599,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1090,2.8447,20.3521,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1091,2.7660,20.2901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1092,4.9859,25.2068,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1093,2.8725,25.1768,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1094,2.8447,30.1717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1095,2.7660,30.1383,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1096,4.9859,35.1482,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1097,2.8725,35.1966,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1098,2.8447,40.1375,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1099,2.7660,40.0538,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1100,4.9859,45.0231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1101,2.8725,44.9725,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1102,2.8447,49.9557,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1103,2.7660,49.9065,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1104,4.9859,54.9218,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1105,2.8725,54.8550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1106,2.8447,59.8974,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1107,2.7660,59.8638,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1108,4.9859,64.8625,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1109,2.8725,61.3230,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1110,2.8447,66.3757,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1111,2.7660,61.4279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1112,4.9859,66.3180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1113,2.8725,61.3074,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1114,2.8447,66.3015,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1115,2.7660,61.3117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1116,4.9859,66.3179,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1117,2.8725,61.4179,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1118,2.8447,66.4507,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1119,2.7660,61.3914,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1120,4.9859,66.3140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1121,2.8725,61.2921,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1122,2.8447,66.3743,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1123,2.7660,61.3748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1124,4.9859,66.3629,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1125,2.8725,61.4796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1126,2.8447,66.4056,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1127,2.7660,61.4716,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1128,4.9859,66.5014,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1129,2.8725,61.5587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1130,2.8447,66.6612,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1131,2.7660,61.6827,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1132,4.9859,66.5306,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1133,2.8725,61.8758,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1134,2.8447,66.5444,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1135,2.7660,61.8475,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1136,4.9859,66.5573,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1137,2.8725,61.8440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1138,2.8447,66.5968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1139,2.7660,61.6834,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1140,4.9859,66.5380,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1141,2.8725,61.6027,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1142,2.8447,66.4663,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1143,2.7660,61.7726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1144,4.9859,66.2866,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1145,2.8725,61.6965,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1146,2.8447,66.4165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1147,2.7660,61.4930,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1148,4.9859,62.4834,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1149,2.8725,61.3656,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1150,2.8447,66.2374,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1151,2.7660,61.3357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1152,4.9859,54.4924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1153,2.8725,54.3169,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1154,2.8447,59.5637,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1155,2.7660,59.6199,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1156,4.9859,47.0134,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1157,2.8725,47.1763,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1158,2.8447,51.7535,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1159,2.7660,52.0717,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1160,4.9859,43.3544,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1161,2.8725,43.2548,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1162,2.8447,47.6403,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1163,2.7660,47.9073,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1164,4.9859,37.2315,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1165,2.8725,37.0465,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1166,2.8447,41.8035,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1167,2.7660,41.6354,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1168,4.9859,29.9870,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1169,2.8725,29.6000,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1170,2.8447,34.3173,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.7660,34.2153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1172,4.9859,24.0495,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1173,2.8725,23.3967,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1174,2.8447,29.2501,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1175,2.7660,29.2268,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1176,4.9859,23.4117,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1177,2.8725,22.7631,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1178,2.8447,22.5410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1179,2.7660,22.3242,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1180,4.9859,6.5320,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1181,2.8725,6.4371,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1182,2.8447,11.5918,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1183,2.7660,11.3795,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1184,4.9859,6.4575,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1185,2.8725,5.7713,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1186,2.8447,9.9815,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1187,2.7660,10.2016,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1188,4.9859,6.6186,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1189,2.8725,5.7757,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1190,2.8447,10.4373,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1191,2.7660,10.1878,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1192,4.9859,6.6176,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1193,2.8725,6.0185,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1194,2.8447,10.2144,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1195,2.7660,10.2350,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1196,4.9859,7.2405,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1197,2.8725,6.5061,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1198,2.8447,10.4956,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1199,2.7660,10.3725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.txt new file mode 100644 index 0000000..e8f2f82 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.txt @@ -0,0 +1,71 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +tile_reset_every_frames=90 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=4.998 +effective_logical_fps=60.028 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=24.350 +p95_encode_latency_ms=71.822 +max_encode_latency_ms=129.804 +avg_steady_encode_latency_ms=23.351 +p95_steady_encode_latency_ms=71.822 +max_steady_encode_latency_ms=129.804 +avg_tile_encode_latency_ms=19.546 +p95_tile_encode_latency_ms=65.465 +avg_max_tile_encode_latency_ms=21.999 +p95_max_tile_encode_latency_ms=66.455 +avg_steady_max_tile_encode_latency_ms=21.139 +p95_steady_max_tile_encode_latency_ms=66.455 +payload_bytes=3222397 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90_logical.csv new file mode 100644 index 0000000..d8747f6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/30mbps_reset90_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,102.4314,28.8565,231707 +1,4,0,11.0174,10.5482,65901 +2,4,0,20.7201,20.4553,36886 +3,4,0,30.6775,30.4080,69404 +4,4,0,40.8952,40.6514,87864 +5,4,0,51.0423,50.8240,53700 +6,4,0,61.1336,60.9207,24415 +7,4,0,71.3092,66.8975,15407 +8,4,0,65.0555,63.9917,12151 +9,4,0,57.0766,56.7486,11449 +10,4,0,50.9572,50.4953,8599 +11,4,0,44.8096,44.3007,6107 +12,4,0,38.3491,38.0093,5132 +13,4,0,32.8135,32.3662,3880 +14,4,0,24.9599,24.4595,4001 +15,4,0,18.7020,18.2352,3860 +16,4,0,12.0195,11.5495,4045 +17,4,0,10.9326,10.3535,3955 +18,4,0,10.8429,10.2843,3721 +19,4,0,10.9370,10.3829,3748 +20,4,0,10.8755,10.2433,3386 +21,4,0,10.9462,10.3701,2761 +22,4,0,10.8547,10.2692,2750 +23,4,0,10.8877,10.4431,2836 +24,4,0,11.0904,10.2460,2977 +25,4,0,11.0856,10.5792,2960 +26,4,0,10.8935,10.3320,3010 +27,4,0,10.9368,10.4197,2978 +28,4,0,10.8439,10.3172,2889 +29,4,0,11.1446,10.4709,2914 +30,4,0,11.0245,10.4712,2847 +31,4,0,11.3074,10.4677,3111 +32,4,0,10.8648,10.4087,2714 +33,4,0,11.0778,10.4031,2843 +34,4,0,11.0683,10.5209,2633 +35,4,0,12.0705,10.7023,2659 +36,4,0,11.6217,10.2532,2696 +37,4,0,11.8376,10.7098,2728 +38,4,0,11.7600,10.3811,2772 +39,4,0,12.5080,11.1072,2740 +40,4,0,12.2600,10.7018,2809 +41,4,0,12.0747,10.2340,2679 +42,4,0,11.5631,10.5841,2865 +43,4,0,11.1967,10.3475,2612 +44,4,0,11.6821,10.5739,2626 +45,4,0,11.5279,10.8290,2693 +46,4,0,11.4898,10.4200,2708 +47,4,0,11.4325,10.4862,2765 +48,4,0,11.3754,10.6109,2645 +49,4,0,11.3215,10.5196,2733 +50,4,0,11.3957,10.6321,2667 +51,4,0,11.4149,10.6293,2647 +52,4,0,11.3750,10.6565,2659 +53,4,0,10.9443,10.2961,2757 +54,4,0,11.0718,10.3900,2656 +55,4,0,10.9072,10.3978,2594 +56,4,0,11.0570,10.5060,2603 +57,4,0,10.9115,10.4487,2605 +58,4,0,11.0490,10.4467,2610 +59,4,0,10.9606,10.4471,2641 +60,4,0,10.9562,10.3979,2637 +61,4,0,10.9445,10.4400,2691 +62,4,0,10.9650,10.3126,2620 +63,4,0,11.1958,10.5054,2614 +64,4,0,11.1206,10.3180,2666 +65,4,0,10.9564,10.4053,2613 +66,4,0,10.9309,10.3566,2624 +67,4,0,11.1408,10.5123,2612 +68,4,0,11.0810,10.4769,2687 +69,4,0,11.2779,10.6392,2622 +70,4,0,11.3830,10.6206,2623 +71,4,0,11.6360,10.6593,2647 +72,4,0,11.6964,10.9049,2645 +73,4,0,12.0205,10.3466,2643 +74,4,0,12.7851,11.2780,2635 +75,4,0,12.1091,10.5076,2718 +76,4,0,12.3869,10.3925,2602 +77,4,0,13.7232,11.9996,2605 +78,4,0,12.1529,10.5019,2612 +79,4,0,11.7453,10.1947,2607 +80,4,0,11.1499,10.3045,2630 +81,4,0,11.2411,10.4890,2617 +82,4,0,12.3870,10.1146,2661 +83,4,0,11.5754,10.2479,2606 +84,4,0,11.3422,10.3811,2609 +85,4,0,11.2829,10.2869,2612 +86,4,0,11.6557,10.2966,2632 +87,4,0,12.4956,10.2579,2606 +88,4,0,11.6308,10.7273,2610 +89,4,0,11.6749,10.8229,2652 +90,4,0,129.8039,48.2468,231707 +91,4,0,11.1685,10.6850,65901 +92,4,0,20.8229,20.5674,36886 +93,4,0,30.7313,30.4120,69404 +94,4,0,40.4077,40.1508,87864 +95,4,0,50.3334,50.0510,53700 +96,4,0,60.1845,59.9630,24415 +97,4,0,69.9267,66.2437,15407 +98,4,0,71.1503,66.0660,12151 +99,4,0,70.9874,65.8590,11449 +100,4,0,71.0010,65.8764,8599 +101,4,0,71.1203,65.9590,6107 +102,4,0,71.0997,66.0106,5132 +103,4,0,71.2776,65.9048,3880 +104,4,0,71.6321,66.0658,4001 +105,4,0,71.8208,66.1099,3860 +106,4,0,72.1039,66.0591,4045 +107,4,0,67.3892,65.9096,3955 +108,4,0,59.5561,58.9769,3721 +109,4,0,53.6078,53.0541,3748 +110,4,0,48.8621,48.4122,3386 +111,4,0,40.2410,39.6734,2761 +112,4,0,33.6336,32.9780,2750 +113,4,0,27.1751,26.3492,2836 +114,4,0,20.8953,19.9483,2977 +115,4,0,16.6958,16.2102,2960 +116,4,0,11.1092,10.5104,3010 +117,4,0,11.0481,10.4880,2978 +118,4,0,10.9757,10.4366,2889 +119,4,0,10.9596,10.4082,2914 +120,4,0,10.8528,10.2620,2847 +121,4,0,11.0547,10.3618,3111 +122,4,0,10.9901,10.5020,2714 +123,4,0,10.9606,10.4388,2843 +124,4,0,10.7282,10.3384,2633 +125,4,0,11.0517,10.5520,2659 +126,4,0,10.8118,10.3251,2696 +127,4,0,10.6777,10.2760,2728 +128,4,0,10.7671,10.2676,2772 +129,4,0,10.8356,10.2823,2740 +130,4,0,10.9125,10.4419,2809 +131,4,0,10.9542,10.2801,2679 +132,4,0,10.8384,10.3444,2865 +133,4,0,10.8522,10.3060,2612 +134,4,0,10.8586,10.2940,2626 +135,4,0,10.9110,10.1970,2693 +136,4,0,10.9719,10.1775,2708 +137,4,0,11.0033,10.2204,2765 +138,4,0,11.0961,10.1903,2645 +139,4,0,10.9761,10.1766,2733 +140,4,0,11.1941,10.4344,2667 +141,4,0,11.9422,10.0019,2647 +142,4,0,11.9665,10.2439,2659 +143,4,0,11.5985,10.4180,2757 +144,4,0,11.8587,10.1591,2656 +145,4,0,11.8650,10.0382,2594 +146,4,0,11.7342,10.1834,2603 +147,4,0,11.6687,9.9299,2605 +148,4,0,14.3701,10.1932,2610 +149,4,0,11.7444,9.9547,2641 +150,4,0,12.9476,11.4718,2637 +151,4,0,11.4734,10.1924,2691 +152,4,0,15.1217,14.6673,2620 +153,4,0,11.0845,10.3635,2614 +154,4,0,12.3215,9.3232,2666 +155,4,0,11.0170,10.2425,2613 +156,4,0,11.8184,10.6739,2624 +157,4,0,11.4115,10.3133,2612 +158,4,0,11.7553,10.3416,2687 +159,4,0,11.5358,10.4258,2622 +160,4,0,11.6635,10.4036,2623 +161,4,0,11.6098,10.2950,2647 +162,4,0,11.8326,10.3986,2645 +163,4,0,11.4635,10.3278,2643 +164,4,0,11.5922,10.3897,2635 +165,4,0,11.6429,10.4932,2718 +166,4,0,11.9070,10.7684,2602 +167,4,0,12.0673,10.5398,2605 +168,4,0,11.6786,10.4970,2612 +169,4,0,11.5501,10.4420,2607 +170,4,0,11.9216,10.3971,2630 +171,4,0,11.7041,10.1397,2617 +172,4,0,11.2310,10.2814,2661 +173,4,0,11.5875,10.5919,2606 +174,4,0,11.2046,10.4022,2609 +175,4,0,10.8790,10.1914,2612 +176,4,0,11.0011,10.2112,2632 +177,4,0,11.0512,10.3200,2606 +178,4,0,11.0430,10.1681,2610 +179,4,0,12.5708,7.8605,2652 +180,4,0,114.9266,32.6070,231707 +181,4,0,11.0908,10.5365,65901 +182,4,0,20.7026,20.4612,36886 +183,4,0,30.5448,30.3072,69404 +184,4,0,40.4440,40.2453,87864 +185,4,0,50.5328,50.2532,53700 +186,4,0,60.3568,60.1777,24415 +187,4,0,70.4055,66.6091,15407 +188,4,0,71.8712,66.7177,12151 +189,4,0,71.7632,66.7717,11449 +190,4,0,71.8494,66.8117,8599 +191,4,0,71.8836,66.7523,6107 +192,4,0,72.2780,66.9527,5132 +193,4,0,72.5526,67.0475,3880 +194,4,0,72.5120,67.0545,4001 +195,4,0,72.6206,66.8897,3860 +196,4,0,71.2195,67.1732,4045 +197,4,0,63.4222,62.9710,3955 +198,4,0,57.8068,57.3848,3721 +199,4,0,49.5775,49.0641,3748 +200,4,0,44.6850,44.3652,3386 +201,4,0,36.0457,35.6590,2761 +202,4,0,29.9364,29.5928,2750 +203,4,0,23.2020,22.8495,2836 +204,4,0,16.9822,16.4319,2977 +205,4,0,11.2918,10.5030,2960 +206,4,0,11.2495,10.6308,3010 +207,4,0,11.2537,10.6804,2978 +208,4,0,11.5542,10.8581,2889 +209,4,0,11.6382,10.6354,2914 +210,4,0,11.5340,10.7616,2847 +211,4,0,11.3946,10.6113,3111 +212,4,0,11.5396,10.6994,2714 +213,4,0,11.5348,10.8380,2843 +214,4,0,11.4622,10.6049,2633 +215,4,0,11.2937,10.7111,2659 +216,4,0,11.0750,10.4841,2696 +217,4,0,10.9015,10.3355,2728 +218,4,0,11.2552,10.6822,2772 +219,4,0,10.9513,10.3935,2740 +220,4,0,11.0499,10.4985,2809 +221,4,0,10.9839,10.4498,2679 +222,4,0,11.0447,10.4693,2865 +223,4,0,11.0126,10.5020,2612 +224,4,0,11.0415,10.5203,2626 +225,4,0,11.0181,10.5059,2693 +226,4,0,11.1098,10.4977,2708 +227,4,0,11.0945,10.6405,2765 +228,4,0,11.1425,10.5305,2645 +229,4,0,11.1903,10.5105,2733 +230,4,0,11.1104,10.3725,2667 +231,4,0,11.9581,11.1183,2647 +232,4,0,12.1238,10.5847,2659 +233,4,0,12.5730,11.2484,2757 +234,4,0,11.8733,10.5786,2656 +235,4,0,11.8609,10.5343,2594 +236,4,0,12.6507,10.1507,2603 +237,4,0,11.4408,10.5279,2605 +238,4,0,12.3103,10.1978,2610 +239,4,0,11.3021,10.5033,2641 +240,4,0,11.2620,10.5409,2637 +241,4,0,11.5594,10.6372,2691 +242,4,0,11.4106,10.7877,2620 +243,4,0,11.4543,10.5530,2614 +244,4,0,11.2158,10.4300,2666 +245,4,0,11.0314,10.4313,2613 +246,4,0,10.8749,10.2755,2624 +247,4,0,11.2208,10.5512,2612 +248,4,0,10.9644,10.4314,2687 +249,4,0,11.0038,10.4452,2622 +250,4,0,11.0076,10.4027,2623 +251,4,0,10.9825,10.3742,2647 +252,4,0,11.0055,10.4439,2645 +253,4,0,10.9699,10.4147,2643 +254,4,0,11.0700,10.4160,2635 +255,4,0,11.1739,10.5236,2718 +256,4,0,11.1535,10.4118,2602 +257,4,0,11.0834,10.3738,2605 +258,4,0,11.2037,10.5516,2612 +259,4,0,11.6455,10.7030,2607 +260,4,0,11.7895,10.2614,2630 +261,4,0,11.9170,10.2415,2617 +262,4,0,12.3523,10.5562,2661 +263,4,0,11.9618,9.8405,2606 +264,4,0,12.2423,10.1580,2609 +265,4,0,12.1106,10.3173,2612 +266,4,0,11.8638,10.6011,2632 +267,4,0,12.4732,9.9050,2606 +268,4,0,11.5265,10.3012,2610 +269,4,0,12.5270,11.9038,2652 +270,4,0,117.2143,40.4439,231707 +271,4,0,10.9250,10.4589,65901 +272,4,0,20.6207,20.3521,36886 +273,4,0,30.4623,30.1717,69404 +274,4,0,40.3185,40.1375,87864 +275,4,0,50.1660,49.9557,53700 +276,4,0,60.0928,59.8974,24415 +277,4,0,70.0784,66.3757,15407 +278,4,0,71.4886,66.3180,12151 +279,4,0,71.5065,66.4507,11449 +280,4,0,71.5945,66.3743,8599 +281,4,0,71.5213,66.4056,6107 +282,4,0,71.8360,66.6612,5132 +283,4,0,71.9183,66.5444,3880 +284,4,0,71.7963,66.5968,4001 +285,4,0,71.9728,66.5380,3860 +286,4,0,71.6251,66.4165,4045 +287,4,0,67.6746,66.2374,3955 +288,4,0,60.1467,59.6199,3721 +289,4,0,52.6831,52.0717,3748 +290,4,0,48.5807,47.9073,3386 +291,4,0,42.4158,41.8035,2761 +292,4,0,35.3858,34.3173,2750 +293,4,0,30.5734,29.2501,2836 +294,4,0,23.7225,23.4117,2977 +295,4,0,12.9631,11.5918,2960 +296,4,0,11.9697,10.2016,3010 +297,4,0,12.1274,10.4373,2978 +298,4,0,12.0017,10.2350,2889 +299,4,0,11.9986,10.4956,2914 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.csv new file mode 100644 index 0000000..428a506 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1693,28.6758,0.0326,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1,2.9820,25.0277,0.0132,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +2,2.8737,22.8050,0.0070,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +3,2.9910,25.5191,0.0069,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +4,5.1693,5.8442,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +5,2.9820,5.7171,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +6,2.8737,10.6037,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +7,2.9910,10.6013,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +8,5.1693,15.6119,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +9,2.9820,15.5237,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +10,2.8737,20.5049,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +11,2.9910,20.4677,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +12,5.1693,25.3762,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +13,2.9820,25.3340,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +14,2.8737,30.3027,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +15,2.9910,30.2129,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +16,5.1693,35.1882,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +17,2.9820,35.7018,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +18,2.8737,40.3597,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +19,2.9910,40.6117,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +20,5.1693,45.1463,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +21,2.9820,45.7676,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +22,2.8737,50.1523,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +23,2.9910,50.6358,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +24,5.1693,55.0512,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +25,2.9820,55.7651,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +26,2.8737,59.9634,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +27,2.9910,60.6892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +28,5.1693,64.8263,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +29,2.9820,62.0015,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +30,2.8737,66.1008,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +31,2.9910,62.1917,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +32,5.1693,59.6788,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +33,2.9820,60.7144,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +34,2.8737,64.6906,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +35,2.9910,61.9746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +36,5.1693,51.1298,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +37,2.9820,52.2119,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +38,2.8737,55.8451,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +39,2.9910,57.0318,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +40,5.1693,44.1208,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +41,2.9820,45.1713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +42,2.8737,48.9235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +43,2.9910,50.4571,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +44,5.1693,37.5972,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +45,2.9820,39.3135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +46,2.8737,42.3956,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +47,2.9910,44.1973,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +48,5.1693,32.2229,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +49,2.9820,33.9190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +50,2.8737,36.9761,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +51,2.9910,38.7393,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +52,5.1693,24.2397,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +53,2.9820,25.8788,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +54,2.8737,28.8859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +55,2.9910,30.5730,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +56,5.1693,18.0949,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +57,2.9820,19.8338,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +58,2.8737,22.9383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +59,2.9910,24.7091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +60,5.1693,12.8964,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +61,2.9820,14.5413,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +62,2.8737,17.7403,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +63,2.9910,19.6588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +64,5.1693,5.8283,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +65,2.9820,6.2451,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.8737,10.5192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +67,2.9910,11.2136,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +68,5.1693,6.0531,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +69,2.9820,5.7180,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.8737,10.5483,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +71,2.9910,10.4693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +72,5.1693,5.9947,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.9820,5.7066,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.8737,10.4882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +75,2.9910,10.4155,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +76,5.1693,6.1934,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.9820,5.7156,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.8737,10.5512,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.9910,10.5047,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +80,5.1693,6.0381,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.9820,5.6394,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.8737,10.5888,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +83,2.9910,10.4710,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.1693,5.9806,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.9820,5.6962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.8737,10.4645,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.9910,10.3252,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.1693,6.0323,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.9820,5.6919,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.8737,10.4762,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.9910,10.3701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.1693,5.9598,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.9820,5.6976,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.8737,10.3154,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.9910,10.1079,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.1693,6.2790,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.9820,5.8735,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.8737,10.6141,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.9910,10.4584,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +100,5.1693,5.9967,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.9820,5.7203,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.8737,10.3567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.9910,10.2780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.1693,6.1044,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.9820,5.6847,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.8737,10.5436,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.9910,10.3371,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +108,5.1693,6.0904,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.9820,5.7624,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.8737,10.3772,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.9910,10.3186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.1693,6.0786,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.9820,5.6975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.8737,10.4038,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.9910,10.2801,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.1693,6.1130,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.9820,5.7687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.8737,10.5844,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.9910,10.4688,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.1693,6.0452,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.9820,5.7012,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.8737,10.8626,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.9910,10.6417,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.1693,6.9839,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.9820,6.3227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.8737,10.6133,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +127,2.9910,10.3873,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.1693,6.9695,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.9820,6.1368,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.8737,10.2910,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.9910,9.9338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.1693,6.3329,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.9820,5.7631,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.8737,9.6412,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.9910,9.3534,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.1693,8.0973,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.9820,7.4493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.8737,10.6280,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.9910,10.3793,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.1693,7.4925,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.9820,6.4507,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.8737,9.6840,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.9910,9.5669,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.1693,6.7740,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.9820,5.8688,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.8737,9.0330,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.9910,8.7315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.1693,6.6745,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.9820,5.9523,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.8737,9.9829,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.9910,9.8389,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.1693,6.3576,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.9820,5.8977,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.8737,9.9176,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.9910,9.8191,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.1693,7.3022,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.9820,6.4750,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.8737,10.4835,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.9910,10.1915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.1693,6.7287,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.9820,5.8848,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.8737,10.5046,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.9910,10.3212,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.1693,6.7939,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.9820,5.8551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.8737,10.3149,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.9910,10.0055,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.1693,6.9800,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.9820,5.9693,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.8737,9.4946,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +171,2.9910,10.3285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.1693,6.6343,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.9820,6.4100,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.8737,10.5033,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.9910,10.4200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.1693,6.3589,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.9820,5.8445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.8737,10.5877,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.9910,10.2966,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.1693,6.3783,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.9820,5.7073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.8737,10.8027,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.9910,10.0843,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.1693,6.6724,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.9820,5.8407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.8737,10.1366,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.9910,10.2615,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.1693,6.9145,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.9820,5.7868,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.8737,10.0310,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.9910,10.4590,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.1693,6.1936,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.9820,5.7504,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.8737,9.6133,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.9910,10.2160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.1693,8.4672,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.9820,6.6747,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.8737,10.1500,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.9910,10.0295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.1693,6.5650,0.0402,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.9820,6.2274,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.8737,9.1002,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.9910,11.1412,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.1693,6.5643,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.9820,5.8322,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.8737,10.3428,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.9910,10.2041,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.1693,6.3232,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.9820,5.7790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.8737,10.5325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.9910,10.3750,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.1693,6.1248,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.9820,5.7688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.8737,10.5111,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.9910,10.3790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.1693,6.2697,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.9820,5.7601,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.8737,10.4874,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.9910,10.2697,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.1693,6.0494,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.9820,5.7193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.8737,10.5008,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.9910,10.3541,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.1693,5.9793,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.9820,5.7276,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.8737,10.5494,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.9910,10.3538,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.1693,6.0830,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.9820,5.7455,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.8737,10.4400,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.9910,10.2695,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.1693,6.0341,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.9820,5.7000,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.8737,10.4512,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.9910,10.3246,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.1693,6.1521,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.9820,5.7846,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.8737,10.5452,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.9910,10.3830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.1693,6.2306,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.9820,5.7790,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.8737,10.5910,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.9910,10.4565,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.1693,6.3190,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.9820,5.8007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.8737,10.5757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.9910,10.4441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.1693,6.0705,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.9820,5.7876,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.8737,10.7434,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.9910,10.5696,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.1693,6.4456,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.9820,5.8881,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.8737,10.7378,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.9910,10.6469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.1693,6.2721,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.9820,5.7590,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.8737,10.6439,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.9910,10.3783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.1693,6.1440,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.9820,5.7666,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.8737,10.6756,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.9910,10.5208,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.1693,6.2255,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.9820,5.7932,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.8737,10.8120,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.9910,10.6267,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.1693,6.2348,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.9820,5.7649,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.8737,10.6317,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.9910,10.5493,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.1693,6.3260,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.9820,5.8403,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.8737,10.8031,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.9910,10.6331,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.1693,6.3118,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.9820,5.8036,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.8737,10.6938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.9910,10.6094,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.1693,6.2706,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.9820,5.7875,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.8737,10.5846,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.9910,10.5237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.1693,6.1736,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.9820,5.7423,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.8737,10.4703,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.9910,10.3715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.1693,6.1456,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.9820,5.7547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.8737,10.5376,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.9910,10.3032,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.1693,6.1242,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.9820,5.6902,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.8737,10.5518,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.9910,10.3955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.1693,6.0881,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.9820,5.7292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.8737,10.5298,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.9910,10.3250,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.1693,6.2320,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +301,2.9820,5.7016,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.8737,10.4082,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +303,2.9910,10.2665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +304,5.1693,5.9867,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +305,2.9820,5.6475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.8737,10.3947,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +307,2.9910,10.2943,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +308,5.1693,5.9606,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +309,2.9820,5.6115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.8737,10.4014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +311,2.9910,10.3859,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +312,5.1693,5.8822,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.9820,5.6825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.8737,10.6067,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +315,2.9910,10.5051,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +316,5.1693,5.9235,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.9820,5.6613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.8737,10.4420,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.9910,10.3440,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +320,5.1693,5.8964,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.9820,5.6307,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.8737,10.3540,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.9910,10.3193,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.1693,5.7059,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.9820,5.4840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.8737,10.2394,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.9910,10.1136,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.1693,5.9791,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.9820,5.5850,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.8737,10.4096,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.9910,10.2958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.1693,5.9020,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.9820,5.6476,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.8737,10.6617,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.9910,10.4955,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.1693,5.7497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.9820,5.5831,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.8737,10.4158,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.9910,10.3784,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.1693,5.9330,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.9820,5.6777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.8737,10.4433,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.9910,10.3543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.1693,5.9163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.9820,5.6206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.8737,10.3874,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.9910,10.3965,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.1693,5.8857,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.9820,5.6178,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.8737,10.3417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.9910,10.2408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.1693,5.6370,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.9820,5.5154,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.8737,10.2461,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.9910,10.2015,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.1693,5.8623,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.9820,5.6167,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.8737,10.4994,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.9910,10.4206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.1693,5.9272,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.9820,5.7042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.8737,10.5136,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.9910,10.4101,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +364,5.1693,5.9094,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.9820,5.6918,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.8737,10.5410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.9910,10.4441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +368,5.1693,6.9522,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.9820,6.8878,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.8737,12.3263,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.9910,12.3521,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.1693,6.2257,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.9820,5.7535,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.8737,10.6056,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.9910,10.4515,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.1693,6.2652,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.9820,5.7767,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.8737,10.6369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.9910,10.4713,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.1693,6.5674,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.9820,5.7495,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.8737,10.0457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.9910,10.0481,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.1693,6.2601,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.9820,5.7972,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.8737,10.5655,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.9910,10.4480,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +388,5.1693,6.0798,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.9820,5.7105,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.8737,10.5935,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.9910,10.4037,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.1693,6.0948,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.9820,5.7416,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.8737,10.5944,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.9910,10.4600,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.1693,6.2940,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.9820,5.8031,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.8737,10.5444,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.9910,10.4435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.1693,6.0833,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.9820,5.6833,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.8737,10.4676,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.9910,10.2417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.1693,6.1212,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.9820,5.7293,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.8737,10.7477,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.9910,10.6576,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.1693,6.2421,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.9820,5.7363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.8737,10.5178,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.9910,10.4306,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.1693,6.0125,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.9820,5.7016,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.8737,10.4576,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.9910,10.3676,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.1693,6.1475,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.9820,5.7983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.8737,10.5992,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.9910,10.5341,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.1693,5.9370,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.9820,5.6908,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.8737,10.5328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.9910,10.4374,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.1693,5.8342,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.9820,5.6559,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.8737,10.5028,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.9910,10.4059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.1693,6.0732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.9820,5.7186,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.8737,10.3816,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.9910,10.2566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.1693,6.0297,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.9820,5.7563,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.8737,10.5112,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.9910,10.3709,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.1693,6.5977,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.9820,5.7758,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.8737,9.0268,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.9910,10.4544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.1693,7.6668,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.9820,5.9114,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.8737,9.5002,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.9910,9.1435,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.1693,6.4230,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.9820,5.7758,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.8737,10.4615,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.9910,10.2882,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.1693,6.2894,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.9820,5.8116,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.8737,10.6754,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.9910,10.5430,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.1693,6.2680,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.9820,5.8385,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.8737,10.5405,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.9910,10.4914,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.1693,6.1510,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.9820,5.7884,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.8737,10.5283,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.9910,10.3853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.1693,6.1305,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.9820,5.8374,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.8737,10.3228,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.9910,10.2877,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.1693,7.0109,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.9820,5.8812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.8737,9.0348,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.9910,10.3472,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.1693,6.1554,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.9820,5.7568,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.8737,10.4990,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.9910,10.3275,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.1693,11.4359,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.9820,9.7142,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.8737,10.0798,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.9910,10.2210,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.1693,9.1979,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.9820,5.7962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.8737,10.4362,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.9910,10.2876,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.1693,6.1263,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.9820,5.7126,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.8737,12.0561,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.9910,12.0550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.1693,7.0533,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.9820,5.7469,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.8737,10.6532,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.9910,10.4074,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.1693,6.4235,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.9820,5.7195,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.8737,10.9263,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.9910,10.3413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.1693,6.6662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.9820,5.7496,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.8737,11.0215,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.9910,10.9957,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.1693,6.5669,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.9820,5.7518,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.8737,10.3785,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.9910,10.2056,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.1693,8.3022,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.9820,7.7457,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.8737,10.6131,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.9910,10.3964,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.1693,6.1308,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.9820,5.7437,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.8737,10.5400,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.9910,10.3618,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.1693,6.1133,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.9820,5.7061,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.8737,10.6313,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.9910,10.4630,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.1693,6.0994,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.9820,5.6950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.8737,10.3558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.9910,10.1951,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.1693,6.1809,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.9820,5.7536,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.8737,10.6523,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.9910,10.5390,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.1693,6.1687,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.9820,5.7417,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.8737,10.5386,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.9910,10.4210,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.1693,6.3535,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.9820,5.8112,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.8737,10.7036,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.9910,10.5229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.1693,6.1924,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.9820,5.7654,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.8737,10.6059,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.9910,10.5309,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.1693,6.1073,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.9820,5.6705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.8737,10.5093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.9910,10.3456,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.1693,6.1239,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.9820,5.7185,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.8737,10.6248,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.9910,10.4616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.1693,6.0404,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.9820,5.6780,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.8737,10.6407,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.9910,10.4667,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.1693,6.2199,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.9820,5.7434,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.8737,10.6678,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.9910,10.5717,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.1693,6.2057,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.9820,5.7459,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.8737,10.7081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.9910,10.5989,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.1693,6.1205,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.9820,5.7092,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.8737,10.6742,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.9910,10.5628,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.1693,6.0564,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.9820,5.6994,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.8737,10.6758,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.9910,10.5456,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.1693,6.0118,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.9820,5.6507,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.8737,10.7077,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.9910,10.6201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.1693,6.1622,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.9820,5.7354,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.8737,10.7087,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.9910,10.6351,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.1693,6.0200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.9820,5.6510,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.8737,10.4803,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.9910,10.4455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.1693,5.9371,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.9820,5.6393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.8737,10.4055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.9910,10.3343,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.1693,5.9520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.9820,5.6820,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.8737,10.5147,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.9910,10.4809,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.1693,5.7586,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.9820,5.5680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.8737,10.7422,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.9910,10.5437,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.1693,5.8240,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.9820,5.6045,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.8737,10.4809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.9910,10.3990,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.1693,5.8775,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.9820,5.6345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.8737,10.5076,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.9910,10.3846,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.1693,5.8625,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.9820,5.6952,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.8737,10.3375,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.9910,10.2304,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.1693,6.1179,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.9820,5.9184,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.8737,10.6560,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.9910,10.5800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.1693,34.5903,0.0179,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +601,2.9820,25.8840,0.0079,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +602,2.8737,25.1750,0.0070,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +603,2.9910,25.8944,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +604,5.1693,5.9020,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +605,2.9820,5.6931,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +606,2.8737,10.6463,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +607,2.9910,10.6023,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +608,5.1693,15.5855,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +609,2.9820,15.4955,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +610,2.8737,20.5855,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +611,2.9910,20.5030,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +612,5.1693,25.6171,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +613,2.9820,25.5127,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +614,2.8737,30.4619,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +615,2.9910,30.3393,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +616,5.1693,35.3441,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +617,2.9820,35.2459,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +618,2.8737,40.1905,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +619,2.9910,40.0718,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +620,5.1693,45.0438,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +621,2.9820,44.9883,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +622,2.8737,49.9434,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +623,2.9910,49.9294,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +624,5.1693,54.9839,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +625,2.9820,54.8941,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +626,2.8737,59.8480,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +627,2.9910,59.8562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +628,5.1693,64.9280,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +629,2.9820,61.5785,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +630,2.8737,66.5996,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +631,2.9910,61.5367,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +632,5.1693,66.5345,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +633,2.9820,61.5460,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +634,2.8737,66.5138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +635,2.9910,61.4391,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +636,5.1693,66.4549,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +637,2.9820,61.3923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +638,2.8737,66.3866,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +639,2.9910,61.4027,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +640,5.1693,66.3753,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +641,2.9820,61.3634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +642,2.8737,66.3824,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +643,2.9910,61.4805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +644,5.1693,66.4580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +645,2.9820,61.4899,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +646,2.8737,66.4312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +647,2.9910,61.3814,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +648,5.1693,66.1432,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +649,2.9820,61.3789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +650,2.8737,66.0622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +651,2.9910,61.3783,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +652,5.1693,66.1196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +653,2.9820,61.3749,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +654,2.8737,65.9080,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +655,2.9910,61.4614,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +656,5.1693,65.8411,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +657,2.9820,61.2610,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,2.8737,65.6904,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +659,2.9910,61.4419,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +660,5.1693,65.6830,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +661,2.9820,61.5787,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.8737,65.5157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +663,2.9910,61.4805,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +664,5.1693,62.5955,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.9820,61.3297,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.8737,65.2626,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.9910,61.1728,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +668,5.1693,54.6698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.9820,55.6106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.8737,59.4900,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.9910,60.4134,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +672,5.1693,46.2236,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.9820,47.2894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.8737,51.2575,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.9910,52.3199,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +676,5.1693,40.4516,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.9820,41.3372,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.8737,45.6520,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.9910,46.0766,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +680,5.1693,34.2635,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.9820,34.6032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.8737,38.9454,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +683,2.9910,39.5083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.1693,28.0136,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.9820,28.4750,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.8737,32.7089,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.9910,33.2746,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.1693,22.4528,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.9820,22.7985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.8737,26.9456,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.9910,27.6693,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.1693,14.8498,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.9820,15.4401,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.8737,19.4744,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.9910,20.1174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.1693,8.3743,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.9820,8.8228,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.8737,13.0328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.9910,13.4912,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +700,5.1693,6.1180,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.9820,5.8310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.8737,10.6048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.9910,10.5446,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.1693,6.1010,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.9820,5.7155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.8737,10.2990,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.9910,10.2240,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +708,5.1693,5.8251,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.9820,5.5990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.8737,10.3703,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.9910,10.3185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.1693,6.0685,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.9820,5.7084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.8737,10.3242,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.9910,10.2732,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.1693,5.8910,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.9820,5.7032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.8737,10.4394,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.9910,10.3997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.1693,5.8769,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.9820,5.5666,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.8737,10.4502,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.9910,10.3388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.1693,5.7911,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.9820,5.6295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.8737,10.3775,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +727,2.9910,10.2510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.1693,5.9145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.9820,5.6547,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.8737,10.5640,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.9910,10.3558,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.1693,6.1896,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.9820,5.7628,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.8737,9.7694,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.9910,9.8865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.1693,6.8141,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.9820,5.9294,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.8737,10.0397,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.9910,9.9279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.1693,6.3595,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.9820,5.6510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.8737,10.4450,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.9910,10.4514,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.1693,7.0701,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.9820,5.6998,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.8737,10.4035,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.9910,10.2353,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.1693,7.0001,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.9820,6.0531,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.8737,10.3393,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.9910,10.1952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.1693,6.4124,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.9820,6.6836,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.8737,9.3871,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.9910,10.1460,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.1693,6.3445,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.9820,5.9257,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.8737,8.2623,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.9910,10.0117,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.1693,6.6686,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.9820,5.8042,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.8737,10.1332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.9910,10.1867,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.1693,5.9830,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.9820,5.6585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.8737,10.3829,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.9910,10.2840,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.1693,6.0632,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.9820,5.6945,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.8737,10.5095,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +771,2.9910,10.3515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.1693,6.1079,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.9820,5.7202,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.8737,10.5189,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.9910,10.3502,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.1693,6.3289,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.9820,5.8436,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.8737,10.7049,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.9910,10.4829,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.1693,6.1968,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.9820,5.7425,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.8737,10.5251,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.9910,10.4710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.1693,5.9091,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.9820,5.6445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.8737,10.4976,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.9910,10.3933,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.1693,5.8739,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.9820,5.6521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.8737,10.3507,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.9910,10.3035,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.1693,6.0374,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.9820,5.5895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.8737,10.4560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.9910,10.3110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.1693,6.1077,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.9820,5.7454,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.8737,10.5371,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.9910,10.4012,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.1693,5.9409,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.9820,5.6733,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.8737,10.3637,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.9910,10.1476,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.1693,6.1359,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.9820,5.6920,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.8737,10.4162,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.9910,10.2519,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.1693,6.0975,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.9820,5.6878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.8737,10.5920,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.9910,10.3540,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.1693,6.0520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.9820,5.6969,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.8737,10.3593,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.9910,10.2061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.1693,6.0917,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.9820,5.6430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.8737,10.3702,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.9910,10.1625,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.1693,6.3458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.9820,5.6292,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.8737,10.0390,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.9910,8.1464,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.1693,6.3317,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.9820,5.6050,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.8737,10.3576,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.9910,10.0990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.1693,8.6798,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.9820,5.7241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.8737,6.5291,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.9910,10.2130,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.1693,5.4992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.9820,8.3320,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.8737,10.3330,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.9910,13.2109,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.1693,5.9348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.9820,5.6421,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.8737,10.5016,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.9910,10.4603,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.1693,5.8168,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.9820,5.6150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.8737,10.7673,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.9910,10.5920,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.1693,6.2634,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.9820,6.1788,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.8737,9.1644,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.9910,10.3716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.1693,6.4143,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.9820,5.6902,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.8737,10.3368,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.9910,10.0926,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.1693,6.6214,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.9820,5.9329,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.8737,9.4340,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.9910,10.0632,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.1693,6.7275,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.9820,5.6919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.8737,10.1680,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.9910,10.0808,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.1693,6.2166,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.9820,5.6703,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.8737,10.2276,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.9910,10.0478,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.1693,6.5149,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.9820,5.7862,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.8737,10.3850,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.9910,10.3413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.1693,6.3735,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.9820,5.7807,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.8737,10.2606,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.9910,10.1293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.1693,6.8869,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.9820,6.0676,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.8737,10.2505,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.9910,9.8362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.1693,6.4829,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.9820,5.8375,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.8737,10.0604,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.9910,9.5634,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.1693,6.4283,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.9820,5.7511,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.8737,10.2561,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.9910,10.0260,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.1693,6.1262,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.9820,5.8883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.8737,9.6280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.9910,9.8202,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.1693,6.1338,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.9820,5.7355,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.8737,11.9466,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.9910,11.8413,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.1693,6.1329,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.9820,5.6050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.8737,10.3403,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.9910,10.1907,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.1693,5.8455,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.9820,5.6142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.8737,10.4080,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.9910,10.1670,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.1693,6.4988,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +901,2.9820,5.7713,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,2.8737,10.0387,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +903,2.9910,10.0109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +904,5.1693,6.3698,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +905,2.9820,5.7781,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,2.8737,8.7855,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +907,2.9910,9.5363,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +908,5.1693,5.9151,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +909,2.9820,5.6370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,2.8737,10.2218,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +911,2.9910,10.1136,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +912,5.1693,5.9545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,2.9820,5.5708,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,2.8737,10.2546,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,2.9910,10.1625,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +916,5.1693,5.8682,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,2.9820,5.5824,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,2.8737,10.3547,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,2.9910,10.3164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,5.1693,5.7330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,2.9820,5.4919,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,2.8737,10.3849,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,2.9910,10.3938,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,5.1693,5.6162,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,2.9820,5.4828,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,2.8737,10.2134,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,2.9910,10.2147,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,5.1693,5.6844,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,2.9820,5.4880,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,2.8737,10.3461,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,2.9910,10.3240,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,5.1693,5.8584,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,2.9820,5.5821,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,2.8737,10.4558,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,2.9910,10.3982,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,5.1693,5.9432,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,2.9820,5.6693,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,2.8737,10.6040,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,2.9910,10.5683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,5.1693,5.8425,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,2.9820,5.5683,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,2.8737,10.5469,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.9910,10.4936,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,5.1693,5.8001,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,2.9820,5.5027,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,2.8737,10.2730,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,2.9910,10.1880,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,5.1693,5.8389,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,2.9820,5.5877,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,2.8737,10.3656,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,2.9910,10.3155,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,5.1693,5.8998,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,2.9820,5.6134,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,2.8737,10.4558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,2.9910,10.4331,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,5.1693,5.9162,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.9820,5.6232,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,2.8737,12.2288,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,2.9910,12.1503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,5.1693,6.0636,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.9820,5.6636,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.8737,10.1663,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +963,2.9910,9.3298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.1693,5.8935,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.9820,5.6108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.8737,10.0830,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.9910,9.8543,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.1693,8.0252,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.9820,5.8628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.8737,10.1961,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.9910,10.3190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.1693,5.7860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.9820,5.6206,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.8737,10.2789,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.9910,10.3300,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +976,5.1693,5.6795,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.9820,5.5147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.8737,10.2593,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.9910,10.2425,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.1693,5.7366,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.9820,5.5787,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.8737,10.3437,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.9910,10.3360,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.1693,5.7497,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.9820,5.5337,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.8737,10.4063,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.9910,10.3993,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.1693,5.8521,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.9820,5.5922,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.8737,10.4217,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.9910,10.4288,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.1693,5.7011,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.9820,5.5595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.8737,10.2602,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.9910,10.3463,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.1693,5.7045,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.9820,5.4998,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.8737,10.2764,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.9910,10.2499,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.1693,5.8440,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.9820,5.5897,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.8737,10.3875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.9910,10.3918,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.1693,5.6991,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.9820,5.5280,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.8737,10.2694,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.9910,10.2471,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.1693,5.7118,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.9820,5.4611,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.8737,10.2559,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.9910,10.2150,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.1693,5.7241,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.9820,5.5373,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.8737,10.2749,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.9910,10.2409,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.1693,5.6945,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.9820,5.5499,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.8737,10.2136,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.9910,10.1894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.1693,5.9313,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.9820,5.5948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.8737,10.3594,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.9910,10.3049,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.1693,5.8803,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.9820,5.5476,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.8737,10.3033,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.9910,10.1643,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.1693,5.9648,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.9820,5.7188,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.8737,10.3582,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.9910,10.2319,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.1693,6.1407,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.9820,5.7383,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.8737,10.5914,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.9910,10.4822,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.1693,6.0507,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.9820,5.6818,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.8737,10.7671,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.9910,10.7163,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.1693,6.1682,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.9820,5.7530,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.8737,10.6835,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.9910,10.5772,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.1693,6.0178,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.9820,5.5934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.8737,10.3411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.9910,10.1893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.1693,5.7551,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.9820,5.5537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.8737,10.3630,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.9910,10.2390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.1693,5.7238,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.9820,5.4942,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.8737,10.4262,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.9910,10.3917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.1693,5.8040,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.9820,5.5777,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.8737,10.3377,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.9910,10.2790,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.1693,5.7809,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.9820,5.4870,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.8737,10.3743,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.9910,10.3745,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.1693,5.8072,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.9820,5.5731,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.8737,10.4146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.9910,10.3835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.1693,6.0678,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.9820,5.7639,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.8737,10.5776,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.9910,10.5525,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.1693,5.9883,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.9820,5.6278,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.8737,10.3513,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.9910,10.3153,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.1693,5.8155,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.9820,5.5284,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.8737,10.5642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.9910,10.5081,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.1693,5.9950,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.9820,5.7823,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.8737,10.6967,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.9910,10.6134,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.1693,6.0199,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.9820,5.6921,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.8737,10.4832,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.9910,10.4567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.1693,6.1047,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.9820,5.6929,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.8737,10.5727,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.9910,10.5427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.1693,6.2213,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.9820,5.8476,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.8737,10.6756,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.9910,10.6229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.1693,6.1216,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.9820,5.7776,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.8737,10.5716,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.9910,10.5360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.1693,6.2739,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.9820,5.8346,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.8737,10.8166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.9910,10.7474,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.1693,6.3155,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.9820,5.9028,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.8737,10.6651,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.9910,10.6471,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.1693,6.2222,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.9820,5.7788,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.8737,10.6194,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.9910,10.5440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.1693,6.3553,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.9820,5.8555,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.8737,10.6997,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.9910,10.6343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.1693,6.2458,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.9820,5.8355,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.8737,10.7750,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.9910,10.7180,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.1693,6.1040,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.9820,5.7220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.8737,10.4801,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.9910,10.3900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.1693,5.9031,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.9820,5.5920,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.8737,10.4828,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.9910,10.4585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.1693,6.0040,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.9820,5.6336,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.8737,10.4500,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.9910,10.3630,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.1693,5.8691,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.9820,5.6152,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.8737,10.2773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.9910,10.2148,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.1693,5.9972,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.9820,5.6097,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.8737,10.3321,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.9910,10.2286,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.1693,6.0299,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.9820,5.6776,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.8737,10.5471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.9910,10.4564,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.1693,5.8102,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.9820,5.5741,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.8737,10.3126,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.9910,10.2296,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.1693,5.8921,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.9820,5.6751,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.8737,10.4282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.9910,10.3709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.1693,6.0150,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.9820,5.6625,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.8737,10.4939,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.9910,10.3966,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.1693,5.9271,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.9820,5.6087,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.8737,10.3860,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.9910,10.3096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.1693,6.0375,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.9820,5.6949,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.8737,10.5112,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.9910,10.4187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.1693,5.9679,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.9820,5.6017,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.8737,10.4189,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.9910,10.3099,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.1693,5.9539,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.9820,5.6180,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.8737,10.3419,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.9910,10.2540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.1693,5.9673,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.9820,5.6789,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.8737,10.4820,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.9910,10.3900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.1693,6.0407,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.9820,5.6460,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.8737,10.3972,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.9910,10.2903,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.1693,6.1189,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.9820,5.7148,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.8737,10.5115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.9910,10.4475,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.1693,6.1980,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.9820,5.7415,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.8737,10.6551,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.9910,10.5856,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.1693,6.1279,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.9820,5.6819,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.8737,10.4463,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.9910,10.3360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.1693,5.9324,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.9820,5.5711,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.8737,10.4195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.9910,10.3091,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.1693,5.9742,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.9820,5.6390,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.8737,10.4083,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.9910,10.2971,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.txt b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.txt new file mode 100644 index 0000000..53b277f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.txt @@ -0,0 +1,63 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=0 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=280 +elapsed_seconds=4.998 +effective_logical_fps=60.027 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=16.801 +p95_encode_latency_ms=60.790 +max_encode_latency_ms=111.856 +avg_steady_encode_latency_ms=15.257 +p95_steady_encode_latency_ms=50.410 +max_steady_encode_latency_ms=111.856 +avg_tile_encode_latency_ms=12.815 +p95_tile_encode_latency_ms=54.899 +avg_max_tile_encode_latency_ms=15.180 +p95_max_tile_encode_latency_ms=57.173 +avg_steady_max_tile_encode_latency_ms=13.832 +p95_steady_max_tile_encode_latency_ms=46.270 +payload_bytes=2479566 +send_target=none +csv=benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150_logical.csv diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150_logical.csv b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150_logical.csv new file mode 100644 index 0000000..aec1ffa --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/60mbps_reset150_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,102.4195,28.6758,254680 +1,4,0,11.1088,10.6037,75429 +2,4,0,20.8053,20.5049,71740 +3,4,0,30.5455,30.3027,99687 +4,4,0,40.8489,40.6117,110030 +5,4,0,50.8757,50.6358,117866 +6,4,0,60.9251,60.6892,53093 +7,4,0,70.9517,66.1008,27359 +8,4,0,65.8739,64.6906,20460 +9,4,0,57.4800,57.0318,18852 +10,4,0,50.7793,50.4571,12000 +11,4,0,44.5880,44.1973,8849 +12,4,0,39.2182,38.7393,7660 +13,4,0,31.1307,30.5730,5308 +14,4,0,25.0810,24.7091,5262 +15,4,0,20.0660,19.6588,3190 +16,4,0,11.9268,11.2136,2652 +17,4,0,11.2481,10.5483,2617 +18,4,0,11.1295,10.4882,2603 +19,4,0,11.4050,10.5512,2626 +20,4,0,11.3032,10.5888,2650 +21,4,0,11.1515,10.4645,2598 +22,4,0,11.1708,10.4762,2598 +23,4,0,11.2548,10.3154,2598 +24,4,0,11.4516,10.6141,2603 +25,4,0,11.2881,10.3567,2598 +26,4,0,11.3140,10.5436,2612 +27,4,0,11.3060,10.3772,2598 +28,4,0,11.2898,10.4038,2598 +29,4,0,11.3426,10.5844,2598 +30,4,0,11.7323,10.8626,2598 +31,4,0,11.8932,10.6133,2603 +32,4,0,11.8100,10.2910,2598 +33,4,0,11.6245,9.6412,2598 +34,4,0,11.8962,10.6280,2598 +35,4,0,12.1847,9.6840,2598 +36,4,0,12.2107,9.0330,2598 +37,4,0,11.9122,9.9829,2598 +38,4,0,11.9663,9.9176,2598 +39,4,0,12.4367,10.4835,2598 +40,4,0,11.8053,10.5046,2598 +41,4,0,12.1866,10.3149,2598 +42,4,0,13.0696,10.3285,2602 +43,4,0,11.8772,10.5033,2598 +44,4,0,11.7436,10.5877,2598 +45,4,0,12.1439,10.8027,2598 +46,4,0,12.1326,10.2615,2598 +47,4,0,13.2678,10.4590,2598 +48,4,0,12.1992,10.2160,2598 +49,4,0,12.7066,10.1500,2598 +50,4,0,14.0536,11.1412,2598 +51,4,0,11.9086,10.3428,2598 +52,4,0,11.5560,10.5325,2598 +53,4,0,11.3416,10.5111,2598 +54,4,0,11.4203,10.4874,2598 +55,4,0,11.3248,10.5008,2598 +56,4,0,11.2784,10.5494,2598 +57,4,0,11.2833,10.4400,2598 +58,4,0,11.2524,10.4512,2598 +59,4,0,11.4205,10.5452,2598 +60,4,0,11.5084,10.5910,2598 +61,4,0,11.5708,10.5757,2598 +62,4,0,11.4910,10.7434,2598 +63,4,0,11.6930,10.7378,2598 +64,4,0,11.7040,10.6439,2598 +65,4,0,11.4261,10.6756,2598 +66,4,0,11.6022,10.8120,2598 +67,4,0,11.4735,10.6317,2598 +68,4,0,11.6165,10.8031,2598 +69,4,0,11.5325,10.6938,2598 +70,4,0,11.4023,10.5846,2598 +71,4,0,11.3371,10.4703,2598 +72,4,0,11.3695,10.5376,2598 +73,4,0,11.3588,10.5518,2598 +74,4,0,11.3468,10.5298,2598 +75,4,0,11.2279,10.4082,2598 +76,4,0,11.1000,10.3947,2598 +77,4,0,11.0659,10.4014,2598 +78,4,0,11.2130,10.6067,2598 +79,4,0,10.9753,10.4420,2598 +80,4,0,11.0017,10.3540,2598 +81,4,0,10.7501,10.2394,2598 +82,4,0,11.1012,10.4096,2598 +83,4,0,11.1107,10.6617,2598 +84,4,0,10.9111,10.4158,2598 +85,4,0,10.9980,10.4433,2598 +86,4,0,11.1320,10.3965,2598 +87,4,0,10.9768,10.3417,2598 +88,4,0,10.7535,10.2461,2598 +89,4,0,11.0888,10.4994,2598 +90,4,0,11.0982,10.5136,2598 +91,4,0,11.1295,10.5410,2598 +92,4,0,13.1552,12.3521,2598 +93,4,0,11.4198,10.6056,2598 +94,4,0,11.5228,10.6369,2598 +95,4,0,11.9738,10.0481,2598 +96,4,0,11.5965,10.5655,2598 +97,4,0,11.4439,10.5935,2598 +98,4,0,11.2862,10.5944,2598 +99,4,0,11.4237,10.5444,2598 +100,4,0,11.3270,10.4676,2598 +101,4,0,11.4392,10.7477,2598 +102,4,0,11.4254,10.5178,2598 +103,4,0,11.2805,10.4576,2598 +104,4,0,11.3514,10.5992,2598 +105,4,0,11.1173,10.5328,2598 +106,4,0,11.1784,10.5028,2598 +107,4,0,11.2340,10.3816,2598 +108,4,0,11.1475,10.5112,2598 +109,4,0,13.5445,10.4544,2598 +110,4,0,12.8402,9.5002,2598 +111,4,0,11.7901,10.4615,2598 +112,4,0,11.5440,10.6754,2598 +113,4,0,11.4489,10.5405,2598 +114,4,0,11.2953,10.5283,2598 +115,4,0,11.4710,10.3228,2598 +116,4,0,13.4431,10.3472,2598 +117,4,0,11.3439,10.4990,2598 +118,4,0,12.9901,11.4359,2598 +119,4,0,14.4183,10.4362,2598 +120,4,0,12.9857,12.0561,2598 +121,4,0,12.3763,10.6532,2598 +122,4,0,12.4394,10.9263,2598 +123,4,0,12.7954,11.0215,2598 +124,4,0,12.0757,10.3785,2598 +125,4,0,11.5869,10.6131,2598 +126,4,0,11.4084,10.5400,2598 +127,4,0,11.3865,10.6313,2598 +128,4,0,11.3475,10.3558,2598 +129,4,0,11.4683,10.6523,2598 +130,4,0,11.3250,10.5386,2598 +131,4,0,11.5598,10.7036,2598 +132,4,0,11.4175,10.6059,2598 +133,4,0,11.3158,10.5093,2598 +134,4,0,11.3260,10.6248,2598 +135,4,0,11.3453,10.6407,2598 +136,4,0,11.4742,10.6678,2598 +137,4,0,11.4441,10.7081,2598 +138,4,0,11.3997,10.6742,2598 +139,4,0,11.3736,10.6758,2598 +140,4,0,11.3734,10.7077,2598 +141,4,0,11.4467,10.7087,2598 +142,4,0,11.2659,10.4803,2598 +143,4,0,11.1175,10.4055,2598 +144,4,0,11.1373,10.5147,2598 +145,4,0,11.2634,10.7422,2598 +146,4,0,11.0381,10.4809,2598 +147,4,0,11.0524,10.5076,2598 +148,4,0,11.0452,10.3375,2598 +149,4,0,11.2587,10.6560,2598 +150,4,0,111.8557,34.5903,254680 +151,4,0,11.1222,10.6463,75429 +152,4,0,20.8011,20.5855,71740 +153,4,0,30.7458,30.4619,99687 +154,4,0,40.4408,40.1905,110030 +155,4,0,50.2839,49.9434,117866 +156,4,0,60.1004,59.8562,53093 +157,4,0,70.0974,66.5996,27359 +158,4,0,71.6555,66.5345,20460 +159,4,0,71.6245,66.4549,18852 +160,4,0,71.5408,66.3824,12000 +161,4,0,71.5707,66.4580,8849 +162,4,0,71.3729,66.1432,7660 +163,4,0,71.7327,66.1196,5308 +164,4,0,71.6103,65.8411,5262 +165,4,0,71.6958,65.6830,3190 +166,4,0,68.4870,65.2626,2652 +167,4,0,60.7830,60.4134,2617 +168,4,0,52.8017,52.3199,2603 +169,4,0,46.5948,46.0766,2626 +170,4,0,40.0061,39.5083,2650 +171,4,0,33.8118,33.2746,2598 +172,4,0,28.3135,27.6693,2598 +173,4,0,20.7297,20.1174,2598 +174,4,0,14.1045,13.4912,2603 +175,4,0,11.1265,10.6048,2598 +176,4,0,11.2413,10.2990,2612 +177,4,0,11.0258,10.3703,2598 +178,4,0,11.1657,10.3242,2598 +179,4,0,10.9195,10.4394,2598 +180,4,0,11.2030,10.4502,2598 +181,4,0,10.9767,10.3775,2603 +182,4,0,11.2466,10.5640,2598 +183,4,0,11.7846,9.8865,2598 +184,4,0,11.6609,10.0397,2598 +185,4,0,11.8026,10.4514,2598 +186,4,0,12.4795,10.4035,2598 +187,4,0,12.0271,10.3393,2598 +188,4,0,12.7929,10.1460,2598 +189,4,0,13.4806,10.0117,2598 +190,4,0,11.9616,10.1867,2598 +191,4,0,11.2075,10.3829,2598 +192,4,0,11.3372,10.5095,2602 +193,4,0,11.3514,10.5189,2598 +194,4,0,11.5760,10.7049,2598 +195,4,0,11.4442,10.5251,2598 +196,4,0,11.2386,10.4976,2598 +197,4,0,11.1150,10.3507,2598 +198,4,0,11.2402,10.4560,2598 +199,4,0,11.3053,10.5371,2598 +200,4,0,11.0852,10.3637,2598 +201,4,0,11.2860,10.4162,2598 +202,4,0,11.4159,10.5920,2598 +203,4,0,11.2600,10.3593,2598 +204,4,0,11.2460,10.3702,2598 +205,4,0,11.6192,10.0390,2598 +206,4,0,11.5039,10.3576,2598 +207,4,0,17.4908,10.2130,2598 +208,4,0,13.6388,13.2109,2598 +209,4,0,11.1254,10.5016,2598 +210,4,0,11.3900,10.7673,2598 +211,4,0,13.0050,10.3716,2598 +212,4,0,11.6855,10.3368,2598 +213,4,0,12.3543,10.0632,2598 +214,4,0,12.0130,10.1680,2598 +215,4,0,11.3350,10.2276,2598 +216,4,0,12.0394,10.3850,2598 +217,4,0,11.7192,10.2606,2598 +218,4,0,11.8440,10.2505,2598 +219,4,0,11.7871,10.0604,2598 +220,4,0,11.3840,10.2561,2598 +221,4,0,11.6880,9.8202,2598 +222,4,0,13.2789,11.9466,2598 +223,4,0,11.3252,10.3403,2598 +224,4,0,11.1402,10.4080,2598 +225,4,0,11.7247,10.0387,2598 +226,4,0,12.3800,9.5363,2598 +227,4,0,11.0183,10.2218,2598 +228,4,0,10.9360,10.2546,2598 +229,4,0,10.9149,10.3547,2598 +230,4,0,10.8957,10.3938,2598 +231,4,0,10.7325,10.2147,2598 +232,4,0,10.7469,10.3461,2598 +233,4,0,10.9320,10.4558,2598 +234,4,0,11.0894,10.6040,2598 +235,4,0,11.0246,10.5469,2598 +236,4,0,10.8939,10.2730,2598 +237,4,0,10.9307,10.3656,2598 +238,4,0,10.9940,10.4558,2598 +239,4,0,12.7093,12.2288,2598 +240,4,0,11.2815,10.1663,2598 +241,4,0,11.8637,10.0830,2598 +242,4,0,13.3940,10.3190,2598 +243,4,0,10.9444,10.3300,2598 +244,4,0,10.7930,10.2593,2598 +245,4,0,10.8721,10.3437,2598 +246,4,0,10.9844,10.4063,2598 +247,4,0,11.0560,10.4288,2598 +248,4,0,10.8289,10.3463,2598 +249,4,0,10.8066,10.2764,2598 +250,4,0,10.9908,10.3918,2598 +251,4,0,10.8150,10.2694,2598 +252,4,0,10.8221,10.2559,2598 +253,4,0,10.9117,10.2749,2598 +254,4,0,10.8707,10.2136,2598 +255,4,0,11.0674,10.3594,2598 +256,4,0,10.9137,10.3033,2598 +257,4,0,11.2394,10.3582,2598 +258,4,0,11.3262,10.5914,2598 +259,4,0,11.4621,10.7671,2598 +260,4,0,11.4430,10.6835,2598 +261,4,0,11.0572,10.3411,2598 +262,4,0,10.9513,10.3630,2598 +263,4,0,10.9436,10.4262,2598 +264,4,0,10.8568,10.3377,2598 +265,4,0,10.9697,10.3745,2598 +266,4,0,10.9601,10.4146,2598 +267,4,0,11.2098,10.5776,2598 +268,4,0,11.1242,10.3513,2598 +269,4,0,11.1686,10.5642,2598 +270,4,0,11.1423,10.6967,2598 +271,4,0,11.1257,10.4832,2598 +272,4,0,11.3447,10.5727,2598 +273,4,0,11.3997,10.6756,2598 +274,4,0,11.2432,10.5716,2598 +275,4,0,11.5988,10.8166,2598 +276,4,0,11.4454,10.6651,2598 +277,4,0,11.4710,10.6194,2598 +278,4,0,11.6042,10.6997,2598 +279,4,0,11.5168,10.7750,2598 +280,4,0,11.2381,10.4801,2598 +281,4,0,11.1984,10.4828,2598 +282,4,0,11.1677,10.4500,2598 +283,4,0,11.0503,10.2773,2598 +284,4,0,11.1531,10.3321,2598 +285,4,0,11.2550,10.5471,2598 +286,4,0,11.0552,10.3126,2598 +287,4,0,11.0215,10.4282,2598 +288,4,0,11.1960,10.4939,2598 +289,4,0,11.0912,10.3860,2598 +290,4,0,11.2372,10.5112,2598 +291,4,0,11.1515,10.4189,2598 +292,4,0,11.1948,10.3419,2598 +293,4,0,11.1722,10.4820,2598 +294,4,0,11.1789,10.3972,2598 +295,4,0,11.3204,10.5115,2598 +296,4,0,11.4838,10.6551,2598 +297,4,0,11.3281,10.4463,2598 +298,4,0,11.2070,10.4195,2598 +299,4,0,11.2610,10.4083,2598 diff --git a/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/summary.md b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/summary.md new file mode 100644 index 0000000..ad1c3fe --- /dev/null +++ b/benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/summary.md @@ -0,0 +1,10 @@ +# Tiled 5K60 Session Reset Probe + +| Case | Reset every | Inflight | Frames | Effective fps | Avg logical ms | P95 logical ms | Steady p95 ms | Steady max-tile p95 ms | Payload bytes | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---:|---:|---| +| 30mbps_no_reset | 0 | 0 | 300 | 59.543 | 24.733 | 42.688 | 41.922 | 41.328 | 1391053 | FAIL | +| 30mbps_reset120 | 120 | 0 | 300 | 60.014 | 20.909 | 71.783 | 71.783 | 66.559 | 2614696 | FAIL | +| 30mbps_reset150 | 150 | 0 | 300 | 60.003 | 17.509 | 65.848 | 57.918 | 51.309 | 2003860 | FAIL | +| 30mbps_reset150_inflight1 | 150 | 1 | 300 | 60.040 | 12.255 | 12.937 | 12.937 | 11.325 | 2003860 | PASS | +| 30mbps_reset90 | 90 | 0 | 300 | 60.028 | 24.350 | 71.822 | 71.822 | 66.455 | 3222397 | FAIL | +| 60mbps_reset150 | 150 | 0 | 300 | 60.027 | 16.801 | 60.790 | 50.410 | 46.270 | 2479566 | FAIL | diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.csv b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.csv new file mode 100644 index 0000000..47bdcb8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.csv @@ -0,0 +1,2401 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0686,35.0847,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.7870,24.8365,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.7725,26.6902,0.0155,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8027,25.6292,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0686,5.7784,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.7870,5.6389,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.7725,10.6287,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8027,10.6041,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.0686,5.8821,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.7870,5.6088,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.7725,10.4403,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8027,10.3703,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.0686,5.7796,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.7870,5.5903,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.7725,10.4350,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8027,10.3907,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.0686,5.6850,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.7870,5.5308,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.7725,10.3017,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8027,10.2534,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.0686,5.6000,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.7870,5.4322,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.7725,10.2767,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8027,10.2128,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.0686,5.6057,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.7870,5.4283,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.7725,10.2619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8027,10.2543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.0686,5.6214,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.7870,5.4395,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.7725,10.2650,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8027,10.2425,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.0686,5.6053,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.7870,5.4407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.7725,10.2490,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8027,10.2039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.0686,5.6103,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.7870,5.4454,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.7725,10.3382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8027,10.3098,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.0686,5.7065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.7870,5.5197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.7725,10.3658,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8027,10.3117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.0686,5.7030,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.7870,5.5339,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.7725,10.4401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8027,10.3366,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.0686,5.7130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.7870,5.5079,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.7725,10.3450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8027,10.2985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.0686,5.7516,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.7870,5.6006,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.7725,10.4808,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8027,10.3807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.0686,5.8152,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.7870,5.5640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.7725,10.3940,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8027,10.2615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.0686,5.7790,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.7870,5.7074,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.7725,10.0868,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8027,10.0988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.0686,5.8792,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.7870,5.6051,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.7725,10.2674,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8027,10.1716,0.0595,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.0686,6.5648,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.7870,5.9163,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.7725,10.2799,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8027,10.1181,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.0686,6.0142,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.7870,5.6912,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.7725,10.5586,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8027,10.4925,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.0686,8.0107,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.7870,6.4535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.7725,10.3594,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8027,10.1284,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.0686,6.2103,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.7870,6.0302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.7725,9.7760,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8027,10.2145,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.0686,8.6870,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.7870,7.8380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.7725,9.8881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8027,10.1098,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.0686,7.7553,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.7870,6.7636,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.7725,10.0575,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8027,9.9470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.0686,6.9413,0.0409,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.7870,6.0340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.7725,10.0392,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8027,9.7360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.0686,7.6382,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.7870,6.0859,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.7725,8.8604,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8027,9.6126,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.0686,6.4244,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.7870,5.9050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.7725,10.5935,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8027,10.4324,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.0686,6.4930,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.7870,5.8235,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.7725,12.0626,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8027,11.8206,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.0686,6.0697,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.7870,5.6623,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.7725,10.1326,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8027,10.0401,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.0686,6.9283,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.7870,5.8482,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.7725,10.7336,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8027,10.5943,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.0686,7.8094,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.7870,6.8197,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.7725,17.5754,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8027,16.2538,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.0686,6.2221,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.7870,5.7771,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.7725,10.6995,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8027,10.5897,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.0686,7.1108,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.7870,6.7958,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.7725,10.6319,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8027,10.4925,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.0686,7.9900,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.7870,7.2747,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.7725,10.5191,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8027,10.4136,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.0686,9.7477,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.7870,8.8212,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.7725,10.0769,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8027,9.6128,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.0686,7.4046,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.7870,6.7125,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.7725,10.4782,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8027,10.3385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0686,6.3907,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.7870,5.7974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.7725,10.3337,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8027,10.1603,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0686,9.3340,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.7870,8.7313,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.7725,10.8213,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8027,10.7240,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.0686,6.3436,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.7870,5.6414,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.7725,10.2012,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8027,10.0566,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.0686,5.9640,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.7870,5.5636,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.7725,10.3307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8027,10.3030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.0686,5.9382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.7870,5.6526,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.7725,10.5079,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8027,10.4902,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.0686,5.9019,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.7870,5.5982,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.7725,10.3736,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8027,10.3240,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.0686,5.7761,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.7870,5.5360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.7725,10.2822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8027,10.2222,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.0686,5.8067,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.7870,5.5593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.7725,10.2183,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8027,10.1665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.0686,5.8093,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.7870,5.5971,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.7725,10.3112,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8027,10.2275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.0686,5.8914,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.7870,5.6046,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.7725,10.3297,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8027,10.2508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.0686,7.0503,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.7870,6.1397,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.7725,10.3070,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8027,10.2454,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.0686,6.6930,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.7870,5.9790,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.7725,10.5312,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8027,10.4099,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.0686,6.4320,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.7870,5.9210,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.7725,8.8487,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8027,10.1906,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.0686,6.4787,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.7870,5.8160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.7725,9.9395,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8027,9.7236,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0686,6.2872,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.7870,5.7293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.7725,10.0638,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8027,10.0064,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.0686,6.0998,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.7870,5.5523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.7725,10.4000,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8027,10.3043,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.0686,6.1204,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.7870,5.6552,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.7725,10.6462,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8027,13.9301,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.0686,5.8439,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.7870,5.5419,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.7725,9.9788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8027,9.9370,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.0686,5.8255,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.7870,5.5803,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.7725,10.4322,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8027,10.3758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.0686,5.7637,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.7870,5.6011,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.7725,10.5680,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8027,10.3900,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.0686,6.8722,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.7870,6.3173,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.7725,10.3002,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8027,10.2226,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0686,6.3780,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.7870,5.7526,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.7725,10.3169,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8027,10.0900,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.0686,7.0045,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.7870,6.1473,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.7725,13.0240,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8027,12.9440,0.0437,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.0686,6.4604,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.7870,5.7087,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.7725,10.2839,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8027,10.1048,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.0686,6.0543,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.7870,5.6664,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.7725,10.3117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8027,10.2281,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.0686,5.8058,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.7870,5.5045,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.7725,10.2146,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8027,10.1282,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.0686,5.7446,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.7870,5.6118,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.7725,10.3190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8027,10.3145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.0686,5.6999,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.7870,5.5573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.7725,10.3416,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8027,10.3084,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.0686,5.7794,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.7870,5.5444,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.7725,10.3885,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8027,10.3336,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.0686,5.6905,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.7870,5.4373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.7725,10.3388,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8027,10.2731,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.0686,5.7174,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.7870,5.5594,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.7725,10.3961,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8027,10.3680,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.0686,5.6492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.7870,5.5127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.7725,10.3994,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8027,10.3819,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.0686,5.6880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.7870,5.5287,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.7725,10.3956,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8027,10.3655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.0686,5.7257,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.7870,5.5153,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.7725,10.3673,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8027,10.3608,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.0686,5.6368,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.7870,5.4861,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.7725,10.4434,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8027,10.4313,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.0686,5.6748,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.7870,5.5159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.7725,10.6426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8027,10.5598,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.0686,5.6541,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.7870,5.4834,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.7725,10.3826,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8027,10.3213,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.0686,5.7151,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.7870,5.4533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.7725,10.4092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8027,10.3573,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.0686,5.6835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.7870,5.4855,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.7725,10.4050,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8027,10.3571,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.0686,5.6320,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.7870,5.4903,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.7725,10.5036,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8027,10.4541,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.0686,5.7120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.7870,5.5195,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.7725,10.4902,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8027,10.4034,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.0686,5.7043,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.7870,5.5403,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.7725,10.4831,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8027,10.4430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.0686,5.8487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.7870,5.6170,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.7725,10.4960,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8027,10.4437,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.0686,5.8845,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.7870,5.6910,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.7725,10.4376,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8027,10.3331,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.0686,5.7528,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.7870,5.5511,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.7725,10.3789,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8027,10.2984,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.0686,5.9405,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.7870,5.6029,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.7725,12.7970,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8027,12.6458,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.0686,6.3985,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.7870,5.8730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.7725,13.3893,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8027,13.3475,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.0686,7.2161,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.7870,5.9124,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.7725,9.8996,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8027,10.0778,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.0686,8.0943,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.7870,7.2944,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.7725,10.4363,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8027,10.3209,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.0686,6.2748,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.7870,5.7765,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.7725,10.3699,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8027,10.1564,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.0686,6.0318,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.7870,5.7230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.7725,10.4284,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8027,10.4293,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.0686,6.1495,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.7870,5.7403,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.7725,10.4020,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8027,10.2655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.0686,7.6466,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.7870,6.3293,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.7725,9.6158,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8027,16.6865,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.0686,6.6910,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.7870,5.6793,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.7725,10.2867,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8027,10.0836,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.0686,7.4281,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.7870,6.6671,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.7725,10.2370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8027,6.9745,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.0686,8.3619,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.7870,7.5855,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.7725,10.7407,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8027,10.6365,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.0686,6.8995,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.7870,6.5927,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.7725,10.4390,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8027,10.0105,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.0686,6.3009,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.7870,5.7683,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.7725,10.4335,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8027,10.2490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.0686,8.2242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.7870,7.2193,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.7725,11.0400,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8027,10.8084,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.0686,6.4392,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.7870,5.8521,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.7725,10.0740,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8027,9.8031,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.0686,13.4947,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.7870,13.3741,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.7725,13.1944,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8027,13.1264,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.0686,7.6299,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.7870,6.4692,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.7725,10.6085,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8027,10.5055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.0686,6.4843,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.7870,5.6935,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.7725,10.4417,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8027,10.2253,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.0686,6.6267,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.7870,5.6722,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.7725,11.3205,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8027,11.2585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.0686,6.4728,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.7870,5.6710,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.7725,10.4337,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8027,10.2222,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.0686,6.8937,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.7870,6.1200,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.7725,10.2851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8027,10.1562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.0686,6.6996,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.7870,5.7859,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.7725,10.7007,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8027,10.5909,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.0686,6.4155,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.7870,5.6940,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.7725,10.4518,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8027,10.3817,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.0686,6.4563,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.7870,5.7145,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.7725,9.3438,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8027,9.6002,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.0686,6.7684,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.7870,5.8532,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.7725,9.0565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8027,8.3313,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.0686,7.5549,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.7870,6.7644,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.7725,15.4370,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8027,15.2105,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.0686,8.0039,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.7870,7.1200,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.7725,10.4951,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8027,10.3108,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.0686,6.8908,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.7870,5.9931,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.7725,8.6362,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8027,10.4995,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.0686,7.6021,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.7870,6.6086,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.7725,10.5986,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8027,10.3441,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.0686,7.4121,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.7870,6.1518,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.7725,11.4685,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8027,11.5388,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.0686,7.0534,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.7870,6.1165,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.7725,12.8255,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8027,12.7555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.0686,8.4429,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.7870,7.3903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.7725,10.5998,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8027,10.2958,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.0686,10.2963,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.7870,9.1810,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.7725,10.1512,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8027,9.8836,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.0686,8.1627,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.7870,7.1715,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.7725,11.6790,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8027,11.5612,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.0686,7.8795,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.7870,6.9017,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.7725,12.2043,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8027,12.3150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.0686,7.0892,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.7870,6.1512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.7725,11.9304,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8027,11.3748,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.0686,6.7715,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.7870,6.0825,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.7725,8.7531,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8027,12.0520,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.0686,7.1928,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.7870,5.8242,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.7725,14.5024,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8027,14.2643,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.0686,6.9633,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.7870,6.1727,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.7725,10.5346,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8027,10.4226,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.0686,6.7098,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.7870,5.9230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.7725,10.2190,0.0400,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8027,10.1657,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.0686,7.1326,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.7870,6.2452,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.7725,10.3588,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8027,9.9929,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.0686,7.3309,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.7870,6.4347,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.7725,10.4076,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8027,10.0960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.0686,7.2688,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.7870,6.3285,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.7725,10.1315,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8027,9.9233,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.0686,7.0887,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.7870,6.1037,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.7725,10.2296,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8027,10.0237,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.0686,6.5594,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.7870,5.8741,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.7725,10.1623,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8027,9.9774,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.0686,6.2132,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.7870,5.7940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.7725,10.1231,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8027,9.8657,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.0686,7.6033,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.7870,6.8564,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.7725,10.0221,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8027,9.8340,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.0686,7.3815,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.7870,6.7220,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.7725,10.1066,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8027,10.0380,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.0686,6.2134,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.7870,5.7646,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.7725,10.4355,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8027,10.1317,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.0686,6.4681,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.7870,5.8958,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.7725,10.0569,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8027,9.9505,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.0686,6.4299,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.7870,5.7299,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.7725,9.6180,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8027,7.8720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.0686,6.2837,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.7870,6.0296,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.7725,10.0246,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8027,9.9066,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.0686,6.4035,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.7870,5.7891,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.7725,10.0124,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8027,10.1822,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.0686,6.4151,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.7870,5.7663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.7725,10.8473,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8027,10.5034,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.0686,7.1436,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.7870,6.3872,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.7725,9.9116,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8027,9.9049,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.0686,7.3895,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.7870,6.1722,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.7725,9.7789,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8027,9.7673,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.0686,6.4979,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.7870,5.8716,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.7725,10.3975,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8027,10.0213,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.0686,6.5155,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.7870,6.1378,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.7725,9.7675,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8027,9.9034,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.0686,6.2734,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.7870,5.7396,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.7725,10.1647,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8027,9.9519,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.0686,7.9358,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.7870,7.1208,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.7725,9.9119,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8027,9.8069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.0686,6.4372,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.7870,5.8178,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.7725,10.3030,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8027,10.2517,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0686,7.6807,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.7870,6.6858,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.7725,10.2838,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8027,9.9935,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.0686,7.1792,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.7870,6.2377,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.7725,9.9494,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8027,9.7934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.0686,7.3426,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.7870,6.6243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.7725,10.0502,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8027,9.9421,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.0686,6.1884,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.7870,6.1913,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.7725,10.0271,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8027,9.9579,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.0686,6.7037,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.7870,5.9098,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.7725,9.9536,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8027,9.9754,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.0686,6.4776,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.7870,6.0009,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.7725,9.9803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8027,9.9503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.0686,6.2085,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.7870,5.7914,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.7725,10.4255,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8027,10.2055,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0686,6.3205,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.7870,5.8295,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.7725,10.0314,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8027,9.9486,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.0686,6.1491,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.7870,5.7685,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.7725,10.0214,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8027,9.8307,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.0686,30.6829,0.0146,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +601,2.7870,32.8619,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +602,2.7725,25.3593,0.0072,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +603,2.8027,25.3505,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +604,5.0686,5.9859,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +605,2.7870,5.7912,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +606,2.7725,10.6707,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +607,2.8027,10.6720,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +608,5.0686,5.6792,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +609,2.7870,5.5955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +610,2.7725,10.5648,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +611,2.8027,10.4766,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +612,5.0686,5.8250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +613,2.7870,5.6590,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +614,2.7725,10.5798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +615,2.8027,10.5855,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +616,5.0686,5.6727,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +617,2.7870,5.5452,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +618,2.7725,10.4523,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +619,2.8027,10.4466,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +620,5.0686,5.6596,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +621,2.7870,5.6008,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +622,2.7725,10.4291,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +623,2.8027,10.4178,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +624,5.0686,5.7096,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +625,2.7870,5.5483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +626,2.7725,10.4105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +627,2.8027,10.3537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +628,5.0686,5.8905,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +629,2.7870,5.6930,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +630,2.7725,10.6584,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +631,2.8027,10.6544,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +632,5.0686,5.6742,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +633,2.7870,5.5906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +634,2.7725,10.4367,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +635,2.8027,10.3937,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +636,5.0686,5.5914,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +637,2.7870,5.5056,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +638,2.7725,10.3824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +639,2.8027,10.3595,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +640,5.0686,5.5992,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +641,2.7870,5.4870,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +642,2.7725,10.2585,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +643,2.8027,10.2585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +644,5.0686,5.7510,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +645,2.7870,5.5761,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +646,2.7725,10.2933,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +647,2.8027,10.2599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +648,5.0686,5.8101,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +649,2.7870,5.6048,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +650,2.7725,10.4313,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +651,2.8027,10.3080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +652,5.0686,5.8607,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +653,2.7870,5.5766,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +654,2.7725,10.4502,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +655,2.8027,10.3646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +656,5.0686,5.8563,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +657,2.7870,5.6475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +658,2.7725,10.3555,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +659,2.8027,10.3226,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +660,5.0686,5.8836,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +661,2.7870,5.6798,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +662,2.7725,10.6695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +663,2.8027,10.6285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +664,5.0686,5.7908,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +665,2.7870,5.6230,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +666,2.7725,10.5394,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +667,2.8027,10.5727,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +668,5.0686,5.9052,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +669,2.7870,5.7148,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +670,2.7725,10.5836,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +671,2.8027,10.5712,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +672,5.0686,5.8805,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +673,2.7870,5.7141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +674,2.7725,10.5196,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +675,2.8027,10.4900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +676,5.0686,5.7690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +677,2.7870,5.5675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +678,2.7725,10.5102,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +679,2.8027,10.4200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +680,5.0686,5.8280,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +681,2.7870,5.7184,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +682,2.7725,10.2964,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +683,2.8027,10.3194,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +684,5.0686,5.7177,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +685,2.7870,5.5724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +686,2.7725,10.2520,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +687,2.8027,10.2875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +688,5.0686,5.8185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +689,2.7870,5.5555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +690,2.7725,10.4247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8027,10.3693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +692,5.0686,5.7972,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +693,2.7870,5.6550,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +694,2.7725,10.4112,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +695,2.8027,10.2602,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +696,5.0686,5.9646,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +697,2.7870,5.9022,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +698,2.7725,10.7011,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +699,2.8027,10.6022,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +700,5.0686,6.4506,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +701,2.7870,6.1978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +702,2.7725,9.0134,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +703,2.8027,10.5708,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +704,5.0686,6.4468,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +705,2.7870,6.0255,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +706,2.7725,10.6645,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +707,2.8027,10.5220,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +708,5.0686,6.4909,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +709,2.7870,5.8319,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +710,2.7725,10.8764,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +711,2.8027,10.6847,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +712,5.0686,6.2537,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +713,2.7870,5.8522,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +714,2.7725,10.6625,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +715,2.8027,10.4252,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +716,5.0686,6.6363,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +717,2.7870,5.7959,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +718,2.7725,12.5518,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +719,2.8027,12.2860,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +720,5.0686,6.8531,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +721,2.7870,6.0715,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.7725,10.5288,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +723,2.8027,10.0808,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +724,5.0686,6.5171,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +725,2.7870,5.8577,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.7725,10.9715,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +727,2.8027,11.0274,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +728,5.0686,6.2725,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +729,2.7870,5.7330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.7725,10.7259,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +731,2.8027,10.5665,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +732,5.0686,7.2142,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +733,2.7870,6.0755,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.7725,10.6092,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +735,2.8027,10.5079,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +736,5.0686,6.8814,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +737,2.7870,6.2669,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.7725,10.5240,0.1763,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +739,2.8027,10.3598,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +740,5.0686,10.6841,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +741,2.7870,9.1248,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.7725,18.8286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +743,2.8027,18.4031,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.0686,6.5410,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +745,2.7870,6.0896,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.7725,8.1025,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +747,2.8027,10.6243,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +748,5.0686,6.3243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +749,2.7870,5.7663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.7725,12.4023,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +751,2.8027,9.2630,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +752,5.0686,8.0083,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +753,2.7870,7.6002,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.7725,11.0092,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +755,2.8027,10.8455,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +756,5.0686,9.5369,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +757,2.7870,7.7055,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.7725,9.5246,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +759,2.8027,10.4275,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +760,5.0686,7.8905,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.7870,5.9804,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.7725,9.2557,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +763,2.8027,10.3452,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +764,5.0686,8.8640,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.7870,7.6632,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.7725,9.9665,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +767,2.8027,10.3404,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +768,5.0686,8.6238,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.7870,7.5273,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.7725,10.9275,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +771,2.8027,10.7023,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.0686,6.3314,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.7870,5.8472,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.7725,10.8188,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +775,2.8027,10.5756,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +776,5.0686,6.2890,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.7870,5.7763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.7725,10.7611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +779,2.8027,10.7238,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +780,5.0686,5.9455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.7870,5.6837,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.7725,10.7245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +783,2.8027,10.7160,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.0686,6.0447,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.7870,5.7226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.7725,10.7085,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +787,2.8027,10.6484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +788,5.0686,6.3427,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.7870,5.8740,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.7725,10.5900,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +791,2.8027,10.4490,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +792,5.0686,6.3983,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.7870,6.2268,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.7725,11.1445,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +795,2.8027,10.9322,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.0686,7.2235,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.7870,6.0922,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.7725,10.6768,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +799,2.8027,10.4080,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +800,5.0686,9.1319,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.7870,8.5438,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.7725,10.5454,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +803,2.8027,10.1871,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.0686,6.5920,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.7870,6.3797,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.7725,7.6245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +807,2.8027,10.5100,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +808,5.0686,6.2658,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.7870,5.7889,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.7725,10.9863,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +811,2.8027,10.8768,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +812,5.0686,8.9434,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.7870,8.0173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.7725,10.9263,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +815,2.8027,10.6485,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +816,5.0686,13.5926,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.7870,9.0108,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.7725,10.9035,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8027,10.5878,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +820,5.0686,6.5325,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.7870,5.9837,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.7725,10.7215,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8027,10.4675,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.0686,7.7443,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.7870,6.4391,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.7725,12.2437,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8027,11.9001,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +828,5.0686,6.3254,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.7870,5.8492,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.7725,10.5225,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8027,10.3407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +832,5.0686,6.2691,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.7870,5.7826,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.7725,10.7385,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,2.8027,10.5294,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +836,5.0686,6.3244,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.7870,5.7509,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.7725,10.5826,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +839,2.8027,10.4835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +840,5.0686,7.2535,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.7870,6.2828,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.7725,10.7918,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +843,2.8027,10.6680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.0686,7.1460,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.7870,6.2623,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.7725,10.5770,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +847,2.8027,10.3882,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +848,5.0686,6.7601,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.7870,6.3595,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.7725,10.6420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +851,2.8027,10.3730,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.0686,6.5538,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.7870,6.1604,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.7725,8.6662,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +855,2.8027,10.4227,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +856,5.0686,6.6216,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.7870,5.9825,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.7725,8.6749,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +859,2.8027,8.7499,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +860,5.0686,6.4176,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.7870,5.9352,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.7725,10.4892,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,2.8027,9.9400,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +864,5.0686,8.1476,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.7870,7.3356,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.7725,11.8056,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,2.8027,11.5817,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +868,5.0686,6.8840,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.7870,6.1606,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.7725,11.2845,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,2.8027,11.2466,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +872,5.0686,6.6895,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.7870,6.1889,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.7725,10.8110,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,2.8027,10.5639,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +876,5.0686,6.6421,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.7870,5.7564,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.7725,10.9392,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +879,2.8027,10.8510,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +880,5.0686,7.7369,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.7870,6.7353,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.7725,10.3520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +883,2.8027,10.2968,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +884,5.0686,6.2662,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.7870,5.8208,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.7725,10.5107,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +887,2.8027,10.3692,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +888,5.0686,5.9396,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.7870,5.7280,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.7725,10.7460,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +891,2.8027,10.6740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.0686,6.1195,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.7870,5.8459,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.7725,11.0745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +895,2.8027,10.7444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +896,5.0686,6.1156,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.7870,5.7476,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.7725,10.5301,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +899,2.8027,10.4300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +900,5.0686,5.8662,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.7870,5.7322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.7725,12.3294,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +903,2.8027,12.2782,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +904,5.0686,6.3834,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.7870,6.0895,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.7725,11.0359,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,2.8027,10.3217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +908,5.0686,5.8243,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.7870,5.5680,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.7725,10.0842,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,2.8027,10.0734,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +912,5.0686,5.8921,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.7870,5.6152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.7725,10.4473,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,2.8027,10.3837,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +916,5.0686,5.9493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.7870,5.6157,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.7725,10.5369,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,2.8027,10.4215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +920,5.0686,5.8461,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.7870,5.6237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.7725,10.5112,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8027,10.4566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +924,5.0686,5.8210,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.7870,5.6745,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.7725,10.4022,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8027,10.3466,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +928,5.0686,5.8995,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.7870,5.6444,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.7725,10.4959,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +931,2.8027,10.4220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +932,5.0686,5.8822,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.7870,5.6240,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.7725,10.4797,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +935,2.8027,10.3631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.0686,5.8563,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.7870,5.5721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.7725,10.3595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +939,2.8027,10.3524,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +940,5.0686,5.8175,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.7870,5.6260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.7725,10.4586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +943,2.8027,10.4228,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +944,5.0686,5.8592,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.7870,5.6091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.7725,10.4995,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +947,2.8027,10.4655,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +948,5.0686,5.8265,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.7870,5.5953,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.7725,10.5011,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8027,10.5018,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +952,5.0686,5.6985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.7870,5.4897,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.7725,10.4354,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,2.8027,10.4031,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +956,5.0686,5.8408,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.7870,5.6704,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.7725,9.3581,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,2.8027,9.4214,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +960,5.0686,6.3876,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.7870,5.7074,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.7725,10.3579,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,2.8027,10.2435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.0686,5.9686,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.7870,5.7311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.7725,10.5678,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +967,2.8027,10.4643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +968,5.0686,5.8301,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.7870,5.5451,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.7725,10.4671,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,2.8027,10.4343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +972,5.0686,5.7434,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.7870,5.5616,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.7725,10.3828,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +975,2.8027,10.3564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +976,5.0686,5.8009,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.7870,5.5593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.7725,10.4295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +979,2.8027,10.3339,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +980,5.0686,5.7631,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.7870,5.5431,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.7725,10.4109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +983,2.8027,10.3923,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.0686,5.7686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.7870,5.5918,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.7725,10.4586,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +987,2.8027,10.4004,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +988,5.0686,5.7987,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.7870,5.5599,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.7725,10.3893,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +991,2.8027,10.4170,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.0686,5.7529,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.7870,5.5835,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.7725,10.5336,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.8027,10.5565,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.0686,5.6924,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.7870,5.5937,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.7725,10.5156,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,2.8027,10.5143,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.0686,5.6225,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.7870,5.5260,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.7725,10.3275,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,2.8027,10.3507,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1004,5.0686,5.6228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.7870,5.5122,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.7725,10.2582,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1007,2.8027,10.2706,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1008,5.0686,5.5261,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.7870,5.4497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.7725,10.3165,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1011,2.8027,10.3232,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.0686,5.6171,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.7870,5.4700,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.7725,10.2976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1015,2.8027,10.3046,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1016,5.0686,5.7440,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.7870,5.6325,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.7725,10.3705,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1019,2.8027,10.3688,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.0686,5.7713,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.7870,5.5563,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.7725,10.3175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1023,2.8027,10.3366,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.0686,5.7120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.7870,5.4970,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.7725,10.4980,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1027,2.8027,10.3894,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.0686,5.8983,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.7870,5.6777,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.7725,10.3483,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1031,2.8027,10.2960,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1032,5.0686,5.7452,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.7870,5.5447,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.7725,10.3014,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1035,2.8027,10.2934,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1036,5.0686,5.7816,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.7870,5.5450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.7725,10.3663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.8027,10.3426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1040,5.0686,5.7335,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.7870,5.5850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.7725,10.2643,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.8027,10.2369,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1044,5.0686,5.7674,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.7870,5.5865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.7725,10.4009,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.8027,10.3389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.0686,5.8309,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.7870,5.5613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.7725,10.2885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8027,10.2516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.0686,5.7115,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.7870,5.6175,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.7725,10.3482,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1055,2.8027,10.2371,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.0686,5.9326,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.7870,5.7189,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.7725,10.2800,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1059,2.8027,10.2019,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.0686,6.3440,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.7870,5.7152,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.7725,10.3165,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1063,2.8027,10.1734,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.0686,6.7818,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.7870,6.0152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.7725,10.4467,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1067,2.8027,10.2494,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1068,5.0686,7.0276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.7870,6.4244,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.7725,9.5170,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1071,2.8027,10.3122,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1072,5.0686,8.5555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.7870,8.2359,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.7725,10.4364,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1075,2.8027,10.2315,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.0686,10.2697,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.7870,9.2349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.7725,10.1530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1079,2.8027,9.8096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.0686,5.7475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.7870,5.4904,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.7725,10.2566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.8027,10.1759,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.0686,5.8002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.7870,5.5468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.7725,10.3818,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,2.8027,10.2657,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.0686,6.5892,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.7870,5.9934,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.7725,10.1803,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.8027,10.1836,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1092,5.0686,7.4727,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.7870,6.8720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.7725,10.4012,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,2.8027,10.2736,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.0686,6.6588,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.7870,5.8587,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.7725,10.1554,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1099,2.8027,10.1161,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1100,5.0686,7.0216,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.7870,6.2739,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.7725,10.4831,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,2.8027,10.2832,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.0686,6.4871,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.7870,5.7380,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.7725,10.1916,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1107,2.8027,10.1294,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.0686,6.7812,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.7870,6.1351,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.7725,10.2312,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8027,10.1861,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.0686,5.9299,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.7870,5.6205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.7725,10.3475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8027,10.2978,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.0686,5.7496,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.7870,5.6341,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.7725,10.1957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8027,10.1747,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1120,5.0686,6.9473,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.7870,6.0096,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.7725,11.0807,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1123,2.8027,11.0546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.0686,6.1464,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.7870,5.6345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.7725,10.4967,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,2.8027,10.4070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1128,5.0686,6.2929,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.7870,5.7003,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.7725,10.4024,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,2.8027,10.3196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1132,5.0686,6.3469,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.7870,5.8922,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.7725,9.7794,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,2.8027,9.9581,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.0686,6.2919,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.7870,5.7100,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.7725,10.7534,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,2.8027,10.6428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.0686,6.3518,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.7870,5.7924,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.7725,9.9132,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,2.8027,9.4668,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.0686,6.7039,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.7870,5.9008,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.7725,9.8492,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8027,9.9288,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.0686,6.6472,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.7870,6.0445,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.7725,10.6360,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8027,10.4617,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.0686,7.4091,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.7870,6.5777,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.7725,10.3300,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8027,10.2558,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.0686,7.2679,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.7870,6.4630,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.7725,9.8598,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8027,9.9086,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.0686,6.3993,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.7870,5.8831,0.1273,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.7725,10.0228,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8027,9.9735,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.0686,6.4484,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.7870,6.0225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.7725,10.3941,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1167,2.8027,10.2383,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.0686,6.6921,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.7870,6.2962,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.7725,10.0489,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.8027,10.1327,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.0686,9.3161,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.7870,8.4083,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.7725,9.5582,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,2.8027,9.9402,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.0686,7.8465,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.7870,6.5851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.7725,10.1743,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8027,10.1192,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.0686,6.4962,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.7870,5.9820,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.7725,10.4908,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8027,10.2469,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1184,5.0686,6.2432,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.7870,6.1358,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.7725,8.9579,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8027,10.2267,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.0686,7.5403,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.7870,6.6820,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.7725,10.0311,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8027,9.9754,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.0686,6.8924,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.7870,6.0375,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.7725,9.9826,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8027,9.9857,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.0686,6.7511,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.7870,6.0234,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.7725,10.0166,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8027,9.8665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1200,5.0686,43.6112,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1201,2.7870,30.0785,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1202,2.7725,26.2752,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1203,2.8027,23.1375,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1204,5.0686,5.7655,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1205,2.7870,5.6306,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1206,2.7725,10.5997,0.0358,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1207,2.8027,10.6286,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1208,5.0686,5.7509,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1209,2.7870,5.6579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1210,2.7725,10.3850,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1211,2.8027,10.3695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1212,5.0686,5.6327,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1213,2.7870,5.4862,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1214,2.7725,10.3240,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1215,2.8027,10.3182,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1216,5.0686,5.7413,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1217,2.7870,5.6233,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1218,2.7725,10.5262,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1219,2.8027,10.5239,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1220,5.0686,5.8171,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1221,2.7870,5.6932,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1222,2.7725,10.4650,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1223,2.8027,10.5099,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1224,5.0686,5.6335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1225,2.7870,5.5460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1226,2.7725,10.4150,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1227,2.8027,10.4142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1228,5.0686,5.7386,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1229,2.7870,5.6424,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1230,2.7725,10.5425,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1231,2.8027,10.5722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1232,5.0686,5.7167,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1233,2.7870,5.6788,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1234,2.7725,10.4641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1235,2.8027,10.5745,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1236,5.0686,5.7369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1237,2.7870,5.6749,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1238,2.7725,10.6696,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1239,2.8027,10.6171,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1240,5.0686,5.6727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1241,2.7870,5.5791,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1242,2.7725,10.4481,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1243,2.8027,10.4361,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1244,5.0686,5.6650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1245,2.7870,5.5865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1246,2.7725,10.3810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1247,2.8027,10.4129,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1248,5.0686,5.8240,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1249,2.7870,5.6349,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1250,2.7725,10.4095,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1251,2.8027,10.4158,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1252,5.0686,5.6088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1253,2.7870,5.5678,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1254,2.7725,10.3552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1255,2.8027,10.3114,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1256,5.0686,5.6231,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1257,2.7870,5.5818,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1258,2.7725,10.3701,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1259,2.8027,10.3154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1260,5.0686,5.6964,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1261,2.7870,5.5916,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1262,2.7725,10.3100,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1263,2.8027,10.2074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1264,5.0686,5.8995,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1265,2.7870,5.6717,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1266,2.7725,10.5573,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1267,2.8027,10.4028,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1268,5.0686,5.9870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1269,2.7870,5.6888,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1270,2.7725,10.6282,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1271,2.8027,10.5673,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1272,5.0686,5.8423,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1273,2.7870,5.6961,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1274,2.7725,10.4723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1275,2.8027,10.4764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1276,5.0686,5.6761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1277,2.7870,5.6514,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1278,2.7725,10.3632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1279,2.8027,10.3824,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1280,5.0686,5.8490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1281,2.7870,5.6470,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1282,2.7725,10.5234,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1283,2.8027,10.5208,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1284,5.0686,6.0192,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1285,2.7870,5.7442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1286,2.7725,10.5296,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1287,2.8027,10.3906,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.0686,5.9102,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1289,2.7870,5.6557,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1290,2.7725,10.6888,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.8027,10.5720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1292,5.0686,6.1340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1293,2.7870,5.7270,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1294,2.7725,10.6777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1295,2.8027,10.5752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1296,5.0686,5.8816,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1297,2.7870,5.6714,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1298,2.7725,10.4537,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1299,2.8027,10.3926,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1300,5.0686,5.8092,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1301,2.7870,5.7391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1302,2.7725,10.4621,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1303,2.8027,10.4108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1304,5.0686,5.7773,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1305,2.7870,5.6921,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1306,2.7725,10.4816,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1307,2.8027,10.4390,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1308,5.0686,5.7227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1309,2.7870,5.6723,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1310,2.7725,10.3462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1311,2.8027,10.2964,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1312,5.0686,5.8702,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1313,2.7870,5.6044,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1314,2.7725,10.4893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1315,2.8027,10.4469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1316,5.0686,6.3318,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1317,2.7870,5.9260,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1318,2.7725,10.1260,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1319,2.8027,10.1737,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1320,5.0686,6.2331,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1321,2.7870,5.8823,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.7725,15.4556,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1323,2.8027,15.2395,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1324,5.0686,6.0311,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1325,2.7870,5.7526,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.7725,10.6091,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1327,2.8027,10.5361,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1328,5.0686,6.0466,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1329,2.7870,5.6938,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.7725,10.5872,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1331,2.8027,10.5068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1332,5.0686,6.1803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1333,2.7870,5.7719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.7725,10.7543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1335,2.8027,10.6919,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1336,5.0686,6.0256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1337,2.7870,5.6988,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.7725,10.5806,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1339,2.8027,10.5410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1340,5.0686,5.9663,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1341,2.7870,5.6742,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.7725,10.7267,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1343,2.8027,10.5794,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.0686,6.5898,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1345,2.7870,6.0248,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.7725,10.6671,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1347,2.8027,10.5858,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1348,5.0686,6.9349,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1349,2.7870,6.0884,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.7725,10.6003,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1351,2.8027,10.3660,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1352,5.0686,7.0269,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1353,2.7870,6.2328,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.7725,9.9366,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1355,2.8027,9.9786,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1356,5.0686,6.3765,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1357,2.7870,5.8632,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.7725,10.3370,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1359,2.8027,10.0643,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1360,5.0686,8.1513,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.7870,6.2615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.7725,8.7605,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1363,2.8027,10.1307,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1364,5.0686,6.8398,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.7870,6.1852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.7725,10.5733,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1367,2.8027,10.5079,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1368,5.0686,8.4660,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.7870,7.5880,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.7725,10.0233,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1371,2.8027,9.9164,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.0686,6.8725,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.7870,6.3812,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.7725,10.5500,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1375,2.8027,10.3456,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1376,5.0686,6.9627,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.7870,6.0263,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.7725,9.9154,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1379,2.8027,9.9955,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1380,5.0686,6.5038,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.7870,5.8964,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.7725,11.6235,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1383,2.8027,11.2218,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1384,5.0686,7.7377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.7870,6.7790,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.7725,10.2411,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1387,2.8027,10.1196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1388,5.0686,6.2849,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.7870,5.7554,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.7725,10.5818,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1391,2.8027,10.4453,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1392,5.0686,6.2180,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.7870,5.7622,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.7725,10.4791,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1395,2.8027,10.3322,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.0686,6.4332,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.7870,5.8215,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.7725,10.8280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1399,2.8027,10.6662,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.0686,6.3112,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.7870,5.8090,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.7725,11.0153,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1403,2.8027,10.8704,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.0686,6.5668,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.7870,6.3645,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.7725,10.0304,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1407,2.8027,10.1111,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1408,5.0686,6.6706,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.7870,6.1132,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.7725,10.1703,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1411,2.8027,10.0185,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1412,5.0686,6.5484,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.7870,5.8853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.7725,9.4512,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1415,2.8027,8.8738,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1416,5.0686,6.3960,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.7870,5.8291,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.7725,10.1215,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,2.8027,10.1259,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1420,5.0686,6.7047,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.7870,5.8840,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.7725,10.0989,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.8027,10.2400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.0686,6.1914,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.7870,5.7519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.7725,10.5738,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.8027,10.4770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1428,5.0686,5.7166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.7870,5.6198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.7725,10.2483,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.8027,10.2613,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1432,5.0686,6.0213,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.7870,5.9023,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.7725,10.6970,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1435,2.8027,10.5406,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1436,5.0686,6.4488,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.7870,5.9085,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.7725,9.9192,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1439,2.8027,9.8812,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1440,5.0686,6.5640,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1441,2.7870,5.9147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1442,2.7725,9.9780,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1443,2.8027,9.9805,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1444,5.0686,6.4787,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1445,2.7870,5.9150,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1446,2.7725,10.1200,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1447,2.8027,10.0240,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1448,5.0686,6.4165,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1449,2.7870,5.7814,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1450,2.7725,10.1175,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1451,2.8027,9.9247,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1452,5.0686,6.3380,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1453,2.7870,5.7920,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1454,2.7725,10.9007,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1455,2.8027,10.7034,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1456,5.0686,6.2915,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1457,2.7870,6.4524,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1458,2.7725,8.7089,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1459,2.8027,10.0790,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1460,5.0686,6.1340,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1461,2.7870,5.6926,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1462,2.7725,10.3662,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1463,2.8027,10.2151,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1464,5.0686,6.1812,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1465,2.7870,5.8050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1466,2.7725,10.4500,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1467,2.8027,10.3325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1468,5.0686,5.9278,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1469,2.7870,5.6487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1470,2.7725,10.3963,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1471,2.8027,10.3454,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1472,5.0686,5.8842,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1473,2.7870,5.7575,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1474,2.7725,10.6517,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1475,2.8027,10.4037,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1476,5.0686,6.2319,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1477,2.7870,6.4340,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1478,2.7725,10.0650,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1479,2.8027,9.8762,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1480,5.0686,6.5516,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1481,2.7870,5.8540,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1482,2.7725,10.0122,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1483,2.8027,10.0850,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1484,5.0686,6.4059,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1485,2.7870,6.1056,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1486,2.7725,10.0474,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1487,2.8027,10.0023,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1488,5.0686,6.6879,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1489,2.7870,5.8997,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1490,2.7725,9.9591,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1491,2.8027,9.9940,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1492,5.0686,6.7598,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1493,2.7870,5.8220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1494,2.7725,10.2629,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1495,2.8027,10.0773,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1496,5.0686,6.3563,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1497,2.7870,6.4137,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1498,2.7725,9.9216,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1499,2.8027,10.0692,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1500,5.0686,6.2735,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1501,2.7870,5.8946,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1502,2.7725,9.7945,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1503,2.8027,9.8480,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1504,5.0686,6.2010,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1505,2.7870,5.9317,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1506,2.7725,10.3042,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1507,2.8027,10.0886,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1508,5.0686,6.5227,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1509,2.7870,5.8190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1510,2.7725,10.3911,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1511,2.8027,10.0455,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1512,5.0686,7.8985,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1513,2.7870,6.8323,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1514,2.7725,9.0146,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1515,2.8027,10.2990,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1516,5.0686,6.0439,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1517,2.7870,5.6886,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1518,2.7725,10.5516,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1519,2.8027,10.3479,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1520,5.0686,6.1270,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1521,2.7870,5.7737,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1522,2.7725,10.5859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1523,2.8027,10.5666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1524,5.0686,5.7860,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1525,2.7870,5.6180,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1526,2.7725,10.8436,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1527,2.8027,10.7650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1528,5.0686,6.2119,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1529,2.7870,5.7203,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1530,2.7725,9.9355,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1531,2.8027,9.1981,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1532,5.0686,7.7480,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1533,2.7870,6.7251,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1534,2.7725,9.9610,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1535,2.8027,9.9177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1536,5.0686,6.3809,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1537,2.7870,5.6953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1538,2.7725,9.9525,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1539,2.8027,10.0621,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1540,5.0686,6.1001,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1541,2.7870,5.7132,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1542,2.7725,10.6921,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1543,2.8027,10.6721,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1544,5.0686,6.5511,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1545,2.7870,6.7492,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1546,2.7725,10.6508,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1547,2.8027,10.4373,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1548,5.0686,6.9253,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1549,2.7870,6.0865,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1550,2.7725,10.3122,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1551,2.8027,10.0296,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1552,5.0686,9.9678,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1553,2.7870,9.0157,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1554,2.7725,10.2430,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1555,2.8027,9.9516,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1556,5.0686,7.6993,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1557,2.7870,6.8235,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1558,2.7725,10.4927,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1559,2.8027,10.4392,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1560,5.0686,6.8101,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1561,2.7870,6.0062,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,2.7725,9.9841,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1563,2.8027,10.0773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1564,5.0686,6.3825,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1565,2.7870,5.7133,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,2.7725,10.1681,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1567,2.8027,9.9253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1568,5.0686,6.3175,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1569,2.7870,5.7693,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,2.7725,10.6853,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1571,2.8027,10.6058,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1572,5.0686,5.9417,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1573,2.7870,5.6570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,2.7725,10.5475,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1575,2.8027,10.5173,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1576,5.0686,5.8561,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1577,2.7870,5.6296,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,2.7725,10.5800,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1579,2.8027,10.5405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1580,5.0686,6.1586,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1581,2.7870,6.0042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,2.7725,10.9513,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1583,2.8027,10.8135,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1584,5.0686,6.7062,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1585,2.7870,5.9685,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,2.7725,10.2274,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1587,2.8027,9.8945,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1588,5.0686,6.6853,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1589,2.7870,5.8901,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,2.7725,9.8323,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1591,2.8027,9.8849,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1592,5.0686,5.9684,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1593,2.7870,5.6964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,2.7725,10.4243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1595,2.8027,10.3418,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1596,5.0686,6.1269,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1597,2.7870,5.8172,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,2.7725,10.7515,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1599,2.8027,10.9247,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1600,5.0686,6.3856,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,2.7870,5.6830,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,2.7725,9.6888,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1603,2.8027,9.7713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1604,5.0686,6.2958,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,2.7870,5.7603,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,2.7725,10.6765,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1607,2.8027,10.6048,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1608,5.0686,6.0847,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,2.7870,5.7436,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,2.7725,10.6393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1611,2.8027,10.5640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1612,5.0686,5.8915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,2.7870,5.6627,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,2.7725,10.6421,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1615,2.8027,10.5645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1616,5.0686,5.9903,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,2.7870,5.6629,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,2.7725,10.6402,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1619,2.8027,10.5152,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1620,5.0686,6.0111,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,2.7870,5.6863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,2.7725,10.7252,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1623,2.8027,10.6899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1624,5.0686,5.9270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,2.7870,5.6117,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,2.7725,10.6567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1627,2.8027,10.5665,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1628,5.0686,5.9074,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,2.7870,5.6627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,2.7725,10.5615,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1631,2.8027,10.4148,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1632,5.0686,7.2273,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,2.7870,6.2300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,2.7725,11.4920,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1635,2.8027,11.4820,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1636,5.0686,7.1470,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,2.7870,5.8823,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,2.7725,10.6085,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1639,2.8027,10.4701,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1640,5.0686,6.0402,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,2.7870,5.6350,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,2.7725,10.5067,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1643,2.8027,10.4236,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1644,5.0686,6.1989,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,2.7870,5.7842,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,2.7725,10.7376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1647,2.8027,10.6323,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1648,5.0686,6.6756,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,2.7870,6.5736,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,2.7725,11.2004,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1651,2.8027,11.0504,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1652,5.0686,6.9265,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,2.7870,6.1643,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,2.7725,10.7139,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1655,2.8027,10.4910,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1656,5.0686,7.6374,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,2.7870,6.6034,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,2.7725,10.6197,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1659,2.8027,10.4081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1660,5.0686,7.3842,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,2.7870,6.2321,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,2.7725,10.9405,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1663,2.8027,10.8795,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1664,5.0686,6.9408,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,2.7870,6.1635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,2.7725,10.1822,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1667,2.8027,10.1527,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1668,5.0686,6.6881,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,2.7870,5.9951,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,2.7725,10.4781,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1671,2.8027,10.2780,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1672,5.0686,6.7720,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,2.7870,6.0477,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,2.7725,7.7446,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1675,2.8027,10.2101,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1676,5.0686,6.1652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,2.7870,5.7529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,2.7725,10.5751,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1679,2.8027,10.4376,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1680,5.0686,6.2523,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1681,2.7870,5.7429,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1682,2.7725,10.5610,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1683,2.8027,10.4225,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1684,5.0686,6.0918,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1685,2.7870,5.7367,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1686,2.7725,10.6735,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1687,2.8027,10.6807,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1688,5.0686,5.8622,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1689,2.7870,5.6241,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1690,2.7725,10.5056,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1691,2.8027,10.4462,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1692,5.0686,6.0070,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1693,2.7870,5.7347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1694,2.7725,10.4272,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1695,2.8027,10.3861,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1696,5.0686,6.9521,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1697,2.7870,6.8564,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1698,2.7725,10.4145,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1699,2.8027,10.3789,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1700,5.0686,6.0633,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1701,2.7870,6.7660,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1702,2.7725,10.2554,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1703,2.8027,9.9435,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1704,5.0686,5.8411,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1705,2.7870,5.7305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1706,2.7725,10.2244,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1707,2.8027,10.2217,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1708,5.0686,6.0412,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1709,2.7870,5.8730,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1710,2.7725,10.3321,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1711,2.8027,10.2573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1712,5.0686,6.2693,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1713,2.7870,5.7177,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1714,2.7725,11.2761,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1715,2.8027,11.0975,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1716,5.0686,6.3711,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1717,2.7870,5.9480,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1718,2.7725,10.0368,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1719,2.8027,10.0609,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1720,5.0686,6.7010,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1721,2.7870,6.0652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1722,2.7725,13.1993,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1723,2.8027,12.7410,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1724,5.0686,6.0054,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1725,2.7870,5.6386,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1726,2.7725,10.2963,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1727,2.8027,10.2215,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1728,5.0686,6.0683,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1729,2.7870,5.6782,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1730,2.7725,10.5393,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1731,2.8027,10.4657,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1732,5.0686,5.9019,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1733,2.7870,5.6641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1734,2.7725,10.2107,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1735,2.8027,10.2697,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1736,5.0686,6.4748,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1737,2.7870,5.7890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1738,2.7725,9.4735,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1739,2.8027,9.7626,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1740,5.0686,5.8941,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1741,2.7870,5.6915,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,2.7725,10.2511,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1743,2.8027,10.1363,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1744,5.0686,6.3470,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1745,2.7870,5.7835,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,2.7725,10.5731,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1747,2.8027,10.4072,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1748,5.0686,5.8992,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1749,2.7870,5.6523,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,2.7725,10.5652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,2.8027,10.5847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1752,5.0686,6.2637,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1753,2.7870,5.9875,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,2.7725,10.6538,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1755,2.8027,10.5738,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1756,5.0686,9.9451,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1757,2.7870,8.7389,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,2.7725,9.9200,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1759,2.8027,9.3291,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1760,5.0686,7.5710,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1761,2.7870,6.8775,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,2.7725,10.7844,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1763,2.8027,10.7020,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1764,5.0686,7.3594,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1765,2.7870,6.8351,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,2.7725,10.4000,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1767,2.8027,10.2398,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1768,5.0686,5.9040,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1769,2.7870,5.7343,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,2.7725,10.1004,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1771,2.8027,9.9355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1772,5.0686,6.3872,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1773,2.7870,5.8323,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,2.7725,10.6426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1775,2.8027,10.5006,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1776,5.0686,5.9583,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1777,2.7870,5.5255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,2.7725,10.6003,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1779,2.8027,10.6558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1780,5.0686,6.0642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1781,2.7870,5.9145,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,2.7725,9.5404,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1783,2.8027,9.8075,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1784,5.0686,5.9677,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1785,2.7870,5.5833,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,2.7725,10.2940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1787,2.8027,10.3557,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1788,5.0686,5.7531,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1789,2.7870,5.5760,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,2.7725,10.2861,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1791,2.8027,10.3711,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1792,5.0686,6.5240,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1793,2.7870,6.0578,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,2.7725,10.1827,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1795,2.8027,10.3352,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1796,5.0686,6.0239,0.0239,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1797,2.7870,5.6481,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,2.7725,10.6031,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1799,2.8027,10.4140,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1800,5.0686,39.7765,0.0094,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1801,2.7870,25.4692,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1802,2.7725,29.4794,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1803,2.8027,25.2079,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1804,5.0686,5.7382,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1805,2.7870,5.6270,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1806,2.7725,10.4062,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1807,2.8027,10.3902,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1808,5.0686,5.6218,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1809,2.7870,5.5415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1810,2.7725,10.4281,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1811,2.8027,10.4147,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1812,5.0686,5.7323,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1813,2.7870,5.5892,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1814,2.7725,10.4815,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1815,2.8027,10.4644,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1816,5.0686,5.5373,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1817,2.7870,5.4707,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1818,2.7725,10.2679,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1819,2.8027,10.2464,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1820,5.0686,5.5946,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1821,2.7870,5.4962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1822,2.7725,10.2467,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1823,2.8027,10.2813,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1824,5.0686,5.5788,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1825,2.7870,5.4500,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1826,2.7725,10.3582,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1827,2.8027,10.2854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1828,5.0686,5.8099,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1829,2.7870,5.5499,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1830,2.7725,10.4484,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1831,2.8027,10.3353,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1832,5.0686,6.7791,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1833,2.7870,6.2306,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1834,2.7725,10.2553,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1835,2.8027,9.3117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1836,5.0686,5.8797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1837,2.7870,5.6285,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1838,2.7725,10.3200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1839,2.8027,10.2957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1840,5.0686,6.0551,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1841,2.7870,5.8255,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1842,2.7725,10.4925,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1843,2.8027,10.3864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1844,5.0686,5.7465,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1845,2.7870,5.5396,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1846,2.7725,10.4827,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1847,2.8027,10.4495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1848,5.0686,5.9033,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1849,2.7870,5.6282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1850,2.7725,10.4603,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1851,2.8027,10.3531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1852,5.0686,5.8521,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1853,2.7870,5.5927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1854,2.7725,10.5702,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1855,2.8027,10.4428,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1856,5.0686,5.8798,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1857,2.7870,5.6148,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1858,2.7725,10.4675,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1859,2.8027,10.3745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1860,5.0686,5.6186,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1861,2.7870,5.4420,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1862,2.7725,10.2052,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1863,2.8027,10.1485,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1864,5.0686,5.7730,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1865,2.7870,5.6995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1866,2.7725,10.3027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1867,2.8027,10.3785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1868,5.0686,5.8943,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1869,2.7870,5.7080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1870,2.7725,10.3077,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1871,2.8027,10.2948,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1872,5.0686,5.6300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1873,2.7870,5.5004,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1874,2.7725,10.2086,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1875,2.8027,10.1856,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1876,5.0686,5.6619,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1877,2.7870,5.5911,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1878,2.7725,10.3302,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1879,2.8027,10.3073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1880,5.0686,5.6120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1881,2.7870,5.5592,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1882,2.7725,10.3869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1883,2.8027,10.3594,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1884,5.0686,5.6205,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1885,2.7870,5.6075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1886,2.7725,10.1691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1887,2.8027,10.2771,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1888,5.0686,5.6531,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1889,2.7870,5.5590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1890,2.7725,10.2708,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1891,2.8027,10.2488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1892,5.0686,5.6063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1893,2.7870,5.5617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1894,2.7725,10.2861,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1895,2.8027,10.1915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1896,5.0686,5.7310,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1897,2.7870,5.6158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1898,2.7725,10.2296,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1899,2.8027,10.2301,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1900,5.0686,5.6585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1901,2.7870,5.6105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1902,2.7725,10.3237,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1903,2.8027,10.2955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1904,5.0686,5.6555,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1905,2.7870,5.6276,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1906,2.7725,10.3674,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1907,2.8027,10.2902,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1908,5.0686,5.7833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1909,2.7870,5.6748,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1910,2.7725,10.6906,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1911,2.8027,10.6982,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1912,5.0686,6.1596,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1913,2.7870,5.7133,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1914,2.7725,10.5082,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1915,2.8027,10.4061,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1916,5.0686,6.0686,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1917,2.7870,5.7048,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1918,2.7725,9.9901,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1919,2.8027,10.0790,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1920,5.0686,6.2704,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1921,2.7870,5.7480,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,2.7725,10.5348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1923,2.8027,10.3985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1924,5.0686,5.8950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1925,2.7870,5.5981,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,2.7725,10.4963,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1927,2.8027,10.3560,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1928,5.0686,5.9742,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1929,2.7870,5.6400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,2.7725,10.3920,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1931,2.8027,10.2581,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1932,5.0686,5.9031,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1933,2.7870,5.6917,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,2.7725,10.5499,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1935,2.8027,10.4676,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1936,5.0686,6.7530,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1937,2.7870,5.9087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,2.7725,10.1486,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1939,2.8027,9.6055,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1940,5.0686,6.6845,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1941,2.7870,5.9917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,2.7725,10.1147,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1943,2.8027,10.0189,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1944,5.0686,6.5013,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1945,2.7870,5.7300,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,2.7725,9.9729,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1947,2.8027,10.0060,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1948,5.0686,6.8026,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1949,2.7870,5.9648,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,2.7725,10.0527,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1951,2.8027,10.0958,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1952,5.0686,6.2067,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1953,2.7870,5.7942,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,2.7725,10.1075,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1955,2.8027,10.1568,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1956,5.0686,6.4865,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1957,2.7870,5.9596,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,2.7725,14.7850,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1959,2.8027,15.4137,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1960,5.0686,6.4109,0.0353,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,2.7870,5.7442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,2.7725,10.0447,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1963,2.8027,10.1256,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1964,5.0686,6.1190,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,2.7870,5.7370,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,2.7725,10.2465,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1967,2.8027,10.1070,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1968,5.0686,6.3653,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,2.7870,7.1767,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,2.7725,8.3291,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1971,2.8027,9.9020,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1972,5.0686,6.8219,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,2.7870,6.2592,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,2.7725,10.1608,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1975,2.8027,10.0303,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1976,5.0686,6.9012,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,2.7870,6.2019,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,2.7725,5.7142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1979,2.8027,10.2371,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1980,5.0686,6.0503,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,2.7870,5.7657,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,2.7725,11.0225,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1983,2.8027,10.9925,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1984,5.0686,6.2637,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,2.7870,5.9070,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,2.7725,10.2141,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1987,2.8027,10.0761,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1988,5.0686,6.4656,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,2.7870,5.9618,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,2.7725,10.2148,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1991,2.8027,10.1279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1992,5.0686,6.2509,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,2.7870,5.9095,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,2.7725,10.0756,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1995,2.8027,10.0996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1996,5.0686,6.1273,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,2.7870,6.3399,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,2.7725,9.6539,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1999,2.8027,9.8739,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2000,5.0686,6.2060,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,2.7870,5.8577,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,2.7725,10.0659,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2003,2.8027,9.9609,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.0686,6.2215,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,2.7870,5.8833,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,2.7725,9.9750,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2007,2.8027,10.0284,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2008,5.0686,6.1467,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,2.7870,5.9279,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,2.7725,10.1455,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2011,2.8027,10.0137,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2012,5.0686,8.7196,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,2.7870,7.8033,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,2.7725,9.9893,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2015,2.8027,9.9458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2016,5.0686,7.6991,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,2.7870,6.7912,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,2.7725,10.0700,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2019,2.8027,10.0510,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2020,5.0686,6.7743,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,2.7870,5.7850,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,2.7725,9.6542,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2023,2.8027,9.3430,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2024,5.0686,6.6083,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,2.7870,6.3028,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,2.7725,10.2290,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2027,2.8027,9.9549,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2028,5.0686,6.5469,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,2.7870,5.7415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,2.7725,10.4105,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,2.8027,7.4808,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2032,5.0686,6.3366,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,2.7870,5.9106,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,2.7725,9.9262,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2035,2.8027,9.7266,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2036,5.0686,6.6528,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,2.7870,5.8309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,2.7725,9.5100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2039,2.8027,10.0861,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2040,5.0686,6.8270,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,2.7870,6.0724,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,2.7725,9.9539,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2043,2.8027,9.9587,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2044,5.0686,6.3201,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,2.7870,5.8267,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,2.7725,10.5768,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2047,2.8027,10.4109,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2048,5.0686,5.9858,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,2.7870,5.6927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,2.7725,10.3543,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2051,2.8027,10.2930,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2052,5.0686,5.8701,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,2.7870,5.6449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,2.7725,10.5681,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2055,2.8027,10.3594,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2056,5.0686,6.4538,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,2.7870,5.9523,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,2.7725,10.4706,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2059,2.8027,10.0389,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2060,5.0686,7.6584,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,2.7870,6.5005,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,2.7725,8.7063,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,2.8027,8.6933,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2064,5.0686,6.4578,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,2.7870,6.1733,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,2.7725,10.4057,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2067,2.8027,10.1415,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2068,5.0686,6.5886,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,2.7870,5.7315,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,2.7725,10.2137,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2071,2.8027,10.1780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2072,5.0686,6.2240,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,2.7870,5.8223,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,2.7725,9.9440,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,2.8027,9.9709,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2076,5.0686,6.1815,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,2.7870,5.7573,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,2.7725,9.8546,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2079,2.8027,9.8760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2080,5.0686,6.0256,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,2.7870,5.6852,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,2.7725,10.3655,0.0428,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2083,2.8027,10.3950,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2084,5.0686,6.3299,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,2.7870,5.8562,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,2.7725,10.5627,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2087,2.8027,10.4334,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2088,5.0686,6.2755,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,2.7870,5.9013,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,2.7725,10.0163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2091,2.8027,10.2085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2092,5.0686,6.2110,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,2.7870,5.9062,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,2.7725,10.0789,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2095,2.8027,10.2023,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2096,5.0686,6.0840,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,2.7870,5.7736,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,2.7725,9.9460,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2099,2.8027,10.0623,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2100,5.0686,7.9181,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,2.7870,7.3100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,2.7725,9.9102,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2103,2.8027,9.9186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2104,5.0686,5.9887,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,2.7870,6.1261,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,2.7725,10.6669,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,2.8027,10.6676,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2108,5.0686,6.1799,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,2.7870,5.7793,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,2.7725,10.1028,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,2.8027,10.0889,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2112,5.0686,6.3078,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,2.7870,6.0282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,2.7725,10.4647,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2115,2.8027,10.3434,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2116,5.0686,6.3332,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,2.7870,6.3772,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,2.7725,10.1544,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,2.8027,10.0550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2120,5.0686,5.9982,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,2.7870,5.8235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,2.7725,9.5002,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,2.8027,10.1649,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2124,5.0686,5.9794,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,2.7870,5.5867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,2.7725,10.3469,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,2.8027,10.2852,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2128,5.0686,5.8311,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,2.7870,5.6086,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,2.7725,10.3872,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2131,2.8027,10.3428,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2132,5.0686,5.8572,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,2.7870,5.6917,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,2.7725,10.3624,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2135,2.8027,10.3625,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.0686,5.7770,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,2.7870,5.6097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,2.7725,10.4228,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2139,2.8027,10.4574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2140,5.0686,5.8441,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,2.7870,5.5757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,2.7725,10.3920,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2143,2.8027,10.3910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2144,5.0686,5.8675,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,2.7870,5.5915,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,2.7725,10.4289,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2147,2.8027,10.4109,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2148,5.0686,6.0480,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,2.7870,5.6237,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,2.7725,10.3658,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2151,2.8027,10.4291,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2152,5.0686,5.7323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,2.7870,5.6019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,2.7725,10.3998,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2155,2.8027,10.4234,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2156,5.0686,5.7228,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,2.7870,5.5901,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,2.7725,10.3946,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2159,2.8027,10.4575,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2160,5.0686,5.5734,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2161,2.7870,5.4720,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2162,2.7725,10.3123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2163,2.8027,10.2777,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2164,5.0686,5.7805,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2165,2.7870,5.5488,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2166,2.7725,10.5612,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2167,2.8027,10.5452,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2168,5.0686,5.9328,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2169,2.7870,5.6753,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2170,2.7725,10.3840,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2171,2.8027,10.5025,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2172,5.0686,5.6780,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2173,2.7870,5.5968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2174,2.7725,10.4051,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2175,2.8027,10.4104,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2176,5.0686,5.6727,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2177,2.7870,5.5878,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2178,2.7725,10.3820,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2179,2.8027,10.4689,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2180,5.0686,5.5720,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2181,2.7870,5.5408,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2182,2.7725,10.3638,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2183,2.8027,10.3643,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2184,5.0686,5.5714,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2185,2.7870,5.4923,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2186,2.7725,10.3067,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2187,2.8027,10.3014,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2188,5.0686,5.6551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2189,2.7870,5.5115,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2190,2.7725,10.2959,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2191,2.8027,10.2687,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2192,5.0686,5.5677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2193,2.7870,5.5470,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2194,2.7725,10.2034,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2195,2.8027,10.2567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2196,5.0686,5.6016,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2197,2.7870,5.5125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2198,2.7725,10.3067,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2199,2.8027,10.2707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2200,5.0686,5.7048,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2201,2.7870,5.5360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2202,2.7725,10.1811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2203,2.8027,10.2270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2204,5.0686,5.7687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2205,2.7870,5.5978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2206,2.7725,10.2505,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2207,2.8027,10.2233,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2208,5.0686,5.7092,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2209,2.7870,5.6004,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2210,2.7725,10.2794,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2211,2.8027,10.2227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2212,5.0686,5.7385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2213,2.7870,5.6778,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2214,2.7725,10.5705,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2215,2.8027,10.4308,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2216,5.0686,7.1783,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2217,2.7870,6.3870,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2218,2.7725,9.9595,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2219,2.8027,9.9261,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2220,5.0686,6.1667,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2221,2.7870,5.8585,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2222,2.7725,9.9531,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2223,2.8027,9.9266,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2224,5.0686,6.1890,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2225,2.7870,5.8020,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2226,2.7725,11.8646,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2227,2.8027,11.7869,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2228,5.0686,6.2786,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2229,2.7870,5.8173,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2230,2.7725,10.3809,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2231,2.8027,10.2849,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2232,5.0686,6.2337,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2233,2.7870,5.8762,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2234,2.7725,10.7180,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2235,2.8027,10.5287,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2236,5.0686,6.3690,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2237,2.7870,5.7185,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2238,2.7725,10.2567,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2239,2.8027,10.2792,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2240,5.0686,6.5329,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2241,2.7870,5.8205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2242,2.7725,9.9332,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2243,2.8027,10.0580,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2244,5.0686,6.6896,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2245,2.7870,6.0381,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2246,2.7725,9.9164,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2247,2.8027,9.9925,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2248,5.0686,6.2660,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2249,2.7870,5.8308,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2250,2.7725,9.9868,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,2.8027,9.9778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2252,5.0686,6.3381,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2253,2.7870,5.9606,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2254,2.7725,9.9522,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2255,2.8027,10.0376,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2256,5.0686,6.4072,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2257,2.7870,6.5713,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2258,2.7725,10.1687,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2259,2.8027,10.1065,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2260,5.0686,7.1223,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2261,2.7870,6.3167,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2262,2.7725,10.3365,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2263,2.8027,10.3065,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2264,5.0686,5.8708,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2265,2.7870,5.6608,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2266,2.7725,10.4960,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2267,2.8027,10.2562,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2268,5.0686,6.2480,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2269,2.7870,6.0181,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2270,2.7725,9.9445,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2271,2.8027,9.9109,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2272,5.0686,6.8790,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2273,2.7870,6.3863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2274,2.7725,10.4010,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2275,2.8027,10.2475,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2276,5.0686,6.3475,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2277,2.7870,5.8378,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2278,2.7725,10.0872,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2279,2.8027,10.0141,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2280,5.0686,6.1738,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2281,2.7870,5.8075,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,2.7725,9.9138,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2283,2.8027,9.9360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2284,5.0686,6.2138,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2285,2.7870,5.9392,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,2.7725,10.4166,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2287,2.8027,10.2131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2288,5.0686,5.9544,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2289,2.7870,5.5572,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,2.7725,10.7257,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2291,2.8027,10.6244,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2292,5.0686,8.0528,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2293,2.7870,7.3950,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,2.7725,10.1196,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2295,2.8027,9.9357,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2296,5.0686,7.2332,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2297,2.7870,6.5744,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,2.7725,10.1093,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2299,2.8027,10.1151,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2300,5.0686,6.2227,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2301,2.7870,5.7304,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,2.7725,10.5522,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2303,2.8027,10.3459,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.0686,6.1860,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2305,2.7870,5.7720,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,2.7725,10.0455,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2307,2.8027,10.0335,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2308,5.0686,6.3035,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2309,2.7870,5.9767,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,2.7725,10.0696,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2311,2.8027,10.0690,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2312,5.0686,6.3986,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2313,2.7870,5.8559,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,2.7725,9.9179,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2315,2.8027,9.9830,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2316,5.0686,6.4520,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2317,2.7870,5.7465,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,2.7725,9.8530,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2319,2.8027,9.3170,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2320,5.0686,6.5264,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,2.7870,6.8204,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,2.7725,9.9048,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2323,2.8027,9.7946,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2324,5.0686,7.5331,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,2.7870,6.7227,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,2.7725,11.3277,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2327,2.8027,11.1528,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2328,5.0686,6.3673,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,2.7870,5.8749,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,2.7725,9.2283,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2331,2.8027,9.9559,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2332,5.0686,6.8657,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,2.7870,5.9485,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,2.7725,9.6558,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2335,2.8027,9.7177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2336,5.0686,6.4536,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,2.7870,5.8732,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,2.7725,10.0141,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2339,2.8027,9.9656,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2340,5.0686,6.2450,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,2.7870,5.7893,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,2.7725,11.6663,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2343,2.8027,11.2888,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2344,5.0686,6.1263,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,2.7870,5.7037,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,2.7725,10.2101,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2347,2.8027,10.2687,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2348,5.0686,6.4903,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,2.7870,5.7099,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,2.7725,9.6203,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2351,2.8027,10.1446,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2352,5.0686,6.2508,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,2.7870,5.8010,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,2.7725,10.4054,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2355,2.8027,10.4015,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2356,5.0686,6.4500,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,2.7870,5.9456,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,2.7725,9.9206,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2359,2.8027,10.0876,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2360,5.0686,7.2717,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,2.7870,6.2797,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,2.7725,10.4932,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2363,2.8027,10.2124,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.0686,5.9232,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,2.7870,5.6565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,2.7725,10.2183,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2367,2.8027,10.1577,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2368,5.0686,6.1348,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,2.7870,5.7065,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,2.7725,10.4648,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2371,2.8027,10.3848,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2372,5.0686,5.6828,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,2.7870,5.5397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,2.7725,10.2897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2375,2.8027,10.3097,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2376,5.0686,5.6246,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,2.7870,5.6058,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,2.7725,10.1527,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,2.8027,10.2420,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2380,5.0686,5.5966,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,2.7870,5.6116,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,2.7725,12.2138,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,2.8027,12.3004,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2384,5.0686,6.1678,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,2.7870,5.8427,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,2.7725,8.6872,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,2.8027,9.0746,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2388,5.0686,7.7585,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,2.7870,6.8684,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,2.7725,9.9276,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,2.8027,9.9448,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2392,5.0686,5.9229,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,2.7870,5.6041,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,2.7725,10.1831,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2395,2.8027,10.1751,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2396,5.0686,5.7858,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,2.7870,5.5435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,2.7725,10.4875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2399,2.8027,10.4900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.txt b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.txt new file mode 100644 index 0000000..ee023e0 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.txt @@ -0,0 +1,71 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=600 +frames_submitted=600 +frames_skipped=0 +frames_encoded=600 +failed_frames=0 +steady_frames_encoded=580 +elapsed_seconds=9.996 +effective_logical_fps=60.025 +tile_frames_requested=2400 +tile_frames_encoded=2400 +failed_tile_frames=0 +avg_encode_latency_ms=12.436 +p95_encode_latency_ms=13.816 +max_encode_latency_ms=123.366 +avg_steady_encode_latency_ms=12.308 +p95_steady_encode_latency_ms=13.816 +max_steady_encode_latency_ms=123.366 +avg_tile_encode_latency_ms=8.440 +p95_tile_encode_latency_ms=10.809 +avg_max_tile_encode_latency_ms=10.694 +p95_max_tile_encode_latency_ms=11.685 +avg_steady_max_tile_encode_latency_ms=10.663 +p95_steady_max_tile_encode_latency_ms=11.685 +payload_bytes=4007720 +send_target=none +csv=benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s_logical.csv b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s_logical.csv new file mode 100644 index 0000000..2b4c596 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/30mbps_reset150_inflight1_10s_logical.csv @@ -0,0 +1,601 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,112.6279,35.0847,231707 +1,4,0,11.0988,10.6287,65901 +2,4,0,10.9865,10.4403,36886 +3,4,0,10.8647,10.4350,69404 +4,4,0,10.8032,10.3017,87864 +5,4,0,10.7322,10.2767,53700 +6,4,0,10.7310,10.2619,24415 +7,4,0,10.7350,10.2650,15407 +8,4,0,10.7051,10.2490,12151 +9,4,0,10.8218,10.3382,11449 +10,4,0,10.8607,10.3658,8599 +11,4,0,10.9048,10.4401,6107 +12,4,0,10.8915,10.3450,5132 +13,4,0,10.9743,10.4808,3880 +14,4,0,10.9995,10.3940,4001 +15,4,0,11.1010,10.0988,3860 +16,4,0,11.1800,10.2674,4045 +17,4,0,11.4961,10.2799,3955 +18,4,0,11.4932,10.5586,3721 +19,4,0,12.7741,10.3594,3748 +20,4,0,11.8312,10.2145,3386 +21,4,0,11.8329,10.1098,2761 +22,4,0,11.7040,10.0575,2750 +23,4,0,12.1594,10.0392,2836 +24,4,0,12.8480,9.6126,2977 +25,4,0,11.8735,10.5935,2960 +26,4,0,13.7560,12.0626,3010 +27,4,0,11.1139,10.1326,2978 +28,4,0,12.1852,10.7336,2889 +29,4,0,19.0237,17.5754,2914 +30,4,0,11.4254,10.6995,2847 +31,4,0,11.4226,10.6319,3111 +32,4,0,11.8446,10.5191,2714 +33,4,0,11.7155,10.0769,2843 +34,4,0,11.7022,10.4782,2633 +35,4,0,11.4603,10.3337,2659 +36,4,0,12.1010,10.8213,2696 +37,4,0,11.3905,10.2012,2728 +38,4,0,11.0964,10.3307,2772 +39,4,0,11.1650,10.5079,2740 +40,4,0,11.0542,10.3736,2809 +41,4,0,10.9248,10.2822,2679 +42,4,0,10.9232,10.2183,2865 +43,4,0,10.9344,10.3112,2612 +44,4,0,11.0687,10.3297,2626 +45,4,0,11.8630,10.3070,2693 +46,4,0,11.8659,10.5312,2708 +47,4,0,12.9146,10.1906,2765 +48,4,0,11.7784,9.9395,2645 +49,4,0,11.6940,10.0638,2733 +50,4,0,11.3906,10.4000,2667 +51,4,0,15.0507,13.9301,2647 +52,4,0,11.1599,9.9788,2659 +53,4,0,11.0217,10.4322,2757 +54,4,0,11.1882,10.5680,2656 +55,4,0,11.3262,10.3002,2594 +56,4,0,11.5245,10.3169,2603 +57,4,0,14.5690,13.0240,2605 +58,4,0,11.5636,10.2839,2610 +59,4,0,11.1946,10.3117,2641 +60,4,0,10.9275,10.2146,2637 +61,4,0,10.9014,10.3190,2691 +62,4,0,10.8324,10.3416,2620 +63,4,0,10.8905,10.3885,2614 +64,4,0,10.8401,10.3388,2666 +65,4,0,10.8876,10.3961,2613 +66,4,0,10.8359,10.3994,2624 +67,4,0,10.8012,10.3956,2612 +68,4,0,10.9193,10.3673,2687 +69,4,0,10.8300,10.4434,2622 +70,4,0,11.0097,10.6426,2623 +71,4,0,10.8495,10.3826,2647 +72,4,0,10.9547,10.4092,2645 +73,4,0,10.8997,10.4050,2643 +74,4,0,10.9439,10.5036,2635 +75,4,0,10.9343,10.4902,2718 +76,4,0,10.9815,10.4831,2602 +77,4,0,11.1337,10.4960,2605 +78,4,0,11.1185,10.4376,2612 +79,4,0,10.8642,10.3789,2607 +80,4,0,13.4202,12.7970,2630 +81,4,0,14.6750,13.3893,2617 +82,4,0,12.0175,10.0778,2661 +83,4,0,11.8907,10.4363,2606 +84,4,0,11.3247,10.3699,2609 +85,4,0,11.1982,10.4293,2612 +86,4,0,11.4468,10.4020,2632 +87,4,0,18.9380,16.6865,2606 +88,4,0,12.0269,10.2867,2610 +89,4,0,11.4166,10.2370,2652 +90,4,0,12.1828,10.7407,2594 +91,4,0,11.6114,10.4390,2609 +92,4,0,11.3523,10.4335,2598 +93,4,0,12.2767,11.0400,2613 +94,4,0,11.7326,10.0740,2618 +95,4,0,14.5106,13.4947,2604 +96,4,0,11.6509,10.6085,2677 +97,4,0,11.6408,10.4417,2620 +98,4,0,13.0556,11.3205,2594 +99,4,0,11.6006,10.4337,2594 +100,4,0,11.4454,10.2851,2598 +101,4,0,12.0649,10.7007,2609 +102,4,0,11.8224,10.4518,2616 +103,4,0,11.9617,9.6002,2630 +104,4,0,12.0870,9.0565,2606 +105,4,0,16.8527,15.4370,2604 +106,4,0,11.8263,10.4951,2609 +107,4,0,14.2113,10.4995,2610 +108,4,0,11.9612,10.5986,2652 +109,4,0,13.4482,11.5388,2600 +110,4,0,14.5673,12.8255,2640 +111,4,0,12.3717,10.5998,2594 +112,4,0,12.0178,10.2963,2594 +113,4,0,13.7369,11.6790,2600 +114,4,0,14.1615,12.3150,2599 +115,4,0,13.8635,11.9304,2607 +116,4,0,16.3880,12.0520,2603 +117,4,0,16.8994,14.5024,2623 +118,4,0,12.1339,10.5346,2600 +119,4,0,12.1598,10.2190,2610 +120,4,0,12.1605,10.3588,2594 +121,4,0,11.9810,10.4076,2594 +122,4,0,12.1660,10.1315,2603 +123,4,0,12.1603,10.2296,2602 +124,4,0,11.9979,10.1623,2619 +125,4,0,11.7397,10.1231,2600 +126,4,0,11.7242,10.0221,2600 +127,4,0,11.6169,10.1066,2594 +128,4,0,11.8250,10.4355,2594 +129,4,0,11.6788,10.0569,2599 +130,4,0,11.8850,9.6180,2607 +131,4,0,11.6452,10.0246,2605 +132,4,0,11.9090,10.1822,2596 +133,4,0,12.4814,10.8473,2594 +134,4,0,11.8783,9.9116,2594 +135,4,0,12.1702,9.7789,2594 +136,4,0,11.9625,10.3975,2594 +137,4,0,12.0654,9.9034,2594 +138,4,0,11.7440,10.1647,2604 +139,4,0,11.6866,9.9119,2594 +140,4,0,11.9467,10.3030,2594 +141,4,0,12.0632,10.2838,2599 +142,4,0,11.6700,9.9494,2594 +143,4,0,11.8674,10.0502,2594 +144,4,0,11.7152,10.0271,2594 +145,4,0,11.9391,9.9754,2604 +146,4,0,11.6620,9.9803,2594 +147,4,0,11.9428,10.4255,2594 +148,4,0,11.6899,10.0314,2594 +149,4,0,11.5567,10.0214,2601 +150,4,0,114.5392,32.8619,231707 +151,4,0,11.2093,10.6720,65901 +152,4,0,10.9967,10.5648,36886 +153,4,0,11.0715,10.5855,69404 +154,4,0,10.9147,10.4523,87864 +155,4,0,10.9041,10.4291,53700 +156,4,0,10.9686,10.4105,24415 +157,4,0,11.1515,10.6584,15407 +158,4,0,10.9650,10.4367,12151 +159,4,0,10.8205,10.3824,11449 +160,4,0,10.7685,10.2585,8599 +161,4,0,10.8896,10.2933,6107 +162,4,0,11.0169,10.4313,5132 +163,4,0,11.0164,10.4502,3880 +164,4,0,11.2344,10.3555,4001 +165,4,0,11.2859,10.6695,3860 +166,4,0,11.1335,10.5727,4045 +167,4,0,11.2333,10.5836,3955 +168,4,0,11.1380,10.5196,3721 +169,4,0,11.0029,10.5102,3748 +170,4,0,11.1357,10.3194,3386 +171,4,0,10.8789,10.2875,2761 +172,4,0,10.9637,10.4247,2750 +173,4,0,10.9936,10.4112,2836 +174,4,0,11.1976,10.7011,2977 +175,4,0,13.4435,10.5708,2960 +176,4,0,11.6790,10.6645,3010 +177,4,0,12.0024,10.8764,2978 +178,4,0,11.7459,10.6625,2889 +179,4,0,13.8143,12.5518,2914 +180,4,0,11.9069,10.5288,2847 +181,4,0,12.2325,11.0274,3111 +182,4,0,11.8600,10.7259,2714 +183,4,0,12.2354,10.6092,2843 +184,4,0,11.9967,10.5240,2633 +185,4,0,20.9818,18.8286,2659 +186,4,0,14.5755,10.6243,2696 +187,4,0,13.9855,12.4023,2728 +188,4,0,11.8727,11.0092,2772 +189,4,0,13.2187,10.4275,2740 +190,4,0,13.8537,10.3452,2809 +191,4,0,12.4517,10.3404,2679 +192,4,0,12.5687,10.9275,2865 +193,4,0,11.7819,10.8188,2612 +194,4,0,11.6690,10.7611,2626 +195,4,0,11.2692,10.7245,2693 +196,4,0,11.4088,10.7085,2708 +197,4,0,11.4285,10.5900,2765 +198,4,0,11.8487,11.1445,2645 +199,4,0,12.5403,10.6768,2733 +200,4,0,12.5263,10.5454,2667 +201,4,0,14.9054,10.5100,2647 +202,4,0,11.8764,10.9863,2659 +203,4,0,12.6437,10.9263,2757 +204,4,0,16.0524,13.5926,2656 +205,4,0,12.0577,10.7215,2594 +206,4,0,14.0129,12.2437,2603 +207,4,0,11.4780,10.5225,2605 +208,4,0,11.4882,10.7385,2610 +209,4,0,11.5413,10.5826,2641 +210,4,0,12.5200,10.7918,2637 +211,4,0,12.2110,10.5770,2691 +212,4,0,11.7990,10.6420,2620 +213,4,0,13.7315,10.4227,2614 +214,4,0,12.5305,8.7499,2666 +215,4,0,12.2600,10.4892,2613 +216,4,0,13.4640,11.8056,2624 +217,4,0,12.8565,11.2845,2612 +218,4,0,11.9888,10.8110,2687 +219,4,0,12.0930,10.9392,2622 +220,4,0,12.0069,10.3520,2623 +221,4,0,11.4210,10.5107,2647 +222,4,0,11.3226,10.7460,2645 +223,4,0,11.6473,11.0745,2643 +224,4,0,11.1911,10.5301,2635 +225,4,0,13.1200,12.3294,2718 +226,4,0,11.8648,11.0359,2602 +227,4,0,11.0665,10.0842,2605 +228,4,0,11.0657,10.4473,2612 +229,4,0,11.1049,10.5369,2607 +230,4,0,11.0450,10.5112,2630 +231,4,0,11.0495,10.4022,2617 +232,4,0,11.1241,10.4959,2661 +233,4,0,11.0457,10.4797,2606 +234,4,0,11.0533,10.3595,2609 +235,4,0,11.0122,10.4586,2612 +236,4,0,11.0799,10.4995,2632 +237,4,0,11.0965,10.5018,2606 +238,4,0,10.9608,10.4354,2610 +239,4,0,11.2628,9.4214,2652 +240,4,0,11.6311,10.3579,2594 +241,4,0,11.0707,10.5678,2609 +242,4,0,11.0168,10.4671,2598 +243,4,0,10.8971,10.3828,2613 +244,4,0,10.9737,10.4295,2618 +245,4,0,10.9603,10.4109,2604 +246,4,0,10.9679,10.4586,2677 +247,4,0,10.9967,10.4170,2620 +248,4,0,11.0303,10.5565,2594 +249,4,0,11.0237,10.5156,2594 +250,4,0,10.7909,10.3507,2598 +251,4,0,10.7842,10.2706,2609 +252,4,0,10.7102,10.3232,2616 +253,4,0,10.7920,10.3046,2630 +254,4,0,10.9524,10.3705,2606 +255,4,0,10.8924,10.3366,2604 +256,4,0,11.0061,10.4980,2609 +257,4,0,11.0182,10.3483,2610 +258,4,0,10.8391,10.3014,2652 +259,4,0,10.9351,10.3663,2600 +260,4,0,10.8545,10.2643,2640 +261,4,0,11.0663,10.4009,2594 +262,4,0,11.0399,10.2885,2594 +263,4,0,10.9693,10.3482,2600 +264,4,0,11.1093,10.2800,2599 +265,4,0,11.5296,10.3165,2607 +266,4,0,11.7164,10.4467,2603 +267,4,0,15.0601,10.3122,2623 +268,4,0,11.1309,10.4364,2600 +269,4,0,11.6569,10.2697,2610 +270,4,0,10.7703,10.2566,2594 +271,4,0,10.9392,10.3818,2594 +272,4,0,11.7758,10.1836,2603 +273,4,0,11.5771,10.4012,2602 +274,4,0,11.4752,10.1554,2619 +275,4,0,11.6799,10.4831,2600 +276,4,0,11.3832,10.1916,2600 +277,4,0,11.4825,10.2312,2594 +278,4,0,11.2008,10.3475,2594 +279,4,0,10.9961,10.1957,2599 +280,4,0,12.5915,11.0807,2607 +281,4,0,11.6669,10.4967,2605 +282,4,0,11.4868,10.4024,2596 +283,4,0,11.7947,9.9581,2594 +284,4,0,12.4755,10.7534,2594 +285,4,0,11.6500,9.9132,2594 +286,4,0,11.8665,9.9288,2594 +287,4,0,11.3544,10.6360,2594 +288,4,0,12.0128,10.3300,2604 +289,4,0,11.9091,9.9086,2594 +290,4,0,11.8041,10.0228,2594 +291,4,0,11.5544,10.3941,2599 +292,4,0,11.9945,10.1327,2594 +293,4,0,11.8376,9.9402,2594 +294,4,0,12.0166,10.1743,2594 +295,4,0,11.6106,10.4908,2604 +296,4,0,12.5824,10.2267,2594 +297,4,0,11.9663,10.0311,2594 +298,4,0,11.7952,9.9857,2594 +299,4,0,11.6691,10.0166,2601 +300,4,0,123.3660,43.6112,231707 +301,4,0,11.0777,10.6286,65901 +302,4,0,10.9490,10.3850,36886 +303,4,0,10.8616,10.3240,69404 +304,4,0,11.0233,10.5262,87864 +305,4,0,11.0795,10.5099,53700 +306,4,0,10.9595,10.4150,24415 +307,4,0,11.0602,10.5722,15407 +308,4,0,11.0565,10.5745,12151 +309,4,0,11.0463,10.6696,11449 +310,4,0,10.9098,10.4481,8599 +311,4,0,10.9049,10.4129,6107 +312,4,0,10.9447,10.4158,5132 +313,4,0,10.8940,10.3552,3880 +314,4,0,10.8513,10.3701,4001 +315,4,0,10.8784,10.3100,3860 +316,4,0,11.3063,10.5573,4045 +317,4,0,11.3131,10.6282,3955 +318,4,0,11.1023,10.4764,3721 +319,4,0,10.9830,10.3824,3748 +320,4,0,11.1138,10.5234,3386 +321,4,0,11.1059,10.5296,2761 +322,4,0,11.3626,10.6888,2750 +323,4,0,11.4517,10.6777,2836 +324,4,0,11.1666,10.4537,2977 +325,4,0,11.1116,10.4621,2960 +326,4,0,11.1541,10.4816,3010 +327,4,0,11.0078,10.3462,2978 +328,4,0,11.0851,10.4893,2889 +329,4,0,11.6157,10.1737,2914 +330,4,0,16.1194,15.4556,2847 +331,4,0,11.2231,10.6091,3111 +332,4,0,11.4251,10.5872,2714 +333,4,0,11.6259,10.7543,2843 +334,4,0,11.2870,10.5806,2633 +335,4,0,11.4049,10.7267,2659 +336,4,0,11.8366,10.6671,2696 +337,4,0,12.0817,10.6003,2728 +338,4,0,11.9598,9.9786,2772 +339,4,0,11.8475,10.3370,2740 +340,4,0,13.0817,10.1307,2809 +341,4,0,12.0433,10.5733,2679 +342,4,0,11.6940,10.0233,2865 +343,4,0,11.5297,10.5500,2612 +344,4,0,11.8913,9.9955,2626 +345,4,0,13.3869,11.6235,2693 +346,4,0,11.7371,10.2411,2708 +347,4,0,11.6242,10.5818,2765 +348,4,0,11.3713,10.4791,2645 +349,4,0,11.7887,10.8280,2733 +350,4,0,11.7397,11.0153,2667 +351,4,0,12.0720,10.1111,2647 +352,4,0,12.2826,10.1703,2659 +353,4,0,12.1751,9.4512,2757 +354,4,0,11.7393,10.1259,2656 +355,4,0,12.2450,10.2400,2594 +356,4,0,11.3895,10.5738,2603 +357,4,0,10.9815,10.2613,2605 +358,4,0,11.2724,10.6970,2610 +359,4,0,11.8951,9.9192,2641 +360,4,0,11.9820,9.9805,2637 +361,4,0,11.9748,10.1200,2691 +362,4,0,11.8908,10.1175,2620 +363,4,0,12.5380,10.9007,2614 +364,4,0,13.0426,10.0790,2666 +365,4,0,11.3514,10.3662,2613 +366,4,0,11.3518,10.4500,2624 +367,4,0,11.0843,10.3963,2612 +368,4,0,11.4437,10.6517,2687 +369,4,0,11.6507,10.0650,2622 +370,4,0,12.1095,10.0850,2623 +371,4,0,11.9204,10.0474,2647 +372,4,0,11.8860,9.9940,2645 +373,4,0,12.0663,10.2629,2643 +374,4,0,12.0894,10.0692,2635 +375,4,0,11.9296,9.8480,2718 +376,4,0,11.8292,10.3042,2602 +377,4,0,12.0328,10.3911,2605 +378,4,0,13.7666,10.2990,2612 +379,4,0,11.3101,10.5516,2607 +380,4,0,11.2093,10.5859,2630 +381,4,0,11.4026,10.8436,2617 +382,4,0,11.7894,9.9355,2661 +383,4,0,12.0188,9.9610,2606 +384,4,0,11.9847,10.0621,2609 +385,4,0,11.4035,10.6921,2612 +386,4,0,11.7803,10.6508,2632 +387,4,0,12.2447,10.3122,2606 +388,4,0,12.0666,10.2430,2610 +389,4,0,12.2712,10.4927,2652 +390,4,0,12.2912,10.0773,2594 +391,4,0,11.7087,10.1681,2609 +392,4,0,11.6417,10.6853,2598 +393,4,0,11.0975,10.5475,2613 +394,4,0,11.1438,10.5800,2618 +395,4,0,11.5686,10.9513,2604 +396,4,0,12.0164,10.2274,2677 +397,4,0,12.1864,9.8849,2620 +398,4,0,11.2345,10.4243,2594 +399,4,0,11.6581,10.9247,2594 +400,4,0,11.8110,9.7713,2598 +401,4,0,11.5738,10.6765,2609 +402,4,0,11.3040,10.6393,2616 +403,4,0,11.2542,10.6421,2630 +404,4,0,11.2498,10.6402,2606 +405,4,0,11.3028,10.7252,2604 +406,4,0,11.2737,10.6567,2609 +407,4,0,11.0965,10.5615,2610 +408,4,0,13.4705,11.4920,2652 +409,4,0,11.9706,10.6085,2600 +410,4,0,11.3187,10.5067,2640 +411,4,0,11.5157,10.7376,2594 +412,4,0,11.6315,11.2004,2594 +413,4,0,12.0556,10.7139,2600 +414,4,0,12.1333,10.6197,2599 +415,4,0,12.8555,10.9405,2607 +416,4,0,12.0246,10.1822,2603 +417,4,0,11.7154,10.4781,2623 +418,4,0,14.5241,10.2101,2600 +419,4,0,11.4160,10.5751,2610 +420,4,0,11.4821,10.5610,2594 +421,4,0,11.3525,10.6807,2594 +422,4,0,11.1602,10.5056,2603 +423,4,0,11.1168,10.4272,2602 +424,4,0,10.8653,10.4145,2619 +425,4,0,11.7867,10.2554,2600 +426,4,0,10.7734,10.2244,2600 +427,4,0,10.8757,10.3321,2594 +428,4,0,12.3343,11.2761,2594 +429,4,0,11.8238,10.0609,2599 +430,4,0,14.5732,13.1993,2607 +431,4,0,11.2922,10.2963,2605 +432,4,0,11.1915,10.5393,2596 +433,4,0,11.1881,10.2697,2594 +434,4,0,11.9549,9.7626,2594 +435,4,0,11.1865,10.2511,2594 +436,4,0,11.5438,10.5731,2594 +437,4,0,11.1702,10.5847,2594 +438,4,0,11.6061,10.6538,2604 +439,4,0,12.1069,9.9451,2594 +440,4,0,12.1249,10.7844,2594 +441,4,0,11.3500,10.4000,2599 +442,4,0,11.1775,10.1004,2594 +443,4,0,11.5470,10.6426,2594 +444,4,0,11.3819,10.6558,2594 +445,4,0,11.6698,9.8075,2604 +446,4,0,11.1858,10.3557,2594 +447,4,0,11.0031,10.3711,2594 +448,4,0,11.6167,10.3352,2594 +449,4,0,11.4652,10.6031,2601 +450,4,0,120.2388,39.7765,231707 +451,4,0,10.8947,10.4062,65901 +452,4,0,10.8354,10.4281,36886 +453,4,0,10.8594,10.4815,69404 +454,4,0,10.7016,10.2679,87864 +455,4,0,10.7525,10.2813,53700 +456,4,0,10.7303,10.3582,24415 +457,4,0,11.0683,10.4484,15407 +458,4,0,11.3690,10.2553,12151 +459,4,0,11.1052,10.3200,11449 +460,4,0,10.9301,10.4925,8599 +461,4,0,10.9235,10.4827,6107 +462,4,0,11.0334,10.4603,5132 +463,4,0,11.0751,10.5702,3880 +464,4,0,11.0639,10.4675,4001 +465,4,0,10.7362,10.2052,3860 +466,4,0,11.0749,10.3785,4045 +467,4,0,11.0862,10.3077,3955 +468,4,0,10.8130,10.2086,3721 +469,4,0,10.9286,10.3302,3748 +470,4,0,10.9242,10.3869,3386 +471,4,0,10.9163,10.2771,2761 +472,4,0,10.8502,10.2708,2750 +473,4,0,10.7909,10.2861,2836 +474,4,0,10.9605,10.2301,2977 +475,4,0,10.9130,10.3237,2960 +476,4,0,10.9880,10.3674,3010 +477,4,0,11.5261,10.6982,2978 +478,4,0,11.7618,10.5082,2889 +479,4,0,11.4493,10.0790,2914 +480,4,0,11.4105,10.5348,2847 +481,4,0,11.1137,10.4963,3111 +482,4,0,11.1910,10.3920,2714 +483,4,0,11.4393,10.5499,2843 +484,4,0,11.8084,10.1486,2633 +485,4,0,11.7053,10.1147,2659 +486,4,0,11.7643,10.0060,2696 +487,4,0,11.6710,10.0958,2728 +488,4,0,11.4968,10.1568,2772 +489,4,0,16.8286,15.4137,2740 +490,4,0,11.8102,10.1256,2809 +491,4,0,11.6242,10.2465,2679 +492,4,0,13.3691,9.9020,2865 +493,4,0,11.6895,10.1608,2612 +494,4,0,17.7979,10.2371,2626 +495,4,0,11.9518,11.0225,2693 +496,4,0,11.8139,10.2141,2708 +497,4,0,11.8482,10.2148,2765 +498,4,0,11.6926,10.0996,2645 +499,4,0,11.8639,9.8739,2733 +500,4,0,11.6633,10.0659,2667 +501,4,0,11.6812,10.0284,2647 +502,4,0,11.6251,10.1455,2659 +503,4,0,11.7395,9.9893,2757 +504,4,0,12.0865,10.0700,2656 +505,4,0,12.3078,9.6542,2594 +506,4,0,11.9203,10.2290,2603 +507,4,0,11.8620,10.4105,2605 +508,4,0,11.8721,9.9262,2610 +509,4,0,12.3747,10.0861,2641 +510,4,0,11.8394,9.9587,2637 +511,4,0,11.4752,10.5768,2691 +512,4,0,11.1762,10.3543,2620 +513,4,0,11.3525,10.5681,2614 +514,4,0,11.9249,10.4706,2666 +515,4,0,12.2114,8.7063,2613 +516,4,0,11.9926,10.4057,2624 +517,4,0,11.6617,10.2137,2612 +518,4,0,11.6107,9.9709,2687 +519,4,0,11.4616,9.8760,2622 +520,4,0,11.5539,10.3950,2623 +521,4,0,11.4518,10.5627,2647 +522,4,0,11.9234,10.2085,2645 +523,4,0,11.8469,10.2023,2643 +524,4,0,11.7005,10.0623,2635 +525,4,0,11.5010,9.9186,2718 +526,4,0,11.6584,10.6676,2602 +527,4,0,11.4186,10.1028,2605 +528,4,0,11.3310,10.4647,2612 +529,4,0,11.5541,10.1544,2607 +530,4,0,11.9908,10.1649,2630 +531,4,0,11.1669,10.3469,2617 +532,4,0,11.0233,10.3872,2661 +533,4,0,11.0748,10.3625,2606 +534,4,0,10.9816,10.4574,2609 +535,4,0,11.0006,10.3920,2612 +536,4,0,10.9799,10.4289,2632 +537,4,0,11.2367,10.4291,2606 +538,4,0,10.9570,10.4234,2610 +539,4,0,10.9654,10.4575,2652 +540,4,0,10.7055,10.3123,2594 +541,4,0,11.1330,10.5612,2609 +542,4,0,11.2325,10.5025,2598 +543,4,0,10.8532,10.4104,2613 +544,4,0,10.9509,10.4689,2618 +545,4,0,10.8202,10.3643,2604 +546,4,0,10.7431,10.3067,2677 +547,4,0,10.7920,10.2959,2620 +548,4,0,10.8205,10.2567,2594 +549,4,0,10.8123,10.3067,2594 +550,4,0,10.7929,10.2270,2598 +551,4,0,10.8965,10.2505,2609 +552,4,0,10.9186,10.2794,2616 +553,4,0,11.3144,10.5705,2630 +554,4,0,11.7670,9.9595,2606 +555,4,0,11.6393,9.9531,2604 +556,4,0,13.2417,11.8646,2609 +557,4,0,11.6102,10.3809,2610 +558,4,0,12.2825,10.7180,2652 +559,4,0,11.7484,10.2792,2600 +560,4,0,12.0343,10.0580,2640 +561,4,0,11.7660,9.9925,2594 +562,4,0,11.7276,9.9868,2594 +563,4,0,11.8513,10.0376,2600 +564,4,0,11.7662,10.1687,2599 +565,4,0,11.9823,10.3365,2607 +566,4,0,11.2193,10.4960,2603 +567,4,0,11.8581,9.9445,2623 +568,4,0,11.3949,10.4010,2600 +569,4,0,11.6608,10.0872,2610 +570,4,0,11.6983,9.9360,2594 +571,4,0,11.3011,10.4166,2594 +572,4,0,11.3818,10.7257,2603 +573,4,0,11.5392,10.1196,2602 +574,4,0,11.6772,10.1151,2619 +575,4,0,11.6017,10.5522,2600 +576,4,0,11.6195,10.0455,2600 +577,4,0,11.7453,10.0696,2594 +578,4,0,11.9497,9.9830,2594 +579,4,0,11.8986,9.8530,2599 +580,4,0,11.9452,9.9048,2607 +581,4,0,12.7224,11.3277,2605 +582,4,0,12.4913,9.9559,2596 +583,4,0,11.8236,9.7177,2594 +584,4,0,11.9448,10.0141,2594 +585,4,0,13.0804,11.6663,2594 +586,4,0,11.6320,10.2687,2594 +587,4,0,12.2505,10.1446,2594 +588,4,0,11.8434,10.4054,2604 +589,4,0,11.9215,10.0876,2594 +590,4,0,12.1475,10.4932,2594 +591,4,0,11.2299,10.2183,2599 +592,4,0,11.2395,10.4648,2594 +593,4,0,10.8708,10.3097,2594 +594,4,0,10.9724,10.2420,2594 +595,4,0,12.7401,12.3004,2604 +596,4,0,11.7698,9.0746,2594 +597,4,0,11.6337,9.9448,2594 +598,4,0,11.1066,10.1831,2594 +599,4,0,11.0598,10.4900,2601 diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.csv b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.csv new file mode 100644 index 0000000..24373cb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.csv @@ -0,0 +1,2401 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1307,28.9645,0.0245,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1,2.8064,25.2120,0.0144,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +2,2.7329,25.2362,0.0184,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +3,2.8173,25.0605,0.0044,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +4,5.1307,5.8047,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +5,2.8064,5.6264,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +6,2.7329,10.4637,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +7,2.8173,10.4486,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +8,5.1307,5.6990,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +9,2.8064,5.6253,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +10,2.7329,10.4384,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +11,2.8173,10.4542,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +12,5.1307,5.7375,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +13,2.8064,5.5862,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +14,2.7329,10.4358,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +15,2.8173,10.4215,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +16,5.1307,5.6006,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +17,2.8064,5.5230,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +18,2.7329,10.3575,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +19,2.8173,10.3631,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +20,5.1307,5.5795,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +21,2.8064,5.5144,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +22,2.7329,10.2860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +23,2.8173,10.2821,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +24,5.1307,5.6298,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +25,2.8064,5.4688,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +26,2.7329,10.3282,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +27,2.8173,10.3201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +28,5.1307,5.5591,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +29,2.8064,5.4691,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +30,2.7329,10.3415,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +31,2.8173,10.2933,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +32,5.1307,5.6183,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +33,2.8064,5.5224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +34,2.7329,10.3420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +35,2.8173,10.3257,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +36,5.1307,5.7046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +37,2.8064,5.5625,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +38,2.7329,10.4022,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +39,2.8173,10.3783,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +40,5.1307,5.6976,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +41,2.8064,5.5284,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +42,2.7329,10.3063,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +43,2.8173,10.2809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +44,5.1307,5.6367,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +45,2.8064,5.5270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +46,2.7329,10.3131,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +47,2.8173,10.2548,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +48,5.1307,5.6710,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +49,2.8064,5.5537,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +50,2.7329,10.3205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +51,2.8173,10.2420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +52,5.1307,5.7183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +53,2.8064,5.5476,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +54,2.7329,10.3085,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +55,2.8173,10.2626,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +56,5.1307,5.6337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +57,2.8064,5.5657,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +58,2.7329,10.1536,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +59,2.8173,10.1584,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +60,5.1307,5.6760,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +61,2.8064,5.5664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +62,2.7329,10.2471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +63,2.8173,10.2148,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +64,5.1307,5.6927,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +65,2.8064,5.6002,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +66,2.7329,10.1555,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +67,2.8173,10.1121,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +68,5.1307,6.4227,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +69,2.8064,6.1076,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +70,2.7329,11.5395,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +71,2.8173,11.3447,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +72,5.1307,6.4283,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +73,2.8064,5.7361,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +74,2.7329,10.4920,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +75,2.8173,10.2921,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +76,5.1307,6.3409,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +77,2.8064,5.7668,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +78,2.7329,11.1227,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +79,2.8173,10.9306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +80,5.1307,6.3100,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +81,2.8064,5.9334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +82,2.7329,8.7301,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +83,2.8173,9.9142,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +84,5.1307,6.5388,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +85,2.8064,6.0596,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +86,2.7329,10.6035,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +87,2.8173,10.3791,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +88,5.1307,6.3245,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +89,2.8064,5.7158,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +90,2.7329,10.1008,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +91,2.8173,9.6465,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +92,5.1307,6.2143,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +93,2.8064,5.8954,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +94,2.7329,8.9976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +95,2.8173,10.1050,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +96,5.1307,6.1553,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +97,2.8064,5.6917,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +98,2.7329,10.3728,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +99,2.8173,10.1648,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +100,5.1307,6.0072,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +101,2.8064,5.6330,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +102,2.7329,10.3442,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +103,2.8173,10.2282,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +104,5.1307,6.0906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +105,2.8064,5.7046,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +106,2.7329,10.5364,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +107,2.8173,10.4574,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +108,5.1307,5.8163,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +109,2.8064,5.6083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +110,2.7329,10.4068,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +111,2.8173,10.3622,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +112,5.1307,5.7760,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +113,2.8064,5.6056,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +114,2.7329,10.5978,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +115,2.8173,10.3874,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +116,5.1307,6.7665,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +117,2.8064,5.7983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +118,2.7329,9.8686,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +119,2.8173,10.1322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +120,5.1307,6.0733,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +121,2.8064,5.6256,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +122,2.7329,10.4932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +123,2.8173,10.3766,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +124,5.1307,5.9569,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +125,2.8064,5.7366,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +126,2.7329,10.5745,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +127,2.8173,10.4795,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +128,5.1307,6.2066,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +129,2.8064,5.7014,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +130,2.7329,10.6526,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +131,2.8173,10.5925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +132,5.1307,6.0048,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +133,2.8064,5.5980,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +134,2.7329,10.4272,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +135,2.8173,10.3420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +136,5.1307,5.7213,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +137,2.8064,5.5249,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +138,2.7329,10.4869,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +139,2.8173,10.4308,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +140,5.1307,5.7737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +141,2.8064,5.6409,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +142,2.7329,10.3534,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +143,2.8173,10.3650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +144,5.1307,5.7045,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +145,2.8064,5.6070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +146,2.7329,10.4113,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +147,2.8173,10.4120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +148,5.1307,6.1875,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +149,2.8064,5.7980,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +150,2.7329,10.3088,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +151,2.8173,10.1631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +152,5.1307,6.5486,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +153,2.8064,5.9920,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +154,2.7329,13.1583,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +155,2.8173,12.6622,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +156,5.1307,6.2283,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +157,2.8064,5.7810,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +158,2.7329,10.3654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +159,2.8173,10.2260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +160,5.1307,6.0739,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +161,2.8064,5.7540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +162,2.7329,10.5469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +163,2.8173,10.5078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +164,5.1307,5.9692,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +165,2.8064,5.6635,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +166,2.7329,10.4701,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +167,2.8173,10.4157,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +168,5.1307,6.4027,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +169,2.8064,5.9595,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +170,2.7329,10.3687,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +171,2.8173,10.2324,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +172,5.1307,6.1626,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +173,2.8064,5.7246,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +174,2.7329,9.7899,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +175,2.8173,9.7390,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +176,5.1307,6.2663,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +177,2.8064,5.9220,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +178,2.7329,9.2437,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +179,2.8173,9.7535,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +180,5.1307,6.2903,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +181,2.8064,5.7455,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +182,2.7329,9.8168,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +183,2.8173,9.8507,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +184,5.1307,6.9067,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +185,2.8064,5.8232,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +186,2.7329,9.9318,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +187,2.8173,9.9835,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +188,5.1307,6.5773,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +189,2.8064,5.9410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +190,2.7329,9.0323,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +191,2.8173,9.7451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +192,5.1307,6.3243,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +193,2.8064,5.6634,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +194,2.7329,10.6788,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +195,2.8173,10.5016,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +196,5.1307,6.4888,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +197,2.8064,5.7444,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +198,2.7329,9.2680,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +199,2.8173,9.7807,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +200,5.1307,6.3023,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +201,2.8064,6.0185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +202,2.7329,9.3262,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +203,2.8173,9.7120,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +204,5.1307,6.3060,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +205,2.8064,6.0592,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +206,2.7329,7.9467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +207,2.8173,10.0970,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +208,5.1307,6.2889,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +209,2.8064,5.7129,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +210,2.7329,10.6269,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +211,2.8173,10.0501,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +212,5.1307,6.5831,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +213,2.8064,6.9622,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +214,2.7329,8.5585,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +215,2.8173,10.2044,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +216,5.1307,6.3588,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +217,2.8064,5.7479,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +218,2.7329,9.9195,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +219,2.8173,9.8812,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +220,5.1307,6.4919,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +221,2.8064,5.7778,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +222,2.7329,10.3347,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.8173,9.9069,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +224,5.1307,6.5218,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +225,2.8064,5.9675,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +226,2.7329,9.0158,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +227,2.8173,9.8158,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +228,5.1307,6.3955,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +229,2.8064,5.7605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +230,2.7329,10.0426,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +231,2.8173,9.8318,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +232,5.1307,6.4205,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +233,2.8064,5.7666,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +234,2.7329,9.9040,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +235,2.8173,9.7101,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +236,5.1307,6.5518,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +237,2.8064,5.9159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +238,2.7329,9.4535,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +239,2.8173,9.6389,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +240,5.1307,6.4704,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +241,2.8064,5.8963,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +242,2.7329,9.7145,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +243,2.8173,9.7806,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +244,5.1307,6.2402,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +245,2.8064,6.0967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +246,2.7329,8.3395,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +247,2.8173,10.2555,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +248,5.1307,6.2752,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +249,2.8064,5.7443,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +250,2.7329,9.8149,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +251,2.8173,9.8504,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +252,5.1307,6.1963,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +253,2.8064,5.8805,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +254,2.7329,9.0617,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +255,2.8173,9.5550,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +256,5.1307,6.4468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +257,2.8064,5.9531,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +258,2.7329,9.9452,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +259,2.8173,10.0639,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +260,5.1307,6.3681,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +261,2.8064,6.6334,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +262,2.7329,7.6580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +263,2.8173,9.8033,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +264,5.1307,6.0638,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +265,2.8064,5.6617,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +266,2.7329,10.6404,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +267,2.8173,10.6048,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +268,5.1307,6.2222,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +269,2.8064,5.8530,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +270,2.7329,15.4908,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +271,2.8173,15.5487,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +272,5.1307,7.5195,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +273,2.8064,5.8972,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +274,2.7329,10.4777,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +275,2.8173,10.3441,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +276,5.1307,7.8165,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +277,2.8064,6.7636,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +278,2.7329,10.4084,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +279,2.8173,9.5490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +280,5.1307,7.1212,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +281,2.8064,5.9741,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +282,2.7329,11.0410,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +283,2.8173,10.8948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +284,5.1307,7.1548,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +285,2.8064,6.5514,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +286,2.7329,6.7516,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +287,2.8173,10.1475,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +288,5.1307,6.3778,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +289,2.8064,5.7249,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +290,2.7329,10.4758,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +291,2.8173,10.3825,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +292,5.1307,6.5029,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +293,2.8064,5.7348,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +294,2.7329,10.3718,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +295,2.8173,10.2569,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +296,5.1307,6.7688,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +297,2.8064,5.7035,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +298,2.7329,10.4084,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +299,2.8173,10.0691,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +300,5.1307,6.9915,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +301,2.8064,5.8027,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +302,2.7329,10.6343,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +303,2.8173,10.2947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +304,5.1307,6.5992,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +305,2.8064,5.6612,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +306,2.7329,10.4588,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +307,2.8173,10.2751,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +308,5.1307,6.1500,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +309,2.8064,5.7249,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +310,2.7329,10.6460,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +311,2.8173,10.6060,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +312,5.1307,6.0981,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +313,2.8064,5.7166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +314,2.7329,10.5813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +315,2.8173,10.5088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +316,5.1307,5.9367,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +317,2.8064,5.6470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +318,2.7329,10.5060,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +319,2.8173,10.4308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +320,5.1307,5.9567,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +321,2.8064,5.7208,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +322,2.7329,10.3938,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +323,2.8173,10.3810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +324,5.1307,12.2321,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +325,2.8064,11.5525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +326,2.7329,11.3647,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +327,2.8173,11.3773,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +328,5.1307,6.2366,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,2.8064,9.5622,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +330,2.7329,6.1067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +331,2.8173,10.6494,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +332,5.1307,6.0491,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +333,2.8064,5.6161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +334,2.7329,10.5454,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +335,2.8173,10.5463,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +336,5.1307,5.8860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +337,2.8064,5.6115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +338,2.7329,10.4467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +339,2.8173,10.3968,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +340,5.1307,5.8272,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +341,2.8064,5.6616,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +342,2.7329,10.4589,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +343,2.8173,10.4593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +344,5.1307,6.0788,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +345,2.8064,5.7923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +346,2.7329,10.3722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +347,2.8173,10.3919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +348,5.1307,5.7257,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +349,2.8064,5.6026,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +350,2.7329,10.1843,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +351,2.8173,10.1355,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +352,5.1307,6.2187,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +353,2.8064,5.8270,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +354,2.7329,9.4778,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +355,2.8173,9.9729,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +356,5.1307,5.7549,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +357,2.8064,5.4420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +358,2.7329,10.2788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +359,2.8173,10.2586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +360,5.1307,5.9947,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +361,2.8064,5.6985,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +362,2.7329,10.5418,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +363,2.8173,10.4226,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +364,5.1307,6.3401,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +365,2.8064,5.8893,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +366,2.7329,9.8932,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +367,2.8173,9.6898,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +368,5.1307,6.7660,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +369,2.8064,6.1659,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +370,2.7329,9.1882,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +371,2.8173,10.0054,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +372,5.1307,6.0920,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +373,2.8064,5.7360,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +374,2.7329,10.0203,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +375,2.8173,9.7253,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +376,5.1307,6.0946,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +377,2.8064,6.8874,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +378,2.7329,8.8249,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +379,2.8173,10.3513,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +380,5.1307,6.7246,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +381,2.8064,5.7961,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +382,2.7329,10.0638,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +383,2.8173,10.0608,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +384,5.1307,6.2595,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +385,2.8064,5.7288,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +386,2.7329,10.5155,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +387,2.8173,10.3631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +388,5.1307,6.0111,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +389,2.8064,5.6246,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +390,2.7329,10.3664,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +391,2.8173,10.3004,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +392,5.1307,5.6802,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +393,2.8064,5.6052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +394,2.7329,10.2241,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.8173,10.1478,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +396,5.1307,6.2542,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +397,2.8064,5.8315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +398,2.7329,8.9999,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +399,2.8173,8.2102,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +400,5.1307,6.4714,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +401,2.8064,5.6790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +402,2.7329,10.0041,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +403,2.8173,10.0394,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +404,5.1307,6.2804,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +405,2.8064,5.7440,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +406,2.7329,9.2459,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +407,2.8173,8.2784,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +408,5.1307,6.4630,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +409,2.8064,5.8181,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +410,2.7329,10.0140,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +411,2.8173,10.0890,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +412,5.1307,6.8760,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +413,2.8064,5.7412,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +414,2.7329,8.2108,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +415,2.8173,8.0877,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +416,5.1307,6.2309,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +417,2.8064,5.7175,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +418,2.7329,10.3460,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +419,2.8173,10.1643,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +420,5.1307,6.0114,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +421,2.8064,5.6121,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +422,2.7329,10.3637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +423,2.8173,10.2617,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +424,5.1307,6.6556,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +425,2.8064,5.8326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +426,2.7329,10.0963,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +427,2.8173,10.0667,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +428,5.1307,6.5593,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +429,2.8064,5.7711,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +430,2.7329,10.4209,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +431,2.8173,10.2776,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +432,5.1307,6.3521,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +433,2.8064,6.0558,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +434,2.7329,10.3638,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +435,2.8173,10.0290,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +436,5.1307,5.8768,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +437,2.8064,5.5330,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +438,2.7329,10.3739,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +439,2.8173,10.2730,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +440,5.1307,5.9661,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +441,2.8064,5.6732,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +442,2.7329,10.4642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +443,2.8173,10.4130,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +444,5.1307,5.7174,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +445,2.8064,5.5905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +446,2.7329,10.3255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +447,2.8173,10.3129,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +448,5.1307,5.7882,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +449,2.8064,5.5441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +450,2.7329,10.3849,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +451,2.8173,10.2930,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +452,5.1307,5.8929,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +453,2.8064,5.5935,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +454,2.7329,10.2931,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +455,2.8173,10.2586,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +456,5.1307,5.9037,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +457,2.8064,5.6528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +458,2.7329,10.3443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +459,2.8173,10.2829,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +460,5.1307,5.6402,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +461,2.8064,5.5567,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +462,2.7329,10.3142,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +463,2.8173,10.3005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +464,5.1307,5.8233,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +465,2.8064,5.5083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +466,2.7329,10.3742,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +467,2.8173,10.2638,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +468,5.1307,5.7517,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +469,2.8064,5.5258,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +470,2.7329,10.3707,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +471,2.8173,10.3609,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +472,5.1307,5.8400,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +473,2.8064,5.5553,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +474,2.7329,10.2440,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +475,2.8173,10.1598,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +476,5.1307,5.7211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +477,2.8064,5.5183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +478,2.7329,10.3104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +479,2.8173,10.2633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +480,5.1307,5.7763,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +481,2.8064,5.4504,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +482,2.7329,10.2040,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +483,2.8173,10.1344,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +484,5.1307,5.9068,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +485,2.8064,5.6281,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +486,2.7329,10.4343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +487,2.8173,10.3903,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +488,5.1307,5.8107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +489,2.8064,5.5640,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +490,2.7329,10.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +491,2.8173,10.4177,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +492,5.1307,5.6847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +493,2.8064,5.5947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +494,2.7329,10.3392,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +495,2.8173,10.3018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +496,5.1307,5.7536,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +497,2.8064,5.6311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +498,2.7329,10.4019,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +499,2.8173,10.3048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +500,5.1307,5.8325,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +501,2.8064,5.5360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +502,2.7329,10.3505,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +503,2.8173,10.3240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +504,5.1307,5.8311,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +505,2.8064,5.6142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +506,2.7329,10.2986,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +507,2.8173,10.2869,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +508,5.1307,5.7115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +509,2.8064,5.5422,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +510,2.7329,10.3582,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +511,2.8173,10.3211,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +512,5.1307,5.7077,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +513,2.8064,5.5745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +514,2.7329,10.3873,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +515,2.8173,10.3468,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +516,5.1307,5.7912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +517,2.8064,5.6013,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +518,2.7329,10.4182,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +519,2.8173,10.4363,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +520,5.1307,5.6915,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +521,2.8064,5.5628,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +522,2.7329,10.3686,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +523,2.8173,10.3592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +524,5.1307,5.8578,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +525,2.8064,5.5981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +526,2.7329,10.4955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +527,2.8173,10.5162,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +528,5.1307,5.9908,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +529,2.8064,5.6691,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +530,2.7329,10.3335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +531,2.8173,10.2810,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +532,5.1307,5.9235,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +533,2.8064,5.6539,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +534,2.7329,10.4853,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +535,2.8173,10.4233,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +536,5.1307,5.8553,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +537,2.8064,5.6217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +538,2.7329,10.2380,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +539,2.8173,10.2254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +540,5.1307,5.7783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +541,2.8064,5.6072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +542,2.7329,10.3315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +543,2.8173,10.3138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +544,5.1307,5.7140,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +545,2.8064,5.4557,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +546,2.7329,10.2789,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +547,2.8173,10.1840,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +548,5.1307,5.8807,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +549,2.8064,5.6074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +550,2.7329,10.5071,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +551,2.8173,10.4913,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +552,5.1307,5.7092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +553,2.8064,5.5931,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +554,2.7329,10.4975,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +555,2.8173,10.5128,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +556,5.1307,5.9047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +557,2.8064,5.6780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +558,2.7329,10.5261,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +559,2.8173,10.4009,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +560,5.1307,5.7251,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +561,2.8064,5.5334,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +562,2.7329,10.3856,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +563,2.8173,10.3547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +564,5.1307,5.7799,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +565,2.8064,5.5594,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +566,2.7329,10.3438,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +567,2.8173,10.3242,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +568,5.1307,5.7575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,2.8064,5.5904,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +570,2.7329,10.3608,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +571,2.8173,10.4044,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +572,5.1307,5.6339,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +573,2.8064,5.5231,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +574,2.7329,10.3615,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +575,2.8173,10.3707,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +576,5.1307,5.7260,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +577,2.8064,5.5513,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +578,2.7329,10.3587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +579,2.8173,10.3588,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +580,5.1307,5.5864,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +581,2.8064,5.5155,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +582,2.7329,10.3538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +583,2.8173,10.3552,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +584,5.1307,5.6454,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +585,2.8064,5.4748,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +586,2.7329,10.2849,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +587,2.8173,10.2766,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +588,5.1307,5.6635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +589,2.8064,5.4850,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +590,2.7329,10.4257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +591,2.8173,10.4222,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +592,5.1307,5.6469,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +593,2.8064,5.4572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +594,2.7329,10.2185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +595,2.8173,10.1874,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +596,5.1307,5.9277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +597,2.8064,5.6099,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +598,2.7329,10.7699,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +599,2.8173,10.5983,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +600,5.1307,40.7045,0.0415,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +601,2.8064,32.1450,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +602,2.7329,23.6883,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +603,2.8173,26.0420,0.0084,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +604,5.1307,5.9011,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +605,2.8064,5.6582,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +606,2.7329,10.5836,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +607,2.8173,10.5559,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +608,5.1307,5.8355,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +609,2.8064,5.5885,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +610,2.7329,10.5555,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +611,2.8173,10.4634,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +612,5.1307,5.8044,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +613,2.8064,5.6370,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +614,2.7329,10.4078,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +615,2.8173,10.4050,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +616,5.1307,5.6662,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +617,2.8064,5.6134,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +618,2.7329,10.4367,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +619,2.8173,10.4456,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +620,5.1307,5.8164,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +621,2.8064,5.6348,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +622,2.7329,10.4962,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +623,2.8173,10.5058,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +624,5.1307,5.6506,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +625,2.8064,5.6108,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +626,2.7329,10.4310,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +627,2.8173,10.4471,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +628,5.1307,5.6164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +629,2.8064,5.5334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +630,2.7329,10.4977,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +631,2.8173,10.4939,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +632,5.1307,5.6701,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +633,2.8064,5.5420,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +634,2.7329,10.3062,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +635,2.8173,10.2637,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +636,5.1307,5.6832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +637,2.8064,5.5456,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +638,2.7329,10.2777,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +639,2.8173,10.2426,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +640,5.1307,5.6001,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +641,2.8064,5.5232,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +642,2.7329,10.2863,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +643,2.8173,10.2451,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +644,5.1307,5.6631,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +645,2.8064,5.5527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +646,2.7329,10.3445,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +647,2.8173,10.2988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +648,5.1307,5.7227,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +649,2.8064,5.5852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +650,2.7329,10.3876,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +651,2.8173,10.2858,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +652,5.1307,5.7732,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +653,2.8064,5.5994,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +654,2.7329,10.5385,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +655,2.8173,10.5482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +656,5.1307,5.7427,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +657,2.8064,5.6493,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +658,2.7329,10.3029,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +659,2.8173,10.3097,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +660,5.1307,5.6445,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +661,2.8064,5.5187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +662,2.7329,10.3885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +663,2.8173,10.3839,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +664,5.1307,5.7137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +665,2.8064,5.5621,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +666,2.7329,10.9552,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +667,2.8173,10.8577,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +668,5.1307,6.1310,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +669,2.8064,5.7352,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +670,2.7329,10.2427,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +671,2.8173,10.1940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +672,5.1307,6.5459,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +673,2.8064,5.7918,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +674,2.7329,9.8491,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +675,2.8173,9.8410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +676,5.1307,11.1239,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +677,2.8064,11.5113,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +678,2.7329,11.3701,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +679,2.8173,11.2526,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +680,5.1307,6.3950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +681,2.8064,6.6579,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +682,2.7329,6.4805,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +683,2.8173,10.6813,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +684,5.1307,6.2794,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +685,2.8064,5.7503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +686,2.7329,10.5964,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +687,2.8173,10.3658,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +688,5.1307,6.3092,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +689,2.8064,5.7120,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +690,2.7329,10.2116,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.8173,10.3637,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +692,5.1307,6.4370,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +693,2.8064,5.7922,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +694,2.7329,9.7720,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +695,2.8173,9.7860,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +696,5.1307,6.3540,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +697,2.8064,5.7809,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +698,2.7329,10.2963,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +699,2.8173,9.9157,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +700,5.1307,6.3331,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +701,2.8064,5.8280,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +702,2.7329,10.1277,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +703,2.8173,10.1547,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +704,5.1307,6.4885,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +705,2.8064,5.9812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +706,2.7329,9.1786,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +707,2.8173,10.1465,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +708,5.1307,6.2530,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +709,2.8064,5.8303,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +710,2.7329,10.0122,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +711,2.8173,9.9942,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +712,5.1307,6.4181,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +713,2.8064,5.8069,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +714,2.7329,10.3409,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +715,2.8173,9.9540,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +716,5.1307,6.1967,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +717,2.8064,5.8458,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +718,2.7329,10.0276,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +719,2.8173,9.9960,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +720,5.1307,6.2781,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +721,2.8064,6.3979,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +722,2.7329,9.5388,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +723,2.8173,9.5522,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +724,5.1307,6.4160,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +725,2.8064,5.8202,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +726,2.7329,9.9271,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +727,2.8173,9.3095,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +728,5.1307,6.2135,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +729,2.8064,6.1627,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +730,2.7329,9.1433,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +731,2.8173,8.6768,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +732,5.1307,6.3777,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +733,2.8064,6.2533,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +734,2.7329,9.9543,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +735,2.8173,10.1911,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +736,5.1307,6.6382,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +737,2.8064,5.9720,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +738,2.7329,9.9600,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +739,2.8173,9.9569,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +740,5.1307,6.7457,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +741,2.8064,5.8095,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +742,2.7329,9.5742,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +743,2.8173,10.3037,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +744,5.1307,6.5980,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +745,2.8064,5.9433,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +746,2.7329,10.4888,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +747,2.8173,10.2512,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +748,5.1307,6.3365,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +749,2.8064,5.8373,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +750,2.7329,10.6771,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +751,2.8173,10.4626,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +752,5.1307,6.2788,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +753,2.8064,5.7396,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +754,2.7329,10.5124,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +755,2.8173,10.4176,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +756,5.1307,5.8680,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +757,2.8064,5.6113,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +758,2.7329,10.3492,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +759,2.8173,10.3150,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +760,5.1307,5.8921,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +761,2.8064,5.6045,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +762,2.7329,10.4430,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +763,2.8173,10.4658,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +764,5.1307,5.7091,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +765,2.8064,5.4790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +766,2.7329,10.2709,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +767,2.8173,10.2202,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +768,5.1307,5.7298,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +769,2.8064,5.5103,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +770,2.7329,10.3638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +771,2.8173,10.3542,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +772,5.1307,5.8490,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +773,2.8064,5.6182,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +774,2.7329,10.3925,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +775,2.8173,10.3551,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +776,5.1307,5.8423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +777,2.8064,5.5573,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +778,2.7329,10.3767,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +779,2.8173,10.3209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +780,5.1307,5.7454,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +781,2.8064,5.4869,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +782,2.7329,10.3267,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +783,2.8173,10.2701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +784,5.1307,5.7411,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +785,2.8064,5.5166,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +786,2.7329,10.3432,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +787,2.8173,10.2579,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +788,5.1307,5.8073,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +789,2.8064,5.5331,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +790,2.7329,10.4121,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +791,2.8173,10.3679,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +792,5.1307,5.8397,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +793,2.8064,5.5412,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +794,2.7329,10.2942,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +795,2.8173,10.2507,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +796,5.1307,5.7570,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +797,2.8064,5.5377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +798,2.7329,10.3744,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +799,2.8173,10.3147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +800,5.1307,5.7767,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +801,2.8064,5.5204,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +802,2.7329,10.3585,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +803,2.8173,10.2725,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +804,5.1307,5.8061,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +805,2.8064,5.5326,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +806,2.7329,10.2656,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +807,2.8173,10.1800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +808,5.1307,5.8353,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +809,2.8064,5.5712,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +810,2.7329,10.4085,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +811,2.8173,10.3372,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +812,5.1307,5.8836,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +813,2.8064,5.5634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +814,2.7329,10.3111,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +815,2.8173,10.2317,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +816,5.1307,5.9601,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +817,2.8064,5.5417,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +818,2.7329,10.3371,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +819,2.8173,10.2608,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +820,5.1307,5.9556,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +821,2.8064,5.5550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +822,2.7329,10.3083,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +823,2.8173,10.2492,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +824,5.1307,5.7295,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +825,2.8064,5.5380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +826,2.7329,10.3292,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +827,2.8173,10.2696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +828,5.1307,5.9452,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +829,2.8064,5.6069,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +830,2.7329,10.3885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +831,2.8173,10.3108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +832,5.1307,5.8700,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +833,2.8064,5.5471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +834,2.7329,10.4044,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +835,2.8173,10.3231,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +836,5.1307,5.7613,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +837,2.8064,5.5170,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +838,2.7329,10.3354,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +839,2.8173,10.3023,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +840,5.1307,5.8215,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +841,2.8064,5.5752,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +842,2.7329,10.3763,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +843,2.8173,10.3199,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +844,5.1307,5.7622,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +845,2.8064,5.5093,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +846,2.7329,10.4082,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +847,2.8173,10.3495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +848,5.1307,5.8001,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +849,2.8064,5.5345,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +850,2.7329,10.4049,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +851,2.8173,10.3339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +852,5.1307,5.7435,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +853,2.8064,5.5374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +854,2.7329,10.3085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +855,2.8173,10.2355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +856,5.1307,5.9523,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +857,2.8064,5.5545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +858,2.7329,10.3505,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +859,2.8173,10.3153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +860,5.1307,5.8613,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +861,2.8064,5.5461,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +862,2.7329,10.3358,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +863,2.8173,10.2996,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +864,5.1307,5.8177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +865,2.8064,5.5324,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +866,2.7329,10.2978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +867,2.8173,10.2774,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +868,5.1307,5.8493,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +869,2.8064,5.5704,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +870,2.7329,10.3796,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +871,2.8173,10.3665,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +872,5.1307,5.9321,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +873,2.8064,5.6902,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +874,2.7329,10.5931,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +875,2.8173,10.6002,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +876,5.1307,5.9665,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +877,2.8064,5.6275,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +878,2.7329,10.5291,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +879,2.8173,10.4535,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +880,5.1307,6.0427,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +881,2.8064,5.6674,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +882,2.7329,10.4831,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +883,2.8173,10.3873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +884,5.1307,5.9175,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +885,2.8064,5.5775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +886,2.7329,10.5230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +887,2.8173,10.5204,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +888,5.1307,5.9458,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +889,2.8064,5.6539,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +890,2.7329,10.3878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +891,2.8173,10.4181,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +892,5.1307,5.6760,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +893,2.8064,5.6441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +894,2.7329,10.4329,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +895,2.8173,10.3915,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +896,5.1307,5.6601,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +897,2.8064,5.5473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +898,2.7329,10.3905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +899,2.8173,10.3964,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +900,5.1307,5.6474,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +901,2.8064,5.5368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +902,2.7329,10.4245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +903,2.8173,10.3553,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +904,5.1307,5.6417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +905,2.8064,5.5121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +906,2.7329,10.3001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +907,2.8173,10.2812,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +908,5.1307,5.6660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +909,2.8064,5.5267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +910,2.7329,10.3385,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +911,2.8173,10.2824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +912,5.1307,5.6795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +913,2.8064,5.5976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +914,2.7329,10.2496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +915,2.8173,10.2189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +916,5.1307,5.7349,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +917,2.8064,5.6005,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +918,2.7329,10.2724,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +919,2.8173,10.2200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +920,5.1307,5.7429,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +921,2.8064,5.5689,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +922,2.7329,10.2615,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +923,2.8173,10.2038,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +924,5.1307,5.9919,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +925,2.8064,5.6803,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +926,2.7329,10.3175,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +927,2.8173,10.1803,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +928,5.1307,6.3857,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +929,2.8064,5.9222,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +930,2.7329,9.2897,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +931,2.8173,9.8313,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +932,5.1307,6.1503,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +933,2.8064,5.7553,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +934,2.7329,9.8614,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +935,2.8173,9.7025,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +936,5.1307,6.4725,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +937,2.8064,5.7972,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +938,2.7329,10.4169,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +939,2.8173,10.0388,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +940,5.1307,6.4059,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +941,2.8064,5.6469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +942,2.7329,10.3580,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.8173,9.9659,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +944,5.1307,6.8504,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +945,2.8064,5.7973,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +946,2.7329,9.4720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +947,2.8173,9.4440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +948,5.1307,6.1387,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +949,2.8064,5.7239,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +950,2.7329,10.6233,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +951,2.8173,10.6071,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +952,5.1307,5.8533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +953,2.8064,5.5118,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +954,2.7329,9.5261,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +955,2.8173,9.5427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +956,5.1307,6.0943,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +957,2.8064,5.6182,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +958,2.7329,10.2760,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +959,2.8173,10.1282,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +960,5.1307,5.9589,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +961,2.8064,5.7600,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +962,2.7329,8.6709,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +963,2.8173,7.7812,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +964,5.1307,6.1491,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +965,2.8064,5.6972,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +966,2.7329,8.9557,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +967,2.8173,8.7308,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +968,5.1307,6.1186,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +969,2.8064,5.7019,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +970,2.7329,10.3969,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +971,2.8173,10.4070,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +972,5.1307,8.3493,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +973,2.8064,6.0356,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +974,2.7329,8.3198,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +975,2.8173,7.8170,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +976,5.1307,8.1406,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +977,2.8064,5.8136,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +978,2.7329,10.2799,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +979,2.8173,10.3775,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +980,5.1307,6.0828,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +981,2.8064,5.7781,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +982,2.7329,10.9052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +983,2.8173,10.7725,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +984,5.1307,5.9984,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +985,2.8064,5.6115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +986,2.7329,10.3859,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +987,2.8173,10.2211,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +988,5.1307,6.4043,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +989,2.8064,5.7867,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +990,2.7329,7.5652,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +991,2.8173,7.6321,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +992,5.1307,6.2895,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +993,2.8064,5.7407,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +994,2.7329,10.0392,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +995,2.8173,9.9162,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +996,5.1307,6.2609,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +997,2.8064,6.2146,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +998,2.7329,7.6769,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +999,2.8173,9.9534,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1000,5.1307,6.2784,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1001,2.8064,5.8204,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1002,2.7329,9.8195,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1003,2.8173,7.3667,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1004,5.1307,6.2744,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1005,2.8064,6.1175,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1006,2.7329,8.3680,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1007,2.8173,10.0324,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1008,5.1307,6.1365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1009,2.8064,6.4106,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1010,2.7329,9.7906,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1011,2.8173,8.1031,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1012,5.1307,6.0287,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1013,2.8064,5.6095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1014,2.7329,10.2424,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1015,2.8173,7.6180,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1016,5.1307,6.1283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1017,2.8064,5.9943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1018,2.7329,8.1530,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1019,2.8173,10.2196,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1020,5.1307,6.2601,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1021,2.8064,5.7555,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1022,2.7329,10.7880,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1023,2.8173,10.8780,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1024,5.1307,6.2212,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1025,2.8064,6.8465,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1026,2.7329,6.9665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1027,2.8173,9.9212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1028,5.1307,5.6807,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1029,2.8064,5.5577,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1030,2.7329,10.4057,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1031,2.8173,10.2440,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1032,5.1307,6.1852,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1033,2.8064,6.0308,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1034,2.7329,7.4455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1035,2.8173,10.0370,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1036,5.1307,5.6999,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1037,2.8064,5.5548,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1038,2.7329,10.3083,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1039,2.8173,10.1872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1040,5.1307,6.2516,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1041,2.8064,5.7729,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1042,2.7329,9.9472,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1043,2.8173,9.9841,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1044,5.1307,6.4495,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1045,2.8064,5.8726,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1046,2.7329,10.0876,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1047,2.8173,9.9567,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1048,5.1307,6.3877,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,2.8064,6.6705,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1050,2.7329,10.1983,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1051,2.8173,9.9582,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1052,5.1307,6.2330,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1053,2.8064,5.7823,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1054,2.7329,9.4553,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1055,2.8173,9.2056,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1056,5.1307,6.3336,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1057,2.8064,5.7254,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1058,2.7329,10.2971,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1059,2.8173,10.0917,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1060,5.1307,6.4311,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1061,2.8064,5.8947,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1062,2.7329,9.6896,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1063,2.8173,9.5817,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.1307,6.2065,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1065,2.8064,5.8655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1066,2.7329,8.9643,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1067,2.8173,9.1118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1068,5.1307,6.0638,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1069,2.8064,5.7759,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1070,2.7329,10.6341,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1071,2.8173,10.2238,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1072,5.1307,6.7932,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1073,2.8064,5.8082,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1074,2.7329,9.5222,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1075,2.8173,9.5986,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1076,5.1307,6.1416,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1077,2.8064,5.5877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1078,2.7329,10.0864,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1079,2.8173,9.7305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1080,5.1307,6.1333,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1081,2.8064,5.6841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1082,2.7329,10.3562,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1083,2.8173,10.2726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1084,5.1307,5.7649,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1085,2.8064,5.5045,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1086,2.7329,10.1917,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1087,2.8173,10.1451,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1088,5.1307,5.7446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1089,2.8064,5.5792,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1090,2.7329,10.3679,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1091,2.8173,10.3709,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1092,5.1307,5.6198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1093,2.8064,5.4722,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1094,2.7329,10.3584,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1095,2.8173,10.2691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1096,5.1307,5.6590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1097,2.8064,5.5356,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1098,2.7329,10.3106,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1099,2.8173,10.3080,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1100,5.1307,5.7701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1101,2.8064,5.6008,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1102,2.7329,10.3248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1103,2.8173,10.3069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1104,5.1307,5.7216,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1105,2.8064,5.5456,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1106,2.7329,10.2580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1107,2.8173,10.2277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1108,5.1307,5.7362,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1109,2.8064,5.5525,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1110,2.7329,10.2758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1111,2.8173,10.2535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1112,5.1307,5.9100,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1113,2.8064,5.6713,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1114,2.7329,10.5642,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.8173,10.4608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1116,5.1307,6.0120,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1117,2.8064,5.6849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1118,2.7329,10.4277,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1119,2.8173,10.3772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1120,5.1307,5.8083,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1121,2.8064,5.5941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1122,2.7329,10.4912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1123,2.8173,10.4807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1124,5.1307,5.7885,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1125,2.8064,5.5903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1126,2.7329,10.2873,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1127,2.8173,10.2464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1128,5.1307,5.9929,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1129,2.8064,5.7880,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1130,2.7329,10.5032,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1131,2.8173,10.4652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1132,5.1307,6.4272,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1133,2.8064,5.7720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1134,2.7329,10.5954,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1135,2.8173,10.2508,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1136,5.1307,6.1117,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1137,2.8064,5.7258,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1138,2.7329,10.5149,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1139,2.8173,10.3185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1140,5.1307,6.5445,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1141,2.8064,5.9440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1142,2.7329,9.7512,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1143,2.8173,9.8449,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1144,5.1307,6.2202,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1145,2.8064,5.7816,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1146,2.7329,9.9932,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1147,2.8173,9.9743,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1148,5.1307,7.3719,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1149,2.8064,5.7619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1150,2.7329,10.0103,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1151,2.8173,10.2159,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1152,5.1307,6.1751,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1153,2.8064,5.7578,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1154,2.7329,9.5132,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1155,2.8173,9.0895,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1156,5.1307,6.4616,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1157,2.8064,5.8209,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1158,2.7329,9.7532,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1159,2.8173,9.9428,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1160,5.1307,6.6652,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1161,2.8064,5.9467,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1162,2.7329,9.4462,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1163,2.8173,9.7453,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1164,5.1307,6.2676,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1165,2.8064,5.9056,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1166,2.7329,9.7013,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1167,2.8173,9.6444,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1168,5.1307,6.4154,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1169,2.8064,5.9895,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1170,2.7329,9.7954,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1171,2.8173,9.8179,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1172,5.1307,6.2546,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1173,2.8064,5.9912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1174,2.7329,9.1065,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1175,2.8173,9.2332,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1176,5.1307,6.2131,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1177,2.8064,5.7377,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1178,2.7329,9.8407,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1179,2.8173,9.7360,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1180,5.1307,6.5617,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1181,2.8064,5.8423,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1182,2.7329,9.6257,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1183,2.8173,9.8289,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1184,5.1307,6.2220,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1185,2.8064,5.6921,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1186,2.7329,10.0882,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1187,2.8173,9.6167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1188,5.1307,6.3453,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1189,2.8064,5.8114,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1190,2.7329,9.6262,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1191,2.8173,9.5485,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1192,5.1307,6.3066,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1193,2.8064,6.2521,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1194,2.7329,9.2475,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1195,2.8173,9.7532,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1196,5.1307,6.4120,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1197,2.8064,5.7698,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1198,2.7329,9.8517,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1199,2.8173,9.6143,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1200,5.1307,41.1191,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1201,2.8064,31.6098,0.0075,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +1202,2.7329,25.7209,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +1203,2.8173,26.3080,0.0044,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +1204,5.1307,5.8565,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +1205,2.8064,5.6859,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +1206,2.7329,10.5245,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +1207,2.8173,10.5310,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +1208,5.1307,5.6510,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +1209,2.8064,5.5542,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +1210,2.7329,10.5704,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +1211,2.8173,10.5940,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +1212,5.1307,5.7975,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +1213,2.8064,5.6364,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +1214,2.7329,10.5306,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +1215,2.8173,10.5260,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +1216,5.1307,5.6707,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +1217,2.8064,5.5355,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +1218,2.7329,10.4531,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +1219,2.8173,10.4665,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +1220,5.1307,5.6578,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +1221,2.8064,5.5600,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +1222,2.7329,10.4792,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +1223,2.8173,10.4749,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +1224,5.1307,5.6269,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +1225,2.8064,5.5322,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +1226,2.7329,10.4484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +1227,2.8173,10.3709,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +1228,5.1307,5.6621,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +1229,2.8064,5.5429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +1230,2.7329,10.4591,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +1231,2.8173,10.4274,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +1232,5.1307,5.6042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +1233,2.8064,5.5345,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +1234,2.7329,10.3762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +1235,2.8173,10.3412,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +1236,5.1307,5.7570,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +1237,2.8064,5.5576,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +1238,2.7329,10.4895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +1239,2.8173,10.4522,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +1240,5.1307,5.8582,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +1241,2.8064,5.6482,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +1242,2.7329,10.5653,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +1243,2.8173,10.5283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +1244,5.1307,5.8637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +1245,2.8064,5.6360,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +1246,2.7329,10.5448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +1247,2.8173,10.4933,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +1248,5.1307,5.7543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +1249,2.8064,5.6381,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +1250,2.7329,10.3780,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +1251,2.8173,10.3265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +1252,5.1307,5.8782,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +1253,2.8064,5.6643,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +1254,2.7329,10.4475,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +1255,2.8173,10.3703,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +1256,5.1307,5.8213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +1257,2.8064,5.6100,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1258,2.7329,10.4348,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1259,2.8173,10.3767,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +1260,5.1307,5.9480,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +1261,2.8064,5.6930,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1262,2.7329,10.6013,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1263,2.8173,10.5295,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +1264,5.1307,6.3651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1265,2.8064,5.8259,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1266,2.7329,6.9809,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1267,2.8173,10.4055,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1268,5.1307,6.0992,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1269,2.8064,5.6936,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1270,2.7329,10.5459,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1271,2.8173,10.3775,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1272,5.1307,6.3115,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1273,2.8064,5.7693,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1274,2.7329,10.6321,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1275,2.8173,10.5364,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1276,5.1307,6.1036,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1277,2.8064,5.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1278,2.7329,10.5904,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1279,2.8173,10.4372,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1280,5.1307,6.0361,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1281,2.8064,5.6462,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1282,2.7329,10.4657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +1283,2.8173,10.4029,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1284,5.1307,5.7529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1285,2.8064,5.5614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1286,2.7329,10.4458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1287,2.8173,10.4133,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1288,5.1307,5.6979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1289,2.8064,5.5398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1290,2.7329,10.4307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1291,2.8173,10.4110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1292,5.1307,5.9161,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1293,2.8064,5.6757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1294,2.7329,10.5679,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1295,2.8173,10.4493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1296,5.1307,5.9182,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1297,2.8064,5.6530,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1298,2.7329,10.4874,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1299,2.8173,10.4674,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1300,5.1307,6.1237,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1301,2.8064,5.7042,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1302,2.7329,10.7368,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1303,2.8173,10.6699,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1304,5.1307,6.1240,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1305,2.8064,5.7518,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1306,2.7329,10.5648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1307,2.8173,10.4938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1308,5.1307,5.9470,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1309,2.8064,5.6515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1310,2.7329,10.4455,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1311,2.8173,10.3804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1312,5.1307,6.0789,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1313,2.8064,5.7330,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1314,2.7329,10.7118,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1315,2.8173,10.6572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1316,5.1307,6.0609,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1317,2.8064,5.6772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1318,2.7329,10.4844,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1319,2.8173,10.4008,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1320,5.1307,5.8345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1321,2.8064,5.6349,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1322,2.7329,10.4861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1323,2.8173,10.4257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1324,5.1307,5.8550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1325,2.8064,5.6450,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1326,2.7329,10.3643,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1327,2.8173,10.2858,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1328,5.1307,6.1686,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1329,2.8064,5.8712,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1330,2.7329,10.4512,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1331,2.8173,10.4377,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1332,5.1307,6.7910,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1333,2.8064,6.3258,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1334,2.7329,7.9123,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1335,2.8173,9.6263,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1336,5.1307,6.3381,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1337,2.8064,7.4214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1338,2.7329,8.5595,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1339,2.8173,10.1336,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1340,5.1307,6.6830,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1341,2.8064,6.0048,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1342,2.7329,9.9019,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1343,2.8173,9.8450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1344,5.1307,6.4405,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1345,2.8064,5.7274,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1346,2.7329,10.4473,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1347,2.8173,9.8431,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1348,5.1307,6.5013,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1349,2.8064,6.0382,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1350,2.7329,8.1181,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1351,2.8173,10.3102,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1352,5.1307,6.3211,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1353,2.8064,6.2602,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1354,2.7329,13.4475,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1355,2.8173,13.2332,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1356,5.1307,6.3555,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1357,2.8064,5.8070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1358,2.7329,10.6426,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1359,2.8173,10.5412,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1360,5.1307,6.1902,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1361,2.8064,5.7367,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1362,2.7329,10.7315,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1363,2.8173,10.6608,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1364,5.1307,6.6026,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1365,2.8064,6.0189,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1366,2.7329,10.9407,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1367,2.8173,10.7876,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1368,5.1307,6.5916,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1369,2.8064,6.4305,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1370,2.7329,9.6735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1371,2.8173,9.9559,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1372,5.1307,6.3414,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1373,2.8064,5.8214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1374,2.7329,10.6972,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1375,2.8173,10.6446,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1376,5.1307,6.3356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1377,2.8064,5.8890,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1378,2.7329,10.5677,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1379,2.8173,10.5187,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1380,5.1307,5.9260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1381,2.8064,5.7120,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1382,2.7329,10.9437,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1383,2.8173,10.8123,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1384,5.1307,6.4085,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1385,2.8064,5.8928,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1386,2.7329,10.1001,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1387,2.8173,9.9013,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1388,5.1307,6.4885,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1389,2.8064,5.9604,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1390,2.7329,9.9701,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1391,2.8173,9.6795,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1392,5.1307,6.2746,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1393,2.8064,5.8108,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1394,2.7329,9.8098,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1395,2.8173,9.7997,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1396,5.1307,8.1890,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1397,2.8064,5.9498,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1398,2.7329,10.6384,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1399,2.8173,10.6074,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1400,5.1307,6.6822,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1401,2.8064,5.8747,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1402,2.7329,6.4935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1403,2.8173,10.2411,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1404,5.1307,6.0223,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1405,2.8064,5.6599,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1406,2.7329,10.6495,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1407,2.8173,10.4933,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1408,5.1307,6.5007,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1409,2.8064,6.0083,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1410,2.7329,10.8336,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1411,2.8173,10.6850,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1412,5.1307,6.4228,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1413,2.8064,6.0338,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1414,2.7329,7.5840,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1415,2.8173,9.2554,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1416,5.1307,6.0001,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1417,2.8064,5.6143,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1418,2.7329,10.5762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1419,2.8173,10.5322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1420,5.1307,6.2559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1421,2.8064,5.8071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1422,2.7329,10.5405,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1423,2.8173,10.4402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1424,5.1307,5.8282,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1425,2.8064,5.6712,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1426,2.7329,10.2894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1427,2.8173,10.1622,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1428,5.1307,6.6023,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1429,2.8064,5.8554,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1430,2.7329,10.1710,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1431,2.8173,10.0218,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1432,5.1307,6.6926,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1433,2.8064,6.9160,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1434,2.7329,12.5712,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1435,2.8173,12.3386,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1436,5.1307,5.9789,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1437,2.8064,5.6714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1438,2.7329,10.7196,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1439,2.8173,10.5537,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1440,5.1307,6.1731,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1441,2.8064,5.7640,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1442,2.7329,10.5557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1443,2.8173,10.4660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1444,5.1307,5.8599,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1445,2.8064,5.6399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1446,2.7329,10.6529,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1447,2.8173,10.5064,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1448,5.1307,6.7876,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1449,2.8064,5.9688,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1450,2.7329,9.1957,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1451,2.8173,9.1418,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1452,5.1307,6.4277,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1453,2.8064,5.7615,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1454,2.7329,9.5021,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1455,2.8173,10.0407,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1456,5.1307,6.4084,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1457,2.8064,5.7745,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1458,2.7329,8.3746,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1459,2.8173,10.3688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1460,5.1307,6.1178,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1461,2.8064,5.7729,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1462,2.7329,10.6721,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1463,2.8173,10.4872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1464,5.1307,6.2087,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1465,2.8064,5.7314,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1466,2.7329,10.4995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1467,2.8173,10.4215,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1468,5.1307,6.3287,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1469,2.8064,6.2805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1470,2.7329,11.2936,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1471,2.8173,11.3260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1472,5.1307,7.1894,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1473,2.8064,6.6839,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1474,2.7329,10.5412,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1475,2.8173,10.2099,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1476,5.1307,6.7379,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1477,2.8064,6.1330,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1478,2.7329,10.1684,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1479,2.8173,9.7148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1480,5.1307,6.2596,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1481,2.8064,5.8020,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1482,2.7329,10.7368,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1483,2.8173,10.6671,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1484,5.1307,6.2326,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1485,2.8064,5.8468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1486,2.7329,10.5583,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1487,2.8173,10.4760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1488,5.1307,5.9313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1489,2.8064,5.7137,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1490,2.7329,10.5938,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1491,2.8173,10.5048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1492,5.1307,5.9980,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1493,2.8064,5.7591,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1494,2.7329,10.6348,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1495,2.8173,10.5867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1496,5.1307,5.9354,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1497,2.8064,5.6497,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1498,2.7329,10.3580,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1499,2.8173,10.2790,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1500,5.1307,5.8548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1501,2.8064,5.6057,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1502,2.7329,10.4484,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1503,2.8173,10.3486,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1504,5.1307,5.8932,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1505,2.8064,5.6380,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1506,2.7329,10.6822,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1507,2.8173,10.4920,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1508,5.1307,6.6740,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1509,2.8064,5.9742,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1510,2.7329,9.6794,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1511,2.8173,9.8821,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1512,5.1307,6.2310,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1513,2.8064,5.7456,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1514,2.7329,9.2859,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1515,2.8173,8.6600,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1516,5.1307,6.4768,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1517,2.8064,5.7235,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1518,2.7329,10.1891,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1519,2.8173,9.9584,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1520,5.1307,6.4586,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1521,2.8064,5.9127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1522,2.7329,8.5979,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1523,2.8173,9.7952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1524,5.1307,6.4532,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1525,2.8064,5.9583,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1526,2.7329,8.3947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1527,2.8173,10.3248,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1528,5.1307,6.2501,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1529,2.8064,5.6482,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1530,2.7329,10.3993,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1531,2.8173,10.1940,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1532,5.1307,6.6628,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1533,2.8064,5.7085,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1534,2.7329,9.9773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1535,2.8173,10.0095,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1536,5.1307,6.9052,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1537,2.8064,5.7693,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1538,2.7329,10.3243,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1539,2.8173,10.1965,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1540,5.1307,6.4933,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1541,2.8064,6.0243,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1542,2.7329,8.5930,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1543,2.8173,9.8300,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1544,5.1307,6.4762,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1545,2.8064,5.7444,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1546,2.7329,9.8373,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1547,2.8173,9.7197,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1548,5.1307,6.4303,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1549,2.8064,5.8241,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1550,2.7329,10.4446,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1551,2.8173,10.0475,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1552,5.1307,6.3376,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1553,2.8064,5.7107,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1554,2.7329,10.2173,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1555,2.8173,10.0082,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1556,5.1307,6.4810,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1557,2.8064,5.8703,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1558,2.7329,8.5334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1559,2.8173,10.0162,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1560,5.1307,6.0209,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1561,2.8064,5.7869,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1562,2.7329,10.6193,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1563,2.8173,10.5848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1564,5.1307,5.9375,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1565,2.8064,5.6742,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1566,2.7329,10.6313,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1567,2.8173,10.4531,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1568,5.1307,6.1994,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1569,2.8064,5.7165,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1570,2.7329,10.6401,0.0331,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1571,2.8173,10.5602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1572,5.1307,6.2591,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1573,2.8064,5.7785,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1574,2.7329,10.5345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1575,2.8173,10.4907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1576,5.1307,5.8193,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1577,2.8064,5.5642,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1578,2.7329,10.3624,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1579,2.8173,10.3366,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1580,5.1307,5.8976,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1581,2.8064,5.7787,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1582,2.7329,10.4508,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1583,2.8173,10.4293,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1584,5.1307,6.4907,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1585,2.8064,5.9724,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1586,2.7329,10.1282,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1587,2.8173,10.1926,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1588,5.1307,6.4426,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1589,2.8064,5.7120,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1590,2.7329,8.4112,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1591,2.8173,7.9574,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1592,5.1307,6.6257,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1593,2.8064,5.8685,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1594,2.7329,12.8700,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1595,2.8173,13.1991,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1596,5.1307,6.5239,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1597,2.8064,5.7155,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1598,2.7329,10.3232,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1599,2.8173,10.1359,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1600,5.1307,6.6712,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1601,2.8064,5.7349,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1602,2.7329,10.3055,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1603,2.8173,10.0091,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1604,5.1307,6.5109,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1605,2.8064,5.8452,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1606,2.7329,10.4247,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1607,2.8173,10.2968,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1608,5.1307,6.4285,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1609,2.8064,5.7931,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1610,2.7329,9.9698,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1611,2.8173,9.2192,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1612,5.1307,7.1443,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1613,2.8064,7.1618,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1614,2.7329,10.4877,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1615,2.8173,10.3627,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1616,5.1307,7.9950,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1617,2.8064,5.7604,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1618,2.7329,10.7591,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1619,2.8173,10.5490,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1620,5.1307,6.2103,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1621,2.8064,5.6669,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1622,2.7329,10.2156,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1623,2.8173,10.1858,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1624,5.1307,6.1679,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1625,2.8064,5.7169,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1626,2.7329,10.4278,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1627,2.8173,10.3372,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1628,5.1307,5.9451,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1629,2.8064,5.6639,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1630,2.7329,10.8894,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1631,2.8173,10.7622,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1632,5.1307,6.3697,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1633,2.8064,5.9718,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1634,2.7329,10.0247,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1635,2.8173,9.7520,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1636,5.1307,6.3590,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1637,2.8064,6.1065,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1638,2.7329,7.4373,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1639,2.8173,10.2124,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1640,5.1307,6.6024,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1641,2.8064,5.7695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1642,2.7329,9.4293,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1643,2.8173,9.2864,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1644,5.1307,6.3545,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1645,2.8064,5.7390,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1646,2.7329,9.9908,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1647,2.8173,9.9423,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1648,5.1307,6.4458,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1649,2.8064,5.9227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1650,2.7329,10.4093,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1651,2.8173,10.0657,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1652,5.1307,6.0454,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1653,2.8064,5.7009,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1654,2.7329,10.2813,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1655,2.8173,10.0989,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1656,5.1307,5.9877,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1657,2.8064,5.6375,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1658,2.7329,10.4505,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1659,2.8173,10.2811,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1660,5.1307,6.2360,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1661,2.8064,5.7928,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1662,2.7329,10.6343,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1663,2.8173,10.5064,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1664,5.1307,6.1890,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1665,2.8064,5.8459,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1666,2.7329,10.3408,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1667,2.8173,10.2673,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1668,5.1307,6.4655,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1669,2.8064,5.8810,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1670,2.7329,9.7132,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1671,2.8173,9.6414,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1672,5.1307,6.4954,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1673,2.8064,5.8990,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1674,2.7329,10.1606,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1675,2.8173,9.8126,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1676,5.1307,6.7547,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1677,2.8064,5.7702,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1678,2.7329,9.8775,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1679,2.8173,9.6300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1680,5.1307,6.4638,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1681,2.8064,6.0163,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1682,2.7329,9.6366,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1683,2.8173,9.7030,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1684,5.1307,6.4010,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1685,2.8064,6.8543,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1686,2.7329,10.8100,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1687,2.8173,10.5662,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1688,5.1307,5.9452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1689,2.8064,5.6707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1690,2.7329,10.3471,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1691,2.8173,9.8920,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1692,5.1307,6.2178,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1693,2.8064,5.8437,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1694,2.7329,10.5258,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1695,2.8173,10.3254,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1696,5.1307,6.0025,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1697,2.8064,5.7124,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1698,2.7329,10.4821,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1699,2.8173,10.3979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1700,5.1307,6.1436,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1701,2.8064,5.9163,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1702,2.7329,10.5397,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1703,2.8173,10.4485,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1704,5.1307,6.3321,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1705,2.8064,5.9460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1706,2.7329,9.7747,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1707,2.8173,9.5990,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1708,5.1307,6.4927,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1709,2.8064,5.9147,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1710,2.7329,8.0799,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1711,2.8173,9.8955,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1712,5.1307,6.0943,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1713,2.8064,5.6645,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1714,2.7329,10.5215,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1715,2.8173,10.3422,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1716,5.1307,6.1839,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1717,2.8064,5.7993,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1718,2.7329,10.4886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1719,2.8173,10.3667,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1720,5.1307,6.5076,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1721,2.8064,5.7122,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1722,2.7329,10.1322,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1723,2.8173,9.5468,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1724,5.1307,6.2973,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1725,2.8064,6.0758,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1726,2.7329,9.6036,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1727,2.8173,9.8574,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1728,5.1307,6.3417,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1729,2.8064,5.7681,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1730,2.7329,11.4391,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1731,2.8173,11.0178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1732,5.1307,6.4575,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1733,2.8064,5.6379,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1734,2.7329,10.5266,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1735,2.8173,10.2988,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1736,5.1307,6.5960,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1737,2.8064,6.0123,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1738,2.7329,10.9143,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1739,2.8173,10.6471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1740,5.1307,6.4124,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1741,2.8064,5.7863,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1742,2.7329,10.6115,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1743,2.8173,10.4771,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1744,5.1307,6.1348,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1745,2.8064,5.7068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1746,2.7329,10.7170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1747,2.8173,10.6955,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1748,5.1307,6.1410,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1749,2.8064,5.7707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1750,2.7329,10.8975,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1751,2.8173,10.7585,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1752,5.1307,6.1733,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1753,2.8064,5.7613,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1754,2.7329,10.5221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1755,2.8173,10.4723,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1756,5.1307,5.6451,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1757,2.8064,5.5052,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1758,2.7329,10.8197,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1759,2.8173,10.7355,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1760,5.1307,6.5531,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1761,2.8064,5.9001,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1762,2.7329,9.7011,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1763,2.8173,9.4556,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1764,5.1307,6.6193,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1765,2.8064,6.3356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1766,2.7329,9.9485,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1767,2.8173,9.7093,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1768,5.1307,6.6313,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1769,2.8064,5.8254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1770,2.7329,9.7449,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1771,2.8173,9.6386,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1772,5.1307,6.2055,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1773,2.8064,5.6597,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1774,2.7329,9.8747,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1775,2.8173,9.8193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1776,5.1307,6.3972,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1777,2.8064,5.7183,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1778,2.7329,10.0170,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1779,2.8173,10.0907,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1780,5.1307,6.4783,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1781,2.8064,5.6839,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1782,2.7329,10.4607,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1783,2.8173,10.2826,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1784,5.1307,6.5197,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1785,2.8064,5.8819,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1786,2.7329,11.0027,0.1019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1787,2.8173,10.5229,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1788,5.1307,6.3476,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1789,2.8064,5.6873,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1790,2.7329,10.4994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1791,2.8173,10.4183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1792,5.1307,5.8388,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1793,2.8064,5.5875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1794,2.7329,10.5720,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1795,2.8173,10.4850,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1796,5.1307,6.1621,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1797,2.8064,5.7688,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1798,2.7329,10.7410,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1799,2.8173,10.5717,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1800,5.1307,46.6119,0.0122,0.0000,0,0,0.0000,0,0.0000,0,1,0,66998,0 +1801,2.8064,29.3569,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,45678,0 +1802,2.7329,25.8101,0.0087,0.0000,0,0,0.0000,0,0.0000,0,1,0,73262,0 +1803,2.8173,25.4430,0.0071,0.0000,0,0,0.0000,0,0.0000,0,1,0,68742,0 +1804,5.1307,6.0588,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,18434,0 +1805,2.8064,5.7296,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +1806,2.7329,10.3229,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23484,0 +1807,2.8173,10.3472,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,20398,0 +1808,5.1307,5.7893,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19255,0 +1809,2.8064,5.6047,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14108,0 +1810,2.7329,10.4785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18500,0 +1811,2.8173,10.4960,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,19877,0 +1812,5.1307,5.8530,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,28914,0 +1813,2.8064,5.7335,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,20313,0 +1814,2.7329,10.5597,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,25267,0 +1815,2.8173,10.5165,0.0601,0.0000,0,0,0.0000,0,0.0000,0,0,0,25193,0 +1816,5.1307,5.8301,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,31430,0 +1817,2.8064,5.6045,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20805,0 +1818,2.7329,10.3386,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,27293,0 +1819,2.8173,10.2890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,30502,0 +1820,5.1307,5.6890,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,32483,0 +1821,2.8064,5.5303,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,19061,0 +1822,2.7329,10.3994,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,32440,0 +1823,2.8173,10.3822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,33882,0 +1824,5.1307,5.7506,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16713,0 +1825,2.8064,5.6542,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +1826,2.7329,10.6055,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,18870,0 +1827,2.8173,10.6298,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9142,0 +1828,5.1307,5.7007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7940,0 +1829,2.8064,5.5912,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5218,0 +1830,2.7329,10.5438,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8197,0 +1831,2.8173,10.5420,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6004,0 +1832,5.1307,5.6421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5653,0 +1833,2.8064,5.6370,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3709,0 +1834,2.7329,10.4241,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +1835,2.8173,10.4367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5323,0 +1836,5.1307,5.7359,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4964,0 +1837,2.8064,5.5926,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3416,0 +1838,2.7329,10.5740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5643,0 +1839,2.8173,10.5515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4829,0 +1840,5.1307,5.6318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +1841,2.8064,5.4787,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +1842,2.7329,10.4310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +1843,2.8173,10.4200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4596,0 +1844,5.1307,5.6277,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2534,0 +1845,2.8064,5.4897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +1846,2.7329,10.3798,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +1847,2.8173,10.4029,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3695,0 +1848,5.1307,5.7959,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +1849,2.8064,5.5655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +1850,2.7329,10.3665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +1851,2.8173,10.3500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +1852,5.1307,5.6392,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +1853,2.8064,5.5317,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,659,0 +1854,2.7329,10.3427,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +1855,2.8173,10.3017,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,988,0 +1856,5.1307,5.6594,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +1857,2.8064,5.5396,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1858,2.7329,10.4359,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1859,2.8173,10.3797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +1860,5.1307,5.7708,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,660,0 +1861,2.8064,5.5998,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1862,2.7329,10.5718,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1863,2.8173,10.5610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +1864,5.1307,5.8608,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1865,2.8064,5.6956,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1866,2.7329,10.4124,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1867,2.8173,10.3745,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1868,5.1307,5.7652,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1869,2.8064,5.6120,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1870,2.7329,10.4260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1871,2.8173,10.3319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1872,5.1307,6.0160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1873,2.8064,5.7230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1874,2.7329,10.6329,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1875,2.8173,10.5647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1876,5.1307,5.9727,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1877,2.8064,5.6936,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1878,2.7329,10.5311,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1879,2.8173,10.4778,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1880,5.1307,6.0453,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1881,2.8064,5.7073,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1882,2.7329,10.4023,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +1883,2.8173,10.3042,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1884,5.1307,6.1643,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1885,2.8064,5.7757,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1886,2.7329,10.6558,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1887,2.8173,10.5408,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1888,5.1307,5.8003,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1889,2.8064,5.6169,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1890,2.7329,10.5608,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1891,2.8173,10.3733,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1892,5.1307,5.6901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1893,2.8064,5.5787,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1894,2.7329,10.6249,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1895,2.8173,10.6555,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1896,5.1307,5.8720,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1897,2.8064,5.6693,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1898,2.7329,10.6047,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1899,2.8173,10.5282,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1900,5.1307,5.9287,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1901,2.8064,5.7265,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1902,2.7329,10.6210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1903,2.8173,10.5423,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1904,5.1307,5.9023,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1905,2.8064,5.5740,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1906,2.7329,10.4362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1907,2.8173,10.4118,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1908,5.1307,5.6859,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1909,2.8064,5.5024,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1910,2.7329,10.5217,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1911,2.8173,10.5305,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1912,5.1307,6.3806,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1913,2.8064,5.6805,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1914,2.7329,10.7393,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1915,2.8173,10.5288,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1916,5.1307,6.3746,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1917,2.8064,5.7337,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1918,2.7329,10.5035,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1919,2.8173,10.2583,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1920,5.1307,6.2123,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1921,2.8064,5.8378,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1922,2.7329,9.8630,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1923,2.8173,9.9074,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1924,5.1307,6.2614,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1925,2.8064,5.7830,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1926,2.7329,10.2282,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1927,2.8173,10.1367,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1928,5.1307,6.2524,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1929,2.8064,5.7598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1930,2.7329,9.9535,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1931,2.8173,10.0025,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1932,5.1307,6.4277,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1933,2.8064,5.7911,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1934,2.7329,10.3915,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1935,2.8173,9.8545,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1936,5.1307,6.5694,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1937,2.8064,5.7767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1938,2.7329,9.9243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1939,2.8173,9.8026,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1940,5.1307,6.6006,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1941,2.8064,5.8967,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1942,2.7329,10.2993,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1943,2.8173,10.0632,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1944,5.1307,6.5090,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1945,2.8064,5.9483,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1946,2.7329,8.4222,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1947,2.8173,10.1777,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1948,5.1307,6.4386,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1949,2.8064,5.8118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1950,2.7329,8.2329,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1951,2.8173,8.1249,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1952,5.1307,6.5680,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1953,2.8064,6.1755,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1954,2.7329,9.6495,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1955,2.8173,10.2434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1956,5.1307,6.3335,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1957,2.8064,5.6924,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1958,2.7329,10.5382,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1959,2.8173,10.1812,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1960,5.1307,6.9475,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1961,2.8064,5.9205,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1962,2.7329,10.1095,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1963,2.8173,9.8896,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1964,5.1307,6.3933,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1965,2.8064,5.7906,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1966,2.7329,9.0513,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1967,2.8173,10.1655,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1968,5.1307,6.3610,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1969,2.8064,5.7588,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1970,2.7329,10.1357,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1971,2.8173,9.7196,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1972,5.1307,6.5491,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1973,2.8064,6.0400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1974,2.7329,8.2970,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1975,2.8173,10.3662,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1976,5.1307,6.7715,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1977,2.8064,5.8777,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1978,2.7329,9.7832,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1979,2.8173,9.7201,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1980,5.1307,6.3139,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1981,2.8064,5.8162,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1982,2.7329,9.7412,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1983,2.8173,10.0483,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1984,5.1307,6.6630,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1985,2.8064,5.9825,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1986,2.7329,7.9939,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1987,2.8173,8.3029,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1988,5.1307,6.7768,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1989,2.8064,6.0203,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1990,2.7329,5.9958,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1991,2.8173,10.3557,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1992,5.1307,6.1495,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1993,2.8064,5.7618,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1994,2.7329,10.7675,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1995,2.8173,10.6660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1996,5.1307,6.2413,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1997,2.8064,5.8245,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1998,2.7329,10.6407,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1999,2.8173,10.6420,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2000,5.1307,5.8360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2001,2.8064,5.6070,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2002,2.7329,10.6454,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2003,2.8173,10.6715,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2004,5.1307,5.9517,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2005,2.8064,5.7590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2006,2.7329,10.9373,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2007,2.8173,10.8540,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2008,5.1307,6.3398,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2009,2.8064,5.7852,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2010,2.7329,9.4092,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2011,2.8173,9.1233,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2012,5.1307,5.9474,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2013,2.8064,5.5481,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2014,2.7329,10.2408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2015,2.8173,10.1387,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2016,5.1307,5.8598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2017,2.8064,5.5823,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2018,2.7329,10.5204,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2019,2.8173,10.5238,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2020,5.1307,5.7716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2021,2.8064,5.5683,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2022,2.7329,10.5437,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2023,2.8173,10.5096,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2024,5.1307,5.7978,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2025,2.8064,5.6780,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2026,2.7329,10.7090,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2027,2.8173,10.6211,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2028,5.1307,6.2605,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2029,2.8064,5.8520,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2030,2.7329,9.9753,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2031,2.8173,9.9232,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2032,5.1307,6.2736,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2033,2.8064,5.7767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2034,2.7329,9.6549,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2035,2.8173,9.2669,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2036,5.1307,5.8841,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2037,2.8064,5.6295,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2038,2.7329,10.2923,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2039,2.8173,10.1893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2040,5.1307,5.9314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2041,2.8064,5.5810,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2042,2.7329,10.4012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2043,2.8173,10.3569,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2044,5.1307,5.9021,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2045,2.8064,5.6956,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2046,2.7329,10.4387,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2047,2.8173,10.3795,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2048,5.1307,5.7834,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2049,2.8064,5.5902,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2050,2.7329,10.3852,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2051,2.8173,10.3017,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2052,5.1307,5.7641,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2053,2.8064,5.6612,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2054,2.7329,10.4473,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2055,2.8173,10.2447,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2056,5.1307,6.4322,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2057,2.8064,6.1786,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2058,2.7329,9.2584,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2059,2.8173,9.7993,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2060,5.1307,6.4053,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2061,2.8064,5.9530,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2062,2.7329,9.6923,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2063,2.8173,9.5611,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2064,5.1307,6.6258,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2065,2.8064,5.8859,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2066,2.7329,11.0449,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2067,2.8173,11.0442,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2068,5.1307,6.2088,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2069,2.8064,5.8734,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2070,2.7329,9.6063,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2071,2.8173,7.8933,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2072,5.1307,6.2761,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2073,2.8064,5.7715,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2074,2.7329,10.5636,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2075,2.8173,10.3283,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2076,5.1307,6.0518,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2077,2.8064,5.6443,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2078,2.7329,10.4086,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2079,2.8173,10.4393,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2080,5.1307,6.0042,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2081,2.8064,5.7787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2082,2.7329,10.3790,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2083,2.8173,10.3426,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2084,5.1307,5.8807,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2085,2.8064,6.1014,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2086,2.7329,9.1180,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2087,2.8173,10.4165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2088,5.1307,6.9241,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2089,2.8064,6.2364,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2090,2.7329,8.2558,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2091,2.8173,8.1512,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2092,5.1307,6.0180,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2093,2.8064,5.5988,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2094,2.7329,10.1207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2095,2.8173,10.1206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2096,5.1307,6.2296,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2097,2.8064,5.7845,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2098,2.7329,10.3349,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2099,2.8173,10.2787,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2100,5.1307,6.2555,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2101,2.8064,5.8883,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2102,2.7329,10.0075,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2103,2.8173,9.9135,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2104,5.1307,6.2188,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2105,2.8064,5.8428,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2106,2.7329,9.8444,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2107,2.8173,9.9250,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2108,5.1307,6.1242,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2109,2.8064,5.8537,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2110,2.7329,9.9421,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2111,2.8173,10.1431,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2112,5.1307,6.2380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2113,2.8064,8.0776,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2114,2.7329,7.6348,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2115,2.8173,10.4988,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2116,5.1307,6.0629,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2117,2.8064,5.5961,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2118,2.7329,10.4361,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2119,2.8173,10.0750,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2120,5.1307,6.0235,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2121,2.8064,5.7075,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2122,2.7329,10.6615,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2123,2.8173,10.5076,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2124,5.1307,6.5371,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2125,2.8064,7.1011,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2126,2.7329,8.9821,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2127,2.8173,10.0832,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2128,5.1307,6.5344,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2129,2.8064,5.6170,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2130,2.7329,9.0850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2131,2.8173,10.3367,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2132,5.1307,5.9640,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2133,2.8064,5.5595,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2134,2.7329,10.2785,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2135,2.8173,10.1850,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2136,5.1307,5.8207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2137,2.8064,5.5374,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2138,2.7329,10.8106,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2139,2.8173,10.8282,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2140,5.1307,6.1602,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2141,2.8064,6.4253,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2142,2.7329,9.1828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2143,2.8173,9.5809,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2144,5.1307,6.4536,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2145,2.8064,5.9641,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2146,2.7329,10.1655,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2147,2.8173,9.5852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2148,5.1307,6.3975,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2149,2.8064,5.6216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2150,2.7329,10.1007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2151,2.8173,9.9760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2152,5.1307,6.6605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2153,2.8064,5.6349,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2154,2.7329,9.9942,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2155,2.8173,9.8978,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2156,5.1307,6.1373,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2157,2.8064,5.7037,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2158,2.7329,10.4953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2159,2.8173,10.4045,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2160,5.1307,5.9354,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2161,2.8064,5.6849,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2162,2.7329,10.8947,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2163,2.8173,10.7577,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2164,5.1307,7.9087,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2165,2.8064,5.9211,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2166,2.7329,9.9476,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2167,2.8173,10.3795,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2168,5.1307,7.0119,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2169,2.8064,7.5337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2170,2.7329,7.8922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2171,2.8173,9.6447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2172,5.1307,6.1132,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2173,2.8064,5.6549,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2174,2.7329,10.5406,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2175,2.8173,10.5039,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2176,5.1307,6.1232,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2177,2.8064,5.8005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2178,2.7329,10.8504,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2179,2.8173,10.6973,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2180,5.1307,6.4313,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2181,2.8064,5.7945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2182,2.7329,10.5915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2183,2.8173,10.1826,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2184,5.1307,6.2615,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2185,2.8064,5.9204,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2186,2.7329,10.7903,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2187,2.8173,10.7320,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2188,5.1307,6.7631,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2189,2.8064,6.0205,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2190,2.7329,9.0566,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2191,2.8173,11.2919,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2192,5.1307,6.0415,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2193,2.8064,5.7216,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2194,2.7329,10.7232,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2195,2.8173,10.6343,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2196,5.1307,6.1014,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2197,2.8064,5.7294,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2198,2.7329,10.5003,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2199,2.8173,10.4259,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2200,5.1307,6.1443,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2201,2.8064,5.7637,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2202,2.7329,10.2336,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2203,2.8173,10.0065,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2204,5.1307,7.4971,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2205,2.8064,6.0305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2206,2.7329,8.2444,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2207,2.8173,8.9672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2208,5.1307,5.9631,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2209,2.8064,5.6827,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2210,2.7329,10.4615,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2211,2.8173,10.3247,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2212,5.1307,6.2248,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2213,2.8064,5.8542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2214,2.7329,11.0268,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2215,2.8173,10.8559,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2216,5.1307,6.4045,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2217,2.8064,5.7514,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2218,2.7329,10.9263,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2219,2.8173,10.8497,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2220,5.1307,6.5620,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2221,2.8064,5.7058,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2222,2.7329,10.3377,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2223,2.8173,9.7934,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2224,5.1307,6.6187,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2225,2.8064,5.8127,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2226,2.7329,10.3963,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2227,2.8173,10.0414,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2228,5.1307,5.9005,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2229,2.8064,5.5512,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2230,2.7329,10.4920,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2231,2.8173,10.4977,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2232,5.1307,6.1997,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2233,2.8064,5.7732,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2234,2.7329,10.4985,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2235,2.8173,10.4567,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2236,5.1307,5.7469,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2237,2.8064,5.5778,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2238,2.7329,10.4467,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2239,2.8173,10.4147,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2240,5.1307,6.2951,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2241,2.8064,5.7735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2242,2.7329,9.1158,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2243,2.8173,10.2422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2244,5.1307,6.2287,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2245,2.8064,5.6601,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2246,2.7329,10.4750,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2247,2.8173,10.4500,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2248,5.1307,6.1364,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2249,2.8064,5.7601,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2250,2.7329,10.5360,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2251,2.8173,10.4787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2252,5.1307,5.9123,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2253,2.8064,5.7133,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2254,2.7329,10.6785,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2255,2.8173,10.6984,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2256,5.1307,5.9179,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2257,2.8064,5.6370,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2258,2.7329,10.3158,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2259,2.8173,10.2899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2260,5.1307,5.9043,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2261,2.8064,5.6818,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2262,2.7329,10.5197,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2263,2.8173,10.5590,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2264,5.1307,6.3586,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2265,2.8064,5.8589,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2266,2.7329,9.7523,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2267,2.8173,7.4937,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2268,5.1307,6.5511,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2269,2.8064,5.7982,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2270,2.7329,10.0036,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2271,2.8173,9.9975,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2272,5.1307,6.6303,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2273,2.8064,6.0717,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2274,2.7329,8.7457,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2275,2.8173,8.6989,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2276,5.1307,6.5892,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2277,2.8064,5.7697,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2278,2.7329,9.0808,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2279,2.8173,8.1359,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2280,5.1307,6.5752,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2281,2.8064,5.7383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2282,2.7329,10.2014,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2283,2.8173,10.0394,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2284,5.1307,6.3680,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2285,2.8064,5.7973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2286,2.7329,9.2348,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2287,2.8173,9.6910,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2288,5.1307,6.2334,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2289,2.8064,5.6228,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2290,2.7329,10.4295,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2291,2.8173,10.1602,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2292,5.1307,6.5209,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2293,2.8064,6.0848,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2294,2.7329,9.9073,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2295,2.8173,9.8894,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2296,5.1307,6.2713,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2297,2.8064,5.6963,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2298,2.7329,10.1207,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2299,2.8173,9.9651,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2300,5.1307,6.4367,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2301,2.8064,5.8199,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2302,2.7329,9.9067,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2303,2.8173,9.6968,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2304,5.1307,6.4444,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2305,2.8064,5.5768,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2306,2.7329,10.4401,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2307,2.8173,10.1167,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2308,5.1307,6.5316,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2309,2.8064,5.7703,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2310,2.7329,10.3382,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2311,2.8173,9.8182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2312,5.1307,6.5661,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2313,2.8064,5.8418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2314,2.7329,12.9681,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2315,2.8173,12.6390,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2316,5.1307,6.4219,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2317,2.8064,5.9469,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2318,2.7329,9.8730,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2319,2.8173,10.0244,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2320,5.1307,6.4994,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2321,2.8064,5.7867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2322,2.7329,10.7996,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2323,2.8173,10.5704,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2324,5.1307,6.7411,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2325,2.8064,5.9261,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2326,2.7329,10.6950,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2327,2.8173,10.2031,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2328,5.1307,6.4863,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2329,2.8064,5.7608,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2330,2.7329,10.3142,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2331,2.8173,9.8609,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2332,5.1307,6.4119,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2333,2.8064,5.7716,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2334,2.7329,9.9627,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2335,2.8173,9.9874,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2336,5.1307,6.3177,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2337,2.8064,5.8113,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2338,2.7329,10.3353,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2339,2.8173,10.0918,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2340,5.1307,6.2446,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2341,2.8064,5.8043,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2342,2.7329,10.3542,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2343,2.8173,9.1138,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2344,5.1307,5.9655,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2345,2.8064,5.4796,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2346,2.7329,10.4445,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2347,2.8173,10.4273,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2348,5.1307,5.8232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2349,2.8064,5.5913,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2350,2.7329,10.5156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2351,2.8173,10.5281,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2352,5.1307,6.2400,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2353,2.8064,5.6775,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2354,2.7329,10.4955,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2355,2.8173,10.3031,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2356,5.1307,6.3352,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2357,2.8064,5.8499,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2358,2.7329,9.8730,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2359,2.8173,9.9823,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2360,5.1307,6.1993,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2361,2.8064,5.7388,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2362,2.7329,9.8725,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2363,2.8173,9.6699,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2364,5.1307,6.1511,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2365,2.8064,6.0716,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2366,2.7329,9.9874,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2367,2.8173,9.9610,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2368,5.1307,6.2918,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2369,2.8064,5.7568,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2370,2.7329,9.9841,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2371,2.8173,9.9539,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2372,5.1307,6.2304,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2373,2.8064,5.7780,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2374,2.7329,9.7842,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2375,2.8173,9.8331,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2376,5.1307,6.2851,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2377,2.8064,5.8567,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2378,2.7329,9.9493,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2379,2.8173,9.7282,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2380,5.1307,6.4377,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2381,2.8064,5.8122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2382,2.7329,9.8647,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2383,2.8173,9.9192,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2384,5.1307,6.1702,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2385,2.8064,5.7551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2386,2.7329,9.6903,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2387,2.8173,9.3032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2388,5.1307,9.2338,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2389,2.8064,5.9460,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2390,2.7329,10.8305,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2391,2.8173,10.6870,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2392,5.1307,7.1274,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2393,2.8064,6.1730,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2394,2.7329,10.2523,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2395,2.8173,10.0974,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2396,5.1307,6.2861,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2397,2.8064,5.8152,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2398,2.7329,12.4055,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2399,2.8173,10.8465,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.txt b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.txt new file mode 100644 index 0000000..303520b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.txt @@ -0,0 +1,71 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=600 +frames_submitted=600 +frames_skipped=0 +frames_encoded=600 +failed_frames=0 +steady_frames_encoded=580 +elapsed_seconds=9.999 +effective_logical_fps=60.005 +tile_frames_requested=2400 +tile_frames_encoded=2400 +failed_tile_frames=0 +avg_encode_latency_ms=12.428 +p95_encode_latency_ms=13.814 +max_encode_latency_ms=127.576 +avg_steady_encode_latency_ms=12.313 +p95_steady_encode_latency_ms=13.814 +max_steady_encode_latency_ms=127.576 +avg_tile_encode_latency_ms=8.225 +p95_tile_encode_latency_ms=10.656 +avg_max_tile_encode_latency_ms=10.508 +p95_max_tile_encode_latency_ms=10.895 +avg_steady_max_tile_encode_latency_ms=10.478 +p95_steady_max_tile_encode_latency_ms=10.879 +payload_bytes=4959132 +send_target=none +csv=benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s_logical.csv b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s_logical.csv new file mode 100644 index 0000000..095d015 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/60mbps_reset150_inflight1_10s_logical.csv @@ -0,0 +1,601 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.8135,28.9645,254680 +1,4,0,10.9433,10.4637,75429 +2,4,0,10.9069,10.4542,71740 +3,4,0,10.8485,10.4358,99687 +4,4,0,10.8272,10.3631,110030 +5,4,0,10.7687,10.2860,117866 +6,4,0,10.8334,10.3282,53093 +7,4,0,10.7543,10.3415,27359 +8,4,0,10.8178,10.3420,20460 +9,4,0,10.8857,10.4022,18852 +10,4,0,10.8418,10.3063,12000 +11,4,0,10.8439,10.3131,8849 +12,4,0,10.8470,10.3205,7660 +13,4,0,10.8353,10.3085,5308 +14,4,0,10.8569,10.1584,5262 +15,4,0,10.8791,10.2471,3190 +16,4,0,10.9299,10.1555,2652 +17,4,0,12.2162,11.5395,2617 +18,4,0,11.7621,10.4920,2603 +19,4,0,12.7048,11.1227,2626 +20,4,0,12.9345,9.9142,2650 +21,4,0,11.6666,10.6035,2598 +22,4,0,11.7321,10.1008,2598 +23,4,0,12.6561,10.1050,2598 +24,4,0,11.2828,10.3728,2603 +25,4,0,11.1295,10.3442,2598 +26,4,0,11.2823,10.5364,2612 +27,4,0,10.9391,10.4068,2598 +28,4,0,11.1861,10.5978,2598 +29,4,0,12.3931,10.1322,2598 +30,4,0,11.2829,10.4932,2598 +31,4,0,11.1419,10.5745,2603 +32,4,0,11.5475,10.6526,2598 +33,4,0,11.1389,10.4272,2598 +34,4,0,11.0138,10.4869,2598 +35,4,0,10.8636,10.3650,2598 +36,4,0,10.8742,10.4120,2598 +37,4,0,11.1164,10.3088,2598 +38,4,0,15.0029,13.1583,2598 +39,4,0,11.2472,10.3654,2598 +40,4,0,11.1677,10.5469,2598 +41,4,0,11.1397,10.4701,2598 +42,4,0,12.0559,10.3687,2602 +43,4,0,11.7200,9.7899,2598 +44,4,0,12.3568,9.7535,2598 +45,4,0,11.8206,9.8507,2598 +46,4,0,12.5605,9.9835,2598 +47,4,0,12.7993,9.7451,2598 +48,4,0,12.3185,10.6788,2598 +49,4,0,12.3890,9.7807,2598 +50,4,0,12.1125,9.7120,2598 +51,4,0,13.9380,10.0970,2598 +52,4,0,12.1757,10.6269,2598 +53,4,0,13.5193,10.2044,2598 +54,4,0,11.7694,9.9195,2598 +55,4,0,12.0087,10.3347,2598 +56,4,0,12.9342,9.8158,2598 +57,4,0,11.7251,10.0426,2598 +58,4,0,11.9927,9.9040,2598 +59,4,0,12.0270,9.6389,2598 +60,4,0,12.1386,9.7806,2598 +61,4,0,13.6106,10.2555,2598 +62,4,0,11.8031,9.8504,2598 +63,4,0,12.4812,9.5550,2598 +64,4,0,12.1510,10.0639,2598 +65,4,0,13.8180,9.8033,2598 +66,4,0,11.4271,10.6404,2598 +67,4,0,16.3644,15.5487,2598 +68,4,0,12.5586,10.4777,2598 +69,4,0,11.9748,10.4084,2598 +70,4,0,13.0657,11.0410,2598 +71,4,0,15.9130,10.1475,2598 +72,4,0,11.6094,10.4758,2598 +73,4,0,11.7630,10.3718,2598 +74,4,0,12.2098,10.4084,2598 +75,4,0,12.2679,10.6343,2598 +76,4,0,11.8627,10.4588,2598 +77,4,0,11.4329,10.6460,2598 +78,4,0,11.2385,10.5813,2598 +79,4,0,11.0512,10.5060,2598 +80,4,0,10.9388,10.3938,2598 +81,4,0,12.9447,12.2321,2598 +82,4,0,15.8968,10.6494,2598 +83,4,0,11.4369,10.5463,2598 +84,4,0,11.0544,10.4467,2598 +85,4,0,11.0112,10.4593,2598 +86,4,0,11.4300,10.3919,2598 +87,4,0,10.8881,10.1843,2598 +88,4,0,12.2535,9.9729,2598 +89,4,0,10.8820,10.2788,2598 +90,4,0,11.1218,10.5418,2598 +91,4,0,11.8745,9.8932,2598 +92,4,0,12.8782,10.0054,2598 +93,4,0,11.5213,10.0203,2598 +94,4,0,12.8330,10.3513,2598 +95,4,0,11.8546,10.0638,2598 +96,4,0,11.4682,10.5155,2598 +97,4,0,11.1569,10.3664,2598 +98,4,0,10.8312,10.2241,2598 +99,4,0,11.8066,8.9999,2598 +100,4,0,11.7790,10.0394,2598 +101,4,0,11.9929,9.2459,2598 +102,4,0,11.7217,10.0890,2598 +103,4,0,12.2441,8.2108,2598 +104,4,0,11.3065,10.3460,2598 +105,4,0,11.1410,10.3637,2598 +106,4,0,11.8242,10.0963,2598 +107,4,0,11.8444,10.4209,2598 +108,4,0,12.9658,10.3638,2598 +109,4,0,10.9973,10.3739,2598 +110,4,0,11.1326,10.4642,2598 +111,4,0,11.0015,10.3255,2598 +112,4,0,10.9171,10.3849,2598 +113,4,0,11.0697,10.2931,2598 +114,4,0,11.1361,10.3443,2598 +115,4,0,10.9098,10.3142,2598 +116,4,0,11.0852,10.3742,2598 +117,4,0,11.0292,10.3707,2598 +118,4,0,10.9293,10.2440,2598 +119,4,0,10.9355,10.3104,2598 +120,4,0,10.8127,10.2040,2598 +121,4,0,11.0655,10.4343,2598 +122,4,0,11.0605,10.4413,2598 +123,4,0,10.9561,10.3392,2598 +124,4,0,10.9240,10.4019,2598 +125,4,0,10.9718,10.3505,2598 +126,4,0,11.0090,10.2986,2598 +127,4,0,10.8785,10.3582,2598 +128,4,0,10.8925,10.3873,2598 +129,4,0,11.0030,10.4363,2598 +130,4,0,10.8723,10.3686,2598 +131,4,0,11.0580,10.5162,2598 +132,4,0,11.0630,10.3335,2598 +133,4,0,11.0187,10.4853,2598 +134,4,0,10.9376,10.2380,2598 +135,4,0,10.9343,10.3315,2598 +136,4,0,10.8015,10.2789,2598 +137,4,0,11.1303,10.5071,2598 +138,4,0,10.9603,10.5128,2598 +139,4,0,11.0772,10.5261,2598 +140,4,0,10.8868,10.3856,2598 +141,4,0,10.9503,10.3438,2598 +142,4,0,11.0211,10.4044,2598 +143,4,0,10.8101,10.3707,2598 +144,4,0,10.9498,10.3588,2598 +145,4,0,10.8173,10.3552,2598 +146,4,0,10.7655,10.2849,2598 +147,4,0,10.9585,10.4257,2598 +148,4,0,10.7045,10.2185,2598 +149,4,0,11.3155,10.7699,2598 +150,4,0,122.9102,40.7045,254680 +151,4,0,11.1189,10.5836,75429 +152,4,0,11.0320,10.5555,71740 +153,4,0,11.0508,10.4078,99687 +154,4,0,10.9283,10.4456,110030 +155,4,0,11.0070,10.5058,117866 +156,4,0,10.9220,10.4471,53093 +157,4,0,10.9950,10.4977,27359 +158,4,0,10.8309,10.3062,20460 +159,4,0,10.8260,10.2777,18852 +160,4,0,10.8144,10.2863,12000 +161,4,0,10.8767,10.3445,8849 +162,4,0,10.9778,10.3876,7660 +163,4,0,11.1059,10.5482,5308 +164,4,0,11.0367,10.3097,5262 +165,4,0,10.8252,10.3885,3190 +166,4,0,11.4235,10.9552,2652 +167,4,0,11.4440,10.2427,2617 +168,4,0,12.1736,9.8491,2603 +169,4,0,12.3299,11.5113,2626 +170,4,0,15.9846,10.6813,2650 +171,4,0,11.7135,10.5964,2598 +172,4,0,11.9029,10.3637,2598 +173,4,0,11.8368,9.7860,2598 +174,4,0,11.9699,10.2963,2603 +175,4,0,11.6483,10.1547,2598 +176,4,0,12.8462,10.1465,2612 +177,4,0,11.6079,10.0122,2598 +178,4,0,11.7738,10.3409,2598 +179,4,0,11.7924,10.0276,2598 +180,4,0,12.3192,9.5522,2598 +181,4,0,11.9711,9.9271,2603 +182,4,0,11.9213,9.1433,2598 +183,4,0,12.5367,10.1911,2598 +184,4,0,12.2320,9.9600,2598 +185,4,0,12.7687,10.3037,2598 +186,4,0,11.7225,10.4888,2598 +187,4,0,11.5640,10.6771,2598 +188,4,0,11.3986,10.5124,2598 +189,4,0,10.9634,10.3492,2598 +190,4,0,11.0317,10.4658,2598 +191,4,0,10.7788,10.2709,2598 +192,4,0,10.9137,10.3638,2602 +193,4,0,10.9521,10.3925,2598 +194,4,0,10.8610,10.3767,2598 +195,4,0,10.8672,10.3267,2598 +196,4,0,10.8562,10.3432,2598 +197,4,0,10.9230,10.4121,2598 +198,4,0,10.9507,10.2942,2598 +199,4,0,10.8199,10.3744,2598 +200,4,0,10.9026,10.3585,2598 +201,4,0,10.8376,10.2656,2598 +202,4,0,10.8768,10.4085,2598 +203,4,0,10.9294,10.3111,2598 +204,4,0,11.0455,10.3371,2598 +205,4,0,10.9495,10.3083,2598 +206,4,0,10.8121,10.3292,2598 +207,4,0,11.1085,10.3885,2598 +208,4,0,11.0033,10.4044,2598 +209,4,0,10.8254,10.3354,2598 +210,4,0,10.8598,10.3763,2598 +211,4,0,10.8736,10.4082,2598 +212,4,0,10.9373,10.4049,2598 +213,4,0,10.7770,10.3085,2598 +214,4,0,11.0814,10.3505,2598 +215,4,0,10.9590,10.3358,2598 +216,4,0,10.8834,10.2978,2598 +217,4,0,11.0225,10.3796,2598 +218,4,0,11.1485,10.6002,2598 +219,4,0,11.1494,10.5291,2598 +220,4,0,11.1386,10.4831,2598 +221,4,0,11.1675,10.5230,2598 +222,4,0,11.2453,10.4181,2598 +223,4,0,10.9729,10.4329,2598 +224,4,0,10.8958,10.3964,2598 +225,4,0,10.8751,10.4245,2598 +226,4,0,10.8394,10.3001,2598 +227,4,0,10.8726,10.3385,2598 +228,4,0,10.8673,10.2496,2598 +229,4,0,10.9270,10.2724,2598 +230,4,0,10.9157,10.2615,2598 +231,4,0,11.0169,10.3175,2598 +232,4,0,12.4853,9.8313,2598 +233,4,0,11.6718,9.8614,2598 +234,4,0,12.1309,10.4169,2598 +235,4,0,11.4830,10.3580,2598 +236,4,0,12.2837,9.4720,2598 +237,4,0,11.5523,10.6233,2598 +238,4,0,11.1526,9.5427,2598 +239,4,0,11.6475,10.2760,2598 +240,4,0,11.6155,8.6709,2598 +241,4,0,11.5170,8.9557,2598 +242,4,0,11.5117,10.4070,2598 +243,4,0,13.4118,8.3493,2598 +244,4,0,13.6231,10.3775,2598 +245,4,0,12.5368,10.9052,2598 +246,4,0,11.3468,10.3859,2598 +247,4,0,11.8222,7.6321,2598 +248,4,0,11.6272,10.0392,2598 +249,4,0,14.2127,9.9534,2598 +250,4,0,11.7938,9.8195,2598 +251,4,0,13.4548,10.0324,2598 +252,4,0,11.8938,9.7906,2598 +253,4,0,11.2672,10.2424,2598 +254,4,0,13.6288,10.2196,2598 +255,4,0,11.5430,10.8780,2598 +256,4,0,14.7050,9.9212,2598 +257,4,0,10.9818,10.4057,2598 +258,4,0,14.0098,10.0370,2598 +259,4,0,10.8715,10.3083,2598 +260,4,0,11.8627,9.9841,2598 +261,4,0,11.7037,10.0876,2598 +262,4,0,11.4783,10.1983,2598 +263,4,0,11.6830,9.4553,2598 +264,4,0,12.0110,10.2971,2598 +265,4,0,11.8238,9.6896,2598 +266,4,0,11.8012,9.1118,2598 +267,4,0,12.0036,10.6341,2598 +268,4,0,12.2967,9.5986,2598 +269,4,0,11.3913,10.0864,2598 +270,4,0,11.2226,10.3562,2598 +271,4,0,10.8151,10.1917,2598 +272,4,0,10.8619,10.3709,2598 +273,4,0,10.7510,10.3584,2598 +274,4,0,10.7826,10.3106,2598 +275,4,0,10.8368,10.3248,2598 +276,4,0,10.7671,10.2580,2598 +277,4,0,10.8435,10.2758,2598 +278,4,0,11.0792,10.5642,2598 +279,4,0,11.1332,10.4277,2598 +280,4,0,11.0481,10.4912,2598 +281,4,0,10.8247,10.2873,2598 +282,4,0,11.0201,10.5032,2598 +283,4,0,12.3223,10.5954,2598 +284,4,0,11.1577,10.5149,2598 +285,4,0,12.0663,9.8449,2598 +286,4,0,11.7522,9.9932,2598 +287,4,0,12.8053,10.2159,2598 +288,4,0,11.5753,9.5132,2598 +289,4,0,12.0140,9.9428,2598 +290,4,0,12.4251,9.7453,2598 +291,4,0,12.1234,9.7013,2598 +292,4,0,12.0389,9.8179,2598 +293,4,0,12.0652,9.2332,2598 +294,4,0,11.5622,9.8407,2598 +295,4,0,12.3391,9.8289,2598 +296,4,0,11.5464,10.0882,2598 +297,4,0,12.0795,9.6262,2598 +298,4,0,12.4321,9.7532,2598 +299,4,0,11.6980,9.8517,2598 +300,4,0,125.0442,41.1191,254680 +301,4,0,11.0532,10.5310,75429 +302,4,0,11.0356,10.5940,71740 +303,4,0,11.0717,10.5306,99687 +304,4,0,11.0066,10.4665,110030 +305,4,0,11.0151,10.4792,117866 +306,4,0,10.8891,10.4484,53093 +307,4,0,10.9777,10.4591,27359 +308,4,0,10.8825,10.3762,20460 +309,4,0,11.0263,10.4895,18852 +310,4,0,11.1159,10.5653,12000 +311,4,0,11.1692,10.5448,8849 +312,4,0,11.0258,10.3780,7660 +313,4,0,11.0379,10.4475,5308 +314,4,0,11.0646,10.4348,5262 +315,4,0,11.4608,10.6013,3190 +316,4,0,15.0294,10.4055,2652 +317,4,0,11.4391,10.5459,2617 +318,4,0,11.6047,10.6321,2603 +319,4,0,11.4321,10.5904,2626 +320,4,0,11.2108,10.4657,2650 +321,4,0,10.9851,10.4458,2598 +322,4,0,10.9888,10.4307,2598 +323,4,0,11.1909,10.5679,2598 +324,4,0,11.1343,10.4874,2603 +325,4,0,11.5612,10.7368,2598 +326,4,0,11.3050,10.5648,2612 +327,4,0,11.1734,10.4455,2598 +328,4,0,11.4672,10.7118,2598 +329,4,0,11.2738,10.4844,2598 +330,4,0,11.1188,10.4861,2598 +331,4,0,11.0073,10.3643,2603 +332,4,0,11.2706,10.4512,2598 +333,4,0,14.0252,9.6263,2598 +334,4,0,13.6348,10.1336,2598 +335,4,0,12.2661,9.9019,2598 +336,4,0,11.5007,10.4473,2598 +337,4,0,13.9822,10.3102,2598 +338,4,0,15.5222,13.4475,2598 +339,4,0,11.6146,10.6426,2598 +340,4,0,11.5224,10.7315,2598 +341,4,0,11.8367,10.9407,2598 +342,4,0,12.3082,9.9559,2602 +343,4,0,11.6233,10.6972,2598 +344,4,0,11.3934,10.5677,2598 +345,4,0,11.4963,10.9437,2598 +346,4,0,11.6614,10.1001,2598 +347,4,0,12.0702,9.9701,2598 +348,4,0,11.8647,9.8098,2598 +349,4,0,13.6698,10.6384,2598 +350,4,0,15.6369,10.2411,2598 +351,4,0,11.3467,10.6495,2598 +352,4,0,11.6393,10.8336,2598 +353,4,0,13.6836,9.2554,2598 +354,4,0,11.3495,10.5762,2598 +355,4,0,11.4159,10.5405,2598 +356,4,0,10.9420,10.2894,2598 +357,4,0,11.8084,10.1710,2598 +358,4,0,13.8863,12.5712,2598 +359,4,0,11.3745,10.7196,2598 +360,4,0,11.3738,10.5557,2598 +361,4,0,11.3852,10.6529,2598 +362,4,0,13.4291,9.1957,2598 +363,4,0,12.6221,10.0407,2598 +364,4,0,13.6756,10.3688,2598 +365,4,0,11.4987,10.6721,2598 +366,4,0,11.3826,10.4995,2598 +367,4,0,11.9711,11.3260,2598 +368,4,0,12.2040,10.5412,2598 +369,4,0,13.2550,10.1684,2598 +370,4,0,11.5726,10.7368,2598 +371,4,0,11.3220,10.5583,2598 +372,4,0,11.1332,10.5938,2598 +373,4,0,11.2099,10.6348,2598 +374,4,0,11.0050,10.3580,2598 +375,4,0,11.1122,10.4484,2598 +376,4,0,11.3121,10.6822,2598 +377,4,0,12.3630,9.8821,2598 +378,4,0,11.7500,9.2859,2598 +379,4,0,11.8593,10.1891,2598 +380,4,0,13.2675,9.7952,2598 +381,4,0,13.8142,10.3248,2598 +382,4,0,11.4721,10.3993,2598 +383,4,0,11.9213,10.0095,2598 +384,4,0,12.2305,10.3243,2598 +385,4,0,13.2775,9.8300,2598 +386,4,0,11.9047,9.8373,2598 +387,4,0,11.8254,10.4446,2598 +388,4,0,11.8654,10.2173,2598 +389,4,0,13.3050,10.0162,2598 +390,4,0,11.3084,10.6193,2598 +391,4,0,11.2641,10.6313,2598 +392,4,0,11.5337,10.6401,2598 +393,4,0,11.4455,10.5345,2598 +394,4,0,10.9890,10.3624,2598 +395,4,0,10.9742,10.4508,2598 +396,4,0,11.7934,10.1926,2598 +397,4,0,12.1353,8.4112,2598 +398,4,0,15.0479,13.1991,2598 +399,4,0,11.4972,10.3232,2598 +400,4,0,11.8839,10.3055,2598 +401,4,0,11.4748,10.4247,2598 +402,4,0,11.8493,9.9698,2598 +403,4,0,12.3135,10.4877,2598 +404,4,0,13.3916,10.7591,2598 +405,4,0,11.5633,10.2156,2598 +406,4,0,11.3797,10.4278,2598 +407,4,0,11.6075,10.8894,2598 +408,4,0,11.9088,10.0247,2598 +409,4,0,14.5544,10.2124,2598 +410,4,0,11.8444,9.4293,2598 +411,4,0,11.7633,9.9908,2598 +412,4,0,12.0370,10.4093,2598 +413,4,0,11.1100,10.2813,2598 +414,4,0,11.2502,10.4505,2598 +415,4,0,11.4746,10.6343,2598 +416,4,0,11.2842,10.3408,2598 +417,4,0,11.9093,9.7132,2598 +418,4,0,11.9236,10.1606,2598 +419,4,0,12.1394,9.8775,2598 +420,4,0,12.0974,9.7030,2598 +421,4,0,12.4225,10.8100,2598 +422,4,0,11.0807,10.3471,2598 +423,4,0,11.3230,10.5258,2598 +424,4,0,11.1258,10.4821,2598 +425,4,0,11.0357,10.5397,2598 +426,4,0,12.0312,9.7747,2598 +427,4,0,13.8067,9.8955,2598 +428,4,0,11.3881,10.5215,2598 +429,4,0,11.2813,10.4886,2598 +430,4,0,11.7370,10.1322,2598 +431,4,0,12.0817,9.8574,2598 +432,4,0,12.9269,11.4391,2598 +433,4,0,11.7550,10.5266,2598 +434,4,0,12.8826,10.9143,2598 +435,4,0,11.6288,10.6115,2598 +436,4,0,11.4489,10.7170,2598 +437,4,0,11.5525,10.8975,2598 +438,4,0,11.2901,10.5221,2598 +439,4,0,11.2040,10.8197,2598 +440,4,0,12.1952,9.7011,2598 +441,4,0,12.2239,9.9485,2598 +442,4,0,12.1746,9.7449,2598 +443,4,0,11.5395,9.8747,2598 +444,4,0,11.7933,10.0907,2598 +445,4,0,11.8102,10.4607,2598 +446,4,0,12.6292,11.0027,2598 +447,4,0,11.5447,10.4994,2598 +448,4,0,11.0720,10.5720,2598 +449,4,0,11.3565,10.7410,2598 +450,4,0,127.5757,46.6119,254680 +451,4,0,11.1371,10.3472,75429 +452,4,0,11.0590,10.4960,71740 +453,4,0,11.0533,10.5597,99687 +454,4,0,10.9822,10.3386,110030 +455,4,0,10.9361,10.3994,117866 +456,4,0,11.0613,10.6298,53093 +457,4,0,10.9663,10.5438,27359 +458,4,0,10.9280,10.4367,20460 +459,4,0,11.0232,10.5740,18852 +460,4,0,10.9170,10.4310,12000 +461,4,0,10.8524,10.4029,8849 +462,4,0,10.9790,10.3665,7660 +463,4,0,10.8628,10.3427,5308 +464,4,0,10.8563,10.4359,5262 +465,4,0,11.1472,10.5718,3190 +466,4,0,10.9531,10.4124,2652 +467,4,0,11.0158,10.4260,2617 +468,4,0,11.3492,10.6329,2603 +469,4,0,11.2617,10.5311,2626 +470,4,0,11.1725,10.4023,2650 +471,4,0,11.4522,10.6558,2598 +472,4,0,10.9635,10.5608,2598 +473,4,0,11.0613,10.6555,2598 +474,4,0,11.2034,10.6047,2603 +475,4,0,11.0143,10.6210,2598 +476,4,0,11.0528,10.4362,2612 +477,4,0,10.9761,10.5305,2598 +478,4,0,11.8287,10.7393,2598 +479,4,0,11.6898,10.5035,2598 +480,4,0,11.9910,9.9074,2598 +481,4,0,11.6851,10.2282,2603 +482,4,0,11.6173,10.0025,2598 +483,4,0,11.8997,10.3915,2598 +484,4,0,11.9540,9.9243,2598 +485,4,0,11.8265,10.2993,2598 +486,4,0,13.5477,10.1777,2598 +487,4,0,11.8488,8.2329,2598 +488,4,0,12.3112,10.2434,2598 +489,4,0,11.7344,10.5382,2598 +490,4,0,12.0230,10.1095,2598 +491,4,0,12.7847,10.1655,2598 +492,4,0,11.6350,10.1357,2602 +493,4,0,13.7956,10.3662,2598 +494,4,0,12.1672,9.7832,2598 +495,4,0,12.1066,10.0483,2598 +496,4,0,12.1695,8.3029,2598 +497,4,0,16.3357,10.3557,2598 +498,4,0,11.4725,10.7675,2598 +499,4,0,11.3622,10.6420,2598 +500,4,0,11.2210,10.6715,2598 +501,4,0,11.4205,10.9373,2598 +502,4,0,11.7595,9.4092,2598 +503,4,0,11.0700,10.2408,2598 +504,4,0,11.1145,10.5238,2598 +505,4,0,11.0343,10.5437,2598 +506,4,0,11.0751,10.7090,2598 +507,4,0,11.5982,9.9753,2598 +508,4,0,11.8652,9.6549,2598 +509,4,0,10.9801,10.2923,2598 +510,4,0,11.1571,10.4012,2598 +511,4,0,11.0330,10.4387,2598 +512,4,0,11.0599,10.3852,2598 +513,4,0,11.1837,10.4473,2598 +514,4,0,12.4063,9.7993,2598 +515,4,0,12.2076,9.6923,2598 +516,4,0,12.9488,11.0449,2598 +517,4,0,11.9654,9.6063,2598 +518,4,0,11.4430,10.5636,2598 +519,4,0,11.3174,10.4393,2598 +520,4,0,11.2985,10.3790,2598 +521,4,0,12.4964,10.4165,2598 +522,4,0,11.7485,8.2558,2598 +523,4,0,11.2517,10.1207,2598 +524,4,0,11.5710,10.3349,2598 +525,4,0,11.7360,10.0075,2598 +526,4,0,11.7184,9.9250,2598 +527,4,0,11.9552,10.1431,2598 +528,4,0,14.2995,10.4988,2598 +529,4,0,11.4060,10.4361,2598 +530,4,0,11.3715,10.6615,2598 +531,4,0,13.1037,10.0832,2598 +532,4,0,12.9121,10.3367,2598 +533,4,0,11.0092,10.2785,2598 +534,4,0,11.4829,10.8282,2598 +535,4,0,12.1508,9.5809,2598 +536,4,0,12.0900,10.1655,2598 +537,4,0,11.6632,10.1007,2598 +538,4,0,12.0021,9.9942,2598 +539,4,0,11.3122,10.4953,2598 +540,4,0,11.4600,10.8947,2598 +541,4,0,13.6025,10.3795,2598 +542,4,0,14.4298,9.6447,2598 +543,4,0,11.3340,10.5406,2598 +544,4,0,11.5190,10.8504,2598 +545,4,0,12.0683,10.5915,2598 +546,4,0,11.4974,10.7903,2598 +547,4,0,14.6250,11.2919,2598 +548,4,0,11.2777,10.7232,2598 +549,4,0,11.2628,10.5003,2598 +550,4,0,11.5917,10.2336,2598 +551,4,0,13.8912,8.9672,2598 +552,4,0,11.1671,10.4615,2598 +553,4,0,11.7384,11.0268,2598 +554,4,0,12.4505,10.9263,2598 +555,4,0,11.7133,10.3377,2598 +556,4,0,12.2086,10.3963,2598 +557,4,0,11.1895,10.4977,2598 +558,4,0,11.3448,10.4985,2598 +559,4,0,10.9537,10.4467,2598 +560,4,0,12.6176,10.2422,2598 +561,4,0,11.4863,10.4750,2598 +562,4,0,11.3353,10.5360,2598 +563,4,0,11.2767,10.6984,2598 +564,4,0,10.9873,10.3158,2598 +565,4,0,11.1001,10.5590,2598 +566,4,0,11.7805,9.7523,2598 +567,4,0,12.1097,10.0036,2598 +568,4,0,12.1826,8.7457,2598 +569,4,0,12.0194,9.0808,2598 +570,4,0,11.6968,10.2014,2598 +571,4,0,12.4900,9.6910,2598 +572,4,0,11.4736,10.4295,2598 +573,4,0,11.8428,9.9073,2598 +574,4,0,11.6977,10.1207,2598 +575,4,0,12.0087,9.9067,2598 +576,4,0,11.8935,10.4401,2598 +577,4,0,11.9988,10.3382,2598 +578,4,0,14.8897,12.9681,2598 +579,4,0,11.7995,10.0244,2598 +580,4,0,12.8071,10.7996,2598 +581,4,0,11.9101,10.6950,2598 +582,4,0,11.5270,10.3142,2598 +583,4,0,11.7267,9.9874,2598 +584,4,0,11.3012,10.3353,2598 +585,4,0,11.8564,10.3542,2598 +586,4,0,11.2054,10.4445,2598 +587,4,0,11.0597,10.5281,2598 +588,4,0,11.6769,10.4955,2598 +589,4,0,11.9189,9.9823,2598 +590,4,0,11.6541,9.8725,2598 +591,4,0,11.7007,9.9874,2598 +592,4,0,11.7500,9.9841,2598 +593,4,0,11.8712,9.8331,2598 +594,4,0,11.7198,9.9493,2598 +595,4,0,11.9460,9.9192,2598 +596,4,0,11.5214,9.6903,2598 +597,4,0,14.8528,10.8305,2598 +598,4,0,11.8845,10.2523,2598 +599,4,0,14.3634,12.4055,2598 diff --git a/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/summary.md b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/summary.md new file mode 100644 index 0000000..5b9596b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/summary.md @@ -0,0 +1,6 @@ +# Tiled 5K60 Reset Sustain 10s + +| Case | Frames | Effective fps | Avg logical ms | P95 logical ms | Steady p95 ms | Max logical ms | Steady max-tile p95 ms | Payload bytes | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---:|---| +| 30mbps_reset150_inflight1_10s | 600 | 60.025 | 12.436 | 13.816 | 13.816 | 123.366 | 11.685 | 4007720 | PASS | +| 60mbps_reset150_inflight1_10s | 600 | 60.005 | 12.428 | 13.814 | 13.814 | 127.576 | 10.879 | 4959132 | PASS | diff --git a/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.csv b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.csv new file mode 100644 index 0000000..4446316 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.csv @@ -0,0 +1,7201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.9434,23.9880,0.0312,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.3764,24.7913,0.0156,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,3.2815,25.0859,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,3.1241,27.5649,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.9434,5.7797,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.3764,5.5883,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,3.2815,10.4861,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,3.1241,10.4682,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.9434,5.7072,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.3764,5.6012,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,3.2815,10.4142,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,3.1241,10.4440,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.9434,5.7054,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.3764,5.6108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,3.2815,10.5457,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,3.1241,10.5550,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.9434,5.6829,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.3764,5.6619,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,3.2815,10.4177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,3.1241,10.5395,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.9434,5.7585,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.3764,5.6630,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,3.2815,10.3753,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,3.1241,10.4020,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.9434,5.5550,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.3764,5.5057,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,3.2815,10.2402,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,3.1241,10.2835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.9434,5.6691,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.3764,5.5207,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,3.2815,10.2587,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,3.1241,10.2520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.9434,5.8733,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.3764,5.5990,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,3.2815,10.4899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,3.1241,10.4234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.9434,5.6870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.3764,5.6072,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,3.2815,10.4340,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,3.1241,10.4440,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.9434,5.6353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.3764,5.6297,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,3.2815,10.4787,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,3.1241,10.5281,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.9434,5.6260,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.3764,5.5921,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,3.2815,10.4057,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,3.1241,10.4104,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.9434,5.8037,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.3764,5.6481,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,3.2815,10.3701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,3.1241,10.4214,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.9434,5.6882,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.3764,5.6518,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,3.2815,10.3685,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,3.1241,10.4011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.9434,5.7005,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.3764,5.5037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,3.2815,10.2992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,3.1241,10.3018,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.9434,5.6603,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.3764,5.5969,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,3.2815,10.2754,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,3.1241,10.2865,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.9434,5.6937,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.3764,5.5467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,3.2815,10.3445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,3.1241,10.3375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.9434,5.6448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.3764,5.5948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,3.2815,10.2639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,3.1241,10.2925,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.9434,5.6487,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.3764,5.4853,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,3.2815,10.2718,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,3.1241,10.2479,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.9434,5.7404,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.3764,5.6038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,3.2815,10.2851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,3.1241,10.3258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.9434,5.7535,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.3764,5.5766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,3.2815,10.2615,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,3.1241,10.3156,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.9434,5.8418,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.3764,5.5954,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,3.2815,10.3492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,3.1241,10.3420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.9434,5.8147,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.3764,5.5682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,3.2815,10.4577,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,3.1241,10.5123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.9434,5.7446,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.3764,5.6305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,3.2815,10.4265,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,3.1241,10.3407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.9434,5.9011,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.3764,5.6239,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,3.2815,10.3402,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,3.1241,10.2790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.9434,5.8910,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.3764,5.6730,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,3.2815,10.4023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,3.1241,10.4487,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.9434,5.6301,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.3764,5.5508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,3.2815,10.3136,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,3.1241,10.2759,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.9434,5.7171,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.3764,5.5366,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,3.2815,10.2220,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,3.1241,10.2071,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.9434,5.9211,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.3764,5.5900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,3.2815,10.4559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,3.1241,10.4107,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.9434,5.8197,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.3764,5.6842,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,3.2815,10.4799,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,3.1241,10.5360,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.9434,5.7206,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.3764,5.6100,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,3.2815,10.3756,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,3.1241,10.5413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.9434,5.8245,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.3764,5.5608,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,3.2815,10.3552,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,3.1241,10.3441,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.9434,5.9277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.3764,5.6471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,3.2815,10.3906,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,3.1241,10.4015,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.9434,5.7289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.3764,5.5196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,3.2815,10.3885,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,3.1241,10.3440,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.9434,5.9162,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.3764,5.6476,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,3.2815,10.4891,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,3.1241,10.4138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.9434,5.9445,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.3764,5.6938,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,3.2815,10.5509,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,3.1241,10.4996,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.9434,5.8190,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.3764,5.6734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,3.2815,10.3739,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,3.1241,10.4288,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.9434,5.8858,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.3764,5.6565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,3.2815,10.3612,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,3.1241,10.3646,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.9434,5.6727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.3764,5.6104,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,3.2815,10.2216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,3.1241,10.3036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.9434,5.7310,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.3764,5.5281,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,3.2815,10.3232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,3.1241,10.2589,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.9434,5.6934,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.3764,5.5234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,3.2815,10.2754,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,3.1241,10.2880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.9434,5.6620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.3764,5.5548,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,3.2815,10.3976,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,3.1241,10.4140,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.9434,5.7619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.3764,5.5467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,3.2815,10.4238,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,3.1241,10.4184,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.9434,5.6438,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.3764,5.5113,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,3.2815,10.2231,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,3.1241,10.1948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.9434,5.9102,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.3764,5.6709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,3.2815,10.3991,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,3.1241,10.3257,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.9434,5.8808,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.3764,5.6091,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,3.2815,10.4349,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,3.1241,10.4305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.9434,5.8427,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.3764,5.6482,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,3.2815,10.4598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,3.1241,10.4287,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.9434,5.7735,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.3764,5.6017,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,3.2815,10.3830,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,3.1241,10.4224,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.9434,5.6984,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.3764,5.5222,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,3.2815,10.2451,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,3.1241,10.2229,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.9434,5.5927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.3764,5.5008,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,3.2815,10.2231,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,3.1241,10.2215,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.9434,5.5890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.3764,5.4807,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,3.2815,10.2709,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,3.1241,10.2830,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.9434,5.6318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.3764,5.5255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,3.2815,10.1894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,3.1241,10.1628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.9434,5.7110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.3764,5.5588,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,3.2815,10.2875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,3.1241,10.2731,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.9434,5.7895,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.3764,5.6072,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,3.2815,10.2227,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,3.1241,10.1936,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.9434,5.9075,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.3764,5.6137,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,3.2815,10.2577,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,3.1241,10.1938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.9434,5.8822,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.3764,5.5231,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,3.2815,10.3913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,3.1241,10.3457,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.9434,5.8825,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.3764,5.5968,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,3.2815,10.3786,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,3.1241,10.3210,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.9434,5.8034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.3764,5.6215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,3.2815,10.3385,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,3.1241,10.3298,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.9434,5.6806,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.3764,5.5756,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,3.2815,10.0797,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,3.1241,10.1473,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.9434,5.8195,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.3764,5.5923,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,3.2815,10.2896,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,3.1241,10.2546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.9434,5.7028,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,3.3764,5.6036,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,3.2815,10.3784,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,3.1241,10.3738,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.9434,5.7472,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,3.3764,5.5079,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,3.2815,10.3308,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,3.1241,10.2754,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.9434,5.7247,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,3.3764,5.4982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,3.2815,10.3198,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,3.1241,10.2673,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.9434,5.6875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,3.3764,5.5635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,3.2815,10.3085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,3.1241,10.3290,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.9434,5.6988,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,3.3764,5.5867,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,3.2815,10.3958,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,3.1241,10.3978,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.9434,5.7921,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,3.3764,5.5515,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,3.2815,10.3978,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,3.1241,10.3638,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.9434,5.6735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,3.3764,5.5433,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,3.2815,10.3870,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,3.1241,10.3763,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.9434,5.7250,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,3.3764,5.5743,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,3.2815,10.3867,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,3.1241,10.4447,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.9434,5.7817,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,3.3764,5.5758,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,3.2815,12.6176,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,3.1241,12.5378,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.9434,5.8462,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,3.3764,5.6614,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,3.2815,10.4695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,3.1241,10.3773,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.9434,5.9087,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,3.3764,5.6126,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,3.2815,10.5812,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,3.1241,10.4372,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.9434,5.9764,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,3.3764,5.6092,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,3.2815,10.5189,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,3.1241,10.4446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.9434,5.8882,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,3.3764,5.5687,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,3.2815,10.4558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,3.1241,10.4417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.9434,5.7718,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,3.3764,5.6096,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,3.2815,10.4120,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,3.1241,10.4808,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.9434,5.7921,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,3.3764,5.6337,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,3.2815,10.4732,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,3.1241,10.5323,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.9434,5.6247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,3.3764,5.5827,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,3.2815,10.2897,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,3.1241,10.4007,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.9434,5.6449,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,3.3764,5.5794,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,3.2815,10.2164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,3.1241,10.3337,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.9434,5.6107,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,3.3764,5.4801,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,3.2815,10.3140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,3.1241,10.3018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.9434,5.8256,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,3.3764,5.5381,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,3.2815,10.3034,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,3.1241,10.2780,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.9434,5.8327,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,3.3764,5.5750,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,3.2815,10.3792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,3.1241,10.3718,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.9434,5.7810,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,3.3764,5.5816,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,3.2815,10.4659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,3.1241,10.4547,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.9434,5.8325,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,3.3764,5.5873,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,3.2815,10.5232,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,3.1241,10.4990,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.9434,5.9029,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,3.3764,5.5741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,3.2815,10.4678,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,3.1241,10.4626,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.9434,5.9203,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,3.3764,5.5901,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,3.2815,10.4488,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,3.1241,10.4573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.9434,5.8206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,3.3764,5.5822,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,3.2815,10.5110,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,3.1241,10.4667,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.9434,5.8324,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,3.3764,5.5761,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,3.2815,10.4242,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,3.1241,10.4604,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.9434,5.8403,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,3.3764,5.5296,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,3.2815,11.3585,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,3.1241,11.2085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.9434,5.9175,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,3.3764,21.9605,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,3.2815,10.2417,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,3.1241,21.7123,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.9434,5.5688,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,3.3764,6.6001,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,3.2815,10.2892,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,3.1241,11.5188,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.9434,5.6757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,3.3764,5.6072,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,3.2815,10.3924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,3.1241,16.2275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.9434,5.5229,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,3.3764,6.5786,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,3.2815,10.3080,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,3.1241,11.4035,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.9434,5.4386,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.3764,9.1665,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,3.2815,10.1714,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,3.1241,19.8824,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.9434,5.4716,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.3764,6.6344,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,3.2815,10.1820,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,3.1241,17.2961,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.9434,5.5112,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.3764,6.4423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,3.2815,10.2946,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,3.1241,11.3304,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.9434,5.7189,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.3764,5.5546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,3.2815,10.4531,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,3.1241,10.4059,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.9434,6.1705,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.3764,5.7358,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,3.2815,10.5696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,3.1241,10.5288,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.9434,5.8791,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.3764,5.6413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,3.2815,10.5020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,3.1241,10.4418,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.9434,5.8820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.3764,5.6405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,3.2815,10.6050,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,3.1241,10.4836,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.9434,6.1056,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.3764,5.7013,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,3.2815,10.6009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,3.1241,10.5476,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.9434,5.8231,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.3764,5.6045,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,3.2815,10.4959,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,3.1241,10.4680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.9434,5.7398,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.3764,5.5653,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,3.2815,10.2934,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,3.1241,10.2562,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.9434,5.8445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.3764,5.6584,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,3.2815,10.3691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,3.1241,10.3965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.9434,5.8654,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.3764,5.5955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,3.2815,10.3217,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,3.1241,10.2803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.9434,5.8324,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.3764,5.6467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,3.2815,10.3215,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,3.1241,10.2957,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.9434,5.8518,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.3764,5.6631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,3.2815,10.6113,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,3.1241,10.4098,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.9434,6.4498,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.3764,5.9759,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,3.2815,10.3875,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,3.1241,10.1400,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.9434,6.1674,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.3764,5.6851,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,3.2815,9.9343,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,3.1241,10.0380,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.9434,6.6582,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.3764,6.3073,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,3.2815,10.2634,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,3.1241,10.1689,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.9434,6.1445,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.3764,5.8416,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,3.2815,10.3111,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,3.1241,10.3131,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.9434,6.6340,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.3764,5.8938,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,3.2815,10.4305,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,3.1241,10.4417,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.9434,6.4389,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.3764,5.9168,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,3.2815,10.6278,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,3.1241,10.5196,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.9434,6.1715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.3764,5.8571,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,3.2815,9.9945,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,3.1241,9.8085,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.9434,6.2805,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.3764,5.7363,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,3.2815,10.0007,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,3.1241,10.0731,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.9434,6.2610,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.3764,5.7690,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,3.2815,10.1059,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,3.1241,10.0199,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.9434,6.1470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.3764,5.7815,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,3.2815,9.7424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,3.1241,9.8576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.9434,6.0360,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.3764,5.6731,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,3.2815,10.5200,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,3.1241,10.4304,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.9434,6.5029,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.3764,6.1646,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,3.2815,10.3771,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,3.1241,10.0120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.9434,6.2780,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.3764,6.0290,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,3.2815,8.6848,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,3.1241,8.1711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.9434,5.8909,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.3764,5.8012,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,3.2815,10.3360,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,3.1241,10.2495,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.9434,6.1297,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.3764,5.7367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,3.2815,10.5176,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,3.1241,10.3880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.9434,5.9414,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,3.3764,5.6035,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,3.2815,10.3924,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,3.1241,10.3557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.9434,5.8744,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,3.3764,5.6826,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,3.2815,10.2768,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,3.1241,10.2644,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.9434,5.8969,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,3.3764,5.6619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,3.2815,10.3324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,3.1241,10.3377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.9434,5.7012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,3.3764,5.6378,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,3.2815,10.3388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,3.1241,10.3582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.9434,5.8578,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,3.3764,5.6248,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,3.2815,10.3901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,3.1241,10.3848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.9434,5.7547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,3.3764,5.6270,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,3.2815,10.2199,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,3.1241,10.2620,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.9434,5.9544,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,3.3764,5.7103,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,3.2815,10.4025,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,3.1241,10.3628,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.9434,5.8635,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,3.3764,5.6380,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,3.2815,12.7241,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,3.1241,12.7531,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.9434,5.9885,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,3.3764,5.6309,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,3.2815,10.4990,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,3.1241,10.2872,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.9434,6.1566,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,3.3764,5.8047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,3.2815,10.4320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,3.1241,10.3509,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.9434,5.9985,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,3.3764,5.5633,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,3.2815,10.4410,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,3.1241,10.3619,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.9434,6.1922,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,3.3764,5.9198,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,3.2815,10.5425,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,3.1241,10.3378,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.9434,6.1253,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,3.3764,5.7243,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,3.2815,10.3448,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,3.1241,10.2577,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.9434,5.9864,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,3.3764,6.1160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,3.2815,10.0152,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,3.1241,9.3692,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.9434,6.3361,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,3.3764,5.9390,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,3.2815,10.1623,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,3.1241,10.0665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.9434,6.4796,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,3.3764,5.9068,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,3.2815,10.2201,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,3.1241,10.2856,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.9434,6.3216,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,3.3764,6.0560,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,3.2815,10.0890,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,3.1241,10.1587,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.9434,6.3043,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,3.3764,5.8467,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,3.2815,10.1612,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,3.1241,10.1703,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.9434,6.2030,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,3.3764,5.8601,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,3.2815,10.0350,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,3.1241,10.0271,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.9434,6.0033,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,3.3764,5.7901,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,3.2815,10.3182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,3.1241,9.9675,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.9434,5.9759,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,3.3764,5.7086,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,3.2815,9.9755,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,3.1241,9.8391,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.9434,6.3408,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,3.3764,5.7873,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,3.2815,9.9001,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,3.1241,9.9815,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.9434,6.2654,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,3.3764,5.8165,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,3.2815,10.0560,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,3.1241,10.0605,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.9434,6.3467,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,3.3764,5.9032,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,3.2815,10.3952,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,3.1241,10.2348,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.9434,6.1695,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,3.3764,5.7408,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,3.2815,9.3369,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,3.1241,9.8298,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.9434,6.2145,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,3.3764,5.7404,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,3.2815,10.4638,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,3.1241,10.2576,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.9434,5.8370,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,3.3764,5.5184,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,3.2815,10.4913,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,3.1241,10.4017,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.9434,5.8615,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,3.3764,5.6059,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,3.2815,10.5312,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,3.1241,10.4284,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.9434,5.9486,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,3.3764,5.6030,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,3.2815,10.4960,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,3.1241,10.4198,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.9434,5.9500,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,3.3764,5.6848,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,3.2815,10.6175,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,3.1241,10.0557,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.9434,41.9869,0.0136,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +601,3.3764,28.8426,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +602,3.2815,25.2319,0.0062,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +603,3.1241,25.9904,0.0152,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +604,5.9434,5.8488,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +605,3.3764,5.6361,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +606,3.2815,10.0329,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +607,3.1241,10.1653,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +608,5.9434,6.1052,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +609,3.3764,5.7184,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +610,3.2815,8.8582,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +611,3.1241,10.2921,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +612,5.9434,5.8627,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +613,3.3764,5.7557,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +614,3.2815,9.9121,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +615,3.1241,10.2779,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +616,5.9434,5.7635,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +617,3.3764,5.6095,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +618,3.2815,10.4010,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +619,3.1241,10.3185,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +620,5.9434,5.7748,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +621,3.3764,5.5710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +622,3.2815,10.5066,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +623,3.1241,10.4163,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +624,5.9434,5.7176,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +625,3.3764,5.5656,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +626,3.2815,10.4307,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +627,3.1241,10.2520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +628,5.9434,6.4990,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +629,3.3764,6.2315,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +630,3.2815,10.3778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +631,3.1241,10.3763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +632,5.9434,5.7976,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +633,3.3764,5.5552,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +634,3.2815,10.4545,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +635,3.1241,10.3472,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +636,5.9434,5.8825,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +637,3.3764,5.8107,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +638,3.2815,10.3892,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +639,3.1241,10.3605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +640,5.9434,5.7025,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +641,3.3764,5.4745,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +642,3.2815,10.3820,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +643,3.1241,10.3018,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +644,5.9434,5.8644,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +645,3.3764,5.6324,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +646,3.2815,10.4318,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +647,3.1241,10.3875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +648,5.9434,5.7009,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +649,3.3764,5.4496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +650,3.2815,10.4224,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +651,3.1241,10.3486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +652,5.9434,5.7520,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +653,3.3764,5.5560,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +654,3.2815,10.4390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +655,3.1241,10.3503,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +656,5.9434,5.7530,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +657,3.3764,5.5292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +658,3.2815,10.5197,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +659,3.1241,10.4117,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +660,5.9434,5.7350,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +661,3.3764,5.4780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +662,3.2815,10.4540,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +663,3.1241,10.3682,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +664,5.9434,5.8463,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +665,3.3764,5.5991,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +666,3.2815,10.4177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +667,3.1241,10.3018,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +668,5.9434,5.7664,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +669,3.3764,5.6190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +670,3.2815,10.4458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +671,3.1241,10.4114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +672,5.9434,5.7144,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +673,3.3764,5.5215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +674,3.2815,10.4170,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +675,3.1241,10.3639,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +676,5.9434,5.8592,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +677,3.3764,5.5729,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +678,3.2815,10.5670,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +679,3.1241,10.4896,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +680,5.9434,5.8286,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +681,3.3764,5.6190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +682,3.2815,10.3542,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +683,3.1241,10.3631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +684,5.9434,5.6635,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +685,3.3764,5.5564,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +686,3.2815,10.5697,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +687,3.1241,10.4792,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +688,5.9434,5.8415,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +689,3.3764,5.6563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +690,3.2815,10.5458,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,3.1241,10.4688,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +692,5.9434,5.8745,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +693,3.3764,5.6319,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +694,3.2815,10.4561,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +695,3.1241,10.3698,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +696,5.9434,5.6686,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +697,3.3764,5.5605,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +698,3.2815,10.3852,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +699,3.1241,10.3215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +700,5.9434,5.8228,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +701,3.3764,5.5928,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +702,3.2815,10.5573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +703,3.1241,10.5333,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +704,5.9434,5.7823,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +705,3.3764,5.5885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +706,3.2815,10.4803,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +707,3.1241,10.4216,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +708,5.9434,5.8811,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +709,3.3764,5.5840,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +710,3.2815,10.5188,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +711,3.1241,10.3862,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +712,5.9434,5.7498,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +713,3.3764,5.6239,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +714,3.2815,10.4066,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +715,3.1241,10.3741,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +716,5.9434,5.8371,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +717,3.3764,5.6254,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +718,3.2815,10.5895,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +719,3.1241,10.5282,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +720,5.9434,5.8327,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +721,3.3764,5.7085,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,3.2815,10.5797,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +723,3.1241,10.4960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +724,5.9434,5.8278,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +725,3.3764,5.6330,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,3.2815,10.5026,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +727,3.1241,10.4488,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +728,5.9434,5.7885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +729,3.3764,5.6317,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,3.2815,10.4563,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +731,3.1241,10.3877,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +732,5.9434,5.8603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +733,3.3764,5.5389,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,3.2815,10.4385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +735,3.1241,10.3942,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +736,5.9434,5.6838,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +737,3.3764,5.5625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,3.2815,10.8605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +739,3.1241,10.7475,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +740,5.9434,5.7642,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +741,3.3764,5.6030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,3.2815,10.4256,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +743,3.1241,10.3622,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.9434,5.8228,0.0278,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +745,3.3764,5.5639,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,3.2815,10.4226,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +747,3.1241,10.3638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +748,5.9434,5.7317,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +749,3.3764,5.5082,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,3.2815,10.3682,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +751,3.1241,10.2935,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +752,5.9434,5.7703,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +753,3.3764,5.5081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,3.2815,10.3552,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +755,3.1241,10.2718,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +756,5.9434,5.8205,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +757,3.3764,5.6005,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,3.2815,10.3993,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +759,3.1241,10.3434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +760,5.9434,5.7188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,3.3764,5.5584,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,3.2815,10.3389,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +763,3.1241,10.3319,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +764,5.9434,6.0166,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,3.3764,5.6605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,3.2815,10.4367,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +767,3.1241,10.3943,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +768,5.9434,5.7695,0.0296,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,3.3764,5.5803,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,3.2815,10.4593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +771,3.1241,10.4409,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.9434,5.8765,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,3.3764,5.6393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,3.2815,10.4415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +775,3.1241,10.4457,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +776,5.9434,5.7964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,3.3764,5.5879,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,3.2815,10.5353,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +779,3.1241,10.5743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +780,5.9434,6.0760,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,3.3764,5.6578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,3.2815,10.5797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +783,3.1241,10.5036,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.9434,5.6722,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,3.3764,5.5618,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,3.2815,10.4808,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +787,3.1241,10.4410,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +788,5.9434,5.9348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,3.3764,5.6605,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,3.2815,10.4634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +791,3.1241,10.4565,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +792,5.9434,5.7130,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,3.3764,5.5941,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,3.2815,10.3159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +795,3.1241,10.4019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.9434,5.6108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,3.3764,5.5265,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,3.2815,10.2649,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +799,3.1241,10.2390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +800,5.9434,5.8521,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,3.3764,5.5435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,3.2815,10.2508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +803,3.1241,10.2160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.9434,5.8742,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,3.3764,5.5602,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,3.2815,10.3416,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +807,3.1241,10.2300,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +808,5.9434,5.8344,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,3.3764,5.6390,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,3.2815,10.4727,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +811,3.1241,10.4140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +812,5.9434,5.7311,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,3.3764,5.5708,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,3.2815,10.2483,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +815,3.1241,10.2836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +816,5.9434,5.7225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,3.3764,5.6259,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,3.2815,10.3919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,3.1241,10.3126,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +820,5.9434,5.9210,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,3.3764,5.6320,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,3.2815,10.3852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,3.1241,10.2900,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.9434,6.0345,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,3.3764,5.6973,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,3.2815,10.5042,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,3.1241,10.4089,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +828,5.9434,6.1928,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,3.3764,5.8005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,3.2815,10.6262,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,3.1241,10.4525,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +832,5.9434,6.5390,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,3.3764,5.9372,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,3.2815,11.0498,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,3.1241,10.7226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +836,5.9434,6.0293,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,3.3764,5.6620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,3.2815,10.4171,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +839,3.1241,10.3595,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +840,5.9434,5.7185,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,3.3764,5.5546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,3.2815,10.3971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +843,3.1241,10.3497,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.9434,5.8210,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,3.3764,5.5615,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,3.2815,10.3507,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +847,3.1241,10.3116,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +848,5.9434,6.1547,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,3.3764,5.7990,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,3.2815,10.5964,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +851,3.1241,10.5079,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.9434,5.9032,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,3.3764,5.6561,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,3.2815,10.3288,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +855,3.1241,10.2433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +856,5.9434,6.2020,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,3.3764,5.7267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,3.2815,10.5138,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +859,3.1241,10.4775,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +860,5.9434,5.6934,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,3.3764,5.5710,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,3.2815,10.3587,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,3.1241,10.2787,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +864,5.9434,5.9635,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,3.3764,5.5924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,3.2815,10.3601,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,3.1241,10.3415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +868,5.9434,5.8852,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,3.3764,5.6145,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,3.2815,10.1945,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,3.1241,10.1842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +872,5.9434,5.7777,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,3.3764,5.5693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,3.2815,10.3292,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,3.1241,10.2795,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +876,5.9434,5.8786,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,3.3764,5.5846,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,3.2815,10.3885,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +879,3.1241,10.3281,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +880,5.9434,5.7097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.3764,5.5681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,3.2815,10.3040,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +883,3.1241,10.2506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +884,5.9434,5.7297,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.3764,5.5360,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,3.2815,10.2657,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +887,3.1241,10.2062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +888,5.9434,5.7568,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.3764,5.5993,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,3.2815,10.2299,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +891,3.1241,10.1879,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.9434,5.9332,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.3764,5.6606,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,3.2815,10.5053,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +895,3.1241,10.4040,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +896,5.9434,6.0753,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.3764,5.6556,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,3.2815,10.4750,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +899,3.1241,10.3929,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +900,5.9434,5.9385,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.3764,5.6584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,3.2815,10.3878,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +903,3.1241,10.3302,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +904,5.9434,5.9617,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.3764,5.6680,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,3.2815,10.3405,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,3.1241,10.2546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +908,5.9434,6.9767,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.3764,5.9820,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,3.2815,10.1832,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,3.1241,10.2739,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +912,5.9434,6.3359,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.3764,5.7475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,3.2815,9.6077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,3.1241,9.5531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +916,5.9434,6.1709,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.3764,5.7230,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,3.2815,10.6125,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,3.1241,10.4615,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +920,5.9434,6.2166,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.3764,5.8200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,3.2815,10.5195,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,3.1241,10.4283,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +924,5.9434,6.3571,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.3764,5.9771,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,3.2815,10.4991,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,3.1241,10.5180,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +928,5.9434,6.4739,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.3764,5.7519,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,3.2815,10.1806,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +931,3.1241,10.0640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +932,5.9434,6.3765,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.3764,5.6645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,3.2815,10.3715,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +935,3.1241,10.2144,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.9434,6.1118,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.3764,5.7153,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,3.2815,10.4643,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +939,3.1241,10.3911,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +940,5.9434,6.4049,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.3764,5.8758,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,3.2815,10.5979,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +943,3.1241,10.5262,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +944,5.9434,6.0380,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.3764,5.7007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,3.2815,10.4318,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +947,3.1241,10.3742,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +948,5.9434,6.0326,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.3764,5.7728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,3.2815,10.4018,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,3.1241,10.3700,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +952,5.9434,5.6863,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.3764,5.6635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,3.2815,10.1832,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,3.1241,10.2944,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +956,5.9434,5.8314,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.3764,5.6825,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,3.2815,10.5932,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,3.1241,10.3961,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +960,5.9434,6.3913,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,3.3764,5.7676,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,3.2815,8.7580,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,3.1241,8.6846,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.9434,6.1241,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,3.3764,5.7263,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,3.2815,10.6788,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +967,3.1241,10.6367,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +968,5.9434,6.1673,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,3.3764,5.7072,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,3.2815,10.7724,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,3.1241,10.5981,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +972,5.9434,6.1695,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,3.3764,5.7667,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,3.2815,10.4958,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +975,3.1241,10.4301,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +976,5.9434,5.7442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,3.3764,5.5945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,3.2815,10.3234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +979,3.1241,10.2689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +980,5.9434,5.7088,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,3.3764,5.5907,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,3.2815,10.1937,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +983,3.1241,10.2219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.9434,5.7209,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,3.3764,5.6355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,3.2815,10.4644,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +987,3.1241,10.3360,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +988,5.9434,5.9880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,3.3764,5.7315,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,3.2815,10.8105,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +991,3.1241,10.6935,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.9434,6.3336,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,3.3764,5.7339,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,3.2815,9.5657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,3.1241,9.9382,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.9434,5.9185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,3.3764,5.6677,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,3.2815,10.5173,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,3.1241,10.3930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.9434,6.2390,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,3.3764,5.7916,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,3.2815,10.6528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,3.1241,10.4967,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1004,5.9434,5.8957,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,3.3764,5.5898,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,3.2815,10.5096,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1007,3.1241,10.3432,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1008,5.9434,6.5420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,3.3764,5.9627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,3.2815,9.8482,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1011,3.1241,10.1147,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.9434,6.2502,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,3.3764,5.9522,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,3.2815,11.0688,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1015,3.1241,10.8515,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1016,5.9434,5.9915,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,3.3764,5.6095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,3.2815,10.1020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1019,3.1241,10.1002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.9434,5.7803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,3.3764,5.5585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,3.2815,10.2194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1023,3.1241,10.1824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.9434,6.2288,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,3.3764,5.7307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,3.2815,10.0520,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1027,3.1241,10.0821,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.9434,6.2794,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,3.3764,5.7052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,3.2815,10.1929,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1031,3.1241,10.0829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1032,5.9434,6.9715,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,3.3764,5.8829,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,3.2815,10.2587,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1035,3.1241,8.9695,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1036,5.9434,6.4538,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,3.3764,6.0251,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,3.2815,10.8038,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,3.1241,10.6372,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1040,5.9434,6.6543,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,3.3764,5.8845,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,3.2815,10.0252,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,3.1241,9.9077,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1044,5.9434,6.2365,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,3.3764,5.7851,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,3.2815,9.7599,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,3.1241,9.9459,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.9434,6.6410,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,3.3764,5.6840,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,3.2815,10.2670,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,3.1241,10.0270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.9434,6.2375,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,3.3764,5.7604,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,3.2815,10.4625,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1055,3.1241,10.3970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.9434,6.0867,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,3.3764,5.6867,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,3.2815,10.5326,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1059,3.1241,10.4812,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.9434,5.8252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,3.3764,5.6359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,3.2815,10.3320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1063,3.1241,10.2781,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.9434,5.8578,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,3.3764,5.6411,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,3.2815,10.3737,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1067,3.1241,10.3598,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1068,5.9434,6.0204,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,3.3764,5.7472,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,3.2815,10.6783,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1071,3.1241,10.6828,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1072,5.9434,6.4014,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,3.3764,5.7195,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,3.2815,10.0082,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1075,3.1241,9.9602,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.9434,6.3463,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,3.3764,5.6673,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,3.2815,10.3458,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1079,3.1241,9.9351,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.9434,6.2881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,3.3764,5.8672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,3.2815,9.8643,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,3.1241,9.8622,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.9434,7.8280,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.3764,7.4009,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,3.2815,10.3209,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,3.1241,10.2097,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.9434,6.7843,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.3764,5.8433,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,3.2815,9.5359,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,3.1241,9.6847,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1092,5.9434,5.9682,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.3764,5.7141,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,3.2815,10.3811,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,3.1241,10.2097,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.9434,6.1825,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.3764,5.7782,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,3.2815,10.8270,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1099,3.1241,10.7180,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1100,5.9434,6.1454,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.3764,5.8149,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,3.2815,10.4898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,3.1241,10.4236,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.9434,5.5873,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.3764,5.4777,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,3.2815,10.1467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1107,3.1241,10.1365,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.9434,5.8339,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.3764,5.6290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,3.2815,10.0502,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,3.1241,10.1639,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.9434,5.5960,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.3764,5.5098,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,3.2815,10.3227,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,3.1241,10.2677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.9434,6.2062,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.3764,5.8174,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,3.2815,10.1430,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,3.1241,10.1620,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1120,5.9434,6.1009,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.3764,5.9347,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,3.2815,10.0063,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1123,3.1241,10.3930,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.9434,6.2134,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.3764,5.6213,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,3.2815,10.2526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,3.1241,10.1936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1128,5.9434,5.7960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.3764,5.5823,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,3.2815,10.3267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,3.1241,10.3443,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1132,5.9434,6.2529,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.3764,6.3060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,3.2815,10.6635,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,3.1241,10.4413,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.9434,6.0910,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.3764,5.9872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,3.2815,9.8061,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,3.1241,9.8777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.9434,6.8614,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.3764,6.3746,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,3.2815,10.3039,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,3.1241,10.2893,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.9434,6.1951,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.3764,5.8180,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,3.2815,10.4635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,3.1241,10.4275,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.9434,6.6641,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.3764,6.0551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,3.2815,9.9807,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,3.1241,9.7658,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.9434,6.1652,0.0321,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.3764,5.7745,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,3.2815,10.2786,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,3.1241,10.3145,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.9434,5.9452,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.3764,5.6813,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,3.2815,10.5094,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,3.1241,10.3944,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.9434,6.1396,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.3764,5.7865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,3.2815,9.8917,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,3.1241,9.9260,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.9434,6.1876,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.3764,5.9181,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,3.2815,9.8532,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1167,3.1241,10.0721,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.9434,6.5644,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.3764,5.8209,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,3.2815,9.9695,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,3.1241,9.9048,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.9434,6.3055,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.3764,5.7884,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,3.2815,9.8923,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,3.1241,9.5880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.9434,6.6442,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.3764,6.0025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,3.2815,10.3013,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,3.1241,10.2952,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.9434,6.4047,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.3764,5.7387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,3.2815,9.9558,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,3.1241,10.0416,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1184,5.9434,6.2706,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.3764,5.7111,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,3.2815,9.7183,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,3.1241,9.0972,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.9434,6.7503,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.3764,5.8551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,3.2815,9.9409,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,3.1241,9.9870,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.9434,6.2770,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.3764,5.7855,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,3.2815,9.9271,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,3.1241,10.0165,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.9434,6.8396,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.3764,6.6146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,3.2815,10.3906,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,3.1241,9.8821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1200,5.9434,46.9365,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1201,3.3764,29.0770,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1202,3.2815,26.3708,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1203,3.1241,25.6227,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1204,5.9434,5.7426,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1205,3.3764,5.6978,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1206,3.2815,10.5320,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1207,3.1241,10.5418,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1208,5.9434,5.7572,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1209,3.3764,5.6072,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1210,3.2815,10.4636,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1211,3.1241,10.4620,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1212,5.9434,5.7566,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1213,3.3764,5.7017,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1214,3.2815,10.6121,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1215,3.1241,10.5746,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1216,5.9434,5.6825,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1217,3.3764,5.6072,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1218,3.2815,10.4410,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1219,3.1241,10.4938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1220,5.9434,5.7448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1221,3.3764,5.6655,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1222,3.2815,10.6498,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1223,3.1241,10.6502,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1224,5.9434,5.6711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1225,3.3764,5.6294,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1226,3.2815,10.3905,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1227,3.1241,10.4828,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1228,5.9434,5.6654,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1229,3.3764,5.6417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1230,3.2815,10.3815,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1231,3.1241,10.3962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1232,5.9434,5.6530,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1233,3.3764,5.6279,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1234,3.2815,10.4388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1235,3.1241,10.4450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1236,5.9434,5.7922,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1237,3.3764,5.7074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1238,3.2815,10.5570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1239,3.1241,10.5340,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1240,5.9434,5.7269,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1241,3.3764,5.6772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1242,3.2815,10.5522,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1243,3.1241,10.5285,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1244,5.9434,5.7811,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1245,3.3764,5.6875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1246,3.2815,10.5027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1247,3.1241,10.4729,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1248,5.9434,5.7466,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1249,3.3764,5.6738,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1250,3.2815,10.5368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1251,3.1241,10.4620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1252,5.9434,5.9593,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1253,3.3764,5.7007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1254,3.2815,10.7751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1255,3.1241,10.7270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1256,5.9434,5.9897,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1257,3.3764,5.7822,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1258,3.2815,10.6513,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1259,3.1241,10.5455,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1260,5.9434,5.8801,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1261,3.3764,5.7198,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1262,3.2815,10.5869,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1263,3.1241,10.5353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1264,5.9434,5.8851,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1265,3.3764,5.7175,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1266,3.2815,10.5758,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1267,3.1241,10.5074,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1268,5.9434,5.9647,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1269,3.3764,5.8385,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1270,3.2815,10.5529,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1271,3.1241,10.4927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1272,5.9434,6.1052,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1273,3.3764,6.2585,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1274,3.2815,10.1911,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1275,3.1241,10.2396,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1276,5.9434,6.4684,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1277,3.3764,5.9663,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1278,3.2815,10.4096,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1279,3.1241,10.9403,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1280,5.9434,8.3274,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1281,3.3764,6.0732,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1282,3.2815,11.0255,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1283,3.1241,10.7463,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1284,5.9434,7.0249,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1285,3.3764,6.2037,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1286,3.2815,10.4243,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1287,3.1241,10.0364,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.9434,6.5026,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1289,3.3764,5.9720,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1290,3.2815,10.2335,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,3.1241,10.0858,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1292,5.9434,6.4787,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1293,3.3764,5.9886,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1294,3.2815,10.7218,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1295,3.1241,10.6729,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1296,5.9434,6.4873,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1297,3.3764,5.9381,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1298,3.2815,10.0720,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1299,3.1241,10.0102,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1300,5.9434,6.4631,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1301,3.3764,5.9120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1302,3.2815,10.3791,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1303,3.1241,10.1810,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1304,5.9434,6.3390,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1305,3.3764,5.8908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1306,3.2815,10.6241,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1307,3.1241,10.4502,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1308,5.9434,6.5168,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1309,3.3764,5.9776,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1310,3.2815,11.4164,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1311,3.1241,11.4100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1312,5.9434,6.6875,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1313,3.3764,5.9308,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1314,3.2815,9.9062,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1315,3.1241,10.0650,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1316,5.9434,6.6408,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1317,3.3764,5.9250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1318,3.2815,10.2428,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1319,3.1241,10.1038,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1320,5.9434,6.5786,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1321,3.3764,6.0165,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,3.2815,10.9981,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1323,3.1241,10.6583,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1324,5.9434,6.6585,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1325,3.3764,6.2288,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,3.2815,8.3630,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1327,3.1241,7.2732,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1328,5.9434,6.0430,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1329,3.3764,5.7575,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,3.2815,10.6076,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1331,3.1241,10.3877,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1332,5.9434,6.1997,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1333,3.3764,5.8492,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,3.2815,10.7920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1335,3.1241,10.7049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1336,5.9434,6.0802,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1337,3.3764,5.8057,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,3.2815,10.6927,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1339,3.1241,10.6017,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1340,5.9434,5.9666,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1341,3.3764,5.7404,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,3.2815,10.5605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1343,3.1241,10.4980,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.9434,6.0315,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1345,3.3764,5.7687,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,3.2815,10.6125,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1347,3.1241,10.5024,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1348,5.9434,6.5473,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1349,3.3764,6.1720,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,3.2815,11.1408,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1351,3.1241,11.0585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1352,5.9434,6.9955,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1353,3.3764,5.9800,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,3.2815,10.1430,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1355,3.1241,10.1564,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1356,5.9434,7.4560,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1357,3.3764,7.1230,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,3.2815,10.2538,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1359,3.1241,10.1502,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1360,5.9434,6.8437,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,3.3764,5.9160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,3.2815,10.0185,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1363,3.1241,9.9973,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1364,5.9434,6.7865,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,3.3764,6.0225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,3.2815,14.1267,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1367,3.1241,13.7141,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1368,5.9434,6.2055,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,3.3764,5.8759,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,3.2815,10.6411,0.0317,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1371,3.1241,10.5652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.9434,6.3557,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,3.3764,5.9380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,3.2815,10.6294,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1375,3.1241,10.4096,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1376,5.9434,6.4048,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,3.3764,5.9802,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,3.2815,10.8946,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1379,3.1241,10.7986,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1380,5.9434,6.4326,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,3.3764,5.9459,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,3.2815,10.8283,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1383,3.1241,10.7329,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1384,5.9434,6.2618,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,3.3764,5.8676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,3.2815,10.6643,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1387,3.1241,10.5664,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1388,5.9434,6.3902,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,3.3764,5.9146,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,3.2815,10.6852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1391,3.1241,10.5467,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1392,5.9434,6.2025,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,3.3764,5.8351,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,3.2815,11.0141,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1395,3.1241,10.9106,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.9434,5.8681,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,3.3764,5.6212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,3.2815,10.4612,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1399,3.1241,10.4801,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.9434,5.7052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,3.3764,5.6394,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,3.2815,10.3852,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1403,3.1241,10.4832,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.9434,5.8751,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,3.3764,5.7170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,3.2815,10.5086,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1407,3.1241,10.5235,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1408,5.9434,5.9585,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,3.3764,5.7320,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,3.2815,10.8495,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1411,3.1241,10.8547,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1412,5.9434,6.6337,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,3.3764,5.9627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,3.2815,10.0853,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1415,3.1241,9.9270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1416,5.9434,6.9440,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,3.3764,5.8872,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,3.2815,9.5353,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,3.1241,8.8685,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1420,5.9434,6.1077,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,3.3764,5.6611,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,3.2815,10.5028,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,3.1241,10.4842,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.9434,5.7887,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,3.3764,5.5942,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,3.2815,10.4302,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,3.1241,10.4396,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1428,5.9434,6.4603,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,3.3764,5.7765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,3.2815,10.3707,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,3.1241,10.4090,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1432,5.9434,6.3933,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,3.3764,5.8521,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,3.2815,10.0753,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1435,3.1241,10.0383,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1436,5.9434,6.6440,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,3.3764,6.2804,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,3.2815,11.0288,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1439,3.1241,10.6140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1440,5.9434,5.7346,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1441,3.3764,5.5268,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1442,3.2815,10.2379,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1443,3.1241,10.2202,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1444,5.9434,5.7362,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1445,3.3764,5.5844,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1446,3.2815,10.4681,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1447,3.1241,10.4466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1448,5.9434,5.8511,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1449,3.3764,5.5767,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1450,3.2815,10.3692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1451,3.1241,10.3588,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1452,5.9434,5.9471,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1453,3.3764,5.7467,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1454,3.2815,10.6137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1455,3.1241,10.6602,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1456,5.9434,5.8035,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1457,3.3764,5.5929,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1458,3.2815,10.3594,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1459,3.1241,10.3864,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1460,5.9434,5.7630,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1461,3.3764,5.5831,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1462,3.2815,10.4627,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1463,3.1241,10.4459,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1464,5.9434,5.8267,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1465,3.3764,5.6396,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1466,3.2815,10.5228,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1467,3.1241,10.5330,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1468,5.9434,5.6611,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1469,3.3764,5.5480,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1470,3.2815,10.4762,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1471,3.1241,10.4672,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1472,5.9434,5.8311,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1473,3.3764,5.5648,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1474,3.2815,10.4226,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1475,3.1241,10.3912,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1476,5.9434,5.8550,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1477,3.3764,5.6385,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1478,3.2815,10.5338,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1479,3.1241,10.5363,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1480,5.9434,5.8713,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1481,3.3764,5.6070,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1482,3.2815,10.4947,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1483,3.1241,10.4367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1484,5.9434,5.9721,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1485,3.3764,5.6104,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1486,3.2815,10.4999,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1487,3.1241,10.3574,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1488,5.9434,5.8639,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1489,3.3764,5.5680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1490,3.2815,10.5611,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1491,3.1241,10.5292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1492,5.9434,5.8645,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1493,3.3764,5.6308,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1494,3.2815,10.2803,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1495,3.1241,10.3048,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1496,5.9434,6.0312,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1497,3.3764,5.7158,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1498,3.2815,10.5283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1499,3.1241,10.5100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1500,5.9434,5.8982,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1501,3.3764,5.6719,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1502,3.2815,10.4011,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1503,3.1241,10.3472,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1504,5.9434,5.6730,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1505,3.3764,5.4747,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1506,3.2815,10.3244,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1507,3.1241,10.3383,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1508,5.9434,5.8566,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1509,3.3764,5.5990,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1510,3.2815,10.3442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1511,3.1241,10.3695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1512,5.9434,6.0070,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1513,3.3764,5.6211,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1514,3.2815,10.4162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1515,3.1241,10.3712,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1516,5.9434,5.7940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1517,3.3764,5.6365,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1518,3.2815,10.3936,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1519,3.1241,10.3522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1520,5.9434,5.9852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1521,3.3764,5.7605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1522,3.2815,10.6816,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1523,3.1241,10.4633,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1524,5.9434,5.8686,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1525,3.3764,5.6570,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1526,3.2815,10.3055,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1527,3.1241,10.2545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1528,5.9434,6.1632,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1529,3.3764,5.6854,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1530,3.2815,10.6046,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1531,3.1241,10.5657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1532,5.9434,6.1404,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1533,3.3764,5.7705,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1534,3.2815,10.5295,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1535,3.1241,10.4591,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1536,5.9434,5.9702,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1537,3.3764,5.7356,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1538,3.2815,10.6410,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1539,3.1241,10.6165,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1540,5.9434,6.8779,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1541,3.3764,6.1087,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1542,3.2815,10.8664,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1543,3.1241,10.7848,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1544,5.9434,8.6752,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1545,3.3764,7.6913,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1546,3.2815,10.2988,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1547,3.1241,8.7687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1548,5.9434,6.1193,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1549,3.3764,5.7676,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1550,3.2815,10.6190,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1551,3.1241,10.5394,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1552,5.9434,5.9376,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1553,3.3764,5.6756,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1554,3.2815,10.5159,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1555,3.1241,10.3425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1556,5.9434,6.3159,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1557,3.3764,5.8920,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1558,3.2815,10.9185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1559,3.1241,10.6666,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1560,5.9434,6.0871,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1561,3.3764,5.7128,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,3.2815,10.5797,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1563,3.1241,10.5284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1564,5.9434,6.7090,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1565,3.3764,6.0207,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,3.2815,10.2463,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1567,3.1241,10.2954,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1568,5.9434,12.9455,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1569,3.3764,6.8537,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,3.2815,5.8647,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1571,3.1241,5.6200,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1572,5.9434,6.0553,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1573,3.3764,5.7175,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,3.2815,10.2158,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1575,3.1241,10.2475,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1576,5.9434,5.9744,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1577,3.3764,5.6364,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,3.2815,10.5007,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1579,3.1241,10.4655,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1580,5.9434,5.8297,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1581,3.3764,6.0176,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,3.2815,12.3063,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1583,3.1241,12.1497,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1584,5.9434,5.7000,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1585,3.3764,5.7499,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,3.2815,10.1549,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1587,3.1241,10.2018,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1588,5.9434,5.9725,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1589,3.3764,5.7802,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,3.2815,10.1904,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1591,3.1241,10.3302,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1592,5.9434,6.3232,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1593,3.3764,5.7203,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,3.2815,10.4646,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1595,3.1241,10.3078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1596,5.9434,6.0745,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1597,3.3764,5.8410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,3.2815,9.5747,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1599,3.1241,6.7761,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1600,5.9434,6.4244,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,3.3764,6.1970,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,3.2815,10.6335,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1603,3.1241,10.5243,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1604,5.9434,6.3839,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,3.3764,5.9869,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,3.2815,10.8688,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1607,3.1241,10.8615,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1608,5.9434,6.8385,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,3.3764,5.9615,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,3.2815,9.9527,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1611,3.1241,9.7394,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1612,5.9434,6.7054,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,3.3764,5.8583,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,3.2815,10.5663,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1615,3.1241,10.1795,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1616,5.9434,6.4509,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,3.3764,5.8992,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,3.2815,10.8317,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1619,3.1241,10.8095,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1620,5.9434,6.9974,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,3.3764,5.9826,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,3.2815,9.8784,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1623,3.1241,9.4877,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1624,5.9434,6.1636,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,3.3764,5.7576,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,3.2815,10.5923,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1627,3.1241,10.4131,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1628,5.9434,6.1428,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,3.3764,5.7506,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,3.2815,10.7017,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1631,3.1241,10.4483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1632,5.9434,6.4303,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,3.3764,5.8303,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,3.2815,11.0489,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1635,3.1241,10.8595,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1636,5.9434,6.1917,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,3.3764,5.7816,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,3.2815,10.7094,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1639,3.1241,10.6595,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1640,5.9434,5.8524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,3.3764,5.5860,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,3.2815,10.2417,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1643,3.1241,10.2760,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1644,5.9434,6.3107,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,3.3764,5.8924,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,3.2815,10.0194,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1647,3.1241,10.0564,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1648,5.9434,6.3407,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,3.3764,5.7853,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,3.2815,10.5235,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1651,3.1241,10.4307,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1652,5.9434,6.1120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,3.3764,5.7462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,3.2815,10.0441,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1655,3.1241,9.9190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1656,5.9434,5.9833,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,3.3764,5.6160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,3.2815,10.7964,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1659,3.1241,10.6557,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1660,5.9434,6.3098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,3.3764,5.8542,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,3.2815,10.6818,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1663,3.1241,10.6030,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1664,5.9434,6.1615,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,3.3764,5.7588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,3.2815,10.5412,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1667,3.1241,10.4957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1668,5.9434,6.6257,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,3.3764,6.4362,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,3.2815,10.9018,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1671,3.1241,10.6990,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1672,5.9434,6.6532,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,3.3764,5.9063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,3.2815,10.1160,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1675,3.1241,9.9139,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1676,5.9434,6.7865,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,3.3764,6.0382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,3.2815,7.9666,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1679,3.1241,10.3599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1680,5.9434,5.9571,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1681,3.3764,5.6615,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1682,3.2815,10.6099,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1683,3.1241,10.4278,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1684,5.9434,6.1930,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1685,3.3764,5.7742,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1686,3.2815,10.5500,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1687,3.1241,10.4742,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1688,5.9434,5.9008,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1689,3.3764,5.7188,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1690,3.2815,10.4258,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1691,3.1241,10.3159,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1692,5.9434,6.8540,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1693,3.3764,5.8854,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1694,3.2815,10.4036,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1695,3.1241,10.2944,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1696,5.9434,6.6328,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1697,3.3764,5.8591,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1698,3.2815,10.0268,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1699,3.1241,8.8677,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1700,5.9434,6.1815,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1701,3.3764,5.7915,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1702,3.2815,10.6448,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1703,3.1241,10.5052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1704,5.9434,6.1464,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1705,3.3764,5.7485,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1706,3.2815,10.5998,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1707,3.1241,10.5553,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1708,5.9434,6.1401,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1709,3.3764,5.8028,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1710,3.2815,10.7193,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1711,3.1241,10.6319,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1712,5.9434,6.1481,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1713,3.3764,5.7657,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1714,3.2815,10.4919,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1715,3.1241,10.4074,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1716,5.9434,5.8214,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1717,3.3764,5.6352,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1718,3.2815,10.5227,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1719,3.1241,10.4998,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1720,5.9434,6.1772,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1721,3.3764,5.8338,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1722,3.2815,10.8240,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1723,3.1241,10.6164,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1724,5.9434,6.0410,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1725,3.3764,5.6345,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1726,3.2815,10.3453,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1727,3.1241,10.2434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1728,5.9434,6.1795,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1729,3.3764,5.8892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1730,3.2815,10.2634,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1731,3.1241,10.2214,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1732,5.9434,6.1375,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1733,3.3764,5.7485,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1734,3.2815,10.2440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1735,3.1241,10.1370,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1736,5.9434,6.0505,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1737,3.3764,5.8275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1738,3.2815,10.2981,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1739,3.1241,10.3627,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1740,5.9434,6.1537,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1741,3.3764,6.0287,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,3.2815,6.3760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1743,3.1241,10.2567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1744,5.9434,5.8573,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1745,3.3764,5.6798,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,3.2815,10.2074,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1747,3.1241,10.2115,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1748,5.9434,6.0742,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1749,3.3764,5.6641,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,3.2815,10.5177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,3.1241,10.4400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1752,5.9434,5.7562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1753,3.3764,5.6394,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,3.2815,10.2662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1755,3.1241,10.2242,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1756,5.9434,5.6935,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1757,3.3764,5.7363,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,3.2815,10.0780,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1759,3.1241,10.2659,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1760,5.9434,6.0069,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1761,3.3764,5.6835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,3.2815,10.3548,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1763,3.1241,10.3411,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1764,5.9434,5.8980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1765,3.3764,5.7215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,3.2815,10.8227,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1767,3.1241,10.7978,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1768,5.9434,6.4902,0.1164,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1769,3.3764,5.8886,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,3.2815,10.7335,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1771,3.1241,9.6145,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1772,5.9434,6.8483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1773,3.3764,5.8727,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,3.2815,10.9721,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1775,3.1241,10.7125,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1776,5.9434,6.4556,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1777,3.3764,5.7786,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,3.2815,10.1690,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1779,3.1241,10.2558,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1780,5.9434,6.7719,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1781,3.3764,5.8688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,3.2815,10.1211,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1783,3.1241,10.1774,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1784,5.9434,6.5152,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1785,3.3764,5.9177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,3.2815,9.7469,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1787,3.1241,7.9976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1788,5.9434,6.2649,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1789,3.3764,5.8476,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,3.2815,10.5445,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1791,3.1241,10.3168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1792,5.9434,6.1634,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1793,3.3764,5.8444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,3.2815,10.5625,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1795,3.1241,10.5502,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1796,5.9434,5.8386,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1797,3.3764,5.6044,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,3.2815,10.6140,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1799,3.1241,10.4058,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1800,5.9434,45.7396,0.0091,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1801,3.3764,29.8902,0.0080,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1802,3.2815,25.9352,0.0040,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1803,3.1241,25.8084,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1804,5.9434,5.8330,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1805,3.3764,5.6943,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1806,3.2815,10.3236,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1807,3.1241,10.3763,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1808,5.9434,5.6814,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1809,3.3764,5.5903,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1810,3.2815,10.4939,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1811,3.1241,10.4782,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1812,5.9434,5.6825,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1813,3.3764,5.6521,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1814,3.2815,10.3611,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1815,3.1241,10.4246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1816,5.9434,5.5238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1817,3.3764,5.5535,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1818,3.2815,10.2646,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1819,3.1241,10.2809,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1820,5.9434,5.7180,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1821,3.3764,5.6368,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1822,3.2815,10.4375,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1823,3.1241,10.4744,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1824,5.9434,5.8003,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1825,3.3764,5.6166,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1826,3.2815,10.4419,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1827,3.1241,10.4335,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1828,5.9434,5.7358,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1829,3.3764,5.6131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1830,3.2815,10.4069,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1831,3.1241,10.3882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1832,5.9434,5.5852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1833,3.3764,5.5623,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1834,3.2815,10.3884,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1835,3.1241,10.2976,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1836,5.9434,5.7372,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1837,3.3764,5.6455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1838,3.2815,10.5535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1839,3.1241,10.5294,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1840,5.9434,5.8833,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1841,3.3764,5.6625,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1842,3.2815,10.5650,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1843,3.1241,10.5380,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1844,5.9434,6.0971,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1845,3.3764,5.7729,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1846,3.2815,10.6311,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1847,3.1241,10.5245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1848,5.9434,5.9540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1849,3.3764,5.7126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1850,3.2815,10.4626,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1851,3.1241,10.4110,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1852,5.9434,5.7482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1853,3.3764,5.7184,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1854,3.2815,10.3821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1855,3.1241,10.4744,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1856,5.9434,5.7748,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1857,3.3764,5.6988,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1858,3.2815,10.1647,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1859,3.1241,10.2854,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1860,5.9434,5.7733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1861,3.3764,5.7435,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1862,3.2815,10.9231,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1863,3.1241,10.9192,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1864,5.9434,6.7877,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1865,3.3764,6.1770,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1866,3.2815,10.6410,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1867,3.1241,10.4317,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1868,5.9434,6.4644,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1869,3.3764,6.0739,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1870,3.2815,18.1133,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1871,3.1241,17.6719,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1872,5.9434,6.1282,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1873,3.3764,5.8540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1874,3.2815,10.7170,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1875,3.1241,10.6520,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1876,5.9434,5.8633,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1877,3.3764,5.6724,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1878,3.2815,10.3920,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1879,3.1241,10.5117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1880,5.9434,5.8228,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1881,3.3764,5.6320,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1882,3.2815,10.5317,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1883,3.1241,10.5335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1884,5.9434,6.0781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1885,3.3764,5.7282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1886,3.2815,10.6168,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1887,3.1241,10.5717,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1888,5.9434,5.7864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1889,3.3764,5.7043,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1890,3.2815,10.4844,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1891,3.1241,10.4776,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1892,5.9434,6.0519,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1893,3.3764,5.7657,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1894,3.2815,10.4688,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1895,3.1241,9.6867,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1896,5.9434,6.5797,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1897,3.3764,6.1457,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1898,3.2815,8.4435,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1899,3.1241,8.7910,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1900,5.9434,7.0743,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1901,3.3764,6.1720,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1902,3.2815,8.5789,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1903,3.1241,10.2347,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1904,5.9434,6.6888,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1905,3.3764,6.0723,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1906,3.2815,10.7573,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1907,3.1241,13.5634,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1908,5.9434,6.6456,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1909,3.3764,5.8184,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1910,3.2815,10.3146,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1911,3.1241,10.2980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1912,5.9434,6.5742,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1913,3.3764,5.8840,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1914,3.2815,10.6931,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1915,3.1241,10.7168,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1916,5.9434,7.9615,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1917,3.3764,6.9905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1918,3.2815,10.2514,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1919,3.1241,10.2604,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1920,5.9434,6.5617,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1921,3.3764,5.8327,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,3.2815,10.7312,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1923,3.1241,10.7636,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1924,5.9434,7.0972,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1925,3.3764,5.9026,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,3.2815,10.7660,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1927,3.1241,10.5337,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1928,5.9434,6.5523,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1929,3.3764,5.9632,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,3.2815,9.6460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1931,3.1241,9.7717,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1932,5.9434,6.0490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1933,3.3764,5.7128,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,3.2815,10.6784,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1935,3.1241,10.5867,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1936,5.9434,5.8884,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1937,3.3764,5.7233,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,3.2815,10.5860,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1939,3.1241,10.5270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1940,5.9434,5.9855,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1941,3.3764,5.7862,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,3.2815,10.7968,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1943,3.1241,10.7613,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1944,5.9434,6.1305,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1945,3.3764,5.7796,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,3.2815,10.4652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1947,3.1241,10.5117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1948,5.9434,6.1555,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1949,3.3764,5.8419,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,3.2815,11.3971,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1951,3.1241,11.4595,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1952,5.9434,6.8454,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1953,3.3764,5.9186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,3.2815,9.7618,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1955,3.1241,9.8994,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1956,5.9434,6.6670,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1957,3.3764,5.9786,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,3.2815,9.4082,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1959,3.1241,10.1674,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1960,5.9434,6.3644,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,3.3764,5.8833,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,3.2815,10.7265,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1963,3.1241,10.5524,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1964,5.9434,6.1761,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,3.3764,5.7715,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,3.2815,10.5555,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1967,3.1241,10.5245,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1968,5.9434,6.6920,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,3.3764,5.9477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,3.2815,11.9296,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1971,3.1241,11.9202,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1972,5.9434,6.6769,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,3.3764,5.7867,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,3.2815,10.1568,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1975,3.1241,10.1368,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1976,5.9434,6.0627,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,3.3764,5.7393,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,3.2815,10.7513,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1979,3.1241,10.6283,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1980,5.9434,6.5633,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,3.3764,6.1551,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,3.2815,11.2079,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1983,3.1241,11.0433,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1984,5.9434,6.7716,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,3.3764,6.1463,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,3.2815,10.1003,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1987,3.1241,9.5514,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1988,5.9434,7.7117,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,3.3764,6.1238,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,3.2815,10.2345,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1991,3.1241,10.3818,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1992,5.9434,6.7249,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,3.3764,5.8862,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,3.2815,10.0510,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1995,3.1241,10.1061,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1996,5.9434,6.5251,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,3.3764,5.9479,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,3.2815,10.1700,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1999,3.1241,9.8863,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2000,5.9434,6.9087,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,3.3764,5.8756,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,3.2815,10.3347,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2003,3.1241,10.0950,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.9434,6.6015,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,3.3764,6.0909,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,3.2815,10.0941,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2007,3.1241,10.0922,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2008,5.9434,6.8907,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,3.3764,5.9660,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,3.2815,10.1395,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2011,3.1241,9.8207,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2012,5.9434,6.2230,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,3.3764,5.7108,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,3.2815,10.8554,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2015,3.1241,10.5659,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2016,5.9434,5.7106,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,3.3764,5.5437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,3.2815,10.2357,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2019,3.1241,10.2370,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2020,5.9434,5.7351,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,3.3764,5.5746,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,3.2815,10.4144,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2023,3.1241,10.3794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2024,5.9434,5.9035,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,3.3764,5.6512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,3.2815,10.4051,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2027,3.1241,10.3545,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2028,5.9434,5.9513,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,3.3764,5.7077,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,3.2815,10.7077,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,3.1241,10.6844,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2032,5.9434,5.8250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,3.3764,5.6596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,3.2815,10.4390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2035,3.1241,10.4411,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2036,5.9434,5.7429,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,3.3764,5.5546,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,3.2815,10.3944,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2039,3.1241,10.2644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2040,5.9434,5.9151,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,3.3764,5.5799,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,3.2815,10.3900,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2043,3.1241,10.3445,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2044,5.9434,6.0630,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,3.3764,5.6832,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,3.2815,10.4630,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2047,3.1241,10.4328,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2048,5.9434,5.8177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,3.3764,5.6168,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,3.2815,10.6611,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2051,3.1241,10.6285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2052,5.9434,5.9976,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,3.3764,5.7000,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,3.2815,10.5877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2055,3.1241,10.4951,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2056,5.9434,5.8638,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,3.3764,5.6428,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,3.2815,10.5116,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2059,3.1241,10.4777,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2060,5.9434,6.2969,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,3.3764,5.7913,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,3.2815,10.7508,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,3.1241,10.4868,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2064,5.9434,6.1821,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,3.3764,5.8460,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,3.2815,10.6308,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2067,3.1241,10.6032,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2068,5.9434,5.9643,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,3.3764,5.7461,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,3.2815,10.5599,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2071,3.1241,10.4804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2072,5.9434,6.0364,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,3.3764,5.8346,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,3.2815,10.7078,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,3.1241,10.6077,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2076,5.9434,6.1594,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,3.3764,5.7386,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,3.2815,10.6626,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2079,3.1241,10.5161,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2080,5.9434,6.2708,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,3.3764,5.8536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,3.2815,10.6629,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2083,3.1241,10.6140,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2084,5.9434,5.8482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,3.3764,5.6860,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,3.2815,10.4476,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2087,3.1241,10.3787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2088,5.9434,6.2959,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,3.3764,5.8673,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,3.2815,10.7338,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2091,3.1241,10.6168,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2092,5.9434,6.1728,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,3.3764,5.7316,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,3.2815,10.6423,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2095,3.1241,10.5967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2096,5.9434,5.8322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,3.3764,5.7126,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,3.2815,10.3510,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2099,3.1241,10.3293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2100,5.9434,6.0335,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,3.3764,5.7677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,3.2815,10.5102,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2103,3.1241,10.4079,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2104,5.9434,6.6129,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,3.3764,5.7929,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,3.2815,10.5509,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,3.1241,10.7003,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2108,5.9434,6.7606,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,3.3764,5.8989,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,3.2815,9.9390,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,3.1241,8.9105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2112,5.9434,6.5704,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,3.3764,6.2751,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,3.2815,9.4503,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2115,3.1241,9.7514,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2116,5.9434,6.5518,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,3.3764,5.8060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,3.2815,10.1615,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,3.1241,10.0345,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2120,5.9434,8.0873,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,3.3764,6.8370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,3.2815,10.2297,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,3.1241,9.7519,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2124,5.9434,6.5306,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,3.3764,5.7438,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,3.2815,10.2721,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,3.1241,10.0164,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2128,5.9434,6.3251,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,3.3764,5.8205,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,3.2815,10.7431,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2131,3.1241,10.6765,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2132,5.9434,6.1756,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,3.3764,5.8579,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,3.2815,10.6084,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2135,3.1241,10.5740,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.9434,6.0776,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,3.3764,5.7762,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,3.2815,10.4820,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2139,3.1241,10.4029,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2140,5.9434,6.8834,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,3.3764,5.8755,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,3.2815,10.2717,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2143,3.1241,10.2373,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2144,5.9434,6.7198,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,3.3764,5.9702,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,3.2815,9.5961,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2147,3.1241,8.8271,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2148,5.9434,6.8984,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,3.3764,5.8613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,3.2815,10.0920,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2151,3.1241,10.2230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2152,5.9434,6.6862,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,3.3764,5.7220,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,3.2815,10.5413,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2155,3.1241,10.4487,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2156,5.9434,6.0347,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,3.3764,5.7766,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,3.2815,10.3305,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2159,3.1241,10.1823,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2160,5.9434,6.1993,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2161,3.3764,5.8024,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2162,3.2815,10.6545,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2163,3.1241,10.5918,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2164,5.9434,6.5898,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2165,3.3764,5.8020,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2166,3.2815,10.4349,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2167,3.1241,10.3490,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2168,5.9434,6.6659,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2169,3.3764,5.8962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2170,3.2815,10.6258,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2171,3.1241,10.3870,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2172,5.9434,7.1636,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2173,3.3764,5.8438,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2174,3.2815,9.9120,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2175,3.1241,8.5244,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2176,5.9434,6.3872,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2177,3.3764,5.7630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2178,3.2815,10.6595,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2179,3.1241,10.5401,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2180,5.9434,7.4395,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2181,3.3764,6.1182,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2182,3.2815,6.9100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2183,3.1241,10.0700,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2184,5.9434,5.8076,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2185,3.3764,5.6563,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2186,3.2815,10.4384,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2187,3.1241,10.3091,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2188,5.9434,6.1634,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2189,3.3764,5.7440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2190,3.2815,10.8338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2191,3.1241,10.5702,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2192,5.9434,6.2585,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2193,3.3764,5.8853,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2194,3.2815,10.6910,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2195,3.1241,10.6382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2196,5.9434,6.8575,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2197,3.3764,5.8926,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2198,3.2815,11.7427,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2199,3.1241,11.6358,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2200,5.9434,7.0127,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2201,3.3764,5.9543,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2202,3.2815,11.0448,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2203,3.1241,10.9837,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2204,5.9434,6.6117,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2205,3.3764,5.8289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2206,3.2815,9.5891,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2207,3.1241,10.3090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2208,5.9434,6.3630,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2209,3.3764,5.8111,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2210,3.2815,10.7454,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2211,3.1241,10.7332,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2212,5.9434,6.4737,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2213,3.3764,5.7827,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2214,3.2815,10.3769,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2215,3.1241,10.2844,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2216,5.9434,6.4455,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2217,3.3764,5.8087,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2218,3.2815,9.9930,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2219,3.1241,10.1288,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2220,5.9434,6.7220,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2221,3.3764,6.0921,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2222,3.2815,10.0312,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2223,3.1241,10.1727,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2224,5.9434,6.5587,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2225,3.3764,5.9708,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2226,3.2815,10.5623,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2227,3.1241,10.5162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2228,5.9434,6.6072,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2229,3.3764,5.9123,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2230,3.2815,9.9876,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2231,3.1241,10.0558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2232,5.9434,6.8891,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2233,3.3764,5.9041,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2234,3.2815,9.8845,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2235,3.1241,9.9731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2236,5.9434,6.3680,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2237,3.3764,5.8206,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2238,3.2815,9.9321,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2239,3.1241,10.0447,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2240,5.9434,6.8861,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2241,3.3764,5.8994,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2242,3.2815,10.1172,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2243,3.1241,10.0745,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2244,5.9434,6.3981,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2245,3.3764,5.7859,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2246,3.2815,9.9433,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2247,3.1241,9.9741,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2248,5.9434,6.6179,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2249,3.3764,5.8569,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2250,3.2815,10.0720,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,3.1241,10.0593,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2252,5.9434,6.7249,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2253,3.3764,5.8364,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2254,3.2815,10.0750,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2255,3.1241,10.0872,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2256,5.9434,6.4139,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2257,3.3764,5.8066,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2258,3.2815,9.6805,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2259,3.1241,10.0786,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2260,5.9434,6.6989,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2261,3.3764,5.8247,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2262,3.2815,11.6686,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2263,3.1241,11.4887,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2264,5.9434,6.7253,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2265,3.3764,5.8511,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2266,3.2815,10.1587,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2267,3.1241,10.2887,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2268,5.9434,6.5563,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2269,3.3764,6.2584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2270,3.2815,10.1965,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2271,3.1241,10.0165,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2272,5.9434,6.7090,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2273,3.3764,5.8315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2274,3.2815,10.0442,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2275,3.1241,9.8138,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2276,5.9434,6.3481,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2277,3.3764,5.7506,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2278,3.2815,8.9409,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2279,3.1241,8.5221,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2280,5.9434,6.6998,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2281,3.3764,5.8554,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,3.2815,9.9995,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2283,3.1241,10.2105,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2284,5.9434,6.4926,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2285,3.3764,5.7190,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,3.2815,10.6817,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2287,3.1241,10.4762,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2288,5.9434,6.6283,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2289,3.3764,5.9378,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,3.2815,10.0602,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2291,3.1241,10.0082,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2292,5.9434,6.3953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2293,3.3764,5.8197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,3.2815,9.7350,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2295,3.1241,9.9899,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2296,5.9434,5.9177,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2297,3.3764,5.7486,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,3.2815,10.1412,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2299,3.1241,10.2682,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2300,5.9434,6.9291,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2301,3.3764,5.9317,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,3.2815,10.7876,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2303,3.1241,10.5125,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.9434,6.4548,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2305,3.3764,6.6850,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,3.2815,8.4992,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2307,3.1241,9.4118,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2308,5.9434,6.5377,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2309,3.3764,5.8539,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,3.2815,10.2142,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2311,3.1241,10.1210,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2312,5.9434,6.7319,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2313,3.3764,5.8917,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,3.2815,9.8841,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2315,3.1241,10.2397,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2316,5.9434,6.3761,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2317,3.3764,6.6824,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,3.2815,10.1967,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2319,3.1241,10.0167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2320,5.9434,7.3838,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,3.3764,6.0595,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,3.2815,10.3660,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2323,3.1241,8.3978,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2324,5.9434,6.7739,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,3.3764,5.7683,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,3.2815,10.4394,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2327,3.1241,10.2682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2328,5.9434,6.9022,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,3.3764,6.2145,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,3.2815,10.3956,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2331,3.1241,10.1714,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2332,5.9434,7.6448,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,3.3764,6.1445,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,3.2815,9.2106,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2335,3.1241,10.0585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2336,5.9434,6.2603,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,3.3764,5.7473,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,3.2815,10.4665,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2339,3.1241,10.2663,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2340,5.9434,6.8039,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,3.3764,5.8268,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,3.2815,10.0785,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2343,3.1241,9.8967,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2344,5.9434,6.2584,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,3.3764,5.8215,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,3.2815,10.1655,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2347,3.1241,9.9710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2348,5.9434,6.3322,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,3.3764,6.0995,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,3.2815,10.0522,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2351,3.1241,10.1174,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2352,5.9434,6.3302,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,3.3764,5.7085,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,3.2815,10.4654,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2355,3.1241,10.0018,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2356,5.9434,6.2738,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,3.3764,5.8106,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,3.2815,10.0018,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2359,3.1241,10.0723,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2360,5.9434,6.2894,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,3.3764,5.9699,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,3.2815,9.2888,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2363,3.1241,8.4614,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.9434,6.4776,0.0420,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,3.3764,5.9045,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,3.2815,10.2175,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2367,3.1241,9.8789,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2368,5.9434,6.6098,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,3.3764,6.0393,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,3.2815,10.0512,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2371,3.1241,10.1189,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2372,5.9434,6.6167,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,3.3764,5.8187,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,3.2815,10.0551,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2375,3.1241,9.9892,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2376,5.9434,6.1990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,3.3764,5.7746,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,3.2815,10.2345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,3.1241,10.2612,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2380,5.9434,6.8369,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,3.3764,5.8632,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,3.2815,10.8674,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,3.1241,10.8286,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2384,5.9434,6.3915,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,3.3764,5.7966,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,3.2815,10.0927,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,3.1241,10.0370,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2388,5.9434,6.5057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,3.3764,5.8147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,3.2815,10.1107,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,3.1241,9.9422,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2392,5.9434,6.2897,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,3.3764,5.8425,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,3.2815,10.7999,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2395,3.1241,10.6043,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2396,5.9434,5.9860,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,3.3764,5.5616,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,3.2815,10.5820,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2399,3.1241,10.4181,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2400,5.9434,45.2195,0.0095,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2401,3.3764,30.2107,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2402,3.2815,25.6268,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2403,3.1241,25.6387,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2404,5.9434,5.7596,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2405,3.3764,5.6509,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2406,3.2815,10.4435,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2407,3.1241,10.4585,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2408,5.9434,5.7051,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2409,3.3764,5.6333,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2410,3.2815,10.5862,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2411,3.1241,10.6051,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2412,5.9434,5.7007,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2413,3.3764,5.6571,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2414,3.2815,10.6349,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2415,3.1241,10.6230,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2416,5.9434,5.6017,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2417,3.3764,5.6038,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2418,3.2815,10.3509,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2419,3.1241,10.4263,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2420,5.9434,5.6065,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2421,3.3764,5.6467,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2422,3.2815,10.3881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2423,3.1241,10.4997,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2424,5.9434,5.6787,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2425,3.3764,5.5850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2426,3.2815,10.3500,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2427,3.1241,10.3007,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2428,5.9434,5.6175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2429,3.3764,5.6122,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2430,3.2815,10.3945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2431,3.1241,10.4765,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2432,5.9434,5.6764,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2433,3.3764,5.6051,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2434,3.2815,10.5110,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2435,3.1241,10.5123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2436,5.9434,5.6507,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2437,3.3764,5.6289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2438,3.2815,10.4908,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2439,3.1241,10.4697,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2440,5.9434,5.8981,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2441,3.3764,5.6810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2442,3.2815,10.4418,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2443,3.1241,10.3882,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2444,5.9434,5.6889,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2445,3.3764,5.6029,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2446,3.2815,9.9305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2447,3.1241,10.2325,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2448,5.9434,5.7158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2449,3.3764,5.5996,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2450,3.2815,10.3143,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2451,3.1241,10.4092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2452,5.9434,5.6649,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2453,3.3764,5.6236,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2454,3.2815,10.4217,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2455,3.1241,10.4663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2456,5.9434,5.6596,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2457,3.3764,5.6175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2458,3.2815,10.5264,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2459,3.1241,10.5535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2460,5.9434,5.8662,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2461,3.3764,5.6912,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2462,3.2815,10.5519,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2463,3.1241,10.6154,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2464,5.9434,5.6730,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2465,3.3764,5.6013,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2466,3.2815,10.5128,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2467,3.1241,10.5083,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2468,5.9434,5.6705,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2469,3.3764,5.5971,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2470,3.2815,10.6420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2471,3.1241,10.6375,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2472,5.9434,5.6670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2473,3.3764,5.6542,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2474,3.2815,10.5199,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2475,3.1241,10.6137,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2476,5.9434,5.6327,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2477,3.3764,5.6513,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2478,3.2815,10.4589,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2479,3.1241,10.5506,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2480,5.9434,5.5667,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2481,3.3764,5.5547,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2482,3.2815,10.5224,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2483,3.1241,10.5509,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2484,5.9434,5.6386,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2485,3.3764,5.6200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2486,3.2815,10.5585,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2487,3.1241,10.5784,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2488,5.9434,5.6646,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2489,3.3764,5.6236,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2490,3.2815,10.4245,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2491,3.1241,10.4616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2492,5.9434,5.6108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2493,3.3764,5.5311,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2494,3.2815,10.3440,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2495,3.1241,10.3676,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2496,5.9434,5.5717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2497,3.3764,5.5874,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2498,3.2815,10.4546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2499,3.1241,10.4750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2500,5.9434,5.8020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2501,3.3764,5.6587,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2502,3.2815,10.6066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2503,3.1241,10.5878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2504,5.9434,5.6580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2505,3.3764,5.6856,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2506,3.2815,10.4610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2507,3.1241,10.5718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2508,5.9434,5.6876,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2509,3.3764,5.7153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2510,3.2815,10.6803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2511,3.1241,10.6675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2512,5.9434,5.9109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2513,3.3764,5.8154,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2514,3.2815,10.8385,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2515,3.1241,10.8113,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2516,5.9434,6.3987,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2517,3.3764,5.8300,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2518,3.2815,10.6071,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2519,3.1241,10.4440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2520,5.9434,5.7111,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2521,3.3764,5.5265,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2522,3.2815,10.3174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2523,3.1241,10.3325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2524,5.9434,5.8366,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2525,3.3764,5.6093,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2526,3.2815,10.3162,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2527,3.1241,10.2990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2528,5.9434,5.8679,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2529,3.3764,5.6245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2530,3.2815,10.3310,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2531,3.1241,10.2378,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2532,5.9434,6.1331,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2533,3.3764,5.8701,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2534,3.2815,10.6765,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2535,3.1241,10.6016,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2536,5.9434,5.9396,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2537,3.3764,5.7197,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2538,3.2815,10.3915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2539,3.1241,10.4182,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2540,5.9434,5.9190,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2541,3.3764,5.5804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2542,3.2815,10.4572,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2543,3.1241,10.4448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2544,5.9434,5.8985,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2545,3.3764,5.7322,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2546,3.2815,10.4969,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2547,3.1241,10.4616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2548,5.9434,5.8814,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2549,3.3764,5.6533,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2550,3.2815,10.4773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2551,3.1241,10.4119,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2552,5.9434,6.0109,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2553,3.3764,5.7135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2554,3.2815,10.4589,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2555,3.1241,10.5260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2556,5.9434,5.5990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2557,3.3764,5.5197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2558,3.2815,10.5344,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2559,3.1241,10.5203,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2560,5.9434,5.8703,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2561,3.3764,5.6632,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2562,3.2815,10.4385,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2563,3.1241,10.4339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2564,5.9434,5.7754,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2565,3.3764,5.6498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2566,3.2815,10.4043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2567,3.1241,10.3808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2568,5.9434,5.8464,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2569,3.3764,5.6866,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2570,3.2815,10.4943,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2571,3.1241,10.4732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2572,5.9434,5.9453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2573,3.3764,5.7044,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2574,3.2815,10.6090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2575,3.1241,10.5605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2576,5.9434,5.9285,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2577,3.3764,5.7344,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2578,3.2815,10.5940,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2579,3.1241,10.5056,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2580,5.9434,6.2944,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2581,3.3764,5.9335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2582,3.2815,10.5436,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2583,3.1241,10.4383,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2584,5.9434,6.2916,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2585,3.3764,5.8456,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2586,3.2815,10.7016,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2587,3.1241,10.5993,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2588,5.9434,6.1527,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2589,3.3764,5.7746,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2590,3.2815,10.6779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2591,3.1241,10.6545,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2592,5.9434,5.7875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2593,3.3764,5.7073,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2594,3.2815,10.5084,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2595,3.1241,10.9185,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2596,5.9434,6.3980,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2597,3.3764,5.9929,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2598,3.2815,10.4537,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2599,3.1241,10.4253,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2600,5.9434,6.7767,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2601,3.3764,5.8287,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2602,3.2815,10.3679,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2603,3.1241,10.2408,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2604,5.9434,6.1049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2605,3.3764,5.7098,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2606,3.2815,10.4510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2607,3.1241,10.3550,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2608,5.9434,5.8363,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2609,3.3764,5.5532,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2610,3.2815,10.2568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2611,3.1241,10.2495,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2612,5.9434,5.9918,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2613,3.3764,5.6554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2614,3.2815,10.5648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2615,3.1241,10.5528,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2616,5.9434,5.7354,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2617,3.3764,5.6321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2618,3.2815,10.3921,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2619,3.1241,10.3778,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2620,5.9434,5.8870,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2621,3.3764,5.6857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2622,3.2815,10.5715,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2623,3.1241,10.5558,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2624,5.9434,5.7326,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2625,3.3764,5.6199,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2626,3.2815,10.3686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2627,3.1241,10.3872,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2628,5.9434,5.6714,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2629,3.3764,5.5709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2630,3.2815,10.2830,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2631,3.1241,10.2932,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2632,5.9434,5.9402,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2633,3.3764,5.6489,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2634,3.2815,10.5283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2635,3.1241,10.5079,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2636,5.9434,5.7530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2637,3.3764,5.6268,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2638,3.2815,10.3964,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2639,3.1241,10.4479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2640,5.9434,5.6265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2641,3.3764,5.5209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2642,3.2815,10.3120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2643,3.1241,10.2230,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2644,5.9434,5.7381,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2645,3.3764,5.5396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2646,3.2815,10.3758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2647,3.1241,10.3865,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2648,5.9434,5.9338,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2649,3.3764,5.5614,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2650,3.2815,10.3533,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2651,3.1241,10.3619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2652,5.9434,5.9784,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2653,3.3764,5.7285,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2654,3.2815,10.5615,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2655,3.1241,10.5391,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2656,5.9434,5.7860,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2657,3.3764,5.5863,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2658,3.2815,10.6022,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2659,3.1241,10.5135,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2660,5.9434,5.9592,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2661,3.3764,5.6420,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2662,3.2815,10.3810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2663,3.1241,10.3671,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2664,5.9434,5.9484,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2665,3.3764,5.6912,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2666,3.2815,10.5369,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2667,3.1241,10.5539,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2668,5.9434,5.8155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2669,3.3764,5.7123,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2670,3.2815,10.3550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2671,3.1241,10.4920,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2672,5.9434,5.7213,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2673,3.3764,5.5418,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2674,3.2815,10.4720,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2675,3.1241,10.4110,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2676,5.9434,5.8430,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2677,3.3764,5.6022,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2678,3.2815,10.4640,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2679,3.1241,10.4569,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2680,5.9434,5.9158,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2681,3.3764,5.6217,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2682,3.2815,10.3906,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2683,3.1241,10.2018,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2684,5.9434,5.8513,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2685,3.3764,5.6455,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2686,3.2815,10.5229,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2687,3.1241,10.4356,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2688,5.9434,6.2050,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2689,3.3764,5.7519,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2690,3.2815,10.5518,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2691,3.1241,10.4803,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2692,5.9434,5.8499,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2693,3.3764,5.6190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2694,3.2815,10.5873,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2695,3.1241,10.5367,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2696,5.9434,5.9439,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2697,3.3764,5.6417,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2698,3.2815,10.5606,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2699,3.1241,10.5592,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2700,5.9434,5.8309,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2701,3.3764,5.7104,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2702,3.2815,10.3777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2703,3.1241,10.4659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2704,5.9434,5.9466,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2705,3.3764,5.7305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2706,3.2815,10.6152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2707,3.1241,10.6287,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2708,5.9434,5.6417,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2709,3.3764,5.5918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2710,3.2815,10.2543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2711,3.1241,10.3809,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2712,5.9434,5.6407,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2713,3.3764,5.4592,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2714,3.2815,10.2703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2715,3.1241,10.2856,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2716,5.9434,6.0441,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2717,3.3764,5.7376,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2718,3.2815,10.4953,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2719,3.1241,10.5279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2720,5.9434,5.7641,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2721,3.3764,5.6546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2722,3.2815,10.4309,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2723,3.1241,10.4188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2724,5.9434,5.8095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2725,3.3764,5.6872,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2726,3.2815,10.5152,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2727,3.1241,10.4334,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2728,5.9434,5.8209,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2729,3.3764,5.6123,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2730,3.2815,10.2287,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2731,3.1241,10.1825,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2732,5.9434,6.1545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2733,3.3764,5.6894,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2734,3.2815,10.5597,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2735,3.1241,10.5342,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2736,5.9434,5.8494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2737,3.3764,5.6524,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2738,3.2815,10.5293,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2739,3.1241,10.4944,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2740,5.9434,5.7055,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2741,3.3764,5.5934,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2742,3.2815,10.4181,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2743,3.1241,10.4162,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2744,5.9434,5.9143,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2745,3.3764,5.7369,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2746,3.2815,10.5878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2747,3.1241,10.6153,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2748,5.9434,5.7707,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2749,3.3764,5.5922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2750,3.2815,10.3221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2751,3.1241,10.3249,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2752,5.9434,5.6482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2753,3.3764,5.5565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2754,3.2815,10.3547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2755,3.1241,10.3432,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2756,5.9434,5.8630,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2757,3.3764,5.6383,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2758,3.2815,10.2723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2759,3.1241,10.2325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2760,5.9434,6.1393,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2761,3.3764,5.6724,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2762,3.2815,10.4153,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2763,3.1241,10.2457,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2764,5.9434,5.9023,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2765,3.3764,5.6336,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2766,3.2815,10.4976,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2767,3.1241,10.4574,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2768,5.9434,5.7676,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2769,3.3764,5.6778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2770,3.2815,10.2190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2771,3.1241,10.3105,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2772,5.9434,5.6800,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2773,3.3764,5.6300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2774,3.2815,10.3363,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2775,3.1241,10.3978,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2776,5.9434,5.7254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2777,3.3764,5.5908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2778,3.2815,10.2625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2779,3.1241,10.1983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2780,5.9434,5.7506,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2781,3.3764,5.5776,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2782,3.2815,10.2796,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2783,3.1241,10.2655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2784,5.9434,5.8308,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2785,3.3764,5.6086,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2786,3.2815,10.4563,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2787,3.1241,10.4141,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2788,5.9434,5.8045,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2789,3.3764,5.6979,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2790,3.2815,10.4677,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2791,3.1241,10.4280,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2792,5.9434,5.7786,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2793,3.3764,5.6524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2794,3.2815,10.4305,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2795,3.1241,10.4584,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2796,5.9434,5.8053,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2797,3.3764,5.6113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2798,3.2815,10.3118,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2799,3.1241,10.2288,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2800,5.9434,5.7382,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2801,3.3764,5.5533,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2802,3.2815,10.3127,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2803,3.1241,10.3995,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2804,5.9434,5.9298,0.0329,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2805,3.3764,5.5582,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2806,3.2815,10.3165,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2807,3.1241,10.2827,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2808,5.9434,5.9764,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2809,3.3764,5.6985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2810,3.2815,10.4693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2811,3.1241,10.4810,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2812,5.9434,5.7505,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2813,3.3764,5.6370,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2814,3.2815,10.3838,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2815,3.1241,10.3312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2816,5.9434,5.9461,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2817,3.3764,5.6397,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2818,3.2815,10.4009,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2819,3.1241,10.3687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2820,5.9434,5.9399,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2821,3.3764,5.6959,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2822,3.2815,10.5315,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2823,3.1241,10.4412,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2824,5.9434,5.8900,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2825,3.3764,5.6325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2826,3.2815,10.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2827,3.1241,10.4789,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2828,5.9434,5.8667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2829,3.3764,5.6830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2830,3.2815,10.4312,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2831,3.1241,10.4689,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2832,5.9434,5.6700,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2833,3.3764,5.6470,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2834,3.2815,10.1058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2835,3.1241,10.2013,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2836,5.9434,5.9246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2837,3.3764,5.6537,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2838,3.2815,10.4920,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2839,3.1241,10.4678,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2840,5.9434,5.7050,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2841,3.3764,5.6050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2842,3.2815,10.3545,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2843,3.1241,10.2574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2844,5.9434,5.8745,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2845,3.3764,5.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2846,3.2815,10.3428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2847,3.1241,10.3183,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2848,5.9434,5.8848,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2849,3.3764,5.5940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2850,3.2815,10.2448,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2851,3.1241,10.1840,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2852,5.9434,6.0906,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2853,3.3764,5.6853,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2854,3.2815,10.4504,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2855,3.1241,10.3425,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2856,5.9434,6.0770,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2857,3.3764,5.6666,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2858,3.2815,10.4994,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2859,3.1241,10.4875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2860,5.9434,6.0751,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2861,3.3764,5.7372,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2862,3.2815,10.3101,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2863,3.1241,10.3876,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2864,5.9434,5.8617,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2865,3.3764,5.5706,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2866,3.2815,10.5349,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2867,3.1241,10.4986,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2868,5.9434,5.8882,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2869,3.3764,5.6132,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2870,3.2815,10.3372,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2871,3.1241,10.3100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2872,5.9434,5.7559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2873,3.3764,5.6495,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2874,3.2815,10.3263,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2875,3.1241,10.5085,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2876,5.9434,5.6626,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2877,3.3764,5.5670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2878,3.2815,10.3700,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2879,3.1241,10.3563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2880,5.9434,5.7643,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2881,3.3764,5.6394,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2882,3.2815,10.0797,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2883,3.1241,10.2187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2884,5.9434,5.8036,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2885,3.3764,5.5829,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2886,3.2815,10.2430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2887,3.1241,10.2210,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2888,5.9434,5.9069,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2889,3.3764,5.6172,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2890,3.2815,10.2550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2891,3.1241,10.2566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2892,5.9434,5.9953,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2893,3.3764,5.6120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2894,3.2815,10.4981,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2895,3.1241,10.4616,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2896,5.9434,5.9619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2897,3.3764,5.6810,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2898,3.2815,15.8346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2899,3.1241,15.8305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2900,5.9434,5.7577,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2901,3.3764,5.5503,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2902,3.2815,10.4111,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2903,3.1241,10.3205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2904,5.9434,6.2139,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2905,3.3764,5.7605,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2906,3.2815,10.8895,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2907,3.1241,10.6771,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2908,5.9434,6.1344,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2909,3.3764,5.7348,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2910,3.2815,10.5106,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2911,3.1241,10.4571,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2912,5.9434,5.9961,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2913,3.3764,5.6789,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2914,3.2815,10.2975,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2915,3.1241,10.2677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2916,5.9434,5.8525,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2917,3.3764,5.5428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2918,3.2815,10.2310,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2919,3.1241,10.2681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2920,5.9434,5.8208,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2921,3.3764,5.5752,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2922,3.2815,10.3393,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2923,3.1241,10.2057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2924,5.9434,6.1294,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2925,3.3764,6.1179,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2926,3.2815,7.1920,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2927,3.1241,10.5074,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2928,5.9434,6.4570,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2929,3.3764,5.8839,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2930,3.2815,9.9694,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2931,3.1241,10.0977,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2932,5.9434,6.2669,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2933,3.3764,5.9521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2934,3.2815,10.4485,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2935,3.1241,10.3677,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2936,5.9434,6.2168,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2937,3.3764,5.8143,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2938,3.2815,10.1056,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2939,3.1241,10.0333,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2940,5.9434,5.9116,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2941,3.3764,5.6504,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2942,3.2815,10.4623,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2943,3.1241,10.4350,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2944,5.9434,6.4333,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2945,3.3764,5.8236,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2946,3.2815,10.5333,0.0527,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2947,3.1241,10.5098,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2948,5.9434,6.2142,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2949,3.3764,5.8009,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2950,3.2815,9.9778,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2951,3.1241,9.9385,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2952,5.9434,6.2835,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2953,3.3764,5.8362,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2954,3.2815,9.9319,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2955,3.1241,10.0835,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2956,5.9434,6.0956,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2957,3.3764,5.7247,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2958,3.2815,10.0691,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2959,3.1241,9.8675,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2960,5.9434,6.1827,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2961,3.3764,5.8212,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2962,3.2815,9.7650,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2963,3.1241,10.0464,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2964,5.9434,6.6242,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2965,3.3764,5.7890,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2966,3.2815,10.0975,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2967,3.1241,9.9785,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2968,5.9434,6.3656,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2969,3.3764,5.7788,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2970,3.2815,9.9502,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2971,3.1241,10.1013,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2972,5.9434,6.4925,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2973,3.3764,6.2947,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2974,3.2815,8.9698,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2975,3.1241,9.4699,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2976,5.9434,6.0003,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2977,3.3764,5.6141,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2978,3.2815,10.4052,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2979,3.1241,10.3418,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2980,5.9434,6.1792,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2981,3.3764,5.7510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2982,3.2815,10.6637,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2983,3.1241,10.5940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2984,5.9434,5.7998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2985,3.3764,5.6243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2986,3.2815,10.3897,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2987,3.1241,10.3090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2988,5.9434,5.8761,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2989,3.3764,5.9876,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2990,3.2815,10.1116,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2991,3.1241,10.3257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2992,5.9434,6.2559,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2993,3.3764,5.7862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2994,3.2815,10.8338,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2995,3.1241,10.5813,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2996,5.9434,6.0859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2997,3.3764,5.7297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2998,3.2815,10.4553,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2999,3.1241,10.3555,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3000,5.9434,49.7476,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3001,3.3764,30.3137,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3002,3.2815,26.4191,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3003,3.1241,26.1461,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3004,5.9434,5.8240,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3005,3.3764,5.6899,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3006,3.2815,10.5780,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3007,3.1241,10.5906,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3008,5.9434,5.6978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3009,3.3764,5.6733,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3010,3.2815,10.4442,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3011,3.1241,10.5818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3012,5.9434,5.7553,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3013,3.3764,5.6630,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3014,3.2815,10.5379,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3015,3.1241,10.5282,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3016,5.9434,5.6870,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3017,3.3764,5.5816,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3018,3.2815,10.3389,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3019,3.1241,10.3392,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3020,5.9434,5.7376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3021,3.3764,5.6492,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3022,3.2815,10.3973,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3023,3.1241,10.4421,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3024,5.9434,5.8423,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3025,3.3764,5.7226,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3026,3.2815,10.3388,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3027,3.1241,10.3541,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3028,5.9434,5.7467,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3029,3.3764,5.6480,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3030,3.2815,10.4286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3031,3.1241,10.4339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3032,5.9434,5.7423,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3033,3.3764,5.6778,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3034,3.2815,10.5787,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3035,3.1241,10.5704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3036,5.9434,5.7033,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3037,3.3764,5.6898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3038,3.2815,10.4343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3039,3.1241,10.5657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3040,5.9434,5.7946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3041,3.3764,5.7099,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3042,3.2815,10.5808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3043,3.1241,10.5853,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3044,5.9434,5.8155,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3045,3.3764,5.7465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3046,3.2815,10.6141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3047,3.1241,10.6207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3048,5.9434,5.7589,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3049,3.3764,5.6833,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3050,3.2815,10.4969,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3051,3.1241,10.4928,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3052,5.9434,5.8110,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3053,3.3764,5.7207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3054,3.2815,10.4879,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3055,3.1241,10.5345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3056,5.9434,5.8956,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3057,3.3764,5.7386,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3058,3.2815,10.6770,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3059,3.1241,10.6642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3060,5.9434,5.9043,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3061,3.3764,5.7090,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3062,3.2815,10.7651,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3063,3.1241,10.7195,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3064,5.9434,6.1388,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3065,3.3764,5.7817,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3066,3.2815,10.5053,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3067,3.1241,10.4698,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3068,5.9434,5.8732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3069,3.3764,5.6922,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3070,3.2815,10.4751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3071,3.1241,10.4795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3072,5.9434,5.6059,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3073,3.3764,5.5504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3074,3.2815,10.2305,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3075,3.1241,10.2688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3076,5.9434,5.6478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3077,3.3764,5.5639,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3078,3.2815,10.2996,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3079,3.1241,10.2150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3080,5.9434,5.6442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3081,3.3764,5.5705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3082,3.2815,10.3234,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3083,3.1241,10.3313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3084,5.9434,5.7510,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3085,3.3764,5.6166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3086,3.2815,10.1850,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3087,3.1241,10.2594,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3088,5.9434,5.6473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3089,3.3764,5.6000,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3090,3.2815,10.2916,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3091,3.1241,10.3065,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3092,5.9434,6.5032,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3093,3.3764,6.2823,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3094,3.2815,10.4215,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3095,3.1241,10.2491,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3096,5.9434,6.1230,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3097,3.3764,5.8143,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3098,3.2815,9.8809,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3099,3.1241,10.1804,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3100,5.9434,6.0805,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3101,3.3764,5.7476,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3102,3.2815,10.3131,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3103,3.1241,10.2521,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3104,5.9434,6.2687,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3105,3.3764,6.3034,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3106,3.2815,10.2474,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3107,3.1241,10.1195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3108,5.9434,6.4245,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3109,3.3764,5.9456,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3110,3.2815,12.7284,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3111,3.1241,12.3444,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3112,5.9434,6.6155,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3113,3.3764,5.8142,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3114,3.2815,10.5426,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3115,3.1241,10.3826,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3116,5.9434,6.4965,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3117,3.3764,5.8911,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3118,3.2815,10.1797,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3119,3.1241,9.9710,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3120,5.9434,6.5153,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3121,3.3764,5.8880,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3122,3.2815,10.4104,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3123,3.1241,10.1766,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3124,5.9434,6.4848,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3125,3.3764,6.1738,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3126,3.2815,10.4570,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3127,3.1241,10.3220,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3128,5.9434,6.6217,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3129,3.3764,5.8889,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3130,3.2815,10.8513,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3131,3.1241,10.6832,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3132,5.9434,10.8587,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3133,3.3764,9.6659,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3134,3.2815,9.3774,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3135,3.1241,10.0005,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3136,5.9434,6.8455,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3137,3.3764,5.8480,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3138,3.2815,10.7534,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3139,3.1241,10.5195,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3140,5.9434,6.8583,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3141,3.3764,6.1011,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3142,3.2815,10.6565,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3143,3.1241,10.4264,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3144,5.9434,7.0956,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3145,3.3764,5.9958,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3146,3.2815,9.9605,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3147,3.1241,8.2593,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3148,5.9434,6.5884,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3149,3.3764,5.8913,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3150,3.2815,10.4752,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3151,3.1241,10.0478,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3152,5.9434,8.6431,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3153,3.3764,7.0110,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3154,3.2815,10.3150,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3155,3.1241,9.7077,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3156,5.9434,6.8373,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3157,3.3764,6.1942,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3158,3.2815,12.8190,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3159,3.1241,13.1397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3160,5.9434,6.5512,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3161,3.3764,6.0754,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3162,3.2815,10.9898,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3163,3.1241,10.7656,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3164,5.9434,7.2781,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3165,3.3764,6.0137,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3166,3.2815,10.0767,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3167,3.1241,9.7907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3168,5.9434,6.6630,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3169,3.3764,5.9295,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3170,3.2815,10.6660,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3171,3.1241,10.4337,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3172,5.9434,7.0289,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3173,3.3764,6.0628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3174,3.2815,9.3599,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3175,3.1241,10.4041,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3176,5.9434,6.6410,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3177,3.3764,5.9287,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3178,3.2815,10.0986,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3179,3.1241,10.1185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3180,5.9434,6.6754,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3181,3.3764,6.0760,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3182,3.2815,10.3018,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3183,3.1241,10.3234,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3184,5.9434,6.5835,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3185,3.3764,5.7838,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3186,3.2815,10.8639,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3187,3.1241,10.7762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3188,5.9434,6.8658,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3189,3.3764,5.8877,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3190,3.2815,10.1780,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3191,3.1241,10.1887,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3192,5.9434,7.0021,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3193,3.3764,6.0018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3194,3.2815,10.3723,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3195,3.1241,10.0555,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3196,5.9434,6.7008,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3197,3.3764,5.9337,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3198,3.2815,10.4136,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3199,3.1241,10.3398,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3200,5.9434,6.6627,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3201,3.3764,6.0178,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3202,3.2815,9.8348,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3203,3.1241,10.5516,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3204,5.9434,6.9171,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3205,3.3764,5.9784,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3206,3.2815,10.1770,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3207,3.1241,10.1020,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3208,5.9434,6.6453,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3209,3.3764,5.9245,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3210,3.2815,10.2175,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3211,3.1241,10.1368,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3212,5.9434,6.0371,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3213,3.3764,6.2286,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3214,3.2815,9.8403,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3215,3.1241,10.4255,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3216,5.9434,6.8438,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3217,3.3764,6.2262,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3218,3.2815,9.6448,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3219,3.1241,10.1855,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3220,5.9434,6.7650,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3221,3.3764,6.0063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3222,3.2815,10.2212,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3223,3.1241,10.3154,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3224,5.9434,6.7440,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3225,3.3764,5.9045,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3226,3.2815,10.1899,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3227,3.1241,10.0571,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3228,5.9434,6.5917,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3229,3.3764,5.8987,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3230,3.2815,10.0894,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3231,3.1241,10.1653,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3232,5.9434,7.1812,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3233,3.3764,5.9873,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3234,3.2815,10.1899,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3235,3.1241,8.7443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3236,5.9434,5.8822,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3237,3.3764,5.5981,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3238,3.2815,10.4167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3239,3.1241,10.3656,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3240,5.9434,5.7926,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3241,3.3764,5.6508,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3242,3.2815,10.4597,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3243,3.1241,10.3576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3244,5.9434,5.8617,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3245,3.3764,5.6277,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3246,3.2815,10.5330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3247,3.1241,10.4618,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3248,5.9434,5.7950,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3249,3.3764,5.6082,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3250,3.2815,10.4300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3251,3.1241,10.4440,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3252,5.9434,5.8653,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3253,3.3764,5.6817,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3254,3.2815,10.5606,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3255,3.1241,10.4859,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3256,5.9434,5.8216,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3257,3.3764,5.6227,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3258,3.2815,10.3291,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3259,3.1241,10.3595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3260,5.9434,6.0687,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3261,3.3764,5.6595,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3262,3.2815,10.4006,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3263,3.1241,9.9707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3264,5.9434,6.1350,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3265,3.3764,5.7204,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3266,3.2815,10.2097,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3267,3.1241,10.0913,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3268,5.9434,5.8925,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3269,3.3764,5.6643,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3270,3.2815,10.4307,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3271,3.1241,9.9618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3272,5.9434,5.8321,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3273,3.3764,5.6149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3274,3.2815,10.4010,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3275,3.1241,10.3899,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3276,5.9434,5.7868,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3277,3.3764,5.5468,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3278,3.2815,10.3763,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3279,3.1241,10.3637,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3280,5.9434,5.7682,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3281,3.3764,5.5679,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3282,3.2815,10.4255,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3283,3.1241,10.3254,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3284,5.9434,5.8030,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3285,3.3764,5.5780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3286,3.2815,10.3341,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3287,3.1241,10.2836,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3288,5.9434,5.8308,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3289,3.3764,5.5486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3290,3.2815,10.4475,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3291,3.1241,10.3628,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3292,5.9434,6.0101,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3293,3.3764,5.6272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3294,3.2815,10.3189,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3295,3.1241,10.3407,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3296,5.9434,5.9086,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3297,3.3764,5.5892,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3298,3.2815,10.5163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3299,3.1241,10.4593,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3300,5.9434,5.9368,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3301,3.3764,5.5901,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3302,3.2815,10.4542,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3303,3.1241,10.4185,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3304,5.9434,5.8285,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3305,3.3764,5.6364,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3306,3.2815,10.4586,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3307,3.1241,10.4326,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3308,5.9434,5.8280,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3309,3.3764,5.6207,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3310,3.2815,10.3910,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3311,3.1241,10.3785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3312,5.9434,5.8301,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3313,3.3764,5.6238,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3314,3.2815,10.4191,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3315,3.1241,10.3900,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3316,5.9434,5.8728,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3317,3.3764,5.6153,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3318,3.2815,10.4905,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3319,3.1241,10.4250,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3320,5.9434,5.9884,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3321,3.3764,5.6015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3322,3.2815,10.4864,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3323,3.1241,10.4379,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3324,5.9434,5.8550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3325,3.3764,5.6582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3326,3.2815,10.3744,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3327,3.1241,10.3965,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3328,5.9434,5.9328,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3329,3.3764,5.6304,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3330,3.2815,10.4024,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3331,3.1241,10.3710,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3332,5.9434,5.7767,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3333,3.3764,5.5830,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3334,3.2815,10.4267,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3335,3.1241,10.3730,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3336,5.9434,5.8618,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3337,3.3764,5.5755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3338,3.2815,10.4156,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3339,3.1241,10.3954,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3340,5.9434,5.9834,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3341,3.3764,5.5900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3342,3.2815,10.4612,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3343,3.1241,10.4166,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3344,5.9434,5.9707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3345,3.3764,5.5624,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3346,3.2815,10.4850,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3347,3.1241,10.4078,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3348,5.9434,5.7904,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3349,3.3764,5.5858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3350,3.2815,10.4038,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3351,3.1241,10.3144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3352,5.9434,6.0342,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3353,3.3764,5.6086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3354,3.2815,10.5410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3355,3.1241,10.5466,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3356,5.9434,6.0844,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3357,3.3764,5.6945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3358,3.2815,10.6621,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3359,3.1241,10.6387,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3360,5.9434,5.8082,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3361,3.3764,5.6315,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3362,3.2815,10.6364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3363,3.1241,10.6623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3364,5.9434,5.9995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3365,3.3764,5.6936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3366,3.2815,10.5501,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3367,3.1241,10.5291,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3368,5.9434,5.7320,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3369,3.3764,5.5728,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3370,3.2815,10.4318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3371,3.1241,10.5092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3372,5.9434,6.0134,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3373,3.3764,5.6724,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3374,3.2815,10.5691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3375,3.1241,10.5803,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3376,5.9434,5.7570,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3377,3.3764,5.6216,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3378,3.2815,10.4594,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3379,3.1241,10.4287,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3380,5.9434,5.7444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3381,3.3764,5.6573,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3382,3.2815,10.4105,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3383,3.1241,10.4166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3384,5.9434,5.8128,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3385,3.3764,5.5393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3386,3.2815,10.4008,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3387,3.1241,10.3573,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3388,5.9434,5.9749,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3389,3.3764,5.6680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3390,3.2815,10.5439,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3391,3.1241,10.5135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3392,5.9434,5.7850,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3393,3.3764,5.5182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3394,3.2815,10.3760,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3395,3.1241,10.3124,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3396,5.9434,5.7729,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3397,3.3764,5.6196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3398,3.2815,10.3484,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3399,3.1241,10.3277,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3400,5.9434,5.9554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3401,3.3764,5.6003,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3402,3.2815,10.2667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3403,3.1241,10.2459,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3404,5.9434,5.9633,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3405,3.3764,5.6005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3406,3.2815,10.3544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3407,3.1241,10.2999,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3408,5.9434,5.9159,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3409,3.3764,5.6615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3410,3.2815,10.3815,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3411,3.1241,10.3198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3412,5.9434,5.9689,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3413,3.3764,5.6045,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3414,3.2815,10.3790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3415,3.1241,10.3617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3416,5.9434,5.7650,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3417,3.3764,5.6792,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3418,3.2815,10.1665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3419,3.1241,10.2769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3420,5.9434,5.8372,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3421,3.3764,5.7062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3422,3.2815,10.4713,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3423,3.1241,10.4129,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3424,5.9434,6.6045,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3425,3.3764,5.8186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3426,3.2815,10.2158,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3427,3.1241,10.3066,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3428,5.9434,6.5222,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3429,3.3764,5.8748,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3430,3.2815,10.0993,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3431,3.1241,10.1698,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3432,5.9434,6.9371,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3433,3.3764,5.9990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3434,3.2815,12.5231,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3435,3.1241,12.2342,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3436,5.9434,6.2523,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3437,3.3764,5.7556,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3438,3.2815,10.4935,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3439,3.1241,10.3292,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3440,5.9434,6.0901,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3441,3.3764,5.7717,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3442,3.2815,10.7401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3443,3.1241,10.7334,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3444,5.9434,5.8881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3445,3.3764,5.7799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3446,3.2815,10.5998,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3447,3.1241,10.4047,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3448,5.9434,6.4257,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3449,3.3764,5.8355,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3450,3.2815,10.2458,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3451,3.1241,10.2547,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3452,5.9434,6.8102,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3453,3.3764,5.9221,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3454,3.2815,10.0403,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3455,3.1241,9.9901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3456,5.9434,6.4238,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3457,3.3764,5.7239,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3458,3.2815,9.7966,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3459,3.1241,9.5913,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3460,5.9434,6.1762,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3461,3.3764,5.8267,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3462,3.2815,10.5062,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3463,3.1241,10.3015,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3464,5.9434,6.1792,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3465,3.3764,5.7749,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3466,3.2815,10.3153,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3467,3.1241,10.2686,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3468,5.9434,5.9974,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3469,3.3764,5.9372,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3470,3.2815,10.2720,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3471,3.1241,7.6726,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3472,5.9434,6.9470,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3473,3.3764,5.9458,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3474,3.2815,10.4570,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3475,3.1241,10.2197,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3476,5.9434,6.6324,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3477,3.3764,5.9193,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3478,3.2815,10.5740,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3479,3.1241,10.3426,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3480,5.9434,6.6530,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3481,3.3764,5.9075,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3482,3.2815,8.9252,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3483,3.1241,9.6756,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3484,5.9434,6.4725,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3485,3.3764,5.6676,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3486,3.2815,10.7700,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3487,3.1241,10.6227,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3488,5.9434,6.2625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3489,3.3764,5.8194,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3490,3.2815,10.5061,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3491,3.1241,10.4514,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3492,5.9434,6.1054,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3493,3.3764,5.7076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3494,3.2815,10.8471,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3495,3.1241,10.7082,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3496,5.9434,6.6851,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3497,3.3764,6.1517,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3498,3.2815,10.4553,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3499,3.1241,9.9758,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3500,5.9434,6.8500,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3501,3.3764,5.9741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3502,3.2815,10.1699,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3503,3.1241,9.9640,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3504,5.9434,6.3115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3505,3.3764,8.6887,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3506,3.2815,7.2630,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3507,3.1241,10.3053,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3508,5.9434,5.9768,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3509,3.3764,5.6834,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3510,3.2815,10.4844,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3511,3.1241,10.3164,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3512,5.9434,6.2610,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3513,3.3764,5.7870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3514,3.2815,10.5352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3515,3.1241,10.4744,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3516,5.9434,5.9130,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3517,3.3764,5.7428,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3518,3.2815,10.9141,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3519,3.1241,10.6974,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3520,5.9434,6.6785,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3521,3.3764,5.9067,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3522,3.2815,10.2985,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3523,3.1241,10.2352,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3524,5.9434,6.6080,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3525,3.3764,5.9633,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3526,3.2815,9.9754,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3527,3.1241,9.1705,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3528,5.9434,6.8062,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3529,3.3764,5.9498,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3530,3.2815,9.4607,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3531,3.1241,9.8163,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3532,5.9434,6.7010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3533,3.3764,6.0781,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3534,3.2815,10.0484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3535,3.1241,9.8624,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3536,5.9434,6.0277,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3537,3.3764,5.6179,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3538,3.2815,10.5627,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3539,3.1241,10.4230,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3540,5.9434,6.1996,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3541,3.3764,5.8380,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3542,3.2815,10.7996,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3543,3.1241,10.7449,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3544,5.9434,6.0179,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3545,3.3764,5.6945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3546,3.2815,10.2631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3547,3.1241,10.2906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3548,5.9434,6.0623,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3549,3.3764,5.7157,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3550,3.2815,10.6081,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3551,3.1241,10.5448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3552,5.9434,6.1464,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3553,3.3764,5.8228,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3554,3.2815,10.5978,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3555,3.1241,10.3918,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3556,5.9434,6.3495,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3557,3.3764,5.8232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3558,3.2815,10.2103,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3559,3.1241,10.1430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3560,5.9434,6.8841,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3561,3.3764,6.1339,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3562,3.2815,10.7061,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3563,3.1241,9.9080,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3564,5.9434,6.5977,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3565,3.3764,5.8352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3566,3.2815,10.0562,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3567,3.1241,10.1340,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3568,5.9434,6.3181,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3569,3.3764,5.8936,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3570,3.2815,10.3761,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3571,3.1241,10.3102,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3572,5.9434,6.1796,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3573,3.3764,5.8197,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3574,3.2815,10.6550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3575,3.1241,10.5102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3576,5.9434,6.0276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3577,3.3764,5.6611,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3578,3.2815,10.5593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3579,3.1241,10.4688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3580,5.9434,5.8097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3581,3.3764,5.5486,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3582,3.2815,10.3854,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3583,3.1241,10.2971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3584,5.9434,5.8327,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3585,3.3764,5.6467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3586,3.2815,10.4200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3587,3.1241,10.4098,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3588,5.9434,5.7043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3589,3.3764,5.6368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3590,3.2815,10.3001,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3591,3.1241,10.2248,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3592,5.9434,5.8527,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3593,3.3764,5.6187,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3594,3.2815,10.3616,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3595,3.1241,10.3302,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3596,5.9434,5.6813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3597,3.3764,5.5972,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3598,3.2815,10.2726,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3599,3.1241,10.2196,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3600,5.9434,42.1469,0.0127,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3601,3.3764,29.0860,0.0083,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3602,3.2815,25.5167,0.0043,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3603,3.1241,25.7663,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3604,5.9434,5.8905,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3605,3.3764,5.6518,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3606,3.2815,10.5733,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3607,3.1241,10.6090,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3608,5.9434,5.9285,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3609,3.3764,5.6810,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3610,3.2815,10.4924,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3611,3.1241,10.4994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3612,5.9434,5.7705,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3613,3.3764,5.7220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3614,3.2815,10.5203,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3615,3.1241,10.5303,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3616,5.9434,5.7248,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3617,3.3764,5.5955,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3618,3.2815,10.4680,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3619,3.1241,10.3597,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3620,5.9434,5.7970,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3621,3.3764,5.6178,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3622,3.2815,10.3670,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3623,3.1241,10.3494,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3624,5.9434,5.9326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3625,3.3764,5.6710,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3626,3.2815,10.6013,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3627,3.1241,10.5237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3628,5.9434,5.6161,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3629,3.3764,5.5577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3630,3.2815,10.3421,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3631,3.1241,10.3300,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3632,5.9434,5.6859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3633,3.3764,5.6802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3634,3.2815,10.4985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3635,3.1241,10.4940,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3636,5.9434,5.6582,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3637,3.3764,5.5576,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3638,3.2815,10.4764,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3639,3.1241,10.4580,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3640,5.9434,5.8850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3641,3.3764,5.6513,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3642,3.2815,10.3917,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3643,3.1241,10.4258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3644,5.9434,5.7058,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3645,3.3764,5.6133,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3646,3.2815,10.4119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3647,3.1241,10.3832,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3648,5.9434,5.8652,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3649,3.3764,5.6361,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3650,3.2815,10.5499,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3651,3.1241,10.4497,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3652,5.9434,6.1473,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3653,3.3764,5.6958,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3654,3.2815,10.8044,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3655,3.1241,10.5180,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3656,5.9434,6.1078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3657,3.3764,5.7970,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3658,3.2815,10.4859,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3659,3.1241,10.5153,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3660,5.9434,5.7715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3661,3.3764,5.6780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3662,3.2815,10.4998,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3663,3.1241,10.4666,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3664,5.9434,5.8427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3665,3.3764,5.7257,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3666,3.2815,10.7087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3667,3.1241,10.6283,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3668,5.9434,5.7710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3669,3.3764,5.6812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3670,3.2815,10.3987,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3671,3.1241,10.3880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3672,5.9434,5.7357,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3673,3.3764,5.6482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3674,3.2815,10.3605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3675,3.1241,10.3674,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3676,5.9434,5.7360,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3677,3.3764,5.6620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3678,3.2815,10.5412,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3679,3.1241,10.4967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3680,5.9434,5.9078,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3681,3.3764,5.6908,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3682,3.2815,10.5247,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3683,3.1241,10.4579,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3684,5.9434,5.9631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3685,3.3764,5.6872,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3686,3.2815,10.3442,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3687,3.1241,10.3082,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3688,5.9434,5.8660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3689,3.3764,5.6624,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3690,3.2815,11.2174,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3691,3.1241,11.2913,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3692,5.9434,6.0901,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3693,3.3764,5.7773,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3694,3.2815,10.6276,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3695,3.1241,10.4449,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3696,5.9434,6.0247,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3697,3.3764,5.7495,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3698,3.2815,10.4666,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3699,3.1241,10.3989,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3700,5.9434,6.2934,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3701,3.3764,5.8891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3702,3.2815,10.5515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3703,3.1241,10.5043,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3704,5.9434,5.9710,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3705,3.3764,5.8012,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3706,3.2815,10.4271,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3707,3.1241,10.4021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3708,5.9434,6.0320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3709,3.3764,5.7415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3710,3.2815,10.6635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3711,3.1241,10.6103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3712,5.9434,6.0599,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3713,3.3764,5.7919,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3714,3.2815,10.6416,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3715,3.1241,10.6103,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3716,5.9434,6.1010,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3717,3.3764,5.8539,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3718,3.2815,10.6775,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3719,3.1241,10.5443,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3720,5.9434,6.1625,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3721,3.3764,5.7817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3722,3.2815,10.6881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3723,3.1241,10.6049,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3724,5.9434,5.9210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3725,3.3764,5.7195,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3726,3.2815,10.5047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3727,3.1241,10.4313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3728,5.9434,5.7289,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3729,3.3764,5.6630,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3730,3.2815,10.4320,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3731,3.1241,10.3717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3732,5.9434,6.0583,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3733,3.3764,5.8286,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3734,3.2815,10.7021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3735,3.1241,10.6288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3736,5.9434,6.0545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3737,3.3764,5.7758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3738,3.2815,10.4618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3739,3.1241,10.4192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3740,5.9434,5.8453,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3741,3.3764,5.7178,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3742,3.2815,10.4863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3743,3.1241,10.3924,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3744,5.9434,6.2658,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3745,3.3764,5.9133,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3746,3.2815,10.6421,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3747,3.1241,10.4373,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3748,5.9434,6.5892,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3749,3.3764,5.9655,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3750,3.2815,10.2978,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3751,3.1241,10.4255,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3752,5.9434,6.3968,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3753,3.3764,5.8958,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3754,3.2815,10.6014,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3755,3.1241,10.3861,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3756,5.9434,6.3642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3757,3.3764,5.8917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3758,3.2815,10.8185,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3759,3.1241,10.7746,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3760,5.9434,6.1768,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3761,3.3764,5.8158,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3762,3.2815,10.5628,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3763,3.1241,10.4902,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3764,5.9434,6.3210,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3765,3.3764,5.8951,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3766,3.2815,10.8187,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3767,3.1241,10.7733,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3768,5.9434,6.0555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3769,3.3764,5.7725,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3770,3.2815,10.5541,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3771,3.1241,10.5052,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3772,5.9434,6.2844,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3773,3.3764,5.9142,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3774,3.2815,10.6163,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3775,3.1241,10.5416,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3776,5.9434,5.8677,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3777,3.3764,5.6922,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3778,3.2815,10.3090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3779,3.1241,10.2675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3780,5.9434,6.8117,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3781,3.3764,6.0539,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3782,3.2815,10.6110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3783,3.1241,10.5763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3784,5.9434,7.0305,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3785,3.3764,6.1838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3786,3.2815,10.2563,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3787,3.1241,8.8825,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3788,5.9434,6.1973,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3789,3.3764,5.8011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3790,3.2815,10.8100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3791,3.1241,10.7917,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3792,5.9434,6.0932,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3793,3.3764,5.7184,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3794,3.2815,10.6226,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3795,3.1241,10.5972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3796,5.9434,5.8680,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3797,3.3764,5.5930,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3798,3.2815,10.3856,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3799,3.1241,10.3981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3800,5.9434,6.1410,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3801,3.3764,5.7343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3802,3.2815,10.6031,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3803,3.1241,10.6260,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3804,5.9434,5.6627,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3805,3.3764,5.6077,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3806,3.2815,10.5101,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3807,3.1241,10.5140,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3808,5.9434,5.9225,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3809,3.3764,5.7877,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3810,3.2815,10.2968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3811,3.1241,10.2982,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3812,5.9434,6.0445,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3813,3.3764,5.6761,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3814,3.2815,10.2261,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3815,3.1241,10.1386,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3816,5.9434,6.5712,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3817,3.3764,5.9257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3818,3.2815,10.3089,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3819,3.1241,10.2563,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3820,5.9434,6.3971,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3821,3.3764,6.0963,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3822,3.2815,9.7246,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3823,3.1241,9.2250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3824,5.9434,6.1363,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3825,3.3764,5.7148,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3826,3.2815,10.0188,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3827,3.1241,10.0873,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3828,5.9434,5.8745,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3829,3.3764,5.6576,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3830,3.2815,10.8065,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3831,3.1241,10.7049,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3832,5.9434,6.5483,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3833,3.3764,5.8322,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3834,3.2815,10.7491,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3835,3.1241,10.5576,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3836,5.9434,6.4799,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3837,3.3764,5.9017,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3838,3.2815,9.6632,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3839,3.1241,9.9110,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3840,5.9434,6.1608,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3841,3.3764,5.6810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3842,3.2815,10.0745,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3843,3.1241,9.9646,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3844,5.9434,5.6616,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3845,3.3764,5.4905,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3846,3.2815,10.2741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3847,3.1241,10.2965,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3848,5.9434,5.7321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3849,3.3764,5.6187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3850,3.2815,10.3008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3851,3.1241,10.2763,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3852,5.9434,5.7399,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3853,3.3764,5.5432,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3854,3.2815,10.4462,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3855,3.1241,10.4486,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3856,5.9434,5.7225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3857,3.3764,5.6463,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3858,3.2815,10.3606,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3859,3.1241,10.2929,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3860,5.9434,5.7170,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3861,3.3764,5.6823,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3862,3.2815,10.1826,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3863,3.1241,10.2512,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3864,5.9434,5.7298,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3865,3.3764,5.6607,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3866,3.2815,10.2722,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3867,3.1241,10.3519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3868,5.9434,6.4310,0.0374,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3869,3.3764,5.7074,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3870,3.2815,10.3652,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3871,3.1241,10.2777,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3872,5.9434,6.8295,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3873,3.3764,6.0780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3874,3.2815,9.5414,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3875,3.1241,9.9005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3876,5.9434,6.7140,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3877,3.3764,5.9703,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3878,3.2815,15.7688,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3879,3.1241,15.1803,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3880,5.9434,6.7511,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3881,3.3764,5.8769,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3882,3.2815,10.4175,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3883,3.1241,10.1622,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3884,5.9434,7.2940,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3885,3.3764,6.2141,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3886,3.2815,9.9823,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3887,3.1241,10.0799,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3888,5.9434,5.9972,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3889,3.3764,5.7343,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3890,3.2815,9.8885,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3891,3.1241,10.1420,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3892,5.9434,6.0049,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3893,3.3764,5.6764,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3894,3.2815,10.7627,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3895,3.1241,10.6341,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3896,5.9434,6.5287,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3897,3.3764,5.9128,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3898,3.2815,10.2455,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3899,3.1241,10.2387,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3900,5.9434,6.1310,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3901,3.3764,5.8743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3902,3.2815,9.8185,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3903,3.1241,9.8358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3904,5.9434,5.8012,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3905,3.3764,5.5680,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3906,3.2815,10.3082,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3907,3.1241,10.3140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3908,5.9434,6.1683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3909,3.3764,5.7435,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3910,3.2815,10.4352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3911,3.1241,10.4054,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3912,5.9434,6.3251,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3913,3.3764,5.7590,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3914,3.2815,10.1650,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3915,3.1241,10.2334,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3916,5.9434,6.3602,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3917,3.3764,5.8477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3918,3.2815,10.1367,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3919,3.1241,10.0755,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3920,5.9434,6.4596,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3921,3.3764,5.8240,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3922,3.2815,9.9895,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3923,3.1241,10.0747,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3924,5.9434,6.4241,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3925,3.3764,5.8011,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3926,3.2815,9.4837,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3927,3.1241,9.6041,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3928,5.9434,6.6905,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3929,3.3764,5.8547,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3930,3.2815,10.2124,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3931,3.1241,10.0959,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3932,5.9434,6.5304,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3933,3.3764,5.9634,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3934,3.2815,7.4495,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3935,3.1241,7.7992,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3936,5.9434,10.4941,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3937,3.3764,9.7104,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3938,3.2815,13.7583,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3939,3.1241,11.0343,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3940,5.9434,6.2502,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3941,3.3764,5.7354,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3942,3.2815,10.6396,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3943,3.1241,10.4166,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3944,5.9434,6.2482,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3945,3.3764,5.7873,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3946,3.2815,10.5866,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3947,3.1241,10.4497,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3948,5.9434,5.9287,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3949,3.3764,5.6255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3950,3.2815,10.3618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3951,3.1241,10.3190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3952,5.9434,5.9844,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3953,3.3764,5.6862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3954,3.2815,10.6164,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3955,3.1241,10.4789,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3956,5.9434,6.8231,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3957,3.3764,6.1213,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3958,3.2815,10.9190,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3959,3.1241,11.8089,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3960,5.9434,6.4045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3961,3.3764,5.7671,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3962,3.2815,9.6481,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3963,3.1241,10.1733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3964,5.9434,6.3822,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3965,3.3764,5.8355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3966,3.2815,10.2842,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3967,3.1241,10.1851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3968,5.9434,6.3544,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3969,3.3764,5.8810,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3970,3.2815,10.7813,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3971,3.1241,10.6820,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3972,5.9434,6.2880,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3973,3.3764,5.8912,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3974,3.2815,10.7883,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3975,3.1241,10.7224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3976,5.9434,6.0371,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3977,3.3764,5.7769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3978,3.2815,10.7398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3979,3.1241,10.7038,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3980,5.9434,6.8460,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3981,3.3764,5.8618,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3982,3.2815,10.5254,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3983,3.1241,10.2168,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3984,5.9434,6.4913,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3985,3.3764,5.9466,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3986,3.2815,10.2213,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3987,3.1241,10.9618,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3988,5.9434,6.3205,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3989,3.3764,6.0208,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3990,3.2815,10.7824,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3991,3.1241,10.6959,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3992,5.9434,6.7350,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3993,3.3764,5.8068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3994,3.2815,9.9473,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3995,3.1241,10.1352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3996,5.9434,6.7850,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3997,3.3764,7.9890,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3998,3.2815,10.1821,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3999,3.1241,10.0160,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4000,5.9434,6.6158,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4001,3.3764,5.8830,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4002,3.2815,10.1900,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4003,3.1241,10.0936,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4004,5.9434,6.4850,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4005,3.3764,5.7891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4006,3.2815,10.0905,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4007,3.1241,10.0887,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4008,5.9434,7.4371,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4009,3.3764,5.9442,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4010,3.2815,7.1026,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4011,3.1241,10.5800,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4012,5.9434,6.0790,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4013,3.3764,5.7064,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4014,3.2815,10.5196,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4015,3.1241,10.3536,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4016,5.9434,6.1020,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4017,3.3764,5.8091,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4018,3.2815,10.6983,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4019,3.1241,10.6982,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4020,5.9434,5.8743,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4021,3.3764,5.6667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4022,3.2815,10.4407,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4023,3.1241,10.3678,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4024,5.9434,6.1996,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4025,3.3764,5.9313,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4026,3.2815,10.6893,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4027,3.1241,10.5698,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4028,5.9434,6.9269,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4029,3.3764,5.9264,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4030,3.2815,10.3771,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4031,3.1241,10.0533,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4032,5.9434,6.6505,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4033,3.3764,5.8365,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4034,3.2815,9.9818,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4035,3.1241,10.0536,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4036,5.9434,6.6099,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4037,3.3764,5.9633,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4038,3.2815,10.6879,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4039,3.1241,10.4965,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4040,5.9434,6.1870,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4041,3.3764,5.9088,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4042,3.2815,10.8384,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4043,3.1241,10.7593,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4044,5.9434,6.1857,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4045,3.3764,5.7994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4046,3.2815,10.6947,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4047,3.1241,10.6773,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4048,5.9434,6.1078,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4049,3.3764,5.8250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4050,3.2815,10.8492,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4051,3.1241,10.8454,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4052,5.9434,6.2465,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4053,3.3764,5.7402,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4054,3.2815,10.2894,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4055,3.1241,10.0273,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4056,5.9434,6.1790,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4057,3.3764,5.7171,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4058,3.2815,10.7632,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4059,3.1241,10.6758,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4060,5.9434,6.1898,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4061,3.3764,5.7807,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4062,3.2815,10.6520,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4063,3.1241,10.5642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4064,5.9434,6.6312,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4065,3.3764,6.7083,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4066,3.2815,9.0094,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4067,3.1241,10.0363,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4068,5.9434,6.8086,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4069,3.3764,5.8820,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4070,3.2815,10.0498,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4071,3.1241,10.0022,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4072,5.9434,7.6274,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4073,3.3764,6.8115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4074,3.2815,10.4929,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4075,3.1241,10.3363,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4076,5.9434,6.0916,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4077,3.3764,5.7588,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4078,3.2815,10.7850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4079,3.1241,10.5484,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4080,5.9434,6.1873,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4081,3.3764,5.7524,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4082,3.2815,10.6694,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4083,3.1241,10.6245,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4084,5.9434,5.9632,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4085,3.3764,5.7674,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4086,3.2815,10.7942,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4087,3.1241,10.5886,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4088,5.9434,6.6262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4089,3.3764,5.8128,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4090,3.2815,10.6158,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4091,3.1241,10.2185,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4092,5.9434,6.6646,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4093,3.3764,5.8366,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4094,3.2815,9.6341,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4095,3.1241,9.1676,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4096,5.9434,6.0147,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4097,3.3764,5.8063,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4098,3.2815,9.3035,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4099,3.1241,7.5238,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4100,5.9434,5.9424,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4101,3.3764,5.6957,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4102,3.2815,10.2131,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4103,3.1241,10.2180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4104,5.9434,5.9484,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4105,3.3764,5.6348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4106,3.2815,10.1120,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4107,3.1241,10.1744,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4108,5.9434,5.9746,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4109,3.3764,5.6000,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4110,3.2815,10.4098,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4111,3.1241,10.2647,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4112,5.9434,6.1363,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4113,3.3764,5.7442,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4114,3.2815,10.4945,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4115,3.1241,10.4318,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4116,5.9434,6.1654,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4117,3.3764,5.8643,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4118,3.2815,10.3818,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4119,3.1241,9.9212,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4120,5.9434,5.8928,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4121,3.3764,5.5524,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4122,3.2815,10.3048,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4123,3.1241,10.2323,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4124,5.9434,6.0079,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4125,3.3764,5.6877,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4126,3.2815,10.4593,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4127,3.1241,10.4413,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4128,5.9434,6.4824,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4129,3.3764,5.8473,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4130,3.2815,9.7967,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4131,3.1241,9.3802,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4132,5.9434,6.2155,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4133,3.3764,5.7838,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4134,3.2815,10.0105,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4135,3.1241,9.9366,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4136,5.9434,6.2951,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4137,3.3764,5.8790,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4138,3.2815,11.8342,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4139,3.1241,11.4506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4140,5.9434,6.0629,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4141,3.3764,5.6595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4142,3.2815,9.9441,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4143,3.1241,10.0326,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4144,5.9434,5.9841,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4145,3.3764,5.6490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4146,3.2815,10.2502,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4147,3.1241,10.1962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4148,5.9434,6.1079,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4149,3.3764,5.7450,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4150,3.2815,10.5953,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4151,3.1241,10.5735,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4152,5.9434,6.3706,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4153,3.3764,5.7663,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4154,3.2815,9.9988,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4155,3.1241,10.3253,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4156,5.9434,6.8107,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4157,3.3764,6.1102,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4158,3.2815,10.4895,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4159,3.1241,10.3559,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4160,5.9434,7.2909,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4161,3.3764,5.8528,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4162,3.2815,9.9231,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4163,3.1241,10.1202,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4164,5.9434,6.4241,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4165,3.3764,5.7994,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4166,3.2815,10.1062,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4167,3.1241,10.2642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4168,5.9434,6.7796,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4169,3.3764,5.8131,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4170,3.2815,10.0247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4171,3.1241,10.0813,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4172,5.9434,6.0807,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4173,3.3764,5.7387,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4174,3.2815,10.5689,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4175,3.1241,10.3488,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4176,5.9434,6.1557,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4177,3.3764,5.8280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4178,3.2815,10.7044,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4179,3.1241,10.6632,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4180,5.9434,6.2497,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4181,3.3764,6.1416,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4182,3.2815,9.8232,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4183,3.1241,10.1628,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4184,5.9434,6.7243,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4185,3.3764,5.8422,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4186,3.2815,10.0571,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4187,3.1241,9.7536,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4188,5.9434,6.9088,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4189,3.3764,5.8397,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4190,3.2815,10.1853,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4191,3.1241,9.8418,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4192,5.9434,6.4582,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4193,3.3764,5.8355,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4194,3.2815,9.9840,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4195,3.1241,10.0472,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4196,5.9434,6.5976,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4197,3.3764,5.9145,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4198,3.2815,11.2500,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4199,3.1241,10.8798,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4200,5.9434,41.2295,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4201,3.3764,30.4050,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4202,3.2815,25.7898,0.0044,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4203,3.1241,25.7588,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4204,5.9434,5.8797,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4205,3.3764,5.6879,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4206,3.2815,10.6055,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4207,3.1241,10.6427,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4208,5.9434,5.7032,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4209,3.3764,5.5746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4210,3.2815,10.5310,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4211,3.1241,10.4699,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4212,5.9434,5.7965,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4213,3.3764,5.6652,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4214,3.2815,10.4326,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4215,3.1241,10.3183,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4216,5.9434,5.6860,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4217,3.3764,5.5631,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4218,3.2815,10.2930,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4219,3.1241,10.3077,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4220,5.9434,5.7480,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4221,3.3764,5.5762,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4222,3.2815,10.3622,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4223,3.1241,10.3251,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4224,5.9434,5.7189,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4225,3.3764,5.5293,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4226,3.2815,10.7822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4227,3.1241,10.5492,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4228,5.9434,5.5738,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4229,3.3764,5.5230,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4230,3.2815,10.2706,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4231,3.1241,10.2838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4232,5.9434,5.6641,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4233,3.3764,5.5628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4234,3.2815,10.2615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4235,3.1241,10.2381,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4236,5.9434,5.5819,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4237,3.3764,5.5212,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4238,3.2815,10.2716,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4239,3.1241,10.2495,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4240,5.9434,5.6644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4241,3.3764,5.5514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4242,3.2815,10.3519,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4243,3.1241,10.3272,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4244,5.9434,5.6795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4245,3.3764,5.5507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4246,3.2815,10.3380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4247,3.1241,10.3030,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4248,5.9434,5.6248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4249,3.3764,5.5294,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4250,3.2815,10.3009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4251,3.1241,10.2502,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4252,5.9434,5.8650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4253,3.3764,5.6762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4254,3.2815,10.4781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4255,3.1241,10.4161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4256,5.9434,5.7743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4257,3.3764,5.6099,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4258,3.2815,10.5154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4259,3.1241,10.5032,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4260,5.9434,5.9489,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4261,3.3764,5.6480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4262,3.2815,10.4966,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4263,3.1241,10.4276,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4264,5.9434,5.8902,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4265,3.3764,5.6840,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4266,3.2815,11.4220,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4267,3.1241,11.4034,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4268,5.9434,7.7563,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4269,3.3764,6.7294,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4270,3.2815,10.3667,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4271,3.1241,10.1102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4272,5.9434,6.3491,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4273,3.3764,5.8943,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4274,3.2815,10.2424,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4275,3.1241,10.3018,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4276,5.9434,6.7894,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4277,3.3764,6.1185,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4278,3.2815,10.2734,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4279,3.1241,10.1165,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4280,5.9434,6.3137,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4281,3.3764,5.8072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4282,3.2815,10.4163,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4283,3.1241,10.2864,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4284,5.9434,6.0706,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4285,3.3764,5.7897,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4286,3.2815,10.5790,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4287,3.1241,10.4007,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4288,5.9434,5.8709,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4289,3.3764,6.4662,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4290,3.2815,9.2284,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4291,3.1241,11.4428,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4292,5.9434,6.3364,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4293,3.3764,5.7996,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4294,3.2815,10.3412,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4295,3.1241,10.2937,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4296,5.9434,6.5050,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4297,3.3764,5.9277,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4298,3.2815,10.8842,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4299,3.1241,10.6215,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4300,5.9434,6.2867,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4301,3.3764,5.8072,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4302,3.2815,10.5775,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4303,3.1241,10.3973,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4304,5.9434,6.5714,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4305,3.3764,5.9339,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4306,3.2815,9.9074,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4307,3.1241,9.9983,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4308,5.9434,7.5503,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4309,3.3764,6.8548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4310,3.2815,10.8375,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4311,3.1241,10.5989,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4312,5.9434,6.4885,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4313,3.3764,5.8818,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4314,3.2815,10.2904,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4315,3.1241,10.2630,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4316,5.9434,6.1724,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4317,3.3764,5.7363,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4318,3.2815,10.4227,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4319,3.1241,10.3215,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4320,5.9434,5.9558,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4321,3.3764,5.7414,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4322,3.2815,10.5135,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4323,3.1241,10.3605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4324,5.9434,6.1001,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4325,3.3764,5.8419,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4326,3.2815,10.7310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4327,3.1241,10.6249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4328,5.9434,5.8773,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4329,3.3764,5.7470,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4330,3.2815,10.4479,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4331,3.1241,10.4470,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4332,5.9434,5.8226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4333,3.3764,5.7482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4334,3.2815,10.4180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4335,3.1241,10.4539,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4336,5.9434,5.7931,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4337,3.3764,5.7281,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4338,3.2815,11.0645,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4339,3.1241,11.1666,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4340,5.9434,6.4252,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4341,3.3764,5.7862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4342,3.2815,10.4061,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4343,3.1241,10.0590,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4344,5.9434,6.6408,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4345,3.3764,5.8240,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4346,3.2815,10.3377,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4347,3.1241,10.3535,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4348,5.9434,7.1655,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4349,3.3764,6.1392,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4350,3.2815,10.2277,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4351,3.1241,10.1965,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4352,5.9434,6.7647,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4353,3.3764,5.9955,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4354,3.2815,10.1807,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4355,3.1241,10.0929,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4356,5.9434,6.7708,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4357,3.3764,5.9887,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4358,3.2815,12.3262,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4359,3.1241,12.2199,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4360,5.9434,6.6314,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4361,3.3764,5.8099,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4362,3.2815,10.3957,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4363,3.1241,10.2389,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4364,5.9434,6.3053,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4365,3.3764,5.7438,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4366,3.2815,10.4307,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4367,3.1241,10.3460,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4368,5.9434,6.6409,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4369,3.3764,5.9375,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4370,3.2815,10.4216,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4371,3.1241,10.2238,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4372,5.9434,6.2670,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4373,3.3764,5.8633,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4374,3.2815,10.1373,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4375,3.1241,10.0267,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4376,5.9434,6.3273,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4377,3.3764,5.8441,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4378,3.2815,10.1459,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4379,3.1241,9.9817,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4380,5.9434,6.1831,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4381,3.3764,6.1310,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4382,3.2815,9.6876,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4383,3.1241,9.9697,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4384,5.9434,6.3287,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4385,3.3764,5.8058,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4386,3.2815,10.0360,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4387,3.1241,10.0120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4388,5.9434,6.3221,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4389,3.3764,5.8092,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4390,3.2815,10.0266,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4391,3.1241,9.9619,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4392,5.9434,6.6215,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4393,3.3764,5.9510,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4394,3.2815,10.5390,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4395,3.1241,10.4846,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4396,5.9434,7.0334,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4397,3.3764,5.9381,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4398,3.2815,10.6879,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4399,3.1241,10.2737,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4400,5.9434,6.8267,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4401,3.3764,5.8589,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4402,3.2815,10.3290,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4403,3.1241,10.1548,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4404,5.9434,6.9210,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4405,3.3764,5.9474,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4406,3.2815,10.7016,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4407,3.1241,10.4085,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4408,5.9434,7.1244,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4409,3.3764,6.0395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4410,3.2815,10.7238,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4411,3.1241,10.4283,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4412,5.9434,6.6427,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4413,3.3764,5.8935,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4414,3.2815,10.4886,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +4415,3.1241,10.2689,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4416,5.9434,6.5443,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4417,3.3764,5.9133,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4418,3.2815,10.7474,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4419,3.1241,10.6928,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4420,5.9434,6.8065,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4421,3.3764,5.9018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4422,3.2815,9.9925,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4423,3.1241,10.0929,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4424,5.9434,6.7579,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4425,3.3764,5.8731,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4426,3.2815,10.1275,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4427,3.1241,10.0256,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4428,5.9434,7.0108,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4429,3.3764,5.9503,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4430,3.2815,10.3219,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4431,3.1241,10.1071,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4432,5.9434,7.3873,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4433,3.3764,6.5968,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4434,3.2815,12.5706,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4435,3.1241,12.3990,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4436,5.9434,6.8386,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4437,3.3764,5.9261,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4438,3.2815,10.6493,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4439,3.1241,10.4988,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4440,5.9434,6.6601,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4441,3.3764,6.1807,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4442,3.2815,12.1260,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4443,3.1241,11.7137,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4444,5.9434,6.3554,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4445,3.3764,5.8338,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4446,3.2815,10.5743,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4447,3.1241,10.3729,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4448,5.9434,6.2617,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4449,3.3764,5.8546,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4450,3.2815,10.7244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4451,3.1241,10.6784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4452,5.9434,5.9017,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4453,3.3764,5.7721,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4454,3.2815,10.5278,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4455,3.1241,10.4663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4456,5.9434,6.0954,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4457,3.3764,5.8542,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4458,3.2815,10.6892,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4459,3.1241,10.6318,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4460,5.9434,6.9877,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4461,3.3764,6.1510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4462,3.2815,10.1870,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4463,3.1241,10.1877,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4464,5.9434,6.9438,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4465,3.3764,6.6671,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4466,3.2815,8.9610,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4467,3.1241,8.9045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4468,5.9434,6.8017,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4469,3.3764,5.9543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4470,3.2815,10.2907,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4471,3.1241,10.0485,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4472,5.9434,6.6408,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4473,3.3764,5.9550,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4474,3.2815,9.9637,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4475,3.1241,10.0091,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4476,5.9434,9.6990,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4477,3.3764,7.2255,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4478,3.2815,5.8729,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4479,3.1241,9.3495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4480,5.9434,6.1378,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4481,3.3764,5.7341,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4482,3.2815,10.5670,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4483,3.1241,10.4221,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4484,5.9434,6.1343,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4485,3.3764,5.7210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4486,3.2815,10.6314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4487,3.1241,10.5956,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4488,5.9434,6.1574,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4489,3.3764,5.8441,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4490,3.2815,10.6976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +4491,3.1241,10.6256,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4492,5.9434,6.0319,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4493,3.3764,5.7515,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4494,3.2815,10.6520,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4495,3.1241,10.5612,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4496,5.9434,6.1695,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4497,3.3764,5.8490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4498,3.2815,10.4564,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4499,3.1241,10.3820,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4500,5.9434,6.1521,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4501,3.3764,5.7399,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4502,3.2815,10.5846,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4503,3.1241,10.4834,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4504,5.9434,6.2888,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4505,3.3764,5.9167,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4506,3.2815,10.5837,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4507,3.1241,10.3933,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4508,5.9434,6.7949,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4509,3.3764,6.0089,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4510,3.2815,10.1911,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4511,3.1241,10.0930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4512,5.9434,9.4100,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4513,3.3764,8.4811,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4514,3.2815,10.0141,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4515,3.1241,10.1700,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4516,5.9434,6.5339,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4517,3.3764,5.7013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4518,3.2815,9.9926,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4519,3.1241,10.4214,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4520,5.9434,6.1860,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4521,3.3764,5.7808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4522,3.2815,10.6242,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4523,3.1241,10.5376,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4524,5.9434,5.8686,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4525,3.3764,5.7516,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4526,3.2815,10.5868,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4527,3.1241,10.3742,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4528,5.9434,6.8532,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4529,3.3764,6.1463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4530,3.2815,10.3083,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4531,3.1241,10.1224,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4532,5.9434,6.3907,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4533,3.3764,5.8553,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4534,3.2815,9.8830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4535,3.1241,9.9593,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4536,5.9434,6.1232,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4537,3.3764,5.8159,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4538,3.2815,10.5135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4539,3.1241,10.4020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4540,5.9434,6.9019,0.0435,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4541,3.3764,5.9611,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4542,3.2815,10.7203,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4543,3.1241,10.4102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4544,5.9434,6.0326,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4545,3.3764,5.7141,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4546,3.2815,10.5701,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4547,3.1241,10.4480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4548,5.9434,6.3124,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4549,3.3764,5.8788,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4550,3.2815,10.6845,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4551,3.1241,10.6035,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4552,5.9434,5.9735,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4553,3.3764,5.7126,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4554,3.2815,10.4534,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4555,3.1241,10.3195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4556,5.9434,6.2030,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4557,3.3764,5.7994,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4558,3.2815,11.0704,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4559,3.1241,10.8522,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4560,5.9434,6.7967,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4561,3.3764,5.8123,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4562,3.2815,10.1759,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4563,3.1241,10.0824,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4564,5.9434,6.7506,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4565,3.3764,5.8090,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4566,3.2815,10.4842,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4567,3.1241,10.2966,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4568,5.9434,6.9231,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4569,3.3764,5.9345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4570,3.2815,10.1241,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4571,3.1241,10.0562,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4572,5.9434,6.3408,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4573,3.3764,5.7884,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4574,3.2815,9.9046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4575,3.1241,10.1221,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4576,5.9434,6.5525,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4577,3.3764,5.8478,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4578,3.2815,10.6040,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4579,3.1241,10.3324,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4580,5.9434,6.6122,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4581,3.3764,5.8396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4582,3.2815,9.9699,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4583,3.1241,9.9860,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4584,5.9434,6.6233,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4585,3.3764,5.9372,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4586,3.2815,10.1205,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4587,3.1241,10.0941,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4588,5.9434,6.9224,0.0712,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4589,3.3764,5.8787,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4590,3.2815,10.0823,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4591,3.1241,10.0215,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4592,5.9434,6.5109,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4593,3.3764,5.8155,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4594,3.2815,9.8877,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4595,3.1241,9.7909,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4596,5.9434,6.4663,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4597,3.3764,5.8305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4598,3.2815,10.2480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4599,3.1241,9.9767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4600,5.9434,6.2940,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4601,3.3764,5.8199,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4602,3.2815,10.4443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4603,3.1241,10.3172,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4604,5.9434,6.1015,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4605,3.3764,6.2732,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4606,3.2815,9.5559,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4607,3.1241,10.2997,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4608,5.9434,6.9083,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4609,3.3764,5.8935,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4610,3.2815,10.0781,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4611,3.1241,9.9918,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4612,5.9434,6.7262,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4613,3.3764,5.9576,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4614,3.2815,9.8236,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4615,3.1241,9.9446,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4616,5.9434,6.5493,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4617,3.3764,5.8758,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4618,3.2815,10.0080,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4619,3.1241,10.0462,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4620,5.9434,6.5105,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4621,3.3764,5.8217,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4622,3.2815,9.9470,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4623,3.1241,9.7843,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4624,5.9434,6.3906,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4625,3.3764,5.9018,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4626,3.2815,9.8328,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4627,3.1241,9.9568,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4628,5.9434,6.9252,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4629,3.3764,5.8801,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4630,3.2815,10.3362,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4631,3.1241,10.0716,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4632,5.9434,6.4953,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4633,3.3764,5.9047,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4634,3.2815,10.0049,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4635,3.1241,10.0596,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4636,5.9434,6.8164,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4637,3.3764,5.8877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4638,3.2815,10.2438,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4639,3.1241,10.0666,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4640,5.9434,7.8180,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4641,3.3764,6.1401,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4642,3.2815,9.0062,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4643,3.1241,10.0202,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4644,5.9434,6.4636,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4645,3.3764,5.9352,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4646,3.2815,10.1565,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4647,3.1241,10.2197,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4648,5.9434,6.9209,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4649,3.3764,5.8826,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4650,3.2815,10.3828,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4651,3.1241,9.2457,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4652,5.9434,6.8193,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4653,3.3764,5.9013,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4654,3.2815,10.4833,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4655,3.1241,10.3939,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4656,5.9434,6.6223,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4657,3.3764,5.8759,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4658,3.2815,10.2417,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4659,3.1241,10.0679,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4660,5.9434,6.7317,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4661,3.3764,5.8401,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4662,3.2815,9.1821,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4663,3.1241,8.7526,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4664,5.9434,6.4966,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4665,3.3764,5.8072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4666,3.2815,10.0958,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4667,3.1241,10.1109,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4668,5.9434,6.7250,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4669,3.3764,5.8768,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4670,3.2815,10.2135,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4671,3.1241,10.0872,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4672,5.9434,6.8162,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4673,3.3764,5.8678,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4674,3.2815,10.4473,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4675,3.1241,10.3380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4676,5.9434,6.9218,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4677,3.3764,5.8650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4678,3.2815,10.6891,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4679,3.1241,10.6903,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4680,5.9434,6.8218,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4681,3.3764,5.9316,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4682,3.2815,10.8474,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4683,3.1241,9.9505,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4684,5.9434,6.5143,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4685,3.3764,5.8280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4686,3.2815,10.1701,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4687,3.1241,9.9243,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4688,5.9434,6.7684,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4689,3.3764,5.8747,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4690,3.2815,10.4121,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4691,3.1241,9.8431,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4692,5.9434,6.7422,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4693,3.3764,5.7807,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4694,3.2815,9.3829,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4695,3.1241,9.9792,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4696,5.9434,6.1382,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4697,3.3764,5.7203,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4698,3.2815,10.6631,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4699,3.1241,10.5300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4700,5.9434,6.2121,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4701,3.3764,5.8068,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4702,3.2815,10.5299,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4703,3.1241,10.4374,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4704,5.9434,5.7586,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4705,3.3764,5.6675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4706,3.2815,10.8622,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4707,3.1241,10.7517,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4708,5.9434,6.5170,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4709,3.3764,6.1434,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4710,3.2815,11.2250,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4711,3.1241,11.2416,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4712,5.9434,6.7578,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4713,3.3764,5.9844,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4714,3.2815,10.0553,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4715,3.1241,10.0309,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4716,5.9434,7.0279,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4717,3.3764,6.4159,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4718,3.2815,10.3770,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4719,3.1241,10.0189,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4720,5.9434,6.7767,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4721,3.3764,6.0815,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4722,3.2815,10.3958,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4723,3.1241,10.0534,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4724,5.9434,7.1674,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4725,3.3764,5.9492,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4726,3.2815,10.1305,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4727,3.1241,9.8908,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4728,5.9434,7.0797,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4729,3.3764,5.9618,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4730,3.2815,9.9698,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4731,3.1241,9.6656,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4732,5.9434,6.6678,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4733,3.3764,5.8965,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4734,3.2815,10.5947,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4735,3.1241,10.4563,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4736,5.9434,6.8959,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4737,3.3764,5.9110,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4738,3.2815,10.3804,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4739,3.1241,10.1249,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4740,5.9434,6.6543,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4741,3.3764,5.9260,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4742,3.2815,9.9665,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4743,3.1241,9.7308,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4744,5.9434,6.4905,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4745,3.3764,5.8368,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4746,3.2815,10.1232,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4747,3.1241,10.0310,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4748,5.9434,6.9294,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4749,3.3764,5.8786,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4750,3.2815,10.2304,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4751,3.1241,10.1486,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4752,5.9434,6.9879,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4753,3.3764,6.1630,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4754,3.2815,10.0028,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4755,3.1241,9.9328,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4756,5.9434,6.6818,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4757,3.3764,5.9075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4758,3.2815,10.2347,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4759,3.1241,10.1222,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4760,5.9434,6.8010,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4761,3.3764,5.9408,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4762,3.2815,10.1602,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4763,3.1241,10.0906,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4764,5.9434,6.4158,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4765,3.3764,5.9243,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4766,3.2815,9.6780,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4767,3.1241,11.3350,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4768,5.9434,7.0281,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4769,3.3764,5.8569,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4770,3.2815,10.1803,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4771,3.1241,10.3731,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4772,5.9434,7.0958,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4773,3.3764,6.2423,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4774,3.2815,10.2729,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4775,3.1241,10.0565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4776,5.9434,6.5207,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4777,3.3764,5.8503,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4778,3.2815,10.1280,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4779,3.1241,10.0595,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4780,5.9434,6.7917,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4781,3.3764,5.7794,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4782,3.2815,10.3638,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4783,3.1241,10.2409,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4784,5.9434,6.2995,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4785,3.3764,5.8504,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4786,3.2815,9.5051,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4787,3.1241,9.9096,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4788,5.9434,7.0503,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4789,3.3764,6.0692,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4790,3.2815,11.4456,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4791,3.1241,11.2251,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4792,5.9434,6.4896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4793,3.3764,5.9117,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4794,3.2815,7.1186,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4795,3.1241,8.2483,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4796,5.9434,6.3817,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4797,3.3764,5.8730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4798,3.2815,10.3570,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4799,3.1241,10.2105,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4800,5.9434,32.3006,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4801,3.3764,33.8966,0.0081,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4802,3.2815,26.1105,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4803,3.1241,25.9116,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4804,5.9434,5.8794,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4805,3.3764,5.6160,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4806,3.2815,10.3810,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4807,3.1241,10.3917,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4808,5.9434,5.7791,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4809,3.3764,5.5919,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4810,3.2815,10.4674,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4811,3.1241,10.3811,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4812,5.9434,5.8672,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4813,3.3764,5.6756,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4814,3.2815,10.6032,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4815,3.1241,10.4721,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4816,5.9434,5.7984,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4817,3.3764,5.5812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4818,3.2815,10.5245,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4819,3.1241,10.4884,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4820,5.9434,5.8753,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4821,3.3764,5.6147,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4822,3.2815,10.3998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4823,3.1241,10.3588,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4824,5.9434,5.6516,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4825,3.3764,5.4999,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4826,3.2815,10.5261,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4827,3.1241,10.5564,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4828,5.9434,5.7592,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4829,3.3764,5.6930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4830,3.2815,10.4522,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4831,3.1241,10.5002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4832,5.9434,5.6320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4833,3.3764,5.5373,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4834,3.2815,10.3659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4835,3.1241,10.3637,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4836,5.9434,5.6307,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4837,3.3764,5.5943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4838,3.2815,10.3869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4839,3.1241,10.3950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4840,5.9434,5.7024,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4841,3.3764,5.5403,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4842,3.2815,10.3946,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4843,3.1241,10.3890,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4844,5.9434,5.6348,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4845,3.3764,5.5404,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4846,3.2815,10.4141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4847,3.1241,10.3812,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4848,5.9434,5.6584,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4849,3.3764,5.5861,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4850,3.2815,10.3480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4851,3.1241,10.3198,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4852,5.9434,5.6676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4853,3.3764,5.6033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4854,3.2815,10.5026,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4855,3.1241,10.4701,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4856,5.9434,5.7808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4857,3.3764,5.6802,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4858,3.2815,10.5878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4859,3.1241,10.5412,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4860,5.9434,5.8293,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4861,3.3764,5.6025,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4862,3.2815,10.4610,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4863,3.1241,10.3775,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4864,5.9434,5.7752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4865,3.3764,5.6885,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4866,3.2815,10.3891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4867,3.1241,10.3707,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4868,5.9434,5.7627,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4869,3.3764,5.7004,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4870,3.2815,10.5874,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4871,3.1241,10.3347,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4872,5.9434,6.5388,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4873,3.3764,5.9882,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4874,3.2815,10.6572,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4875,3.1241,10.4081,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4876,5.9434,6.2098,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4877,3.3764,5.6805,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4878,3.2815,12.4827,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4879,3.1241,12.3936,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4880,5.9434,7.2115,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4881,3.3764,6.6610,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4882,3.2815,10.4076,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4883,3.1241,10.2480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4884,5.9434,6.1934,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4885,3.3764,5.8718,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4886,3.2815,10.7961,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4887,3.1241,10.5545,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4888,5.9434,6.4026,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4889,3.3764,5.8653,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4890,3.2815,10.7729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4891,3.1241,10.6507,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4892,5.9434,6.1315,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4893,3.3764,5.7745,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4894,3.2815,10.6476,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4895,3.1241,10.5994,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4896,5.9434,5.7973,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4897,3.3764,5.6103,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4898,3.2815,10.6446,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4899,3.1241,10.6591,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4900,5.9434,5.9723,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4901,3.3764,5.8100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4902,3.2815,10.7836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4903,3.1241,10.7543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4904,5.9434,5.7992,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4905,3.3764,5.6042,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4906,3.2815,10.4711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4907,3.1241,10.4380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4908,5.9434,5.7477,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4909,3.3764,5.9112,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4910,3.2815,10.7843,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4911,3.1241,10.7119,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4912,5.9434,6.4153,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4913,3.3764,5.9122,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4914,3.2815,10.5050,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4915,3.1241,10.4756,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4916,5.9434,6.7948,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4917,3.3764,5.9604,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4918,3.2815,10.4350,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4919,3.1241,10.3300,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4920,5.9434,7.0667,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4921,3.3764,6.3269,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4922,3.2815,13.9925,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4923,3.1241,13.7831,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4924,5.9434,5.9417,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4925,3.3764,5.6588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4926,3.2815,10.7864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4927,3.1241,10.7538,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4928,5.9434,6.0348,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4929,3.3764,5.8080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4930,3.2815,10.7858,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4931,3.1241,10.5745,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4932,5.9434,6.2785,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4933,3.3764,5.8760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4934,3.2815,10.6251,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4935,3.1241,10.5227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4936,5.9434,6.4737,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4937,3.3764,6.1266,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4938,3.2815,11.1711,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4939,3.1241,11.0394,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4940,5.9434,6.7466,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4941,3.3764,6.1503,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4942,3.2815,10.1989,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4943,3.1241,10.0555,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4944,5.9434,7.3530,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4945,3.3764,6.2945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4946,3.2815,9.4413,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4947,3.1241,9.4934,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4948,5.9434,6.3371,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4949,3.3764,5.8644,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4950,3.2815,10.8125,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4951,3.1241,10.6535,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4952,5.9434,6.2218,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4953,3.3764,5.9035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4954,3.2815,10.8133,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4955,3.1241,10.8335,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4956,5.9434,6.2618,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4957,3.3764,5.9079,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4958,3.2815,11.0576,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4959,3.1241,10.7985,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4960,5.9434,6.8732,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4961,3.3764,5.8588,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4962,3.2815,10.7675,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4963,3.1241,10.4387,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4964,5.9434,7.3588,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4965,3.3764,6.1958,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4966,3.2815,12.1568,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4967,3.1241,11.6199,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4968,5.9434,7.2670,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4969,3.3764,5.8584,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4970,3.2815,7.4882,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4971,3.1241,10.8285,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4972,5.9434,6.2143,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4973,3.3764,5.7939,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4974,3.2815,10.5418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4975,3.1241,10.4667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4976,5.9434,6.1277,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4977,3.3764,5.8173,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4978,3.2815,11.2849,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4979,3.1241,11.1370,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4980,5.9434,7.0442,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4981,3.3764,6.0394,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4982,3.2815,9.9074,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4983,3.1241,10.0726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4984,5.9434,6.0067,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4985,3.3764,5.5717,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4986,3.2815,10.4744,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4987,3.1241,10.3915,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4988,5.9434,5.8512,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4989,3.3764,5.5853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4990,3.2815,10.8005,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4991,3.1241,10.7061,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4992,5.9434,6.4528,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4993,3.3764,5.9291,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4994,3.2815,9.6880,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4995,3.1241,10.3075,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4996,5.9434,6.4999,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4997,3.3764,5.7917,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4998,3.2815,10.3927,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4999,3.1241,10.2657,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5000,5.9434,7.4827,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5001,3.3764,6.6751,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5002,3.2815,10.5042,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5003,3.1241,10.3247,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5004,5.9434,6.0672,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5005,3.3764,5.6995,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5006,3.2815,10.8558,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5007,3.1241,10.7605,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5008,5.9434,6.1875,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5009,3.3764,5.7775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5010,3.2815,10.6557,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5011,3.1241,10.6445,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5012,5.9434,6.0408,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5013,3.3764,5.7314,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5014,3.2815,10.6366,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +5015,3.1241,10.6488,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5016,5.9434,6.4826,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5017,3.3764,5.7915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5018,3.2815,10.4950,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5019,3.1241,10.2315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5020,5.9434,6.1435,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5021,3.3764,5.6896,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5022,3.2815,10.5713,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5023,3.1241,10.5610,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5024,5.9434,7.1047,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5025,3.3764,5.9179,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5026,3.2815,10.3582,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5027,3.1241,9.9242,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5028,5.9434,6.6520,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5029,3.3764,5.8788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5030,3.2815,10.4678,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5031,3.1241,10.2274,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5032,5.9434,6.7503,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5033,3.3764,5.7945,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5034,3.2815,10.7395,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5035,3.1241,10.5445,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5036,5.9434,6.5952,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5037,3.3764,5.8204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5038,3.2815,10.0567,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5039,3.1241,9.9772,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +5040,5.9434,6.7230,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5041,3.3764,5.8861,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5042,3.2815,9.9511,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5043,3.1241,9.8556,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5044,5.9434,7.1139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5045,3.3764,5.9583,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5046,3.2815,10.9396,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5047,3.1241,10.8145,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5048,5.9434,6.9283,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5049,3.3764,5.7705,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5050,3.2815,10.5320,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5051,3.1241,10.1591,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5052,5.9434,6.6323,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5053,3.3764,8.2268,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5054,3.2815,6.2061,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5055,3.1241,10.5962,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5056,5.9434,6.1700,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5057,3.3764,5.6930,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5058,3.2815,10.5620,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +5059,3.1241,10.4199,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5060,5.9434,6.1677,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5061,3.3764,5.8269,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5062,3.2815,10.6690,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5063,3.1241,10.6276,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5064,5.9434,6.0211,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5065,3.3764,5.8027,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5066,3.2815,10.6159,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5067,3.1241,10.5146,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5068,5.9434,6.0491,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5069,3.3764,5.7215,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5070,3.2815,10.6168,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5071,3.1241,10.5885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5072,5.9434,6.6325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5073,3.3764,5.7540,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5074,3.2815,10.0915,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5075,3.1241,9.5988,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +5076,5.9434,6.2704,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5077,3.3764,5.7415,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5078,3.2815,11.2482,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5079,3.1241,11.2717,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5080,5.9434,6.1979,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5081,3.3764,6.0145,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5082,3.2815,9.5560,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5083,3.1241,10.3055,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5084,5.9434,5.9774,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5085,3.3764,5.7116,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5086,3.2815,10.3905,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +5087,3.1241,10.2367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5088,5.9434,6.3405,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5089,3.3764,5.8516,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5090,3.2815,10.5462,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +5091,3.1241,10.4809,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5092,5.9434,6.5522,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5093,3.3764,5.9497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5094,3.2815,10.3091,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +5095,3.1241,10.2825,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5096,5.9434,6.0448,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5097,3.3764,5.7990,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5098,3.2815,9.7754,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5099,3.1241,10.1281,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5100,5.9434,5.8383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5101,3.3764,5.6237,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5102,3.2815,10.3545,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5103,3.1241,10.2946,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5104,5.9434,5.7161,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5105,3.3764,5.5386,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5106,3.2815,10.4946,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5107,3.1241,10.3650,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5108,5.9434,6.0987,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5109,3.3764,5.7742,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5110,3.2815,10.0375,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5111,3.1241,10.0025,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5112,5.9434,5.8190,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5113,3.3764,5.5832,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5114,3.2815,10.3265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5115,3.1241,10.2407,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5116,5.9434,5.8608,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5117,3.3764,5.4824,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5118,3.2815,10.3212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5119,3.1241,10.2682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5120,5.9434,6.0101,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5121,3.3764,5.7207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5122,3.2815,10.4332,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5123,3.1241,10.4114,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +5124,5.9434,5.9360,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5125,3.3764,5.7226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5126,3.2815,10.4524,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5127,3.1241,10.3913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5128,5.9434,5.7989,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5129,3.3764,5.6838,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5130,3.2815,10.6143,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5131,3.1241,10.5550,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5132,5.9434,6.9138,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5133,3.3764,6.2939,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5134,3.2815,9.6460,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5135,3.1241,9.6137,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5136,5.9434,5.8753,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5137,3.3764,5.5510,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5138,3.2815,10.5028,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5139,3.1241,10.3987,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5140,5.9434,5.9198,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5141,3.3764,5.5612,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5142,3.2815,10.4379,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5143,3.1241,10.3961,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5144,5.9434,5.9824,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5145,3.3764,5.7028,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5146,3.2815,10.3237,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5147,3.1241,10.2761,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5148,5.9434,5.8328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5149,3.3764,5.6528,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5150,3.2815,10.3748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5151,3.1241,10.2792,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5152,5.9434,5.9412,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5153,3.3764,6.1277,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5154,3.2815,11.9352,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5155,3.1241,11.7645,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5156,5.9434,5.9845,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5157,3.3764,5.5771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5158,3.2815,10.3735,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5159,3.1241,10.3369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5160,5.9434,5.9259,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5161,3.3764,5.7172,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5162,3.2815,10.8429,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5163,3.1241,10.8256,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5164,5.9434,6.5921,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5165,3.3764,5.9130,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5166,3.2815,10.1890,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5167,3.1241,9.9554,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5168,5.9434,6.4442,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5169,3.3764,5.7728,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5170,3.2815,9.6973,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5171,3.1241,8.5945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5172,5.9434,6.6286,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5173,3.3764,5.8901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5174,3.2815,10.1988,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5175,3.1241,9.9970,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5176,5.9434,6.2323,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5177,3.3764,8.6431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5178,3.2815,7.0378,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5179,3.1241,10.3257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5180,5.9434,5.8416,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5181,3.3764,5.6062,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5182,3.2815,10.4631,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5183,3.1241,10.3463,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5184,5.9434,6.2838,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5185,3.3764,5.8623,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5186,3.2815,10.6562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5187,3.1241,10.6491,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +5188,5.9434,5.8100,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5189,3.3764,5.6574,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5190,3.2815,10.3050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5191,3.1241,10.2117,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5192,5.9434,6.0888,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5193,3.3764,6.1245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5194,3.2815,9.8955,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5195,3.1241,10.2780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5196,5.9434,6.6460,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5197,3.3764,6.2520,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5198,3.2815,14.3295,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5199,3.1241,13.8154,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5200,5.9434,6.0437,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5201,3.3764,5.7043,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5202,3.2815,10.5958,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5203,3.1241,10.4463,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5204,5.9434,6.2579,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5205,3.3764,5.8365,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5206,3.2815,10.5949,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5207,3.1241,10.6510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5208,5.9434,6.5100,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5209,3.3764,5.7644,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5210,3.2815,10.2747,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5211,3.1241,10.1940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5212,5.9434,7.3856,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5213,3.3764,6.6754,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5214,3.2815,10.2698,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5215,3.1241,9.9564,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5216,5.9434,7.4099,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5217,3.3764,5.9149,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5218,3.2815,9.7919,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5219,3.1241,9.7667,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5220,5.9434,6.5902,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5221,3.3764,5.8746,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5222,3.2815,11.5256,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5223,3.1241,11.4434,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5224,5.9434,7.0447,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5225,3.3764,5.8687,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5226,3.2815,10.4280,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5227,3.1241,10.0315,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5228,5.9434,8.7288,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5229,3.3764,7.3144,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5230,3.2815,10.4781,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5231,3.1241,10.0618,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5232,5.9434,6.8678,0.0349,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5233,3.3764,5.9086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5234,3.2815,10.4295,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +5235,3.1241,10.2227,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5236,5.9434,6.9408,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5237,3.3764,5.9527,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5238,3.2815,10.2485,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5239,3.1241,10.0523,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5240,5.9434,6.6099,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5241,3.3764,5.7789,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5242,3.2815,10.4680,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5243,3.1241,10.5105,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +5244,5.9434,6.8331,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5245,3.3764,5.8379,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5246,3.2815,10.3101,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5247,3.1241,10.0059,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5248,5.9434,6.6875,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5249,3.3764,5.7467,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5250,3.2815,10.0113,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5251,3.1241,9.9578,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5252,5.9434,6.2773,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5253,3.3764,5.7590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5254,3.2815,10.0715,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5255,3.1241,9.9050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5256,5.9434,6.1214,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5257,3.3764,5.6478,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5258,3.2815,10.3562,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5259,3.1241,10.1904,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5260,5.9434,6.0753,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5261,3.3764,5.6185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5262,3.2815,10.4473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5263,3.1241,10.3895,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5264,5.9434,6.0318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5265,3.3764,5.6727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5266,3.2815,10.4920,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5267,3.1241,10.4395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5268,5.9434,5.7274,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5269,3.3764,5.5909,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5270,3.2815,10.3460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5271,3.1241,10.2971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +5272,5.9434,5.7875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5273,3.3764,5.5959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5274,3.2815,10.5545,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5275,3.1241,10.4632,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5276,5.9434,5.9419,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5277,3.3764,5.7145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5278,3.2815,10.3644,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5279,3.1241,10.2722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5280,5.9434,5.9108,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5281,3.3764,5.6072,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5282,3.2815,10.4101,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5283,3.1241,10.3457,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5284,5.9434,6.0708,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5285,3.3764,5.7185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5286,3.2815,10.4905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5287,3.1241,10.4338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5288,5.9434,5.7647,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5289,3.3764,5.5550,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5290,3.2815,10.3619,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5291,3.1241,10.3233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5292,5.9434,5.9047,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5293,3.3764,5.6832,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5294,3.2815,10.4503,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5295,3.1241,10.4035,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5296,5.9434,5.7950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5297,3.3764,5.6153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5298,3.2815,10.3181,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5299,3.1241,10.2526,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5300,5.9434,6.0808,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5301,3.3764,5.7617,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5302,3.2815,10.7070,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5303,3.1241,10.5088,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5304,5.9434,6.9128,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5305,3.3764,5.9655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5306,3.2815,10.6521,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5307,3.1241,10.5752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5308,5.9434,6.1375,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5309,3.3764,5.7109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5310,3.2815,10.5558,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5311,3.1241,10.5018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5312,5.9434,5.9588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5313,3.3764,5.7504,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5314,3.2815,10.5744,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5315,3.1241,10.4815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5316,5.9434,11.6192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5317,3.3764,5.7168,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5318,3.2815,11.9681,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5319,3.1241,11.7211,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5320,5.9434,5.9719,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5321,3.3764,5.6567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5322,3.2815,10.8195,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5323,3.1241,10.6188,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5324,5.9434,8.7613,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5325,3.3764,8.0077,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5326,3.2815,10.8874,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5327,3.1241,10.5840,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5328,5.9434,6.1883,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5329,3.3764,5.9532,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5330,3.2815,6.1396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5331,3.1241,10.2780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5332,5.9434,5.8141,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5333,3.3764,5.5509,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5334,3.2815,10.4280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5335,3.1241,10.4082,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5336,5.9434,5.7397,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5337,3.3764,5.7262,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5338,3.2815,10.4062,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5339,3.1241,10.3813,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5340,5.9434,5.9765,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5341,3.3764,5.6189,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5342,3.2815,10.5518,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5343,3.1241,10.5170,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5344,5.9434,5.7382,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5345,3.3764,5.5490,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5346,3.2815,10.4792,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5347,3.1241,10.4939,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5348,5.9434,5.8952,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5349,3.3764,5.6260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5350,3.2815,10.6158,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5351,3.1241,10.5915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5352,5.9434,6.0018,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5353,3.3764,5.8095,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5354,3.2815,10.6645,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5355,3.1241,10.5761,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5356,5.9434,6.2230,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5357,3.3764,5.9002,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5358,3.2815,10.0692,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5359,3.1241,10.0124,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5360,5.9434,6.3858,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5361,3.3764,5.8221,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5362,3.2815,10.0984,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5363,3.1241,9.6997,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5364,5.9434,6.4340,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5365,3.3764,5.7620,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5366,3.2815,10.0965,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5367,3.1241,10.0316,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5368,5.9434,5.9207,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5369,3.3764,5.6688,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5370,3.2815,10.2000,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5371,3.1241,10.1166,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5372,5.9434,5.9892,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5373,3.3764,5.6339,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5374,3.2815,10.3229,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5375,3.1241,10.2329,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5376,5.9434,5.8747,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5377,3.3764,5.6332,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5378,3.2815,10.3092,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5379,3.1241,10.2764,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5380,5.9434,5.8205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5381,3.3764,5.6271,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5382,3.2815,10.2344,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5383,3.1241,10.1076,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5384,5.9434,6.8069,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5385,3.3764,5.8019,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5386,3.2815,10.4889,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5387,3.1241,10.1672,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5388,5.9434,6.5643,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5389,3.3764,5.7975,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5390,3.2815,10.0000,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5391,3.1241,9.9146,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5392,5.9434,6.3165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5393,3.3764,5.7962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5394,3.2815,10.1593,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5395,3.1241,9.9317,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5396,5.9434,6.0724,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5397,3.3764,5.6517,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5398,3.2815,10.6377,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5399,3.1241,10.3832,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5400,5.9434,41.5945,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +5401,3.3764,29.6435,0.0352,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +5402,3.2815,25.3364,0.0311,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +5403,3.1241,26.1068,0.0095,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +5404,5.9434,5.8349,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5405,3.3764,5.6335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +5406,3.2815,10.4848,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +5407,3.1241,10.4763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +5408,5.9434,5.7137,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +5409,3.3764,5.6021,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +5410,3.2815,10.5100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +5411,3.1241,10.4708,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +5412,5.9434,5.7264,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +5413,3.3764,5.6345,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +5414,3.2815,10.4752,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +5415,3.1241,10.4874,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +5416,5.9434,5.6720,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +5417,3.3764,5.4953,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +5418,3.2815,10.3227,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +5419,3.1241,10.3238,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +5420,5.9434,5.7738,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +5421,3.3764,5.6001,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +5422,3.2815,10.4715,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +5423,3.1241,10.3792,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +5424,5.9434,5.8901,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +5425,3.3764,5.6838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +5426,3.2815,10.5280,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +5427,3.1241,10.4326,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +5428,5.9434,5.8772,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +5429,3.3764,5.6590,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +5430,3.2815,10.4987,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +5431,3.1241,10.4719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +5432,5.9434,5.6769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +5433,3.3764,5.5317,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +5434,3.2815,10.4580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +5435,3.1241,10.4428,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +5436,5.9434,5.6384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +5437,3.3764,5.5304,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +5438,3.2815,10.5312,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +5439,3.1241,10.5401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +5440,5.9434,5.9527,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +5441,3.3764,5.7526,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +5442,3.2815,10.6550,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +5443,3.1241,10.6167,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +5444,5.9434,5.9512,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +5445,3.3764,5.6846,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +5446,3.2815,10.4575,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +5447,3.1241,10.3795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +5448,5.9434,5.8646,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +5449,3.3764,5.5742,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +5450,3.2815,10.5572,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5451,3.1241,10.5044,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +5452,5.9434,5.8308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +5453,3.3764,5.6301,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +5454,3.2815,10.5237,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +5455,3.1241,10.4615,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +5456,5.9434,5.7386,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5457,3.3764,5.5555,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5458,3.2815,10.4160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +5459,3.1241,10.3751,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5460,5.9434,5.6455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +5461,3.3764,5.4857,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5462,3.2815,10.5466,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +5463,3.1241,10.4880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5464,5.9434,5.8007,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +5465,3.3764,5.5414,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5466,3.2815,10.5863,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +5467,3.1241,10.4865,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +5468,5.9434,5.9811,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +5469,3.3764,5.6995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +5470,3.2815,10.6953,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5471,3.1241,10.6349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +5472,5.9434,5.9253,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +5473,3.3764,5.8080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +5474,3.2815,10.3465,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +5475,3.1241,10.2917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +5476,5.9434,5.7809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5477,3.3764,5.6518,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +5478,3.2815,10.4893,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +5479,3.1241,10.4775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +5480,5.9434,5.7301,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +5481,3.3764,5.5949,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5482,3.2815,10.5205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +5483,3.1241,10.5263,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5484,5.9434,5.9383,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5485,3.3764,5.6890,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +5486,3.2815,10.6110,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5487,3.1241,10.5378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5488,5.9434,5.8083,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5489,3.3764,5.5802,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +5490,3.2815,10.5401,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5491,3.1241,10.5482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +5492,5.9434,5.9387,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +5493,3.3764,5.6693,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +5494,3.2815,10.5040,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5495,3.1241,10.4490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5496,5.9434,5.7830,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +5497,3.3764,5.5780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5498,3.2815,10.5450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +5499,3.1241,10.5386,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +5500,5.9434,5.9404,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +5501,3.3764,5.6465,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5502,3.2815,10.5625,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +5503,3.1241,10.5186,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5504,5.9434,5.9075,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5505,3.3764,5.6960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +5506,3.2815,10.7045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5507,3.1241,10.5829,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +5508,5.9434,6.1699,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +5509,3.3764,5.7358,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5510,3.2815,10.6858,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +5511,3.1241,10.5793,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5512,5.9434,6.0821,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +5513,3.3764,5.7005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +5514,3.2815,10.6468,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +5515,3.1241,10.5701,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5516,5.9434,6.0687,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +5517,3.3764,5.7338,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +5518,3.2815,10.7010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +5519,3.1241,10.6701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5520,5.9434,6.1060,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +5521,3.3764,5.7755,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5522,3.2815,10.8600,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +5523,3.1241,10.7044,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5524,5.9434,6.3695,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +5525,3.3764,5.8303,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5526,3.2815,10.6437,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +5527,3.1241,10.5489,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +5528,5.9434,6.2220,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5529,3.3764,5.8201,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5530,3.2815,10.7586,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5531,3.1241,10.6871,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5532,5.9434,5.9251,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5533,3.3764,5.7251,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5534,3.2815,10.5947,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5535,3.1241,10.5129,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +5536,5.9434,5.9771,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +5537,3.3764,5.7237,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5538,3.2815,10.5913,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5539,3.1241,10.5131,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5540,5.9434,6.7205,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +5541,3.3764,5.9474,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5542,3.2815,10.4633,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +5543,3.1241,10.2735,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5544,5.9434,7.0770,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5545,3.3764,5.8825,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5546,3.2815,10.1042,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +5547,3.1241,10.0170,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5548,5.9434,7.4542,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5549,3.3764,6.5175,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5550,3.2815,10.0256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +5551,3.1241,9.8562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +5552,5.9434,6.2864,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5553,3.3764,5.8214,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5554,3.2815,10.7607,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +5555,3.1241,10.6320,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5556,5.9434,6.1572,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5557,3.3764,5.7922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5558,3.2815,10.8521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +5559,3.1241,10.8067,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +5560,5.9434,6.3211,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5561,3.3764,5.8886,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5562,3.2815,10.5763,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +5563,3.1241,10.3503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5564,5.9434,5.9044,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5565,3.3764,5.5897,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5566,3.2815,10.3800,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5567,3.1241,10.2693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5568,5.9434,5.7845,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5569,3.3764,5.5294,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5570,3.2815,10.4692,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +5571,3.1241,10.2876,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5572,5.9434,5.8928,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5573,3.3764,5.5948,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5574,3.2815,10.4413,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5575,3.1241,10.3621,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5576,5.9434,5.9798,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5577,3.3764,5.6640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5578,3.2815,10.7172,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5579,3.1241,10.5733,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5580,5.9434,6.2885,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5581,3.3764,5.8464,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5582,3.2815,10.2306,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5583,3.1241,10.1830,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +5584,5.9434,6.0812,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5585,3.3764,5.5776,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5586,3.2815,10.4288,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5587,3.1241,10.3626,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5588,5.9434,6.4660,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5589,3.3764,5.8080,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5590,3.2815,9.8377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +5591,3.1241,9.7357,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5592,5.9434,6.7817,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5593,3.3764,5.9330,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5594,3.2815,10.0195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5595,3.1241,7.2498,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5596,5.9434,6.4975,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5597,3.3764,5.8006,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5598,3.2815,10.0100,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5599,3.1241,9.7508,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5600,5.9434,10.8950,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5601,3.3764,5.9393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5602,3.2815,10.7143,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5603,3.1241,10.5086,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5604,5.9434,6.1665,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5605,3.3764,5.7422,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5606,3.2815,10.5893,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5607,3.1241,10.4588,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5608,5.9434,6.1428,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5609,3.3764,5.8326,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5610,3.2815,10.8301,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5611,3.1241,10.8320,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5612,5.9434,5.9416,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5613,3.3764,5.7004,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5614,3.2815,10.5946,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +5615,3.1241,10.5194,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5616,5.9434,6.0329,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5617,3.3764,5.6704,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5618,3.2815,10.5286,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5619,3.1241,10.4492,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5620,5.9434,6.0705,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5621,3.3764,5.8106,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5622,3.2815,13.1755,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5623,3.1241,12.9761,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5624,5.9434,6.1865,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5625,3.3764,5.7271,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5626,3.2815,10.7213,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5627,3.1241,10.6547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5628,5.9434,6.1867,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5629,3.3764,5.8250,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5630,3.2815,10.6958,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5631,3.1241,10.6478,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5632,5.9434,5.9070,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5633,3.3764,5.7014,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5634,3.2815,10.7323,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5635,3.1241,10.5129,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5636,5.9434,6.6053,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5637,3.3764,5.9380,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5638,3.2815,10.2619,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5639,3.1241,10.0490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +5640,5.9434,6.8839,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5641,3.3764,5.9090,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5642,3.2815,10.4313,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5643,3.1241,9.8968,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5644,5.9434,6.7063,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5645,3.3764,5.8993,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5646,3.2815,10.7867,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5647,3.1241,10.5252,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5648,5.9434,6.9217,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5649,3.3764,5.9921,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5650,3.2815,13.4643,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5651,3.1241,13.5310,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5652,5.9434,6.2190,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5653,3.3764,5.8130,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5654,3.2815,10.6754,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5655,3.1241,10.4577,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5656,5.9434,6.2626,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5657,3.3764,5.7211,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5658,3.2815,10.6064,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +5659,3.1241,10.4446,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5660,5.9434,6.2216,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5661,3.3764,5.9100,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5662,3.2815,10.7516,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5663,3.1241,10.7400,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5664,5.9434,5.9890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5665,3.3764,5.7134,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5666,3.2815,10.4998,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5667,3.1241,10.4298,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5668,5.9434,5.9491,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5669,3.3764,5.8345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5670,3.2815,11.2706,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5671,3.1241,11.1669,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5672,5.9434,6.4285,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5673,3.3764,5.8534,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5674,3.2815,10.4207,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5675,3.1241,8.0508,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +5676,5.9434,6.6157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5677,3.3764,5.8007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5678,3.2815,10.1125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5679,3.1241,8.4023,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5680,5.9434,6.2732,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5681,3.3764,5.8667,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5682,3.2815,10.9350,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5683,3.1241,10.8088,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5684,5.9434,6.2207,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5685,3.3764,5.8397,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5686,3.2815,10.7509,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +5687,3.1241,10.6104,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5688,5.9434,6.1415,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5689,3.3764,5.8338,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5690,3.2815,11.2532,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +5691,3.1241,11.2275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5692,5.9434,6.0522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5693,3.3764,5.7861,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5694,3.2815,10.4924,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +5695,3.1241,10.3645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5696,5.9434,5.8677,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5697,3.3764,5.6111,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5698,3.2815,10.4770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5699,3.1241,10.4499,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5700,5.9434,6.6887,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5701,3.3764,5.7880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5702,3.2815,10.4201,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5703,3.1241,10.3089,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5704,5.9434,6.4820,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5705,3.3764,5.8148,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5706,3.2815,9.9896,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5707,3.1241,10.0079,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5708,5.9434,6.5402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5709,3.3764,6.2532,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5710,3.2815,11.7950,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5711,3.1241,11.4266,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5712,5.9434,7.1277,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5713,3.3764,6.1134,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5714,3.2815,10.3246,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5715,3.1241,10.3664,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5716,5.9434,6.5833,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5717,3.3764,5.8336,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5718,3.2815,10.0773,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5719,3.1241,9.8910,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5720,5.9434,6.8319,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5721,3.3764,6.0503,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5722,3.2815,10.3683,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5723,3.1241,10.1169,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +5724,5.9434,6.5951,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5725,3.3764,5.7755,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5726,3.2815,10.3791,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5727,3.1241,10.2471,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5728,5.9434,6.5685,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5729,3.3764,5.8398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5730,3.2815,10.1942,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5731,3.1241,9.9889,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5732,5.9434,6.6120,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5733,3.3764,5.8255,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5734,3.2815,9.9455,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5735,3.1241,9.6920,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5736,5.9434,6.3302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5737,3.3764,5.6967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5738,3.2815,10.0489,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5739,3.1241,9.7725,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5740,5.9434,6.3121,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5741,3.3764,5.7668,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5742,3.2815,10.8667,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5743,3.1241,10.6074,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5744,5.9434,6.2339,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5745,3.3764,5.8587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5746,3.2815,9.7931,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5747,3.1241,8.2983,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5748,5.9434,6.9066,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5749,3.3764,5.8498,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5750,3.2815,10.3865,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5751,3.1241,10.1818,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5752,5.9434,6.5869,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5753,3.3764,5.7797,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5754,3.2815,7.9383,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5755,3.1241,7.8385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5756,5.9434,6.1015,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5757,3.3764,5.6852,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5758,3.2815,10.4715,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5759,3.1241,10.3375,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5760,5.9434,6.2885,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5761,3.3764,5.8131,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5762,3.2815,10.6146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5763,3.1241,10.5320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5764,5.9434,5.9413,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5765,3.3764,5.6820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5766,3.2815,10.4665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5767,3.1241,10.4240,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5768,5.9434,5.7765,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5769,3.3764,5.6189,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5770,3.2815,10.4074,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5771,3.1241,10.3792,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5772,5.9434,5.9218,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5773,3.3764,5.7504,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5774,3.2815,10.4455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5775,3.1241,10.4116,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5776,5.9434,5.8717,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5777,3.3764,5.5877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5778,3.2815,10.3164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5779,3.1241,10.2303,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5780,5.9434,5.9986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5781,3.3764,5.7658,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5782,3.2815,10.7095,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5783,3.1241,10.6233,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5784,5.9434,6.0530,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5785,3.3764,5.7337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5786,3.2815,10.2842,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5787,3.1241,10.1283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +5788,5.9434,6.1412,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5789,3.3764,5.7581,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5790,3.2815,10.6710,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5791,3.1241,10.6285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5792,5.9434,6.0912,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5793,3.3764,5.8766,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5794,3.2815,10.6793,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5795,3.1241,10.6512,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5796,5.9434,6.6504,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5797,3.3764,5.8803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5798,3.2815,11.1547,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5799,3.1241,11.1309,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5800,5.9434,7.4136,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5801,3.3764,6.3632,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5802,3.2815,11.6636,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5803,3.1241,11.4995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5804,5.9434,6.8800,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5805,3.3764,5.7999,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5806,3.2815,10.5111,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5807,3.1241,10.3454,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5808,5.9434,6.4113,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5809,3.3764,6.4560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5810,3.2815,9.2859,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5811,3.1241,9.9305,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5812,5.9434,6.0817,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5813,3.3764,5.6758,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5814,3.2815,10.5313,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5815,3.1241,10.4168,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5816,5.9434,6.2621,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5817,3.3764,5.8495,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5818,3.2815,10.7944,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5819,3.1241,10.6951,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5820,5.9434,6.0539,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5821,3.3764,5.7414,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5822,3.2815,10.9029,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5823,3.1241,10.8570,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5824,5.9434,6.3480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5825,3.3764,5.6875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5826,3.2815,9.8371,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5827,3.1241,9.6858,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5828,5.9434,5.9884,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5829,3.3764,5.5967,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5830,3.2815,10.6501,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5831,3.1241,10.5306,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5832,5.9434,6.1644,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5833,3.3764,5.7296,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5834,3.2815,10.6899,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +5835,3.1241,10.6753,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5836,5.9434,5.8655,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5837,3.3764,5.6365,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5838,3.2815,10.3093,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5839,3.1241,10.2308,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5840,5.9434,6.1218,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5841,3.3764,6.0100,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5842,3.2815,10.1961,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5843,3.1241,9.8496,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +5844,5.9434,6.4877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5845,3.3764,5.8628,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5846,3.2815,9.6457,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5847,3.1241,9.9307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5848,5.9434,5.8938,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5849,3.3764,5.5418,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5850,3.2815,10.3332,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5851,3.1241,10.1924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5852,5.9434,5.8148,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5853,3.3764,5.6149,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5854,3.2815,10.4845,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5855,3.1241,10.4919,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5856,5.9434,5.8500,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5857,3.3764,5.6175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5858,3.2815,10.3990,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5859,3.1241,10.3923,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5860,5.9434,5.7739,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5861,3.3764,5.5157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5862,3.2815,10.2960,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5863,3.1241,10.1966,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5864,5.9434,5.8060,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5865,3.3764,5.6063,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5866,3.2815,10.4616,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5867,3.1241,10.4289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5868,5.9434,5.9085,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5869,3.3764,5.6076,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5870,3.2815,10.4122,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5871,3.1241,10.2466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +5872,5.9434,5.8329,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5873,3.3764,5.5505,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5874,3.2815,10.4054,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5875,3.1241,10.3862,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5876,5.9434,5.7825,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5877,3.3764,5.5381,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5878,3.2815,10.3643,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5879,3.1241,10.3291,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5880,5.9434,5.7550,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5881,3.3764,5.5492,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5882,3.2815,10.3217,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5883,3.1241,10.2466,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5884,5.9434,5.7585,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5885,3.3764,5.5665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5886,3.2815,10.3308,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5887,3.1241,10.2675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5888,5.9434,5.9568,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5889,3.3764,5.5575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5890,3.2815,10.3652,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5891,3.1241,10.3070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5892,5.9434,5.9295,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5893,3.3764,5.5596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5894,3.2815,10.3663,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5895,3.1241,10.2982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5896,5.9434,5.9305,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5897,3.3764,5.6199,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5898,3.2815,10.3514,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5899,3.1241,10.3364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5900,5.9434,5.7995,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5901,3.3764,5.5802,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5902,3.2815,10.4217,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5903,3.1241,10.3555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5904,5.9434,5.8181,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5905,3.3764,5.5649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5906,3.2815,10.3757,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5907,3.1241,10.3470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5908,5.9434,5.8238,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5909,3.3764,5.5624,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5910,3.2815,10.4448,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5911,3.1241,10.4146,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5912,5.9434,6.0037,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5913,3.3764,5.5875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5914,3.2815,10.4446,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5915,3.1241,10.3911,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5916,5.9434,5.8472,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5917,3.3764,5.5751,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5918,3.2815,10.4790,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5919,3.1241,10.4475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5920,5.9434,5.9625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5921,3.3764,5.5807,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5922,3.2815,10.3670,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5923,3.1241,10.2979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5924,5.9434,5.8395,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5925,3.3764,5.5385,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5926,3.2815,10.3936,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5927,3.1241,10.2816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5928,5.9434,5.8490,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5929,3.3764,5.5653,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5930,3.2815,10.4489,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5931,3.1241,10.4194,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5932,5.9434,5.9146,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5933,3.3764,5.5916,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5934,3.2815,10.3707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5935,3.1241,10.3328,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5936,5.9434,5.9210,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5937,3.3764,5.5758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5938,3.2815,10.4151,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5939,3.1241,10.3272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5940,5.9434,5.8788,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5941,3.3764,5.5537,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5942,3.2815,10.4648,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5943,3.1241,10.3552,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5944,5.9434,6.0052,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5945,3.3764,5.5889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5946,3.2815,10.4633,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5947,3.1241,10.4080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5948,5.9434,5.9451,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5949,3.3764,5.5887,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5950,3.2815,10.4418,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5951,3.1241,10.3890,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5952,5.9434,5.8644,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5953,3.3764,5.5322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5954,3.2815,10.3472,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5955,3.1241,10.2557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5956,5.9434,5.8487,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5957,3.3764,5.5887,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5958,3.2815,10.4367,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5959,3.1241,10.4102,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5960,5.9434,5.8062,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5961,3.3764,5.5526,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5962,3.2815,10.4944,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5963,3.1241,10.4200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5964,5.9434,5.9721,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5965,3.3764,5.6033,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5966,3.2815,10.5078,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5967,3.1241,10.5035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5968,5.9434,6.0965,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5969,3.3764,5.6860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5970,3.2815,10.5121,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5971,3.1241,10.4889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5972,5.9434,5.9760,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5973,3.3764,5.6637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5974,3.2815,10.5064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5975,3.1241,10.4657,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5976,5.9434,6.0264,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5977,3.3764,5.6490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5978,3.2815,10.6058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5979,3.1241,10.5891,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5980,5.9434,5.8362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5981,3.3764,5.6064,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5982,3.2815,10.4064,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5983,3.1241,10.4141,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5984,5.9434,5.8850,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5985,3.3764,5.6931,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5986,3.2815,10.4786,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5987,3.1241,10.4847,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5988,5.9434,5.7257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5989,3.3764,5.5968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5990,3.2815,10.4607,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5991,3.1241,10.4709,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5992,5.9434,5.6873,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5993,3.3764,5.5885,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5994,3.2815,10.3368,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5995,3.1241,10.3345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5996,5.9434,5.7705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5997,3.3764,5.5761,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5998,3.2815,10.4406,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5999,3.1241,10.4395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6000,5.9434,44.8584,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +6001,3.3764,30.9344,0.0104,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +6002,3.2815,25.8978,0.0067,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +6003,3.1241,25.3754,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +6004,5.9434,5.9304,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +6005,3.3764,5.6867,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6006,3.2815,10.5241,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +6007,3.1241,10.4830,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +6008,5.9434,5.8665,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +6009,3.3764,5.6388,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +6010,3.2815,10.4323,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +6011,3.1241,10.3883,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +6012,5.9434,5.8886,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +6013,3.3764,5.6333,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +6014,3.2815,10.6060,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +6015,3.1241,10.4962,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +6016,5.9434,5.9000,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +6017,3.3764,5.7520,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +6018,3.2815,10.4320,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +6019,3.1241,10.4060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +6020,5.9434,5.8071,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +6021,3.3764,5.6344,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +6022,3.2815,10.5547,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +6023,3.1241,10.5254,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +6024,5.9434,5.7526,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +6025,3.3764,5.6037,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +6026,3.2815,10.4818,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +6027,3.1241,10.4284,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +6028,5.9434,5.8757,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +6029,3.3764,5.7032,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +6030,3.2815,10.3752,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +6031,3.1241,10.2918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +6032,5.9434,5.7942,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +6033,3.3764,5.5957,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +6034,3.2815,10.4631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +6035,3.1241,10.4504,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +6036,5.9434,5.7150,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +6037,3.3764,5.5445,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +6038,3.2815,10.5586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +6039,3.1241,10.5471,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +6040,5.9434,5.6453,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +6041,3.3764,5.5458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +6042,3.2815,10.3622,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +6043,3.1241,10.3052,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +6044,5.9434,5.5875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +6045,3.3764,5.5540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +6046,3.2815,10.3853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +6047,3.1241,10.3668,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +6048,5.9434,5.8979,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +6049,3.3764,5.8061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +6050,3.2815,10.3685,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6051,3.1241,10.3912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +6052,5.9434,5.7050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +6053,3.3764,5.6198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +6054,3.2815,10.3626,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +6055,3.1241,10.3206,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +6056,5.9434,5.6353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6057,3.3764,5.5400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6058,3.2815,10.3550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +6059,3.1241,10.3470,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6060,5.9434,5.7848,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +6061,3.3764,5.6392,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6062,3.2815,10.5510,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +6063,3.1241,10.4684,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6064,5.9434,5.6899,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +6065,3.3764,5.6039,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6066,3.2815,10.4009,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +6067,3.1241,10.2823,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +6068,5.9434,5.7290,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +6069,3.3764,5.6388,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +6070,3.2815,10.4927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6071,3.1241,10.4445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +6072,5.9434,5.8639,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +6073,3.3764,5.6709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +6074,3.2815,10.4965,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +6075,3.1241,10.4518,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +6076,5.9434,5.9555,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6077,3.3764,5.7661,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +6078,3.2815,10.6689,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +6079,3.1241,10.5601,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +6080,5.9434,5.9660,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +6081,3.3764,5.6652,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6082,3.2815,10.5668,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6083,3.1241,10.4044,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6084,5.9434,6.0136,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6085,3.3764,5.7415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +6086,3.2815,10.6905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6087,3.1241,10.3758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6088,5.9434,5.9429,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6089,3.3764,5.7174,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +6090,3.2815,10.5437,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6091,3.1241,10.4966,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +6092,5.9434,5.8630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +6093,3.3764,5.6759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +6094,3.2815,10.7786,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6095,3.1241,10.7400,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6096,5.9434,5.9673,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +6097,3.3764,5.7812,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6098,3.2815,10.8052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +6099,3.1241,10.7690,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +6100,5.9434,6.0813,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +6101,3.3764,5.8277,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6102,3.2815,10.6952,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +6103,3.1241,10.5980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6104,5.9434,6.0814,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6105,3.3764,5.6510,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +6106,3.2815,10.6889,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6107,3.1241,10.5529,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +6108,5.9434,6.0785,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +6109,3.3764,5.7024,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6110,3.2815,10.5850,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +6111,3.1241,10.5365,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6112,5.9434,5.9198,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +6113,3.3764,5.6854,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +6114,3.2815,10.5186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +6115,3.1241,10.4851,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6116,5.9434,5.8707,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +6117,3.3764,5.7129,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +6118,3.2815,10.5192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +6119,3.1241,10.4508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6120,5.9434,6.1883,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +6121,3.3764,5.9007,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6122,3.2815,10.6825,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +6123,3.1241,10.6103,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +6124,5.9434,5.9503,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6125,3.3764,5.6984,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6126,3.2815,10.8931,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +6127,3.1241,10.8682,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +6128,5.9434,6.2196,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6129,3.3764,5.7733,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6130,3.2815,10.7034,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6131,3.1241,10.5786,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6132,5.9434,6.2987,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6133,3.3764,5.8922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6134,3.2815,10.6393,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6135,3.1241,10.5046,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +6136,5.9434,6.0171,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +6137,3.3764,5.7341,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6138,3.2815,10.4537,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6139,3.1241,10.3358,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6140,5.9434,6.8182,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +6141,3.3764,5.8475,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6142,3.2815,10.3308,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +6143,3.1241,10.2773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6144,5.9434,6.6141,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6145,3.3764,5.9427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6146,3.2815,9.3810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +6147,3.1241,9.9816,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6148,5.9434,6.8788,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6149,3.3764,6.0885,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6150,3.2815,10.0185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +6151,3.1241,9.9567,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +6152,5.9434,6.8978,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6153,3.3764,5.8818,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6154,3.2815,10.8328,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +6155,3.1241,10.4050,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6156,5.9434,6.6870,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6157,3.3764,5.8410,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6158,3.2815,10.7957,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +6159,3.1241,10.5532,0.0391,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +6160,5.9434,8.3495,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6161,3.3764,7.4253,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6162,3.2815,11.3387,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +6163,3.1241,10.4983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6164,5.9434,6.6851,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6165,3.3764,5.7402,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6166,3.2815,9.1687,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6167,3.1241,9.0656,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6168,5.9434,6.3354,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6169,3.3764,5.8238,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6170,3.2815,10.6602,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +6171,3.1241,10.5539,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6172,5.9434,6.2679,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6173,3.3764,5.9360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6174,3.2815,10.8233,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6175,3.1241,10.7622,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6176,5.9434,6.0685,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6177,3.3764,5.7998,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6178,3.2815,10.8775,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6179,3.1241,10.7787,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6180,5.9434,6.4414,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6181,3.3764,5.9329,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6182,3.2815,10.8387,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6183,3.1241,10.6245,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +6184,5.9434,6.1446,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6185,3.3764,5.7058,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6186,3.2815,10.6706,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6187,3.1241,10.4318,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6188,5.9434,6.2280,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6189,3.3764,5.8332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6190,3.2815,10.7180,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +6191,3.1241,10.7168,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6192,5.9434,5.8869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6193,3.3764,5.5906,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6194,3.2815,10.5517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6195,3.1241,10.5511,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6196,5.9434,6.6730,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6197,3.3764,5.9857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6198,3.2815,10.2260,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6199,3.1241,10.3371,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6200,5.9434,6.9413,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6201,3.3764,5.9554,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6202,3.2815,10.1748,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6203,3.1241,9.8968,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6204,5.9434,6.7035,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6205,3.3764,6.2309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6206,3.2815,9.7883,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6207,3.1241,10.1720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6208,5.9434,6.1347,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6209,3.3764,5.7240,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6210,3.2815,10.5845,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6211,3.1241,10.5307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +6212,5.9434,5.8980,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6213,3.3764,5.6664,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6214,3.2815,10.5643,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +6215,3.1241,10.5719,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6216,5.9434,6.0819,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6217,3.3764,5.7061,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6218,3.2815,10.3887,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6219,3.1241,10.2918,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6220,5.9434,6.2766,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6221,3.3764,5.8284,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6222,3.2815,10.4474,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6223,3.1241,10.3588,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6224,5.9434,6.7870,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6225,3.3764,5.9481,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6226,3.2815,16.7454,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6227,3.1241,17.0186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6228,5.9434,5.8972,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6229,3.3764,5.6573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6230,3.2815,10.8520,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6231,3.1241,10.7888,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6232,5.9434,6.1059,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6233,3.3764,5.8393,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6234,3.2815,10.6253,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6235,3.1241,10.6132,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6236,5.9434,6.0501,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6237,3.3764,5.7517,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6238,3.2815,10.6218,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6239,3.1241,10.6438,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +6240,5.9434,6.0689,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6241,3.3764,5.7279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6242,3.2815,10.4946,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6243,3.1241,10.3765,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6244,5.9434,5.8568,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6245,3.3764,5.7386,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6246,3.2815,10.5471,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6247,3.1241,10.5525,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6248,5.9434,5.8098,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6249,3.3764,5.6727,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6250,3.2815,10.2897,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6251,3.1241,10.2131,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6252,5.9434,6.3306,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6253,3.3764,5.6764,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6254,3.2815,10.5783,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6255,3.1241,10.5647,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6256,5.9434,6.4030,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6257,3.3764,5.6903,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6258,3.2815,8.2442,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6259,3.1241,8.5066,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6260,5.9434,6.1512,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6261,3.3764,5.6740,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6262,3.2815,10.0930,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6263,3.1241,10.0490,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6264,5.9434,5.9821,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6265,3.3764,5.6534,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6266,3.2815,10.6760,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6267,3.1241,10.6943,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6268,5.9434,5.7280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6269,3.3764,5.5883,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6270,3.2815,10.2895,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6271,3.1241,10.2212,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6272,5.9434,6.1598,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6273,3.3764,5.9008,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6274,3.2815,10.8425,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6275,3.1241,10.8324,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6276,5.9434,6.3307,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6277,3.3764,5.8133,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6278,3.2815,9.9410,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6279,3.1241,8.0392,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6280,5.9434,6.7509,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6281,3.3764,5.8104,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6282,3.2815,10.4416,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6283,3.1241,10.2576,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6284,5.9434,6.3318,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6285,3.3764,5.9318,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6286,3.2815,10.6601,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +6287,3.1241,10.6130,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6288,5.9434,6.0197,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6289,3.3764,5.7682,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6290,3.2815,10.4285,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +6291,3.1241,10.4054,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6292,5.9434,6.6142,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6293,3.3764,5.9661,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6294,3.2815,10.4669,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6295,3.1241,10.2657,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6296,5.9434,6.4443,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6297,3.3764,5.9355,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6298,3.2815,10.0335,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6299,3.1241,9.9555,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6300,5.9434,6.4924,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6301,3.3764,6.0201,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6302,3.2815,10.1275,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6303,3.1241,10.1760,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6304,5.9434,10.7788,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6305,3.3764,11.5569,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6306,3.2815,5.7220,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6307,3.1241,8.6785,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6308,5.9434,5.8007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6309,3.3764,5.4875,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6310,3.2815,10.5449,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6311,3.1241,10.4861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6312,5.9434,5.8444,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6313,3.3764,5.6219,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6314,3.2815,10.3983,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6315,3.1241,10.3006,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6316,5.9434,6.6715,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6317,3.3764,5.8362,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6318,3.2815,10.5104,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6319,3.1241,10.3820,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6320,5.9434,6.5366,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6321,3.3764,5.8880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6322,3.2815,10.0442,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6323,3.1241,9.4185,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6324,5.9434,6.7550,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6325,3.3764,5.8201,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6326,3.2815,10.1100,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6327,3.1241,10.0442,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6328,5.9434,6.3762,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6329,3.3764,5.7653,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6330,3.2815,10.2247,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6331,3.1241,10.0369,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6332,5.9434,6.5738,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6333,3.3764,5.8052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6334,3.2815,11.8690,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6335,3.1241,11.7460,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6336,5.9434,6.5315,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6337,3.3764,5.9793,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6338,3.2815,9.9010,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6339,3.1241,10.0412,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6340,5.9434,6.6484,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6341,3.3764,5.9147,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6342,3.2815,10.6670,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6343,3.1241,10.5266,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6344,5.9434,6.9853,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6345,3.3764,5.8667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6346,3.2815,10.4518,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6347,3.1241,10.0711,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6348,5.9434,6.5518,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6349,3.3764,5.8572,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6350,3.2815,10.0532,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6351,3.1241,10.2015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6352,5.9434,6.6472,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6353,3.3764,5.8667,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6354,3.2815,10.4754,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6355,3.1241,10.0895,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6356,5.9434,6.7045,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6357,3.3764,5.7945,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6358,3.2815,10.0553,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6359,3.1241,9.9343,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6360,5.9434,6.6182,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6361,3.3764,5.9952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6362,3.2815,10.2592,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6363,3.1241,10.0486,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6364,5.9434,6.8218,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6365,3.3764,5.8347,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6366,3.2815,10.0254,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6367,3.1241,9.8562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6368,5.9434,6.6702,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6369,3.3764,5.8439,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6370,3.2815,10.3383,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6371,3.1241,10.2283,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6372,5.9434,6.1941,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6373,3.3764,6.1081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6374,3.2815,9.7886,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6375,3.1241,9.8833,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6376,5.9434,6.2203,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6377,3.3764,5.7606,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6378,3.2815,10.5775,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6379,3.1241,10.5481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6380,5.9434,5.9894,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6381,3.3764,5.7032,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6382,3.2815,10.6776,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6383,3.1241,10.6467,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6384,5.9434,6.1630,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6385,3.3764,5.8611,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6386,3.2815,11.8710,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6387,3.1241,11.9370,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +6388,5.9434,5.7279,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6389,3.3764,5.6638,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6390,3.2815,10.4592,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6391,3.1241,10.4900,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6392,5.9434,6.3172,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6393,3.3764,5.7803,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6394,3.2815,10.0559,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6395,3.1241,9.8943,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6396,5.9434,6.2218,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6397,3.3764,5.7607,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6398,3.2815,10.4273,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6399,3.1241,10.2615,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6400,5.9434,6.3051,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6401,3.3764,5.7569,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6402,3.2815,10.1088,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6403,3.1241,9.8912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6404,5.9434,6.6910,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6405,3.3764,6.0022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6406,3.2815,10.4106,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6407,3.1241,10.2328,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6408,5.9434,5.9005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6409,3.3764,5.6315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6410,3.2815,10.3197,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6411,3.1241,10.1550,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6412,5.9434,5.9858,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6413,3.3764,5.5703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6414,3.2815,10.4982,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6415,3.1241,10.4621,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6416,5.9434,6.0079,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6417,3.3764,5.6818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6418,3.2815,10.5371,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6419,3.1241,10.5227,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6420,5.9434,6.6002,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6421,3.3764,5.8792,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6422,3.2815,10.4322,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6423,3.1241,10.3556,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6424,5.9434,6.7223,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6425,3.3764,6.3058,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6426,3.2815,9.1934,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6427,3.1241,7.8261,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6428,5.9434,6.4223,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6429,3.3764,5.7787,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6430,3.2815,10.0248,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6431,3.1241,9.5434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6432,5.9434,6.7127,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6433,3.3764,5.8329,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6434,3.2815,10.4816,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +6435,3.1241,10.0925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6436,5.9434,6.4797,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6437,3.3764,5.6217,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6438,3.2815,10.5365,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6439,3.1241,10.4387,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6440,5.9434,6.4887,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6441,3.3764,6.0312,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6442,3.2815,10.8877,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6443,3.1241,10.8150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +6444,5.9434,6.1845,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6445,3.3764,5.8763,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6446,3.2815,10.6973,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6447,3.1241,10.6831,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6448,5.9434,6.7513,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6449,3.3764,5.8398,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6450,3.2815,10.4550,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6451,3.1241,10.1517,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6452,5.9434,6.7975,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6453,3.3764,5.7734,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6454,3.2815,9.7193,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6455,3.1241,9.6326,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6456,5.9434,6.3686,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6457,3.3764,6.3325,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6458,3.2815,9.3893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6459,3.1241,9.9527,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6460,5.9434,6.7868,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6461,3.3764,5.8222,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6462,3.2815,10.5992,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6463,3.1241,10.4398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6464,5.9434,6.6698,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6465,3.3764,5.8391,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6466,3.2815,10.2937,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6467,3.1241,10.0837,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6468,5.9434,6.6578,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6469,3.3764,5.6677,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6470,3.2815,10.0373,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6471,3.1241,10.3178,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +6472,5.9434,6.6012,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6473,3.3764,5.9662,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6474,3.2815,9.8454,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6475,3.1241,9.9304,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6476,5.9434,5.8760,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6477,3.3764,5.6035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6478,3.2815,10.5129,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6479,3.1241,10.5109,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6480,5.9434,6.4087,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6481,3.3764,5.7933,0.0436,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6482,3.2815,10.5228,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6483,3.1241,10.3745,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6484,5.9434,6.3782,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6485,3.3764,5.7552,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6486,3.2815,9.9871,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6487,3.1241,9.9764,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6488,5.9434,6.3375,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6489,3.3764,5.8484,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6490,3.2815,10.0965,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6491,3.1241,9.9404,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6492,5.9434,6.8455,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6493,3.3764,5.7902,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6494,3.2815,10.4058,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6495,3.1241,9.8407,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6496,5.9434,6.5458,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6497,3.3764,5.7703,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6498,3.2815,10.3231,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6499,3.1241,10.0011,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6500,5.9434,6.6679,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6501,3.3764,5.7318,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6502,3.2815,10.6461,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6503,3.1241,10.3383,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6504,5.9434,7.0702,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6505,3.3764,5.8788,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6506,3.2815,10.2920,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6507,3.1241,9.4280,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6508,5.9434,6.6382,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6509,3.3764,5.7671,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6510,3.2815,10.0276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6511,3.1241,9.9840,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6512,5.9434,6.6783,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6513,3.3764,5.8355,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6514,3.2815,10.2351,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6515,3.1241,9.9986,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6516,5.9434,6.4226,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6517,3.3764,5.7846,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6518,3.2815,10.6113,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6519,3.1241,10.3605,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6520,5.9434,8.4902,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6521,3.3764,7.3494,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6522,3.2815,10.5002,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6523,3.1241,9.0326,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6524,5.9434,7.0359,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6525,3.3764,5.8962,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6526,3.2815,8.5464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6527,3.1241,10.2285,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6528,5.9434,5.9549,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6529,3.3764,5.6585,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6530,3.2815,10.5823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6531,3.1241,10.4718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6532,5.9434,6.1342,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6533,3.3764,5.7374,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6534,3.2815,10.6692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6535,3.1241,10.6424,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6536,5.9434,5.9530,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6537,3.3764,5.7069,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6538,3.2815,10.6541,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6539,3.1241,10.4452,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6540,5.9434,6.5412,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6541,3.3764,5.8753,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6542,3.2815,10.6642,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6543,3.1241,10.3458,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6544,5.9434,7.1299,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6545,3.3764,5.8063,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6546,3.2815,10.2894,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6547,3.1241,10.2275,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6548,5.9434,6.6015,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6549,3.3764,5.9192,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6550,3.2815,10.6860,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6551,3.1241,10.4658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6552,5.9434,6.9222,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6553,3.3764,6.0560,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6554,3.2815,10.5062,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6555,3.1241,10.2108,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6556,5.9434,7.1261,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6557,3.3764,6.2937,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6558,3.2815,10.6231,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6559,3.1241,10.1440,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6560,5.9434,6.4762,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6561,3.3764,5.7344,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6562,3.2815,7.9997,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6563,3.1241,7.8902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6564,5.9434,6.2965,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6565,3.3764,5.8983,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6566,3.2815,10.7239,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6567,3.1241,10.6166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6568,5.9434,6.0671,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6569,3.3764,5.7117,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6570,3.2815,10.6683,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6571,3.1241,10.5687,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6572,5.9434,6.2208,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6573,3.3764,5.8305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6574,3.2815,10.8038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6575,3.1241,10.7935,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6576,5.9434,5.8241,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6577,3.3764,5.6005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6578,3.2815,10.4442,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6579,3.1241,10.4400,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6580,5.9434,5.9889,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6581,3.3764,5.7108,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6582,3.2815,10.6540,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6583,3.1241,10.4423,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6584,5.9434,7.0353,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6585,3.3764,5.9569,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6586,3.2815,10.7055,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6587,3.1241,10.4480,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6588,5.9434,6.3921,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6589,3.3764,5.7362,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6590,3.2815,10.0457,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6591,3.1241,9.9217,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6592,5.9434,7.2626,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6593,3.3764,6.3350,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6594,3.2815,8.1562,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6595,3.1241,7.8208,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6596,5.9434,6.9628,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6597,3.3764,6.8105,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6598,3.2815,10.2603,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6599,3.1241,9.7828,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6600,5.9434,42.1028,0.0095,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +6601,3.3764,30.9530,0.0084,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +6602,3.2815,25.5944,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +6603,3.1241,26.0718,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +6604,5.9434,5.8520,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +6605,3.3764,5.6602,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6606,3.2815,10.5224,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +6607,3.1241,10.5333,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +6608,5.9434,5.6619,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +6609,3.3764,5.6110,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +6610,3.2815,10.5330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +6611,3.1241,10.5195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +6612,5.9434,5.7433,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +6613,3.3764,5.6639,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +6614,3.2815,10.5856,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +6615,3.1241,10.5855,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +6616,5.9434,5.7787,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +6617,3.3764,5.6229,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +6618,3.2815,10.5121,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +6619,3.1241,10.5049,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +6620,5.9434,5.6364,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +6621,3.3764,5.5446,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +6622,3.2815,10.4200,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +6623,3.1241,10.4258,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +6624,5.9434,5.6964,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +6625,3.3764,5.5203,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +6626,3.2815,10.4237,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +6627,3.1241,10.4199,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +6628,5.9434,5.6971,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +6629,3.3764,5.4996,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +6630,3.2815,10.5011,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +6631,3.1241,10.4045,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +6632,5.9434,5.8618,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +6633,3.3764,5.5873,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +6634,3.2815,10.5288,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +6635,3.1241,10.4792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +6636,5.9434,5.7888,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +6637,3.3764,5.5653,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +6638,3.2815,10.5068,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +6639,3.1241,10.4223,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +6640,5.9434,5.8219,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +6641,3.3764,5.5632,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +6642,3.2815,10.4595,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +6643,3.1241,10.4305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +6644,5.9434,5.8723,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +6645,3.3764,5.6079,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +6646,3.2815,10.6504,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +6647,3.1241,10.6514,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +6648,5.9434,6.0356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +6649,3.3764,5.7354,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +6650,3.2815,10.6584,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6651,3.1241,10.6181,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +6652,5.9434,5.8413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +6653,3.3764,5.6760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +6654,3.2815,10.6213,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +6655,3.1241,10.6177,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +6656,5.9434,5.7791,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6657,3.3764,5.6373,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6658,3.2815,10.6251,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +6659,3.1241,10.6257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6660,5.9434,5.8447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +6661,3.3764,5.6506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6662,3.2815,10.5589,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +6663,3.1241,10.5400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6664,5.9434,5.8068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +6665,3.3764,5.6217,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6666,3.2815,10.6094,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +6667,3.1241,10.6090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +6668,5.9434,5.9228,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +6669,3.3764,5.7718,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +6670,3.2815,10.7954,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6671,3.1241,10.7104,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +6672,5.9434,6.3247,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +6673,3.3764,5.9032,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +6674,3.2815,10.7261,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +6675,3.1241,10.6466,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +6676,5.9434,6.0700,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6677,3.3764,5.7226,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +6678,3.2815,10.6892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +6679,3.1241,10.6384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +6680,5.9434,5.9511,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +6681,3.3764,5.7090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6682,3.2815,10.6661,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6683,3.1241,10.5557,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6684,5.9434,6.0962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6685,3.3764,5.6703,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +6686,3.2815,10.5367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6687,3.1241,10.4921,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6688,5.9434,5.7593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6689,3.3764,5.6434,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +6690,3.2815,10.4555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6691,3.1241,10.3949,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +6692,5.9434,5.7970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +6693,3.3764,5.6095,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +6694,3.2815,10.5535,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6695,3.1241,10.5348,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6696,5.9434,5.8471,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +6697,3.3764,5.6013,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6698,3.2815,10.5666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +6699,3.1241,10.5324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +6700,5.9434,5.7747,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +6701,3.3764,5.6290,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6702,3.2815,10.6072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +6703,3.1241,10.5944,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6704,5.9434,5.7850,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6705,3.3764,5.6280,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +6706,3.2815,10.5823,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6707,3.1241,10.5052,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +6708,5.9434,6.3335,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +6709,3.3764,6.2307,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6710,3.2815,11.2172,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +6711,3.1241,11.2137,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6712,5.9434,6.7589,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +6713,3.3764,5.9512,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +6714,3.2815,8.8385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +6715,3.1241,10.3337,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6716,5.9434,6.1859,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +6717,3.3764,5.6845,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +6718,3.2815,10.7331,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +6719,3.1241,10.6318,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6720,5.9434,6.0762,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +6721,3.3764,5.8187,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6722,3.2815,10.7481,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +6723,3.1241,10.7614,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +6724,5.9434,5.9592,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6725,3.3764,5.6966,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6726,3.2815,10.6278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +6727,3.1241,10.5790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +6728,5.9434,5.9061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6729,3.3764,5.7009,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6730,3.2815,10.6627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6731,3.1241,10.6305,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6732,5.9434,6.1423,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6733,3.3764,5.8279,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6734,3.2815,10.7647,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6735,3.1241,10.6718,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +6736,5.9434,6.3166,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +6737,3.3764,5.8753,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6738,3.2815,10.6915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6739,3.1241,10.6514,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6740,5.9434,6.0119,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +6741,3.3764,5.7811,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6742,3.2815,10.6760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +6743,3.1241,10.6102,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6744,5.9434,6.0782,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6745,3.3764,5.8491,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6746,3.2815,10.7551,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +6747,3.1241,10.7079,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6748,5.9434,6.3157,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6749,3.3764,5.8136,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6750,3.2815,10.6614,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +6751,3.1241,10.6070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +6752,5.9434,6.3572,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6753,3.3764,5.9662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6754,3.2815,10.8857,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +6755,3.1241,10.8938,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6756,5.9434,6.0103,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6757,3.3764,5.7215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6758,3.2815,10.6440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +6759,3.1241,10.5190,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +6760,5.9434,6.2888,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6761,3.3764,5.8315,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6762,3.2815,10.5750,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +6763,3.1241,10.5034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6764,5.9434,7.2882,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6765,3.3764,6.8483,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6766,3.2815,11.2807,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6767,3.1241,11.2739,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6768,5.9434,6.6949,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6769,3.3764,5.8480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6770,3.2815,9.5955,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +6771,3.1241,9.1205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6772,5.9434,6.2882,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6773,3.3764,5.9241,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6774,3.2815,10.8335,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6775,3.1241,10.6646,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6776,5.9434,6.1665,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6777,3.3764,5.8049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6778,3.2815,10.6676,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6779,3.1241,10.5836,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6780,5.9434,6.4879,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6781,3.3764,5.7142,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6782,3.2815,10.3503,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6783,3.1241,10.1167,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +6784,5.9434,6.2683,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6785,3.3764,5.7681,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6786,3.2815,10.6512,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6787,3.1241,10.5934,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6788,5.9434,6.0649,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6789,3.3764,5.6998,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6790,3.2815,10.4678,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +6791,3.1241,10.2786,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6792,5.9434,6.0390,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6793,3.3764,5.6152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6794,3.2815,10.4853,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6795,3.1241,10.4403,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6796,5.9434,6.3765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6797,3.3764,5.9749,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6798,3.2815,10.7284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6799,3.1241,10.7048,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6800,5.9434,5.7968,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6801,3.3764,5.5740,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6802,3.2815,10.4090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6803,3.1241,10.4158,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6804,5.9434,5.6909,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6805,3.3764,5.5631,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6806,3.2815,10.4707,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6807,3.1241,10.4825,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6808,5.9434,5.7065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6809,3.3764,5.5413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6810,3.2815,10.4504,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6811,3.1241,10.4615,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +6812,5.9434,5.8038,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6813,3.3764,5.5135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6814,3.2815,10.2967,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +6815,3.1241,10.2517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6816,5.9434,5.7736,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6817,3.3764,5.5207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6818,3.2815,10.3543,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6819,3.1241,10.3410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6820,5.9434,5.8402,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6821,3.3764,5.6341,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6822,3.2815,10.3789,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6823,3.1241,10.3733,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6824,5.9434,5.9751,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6825,3.3764,5.7408,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6826,3.2815,10.6755,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6827,3.1241,10.6557,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6828,5.9434,5.7817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6829,3.3764,5.5854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6830,3.2815,10.4868,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6831,3.1241,10.3859,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6832,5.9434,5.8238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6833,3.3764,5.6685,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6834,3.2815,10.6145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6835,3.1241,10.5801,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6836,5.9434,5.6745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6837,3.3764,5.5456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6838,3.2815,10.3697,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6839,3.1241,10.2937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +6840,5.9434,5.9340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6841,3.3764,5.6194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6842,3.2815,10.4110,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6843,3.1241,10.3653,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6844,5.9434,5.7944,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6845,3.3764,5.5401,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6846,3.2815,10.3238,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6847,3.1241,10.2772,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6848,5.9434,5.9935,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6849,3.3764,5.6905,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6850,3.2815,10.5065,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6851,3.1241,10.4048,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6852,5.9434,6.2112,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6853,3.3764,5.8532,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6854,3.2815,10.7813,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6855,3.1241,10.7148,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6856,5.9434,5.9909,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6857,3.3764,5.7433,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6858,3.2815,10.4315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6859,3.1241,10.3601,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6860,5.9434,5.9698,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6861,3.3764,5.7530,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6862,3.2815,10.6078,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6863,3.1241,10.5965,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6864,5.9434,6.2434,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6865,3.3764,5.7585,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6866,3.2815,10.6487,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6867,3.1241,10.5844,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6868,5.9434,6.1759,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6869,3.3764,5.7902,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6870,3.2815,10.6301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6871,3.1241,10.5523,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6872,5.9434,5.9017,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6873,3.3764,5.6355,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6874,3.2815,10.5176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6875,3.1241,10.4726,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6876,5.9434,6.1612,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6877,3.3764,5.7821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6878,3.2815,10.8820,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6879,3.1241,10.8016,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6880,5.9434,6.6150,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6881,3.3764,5.7760,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6882,3.2815,19.2758,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6883,3.1241,19.1872,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6884,5.9434,6.6313,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6885,3.3764,5.7492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6886,3.2815,9.8984,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +6887,3.1241,10.0448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6888,5.9434,5.8057,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6889,3.3764,5.5432,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6890,3.2815,10.5890,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +6891,3.1241,10.4445,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6892,5.9434,6.8216,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6893,3.3764,5.9260,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6894,3.2815,10.5225,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6895,3.1241,10.3934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6896,5.9434,6.6173,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6897,3.3764,5.7962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6898,3.2815,10.4134,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6899,3.1241,10.0425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6900,5.9434,6.7299,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6901,3.3764,5.8592,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6902,3.2815,11.5184,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6903,3.1241,11.3400,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6904,5.9434,6.9918,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6905,3.3764,5.8784,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6906,3.2815,10.2706,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6907,3.1241,10.0384,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6908,5.9434,6.4321,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6909,3.3764,5.7977,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6910,3.2815,10.1865,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6911,3.1241,9.9695,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6912,5.9434,6.4154,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6913,3.3764,5.8210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6914,3.2815,9.9922,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6915,3.1241,9.8626,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6916,5.9434,5.9834,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6917,3.3764,5.7149,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6918,3.2815,10.1746,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6919,3.1241,10.1557,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6920,5.9434,6.6370,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6921,3.3764,5.8234,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6922,3.2815,10.3023,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6923,3.1241,10.2238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6924,5.9434,6.8724,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6925,3.3764,5.8076,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6926,3.2815,10.0535,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6927,3.1241,9.9392,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6928,5.9434,6.6725,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6929,3.3764,5.7603,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6930,3.2815,10.2031,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6931,3.1241,10.0121,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6932,5.9434,6.5854,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6933,3.3764,5.8033,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6934,3.2815,10.0911,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6935,3.1241,9.6483,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6936,5.9434,6.2252,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6937,3.3764,5.7344,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6938,3.2815,10.5141,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6939,3.1241,10.4226,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6940,5.9434,6.8840,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6941,3.3764,5.7542,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6942,3.2815,10.5526,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6943,3.1241,10.2836,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6944,5.9434,7.4141,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6945,3.3764,6.1089,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6946,3.2815,11.9573,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6947,3.1241,11.8058,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6948,5.9434,6.4470,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6949,3.3764,5.6628,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6950,3.2815,10.6827,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6951,3.1241,10.3717,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6952,5.9434,7.8913,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6953,3.3764,6.9860,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6954,3.2815,10.4277,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6955,3.1241,10.1882,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6956,5.9434,6.7462,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6957,3.3764,5.8365,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6958,3.2815,10.2184,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6959,3.1241,9.9043,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6960,5.9434,7.3310,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6961,3.3764,6.3283,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6962,3.2815,10.3628,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6963,3.1241,9.9840,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6964,5.9434,7.0154,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6965,3.3764,5.8345,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6966,3.2815,10.5019,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6967,3.1241,10.2965,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6968,5.9434,6.4221,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6969,3.3764,5.7037,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6970,3.2815,10.2103,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6971,3.1241,10.0451,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6972,5.9434,6.8341,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6973,3.3764,6.2012,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6974,3.2815,10.5856,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6975,3.1241,10.4343,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6976,5.9434,6.6228,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6977,3.3764,5.7867,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6978,3.2815,10.1487,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6979,3.1241,9.8970,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6980,5.9434,6.4925,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6981,3.3764,5.7790,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6982,3.2815,10.1261,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6983,3.1241,9.8878,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6984,5.9434,6.8877,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6985,3.3764,5.8428,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6986,3.2815,10.3065,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6987,3.1241,9.9056,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +6988,5.9434,6.8641,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6989,3.3764,6.0921,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6990,3.2815,10.3105,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6991,3.1241,9.9670,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6992,5.9434,6.4333,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6993,3.3764,5.9688,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6994,3.2815,10.7670,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6995,3.1241,11.0688,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6996,5.9434,7.0299,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6997,3.3764,6.0686,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6998,3.2815,12.0696,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6999,3.1241,12.0084,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7000,5.9434,6.6465,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7001,3.3764,5.8471,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7002,3.2815,10.5642,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7003,3.1241,10.4591,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7004,5.9434,6.8095,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7005,3.3764,5.9208,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7006,3.2815,10.6760,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +7007,3.1241,10.3987,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7008,5.9434,6.5089,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7009,3.3764,5.8224,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7010,3.2815,10.3486,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +7011,3.1241,10.3029,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7012,5.9434,7.1155,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7013,3.3764,5.6558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7014,3.2815,9.5526,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +7015,3.1241,10.4557,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +7016,5.9434,6.0358,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7017,3.3764,5.6334,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7018,3.2815,10.5657,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +7019,3.1241,10.5110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7020,5.9434,6.1842,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7021,3.3764,5.8386,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7022,3.2815,10.6967,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7023,3.1241,10.6525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7024,5.9434,6.1283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7025,3.3764,5.8483,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7026,3.2815,10.6234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +7027,3.1241,10.5424,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7028,5.9434,5.9057,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7029,3.3764,5.7486,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7030,3.2815,10.6446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7031,3.1241,10.6253,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7032,5.9434,6.5385,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7033,3.3764,5.8592,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7034,3.2815,10.4842,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +7035,3.1241,10.2761,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7036,5.9434,6.7658,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7037,3.3764,5.9043,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7038,3.2815,9.9713,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7039,3.1241,9.9850,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7040,5.9434,6.5185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7041,3.3764,5.7866,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7042,3.2815,9.8699,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7043,3.1241,9.9243,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +7044,5.9434,6.1834,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7045,3.3764,5.7044,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7046,3.2815,10.6633,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7047,3.1241,10.5638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7048,5.9434,6.2871,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7049,3.3764,5.8359,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7050,3.2815,10.6401,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7051,3.1241,10.5619,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7052,5.9434,6.0365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7053,3.3764,5.7221,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7054,3.2815,10.9545,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7055,3.1241,10.7312,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7056,5.9434,6.6367,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7057,3.3764,5.8478,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7058,3.2815,9.8974,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7059,3.1241,9.8519,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7060,5.9434,6.2938,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7061,3.3764,5.8115,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7062,3.2815,9.6530,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +7063,3.1241,9.8950,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7064,5.9434,6.7246,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7065,3.3764,5.8760,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7066,3.2815,10.3087,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7067,3.1241,10.0059,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7068,5.9434,6.4714,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7069,3.3764,5.7230,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7070,3.2815,10.2737,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7071,3.1241,10.2039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +7072,5.9434,6.8460,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7073,3.3764,5.9337,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7074,3.2815,10.6464,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7075,3.1241,10.5152,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7076,5.9434,6.4917,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7077,3.3764,6.9130,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7078,3.2815,8.2021,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +7079,3.1241,10.1103,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7080,5.9434,5.7812,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7081,3.3764,5.5449,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7082,3.2815,10.3224,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7083,3.1241,10.1813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7084,5.9434,5.7393,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7085,3.3764,5.4843,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7086,3.2815,10.4462,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7087,3.1241,10.3354,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7088,5.9434,6.0335,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7089,3.3764,5.6067,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7090,3.2815,10.5068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7091,3.1241,10.4778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +7092,5.9434,5.8156,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7093,3.3764,5.6578,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7094,3.2815,10.4366,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7095,3.1241,10.3291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +7096,5.9434,5.7930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7097,3.3764,5.5468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7098,3.2815,10.4756,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7099,3.1241,10.4254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +7100,5.9434,6.1531,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7101,3.3764,5.7999,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7102,3.2815,10.5186,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7103,3.1241,10.3296,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7104,5.9434,6.4453,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7105,3.3764,5.8063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7106,3.2815,10.0092,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7107,3.1241,9.7691,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7108,5.9434,6.3334,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7109,3.3764,6.2731,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7110,3.2815,10.0935,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7111,3.1241,9.6828,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7112,5.9434,6.5010,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7113,3.3764,6.2378,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7114,3.2815,6.6937,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7115,3.1241,6.0595,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7116,5.9434,6.1952,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7117,3.3764,5.7343,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7118,3.2815,10.6024,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7119,3.1241,10.5074,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7120,5.9434,6.1624,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7121,3.3764,5.7847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7122,3.2815,10.6777,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +7123,3.1241,10.6397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7124,5.9434,6.0679,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7125,3.3764,5.7975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7126,3.2815,10.6254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7127,3.1241,10.5531,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +7128,5.9434,6.1143,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7129,3.3764,5.7743,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7130,3.2815,10.7751,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7131,3.1241,10.7487,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +7132,5.9434,6.1197,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7133,3.3764,5.8002,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7134,3.2815,10.8225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7135,3.1241,10.8227,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7136,5.9434,6.1030,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7137,3.3764,5.8192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7138,3.2815,10.5361,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7139,3.1241,10.4556,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7140,5.9434,5.8477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7141,3.3764,5.6155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7142,3.2815,10.3038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7143,3.1241,10.2287,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7144,5.9434,6.7826,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7145,3.3764,5.8753,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7146,3.2815,10.6380,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7147,3.1241,10.4986,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7148,5.9434,7.0768,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7149,3.3764,5.9870,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7150,3.2815,9.9181,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7151,3.1241,9.7693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7152,5.9434,6.7051,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7153,3.3764,5.9118,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7154,3.2815,10.4079,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7155,3.1241,10.1530,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7156,5.9434,6.7104,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7157,3.3764,5.8035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7158,3.2815,9.9505,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7159,3.1241,9.8600,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7160,5.9434,6.3500,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7161,3.3764,5.7594,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7162,3.2815,9.9872,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7163,3.1241,9.9089,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7164,5.9434,6.7962,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7165,3.3764,5.8839,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7166,3.2815,10.1038,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7167,3.1241,9.9507,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7168,5.9434,6.4252,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7169,3.3764,5.7497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7170,3.2815,9.9802,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7171,3.1241,9.8905,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7172,5.9434,6.5267,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7173,3.3764,5.8023,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7174,3.2815,10.1092,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7175,3.1241,9.8463,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7176,5.9434,6.1508,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7177,3.3764,5.7200,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7178,3.2815,10.4943,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7179,3.1241,10.3402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7180,5.9434,6.2713,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7181,3.3764,5.8087,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7182,3.2815,10.5516,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7183,3.1241,10.3633,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7184,5.9434,6.1384,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7185,3.3764,5.7407,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7186,3.2815,10.6875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7187,3.1241,10.6900,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7188,5.9434,6.0456,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7189,3.3764,5.7250,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7190,3.2815,10.4453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7191,3.1241,10.3155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7192,5.9434,5.7755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7193,3.3764,5.6570,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7194,3.2815,10.6140,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7195,3.1241,10.6179,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7196,5.9434,6.0078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7197,3.3764,5.7102,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7198,3.2815,12.9083,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7199,3.1241,12.8804,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.txt b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.txt new file mode 100644 index 0000000..da3bc6d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.txt @@ -0,0 +1,103 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +steady_frames_encoded=1780 +elapsed_seconds=29.999 +effective_logical_fps=60.002 +tile_frames_requested=7200 +tile_frames_encoded=7200 +failed_tile_frames=0 +avg_encode_latency_ms=12.374 +p95_encode_latency_ms=12.920 +max_encode_latency_ms=132.944 +avg_steady_encode_latency_ms=12.339 +p95_steady_encode_latency_ms=12.920 +max_steady_encode_latency_ms=132.944 +avg_tile_encode_latency_ms=8.350 +p95_tile_encode_latency_ms=10.745 +avg_max_tile_encode_latency_ms=10.704 +p95_max_tile_encode_latency_ms=11.026 +avg_steady_max_tile_encode_latency_ms=10.697 +p95_steady_max_tile_encode_latency_ms=11.026 +payload_bytes=12023160 +send_target=none +csv=benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s_logical.csv b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s_logical.csv new file mode 100644 index 0000000..2d68dc3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/30mbps_reset150_inflight1_30s_logical.csv @@ -0,0 +1,1801 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,101.8605,27.5649,231707 +1,4,0,10.9712,10.4861,65901 +2,4,0,10.9317,10.4440,36886 +3,4,0,11.0185,10.5550,69404 +4,4,0,11.0585,10.5395,87864 +5,4,0,10.8188,10.4020,53700 +6,4,0,10.7561,10.2835,24415 +7,4,0,10.8553,10.2587,15407 +8,4,0,11.1046,10.4899,12151 +9,4,0,10.9772,10.4440,11449 +10,4,0,10.9320,10.5281,8599 +11,4,0,10.8582,10.4104,6107 +12,4,0,11.0866,10.4214,5132 +13,4,0,10.9358,10.4011,3880 +14,4,0,10.8996,10.3018,4001 +15,4,0,10.9099,10.2865,3860 +16,4,0,10.8330,10.3445,4045 +17,4,0,10.8381,10.2925,3955 +18,4,0,10.8307,10.2718,3721 +19,4,0,10.9062,10.3258,3748 +20,4,0,10.9353,10.3156,3386 +21,4,0,11.0030,10.3492,2761 +22,4,0,11.1648,10.5123,2750 +23,4,0,10.9694,10.4265,2836 +24,4,0,11.0620,10.3402,2977 +25,4,0,11.1837,10.4487,2960 +26,4,0,10.8330,10.3136,3010 +27,4,0,10.9032,10.2220,2978 +28,4,0,11.1451,10.4559,2889 +29,4,0,11.1604,10.5360,2914 +30,4,0,11.1166,10.5413,2847 +31,4,0,11.0875,10.3552,3111 +32,4,0,11.1759,10.4015,2714 +33,4,0,11.0322,10.3885,2843 +34,4,0,11.0405,10.4891,2633 +35,4,0,11.2208,10.5509,2659 +36,4,0,11.0887,10.4288,2696 +37,4,0,10.9387,10.3646,2728 +38,4,0,10.9909,10.3036,2772 +39,4,0,10.8599,10.3232,2740 +40,4,0,10.9319,10.2880,2809 +41,4,0,10.9714,10.4140,2679 +42,4,0,10.9448,10.4238,2865 +43,4,0,10.7678,10.2231,2612 +44,4,0,11.0355,10.3991,2626 +45,4,0,11.0438,10.4349,2693 +46,4,0,11.0482,10.4598,2708 +47,4,0,10.9823,10.4224,2765 +48,4,0,10.8290,10.2451,2645 +49,4,0,10.7386,10.2231,2733 +50,4,0,10.7378,10.2830,2667 +51,4,0,10.7801,10.1894,2647 +52,4,0,10.8606,10.2875,2659 +53,4,0,10.9787,10.2227,2757 +54,4,0,11.0210,10.2577,2656 +55,4,0,11.1540,10.3913,2594 +56,4,0,11.0123,10.3786,2603 +57,4,0,10.9414,10.3385,2605 +58,4,0,10.8853,10.1473,2610 +59,4,0,11.0448,10.2896,2641 +60,4,0,10.9345,10.3784,2637 +61,4,0,10.8482,10.3308,2691 +62,4,0,10.8076,10.3198,2620 +63,4,0,10.8577,10.3290,2614 +64,4,0,10.8676,10.3978,2666 +65,4,0,10.9370,10.3978,2613 +66,4,0,10.8725,10.3870,2624 +67,4,0,10.9325,10.4447,2612 +68,4,0,13.0639,12.6176,2687 +69,4,0,11.0791,10.4695,2622 +70,4,0,11.2043,10.5812,2623 +71,4,0,11.1492,10.5189,2647 +72,4,0,11.0864,10.4558,2645 +73,4,0,10.9936,10.4808,2643 +74,4,0,11.0997,10.5323,2635 +75,4,0,10.8513,10.4007,2718 +76,4,0,10.8848,10.3337,2602 +77,4,0,10.8328,10.3140,2605 +78,4,0,11.0107,10.3034,2612 +79,4,0,10.9824,10.3792,2607 +80,4,0,11.0202,10.4659,2630 +81,4,0,11.0433,10.5232,2617 +82,4,0,11.0644,10.4678,2661 +83,4,0,11.0732,10.4573,2606 +84,4,0,11.0427,10.5110,2609 +85,4,0,10.9825,10.4604,2612 +86,4,0,11.8366,11.3585,2632 +87,4,0,22.4875,21.9605,2606 +88,4,0,11.9525,11.5188,2610 +89,4,0,16.6983,16.2275,2652 +90,4,0,11.8425,11.4035,2594 +91,4,0,20.3837,19.8824,2609 +92,4,0,17.6890,17.2961,2598 +93,4,0,11.8042,11.3304,2613 +94,4,0,11.0541,10.4531,2618 +95,4,0,11.3781,10.5696,2604 +96,4,0,11.1052,10.5020,2677 +97,4,0,11.1759,10.6050,2620 +98,4,0,11.3696,10.6009,2594 +99,4,0,11.0691,10.4959,2594 +100,4,0,10.8607,10.2934,2598 +101,4,0,10.9581,10.3965,2609 +102,4,0,11.0283,10.3217,2616 +103,4,0,11.0843,10.3215,2630 +104,4,0,11.2848,10.6113,2606 +105,4,0,12.0269,10.3875,2604 +106,4,0,11.6849,10.0380,2609 +107,4,0,11.1552,10.2634,2610 +108,4,0,11.1648,10.3131,2652 +109,4,0,11.8038,10.4417,2600 +110,4,0,11.6971,10.6278,2640 +111,4,0,11.9133,9.9945,2594 +112,4,0,11.5058,10.0731,2594 +113,4,0,11.5705,10.1059,2600 +114,4,0,11.6446,9.8576,2599 +115,4,0,11.1938,10.5200,2607 +116,4,0,12.0864,10.3771,2603 +117,4,0,12.9898,8.6848,2623 +118,4,0,11.3152,10.3360,2600 +119,4,0,11.3421,10.5176,2610 +120,4,0,11.0266,10.3924,2594 +121,4,0,11.0543,10.2768,2594 +122,4,0,11.1536,10.3377,2603 +123,4,0,10.9597,10.3582,2602 +124,4,0,10.9684,10.3901,2619 +125,4,0,11.0169,10.2620,2600 +126,4,0,11.1226,10.4025,2600 +127,4,0,13.6101,12.7531,2594 +128,4,0,11.1908,10.4990,2594 +129,4,0,11.2419,10.4320,2599 +130,4,0,11.1267,10.4410,2607 +131,4,0,11.2293,10.5425,2605 +132,4,0,11.3210,10.3448,2596 +133,4,0,11.6203,10.0152,2594 +134,4,0,11.8650,10.1623,2594 +135,4,0,12.0761,10.2856,2594 +136,4,0,11.9467,10.1587,2594 +137,4,0,11.8280,10.1703,2594 +138,4,0,11.7558,10.0350,2604 +139,4,0,11.5783,10.3182,2594 +140,4,0,11.5626,9.9755,2594 +141,4,0,11.8201,9.9815,2599 +142,4,0,11.7305,10.0605,2594 +143,4,0,12.0299,10.3952,2594 +144,4,0,12.2302,9.8298,2594 +145,4,0,11.2504,10.4638,2604 +146,4,0,11.0182,10.4913,2594 +147,4,0,11.0647,10.5312,2594 +148,4,0,11.1322,10.4960,2594 +149,4,0,11.2716,10.6175,2601 +150,4,0,122.3771,41.9869,231707 +151,4,0,11.5850,10.1653,65901 +152,4,0,12.5296,10.2921,36886 +153,4,0,11.5221,10.2779,69404 +154,4,0,10.9645,10.4010,87864 +155,4,0,11.0075,10.5066,53700 +156,4,0,10.9358,10.4307,24415 +157,4,0,10.9390,10.3778,15407 +158,4,0,10.9750,10.4545,12151 +159,4,0,10.8712,10.3892,11449 +160,4,0,10.8738,10.3820,8599 +161,4,0,11.0482,10.4318,6107 +162,4,0,10.9136,10.4224,5132 +163,4,0,10.8979,10.4390,3880 +164,4,0,10.9377,10.5197,4001 +165,4,0,10.9474,10.4540,3860 +166,4,0,10.9626,10.4177,4045 +167,4,0,10.9849,10.4458,3955 +168,4,0,10.8700,10.4170,3721 +169,4,0,11.0105,10.5670,3748 +170,4,0,11.0015,10.3631,3386 +171,4,0,11.0724,10.5697,2761 +172,4,0,11.1067,10.5458,2750 +173,4,0,11.1056,10.4561,2836 +174,4,0,10.8862,10.3852,2977 +175,4,0,11.0781,10.5573,2960 +176,4,0,10.9486,10.4803,3010 +177,4,0,11.0332,10.5188,2978 +178,4,0,10.9183,10.4066,2889 +179,4,0,11.1795,10.5895,2914 +180,4,0,11.2197,10.5797,2847 +181,4,0,11.0636,10.5026,3111 +182,4,0,11.0844,10.4563,2714 +183,4,0,10.9936,10.4385,2843 +184,4,0,11.2746,10.8605,2633 +185,4,0,10.9715,10.4256,2659 +186,4,0,10.9708,10.4226,2696 +187,4,0,10.8302,10.3682,2728 +188,4,0,10.8216,10.3552,2772 +189,4,0,11.0458,10.3993,2740 +190,4,0,10.8936,10.3389,2809 +191,4,0,11.0767,10.4367,2679 +192,4,0,10.9544,10.4593,2865 +193,4,0,11.1308,10.4457,2612 +194,4,0,11.0942,10.5743,2626 +195,4,0,11.2272,10.5797,2693 +196,4,0,10.9558,10.4808,2708 +197,4,0,11.0964,10.4634,2765 +198,4,0,10.9059,10.4019,2645 +199,4,0,10.7779,10.2649,2733 +200,4,0,11.0275,10.2508,2667 +201,4,0,10.9372,10.3416,2647 +202,4,0,11.0071,10.4727,2659 +203,4,0,10.8939,10.2836,2757 +204,4,0,10.9863,10.3919,2656 +205,4,0,10.9335,10.3852,2594 +206,4,0,11.3633,10.5042,2603 +207,4,0,11.3205,10.6262,2605 +208,4,0,11.9398,11.0498,2610 +209,4,0,11.1588,10.4171,2641 +210,4,0,10.9730,10.3971,2637 +211,4,0,10.9731,10.3507,2691 +212,4,0,11.3105,10.5964,2620 +213,4,0,11.1210,10.3288,2614 +214,4,0,11.3986,10.5138,2666 +215,4,0,10.9290,10.3587,2613 +216,4,0,11.1382,10.3601,2624 +217,4,0,11.0037,10.1945,2612 +218,4,0,10.9839,10.3292,2687 +219,4,0,11.1467,10.3885,2622 +220,4,0,10.8993,10.3040,2623 +221,4,0,10.8305,10.2657,2647 +222,4,0,10.8745,10.2299,2645 +223,4,0,11.1575,10.5053,2643 +224,4,0,11.2446,10.4750,2635 +225,4,0,11.1548,10.3878,2718 +226,4,0,11.0930,10.3405,2602 +227,4,0,12.2889,10.2739,2605 +228,4,0,11.8212,9.6077,2612 +229,4,0,11.4135,10.6125,2607 +230,4,0,11.2957,10.5195,2630 +231,4,0,11.4441,10.5180,2617 +232,4,0,11.6463,10.1806,2661 +233,4,0,11.6931,10.3715,2606 +234,4,0,11.4276,10.4643,2609 +235,4,0,11.5152,10.5979,2612 +236,4,0,11.1349,10.4318,2632 +237,4,0,11.1170,10.4018,2606 +238,4,0,11.0080,10.2944,2610 +239,4,0,11.2981,10.5932,2652 +240,4,0,11.9002,8.7580,2594 +241,4,0,11.4695,10.6788,2609 +242,4,0,11.5988,10.7724,2598 +243,4,0,11.2845,10.4958,2613 +244,4,0,10.9566,10.3234,2618 +245,4,0,10.9044,10.2219,2604 +246,4,0,11.1181,10.4644,2677 +247,4,0,11.5032,10.8105,2620 +248,4,0,11.9893,9.9382,2594 +249,4,0,11.1075,10.5173,2594 +250,4,0,11.3704,10.6528,2598 +251,4,0,11.1740,10.5096,2609 +252,4,0,12.1284,10.1147,2616 +253,4,0,12.4520,11.0688,2630 +254,4,0,11.3709,10.1020,2606 +255,4,0,10.9018,10.2194,2604 +256,4,0,11.3763,10.0821,2609 +257,4,0,11.3018,10.1929,2610 +258,4,0,12.3810,10.2587,2652 +259,4,0,11.6334,10.8038,2600 +260,4,0,11.8991,10.0252,2640 +261,4,0,11.6958,9.9459,2594 +262,4,0,11.8742,10.2670,2594 +263,4,0,11.4883,10.4625,2600 +264,4,0,11.2765,10.5326,2599 +265,4,0,11.0344,10.3320,2607 +266,4,0,10.9236,10.3737,2603 +267,4,0,11.6297,10.6828,2623 +268,4,0,11.7003,10.0082,2600 +269,4,0,11.9549,10.3458,2610 +270,4,0,11.8699,9.8643,2594 +271,4,0,11.6948,10.3209,2594 +272,4,0,12.1797,9.6847,2603 +273,4,0,11.2523,10.3811,2602 +274,4,0,11.4948,10.8270,2619 +275,4,0,11.2037,10.4898,2600 +276,4,0,10.6911,10.1467,2600 +277,4,0,11.0769,10.1639,2594 +278,4,0,10.8756,10.3227,2594 +279,4,0,11.5443,10.1620,2599 +280,4,0,12.3049,10.3930,2607 +281,4,0,11.3180,10.2526,2605 +282,4,0,10.9247,10.3443,2596 +283,4,0,11.5906,10.6635,2594 +284,4,0,11.8935,9.8777,2594 +285,4,0,11.6518,10.3039,2594 +286,4,0,11.2603,10.4635,2594 +287,4,0,11.9161,9.9807,2594 +288,4,0,11.5035,10.3145,2604 +289,4,0,11.0053,10.5094,2594 +290,4,0,11.4703,9.9260,2594 +291,4,0,11.6648,10.0721,2599 +292,4,0,12.0043,9.9695,2594 +293,4,0,11.6191,9.8923,2594 +294,4,0,11.6813,10.3013,2594 +295,4,0,11.5895,10.0416,2604 +296,4,0,11.8096,9.7183,2594 +297,4,0,12.1968,9.9870,2594 +298,4,0,11.7154,10.0165,2594 +299,4,0,11.7477,10.3906,2601 +300,4,0,128.3059,46.9365,231707 +301,4,0,11.0385,10.5418,65901 +302,4,0,10.8975,10.4636,36886 +303,4,0,11.0662,10.6121,69404 +304,4,0,11.0243,10.4938,87864 +305,4,0,11.1167,10.6502,53700 +306,4,0,11.0083,10.4828,24415 +307,4,0,10.9046,10.3962,15407 +308,4,0,10.9524,10.4450,12151 +309,4,0,11.0913,10.5570,11449 +310,4,0,11.0740,10.5522,8599 +311,4,0,11.0342,10.5027,6107 +312,4,0,11.0780,10.5368,5132 +313,4,0,11.4082,10.7751,3880 +314,4,0,11.1997,10.6513,4001 +315,4,0,11.2162,10.5869,3860 +316,4,0,11.2000,10.5758,4045 +317,4,0,11.3022,10.5529,3955 +318,4,0,11.8530,10.2396,3721 +319,4,0,12.6109,10.9403,3748 +320,4,0,13.7495,11.0255,3386 +321,4,0,12.0652,10.4243,2761 +322,4,0,12.1404,10.2335,2750 +323,4,0,12.2213,10.7218,2836 +324,4,0,12.1634,10.0720,2977 +325,4,0,11.8062,10.3791,2960 +326,4,0,12.0256,10.6241,3010 +327,4,0,13.1736,11.4164,2978 +328,4,0,12.3153,10.0650,2889 +329,4,0,11.9296,10.2428,2914 +330,4,0,12.4195,10.9981,2847 +331,4,0,12.1802,8.3630,3111 +332,4,0,11.3401,10.6076,2714 +333,4,0,11.5937,10.7920,2843 +334,4,0,11.3593,10.6927,2633 +335,4,0,11.2470,10.5605,2659 +336,4,0,11.2058,10.6125,2696 +337,4,0,11.8417,11.1408,2728 +338,4,0,12.3950,10.1564,2772 +339,4,0,12.1668,10.2538,2740 +340,4,0,12.1815,10.0185,2809 +341,4,0,15.6719,14.1267,2679 +342,4,0,11.3719,10.6411,2865 +343,4,0,11.5968,10.6294,2612 +344,4,0,11.6491,10.8946,2626 +345,4,0,11.6324,10.8283,2693 +346,4,0,11.6188,10.6643,2708 +347,4,0,11.4953,10.6852,2765 +348,4,0,11.6650,11.0141,2645 +349,4,0,10.9732,10.4801,2733 +350,4,0,10.9840,10.4832,2667 +351,4,0,10.9904,10.5235,2647 +352,4,0,11.3815,10.8547,2659 +353,4,0,11.9049,10.0853,2757 +354,4,0,12.1397,9.5353,2656 +355,4,0,11.2362,10.5028,2594 +356,4,0,10.9017,10.4396,2603 +357,4,0,11.7849,10.4090,2605 +358,4,0,11.7657,10.0753,2610 +359,4,0,12.4720,11.0288,2641 +360,4,0,10.6767,10.2379,2637 +361,4,0,10.9204,10.4681,2691 +362,4,0,11.0028,10.3692,2620 +363,4,0,11.1051,10.6602,2614 +364,4,0,10.9359,10.3864,2666 +365,4,0,10.9497,10.4627,2613 +366,4,0,11.0964,10.5330,2624 +367,4,0,10.8605,10.4762,2612 +368,4,0,10.9901,10.4226,2687 +369,4,0,11.0898,10.5363,2622 +370,4,0,11.1150,10.4947,2623 +371,4,0,11.1817,10.4999,2647 +372,4,0,11.1225,10.5611,2645 +373,4,0,11.0251,10.3048,2643 +374,4,0,11.2490,10.5283,2635 +375,4,0,11.0488,10.4011,2718 +376,4,0,10.8245,10.3383,2602 +377,4,0,11.1393,10.3695,2605 +378,4,0,11.1672,10.4162,2612 +379,4,0,10.9573,10.3936,2607 +380,4,0,11.0892,10.6816,2630 +381,4,0,11.0779,10.3055,2617 +382,4,0,11.4164,10.6046,2661 +383,4,0,11.2881,10.5295,2606 +384,4,0,11.6305,10.6410,2609 +385,4,0,12.1363,10.8664,2612 +386,4,0,12.4136,10.2988,2632 +387,4,0,11.2409,10.6190,2606 +388,4,0,11.2299,10.5159,2610 +389,4,0,11.5638,10.9185,2652 +390,4,0,11.3232,10.5797,2594 +391,4,0,11.9218,10.2954,2609 +392,4,0,18.7811,12.9455,2598 +393,4,0,11.2183,10.2475,2613 +394,4,0,11.1415,10.5007,2618 +395,4,0,13.2710,12.3063,2604 +396,4,0,11.0081,10.2018,2677 +397,4,0,11.3762,10.3302,2620 +398,4,0,11.5369,10.4646,2594 +399,4,0,12.0186,9.5747,2594 +400,4,0,11.3054,10.6335,2598 +401,4,0,11.5832,10.8688,2609 +402,4,0,12.2731,9.9527,2616 +403,4,0,12.1518,10.5663,2630 +404,4,0,12.1957,10.8317,2606 +405,4,0,12.0809,9.8784,2604 +406,4,0,11.4021,10.5923,2609 +407,4,0,11.4017,10.7017,2610 +408,4,0,11.7412,11.0489,2652 +409,4,0,11.4041,10.7094,2600 +410,4,0,11.0551,10.2760,2640 +411,4,0,11.7358,10.0564,2594 +412,4,0,11.5668,10.5235,2594 +413,4,0,11.5849,10.0441,2600 +414,4,0,11.4649,10.7964,2599 +415,4,0,11.5183,10.6818,2607 +416,4,0,11.2710,10.5412,2603 +417,4,0,11.6457,10.9018,2623 +418,4,0,12.0389,10.1160,2600 +419,4,0,14.4295,10.3599,2610 +420,4,0,11.2715,10.6099,2594 +421,4,0,11.3357,10.5500,2594 +422,4,0,11.2548,10.4258,2603 +423,4,0,11.8781,10.4036,2602 +424,4,0,12.0854,10.0268,2619 +425,4,0,11.3092,10.6448,2600 +426,4,0,11.3063,10.5998,2600 +427,4,0,11.3412,10.7193,2594 +428,4,0,11.2873,10.4919,2594 +429,4,0,11.0613,10.5227,2599 +430,4,0,11.5134,10.8240,2607 +431,4,0,11.6066,10.3453,2605 +432,4,0,11.7850,10.2634,2596 +433,4,0,11.5292,10.2440,2594 +434,4,0,11.5723,10.3627,2594 +435,4,0,15.4024,10.2567,2594 +436,4,0,11.1327,10.2115,2594 +437,4,0,11.2595,10.5177,2594 +438,4,0,10.9183,10.2662,2604 +439,4,0,11.1436,10.2659,2594 +440,4,0,11.2402,10.3548,2594 +441,4,0,11.6753,10.8227,2599 +442,4,0,12.1643,10.7335,2594 +443,4,0,12.4630,10.9721,2594 +444,4,0,11.7212,10.2558,2594 +445,4,0,12.2712,10.1774,2604 +446,4,0,12.2332,9.7469,2594 +447,4,0,11.5338,10.5445,2594 +448,4,0,11.2382,10.5625,2594 +449,4,0,11.1059,10.6140,2601 +450,4,0,127.6259,45.7396,231707 +451,4,0,11.1058,10.3763,65901 +452,4,0,10.9518,10.4939,36886 +453,4,0,10.8658,10.4246,69404 +454,4,0,10.7759,10.2809,87864 +455,4,0,10.9943,10.4744,53700 +456,4,0,10.9908,10.4419,24415 +457,4,0,10.9862,10.4069,15407 +458,4,0,10.8107,10.3884,12151 +459,4,0,11.0985,10.5535,11449 +460,4,0,11.1780,10.5650,8599 +461,4,0,11.2831,10.6311,6107 +462,4,0,11.2584,10.4626,5132 +463,4,0,11.2133,10.4744,3880 +464,4,0,11.1790,10.2854,4001 +465,4,0,11.6865,10.9231,3860 +466,4,0,11.9745,10.6410,4045 +467,4,0,19.7828,18.1133,3955 +468,4,0,11.2635,10.7170,3721 +469,4,0,11.1781,10.5117,3748 +470,4,0,10.9780,10.5335,3386 +471,4,0,11.3308,10.6168,2761 +472,4,0,11.1247,10.4844,2750 +473,4,0,11.2754,10.4688,2836 +474,4,0,13.1654,8.7910,2977 +475,4,0,14.2086,10.2347,2960 +476,4,0,15.0315,13.5634,3010 +477,4,0,11.9978,10.3146,2978 +478,4,0,12.3216,10.7168,2889 +479,4,0,12.1481,10.2604,2914 +480,4,0,12.1648,10.7636,2847 +481,4,0,12.4340,10.7660,3111 +482,4,0,12.4379,9.7717,2714 +483,4,0,11.2719,10.6784,2843 +484,4,0,11.1520,10.5860,2633 +485,4,0,11.4745,10.7968,2659 +486,4,0,11.4461,10.5117,2696 +487,4,0,12.1790,11.4595,2728 +488,4,0,12.4164,9.8994,2772 +489,4,0,12.8855,10.1674,2740 +490,4,0,11.4553,10.7265,2809 +491,4,0,11.3166,10.5555,2679 +492,4,0,13.5382,11.9296,2865 +493,4,0,12.0915,10.1568,2612 +494,4,0,11.4775,10.7513,2626 +495,4,0,11.9451,11.2079,2693 +496,4,0,12.2995,10.1003,2708 +497,4,0,13.0071,10.3818,2765 +498,4,0,12.2747,10.1061,2645 +499,4,0,12.0980,10.1700,2733 +500,4,0,12.1613,10.3347,2667 +501,4,0,12.1762,10.0941,2647 +502,4,0,12.2776,10.1395,2659 +503,4,0,11.6343,10.8554,2757 +504,4,0,10.8827,10.2370,2656 +505,4,0,11.0228,10.4144,2594 +506,4,0,11.0932,10.4051,2603 +507,4,0,11.3199,10.7077,2605 +508,4,0,11.0840,10.4411,2610 +509,4,0,10.8702,10.3944,2641 +510,4,0,11.1249,10.3900,2637 +511,4,0,11.2619,10.4630,2691 +512,4,0,11.2781,10.6611,2620 +513,4,0,11.2438,10.5877,2614 +514,4,0,11.0983,10.5116,2666 +515,4,0,11.5581,10.7508,2613 +516,4,0,11.2998,10.6308,2624 +517,4,0,11.3277,10.5599,2612 +518,4,0,11.2358,10.7078,2687 +519,4,0,11.4971,10.6626,2622 +520,4,0,11.4695,10.6629,2623 +521,4,0,11.1532,10.4476,2647 +522,4,0,11.4562,10.7338,2645 +523,4,0,11.4493,10.6423,2643 +524,4,0,11.1384,10.3510,2635 +525,4,0,11.2288,10.5102,2718 +526,4,0,12.2490,10.7003,2602 +527,4,0,12.2285,9.9390,2605 +528,4,0,12.2848,9.7514,2612 +529,4,0,11.9797,10.1615,2607 +530,4,0,12.6110,10.2297,2630 +531,4,0,11.8460,10.2721,2617 +532,4,0,11.6806,10.7431,2661 +533,4,0,11.3265,10.6084,2606 +534,4,0,11.2692,10.4820,2609 +535,4,0,11.9972,10.2717,2612 +536,4,0,12.4237,9.5961,2632 +537,4,0,12.6571,10.2230,2606 +538,4,0,11.8589,10.5413,2610 +539,4,0,11.3438,10.3305,2652 +540,4,0,11.4858,10.6545,2594 +541,4,0,11.8397,10.4349,2609 +542,4,0,12.3525,10.6258,2598 +543,4,0,12.3387,9.9120,2613 +544,4,0,12.0697,10.6595,2618 +545,4,0,15.8932,10.0700,2604 +546,4,0,11.0377,10.4384,2677 +547,4,0,11.5397,10.8338,2620 +548,4,0,11.5885,10.6910,2594 +549,4,0,13.3462,11.7427,2594 +550,4,0,12.6688,11.0448,2598 +551,4,0,12.5640,10.3090,2609 +552,4,0,11.6736,10.7454,2616 +553,4,0,11.7426,10.3769,2630 +554,4,0,11.9557,10.1288,2606 +555,4,0,12.3375,10.1727,2604 +556,4,0,11.7433,10.5623,2609 +557,4,0,12.1936,10.0558,2610 +558,4,0,12.6161,9.9731,2652 +559,4,0,11.8425,10.0447,2600 +560,4,0,12.2159,10.1172,2640 +561,4,0,11.8631,9.9741,2594 +562,4,0,12.0068,10.0720,2594 +563,4,0,12.0983,10.0872,2600 +564,4,0,12.1430,10.0786,2599 +565,4,0,13.5012,11.6686,2607 +566,4,0,11.8086,10.2887,2603 +567,4,0,11.9110,10.1965,2623 +568,4,0,12.1751,10.0442,2600 +569,4,0,11.8883,8.9409,2610 +570,4,0,12.1722,10.2105,2594 +571,4,0,11.9193,10.6817,2594 +572,4,0,11.9811,10.0602,2603 +573,4,0,12.0670,9.9899,2602 +574,4,0,11.3432,10.2682,2619 +575,4,0,12.2904,10.7876,2600 +576,4,0,12.9175,9.4118,2600 +577,4,0,11.9179,10.2142,2594 +578,4,0,12.3154,10.2397,2594 +579,4,0,11.7511,10.1967,2599 +580,4,0,12.5613,10.3660,2607 +581,4,0,12.0281,10.4394,2605 +582,4,0,11.9984,10.3956,2596 +583,4,0,13.8936,10.0585,2594 +584,4,0,11.4143,10.4665,2594 +585,4,0,12.2933,10.0785,2594 +586,4,0,11.7865,10.1655,2594 +587,4,0,11.9367,10.1174,2594 +588,4,0,11.4047,10.4654,2604 +589,4,0,11.7747,10.0723,2594 +590,4,0,11.9809,9.2888,2594 +591,4,0,11.7988,10.2175,2599 +592,4,0,11.9800,10.1189,2594 +593,4,0,12.0881,10.0551,2594 +594,4,0,11.4415,10.2612,2594 +595,4,0,12.4649,10.8674,2604 +596,4,0,11.9181,10.0927,2594 +597,4,0,12.0055,10.1107,2594 +598,4,0,11.5657,10.7999,2594 +599,4,0,11.1850,10.5820,2601 +600,4,0,127.0012,45.2195,231707 +601,4,0,10.9399,10.4585,65901 +602,4,0,11.0055,10.6051,36886 +603,4,0,11.1231,10.6349,69404 +604,4,0,10.8976,10.4263,87864 +605,4,0,10.9535,10.4997,53700 +606,4,0,10.9260,10.3500,24415 +607,4,0,10.9084,10.4765,15407 +608,4,0,10.9168,10.5123,12151 +609,4,0,10.8960,10.4908,11449 +610,4,0,11.0228,10.4418,8599 +611,4,0,11.0765,10.2325,6107 +612,4,0,10.9801,10.4092,5132 +613,4,0,10.9414,10.4663,3880 +614,4,0,10.9918,10.5535,4001 +615,4,0,11.1735,10.6154,3860 +616,4,0,10.9463,10.5128,4045 +617,4,0,11.0358,10.6420,3955 +618,4,0,11.0486,10.6137,3721 +619,4,0,10.9604,10.5506,3748 +620,4,0,10.9782,10.5509,3386 +621,4,0,10.9538,10.5784,2761 +622,4,0,10.9745,10.4616,2750 +623,4,0,10.8043,10.3676,2836 +624,4,0,10.9458,10.4750,2977 +625,4,0,11.0337,10.6066,2960 +626,4,0,11.0438,10.5718,3010 +627,4,0,11.1933,10.6803,2978 +628,4,0,11.3792,10.8385,2889 +629,4,0,11.5008,10.6071,2914 +630,4,0,10.9266,10.3325,2847 +631,4,0,11.0209,10.3162,3111 +632,4,0,11.0657,10.3310,2714 +633,4,0,11.4625,10.6765,2843 +634,4,0,11.1321,10.4182,2633 +635,4,0,11.1558,10.4572,2659 +636,4,0,11.1626,10.4969,2696 +637,4,0,11.0887,10.4773,2728 +638,4,0,11.3174,10.5260,2772 +639,4,0,11.0263,10.5344,2740 +640,4,0,11.0141,10.4385,2809 +641,4,0,11.0752,10.4043,2679 +642,4,0,11.0926,10.4943,2865 +643,4,0,11.2241,10.6090,2612 +644,4,0,11.1980,10.5940,2626 +645,4,0,11.6052,10.5436,2693 +646,4,0,11.4462,10.7016,2708 +647,4,0,11.4091,10.6779,2765 +648,4,0,11.5197,10.9185,2645 +649,4,0,11.9298,10.4537,2733 +650,4,0,11.9964,10.3679,2667 +651,4,0,11.2407,10.4510,2647 +652,4,0,10.9884,10.2568,2659 +653,4,0,11.2639,10.5648,2757 +654,4,0,10.9051,10.3921,2656 +655,4,0,11.0817,10.5715,2594 +656,4,0,10.9676,10.3872,2603 +657,4,0,10.9007,10.2932,2605 +658,4,0,11.1330,10.5283,2610 +659,4,0,11.0365,10.4479,2641 +660,4,0,10.8200,10.3120,2637 +661,4,0,10.9198,10.3865,2691 +662,4,0,11.0773,10.3619,2620 +663,4,0,11.1636,10.5615,2614 +664,4,0,11.0115,10.6022,2666 +665,4,0,11.1802,10.3810,2613 +666,4,0,11.1617,10.5539,2624 +667,4,0,11.1862,10.4920,2612 +668,4,0,10.8795,10.4720,2687 +669,4,0,11.0888,10.4640,2622 +670,4,0,11.0691,10.3906,2623 +671,4,0,11.0492,10.5229,2647 +672,4,0,11.4114,10.5518,2645 +673,4,0,11.1406,10.5873,2643 +674,4,0,11.3497,10.5606,2635 +675,4,0,11.1373,10.4659,2718 +676,4,0,11.1550,10.6287,2602 +677,4,0,10.8959,10.3809,2605 +678,4,0,10.7222,10.2856,2612 +679,4,0,11.3626,10.5279,2607 +680,4,0,11.0722,10.4309,2630 +681,4,0,11.0559,10.5152,2617 +682,4,0,10.9578,10.2287,2661 +683,4,0,11.2978,10.5597,2606 +684,4,0,11.1054,10.5293,2609 +685,4,0,11.0264,10.4181,2612 +686,4,0,11.1669,10.6153,2632 +687,4,0,10.9709,10.3249,2606 +688,4,0,10.8413,10.3547,2610 +689,4,0,11.0215,10.2723,2652 +690,4,0,11.3302,10.4153,2594 +691,4,0,11.0881,10.4976,2609 +692,4,0,11.0542,10.3105,2598 +693,4,0,10.9487,10.3978,2613 +694,4,0,10.9509,10.2625,2618 +695,4,0,10.8847,10.2796,2604 +696,4,0,11.0278,10.4563,2677 +697,4,0,11.0728,10.4677,2620 +698,4,0,11.0211,10.4584,2594 +699,4,0,10.8649,10.3118,2594 +700,4,0,10.9682,10.3995,2598 +701,4,0,11.0765,10.3165,2609 +702,4,0,11.0880,10.4810,2616 +703,4,0,10.9820,10.3838,2630 +704,4,0,11.1437,10.4009,2606 +705,4,0,11.0507,10.5315,2604 +706,4,0,11.1260,10.5415,2609 +707,4,0,11.0451,10.4689,2610 +708,4,0,10.9376,10.2013,2652 +709,4,0,11.1536,10.4920,2600 +710,4,0,10.9921,10.3545,2640 +711,4,0,11.1538,10.3428,2594 +712,4,0,10.9973,10.2448,2594 +713,4,0,11.1400,10.4504,2600 +714,4,0,11.2099,10.4994,2599 +715,4,0,11.3148,10.3876,2607 +716,4,0,11.1873,10.5349,2603 +717,4,0,11.0150,10.3372,2623 +718,4,0,11.1884,10.5085,2600 +719,4,0,10.8485,10.3700,2610 +720,4,0,11.0410,10.2187,2594 +721,4,0,11.0191,10.2430,2594 +722,4,0,11.0755,10.2566,2603 +723,4,0,11.2588,10.4981,2602 +724,4,0,16.5510,15.8346,2619 +725,4,0,10.9241,10.4111,2600 +726,4,0,11.5970,10.8895,2600 +727,4,0,11.3036,10.5106,2594 +728,4,0,11.2274,10.2975,2594 +729,4,0,11.0108,10.2681,2599 +730,4,0,10.9413,10.3393,2607 +731,4,0,14.7781,10.5074,2605 +732,4,0,12.0400,10.0977,2596 +733,4,0,11.6800,10.4485,2594 +734,4,0,11.7523,10.1056,2594 +735,4,0,11.2357,10.4623,2594 +736,4,0,11.8705,10.5333,2594 +737,4,0,11.7732,9.9778,2594 +738,4,0,11.8198,10.0835,2604 +739,4,0,11.5663,10.0691,2594 +740,4,0,11.8014,10.0464,2594 +741,4,0,12.0529,10.0975,2599 +742,4,0,11.8713,10.1013,2594 +743,4,0,12.6651,9.4699,2594 +744,4,0,11.2483,10.4052,2594 +745,4,0,11.4102,10.6637,2604 +746,4,0,11.0538,10.3897,2594 +747,4,0,11.4255,10.3257,2594 +748,4,0,11.5012,10.8338,2594 +749,4,0,11.3570,10.4553,2601 +750,4,0,132.9435,49.7476,231707 +751,4,0,11.1420,10.5906,65901 +752,4,0,11.1213,10.5818,36886 +753,4,0,11.0099,10.5379,69404 +754,4,0,10.8980,10.3392,87864 +755,4,0,11.1238,10.4421,53700 +756,4,0,11.1213,10.3541,24415 +757,4,0,11.0055,10.4339,15407 +758,4,0,11.0883,10.5787,12151 +759,4,0,11.0637,10.5657,11449 +760,4,0,11.0808,10.5853,8599 +761,4,0,11.1841,10.6207,6107 +762,4,0,11.0840,10.4969,5132 +763,4,0,11.1964,10.5345,3880 +764,4,0,11.2564,10.6770,4001 +765,4,0,11.3920,10.7651,3860 +766,4,0,11.2808,10.5053,4045 +767,4,0,11.1491,10.4795,3955 +768,4,0,11.0523,10.2688,3721 +769,4,0,10.8524,10.2996,3748 +770,4,0,10.8973,10.3313,3386 +771,4,0,11.0460,10.2594,2761 +772,4,0,10.9442,10.3065,2750 +773,4,0,11.0334,10.4215,2836 +774,4,0,11.8171,10.1804,2977 +775,4,0,11.5462,10.3131,2960 +776,4,0,11.8928,10.2474,3010 +777,4,0,14.4239,12.7284,2978 +778,4,0,11.8482,10.5426,2889 +779,4,0,11.8710,10.1797,2914 +780,4,0,12.0648,10.4104,2847 +781,4,0,12.2587,10.4570,3111 +782,4,0,12.2462,10.8513,2714 +783,4,0,12.8773,10.8587,2843 +784,4,0,12.1809,10.7534,2633 +785,4,0,12.3887,10.6565,2659 +786,4,0,12.6804,9.9605,2696 +787,4,0,12.2060,10.4752,2728 +788,4,0,13.6048,10.3150,2772 +789,4,0,14.8238,13.1397,2740 +790,4,0,11.8757,10.9898,2809 +791,4,0,12.4973,10.0767,2679 +792,4,0,12.1664,10.6660,2865 +793,4,0,13.2788,10.4041,2612 +794,4,0,11.9065,10.1185,2626 +795,4,0,12.2075,10.3234,2693 +796,4,0,12.1990,10.8639,2708 +797,4,0,12.3522,10.1887,2765 +798,4,0,12.3330,10.3723,2645 +799,4,0,11.9437,10.4136,2733 +800,4,0,12.6567,10.5516,2667 +801,4,0,12.3693,10.1770,2647 +802,4,0,12.1893,10.2175,2659 +803,4,0,12.2449,10.4255,2757 +804,4,0,12.9049,10.1855,2656 +805,4,0,12.2222,10.3154,2594 +806,4,0,12.2667,10.1899,2603 +807,4,0,12.0321,10.1653,2605 +808,4,0,12.6223,10.1899,2610 +809,4,0,11.0509,10.4167,2641 +810,4,0,11.0260,10.4597,2637 +811,4,0,11.0990,10.5330,2691 +812,4,0,10.9710,10.4440,2620 +813,4,0,11.0528,10.5606,2614 +814,4,0,11.0756,10.3595,2666 +815,4,0,11.2365,10.4006,2613 +816,4,0,11.3346,10.2097,2624 +817,4,0,11.0677,10.4307,2612 +818,4,0,11.0089,10.4010,2687 +819,4,0,10.9047,10.3763,2622 +820,4,0,10.9067,10.4255,2623 +821,4,0,10.9199,10.3341,2647 +822,4,0,10.9378,10.4475,2645 +823,4,0,11.1306,10.3407,2643 +824,4,0,11.0252,10.5163,2635 +825,4,0,11.1179,10.4542,2718 +826,4,0,10.9766,10.4586,2602 +827,4,0,10.9507,10.3910,2605 +828,4,0,10.9645,10.4191,2612 +829,4,0,11.0089,10.4905,2607 +830,4,0,11.1288,10.4864,2630 +831,4,0,10.9790,10.3965,2617 +832,4,0,11.0477,10.4024,2661 +833,4,0,10.9022,10.4267,2606 +834,4,0,10.9741,10.4156,2609 +835,4,0,11.0742,10.4612,2612 +836,4,0,11.1078,10.4850,2632 +837,4,0,10.9189,10.4038,2606 +838,4,0,11.2178,10.5466,2610 +839,4,0,11.3372,10.6621,2652 +840,4,0,11.1929,10.6623,2594 +841,4,0,11.1424,10.5501,2609 +842,4,0,11.0844,10.5092,2598 +843,4,0,11.2605,10.5803,2613 +844,4,0,10.9400,10.4594,2618 +845,4,0,10.9421,10.4166,2604 +846,4,0,10.9787,10.4008,2677 +847,4,0,11.2345,10.5439,2620 +848,4,0,10.9639,10.3760,2594 +849,4,0,11.0320,10.3484,2594 +850,4,0,11.1120,10.2667,2598 +851,4,0,11.1755,10.3544,2609 +852,4,0,11.1254,10.3815,2616 +853,4,0,11.1154,10.3790,2630 +854,4,0,11.0748,10.2769,2606 +855,4,0,11.2148,10.4713,2604 +856,4,0,11.9634,10.3066,2609 +857,4,0,12.3386,10.1698,2610 +858,4,0,14.1996,12.5231,2652 +859,4,0,11.4110,10.4935,2600 +860,4,0,11.4240,10.7401,2640 +861,4,0,11.3860,10.5998,2594 +862,4,0,11.8440,10.2547,2594 +863,4,0,12.0662,10.0403,2600 +864,4,0,12.0507,9.7966,2599 +865,4,0,11.4624,10.5062,2607 +866,4,0,11.3530,10.3153,2603 +867,4,0,11.6174,10.2720,2623 +868,4,0,11.9521,10.4570,2600 +869,4,0,12.6848,10.5740,2610 +870,4,0,12.9700,9.6756,2594 +871,4,0,11.8504,10.7700,2594 +872,4,0,11.4107,10.5061,2603 +873,4,0,11.5439,10.8471,2602 +874,4,0,11.7399,10.4553,2619 +875,4,0,12.0298,10.1699,2600 +876,4,0,14.6191,10.3053,2600 +877,4,0,11.1835,10.4844,2594 +878,4,0,11.3693,10.5352,2594 +879,4,0,11.7010,10.9141,2599 +880,4,0,11.8632,10.2985,2607 +881,4,0,12.2661,9.9754,2605 +882,4,0,12.5685,9.8163,2596 +883,4,0,12.1499,10.0484,2594 +884,4,0,11.2549,10.5627,2594 +885,4,0,11.5147,10.7996,2594 +886,4,0,11.2359,10.2906,2594 +887,4,0,11.4533,10.6081,2594 +888,4,0,11.3630,10.5978,2604 +889,4,0,11.6720,10.2103,2594 +890,4,0,12.6407,10.7061,2594 +891,4,0,12.1035,10.1340,2599 +892,4,0,11.5440,10.3761,2594 +893,4,0,11.2679,10.6550,2594 +894,4,0,11.2126,10.5593,2594 +895,4,0,11.0040,10.3854,2604 +896,4,0,11.0553,10.4200,2594 +897,4,0,10.9178,10.3001,2594 +898,4,0,10.9665,10.3616,2594 +899,4,0,10.9585,10.2726,2601 +900,4,0,122.8183,42.1469,231707 +901,4,0,11.1186,10.6090,65901 +902,4,0,11.0775,10.4994,36886 +903,4,0,11.1044,10.5303,69404 +904,4,0,10.9394,10.4680,87864 +905,4,0,11.0160,10.3670,53700 +906,4,0,11.1717,10.6013,24415 +907,4,0,10.8586,10.3421,15407 +908,4,0,10.9719,10.4985,12151 +909,4,0,10.9663,10.4764,11449 +910,4,0,11.1557,10.4258,8599 +911,4,0,10.9426,10.4119,6107 +912,4,0,11.0632,10.5499,5132 +913,4,0,11.4939,10.8044,3880 +914,4,0,11.4401,10.5153,4001 +915,4,0,11.0742,10.4998,3860 +916,4,0,11.1964,10.7087,4045 +917,4,0,11.0003,10.3987,3955 +918,4,0,10.9881,10.3674,3721 +919,4,0,11.1726,10.5412,3748 +920,4,0,11.0654,10.5247,3386 +921,4,0,11.2323,10.3442,2761 +922,4,0,12.0526,11.2913,2750 +923,4,0,11.3779,10.6276,2836 +924,4,0,11.3808,10.4666,2977 +925,4,0,11.7046,10.5515,2960 +926,4,0,11.3850,10.4271,3010 +927,4,0,11.4821,10.6635,2978 +928,4,0,11.2610,10.6416,2889 +929,4,0,11.5363,10.6775,2914 +930,4,0,11.4267,10.6881,2847 +931,4,0,11.1174,10.5047,3111 +932,4,0,10.9563,10.4320,2714 +933,4,0,11.2978,10.7021,2843 +934,4,0,11.1928,10.4618,2633 +935,4,0,11.1763,10.4863,2659 +936,4,0,11.3434,10.6421,2696 +937,4,0,12.2989,10.4255,2728 +938,4,0,11.5873,10.6014,2772 +939,4,0,11.7273,10.8185,2740 +940,4,0,11.3844,10.5628,2809 +941,4,0,11.6706,10.8187,2679 +942,4,0,11.3150,10.5541,2865 +943,4,0,11.3473,10.6163,2612 +944,4,0,11.0297,10.3090,2626 +945,4,0,11.9634,10.6110,2693 +946,4,0,12.2877,10.2563,2708 +947,4,0,11.4963,10.8100,2765 +948,4,0,11.2375,10.6226,2645 +949,4,0,11.0491,10.3981,2733 +950,4,0,11.3334,10.6260,2667 +951,4,0,10.9924,10.5140,2647 +952,4,0,11.1665,10.2982,2659 +953,4,0,11.4759,10.2261,2757 +954,4,0,11.6891,10.3089,2656 +955,4,0,11.7185,9.7246,2594 +956,4,0,11.5872,10.0873,2603 +957,4,0,11.3441,10.8065,2605 +958,4,0,11.8878,10.7491,2610 +959,4,0,12.1630,9.9110,2641 +960,4,0,11.4753,10.0745,2637 +961,4,0,10.8565,10.2965,2691 +962,4,0,10.9142,10.3008,2620 +963,4,0,10.9572,10.4486,2614 +964,4,0,10.9725,10.3606,2666 +965,4,0,10.9780,10.2512,2613 +966,4,0,11.0858,10.3519,2624 +967,4,0,11.6728,10.3652,2612 +968,4,0,12.6726,9.9005,2687 +969,4,0,17.3371,15.7688,2622 +970,4,0,11.8674,10.4175,2623 +971,4,0,12.3179,10.0799,2647 +972,4,0,11.5002,10.1420,2645 +973,4,0,11.4367,10.7627,2643 +974,4,0,12.1110,10.2455,2635 +975,4,0,11.7868,9.8358,2718 +976,4,0,11.0356,10.3140,2602 +977,4,0,11.2501,10.4352,2605 +978,4,0,11.6008,10.2334,2612 +979,4,0,11.8027,10.1367,2607 +980,4,0,11.8907,10.0747,2630 +981,4,0,11.8856,9.6041,2617 +982,4,0,12.1246,10.2124,2661 +983,4,0,12.7862,7.7992,2606 +984,4,0,15.2055,13.7583,2609 +985,4,0,11.5630,10.6396,2612 +986,4,0,11.3147,10.5866,2632 +987,4,0,11.1403,10.3618,2606 +988,4,0,11.3130,10.6164,2610 +989,4,0,13.3680,11.8089,2652 +990,4,0,12.2744,10.1733,2594 +991,4,0,11.8507,10.2842,2609 +992,4,0,11.5557,10.7813,2598 +993,4,0,11.5545,10.7883,2613 +994,4,0,11.3580,10.7398,2618 +995,4,0,11.9638,10.5254,2604 +996,4,0,13.3218,10.9618,2677 +997,4,0,11.3812,10.7824,2620 +998,4,0,12.1718,10.1352,2594 +999,4,0,11.9256,10.1821,2594 +1000,4,0,11.8695,10.1900,2598 +1001,4,0,11.9095,10.0905,2609 +1002,4,0,16.1412,10.5800,2616 +1003,4,0,11.3803,10.5196,2630 +1004,4,0,11.3432,10.6983,2606 +1005,4,0,11.1695,10.4407,2604 +1006,4,0,11.2022,10.6893,2609 +1007,4,0,12.0923,10.3771,2610 +1008,4,0,12.2221,10.0536,2652 +1009,4,0,12.4732,10.6879,2600 +1010,4,0,11.3849,10.8384,2640 +1011,4,0,11.3951,10.6947,2594 +1012,4,0,11.8288,10.8492,2594 +1013,4,0,11.6568,10.2894,2600 +1014,4,0,11.4901,10.7632,2599 +1015,4,0,11.3643,10.6520,2607 +1016,4,0,12.7602,10.0363,2603 +1017,4,0,12.0795,10.0498,2623 +1018,4,0,12.2288,10.4929,2600 +1019,4,0,11.3523,10.7850,2610 +1020,4,0,11.4492,10.6694,2594 +1021,4,0,11.5487,10.7942,2594 +1022,4,0,12.2744,10.6158,2603 +1023,4,0,12.1996,9.6341,2602 +1024,4,0,11.8229,9.3035,2619 +1025,4,0,11.2347,10.2180,2600 +1026,4,0,11.1336,10.1744,2600 +1027,4,0,11.2158,10.4098,2594 +1028,4,0,11.3882,10.4945,2594 +1029,4,0,11.8265,10.3818,2599 +1030,4,0,10.9812,10.3048,2607 +1031,4,0,11.1462,10.4593,2605 +1032,4,0,11.9773,9.7967,2596 +1033,4,0,11.6477,10.0105,2594 +1034,4,0,13.0874,11.8342,2594 +1035,4,0,11.5680,10.0326,2594 +1036,4,0,10.9741,10.2502,2594 +1037,4,0,11.2652,10.5953,2594 +1038,4,0,11.9065,10.3253,2604 +1039,4,0,12.2039,10.4895,2594 +1040,4,0,12.6791,10.1202,2594 +1041,4,0,12.2640,10.2642,2599 +1042,4,0,12.2123,10.0813,2594 +1043,4,0,11.4733,10.5689,2594 +1044,4,0,11.3944,10.7044,2594 +1045,4,0,11.7975,10.1628,2604 +1046,4,0,12.1105,10.0571,2594 +1047,4,0,12.1479,10.1853,2594 +1048,4,0,11.8538,10.0472,2594 +1049,4,0,12.8081,11.2500,2601 +1050,4,0,123.4617,41.2295,231707 +1051,4,0,11.1080,10.6427,65901 +1052,4,0,10.9817,10.5310,36886 +1053,4,0,10.9427,10.4326,69404 +1054,4,0,10.8745,10.3077,87864 +1055,4,0,10.9145,10.3622,53700 +1056,4,0,11.1897,10.7822,24415 +1057,4,0,10.7578,10.2838,15407 +1058,4,0,10.8094,10.2615,12151 +1059,4,0,10.7665,10.2716,11449 +1060,4,0,10.8382,10.3519,8599 +1061,4,0,10.8170,10.3380,6107 +1062,4,0,10.8073,10.3009,5132 +1063,4,0,11.0216,10.4781,3880 +1064,4,0,11.0296,10.5154,4001 +1065,4,0,11.1508,10.4966,3860 +1066,4,0,12.1915,11.4220,4045 +1067,4,0,12.0293,10.3667,3955 +1068,4,0,11.9477,10.3018,3721 +1069,4,0,11.8395,10.2734,3748 +1070,4,0,11.8101,10.4163,3386 +1071,4,0,11.2804,10.5790,2761 +1072,4,0,13.7204,11.4428,2750 +1073,4,0,12.0428,10.3412,2836 +1074,4,0,12.0464,10.8842,2977 +1075,4,0,11.7513,10.5775,2960 +1076,4,0,12.2257,9.9983,3010 +1077,4,0,12.4700,10.8375,2978 +1078,4,0,11.9426,10.2904,2889 +1079,4,0,11.3490,10.4227,2914 +1080,4,0,11.1934,10.5135,2847 +1081,4,0,11.4976,10.7310,3111 +1082,4,0,11.2058,10.4479,2714 +1083,4,0,11.1781,10.4539,2843 +1084,4,0,11.7577,11.1666,2633 +1085,4,0,11.9655,10.4061,2659 +1086,4,0,12.1263,10.3535,2696 +1087,4,0,12.4332,10.2277,2728 +1088,4,0,11.9550,10.1807,2772 +1089,4,0,13.9259,12.3262,2740 +1090,4,0,11.8857,10.3957,2809 +1091,4,0,11.3483,10.4307,2679 +1092,4,0,12.0735,10.4216,2865 +1093,4,0,11.7524,10.1373,2612 +1094,4,0,11.7300,10.1459,2626 +1095,4,0,12.0289,9.9697,2693 +1096,4,0,11.8098,10.0360,2708 +1097,4,0,11.7826,10.0266,2765 +1098,4,0,11.8275,10.5390,2645 +1099,4,0,12.5151,10.6879,2733 +1100,4,0,12.3099,10.3290,2667 +1101,4,0,12.4815,10.7016,2647 +1102,4,0,12.3730,10.7238,2659 +1103,4,0,11.9435,10.4886,2757 +1104,4,0,12.3092,10.7474,2656 +1105,4,0,12.2502,10.0929,2594 +1106,4,0,12.2711,10.1275,2603 +1107,4,0,12.3467,10.3219,2605 +1108,4,0,14.1303,12.5706,2610 +1109,4,0,12.0623,10.6493,2641 +1110,4,0,14.3319,12.1260,2637 +1111,4,0,11.5119,10.5743,2691 +1112,4,0,11.4657,10.7244,2620 +1113,4,0,11.2887,10.5278,2614 +1114,4,0,11.3345,10.6892,2666 +1115,4,0,12.0693,10.1877,2613 +1116,4,0,13.4084,8.9610,2624 +1117,4,0,12.1448,10.2907,2612 +1118,4,0,12.3231,10.0091,2687 +1119,4,0,19.3315,9.6990,2622 +1120,4,0,11.3826,10.5670,2623 +1121,4,0,11.3576,10.6314,2647 +1122,4,0,11.4415,10.6976,2645 +1123,4,0,11.2175,10.6520,2643 +1124,4,0,11.5848,10.4564,2635 +1125,4,0,11.3578,10.5846,2718 +1126,4,0,11.3399,10.5837,2602 +1127,4,0,12.0736,10.1911,2605 +1128,4,0,12.0783,10.1700,2612 +1129,4,0,12.3164,10.4214,2607 +1130,4,0,11.3759,10.6242,2630 +1131,4,0,11.3145,10.5868,2617 +1132,4,0,11.8289,10.3083,2661 +1133,4,0,11.8576,9.9593,2606 +1134,4,0,11.4642,10.5135,2609 +1135,4,0,12.6212,10.7203,2612 +1136,4,0,11.1723,10.5701,2632 +1137,4,0,11.4522,10.6845,2606 +1138,4,0,11.1813,10.4534,2610 +1139,4,0,11.9035,11.0704,2652 +1140,4,0,11.9788,10.1759,2594 +1141,4,0,12.0785,10.4842,2609 +1142,4,0,12.2729,10.1241,2598 +1143,4,0,11.9957,10.1221,2613 +1144,4,0,11.9916,10.6040,2618 +1145,4,0,11.9958,9.9860,2604 +1146,4,0,12.1014,10.1205,2677 +1147,4,0,12.1798,10.0823,2620 +1148,4,0,11.8498,9.8877,2594 +1149,4,0,11.9062,10.2480,2594 +1150,4,0,11.4407,10.4443,2598 +1151,4,0,12.0408,10.2997,2609 +1152,4,0,12.1305,10.0781,2616 +1153,4,0,12.0903,9.9446,2630 +1154,4,0,12.0731,10.0462,2606 +1155,4,0,12.0004,9.9470,2604 +1156,4,0,11.9869,9.9568,2609 +1157,4,0,12.0467,10.3362,2610 +1158,4,0,12.3823,10.0596,2652 +1159,4,0,11.9399,10.2438,2600 +1160,4,0,14.3733,10.0202,2640 +1161,4,0,11.6685,10.2197,2594 +1162,4,0,12.2572,10.3828,2594 +1163,4,0,12.3925,10.4833,2600 +1164,4,0,12.0180,10.2417,2599 +1165,4,0,12.2490,9.1821,2607 +1166,4,0,12.0465,10.1109,2603 +1167,4,0,12.2536,10.2135,2623 +1168,4,0,11.9454,10.4473,2600 +1169,4,0,12.5928,10.6903,2610 +1170,4,0,12.8222,10.8474,2594 +1171,4,0,11.9870,10.1701,2594 +1172,4,0,12.1645,10.4121,2603 +1173,4,0,12.7535,9.9792,2602 +1174,4,0,11.4467,10.6631,2619 +1175,4,0,11.3745,10.5299,2600 +1176,4,0,11.3556,10.8622,2600 +1177,4,0,12.0019,11.2416,2594 +1178,4,0,12.0880,10.0553,2594 +1179,4,0,11.9126,10.3770,2599 +1180,4,0,12.2765,10.3958,2607 +1181,4,0,12.5229,10.1305,2605 +1182,4,0,12.4761,9.9698,2596 +1183,4,0,12.1112,10.5947,2594 +1184,4,0,12.0352,10.3804,2594 +1185,4,0,12.0937,9.9665,2594 +1186,4,0,11.9628,10.1232,2594 +1187,4,0,12.2242,10.2304,2594 +1188,4,0,11.9502,10.0028,2604 +1189,4,0,11.9633,10.2347,2594 +1190,4,0,12.0639,10.1602,2594 +1191,4,0,13.5297,11.3350,2599 +1192,4,0,12.4276,10.3731,2594 +1193,4,0,11.9940,10.2729,2594 +1194,4,0,11.9831,10.1280,2594 +1195,4,0,11.9857,10.3638,2604 +1196,4,0,12.1033,9.9096,2594 +1197,4,0,13.3538,11.4456,2594 +1198,4,0,13.4577,8.2483,2594 +1199,4,0,11.7245,10.3570,2601 +1200,4,0,118.4992,33.8966,231707 +1201,4,0,10.9756,10.3917,65901 +1202,4,0,11.0015,10.4674,36886 +1203,4,0,11.0955,10.6032,69404 +1204,4,0,11.0410,10.5245,87864 +1205,4,0,11.0623,10.3998,53700 +1206,4,0,11.0602,10.5564,24415 +1207,4,0,11.0977,10.5002,15407 +1208,4,0,10.8952,10.3659,12151 +1209,4,0,10.8908,10.3950,11449 +1210,4,0,10.8916,10.3946,8599 +1211,4,0,10.8645,10.4141,6107 +1212,4,0,10.9149,10.3480,5132 +1213,4,0,11.0479,10.5026,3880 +1214,4,0,11.2114,10.5878,4001 +1215,4,0,11.0237,10.4610,3860 +1216,4,0,11.1184,10.3891,4045 +1217,4,0,11.2866,10.5874,3955 +1218,4,0,11.8458,10.6572,3721 +1219,4,0,13.7940,12.4827,3748 +1220,4,0,11.8170,10.4076,3386 +1221,4,0,11.5205,10.7961,2761 +1222,4,0,11.8663,10.7729,2750 +1223,4,0,11.3979,10.6476,2836 +1224,4,0,11.3155,10.6591,2977 +1225,4,0,11.3338,10.7836,2960 +1226,4,0,11.0255,10.4711,3010 +1227,4,0,11.5501,10.7843,2978 +1228,4,0,12.1162,10.5050,2889 +1229,4,0,12.3780,10.4350,2914 +1230,4,0,15.5693,13.9925,2847 +1231,4,0,11.4626,10.7864,3111 +1232,4,0,11.3609,10.7858,2714 +1233,4,0,11.4566,10.6251,2843 +1234,4,0,11.8484,11.1711,2633 +1235,4,0,11.9992,10.1989,2659 +1236,4,0,12.5454,9.4934,2696 +1237,4,0,11.5625,10.8125,2728 +1238,4,0,11.5646,10.8335,2772 +1239,4,0,11.8606,11.0576,2740 +1240,4,0,12.3746,10.7675,2809 +1241,4,0,14.3342,12.1568,2679 +1242,4,0,15.8411,10.8285,2865 +1243,4,0,11.3465,10.5418,2612 +1244,4,0,11.9657,11.2849,2626 +1245,4,0,11.9965,10.0726,2693 +1246,4,0,11.2863,10.4744,2708 +1247,4,0,11.3681,10.8005,2765 +1248,4,0,12.8321,10.3075,2645 +1249,4,0,11.6590,10.3927,2733 +1250,4,0,12.3380,10.5042,2667 +1251,4,0,11.4568,10.8558,2647 +1252,4,0,11.4275,10.6557,2659 +1253,4,0,11.3005,10.6488,2757 +1254,4,0,11.9246,10.4950,2656 +1255,4,0,11.3340,10.5713,2594 +1256,4,0,12.1806,10.3582,2603 +1257,4,0,12.1802,10.4678,2605 +1258,4,0,12.2103,10.7395,2610 +1259,4,0,12.1318,10.0567,2641 +1260,4,0,12.2662,9.9511,2637 +1261,4,0,12.3917,10.9396,2691 +1262,4,0,12.2167,10.5320,2620 +1263,4,0,16.3438,10.5962,2614 +1264,4,0,11.4194,10.5620,2666 +1265,4,0,11.3962,10.6690,2613 +1266,4,0,11.2911,10.6159,2624 +1267,4,0,11.2348,10.6168,2612 +1268,4,0,11.9508,10.0915,2687 +1269,4,0,12.2311,11.2717,2622 +1270,4,0,12.3195,10.3055,2623 +1271,4,0,11.3090,10.3905,2647 +1272,4,0,11.7251,10.5462,2645 +1273,4,0,12.1608,10.3091,2643 +1274,4,0,11.8257,10.1281,2635 +1275,4,0,11.0361,10.3545,2718 +1276,4,0,11.0012,10.4946,2602 +1277,4,0,11.5041,10.0375,2605 +1278,4,0,10.9008,10.3265,2612 +1279,4,0,11.0036,10.3212,2607 +1280,4,0,11.2813,10.4332,2630 +1281,4,0,11.1297,10.4524,2617 +1282,4,0,11.3787,10.6143,2661 +1283,4,0,11.4367,9.6460,2606 +1284,4,0,11.1184,10.5028,2609 +1285,4,0,11.1642,10.4379,2612 +1286,4,0,11.2263,10.3237,2632 +1287,4,0,11.0109,10.3748,2606 +1288,4,0,12.6685,11.9352,2610 +1289,4,0,11.1779,10.3735,2652 +1290,4,0,11.4889,10.8429,2594 +1291,4,0,11.5699,10.1890,2609 +1292,4,0,11.7331,9.6973,2598 +1293,4,0,12.2967,10.1988,2613 +1294,4,0,14.6945,10.3257,2618 +1295,4,0,11.1089,10.4631,2604 +1296,4,0,11.4895,10.6562,2677 +1297,4,0,11.0047,10.3050,2620 +1298,4,0,11.7317,10.2780,2594 +1299,4,0,16.2239,14.3295,2594 +1300,4,0,11.2175,10.5958,2598 +1301,4,0,11.5065,10.6510,2609 +1302,4,0,11.5502,10.2747,2616 +1303,4,0,11.8141,10.2698,2630 +1304,4,0,12.9128,9.7919,2606 +1305,4,0,13.3110,11.5256,2604 +1306,4,0,12.3264,10.4280,2609 +1307,4,0,12.3831,10.4781,2610 +1308,4,0,12.3795,10.4295,2652 +1309,4,0,12.3267,10.2485,2600 +1310,4,0,11.9664,10.5105,2640 +1311,4,0,12.0777,10.3101,2594 +1312,4,0,12.0465,10.0113,2594 +1313,4,0,11.7107,10.0715,2600 +1314,4,0,11.2297,10.3562,2599 +1315,4,0,11.3803,10.4473,2607 +1316,4,0,11.2319,10.4920,2603 +1317,4,0,10.9200,10.3460,2623 +1318,4,0,11.2394,10.5545,2600 +1319,4,0,11.0172,10.3644,2610 +1320,4,0,11.1639,10.4101,2594 +1321,4,0,11.2105,10.4905,2594 +1322,4,0,10.9323,10.3619,2603 +1323,4,0,11.1253,10.4503,2602 +1324,4,0,10.9268,10.3181,2619 +1325,4,0,11.4370,10.7070,2600 +1326,4,0,12.0363,10.6521,2600 +1327,4,0,11.3880,10.5558,2594 +1328,4,0,11.2010,10.5744,2594 +1329,4,0,18.2645,11.9681,2599 +1330,4,0,11.5387,10.8195,2607 +1331,4,0,12.1034,10.8874,2605 +1332,4,0,15.5744,10.2780,2596 +1333,4,0,11.0000,10.4280,2594 +1334,4,0,10.8549,10.4062,2594 +1335,4,0,11.1677,10.5518,2594 +1336,4,0,10.9294,10.4939,2594 +1337,4,0,11.1914,10.6158,2594 +1338,4,0,11.0727,10.6645,2604 +1339,4,0,11.8078,10.0692,2594 +1340,4,0,11.5635,10.0984,2594 +1341,4,0,11.8402,10.0965,2599 +1342,4,0,11.0869,10.2000,2594 +1343,4,0,11.1487,10.3229,2594 +1344,4,0,11.0123,10.3092,2594 +1345,4,0,10.9887,10.2344,2604 +1346,4,0,12.0917,10.4889,2594 +1347,4,0,12.0396,10.0000,2594 +1348,4,0,11.6943,10.1593,2594 +1349,4,0,11.3513,10.6377,2601 +1350,4,0,123.0683,41.5945,231707 +1351,4,0,10.9641,10.4848,65901 +1352,4,0,11.0030,10.5100,36886 +1353,4,0,10.9633,10.4874,69404 +1354,4,0,10.7892,10.3238,87864 +1355,4,0,10.9558,10.4715,53700 +1356,4,0,11.3121,10.5280,24415 +1357,4,0,11.1423,10.4987,15407 +1358,4,0,10.9793,10.4580,12151 +1359,4,0,11.0224,10.5401,11449 +1360,4,0,11.1986,10.6550,8599 +1361,4,0,11.1165,10.4575,6107 +1362,4,0,11.1954,10.5572,5132 +1363,4,0,11.1191,10.5237,3880 +1364,4,0,11.0058,10.4160,4001 +1365,4,0,11.0472,10.5466,3860 +1366,4,0,11.1585,10.5863,4045 +1367,4,0,11.3285,10.6953,3955 +1368,4,0,11.2266,10.3465,3721 +1369,4,0,11.0645,10.4893,3748 +1370,4,0,11.0807,10.5263,3386 +1371,4,0,11.2119,10.6110,2761 +1372,4,0,11.1016,10.5482,2750 +1373,4,0,11.1330,10.5040,2836 +1374,4,0,11.1894,10.5450,2977 +1375,4,0,11.2930,10.5625,2960 +1376,4,0,11.1932,10.7045,3010 +1377,4,0,11.4951,10.6858,2978 +1378,4,0,11.3799,10.6468,2889 +1379,4,0,11.3451,10.7010,2914 +1380,4,0,11.5323,10.8600,2847 +1381,4,0,11.5483,10.6437,3111 +1382,4,0,11.4841,10.7586,2714 +1383,4,0,11.2860,10.5947,2843 +1384,4,0,11.4460,10.5913,2633 +1385,4,0,11.7870,10.4633,2659 +1386,4,0,12.2743,10.1042,2696 +1387,4,0,11.8493,10.0256,2728 +1388,4,0,11.5387,10.7607,2772 +1389,4,0,11.5234,10.8521,2740 +1390,4,0,11.4210,10.5763,2809 +1391,4,0,10.9883,10.3800,2679 +1392,4,0,10.9991,10.4692,2865 +1393,4,0,11.0633,10.4413,2612 +1394,4,0,11.4697,10.7172,2626 +1395,4,0,11.6160,10.2306,2693 +1396,4,0,11.3808,10.4288,2708 +1397,4,0,11.9675,9.8377,2765 +1398,4,0,12.0835,10.0195,2645 +1399,4,0,11.8530,10.0100,2733 +1400,4,0,16.7657,10.8950,2667 +1401,4,0,11.4358,10.5893,2647 +1402,4,0,11.4930,10.8320,2659 +1403,4,0,11.3057,10.5946,2757 +1404,4,0,11.3053,10.5286,2656 +1405,4,0,13.8325,13.1755,2594 +1406,4,0,11.4373,10.7213,2603 +1407,4,0,11.4263,10.6958,2605 +1408,4,0,11.4672,10.7323,2610 +1409,4,0,12.0163,10.2619,2641 +1410,4,0,12.1700,10.4313,2637 +1411,4,0,12.5041,10.7867,2691 +1412,4,0,15.0328,13.5310,2620 +1413,4,0,11.4884,10.6754,2614 +1414,4,0,11.5227,10.6064,2666 +1415,4,0,11.4834,10.7516,2613 +1416,4,0,11.1684,10.4998,2624 +1417,4,0,11.7190,11.2706,2612 +1418,4,0,12.4340,10.4207,2687 +1419,4,0,12.0485,10.1125,2622 +1420,4,0,11.6593,10.9350,2623 +1421,4,0,11.4480,10.7509,2647 +1422,4,0,11.8786,11.2532,2645 +1423,4,0,11.2137,10.4924,2643 +1424,4,0,11.0687,10.4770,2635 +1425,4,0,12.0929,10.4201,2718 +1426,4,0,11.9442,10.0079,2602 +1427,4,0,16.5574,11.7950,2605 +1428,4,0,12.0574,10.3664,2612 +1429,4,0,11.7742,10.0773,2607 +1430,4,0,12.4757,10.3683,2630 +1431,4,0,11.6846,10.3791,2617 +1432,4,0,11.7323,10.1942,2661 +1433,4,0,11.9554,9.9455,2606 +1434,4,0,11.6731,10.0489,2609 +1435,4,0,12.0233,10.8667,2612 +1436,4,0,11.7156,9.7931,2632 +1437,4,0,12.4100,10.3865,2606 +1438,4,0,11.9427,7.9383,2610 +1439,4,0,11.2933,10.4715,2652 +1440,4,0,11.4439,10.6146,2594 +1441,4,0,11.1082,10.4665,2609 +1442,4,0,11.0452,10.4074,2598 +1443,4,0,11.0055,10.4455,2613 +1444,4,0,11.0489,10.3164,2618 +1445,4,0,11.2040,10.7095,2604 +1446,4,0,11.3289,10.2842,2677 +1447,4,0,11.4205,10.6710,2620 +1448,4,0,11.1846,10.6793,2594 +1449,4,0,12.6913,11.1547,2594 +1450,4,0,13.5664,11.6636,2598 +1451,4,0,12.1755,10.5111,2609 +1452,4,0,12.6109,9.9305,2616 +1453,4,0,11.3050,10.5313,2630 +1454,4,0,11.5498,10.7944,2606 +1455,4,0,11.7585,10.9029,2604 +1456,4,0,11.6427,9.8371,2609 +1457,4,0,11.3182,10.6501,2610 +1458,4,0,11.4892,10.6899,2652 +1459,4,0,10.9775,10.3093,2600 +1460,4,0,11.5508,10.1961,2640 +1461,4,0,12.0691,9.9307,2594 +1462,4,0,11.0502,10.3332,2594 +1463,4,0,11.0489,10.4919,2600 +1464,4,0,11.0374,10.3990,2599 +1465,4,0,10.8912,10.2960,2607 +1466,4,0,11.0355,10.4616,2603 +1467,4,0,10.9927,10.4122,2623 +1468,4,0,10.9923,10.4054,2600 +1469,4,0,10.9069,10.3643,2610 +1470,4,0,10.8238,10.3217,2594 +1471,4,0,10.8228,10.3308,2594 +1472,4,0,11.0563,10.3652,2603 +1473,4,0,11.0188,10.3663,2602 +1474,4,0,11.0582,10.3514,2619 +1475,4,0,10.9497,10.4217,2600 +1476,4,0,10.9624,10.3757,2600 +1477,4,0,11.0032,10.4448,2594 +1478,4,0,11.1319,10.4446,2594 +1479,4,0,11.0341,10.4790,2599 +1480,4,0,11.0386,10.3670,2607 +1481,4,0,10.9838,10.3936,2605 +1482,4,0,10.9752,10.4489,2596 +1483,4,0,11.0114,10.3707,2594 +1484,4,0,11.0720,10.4151,2594 +1485,4,0,11.0526,10.4648,2594 +1486,4,0,11.2144,10.4633,2594 +1487,4,0,11.1257,10.4418,2594 +1488,4,0,10.9367,10.3472,2604 +1489,4,0,11.0077,10.4367,2594 +1490,4,0,10.9480,10.4944,2594 +1491,4,0,11.1595,10.5078,2599 +1492,4,0,11.2614,10.5121,2594 +1493,4,0,11.2413,10.5064,2594 +1494,4,0,11.3171,10.6058,2594 +1495,4,0,11.0498,10.4141,2604 +1496,4,0,11.0410,10.4847,2594 +1497,4,0,10.9638,10.4709,2594 +1498,4,0,10.9083,10.3368,2594 +1499,4,0,10.9806,10.4406,2601 +1500,4,0,127.3571,44.8584,231707 +1501,4,0,11.1954,10.5241,65901 +1502,4,0,11.0274,10.4323,36886 +1503,4,0,11.1177,10.6060,69404 +1504,4,0,11.1016,10.4320,87864 +1505,4,0,11.1040,10.5547,53700 +1506,4,0,11.0124,10.4818,24415 +1507,4,0,11.0958,10.3752,15407 +1508,4,0,11.0901,10.4631,12151 +1509,4,0,11.0776,10.5586,11449 +1510,4,0,10.9066,10.3622,8599 +1511,4,0,10.8570,10.3853,6107 +1512,4,0,11.2516,10.3912,5132 +1513,4,0,10.9671,10.3626,3880 +1514,4,0,10.8935,10.3550,4001 +1515,4,0,11.0892,10.5510,3860 +1516,4,0,10.8867,10.4009,4045 +1517,4,0,11.0377,10.4927,3955 +1518,4,0,11.0875,10.4965,3721 +1519,4,0,11.2350,10.6689,3748 +1520,4,0,11.1858,10.5668,3386 +1521,4,0,11.2869,10.6905,2761 +1522,4,0,11.2440,10.5437,2750 +1523,4,0,11.3302,10.7786,2836 +1524,4,0,11.3611,10.8052,2977 +1525,4,0,11.2912,10.6952,2960 +1526,4,0,11.4394,10.6889,3010 +1527,4,0,11.4155,10.5850,2978 +1528,4,0,11.2489,10.5186,2889 +1529,4,0,11.1499,10.5192,2914 +1530,4,0,11.4211,10.6825,2847 +1531,4,0,11.6785,10.8931,3111 +1532,4,0,11.4823,10.7034,2714 +1533,4,0,11.5524,10.6393,2843 +1534,4,0,11.2793,10.4537,2633 +1535,4,0,11.9075,10.3308,2659 +1536,4,0,13.6088,9.9816,2696 +1537,4,0,12.1968,10.0185,2728 +1538,4,0,12.7384,10.8328,2772 +1539,4,0,12.1275,10.7957,2740 +1540,4,0,13.3177,11.3387,2809 +1541,4,0,12.0536,9.1687,2679 +1542,4,0,11.6162,10.6602,2865 +1543,4,0,11.5465,10.8233,2612 +1544,4,0,11.4247,10.8775,2626 +1545,4,0,11.7154,10.8387,2693 +1546,4,0,11.4231,10.6706,2708 +1547,4,0,11.4664,10.7180,2765 +1548,4,0,11.1821,10.5517,2645 +1549,4,0,12.1663,10.3371,2733 +1550,4,0,12.2480,10.1748,2667 +1551,4,0,12.3221,10.1720,2647 +1552,4,0,11.2312,10.5845,2659 +1553,4,0,11.0821,10.5719,2757 +1554,4,0,11.2008,10.3887,2656 +1555,4,0,11.3393,10.4474,2594 +1556,4,0,18.8647,17.0186,2603 +1557,4,0,11.3467,10.8520,2605 +1558,4,0,11.2218,10.6253,2610 +1559,4,0,11.2296,10.6438,2641 +1560,4,0,11.3210,10.4946,2637 +1561,4,0,10.9617,10.5525,2691 +1562,4,0,10.9977,10.2897,2620 +1563,4,0,11.8188,10.5783,2614 +1564,4,0,11.9478,8.5066,2666 +1565,4,0,11.3866,10.0930,2613 +1566,4,0,11.3260,10.6943,2624 +1567,4,0,11.0077,10.2895,2612 +1568,4,0,11.4011,10.8425,2687 +1569,4,0,11.9856,9.9410,2622 +1570,4,0,11.8893,10.4416,2623 +1571,4,0,11.3692,10.6601,2647 +1572,4,0,11.1413,10.4285,2645 +1573,4,0,11.8604,10.4669,2643 +1574,4,0,11.8727,10.0335,2635 +1575,4,0,11.9681,10.1760,2718 +1576,4,0,19.4005,11.5569,2602 +1577,4,0,11.0880,10.5449,2605 +1578,4,0,11.0567,10.3983,2612 +1579,4,0,11.8727,10.5104,2607 +1580,4,0,12.0696,10.0442,2630 +1581,4,0,12.1071,10.1100,2617 +1582,4,0,11.7410,10.2247,2661 +1583,4,0,13.8204,11.8690,2606 +1584,4,0,12.4314,10.0412,2609 +1585,4,0,11.8335,10.6670,2612 +1586,4,0,12.2282,10.4518,2632 +1587,4,0,11.8905,10.2015,2606 +1588,4,0,11.8785,10.4754,2610 +1589,4,0,12.0050,10.0553,2652 +1590,4,0,12.1011,10.2592,2594 +1591,4,0,11.9851,10.0254,2609 +1592,4,0,12.0505,10.3383,2598 +1593,4,0,11.9309,9.8833,2613 +1594,4,0,11.4468,10.5775,2618 +1595,4,0,11.2899,10.6776,2604 +1596,4,0,12.8301,11.9370,2677 +1597,4,0,10.9528,10.4900,2620 +1598,4,0,11.7131,10.0559,2594 +1599,4,0,11.6582,10.4273,2594 +1600,4,0,11.6841,10.1088,2598 +1601,4,0,12.1457,10.4106,2609 +1602,4,0,11.1073,10.3197,2616 +1603,4,0,11.2125,10.4982,2630 +1604,4,0,11.1895,10.5371,2606 +1605,4,0,11.9719,10.4322,2604 +1606,4,0,12.5767,9.1934,2609 +1607,4,0,11.6523,10.0248,2610 +1608,4,0,12.0683,10.4816,2652 +1609,4,0,11.7184,10.5365,2600 +1610,4,0,11.7950,10.8877,2640 +1611,4,0,11.3223,10.6973,2594 +1612,4,0,11.9044,10.4550,2594 +1613,4,0,12.6894,9.7193,2600 +1614,4,0,12.4195,9.9527,2599 +1615,4,0,12.0152,10.5992,2607 +1616,4,0,12.2484,10.2937,2603 +1617,4,0,12.5366,10.3178,2623 +1618,4,0,12.2314,9.9304,2600 +1619,4,0,11.0974,10.5129,2610 +1620,4,0,11.7231,10.5228,2594 +1621,4,0,11.7363,9.9871,2594 +1622,4,0,11.7142,10.0965,2603 +1623,4,0,12.2792,10.4058,2602 +1624,4,0,11.9027,10.3231,2619 +1625,4,0,12.1692,10.6461,2600 +1626,4,0,12.4076,10.2920,2600 +1627,4,0,11.9520,10.0276,2594 +1628,4,0,11.8480,10.2351,2594 +1629,4,0,12.4206,10.6113,2599 +1630,4,0,12.4219,10.5002,2607 +1631,4,0,13.9877,10.2285,2605 +1632,4,0,11.1922,10.5823,2596 +1633,4,0,11.3980,10.6692,2594 +1634,4,0,11.4111,10.6541,2594 +1635,4,0,11.9625,10.6642,2594 +1636,4,0,12.3710,10.2894,2594 +1637,4,0,12.4883,10.6860,2594 +1638,4,0,11.8868,10.5062,2604 +1639,4,0,12.4874,10.6231,2594 +1640,4,0,11.8088,7.9997,2594 +1641,4,0,11.4888,10.7239,2599 +1642,4,0,11.3154,10.6683,2594 +1643,4,0,11.5614,10.8038,2594 +1644,4,0,11.0085,10.4442,2594 +1645,4,0,11.3698,10.6540,2604 +1646,4,0,12.2627,10.7055,2594 +1647,4,0,11.7931,10.0457,2594 +1648,4,0,12.1040,8.1562,2594 +1649,4,0,12.1885,10.2603,2601 +1650,4,0,125.0429,42.1028,231707 +1651,4,0,11.1152,10.5333,65901 +1652,4,0,10.9541,10.5330,36886 +1653,4,0,11.0408,10.5856,69404 +1654,4,0,11.0138,10.5121,87864 +1655,4,0,10.9047,10.4258,53700 +1656,4,0,10.9084,10.4237,24415 +1657,4,0,10.9516,10.5011,15407 +1658,4,0,11.1190,10.5288,12151 +1659,4,0,10.9813,10.5068,11449 +1660,4,0,11.0195,10.4595,8599 +1661,4,0,11.2734,10.6514,6107 +1662,4,0,11.3480,10.6584,5132 +1663,4,0,11.1455,10.6213,3880 +1664,4,0,11.1170,10.6257,4001 +1665,4,0,11.1152,10.5589,3860 +1666,4,0,11.1630,10.6094,4045 +1667,4,0,11.2357,10.7954,3955 +1668,4,0,11.5128,10.7261,3721 +1669,4,0,11.4013,10.6892,3748 +1670,4,0,11.3234,10.6661,3386 +1671,4,0,11.3877,10.5367,2761 +1672,4,0,10.9984,10.4555,2750 +1673,4,0,11.0806,10.5535,2836 +1674,4,0,11.2332,10.5666,2977 +1675,4,0,11.0496,10.6072,2960 +1676,4,0,11.0929,10.5823,3010 +1677,4,0,11.9875,11.2172,2978 +1678,4,0,13.4433,10.3337,2889 +1679,4,0,11.5638,10.7331,2914 +1680,4,0,11.3350,10.7614,2847 +1681,4,0,11.2439,10.6278,3111 +1682,4,0,11.2367,10.6627,2714 +1683,4,0,11.3594,10.7647,2843 +1684,4,0,11.5589,10.6915,2633 +1685,4,0,11.2669,10.6760,2659 +1686,4,0,11.4365,10.7551,2696 +1687,4,0,11.5160,10.6614,2728 +1688,4,0,11.6133,10.8938,2772 +1689,4,0,11.2797,10.6440,2740 +1690,4,0,11.5132,10.5750,2809 +1691,4,0,12.7666,11.2807,2679 +1692,4,0,12.6867,9.5955,2865 +1693,4,0,11.6559,10.8335,2612 +1694,4,0,11.3532,10.6676,2626 +1695,4,0,11.8321,10.3503,2693 +1696,4,0,11.4947,10.6512,2708 +1697,4,0,11.3128,10.4678,2765 +1698,4,0,11.2323,10.4853,2645 +1699,4,0,11.5610,10.7284,2733 +1700,4,0,11.0625,10.4158,2667 +1701,4,0,10.8997,10.4825,2647 +1702,4,0,10.9392,10.4615,2659 +1703,4,0,10.9254,10.2967,2757 +1704,4,0,10.9475,10.3543,2656 +1705,4,0,11.0223,10.3789,2594 +1706,4,0,11.2757,10.6755,2603 +1707,4,0,10.9634,10.4868,2605 +1708,4,0,11.1751,10.6145,2610 +1709,4,0,10.8753,10.3697,2641 +1710,4,0,11.0928,10.4110,2637 +1711,4,0,10.9406,10.3238,2691 +1712,4,0,11.1950,10.5065,2620 +1713,4,0,11.5051,10.7813,2614 +1714,4,0,11.1267,10.4315,2666 +1715,4,0,11.1781,10.6078,2613 +1716,4,0,11.5512,10.6487,2624 +1717,4,0,11.3668,10.6301,2612 +1718,4,0,11.2439,10.5176,2687 +1719,4,0,11.7796,10.8820,2622 +1720,4,0,20.8500,19.2758,2623 +1721,4,0,12.0945,10.0448,2647 +1722,4,0,11.2078,10.5890,2645 +1723,4,0,11.9072,10.5225,2643 +1724,4,0,12.0520,10.4134,2635 +1725,4,0,13.1977,11.5184,2718 +1726,4,0,12.2510,10.2706,2602 +1727,4,0,11.8371,10.1865,2605 +1728,4,0,11.7530,9.9922,2612 +1729,4,0,11.2571,10.1746,2607 +1730,4,0,11.6325,10.3023,2630 +1731,4,0,12.1924,10.0535,2617 +1732,4,0,12.0596,10.2031,2661 +1733,4,0,12.0094,10.0911,2606 +1734,4,0,11.4767,10.5141,2609 +1735,4,0,12.2234,10.5526,2612 +1736,4,0,15.5602,11.9573,2632 +1737,4,0,11.8885,10.6827,2606 +1738,4,0,12.3580,10.4277,2610 +1739,4,0,12.0794,10.2184,2652 +1740,4,0,12.1176,10.3628,2594 +1741,4,0,12.3266,10.5019,2609 +1742,4,0,11.6368,10.2103,2598 +1743,4,0,12.0379,10.5856,2613 +1744,4,0,12.0042,10.1487,2618 +1745,4,0,11.8794,10.1261,2604 +1746,4,0,12.0592,10.3065,2677 +1747,4,0,11.8841,10.3105,2620 +1748,4,0,12.5968,11.0688,2594 +1749,4,0,13.6867,12.0696,2594 +1750,4,0,11.8293,10.5642,2598 +1751,4,0,12.7960,10.6760,2609 +1752,4,0,12.2277,10.3486,2616 +1753,4,0,13.3130,10.4557,2630 +1754,4,0,11.4907,10.5657,2606 +1755,4,0,11.4537,10.6967,2604 +1756,4,0,11.2751,10.6234,2609 +1757,4,0,11.1559,10.6446,2610 +1758,4,0,11.8330,10.4842,2652 +1759,4,0,12.1188,9.9850,2600 +1760,4,0,12.2292,9.9243,2640 +1761,4,0,11.4395,10.6633,2594 +1762,4,0,11.4324,10.6401,2594 +1763,4,0,11.7231,10.9545,2600 +1764,4,0,11.9681,9.8974,2599 +1765,4,0,11.8948,9.8950,2607 +1766,4,0,12.2944,10.3087,2603 +1767,4,0,12.0988,10.2737,2623 +1768,4,0,12.2155,10.6464,2600 +1769,4,0,13.8457,10.1103,2610 +1770,4,0,10.8940,10.3224,2594 +1771,4,0,10.9967,10.4462,2594 +1772,4,0,11.2872,10.5068,2603 +1773,4,0,11.1173,10.4366,2602 +1774,4,0,11.0517,10.4756,2619 +1775,4,0,11.2485,10.5186,2600 +1776,4,0,11.8497,10.0092,2600 +1777,4,0,11.6599,10.0935,2594 +1778,4,0,12.3635,6.6937,2594 +1779,4,0,11.4543,10.6024,2599 +1780,4,0,11.4264,10.6777,2607 +1781,4,0,11.3662,10.6254,2605 +1782,4,0,11.4600,10.7751,2596 +1783,4,0,11.4972,10.8227,2594 +1784,4,0,11.3290,10.5361,2594 +1785,4,0,10.9793,10.3038,2594 +1786,4,0,12.1212,10.6380,2594 +1787,4,0,12.1157,9.9181,2594 +1788,4,0,11.8390,10.4079,2604 +1789,4,0,11.9767,9.9505,2594 +1790,4,0,11.6375,9.9872,2594 +1791,4,0,12.0266,10.1038,2599 +1792,4,0,11.6877,9.9802,2594 +1793,4,0,11.8248,10.1092,2594 +1794,4,0,11.3915,10.4943,2594 +1795,4,0,11.3727,10.5516,2604 +1796,4,0,11.4591,10.6900,2594 +1797,4,0,11.1525,10.4453,2594 +1798,4,0,11.0848,10.6179,2594 +1799,4,0,13.7085,12.9083,2601 diff --git a/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md new file mode 100644 index 0000000..94d5bce --- /dev/null +++ b/benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md @@ -0,0 +1,25 @@ +# Tiled 5K60 Reset Sustain 30s + +| Metric | Value | +|---|---:| +| frames_encoded | 1800 | +| elapsed_seconds | 29.999 | +| effective_logical_fps | 60.002 | +| avg_encode_latency_ms | 12.374 | +| p95_encode_latency_ms | 12.920 | +| max_encode_latency_ms | 132.944 | +| avg_steady_encode_latency_ms | 12.339 | +| p95_steady_encode_latency_ms | 12.920 | +| max_steady_encode_latency_ms | 132.944 | +| avg_steady_max_tile_encode_latency_ms | 10.697 | +| p95_steady_max_tile_encode_latency_ms | 11.026 | +| payload_bytes | 12023160 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.028 | 12.197 | 122.377 | +| 300-599 | 12.552 | 13.271 | 128.306 | +| 600-899 | 12.207 | 12.665 | 132.944 | +| 900-1199 | 12.578 | 13.354 | 123.462 | +| 1200-1499 | 12.373 | 13.566 | 123.068 | +| 1500-1799 | 12.507 | 13.198 | 127.357 | diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.csv new file mode 100644 index 0000000..6adefec --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.csv @@ -0,0 +1,4801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.5258,24.8315,0.0262,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8607,24.0555,0.0160,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.9403,25.1953,0.0178,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,3.1881,25.9814,0.0149,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.5258,5.9116,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8607,5.6963,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.9403,10.6213,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,3.1881,10.6178,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.5258,5.8220,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8607,5.6710,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.9403,10.5444,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,3.1881,10.5403,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.5258,5.6845,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8607,5.5588,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.9403,10.6265,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,3.1881,10.5891,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.5258,5.7997,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8607,5.6212,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.9403,10.5610,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,3.1881,10.5434,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.5258,5.7315,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8607,5.5628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.9403,10.4314,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,3.1881,10.4069,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.5258,5.6574,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8607,5.4781,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.9403,10.3347,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,3.1881,10.2839,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.5258,5.8047,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8607,5.6586,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.9403,10.5019,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,3.1881,10.4578,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.5258,5.8723,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8607,5.6961,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.9403,10.4342,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,3.1881,10.4115,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.5258,5.7145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8607,5.4850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.9403,10.5433,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,3.1881,10.4632,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.5258,6.0235,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8607,5.7300,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.9403,10.6185,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,3.1881,10.5400,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.5258,5.9865,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8607,5.6154,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.9403,10.6645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,3.1881,10.6508,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.5258,5.8695,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8607,5.6467,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.9403,10.6523,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,3.1881,10.5384,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.5258,6.1958,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8607,5.8115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.9403,10.6810,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,3.1881,10.5723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.5258,6.1922,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8607,5.7873,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.9403,10.8027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,3.1881,10.6835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.5258,6.2936,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8607,5.8678,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.9403,10.7342,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,3.1881,10.6132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.5258,5.9120,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8607,5.6601,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.9403,9.9979,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,3.1881,9.9027,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.5258,6.0083,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8607,5.7203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.9403,10.3444,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,3.1881,10.2659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.5258,5.8857,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8607,5.6387,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.9403,10.4533,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,3.1881,10.3854,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.5258,5.9850,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8607,5.7088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.9403,10.5438,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,3.1881,10.3933,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.5258,5.8840,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8607,5.5630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.9403,10.3818,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,3.1881,10.2923,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.5258,5.9581,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8607,5.6209,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.9403,10.5717,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,3.1881,10.4480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.5258,6.0406,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8607,5.6898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.9403,10.5273,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,3.1881,10.4217,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.5258,6.0788,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8607,5.7498,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.9403,10.5812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,3.1881,10.4120,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.5258,5.9679,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8607,5.6428,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.9403,10.4926,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,3.1881,10.3825,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.5258,7.7021,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8607,6.2498,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.9403,10.5054,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,3.1881,10.4390,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.5258,6.6025,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8607,6.5654,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.9403,11.8478,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,3.1881,12.1890,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.5258,6.1549,0.0456,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8607,6.1657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.9403,10.6993,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,3.1881,10.6041,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.5258,6.6688,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8607,5.7606,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.9403,10.4232,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,3.1881,10.2503,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.5258,6.0612,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8607,5.9525,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.9403,10.6694,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,3.1881,10.6032,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.5258,6.2711,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8607,5.8085,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.9403,10.3364,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,3.1881,10.0311,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.5258,6.3380,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8607,5.8875,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.9403,10.3968,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,3.1881,9.9672,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.5258,6.4996,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8607,5.7761,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.9403,12.7245,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,3.1881,12.6445,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.5258,6.5686,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8607,5.7912,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.9403,11.8474,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,3.1881,11.6477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.5258,5.7930,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8607,5.5059,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.9403,10.3297,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,3.1881,10.2571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.5258,6.3550,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8607,5.8656,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.9403,10.4499,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,3.1881,10.3992,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.5258,6.2192,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8607,5.9225,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.9403,9.8550,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,3.1881,9.7316,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.5258,6.3673,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8607,5.5886,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.9403,10.6395,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,3.1881,10.4272,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.5258,6.2346,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8607,5.8404,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.9403,10.7592,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,3.1881,10.7780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.5258,6.1588,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8607,5.6491,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.9403,10.8254,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,3.1881,10.6487,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.5258,6.0441,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8607,5.6836,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.9403,10.1388,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,3.1881,10.0223,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.5258,6.2434,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8607,5.6647,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.9403,10.3282,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,3.1881,9.9460,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.5258,6.1519,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8607,5.7116,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.9403,10.6679,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,3.1881,10.1461,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.5258,5.9107,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8607,5.6349,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.9403,10.3163,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,3.1881,10.2532,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.5258,6.2269,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8607,5.7369,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.9403,11.3295,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,3.1881,10.2363,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.5258,6.2456,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8607,5.7228,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.9403,10.1016,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,3.1881,10.1608,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.5258,6.5267,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8607,5.8030,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.9403,9.9869,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,3.1881,9.7994,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.5258,6.2595,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8607,5.7856,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.9403,10.5457,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,3.1881,10.3343,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.5258,6.1195,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8607,5.8312,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.9403,10.8900,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,3.1881,10.6505,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.5258,6.3615,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8607,5.7780,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.9403,10.6149,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,3.1881,10.4154,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.5258,14.5505,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8607,5.4893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.9403,10.0671,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,3.1881,8.9655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.5258,5.8129,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8607,5.6005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.9403,10.4888,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,3.1881,10.3694,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.5258,6.5546,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8607,6.2273,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.9403,10.5013,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,3.1881,10.4744,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.5258,6.2851,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8607,5.6746,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.9403,10.7113,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,3.1881,10.7396,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.5258,10.2383,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8607,7.6005,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.9403,10.0371,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,3.1881,10.1154,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.5258,6.3178,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8607,5.6750,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.9403,10.4245,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,3.1881,10.2613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.5258,6.2858,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8607,5.8610,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.9403,14.5173,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,3.1881,14.3107,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.5258,6.7085,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8607,6.0853,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.9403,10.5523,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,3.1881,10.4908,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.5258,6.5198,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8607,5.6834,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.9403,10.8984,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,3.1881,10.5417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.5258,5.7998,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8607,5.5642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.9403,10.1912,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,3.1881,10.1193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.5258,5.7500,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8607,5.5326,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.9403,10.2693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,3.1881,10.2115,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.5258,5.7452,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8607,5.5004,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.9403,10.3010,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,3.1881,10.2403,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.5258,5.7087,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8607,5.5322,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.9403,10.3547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,3.1881,10.2984,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.5258,5.7245,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8607,5.4652,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.9403,10.4291,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,3.1881,10.4100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.5258,5.7770,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8607,5.5945,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.9403,10.4230,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,3.1881,10.3845,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.5258,5.8211,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8607,5.5575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.9403,10.5021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,3.1881,10.5050,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.5258,5.6783,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8607,5.4656,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.9403,10.3012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,3.1881,10.2748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.5258,5.6965,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8607,5.5855,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.9403,10.3441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,3.1881,10.3357,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.5258,5.7543,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8607,5.5378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.9403,10.4248,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,3.1881,10.3854,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.5258,5.8195,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8607,5.5750,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.9403,10.4929,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,3.1881,10.4639,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.5258,5.7029,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8607,5.5541,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.9403,10.3315,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,3.1881,10.2978,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.5258,5.7082,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8607,5.4905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.9403,10.4446,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,3.1881,10.4373,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.5258,5.7050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8607,5.5510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.9403,10.4333,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,3.1881,10.4401,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.5258,5.7234,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8607,5.5211,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.9403,10.5719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,3.1881,10.5753,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.5258,5.7932,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8607,5.6177,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.9403,10.3646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,3.1881,10.3279,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.5258,5.9481,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8607,5.7552,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.9403,10.6402,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,3.1881,10.6332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.5258,5.9150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8607,5.6850,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.9403,10.6340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,3.1881,10.5924,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.5258,6.1195,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8607,5.8703,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.9403,10.7040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,3.1881,10.6690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.5258,5.8838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8607,5.6805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.9403,10.6206,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,3.1881,10.5802,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.5258,6.0976,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8607,5.8004,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.9403,10.7048,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,3.1881,10.6416,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.5258,6.0323,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8607,5.7008,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.9403,10.6693,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,3.1881,10.6175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.5258,6.1424,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8607,5.9075,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.9403,10.5835,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,3.1881,10.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.5258,6.2488,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8607,5.8601,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.9403,10.5809,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,3.1881,10.5585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.5258,6.1137,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8607,5.7419,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.9403,8.8113,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,3.1881,8.3707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.5258,6.4131,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8607,5.9322,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.9403,10.1831,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,3.1881,10.0810,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.5258,6.2725,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8607,5.8918,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.9403,11.1443,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,3.1881,11.1544,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.5258,6.3031,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8607,5.8250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.9403,10.7900,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,3.1881,10.5343,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.5258,6.5422,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8607,5.7476,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.9403,10.7759,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,3.1881,10.5771,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.5258,6.3166,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8607,5.8418,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.9403,10.4560,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,3.1881,10.2751,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.5258,6.9033,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8607,6.2073,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.9403,10.8265,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,3.1881,10.5713,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.5258,6.5441,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8607,5.8597,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.9403,10.9508,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,3.1881,10.6037,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.5258,6.0252,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8607,5.6345,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.9403,10.4990,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,3.1881,10.3322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.5258,6.1707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8607,5.7536,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.9403,10.6477,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,3.1881,10.6170,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.5258,6.7555,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8607,6.3337,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.9403,11.4367,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,3.1881,11.3343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.5258,5.7860,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8607,5.4995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.9403,10.4988,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,3.1881,10.4569,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.5258,5.7136,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8607,5.4869,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.9403,10.3445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,3.1881,10.3196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.5258,5.7276,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8607,5.4757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.9403,10.3528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,3.1881,10.3339,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.5258,5.7508,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8607,5.4570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.9403,10.3742,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,3.1881,10.3462,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.5258,5.7530,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8607,5.4882,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.9403,10.3268,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,3.1881,10.2879,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.5258,5.6777,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8607,5.5572,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.9403,10.1652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,3.1881,10.1770,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.5258,5.8949,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8607,5.6631,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.9403,10.4534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,3.1881,10.4075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.5258,5.9161,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8607,5.7055,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.9403,10.6555,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,3.1881,10.6249,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.5258,5.7431,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8607,5.5549,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.9403,10.3507,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,3.1881,10.2937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.5258,5.8630,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8607,5.5955,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.9403,10.6490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,3.1881,10.5974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.5258,5.9426,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8607,5.7271,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.9403,10.6049,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,3.1881,10.5182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.5258,6.0328,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8607,5.8229,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.9403,10.7576,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,3.1881,10.7236,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.5258,5.9380,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8607,5.7211,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.9403,10.6351,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,3.1881,10.6053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.5258,6.7422,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8607,5.9923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.9403,10.9902,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,3.1881,10.8981,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.5258,6.6860,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8607,6.0610,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.9403,11.9339,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,3.1881,11.5661,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.5258,6.9733,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8607,5.9650,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.9403,10.8403,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,3.1881,10.5805,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.5258,7.2389,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8607,5.9097,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.9403,12.8970,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,3.1881,13.0823,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.5258,6.7991,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8607,5.7271,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.9403,9.9382,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,3.1881,9.8822,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.5258,6.5576,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8607,5.8707,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.9403,11.2781,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,3.1881,11.3355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.5258,6.9408,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8607,5.9648,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.9403,10.9337,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,3.1881,10.6572,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.5258,12.7984,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8607,11.5392,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.9403,11.0301,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,3.1881,10.6328,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.5258,6.5127,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8607,6.5616,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.9403,7.2006,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,3.1881,10.5156,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.5258,7.9061,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8607,7.2467,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.9403,12.5500,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,3.1881,12.4515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.5258,6.8828,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8607,5.9350,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.9403,11.0414,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,3.1881,10.9864,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.5258,8.2328,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8607,5.9466,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.9403,10.4345,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,3.1881,10.1841,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.5258,7.4499,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8607,6.7053,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.9403,15.2642,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,3.1881,14.8226,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.5258,7.2473,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8607,7.0347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.9403,11.5593,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,3.1881,11.5772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.5258,6.8912,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8607,5.9387,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.9403,10.9098,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,3.1881,10.7297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.5258,7.1287,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8607,5.9123,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.9403,11.9218,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,3.1881,11.8115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.5258,6.7484,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8607,5.9030,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.9403,10.6139,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,3.1881,10.3852,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.5258,7.4938,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8607,8.0390,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.9403,8.9543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,3.1881,10.2569,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.5258,7.0720,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8607,6.1854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.9403,10.4528,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,3.1881,10.3440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.5258,7.4584,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8607,11.5506,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.9403,11.5435,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,3.1881,11.2369,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.5258,7.2603,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8607,6.7481,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.9403,10.8018,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,3.1881,10.6054,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.5258,7.0635,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8607,7.6840,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.9403,11.5700,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,3.1881,11.2792,0.1370,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.5258,9.6224,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8607,8.2665,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.9403,10.7262,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,3.1881,10.0188,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.5258,7.2291,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8607,6.7954,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.9403,12.0168,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,3.1881,12.0258,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.5258,6.7092,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8607,5.9185,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.9403,10.2905,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,3.1881,10.2385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.5258,7.1353,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8607,6.3560,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.9403,10.6469,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,3.1881,10.3921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.5258,7.6604,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8607,6.0898,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.9403,10.5935,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,3.1881,10.3116,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.5258,7.4511,0.0337,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8607,6.3895,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.9403,11.2018,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,3.1881,11.0051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.5258,7.2173,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8607,6.0985,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.9403,11.0189,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,3.1881,10.7606,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.5258,12.1669,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8607,10.7054,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.9403,10.1154,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,3.1881,10.3009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.5258,7.1958,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8607,6.0775,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.9403,10.9202,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,3.1881,10.6081,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.5258,7.0031,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8607,5.9760,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.9403,11.0127,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,3.1881,10.7239,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.5258,7.2635,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8607,6.4577,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.9403,10.3226,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,3.1881,10.0627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.5258,6.9274,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8607,5.8533,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.9403,13.1242,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,3.1881,12.9854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.5258,6.9719,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8607,5.9458,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.9403,10.6637,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,3.1881,10.3787,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.5258,7.0529,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8607,6.6110,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.9403,9.8634,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,3.1881,10.1315,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.5258,7.1643,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8607,5.9806,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.9403,10.8595,0.0267,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,3.1881,11.3273,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.5258,7.4326,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8607,6.0068,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.9403,10.6165,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,3.1881,10.4562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.5258,7.2936,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8607,6.1167,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.9403,10.9921,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,3.1881,10.7246,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.5258,7.1043,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8607,5.9158,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.9403,12.0524,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,3.1881,11.2792,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.5258,6.6840,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8607,6.0254,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.9403,10.7384,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,3.1881,10.2760,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.5258,7.2251,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8607,6.3337,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.9403,10.5109,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,3.1881,10.2897,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.5258,7.1553,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8607,6.0439,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.9403,10.8052,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,3.1881,10.5378,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.5258,36.6050,0.0150,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +601,2.8607,25.3053,0.0155,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +602,2.9403,25.7191,0.0087,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +603,3.1881,26.1278,0.0205,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +604,5.5258,5.8519,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +605,2.8607,5.6328,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +606,2.9403,10.6695,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +607,3.1881,10.6776,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +608,5.5258,5.7723,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +609,2.8607,5.6703,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +610,2.9403,10.4289,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +611,3.1881,10.3830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +612,5.5258,5.7418,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +613,2.8607,5.6067,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +614,2.9403,10.5068,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +615,3.1881,10.5505,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +616,5.5258,5.6871,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +617,2.8607,5.6235,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +618,2.9403,10.2988,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +619,3.1881,10.3575,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +620,5.5258,5.9464,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +621,2.8607,5.7033,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +622,2.9403,10.5595,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +623,3.1881,10.4208,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +624,5.5258,5.9325,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +625,2.8607,5.7343,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +626,2.9403,10.4946,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +627,3.1881,10.4915,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +628,5.5258,5.7519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +629,2.8607,5.6359,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +630,2.9403,10.6340,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +631,3.1881,10.5651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +632,5.5258,5.9584,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +633,2.8607,5.7715,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +634,2.9403,10.5651,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +635,3.1881,10.4946,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +636,5.5258,5.6813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +637,2.8607,5.6150,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +638,2.9403,10.5633,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +639,3.1881,10.4703,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +640,5.5258,5.9153,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +641,2.8607,5.7302,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +642,2.9403,10.7364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +643,3.1881,10.6110,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +644,5.5258,6.0297,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +645,2.8607,5.7915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +646,2.9403,10.7950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +647,3.1881,10.7879,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +648,5.5258,5.9242,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +649,2.8607,5.7343,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +650,2.9403,10.6001,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +651,3.1881,10.6291,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +652,5.5258,5.8828,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +653,2.8607,5.8043,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +654,2.9403,10.7323,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +655,3.1881,10.6995,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +656,5.5258,6.0030,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +657,2.8607,5.8369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +658,2.9403,10.7097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +659,3.1881,10.6821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +660,5.5258,5.9035,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +661,2.8607,5.8733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +662,2.9403,11.4422,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +663,3.1881,11.0534,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +664,5.5258,6.7740,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +665,2.8607,6.6975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +666,2.9403,11.0600,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +667,3.1881,10.8980,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +668,5.5258,7.8446,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +669,2.8607,6.8827,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +670,2.9403,9.2910,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +671,3.1881,8.7861,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +672,5.5258,7.0190,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +673,2.8607,6.2386,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +674,2.9403,12.2600,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +675,3.1881,11.9505,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +676,5.5258,6.4194,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +677,2.8607,6.0612,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +678,2.9403,10.9763,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +679,3.1881,10.5776,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +680,5.5258,6.6902,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +681,2.8607,6.0480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +682,2.9403,10.4764,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +683,3.1881,9.2515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +684,5.5258,9.1795,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +685,2.8607,8.5433,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +686,2.9403,10.9435,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +687,3.1881,10.6948,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +688,5.5258,8.5676,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +689,2.8607,7.8300,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +690,2.9403,11.3750,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,3.1881,11.1182,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +692,5.5258,6.6456,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +693,2.8607,5.9463,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +694,2.9403,10.6982,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +695,3.1881,10.5742,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +696,5.5258,6.7074,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +697,2.8607,5.9965,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +698,2.9403,10.8838,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +699,3.1881,10.5832,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +700,5.5258,6.6565,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +701,2.8607,6.2503,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +702,2.9403,10.9962,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +703,3.1881,11.3199,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +704,5.5258,6.8630,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +705,2.8607,6.3529,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +706,2.9403,9.3057,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +707,3.1881,9.5665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +708,5.5258,6.3320,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +709,2.8607,5.8594,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +710,2.9403,11.3186,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +711,3.1881,11.2382,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +712,5.5258,7.1701,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +713,2.8607,6.3356,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +714,2.9403,10.3383,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +715,3.1881,10.6060,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +716,5.5258,7.1906,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +717,2.8607,6.5594,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +718,2.9403,9.9570,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +719,3.1881,9.6740,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +720,5.5258,6.6783,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +721,2.8607,6.0669,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.9403,11.3126,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +723,3.1881,11.2736,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +724,5.5258,6.7569,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +725,2.8607,5.9745,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.9403,12.6430,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +727,3.1881,12.3979,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +728,5.5258,7.0625,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +729,2.8607,6.1785,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.9403,10.9789,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +731,3.1881,10.7924,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +732,5.5258,6.7850,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +733,2.8607,6.6446,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.9403,8.8549,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +735,3.1881,13.0048,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +736,5.5258,7.0342,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +737,2.8607,6.1010,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.9403,11.0285,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +739,3.1881,10.7728,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +740,5.5258,8.4966,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +741,2.8607,7.4812,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.9403,10.4305,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +743,3.1881,10.2278,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.5258,6.5445,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +745,2.8607,6.0494,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.9403,14.4929,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +747,3.1881,14.2277,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +748,5.5258,12.6466,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +749,2.8607,12.2381,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.9403,12.0183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +751,3.1881,11.6587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +752,5.5258,6.7248,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +753,2.8607,5.9540,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.9403,14.8684,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +755,3.1881,14.9190,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +756,5.5258,8.4846,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +757,2.8607,7.2458,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.9403,10.8831,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +759,3.1881,10.7895,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +760,5.5258,6.7010,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8607,6.2290,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.9403,12.1333,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +763,3.1881,11.0740,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +764,5.5258,7.4369,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8607,6.1055,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.9403,10.7039,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +767,3.1881,10.6517,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +768,5.5258,7.1569,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8607,6.0583,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.9403,10.7833,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +771,3.1881,10.4846,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.5258,7.0311,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8607,6.2887,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.9403,10.5497,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +775,3.1881,9.9657,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +776,5.5258,6.8092,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8607,6.6608,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.9403,10.9830,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +779,3.1881,10.9010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +780,5.5258,6.9360,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8607,6.2858,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.9403,12.4560,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +783,3.1881,12.4855,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.5258,11.5986,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8607,10.1893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.9403,9.3691,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +787,3.1881,9.5955,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +788,5.5258,10.4030,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8607,6.7245,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.9403,10.2227,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +791,3.1881,10.4673,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +792,5.5258,12.5770,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8607,11.7258,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.9403,11.4481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +795,3.1881,11.2957,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.5258,7.5537,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8607,6.4634,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.9403,11.2436,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +799,3.1881,10.9666,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +800,5.5258,7.5929,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8607,6.3711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.9403,11.3625,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +803,3.1881,11.4151,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.5258,7.3370,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8607,6.5651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.9403,10.8650,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +807,3.1881,10.9187,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +808,5.5258,6.9527,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8607,5.9044,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.9403,10.6243,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +811,3.1881,7.6834,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +812,5.5258,10.2600,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8607,10.2147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.9403,11.0435,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +815,3.1881,10.9918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +816,5.5258,14.3085,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8607,13.5768,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.9403,13.3847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,3.1881,13.0389,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +820,5.5258,7.2691,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8607,6.6273,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.9403,11.7982,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,3.1881,11.8762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.5258,7.4220,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8607,6.2726,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.9403,11.4704,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,3.1881,11.4242,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +828,5.5258,6.9837,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8607,6.2918,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.9403,11.0605,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,3.1881,10.9514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +832,5.5258,11.1470,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8607,9.5846,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.9403,10.2781,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,3.1881,10.8058,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +836,5.5258,7.2300,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8607,5.8420,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.9403,12.5448,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +839,3.1881,13.0159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +840,5.5258,7.0206,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +841,2.8607,5.8753,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.9403,11.6289,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +843,3.1881,11.6689,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.5258,6.5922,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +845,2.8607,6.6753,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.9403,7.2085,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +847,3.1881,11.2304,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +848,5.5258,14.2107,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +849,2.8607,13.4777,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.9403,13.1335,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +851,3.1881,12.8109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +852,5.5258,6.3858,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +853,2.8607,5.9852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.9403,8.0760,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +855,3.1881,10.7142,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +856,5.5258,6.2361,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +857,2.8607,5.8434,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.9403,10.7074,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +859,3.1881,10.5916,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +860,5.5258,6.5872,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +861,2.8607,6.3847,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.9403,12.3926,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +863,3.1881,12.6039,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +864,5.5258,6.7603,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +865,2.8607,5.8509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.9403,10.5319,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +867,3.1881,10.3037,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +868,5.5258,6.3603,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +869,2.8607,5.7366,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.9403,11.9376,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +871,3.1881,11.8953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +872,5.5258,7.1756,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +873,2.8607,5.9766,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.9403,10.9660,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +875,3.1881,10.7223,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +876,5.5258,6.9073,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +877,2.8607,6.0015,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.9403,10.8861,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +879,3.1881,10.4714,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +880,5.5258,7.1262,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8607,5.9784,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.9403,10.8527,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +883,3.1881,10.6456,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +884,5.5258,7.3324,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8607,6.5621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.9403,11.0660,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +887,3.1881,10.8301,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +888,5.5258,12.7200,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8607,11.6906,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.9403,11.2447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +891,3.1881,10.9372,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +892,5.5258,7.7961,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8607,6.3038,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.9403,10.9535,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +895,3.1881,10.8257,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +896,5.5258,7.8989,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8607,6.5260,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.9403,10.7494,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +899,3.1881,10.2330,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +900,5.5258,7.3581,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8607,6.3799,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.9403,11.7957,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +903,3.1881,11.5461,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +904,5.5258,8.9051,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8607,7.4828,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.9403,10.5053,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +907,3.1881,10.1236,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +908,5.5258,6.9165,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8607,6.1579,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.9403,11.2526,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +911,3.1881,11.2532,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +912,5.5258,6.9778,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8607,6.0370,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.9403,10.1635,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +915,3.1881,10.4398,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +916,5.5258,7.0959,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8607,6.3005,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.9403,9.5135,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +919,3.1881,10.4988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +920,5.5258,7.4319,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8607,6.5839,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.9403,11.4490,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,3.1881,11.4053,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +924,5.5258,7.3527,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8607,6.1977,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.9403,11.0709,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,3.1881,10.7777,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +928,5.5258,7.1273,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8607,6.5375,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.9403,9.3733,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +931,3.1881,10.9315,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +932,5.5258,6.9381,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8607,6.1555,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.9403,11.1023,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +935,3.1881,10.8143,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +936,5.5258,7.1725,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8607,6.0320,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.9403,11.6510,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +939,3.1881,11.3474,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +940,5.5258,9.3212,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8607,8.5106,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.9403,10.6843,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +943,3.1881,10.6697,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +944,5.5258,7.0559,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8607,5.9590,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.9403,11.7691,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +947,3.1881,11.6518,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +948,5.5258,7.1455,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8607,6.1375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.9403,11.0348,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,3.1881,10.7520,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +952,5.5258,7.0413,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8607,6.0324,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.9403,10.3670,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +955,3.1881,10.3884,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +956,5.5258,6.6254,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8607,6.1495,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.9403,11.0658,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +959,3.1881,11.1300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +960,5.5258,6.7971,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,2.8607,8.8093,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.9403,9.7962,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +963,3.1881,10.6000,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +964,5.5258,8.3508,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,2.8607,7.0648,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.9403,11.0636,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +967,3.1881,10.7995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +968,5.5258,7.3392,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,2.8607,6.0919,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.9403,10.8430,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +971,3.1881,10.5375,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +972,5.5258,8.4646,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,2.8607,7.7820,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.9403,11.1328,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +975,3.1881,10.8033,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +976,5.5258,8.9966,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,2.8607,8.0705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.9403,11.0479,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +979,3.1881,10.7727,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +980,5.5258,7.2521,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,2.8607,6.2368,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.9403,11.4100,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +983,3.1881,11.1089,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +984,5.5258,7.1359,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,2.8607,8.8316,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.9403,9.5668,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +987,3.1881,10.4410,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +988,5.5258,8.0857,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,2.8607,6.2742,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.9403,11.1530,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +991,3.1881,10.8993,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +992,5.5258,7.5230,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,2.8607,6.4074,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.9403,11.1013,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,3.1881,11.0919,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +996,5.5258,7.0690,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,2.8607,6.0587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.9403,10.6839,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +999,3.1881,10.4420,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1000,5.5258,6.7224,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8607,5.9967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.9403,13.4108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1003,3.1881,13.0005,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1004,5.5258,6.7437,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8607,6.0369,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.9403,11.0501,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1007,3.1881,10.7525,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1008,5.5258,6.9307,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8607,6.0267,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.9403,9.9795,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1011,3.1881,10.2100,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.5258,7.8840,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8607,7.0349,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.9403,10.4906,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1015,3.1881,10.5453,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1016,5.5258,10.2051,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8607,9.2600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.9403,10.6090,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1019,3.1881,10.3233,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1020,5.5258,6.7986,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8607,6.2503,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.9403,10.3959,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1023,3.1881,10.1509,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1024,5.5258,6.8133,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8607,6.0526,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.9403,10.4503,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1027,3.1881,10.3522,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1028,5.5258,6.9601,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8607,6.0503,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.9403,10.7253,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1031,3.1881,10.3420,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1032,5.5258,6.9815,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8607,6.4376,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.9403,11.4480,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1035,3.1881,11.0260,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1036,5.5258,6.7758,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8607,6.2839,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.9403,12.4886,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,3.1881,12.5421,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1040,5.5258,8.4236,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8607,7.5613,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.9403,10.8642,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,3.1881,10.6623,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1044,5.5258,6.8965,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8607,5.8746,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.9403,10.3072,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,3.1881,10.0515,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1048,5.5258,7.1146,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8607,6.0339,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.9403,10.6420,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,3.1881,10.4470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1052,5.5258,6.8792,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8607,6.0537,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.9403,10.8007,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1055,3.1881,10.5417,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.5258,7.1467,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8607,6.0216,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.9403,12.4213,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1059,3.1881,11.7164,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1060,5.5258,7.3870,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8607,6.1712,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.9403,10.8055,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1063,3.1881,10.5526,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.5258,9.4794,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8607,6.5503,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.9403,10.9368,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1067,3.1881,10.7396,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1068,5.5258,6.5661,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8607,5.9216,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.9403,11.1624,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1071,3.1881,10.9024,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1072,5.5258,7.2589,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8607,6.2533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.9403,13.8792,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1075,3.1881,13.5701,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1076,5.5258,7.0908,0.0452,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8607,6.3820,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.9403,15.9974,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1079,3.1881,17.1770,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1080,5.5258,8.8400,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8607,7.9341,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.9403,12.6623,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,3.1881,12.4319,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.5258,6.4919,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8607,6.0389,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.9403,10.6608,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1087,3.1881,10.4736,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1088,5.5258,7.3796,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8607,6.1025,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.9403,12.8980,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,3.1881,12.8312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1092,5.5258,7.0168,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8607,5.9791,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.9403,13.6642,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1095,3.1881,13.2517,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.5258,6.6500,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8607,5.9441,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.9403,10.7812,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1099,3.1881,10.5832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1100,5.5258,6.5888,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8607,6.1364,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.9403,11.2842,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,3.1881,11.1025,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1104,5.5258,6.2261,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8607,5.8068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.9403,10.8587,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1107,3.1881,10.7580,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1108,5.5258,6.3517,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8607,5.9070,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.9403,10.6924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,3.1881,10.6082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.5258,6.7279,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8607,5.7547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.9403,10.7106,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,3.1881,10.3344,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.5258,6.2475,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8607,5.8374,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.9403,11.1984,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,3.1881,11.1044,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1120,5.5258,6.9403,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8607,5.9181,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.9403,11.2538,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1123,3.1881,10.9482,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1124,5.5258,6.9587,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8607,5.9167,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.9403,10.7580,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1127,3.1881,10.6254,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1128,5.5258,7.2432,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8607,6.0114,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.9403,11.8045,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1131,3.1881,11.8070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1132,5.5258,6.7099,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8607,6.0185,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.9403,10.8286,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1135,3.1881,10.5885,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1136,5.5258,6.7945,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8607,5.8874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.9403,10.4827,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1139,3.1881,10.4587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.5258,7.0651,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8607,6.2376,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.9403,10.6525,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1143,3.1881,10.4180,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.5258,10.2851,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8607,9.3175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.9403,9.8854,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,3.1881,9.6654,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.5258,6.2856,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8607,6.1106,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.9403,10.5198,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,3.1881,10.3170,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1152,5.5258,6.7864,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8607,5.8123,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.9403,11.0629,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,3.1881,10.9588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.5258,7.4085,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8607,6.1508,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.9403,10.8783,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,3.1881,10.6072,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1160,5.5258,7.1712,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8607,5.9318,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.9403,10.7671,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,3.1881,10.5870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1164,5.5258,6.5284,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8607,5.7845,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.9403,10.9878,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1167,3.1881,10.8797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.5258,7.0970,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8607,6.0129,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.9403,10.7115,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,3.1881,11.2248,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.5258,7.9175,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8607,6.0210,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.9403,10.7371,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1175,3.1881,10.7427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.5258,6.8941,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8607,6.3515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.9403,11.9729,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,3.1881,11.8325,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.5258,6.9747,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8607,5.9721,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.9403,13.0642,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,3.1881,12.6416,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1184,5.5258,6.7430,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8607,5.8622,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.9403,10.9158,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,3.1881,10.6781,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1188,5.5258,7.4664,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8607,6.0630,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.9403,10.3700,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,3.1881,10.3474,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1192,5.5258,6.6645,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8607,5.9047,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.9403,10.6417,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,3.1881,10.2575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.5258,6.1612,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8607,5.7348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.9403,10.8790,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,3.1881,10.6148,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1200,5.5258,44.0589,0.0132,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1201,2.8607,28.9633,0.0123,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1202,2.9403,22.7170,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1203,3.1881,25.0406,0.0104,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1204,5.5258,5.7564,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1205,2.8607,5.5386,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1206,2.9403,10.4170,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1207,3.1881,10.4512,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1208,5.5258,5.8309,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1209,2.8607,5.6172,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1210,2.9403,10.4546,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1211,3.1881,10.4090,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1212,5.5258,5.7945,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1213,2.8607,5.6480,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1214,2.9403,11.5521,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1215,3.1881,11.4516,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1216,5.5258,5.5740,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1217,2.8607,5.5019,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1218,2.9403,10.3081,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1219,3.1881,10.2686,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1220,5.5258,5.6894,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1221,2.8607,5.5527,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1222,2.9403,10.4147,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1223,3.1881,10.3902,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1224,5.5258,5.6890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1225,2.8607,5.5504,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1226,2.9403,10.4565,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1227,3.1881,10.3540,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1228,5.5258,5.8573,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1229,2.8607,5.5780,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1230,2.9403,10.3892,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1231,3.1881,10.3359,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1232,5.5258,5.7950,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1233,2.8607,5.5355,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1234,2.9403,10.4790,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1235,3.1881,10.4101,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1236,5.5258,5.7227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1237,2.8607,5.5471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1238,2.9403,10.5055,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1239,3.1881,10.4762,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1240,5.5258,5.6178,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1241,2.8607,5.5503,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1242,2.9403,10.4908,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1243,3.1881,10.4580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1244,5.5258,5.6825,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1245,2.8607,5.5165,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1246,2.9403,10.4082,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1247,3.1881,10.3264,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1248,5.5258,5.8059,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1249,2.8607,5.6839,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1250,2.9403,10.3712,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1251,3.1881,10.3207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1252,5.5258,5.7067,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1253,2.8607,5.5843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1254,2.9403,10.3696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1255,3.1881,10.3453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1256,5.5258,5.6422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1257,2.8607,5.4826,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1258,2.9403,10.2916,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1259,3.1881,10.2270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1260,5.5258,5.6387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1261,2.8607,5.4921,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1262,2.9403,10.3067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1263,3.1881,10.2681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1264,5.5258,5.5552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1265,2.8607,5.4897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1266,2.9403,10.3373,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1267,3.1881,10.3114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1268,5.5258,5.7437,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1269,2.8607,5.5454,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1270,2.9403,10.3161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1271,3.1881,10.2351,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1272,5.5258,5.6972,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1273,2.8607,5.5188,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1274,2.9403,10.4001,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1275,3.1881,10.2999,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1276,5.5258,5.8055,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1277,2.8607,5.5663,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1278,2.9403,10.6886,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1279,3.1881,10.4748,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1280,5.5258,5.8524,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1281,2.8607,5.6296,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1282,2.9403,10.6297,0.0191,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1283,3.1881,10.5482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1284,5.5258,5.9065,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1285,2.8607,5.6353,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1286,2.9403,10.5146,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1287,3.1881,10.3704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.5258,5.9326,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1289,2.8607,5.6499,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1290,2.9403,10.5722,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,3.1881,10.5087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1292,5.5258,6.0239,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1293,2.8607,5.8043,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1294,2.9403,10.8022,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1295,3.1881,10.7618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1296,5.5258,6.0415,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1297,2.8607,5.7112,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1298,2.9403,10.5227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1299,3.1881,10.4472,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1300,5.5258,5.9873,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1301,2.8607,5.7139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1302,2.9403,10.7190,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1303,3.1881,10.5658,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1304,5.5258,6.2555,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1305,2.8607,5.7402,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1306,2.9403,11.0008,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1307,3.1881,11.2529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1308,5.5258,6.3938,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1309,2.8607,5.8940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1310,2.9403,10.9793,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1311,3.1881,10.7692,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1312,5.5258,13.7476,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1313,2.8607,13.4383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1314,2.9403,13.1720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1315,3.1881,12.9597,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1316,5.5258,7.4173,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1317,2.8607,6.5771,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1318,2.9403,11.6427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1319,3.1881,11.1410,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1320,5.5258,6.6808,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1321,2.8607,5.9127,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.9403,11.5513,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1323,3.1881,11.6951,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1324,5.5258,10.6076,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1325,2.8607,9.5792,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.9403,11.1984,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1327,3.1881,11.0246,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1328,5.5258,7.3922,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1329,2.8607,6.5055,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.9403,14.6703,0.0350,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1331,3.1881,14.3779,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1332,5.5258,6.5437,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1333,2.8607,5.7939,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.9403,9.9145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1335,3.1881,10.4057,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1336,5.5258,6.3952,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1337,2.8607,5.8506,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.9403,10.8415,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1339,3.1881,10.6553,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1340,5.5258,6.3123,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1341,2.8607,5.9023,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.9403,10.8700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1343,3.1881,10.7674,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.5258,6.1186,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1345,2.8607,5.7942,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.9403,10.7363,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1347,3.1881,10.6790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1348,5.5258,6.4788,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1349,2.8607,5.9465,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.9403,10.7802,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1351,3.1881,10.6623,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1352,5.5258,6.0358,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1353,2.8607,5.7397,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.9403,10.6382,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1355,3.1881,10.5406,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1356,5.5258,6.7632,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1357,2.8607,6.4076,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.9403,11.3387,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1359,3.1881,11.1907,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1360,5.5258,10.4335,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8607,9.6378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.9403,10.4021,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1363,3.1881,10.4323,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1364,5.5258,7.5001,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8607,6.6483,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.9403,11.1284,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1367,3.1881,11.0720,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1368,5.5258,7.1515,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8607,6.1079,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.9403,10.7878,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1371,3.1881,10.7020,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.5258,7.5918,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8607,6.2430,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.9403,10.3955,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1375,3.1881,10.3915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1376,5.5258,7.0180,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8607,6.0460,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.9403,11.3897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1379,3.1881,10.7293,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1380,5.5258,7.1520,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8607,6.1385,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.9403,10.8352,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1383,3.1881,10.6449,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1384,5.5258,15.0132,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8607,12.6305,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.9403,12.3536,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1387,3.1881,12.1247,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1388,5.5258,9.5200,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8607,9.0135,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.9403,10.8330,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1391,3.1881,10.7969,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1392,5.5258,6.9177,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8607,7.8625,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.9403,8.2946,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1395,3.1881,10.5047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.5258,7.1038,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8607,6.5134,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.9403,11.2153,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1399,3.1881,10.9505,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.5258,15.1000,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8607,14.0795,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.9403,13.9862,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1403,3.1881,13.7123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.5258,6.6278,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8607,5.8131,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.9403,10.9682,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1407,3.1881,10.8165,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1408,5.5258,8.1580,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8607,6.8280,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.9403,10.2190,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1411,3.1881,10.3481,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1412,5.5258,7.4035,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8607,6.0037,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.9403,10.9205,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1415,3.1881,10.6436,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1416,5.5258,11.7302,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8607,6.0659,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.9403,7.0229,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,3.1881,7.0233,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1420,5.5258,6.6611,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8607,6.3650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.9403,11.2068,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,3.1881,11.1300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.5258,6.7600,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8607,5.8081,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.9403,10.9856,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,3.1881,10.8921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1428,5.5258,7.2438,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8607,6.7785,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.9403,9.7822,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,3.1881,10.3361,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1432,5.5258,6.8463,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8607,6.1447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.9403,11.1428,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1435,3.1881,11.0829,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1436,5.5258,6.6795,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8607,6.3373,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.9403,12.7434,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1439,3.1881,12.5367,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1440,5.5258,6.7950,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1441,2.8607,5.8578,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1442,2.9403,11.6008,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1443,3.1881,11.3995,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1444,5.5258,7.0694,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1445,2.8607,5.9962,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1446,2.9403,11.4275,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1447,3.1881,11.2059,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1448,5.5258,7.2453,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1449,2.8607,6.0637,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1450,2.9403,11.2389,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1451,3.1881,10.9924,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1452,5.5258,9.2818,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1453,2.8607,8.9284,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1454,2.9403,10.9650,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1455,3.1881,11.0929,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1456,5.5258,7.0909,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1457,2.8607,6.0259,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1458,2.9403,12.5011,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1459,3.1881,12.0741,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1460,5.5258,6.8932,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1461,2.8607,5.9384,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1462,2.9403,10.8728,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1463,3.1881,10.6461,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1464,5.5258,7.1387,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1465,2.8607,6.1011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1466,2.9403,10.5843,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1467,3.1881,10.3012,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1468,5.5258,7.2115,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1469,2.8607,6.0550,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1470,2.9403,10.8920,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1471,3.1881,10.8311,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1472,5.5258,6.8115,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1473,2.8607,5.8728,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1474,2.9403,11.5022,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1475,3.1881,11.2914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1476,5.5258,7.0072,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1477,2.8607,6.0732,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1478,2.9403,11.3802,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1479,3.1881,11.0928,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1480,5.5258,6.8894,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1481,2.8607,5.9659,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1482,2.9403,11.2531,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1483,3.1881,11.2155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1484,5.5258,6.8039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1485,2.8607,6.0920,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1486,2.9403,11.0123,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1487,3.1881,10.6802,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1488,5.5258,7.9289,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1489,2.8607,7.1314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1490,2.9403,11.0644,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1491,3.1881,10.9574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1492,5.5258,6.9638,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1493,2.8607,5.9189,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1494,2.9403,10.8939,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1495,3.1881,10.6629,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1496,5.5258,6.8970,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1497,2.8607,5.9894,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1498,2.9403,11.4272,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1499,3.1881,11.3637,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1500,5.5258,7.2759,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1501,2.8607,6.0373,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1502,2.9403,10.9756,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1503,3.1881,10.6963,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1504,5.5258,7.2692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1505,2.8607,6.0538,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1506,2.9403,10.8461,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1507,3.1881,10.6474,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1508,5.5258,7.0764,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1509,2.8607,5.7870,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1510,2.9403,10.8046,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1511,3.1881,10.5283,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1512,5.5258,6.9711,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1513,2.8607,5.9432,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1514,2.9403,13.2882,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1515,3.1881,12.7982,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1516,5.5258,6.5731,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1517,2.8607,5.9425,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1518,2.9403,10.7472,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1519,3.1881,10.3643,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1520,5.5258,6.8402,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1521,2.8607,5.7907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1522,2.9403,10.2292,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1523,3.1881,10.2537,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1524,5.5258,6.4917,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1525,2.8607,5.9209,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1526,2.9403,10.6414,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1527,3.1881,10.3678,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1528,5.5258,6.2869,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1529,2.8607,5.7955,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1530,2.9403,10.8987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1531,3.1881,10.6593,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1532,5.5258,5.7888,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1533,2.8607,5.5208,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1534,2.9403,10.3656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1535,3.1881,10.2624,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1536,5.5258,5.8087,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1537,2.8607,5.5772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1538,2.9403,10.4049,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1539,3.1881,10.3447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1540,5.5258,5.6321,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1541,2.8607,5.4707,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1542,2.9403,10.3280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1543,3.1881,10.2990,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1544,5.5258,5.6588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1545,2.8607,5.5474,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1546,2.9403,11.5598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1547,3.1881,11.4504,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1548,5.5258,5.7167,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1549,2.8607,5.4538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1550,2.9403,10.3470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1551,3.1881,10.2600,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1552,5.5258,5.6780,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1553,2.8607,5.5510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1554,2.9403,10.4637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1555,3.1881,10.4463,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1556,5.5258,5.6969,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1557,2.8607,5.4769,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1558,2.9403,10.4370,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1559,3.1881,10.4301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1560,5.5258,5.7393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1561,2.8607,5.5543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,2.9403,10.4413,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1563,3.1881,10.4086,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1564,5.5258,5.8133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1565,2.8607,5.5442,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,2.9403,10.4900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1567,3.1881,10.4632,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1568,5.5258,5.7672,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1569,2.8607,5.6013,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,2.9403,10.3733,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1571,3.1881,10.3636,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1572,5.5258,5.5938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1573,2.8607,5.4530,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,2.9403,10.3709,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1575,3.1881,10.3006,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1576,5.5258,5.6983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1577,2.8607,5.4734,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,2.9403,10.3260,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1579,3.1881,10.2694,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1580,5.5258,5.7115,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1581,2.8607,5.5247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,2.9403,10.4176,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1583,3.1881,10.3782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1584,5.5258,5.5731,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1585,2.8607,5.4700,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,2.9403,10.3169,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1587,3.1881,10.3225,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1588,5.5258,5.7209,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1589,2.8607,5.5187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,2.9403,10.3232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1591,3.1881,10.2775,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1592,5.5258,5.7255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1593,2.8607,5.5995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,2.9403,10.4017,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1595,3.1881,10.3793,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1596,5.5258,5.8891,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1597,2.8607,5.6992,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,2.9403,10.6779,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1599,3.1881,10.6788,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1600,5.5258,5.7285,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,2.8607,5.5514,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,2.9403,10.4102,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1603,3.1881,10.3002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1604,5.5258,6.0903,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,2.8607,5.7262,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,2.9403,10.7015,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1607,3.1881,10.6361,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1608,5.5258,6.0429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,2.8607,5.7744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,2.9403,10.5898,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1611,3.1881,10.5597,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1612,5.5258,5.9774,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,2.8607,5.6521,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,2.9403,10.8112,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1615,3.1881,10.5822,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1616,5.5258,6.0634,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,2.8607,5.8548,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,2.9403,11.0651,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1619,3.1881,10.8727,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1620,5.5258,6.0028,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,2.8607,5.8196,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,2.9403,11.3749,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1623,3.1881,11.5152,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1624,5.5258,13.9547,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,2.8607,13.2628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,2.9403,12.6975,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1627,3.1881,12.4010,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1628,5.5258,7.3545,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,2.8607,6.2021,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,2.9403,11.2415,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1631,3.1881,10.9759,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1632,5.5258,6.9263,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,2.8607,6.0162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,2.9403,11.4550,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1635,3.1881,11.3097,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1636,5.5258,6.8105,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,2.8607,5.9243,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,2.9403,10.3355,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1639,3.1881,10.3902,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1640,5.5258,6.8982,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,2.8607,5.8541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,2.9403,13.5083,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1643,3.1881,13.5663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1644,5.5258,6.6072,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,2.8607,5.8106,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,2.9403,10.9315,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1647,3.1881,10.6236,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1648,5.5258,6.9093,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,2.8607,5.7740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,2.9403,10.7757,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1651,3.1881,10.7371,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1652,5.5258,7.2334,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,2.8607,6.4266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,2.9403,10.7381,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1655,3.1881,10.4903,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1656,5.5258,6.6813,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,2.8607,5.7652,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,2.9403,12.1234,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1659,3.1881,12.4859,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1660,5.5258,7.5859,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,2.8607,6.6360,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,2.9403,12.8711,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1663,3.1881,13.0545,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1664,5.5258,9.2756,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,2.8607,5.9924,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,2.9403,13.7165,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1667,3.1881,13.6934,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1668,5.5258,6.9363,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,2.8607,5.7255,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,2.9403,9.2230,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1671,3.1881,10.0779,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1672,5.5258,8.7556,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,2.8607,8.3290,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,2.9403,10.4154,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1675,3.1881,10.2845,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1676,5.5258,6.0145,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,2.8607,5.7189,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,2.9403,9.8240,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1679,3.1881,10.1657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1680,5.5258,6.0260,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1681,2.8607,5.6453,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1682,2.9403,10.3980,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1683,3.1881,10.1955,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1684,5.5258,5.8120,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1685,2.8607,5.6123,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1686,2.9403,10.3878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1687,3.1881,10.3152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1688,5.5258,11.3390,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1689,2.8607,7.1850,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1690,2.9403,11.5074,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1691,3.1881,11.1855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1692,5.5258,5.6794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1693,2.8607,5.4795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1694,2.9403,10.5325,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1695,3.1881,10.4315,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1696,5.5258,6.1127,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1697,2.8607,5.8105,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1698,2.9403,10.5595,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1699,3.1881,11.7444,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1700,5.5258,6.2988,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1701,2.8607,5.7287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1702,2.9403,10.3077,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1703,3.1881,10.2314,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1704,5.5258,6.2648,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1705,2.8607,9.3350,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1706,2.9403,9.3780,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1707,3.1881,10.0921,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1708,5.5258,6.2685,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1709,2.8607,5.5499,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1710,2.9403,10.4812,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1711,3.1881,10.2884,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1712,5.5258,6.4970,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1713,2.8607,5.9152,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1714,2.9403,11.8283,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1715,3.1881,11.4437,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1716,5.5258,6.7846,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1717,2.8607,5.8917,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1718,2.9403,10.7927,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1719,3.1881,10.6910,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1720,5.5258,8.5274,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1721,2.8607,6.0726,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1722,2.9403,10.6387,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1723,3.1881,10.4053,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1724,5.5258,6.8430,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1725,2.8607,6.0741,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1726,2.9403,10.8340,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1727,3.1881,10.7209,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1728,5.5258,7.0198,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1729,2.8607,6.0676,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1730,2.9403,11.1064,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1731,3.1881,10.9138,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1732,5.5258,6.7526,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1733,2.8607,5.7945,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1734,2.9403,9.7819,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1735,3.1881,9.3754,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1736,5.5258,6.8643,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1737,2.8607,5.8533,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1738,2.9403,12.1568,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1739,3.1881,12.0684,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1740,5.5258,6.5417,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1741,2.8607,5.8655,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,2.9403,10.8269,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1743,3.1881,10.5156,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1744,5.5258,6.9844,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1745,2.8607,6.1012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,2.9403,10.8755,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1747,3.1881,10.8366,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1748,5.5258,8.0565,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1749,2.8607,6.7764,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,2.9403,10.7655,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,3.1881,10.5234,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1752,5.5258,8.4433,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1753,2.8607,9.9179,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,2.9403,10.4649,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1755,3.1881,10.2705,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1756,5.5258,7.0450,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1757,2.8607,5.9780,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,2.9403,11.0355,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1759,3.1881,13.1048,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1760,5.5258,6.7923,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1761,2.8607,5.8715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,2.9403,10.7943,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1763,3.1881,10.5135,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1764,5.5258,6.8215,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1765,2.8607,5.8724,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,2.9403,10.5991,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1767,3.1881,10.2374,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1768,5.5258,6.8003,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1769,2.8607,6.1222,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,2.9403,13.4238,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1771,3.1881,13.3543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1772,5.5258,6.7045,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1773,2.8607,5.8712,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,2.9403,10.6026,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1775,3.1881,10.3471,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1776,5.5258,11.1723,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1777,2.8607,6.1530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,2.9403,10.2075,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1779,3.1881,10.2266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1780,5.5258,6.6323,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1781,2.8607,6.1077,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,2.9403,9.3554,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1783,3.1881,9.9560,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1784,5.5258,6.6443,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1785,2.8607,5.8337,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,2.9403,11.3480,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1787,3.1881,10.9438,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1788,5.5258,6.8875,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1789,2.8607,5.9488,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,2.9403,10.1065,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1791,3.1881,9.9765,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1792,5.5258,8.3910,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1793,2.8607,6.1944,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,2.9403,10.7209,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1795,3.1881,10.4600,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1796,5.5258,7.0002,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1797,2.8607,6.0847,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,2.9403,11.2234,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1799,3.1881,10.7124,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1800,5.5258,33.1000,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1801,2.8607,25.7349,0.0133,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1802,2.9403,25.0515,0.0044,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1803,3.1881,25.8336,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1804,5.5258,5.7847,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1805,2.8607,5.5533,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1806,2.9403,10.4799,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1807,3.1881,10.4263,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1808,5.5258,5.7477,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1809,2.8607,5.5722,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1810,2.9403,10.4824,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1811,3.1881,10.4003,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1812,5.5258,5.6749,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1813,2.8607,5.4893,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1814,2.9403,10.4241,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1815,3.1881,10.3989,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1816,5.5258,5.6661,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1817,2.8607,5.5010,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1818,2.9403,10.3703,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1819,3.1881,10.3238,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1820,5.5258,5.7005,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1821,2.8607,5.5505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1822,2.9403,10.4769,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1823,3.1881,10.5315,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1824,5.5258,5.8034,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1825,2.8607,5.5860,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1826,2.9403,10.5530,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1827,3.1881,10.4518,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1828,5.5258,5.7722,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1829,2.8607,5.6027,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1830,2.9403,10.6328,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1831,3.1881,10.5542,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1832,5.5258,5.8558,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1833,2.8607,5.5709,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1834,2.9403,10.5163,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1835,3.1881,10.4535,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1836,5.5258,5.9398,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1837,2.8607,5.7535,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1838,2.9403,10.5331,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1839,3.1881,10.3778,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1840,5.5258,6.2394,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1841,2.8607,5.8879,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1842,2.9403,10.8338,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1843,3.1881,10.7087,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1844,5.5258,6.1385,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1845,2.8607,5.8182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1846,2.9403,10.7375,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1847,3.1881,10.6011,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1848,5.5258,6.0584,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1849,2.8607,5.7721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1850,2.9403,10.5936,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1851,3.1881,10.3954,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1852,5.5258,6.1195,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1853,2.8607,5.9030,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1854,2.9403,11.1546,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1855,3.1881,11.0611,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1856,5.5258,6.3395,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1857,2.8607,5.8830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1858,2.9403,10.9642,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1859,3.1881,10.9124,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1860,5.5258,6.2494,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1861,2.8607,5.8650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1862,2.9403,10.8717,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1863,3.1881,10.7621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1864,5.5258,6.2791,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1865,2.8607,5.8743,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1866,2.9403,11.6737,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1867,3.1881,11.5475,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1868,5.5258,7.1967,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1869,2.8607,6.1914,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1870,2.9403,11.2475,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1871,3.1881,10.9794,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1872,5.5258,7.2503,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1873,2.8607,6.6362,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1874,2.9403,14.5815,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1875,3.1881,14.2873,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1876,5.5258,6.7550,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1877,2.8607,6.0846,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1878,2.9403,14.3417,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1879,3.1881,14.0729,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1880,5.5258,7.1548,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1881,2.8607,6.3378,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1882,2.9403,13.7532,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1883,3.1881,13.8220,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1884,5.5258,11.1044,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1885,2.8607,6.3839,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1886,2.9403,11.2549,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1887,3.1881,11.0758,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1888,5.5258,8.9527,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1889,2.8607,7.9763,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1890,2.9403,18.6305,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1891,3.1881,18.3397,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1892,5.5258,9.8939,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1893,2.8607,9.5467,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1894,2.9403,10.6939,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1895,3.1881,10.4787,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1896,5.5258,6.6031,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1897,2.8607,5.9001,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1898,2.9403,11.8849,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1899,3.1881,11.8924,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1900,5.5258,6.4820,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1901,2.8607,5.8887,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1902,2.9403,8.9922,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1903,3.1881,10.7479,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1904,5.5258,6.7840,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1905,2.8607,5.9683,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1906,2.9403,10.7503,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1907,3.1881,10.5066,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1908,5.5258,6.6702,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1909,2.8607,6.0224,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1910,2.9403,11.2517,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1911,3.1881,11.0185,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1912,5.5258,8.7979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1913,2.8607,7.6438,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1914,2.9403,10.6320,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1915,3.1881,11.7326,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1916,5.5258,6.2025,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1917,2.8607,5.6093,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1918,2.9403,10.3705,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1919,3.1881,10.0820,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1920,5.5258,7.7843,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1921,2.8607,7.4563,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,2.9403,10.7907,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1923,3.1881,10.5692,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1924,5.5258,5.9179,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1925,2.8607,5.7137,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,2.9403,10.0734,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1927,3.1881,9.7901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1928,5.5258,6.0233,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1929,2.8607,5.6071,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,2.9403,10.3550,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1931,3.1881,10.2865,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1932,5.5258,7.7364,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1933,2.8607,7.9418,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,2.9403,10.9967,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1935,3.1881,10.8695,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1936,5.5258,6.2331,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1937,2.8607,5.8448,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,2.9403,10.4915,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1939,3.1881,10.4667,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1940,5.5258,6.0321,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1941,2.8607,5.7598,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,2.9403,10.1084,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1943,3.1881,9.9018,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1944,5.5258,6.0558,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1945,2.8607,5.8542,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,2.9403,8.6575,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1947,3.1881,10.3517,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1948,5.5258,6.9797,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1949,2.8607,6.5492,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,2.9403,10.1207,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1951,3.1881,10.0093,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1952,5.5258,6.0324,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1953,2.8607,5.7071,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,2.9403,10.1955,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1955,3.1881,10.0572,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1956,5.5258,6.8112,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1957,2.8607,6.0562,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,2.9403,10.2387,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1959,3.1881,9.9186,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1960,5.5258,6.6137,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,2.8607,5.7263,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,2.9403,8.4608,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1963,3.1881,8.0589,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1964,5.5258,6.4840,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,2.8607,5.9680,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,2.9403,10.7218,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1967,3.1881,10.4302,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1968,5.5258,6.8618,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,2.8607,5.9319,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,2.9403,12.7337,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1971,3.1881,12.4260,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1972,5.5258,6.6245,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,2.8607,5.8882,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,2.9403,11.1474,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1975,3.1881,11.0098,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1976,5.5258,7.5771,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,2.8607,5.9168,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,2.9403,10.1927,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1979,3.1881,10.4880,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1980,5.5258,6.8125,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,2.8607,7.3991,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,2.9403,9.0508,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1983,3.1881,10.2988,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1984,5.5258,7.0205,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,2.8607,6.0040,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,2.9403,10.4707,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1987,3.1881,10.0838,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1988,5.5258,6.9815,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,2.8607,6.0184,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,2.9403,11.1683,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1991,3.1881,10.8973,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1992,5.5258,6.9976,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,2.8607,6.0773,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,2.9403,10.9291,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1995,3.1881,10.6718,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1996,5.5258,6.7260,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,2.8607,5.9151,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,2.9403,10.7543,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1999,3.1881,10.2903,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2000,5.5258,7.1760,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,2.8607,6.4625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,2.9403,10.6641,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2003,3.1881,10.2265,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.5258,7.1875,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,2.8607,6.2279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,2.9403,11.4899,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2007,3.1881,11.4888,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2008,5.5258,7.4746,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,2.8607,6.9390,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,2.9403,8.7591,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2011,3.1881,10.3945,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2012,5.5258,6.3798,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,2.8607,5.9313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,2.9403,10.4970,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2015,3.1881,10.2763,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2016,5.5258,6.2408,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,2.8607,5.8019,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,2.9403,10.6647,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2019,3.1881,10.4765,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2020,5.5258,6.7227,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,2.8607,6.1595,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,2.9403,11.1335,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2023,3.1881,10.8659,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2024,5.5258,6.9658,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,2.8607,6.0136,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,2.9403,11.2986,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2027,3.1881,12.5874,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2028,5.5258,6.2486,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,2.8607,5.8809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,2.9403,10.0872,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,3.1881,10.2080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2032,5.5258,6.6538,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,2.8607,6.1566,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,2.9403,10.9254,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2035,3.1881,10.7096,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2036,5.5258,7.0922,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,2.8607,6.0350,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,2.9403,10.6751,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2039,3.1881,10.6082,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2040,5.5258,6.8316,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,2.8607,5.9646,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,2.9403,13.9266,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2043,3.1881,13.4983,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2044,5.5258,6.8004,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,2.8607,5.8721,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,2.9403,10.9641,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2047,3.1881,10.7101,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2048,5.5258,12.7901,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,2.8607,11.7460,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,2.9403,11.5922,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2051,3.1881,11.2809,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2052,5.5258,6.3345,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,2.8607,5.9158,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,2.9403,10.7479,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2055,3.1881,10.5274,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2056,5.5258,6.7191,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,2.8607,6.3829,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,2.9403,10.9601,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2059,3.1881,10.8115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2060,5.5258,6.4489,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,2.8607,5.8704,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,2.9403,11.4900,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,3.1881,12.2637,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2064,5.5258,6.9342,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,2.8607,5.9569,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,2.9403,10.7390,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2067,3.1881,10.5810,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2068,5.5258,7.2023,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,2.8607,5.9052,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,2.9403,10.9139,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2071,3.1881,10.6630,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2072,5.5258,6.9140,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,2.8607,6.1124,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,2.9403,10.8553,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,3.1881,10.6029,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2076,5.5258,6.9406,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,2.8607,6.0395,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,2.9403,11.8111,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2079,3.1881,11.4855,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2080,5.5258,6.0510,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,2.8607,5.6510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,2.9403,10.5764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2083,3.1881,10.5322,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2084,5.5258,6.1509,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,2.8607,5.8440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,2.9403,10.7121,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2087,3.1881,10.6851,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2088,5.5258,5.9058,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,2.8607,5.6346,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,2.9403,10.5271,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2091,3.1881,10.4936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2092,5.5258,6.9415,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,2.8607,6.4734,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,2.9403,10.8990,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2095,3.1881,10.6271,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2096,5.5258,6.6880,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,2.8607,5.8861,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,2.9403,10.7377,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2099,3.1881,10.7060,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2100,5.5258,7.0594,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,2.8607,6.2787,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,2.9403,10.3206,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2103,3.1881,10.0011,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2104,5.5258,6.7645,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,2.8607,5.9450,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,2.9403,10.1701,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,3.1881,10.0409,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2108,5.5258,8.0330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,2.8607,7.1565,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,2.9403,11.8755,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,3.1881,11.6284,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2112,5.5258,7.0456,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,2.8607,5.9331,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,2.9403,10.9480,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2115,3.1881,10.6163,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2116,5.5258,6.6731,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,2.8607,5.9122,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,2.9403,10.4548,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,3.1881,10.0972,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2120,5.5258,8.4270,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,2.8607,7.4362,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,2.9403,10.2850,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,3.1881,9.9163,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2124,5.5258,6.3919,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,2.8607,6.2577,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,2.9403,9.8405,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,3.1881,9.7016,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2128,5.5258,7.1357,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,2.8607,6.5792,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,2.9403,10.7732,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2131,3.1881,11.2473,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2132,5.5258,6.8167,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,2.8607,5.9207,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,2.9403,11.1658,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2135,3.1881,11.0556,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.5258,7.0767,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,2.8607,6.5937,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,2.9403,8.7647,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2139,3.1881,9.8683,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2140,5.5258,6.8930,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,2.8607,5.9710,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,2.9403,10.7785,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2143,3.1881,10.6898,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2144,5.5258,7.1920,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,2.8607,6.0310,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,2.9403,10.7457,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2147,3.1881,10.5082,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2148,5.5258,11.4000,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,2.8607,8.5240,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,2.9403,10.3007,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2151,3.1881,10.2395,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2152,5.5258,6.6508,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,2.8607,5.8863,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,2.9403,10.3594,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2155,3.1881,10.1858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2156,5.5258,6.5051,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,2.8607,6.2629,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,2.9403,10.5405,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2159,3.1881,10.2564,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2160,5.5258,7.4530,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2161,2.8607,7.5125,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2162,2.9403,9.6962,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2163,3.1881,10.0133,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2164,5.5258,6.9496,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2165,2.8607,6.3405,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2166,2.9403,11.3240,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2167,3.1881,11.0803,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2168,5.5258,6.7113,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2169,2.8607,6.0377,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2170,2.9403,11.5945,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2171,3.1881,11.6528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2172,5.5258,6.7447,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2173,2.8607,5.8770,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2174,2.9403,10.7538,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2175,3.1881,10.4840,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2176,5.5258,7.0710,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2177,2.8607,6.0752,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2178,2.9403,10.6550,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2179,3.1881,10.1959,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2180,5.5258,6.8149,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2181,2.8607,5.9590,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2182,2.9403,10.2271,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2183,3.1881,9.7885,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2184,5.5258,7.5250,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2185,2.8607,8.9085,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2186,2.9403,11.1538,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2187,3.1881,11.1240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2188,5.5258,6.5345,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2189,2.8607,5.6733,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2190,2.9403,10.4819,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2191,3.1881,10.2588,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2192,5.5258,6.7855,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2193,2.8607,5.8273,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2194,2.9403,10.8591,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2195,3.1881,10.1029,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2196,5.5258,7.1551,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2197,2.8607,5.7630,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2198,2.9403,10.6900,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2199,3.1881,10.4500,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2200,5.5258,6.4388,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2201,2.8607,5.8003,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2202,2.9403,6.7102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2203,3.1881,10.4050,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2204,5.5258,6.0055,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2205,2.8607,5.6895,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2206,2.9403,10.7426,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2207,3.1881,10.7018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2208,5.5258,5.9687,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2209,2.8607,5.6521,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2210,2.9403,10.6943,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2211,3.1881,10.6347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2212,5.5258,6.6723,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2213,2.8607,6.1681,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2214,2.9403,11.0450,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2215,3.1881,10.8486,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2216,5.5258,6.4025,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2217,2.8607,5.8890,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2218,2.9403,10.8475,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2219,3.1881,10.1843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2220,5.5258,6.5244,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2221,2.8607,5.7621,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2222,2.9403,11.3544,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2223,3.1881,11.4076,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2224,5.5258,7.1537,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2225,2.8607,5.9933,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2226,2.9403,12.5213,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2227,3.1881,12.7300,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2228,5.5258,6.8119,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2229,2.8607,6.0085,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2230,2.9403,10.9776,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2231,3.1881,10.8833,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2232,5.5258,7.0658,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2233,2.8607,5.8493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2234,2.9403,11.4066,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2235,3.1881,11.1004,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2236,5.5258,7.1309,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2237,2.8607,6.6329,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2238,2.9403,11.0325,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2239,3.1881,10.7912,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2240,5.5258,6.9770,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2241,2.8607,6.0939,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2242,2.9403,10.7983,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2243,3.1881,10.6067,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2244,5.5258,7.0930,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2245,2.8607,6.2588,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2246,2.9403,11.0487,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2247,3.1881,10.8067,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2248,5.5258,6.8598,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2249,2.8607,6.1970,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2250,2.9403,10.7732,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,3.1881,10.5597,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2252,5.5258,6.5872,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2253,2.8607,5.9315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2254,2.9403,9.8100,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2255,3.1881,9.2818,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2256,5.5258,7.3788,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2257,2.8607,6.6578,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2258,2.9403,10.9176,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2259,3.1881,10.6836,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2260,5.5258,8.3458,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2261,2.8607,7.5837,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2262,2.9403,9.1812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2263,3.1881,9.4327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2264,5.5258,6.4278,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2265,2.8607,6.0305,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2266,2.9403,13.3492,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2267,3.1881,13.2028,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2268,5.5258,7.0061,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2269,2.8607,5.9924,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2270,2.9403,10.8127,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2271,3.1881,10.5807,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2272,5.5258,6.9314,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2273,2.8607,6.1535,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2274,2.9403,10.8372,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2275,3.1881,10.7532,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2276,5.5258,6.8478,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2277,2.8607,5.9829,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2278,2.9403,10.5694,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2279,3.1881,10.1107,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2280,5.5258,6.6409,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2281,2.8607,5.8660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,2.9403,13.3400,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2283,3.1881,13.3414,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2284,5.5258,6.3344,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2285,2.8607,5.7824,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,2.9403,10.7800,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2287,3.1881,10.5453,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2288,5.5258,7.3684,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2289,2.8607,5.7041,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,2.9403,10.6945,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2291,3.1881,10.7149,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2292,5.5258,7.6373,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2293,2.8607,6.6280,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,2.9403,10.9407,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2295,3.1881,10.8525,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2296,5.5258,6.5456,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2297,2.8607,5.9079,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,2.9403,11.0663,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2299,3.1881,10.8078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2300,5.5258,6.6230,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2301,2.8607,6.0325,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,2.9403,11.1289,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2303,3.1881,10.9260,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.5258,7.0191,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2305,2.8607,5.9496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,2.9403,10.1815,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2307,3.1881,9.7965,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2308,5.5258,6.3123,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2309,2.8607,5.8552,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,2.9403,10.5905,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2311,3.1881,10.5112,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2312,5.5258,5.9017,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2313,2.8607,5.5957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,2.9403,10.4896,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2315,3.1881,10.3376,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2316,5.5258,5.8902,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2317,2.8607,5.6958,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,2.9403,10.3146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2319,3.1881,10.2169,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2320,5.5258,5.8272,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,2.8607,5.5945,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,2.9403,10.3674,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2323,3.1881,10.1531,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2324,5.5258,6.3218,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,2.8607,5.9561,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,2.9403,10.7154,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2327,3.1881,10.4975,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2328,5.5258,6.7600,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,2.8607,6.1396,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,2.9403,10.7542,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2331,3.1881,10.4309,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2332,5.5258,7.0187,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,2.8607,5.9007,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,2.9403,11.5169,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2335,3.1881,11.1874,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2336,5.5258,6.6044,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,2.8607,5.9694,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,2.9403,10.7817,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2339,3.1881,10.4105,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2340,5.5258,7.1084,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,2.8607,5.8423,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,2.9403,10.5191,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2343,3.1881,9.7776,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2344,5.5258,7.2726,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,2.8607,6.8456,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,2.9403,8.6405,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2347,3.1881,10.4560,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2348,5.5258,8.8114,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,2.8607,8.1428,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,2.9403,10.4862,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2351,3.1881,10.2953,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2352,5.5258,6.4740,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,2.8607,5.8946,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,2.9403,10.7545,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2355,3.1881,10.6601,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2356,5.5258,6.5006,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,2.8607,5.8813,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,2.9403,10.7225,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2359,3.1881,10.7531,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2360,5.5258,8.9242,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,2.8607,8.6286,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,2.9403,10.5698,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2363,3.1881,10.3193,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.5258,6.8988,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,2.8607,6.0386,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,2.9403,10.8293,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2367,3.1881,10.5879,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2368,5.5258,6.7546,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,2.8607,5.9320,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,2.9403,10.6964,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2371,3.1881,10.4283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2372,5.5258,6.9022,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,2.8607,6.0437,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,2.9403,10.8996,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2375,3.1881,10.6528,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2376,5.5258,6.9906,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,2.8607,5.9311,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,2.9403,10.7192,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,3.1881,10.4864,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2380,5.5258,6.5745,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,2.8607,5.8994,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,2.9403,10.9564,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,3.1881,10.4722,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2384,5.5258,7.7203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,2.8607,9.0259,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,2.9403,9.7102,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,3.1881,9.7755,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2388,5.5258,11.8940,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,2.8607,10.1680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,2.9403,10.6060,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,3.1881,10.3620,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2392,5.5258,6.4622,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,2.8607,5.7010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,2.9403,10.3915,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2395,3.1881,10.2162,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2396,5.5258,6.2164,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,2.8607,5.7185,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,2.9403,10.5782,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2399,3.1881,10.3197,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2400,5.5258,33.4258,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2401,2.8607,28.3434,0.0086,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2402,2.9403,26.3835,0.0059,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2403,3.1881,26.2881,0.0114,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2404,5.5258,5.7693,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2405,2.8607,5.6017,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2406,2.9403,10.4814,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2407,3.1881,10.4648,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2408,5.5258,5.8263,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2409,2.8607,5.5759,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2410,2.9403,10.6003,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2411,3.1881,10.5785,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2412,5.5258,5.7542,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2413,2.8607,5.6755,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2414,2.9403,10.5139,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2415,3.1881,10.5409,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2416,5.5258,5.7157,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2417,2.8607,5.6113,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2418,2.9403,10.4179,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2419,3.1881,10.4418,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2420,5.5258,5.8492,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2421,2.8607,5.6055,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2422,2.9403,10.7280,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2423,3.1881,10.6543,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2424,5.5258,5.7485,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2425,2.8607,5.6796,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2426,2.9403,11.8529,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2427,3.1881,11.6277,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2428,5.5258,5.8286,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2429,2.8607,5.6229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2430,2.9403,10.5126,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2431,3.1881,10.4734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2432,5.5258,5.8739,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2433,2.8607,5.6825,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2434,2.9403,10.5172,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2435,3.1881,10.4334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2436,5.5258,5.8695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2437,2.8607,5.6778,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2438,2.9403,10.5550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2439,3.1881,10.5315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2440,5.5258,5.8560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2441,2.8607,5.6566,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2442,2.9403,10.5396,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2443,3.1881,10.4419,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2444,5.5258,5.9859,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2445,2.8607,5.7572,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2446,2.9403,10.7569,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2447,3.1881,10.6987,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2448,5.5258,5.8771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2449,2.8607,5.7624,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2450,2.9403,10.5749,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2451,3.1881,10.5087,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2452,5.5258,6.4370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2453,2.8607,6.1623,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2454,2.9403,11.2257,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2455,3.1881,10.8895,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2456,5.5258,5.8810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2457,2.8607,5.6243,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2458,2.9403,10.6274,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2459,3.1881,10.5740,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2460,5.5258,6.3662,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2461,2.8607,5.9751,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2462,2.9403,18.2123,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2463,3.1881,18.7625,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2464,5.5258,6.6685,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2465,2.8607,5.8937,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2466,2.9403,11.1444,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2467,3.1881,10.8011,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2468,5.5258,6.6130,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2469,2.8607,5.8552,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2470,2.9403,10.4167,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2471,3.1881,10.3725,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2472,5.5258,6.9761,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2473,2.8607,6.4528,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2474,2.9403,11.5886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2475,3.1881,11.3475,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2476,5.5258,6.1943,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2477,2.8607,5.7975,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2478,2.9403,10.9120,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2479,3.1881,10.8170,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2480,5.5258,6.1400,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2481,2.8607,5.7291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2482,2.9403,10.8045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2483,3.1881,10.7519,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2484,5.5258,5.9956,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2485,2.8607,5.6954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2486,2.9403,10.7566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2487,3.1881,10.7103,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2488,5.5258,5.8953,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2489,2.8607,5.6718,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2490,2.9403,10.7341,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2491,3.1881,10.7100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2492,5.5258,5.9910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2493,2.8607,5.8068,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2494,2.9403,10.8172,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2495,3.1881,10.8205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2496,5.5258,5.9315,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2497,2.8607,5.7681,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2498,2.9403,10.8297,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2499,3.1881,10.8119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2500,5.5258,6.0589,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2501,2.8607,5.7514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2502,2.9403,10.5530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2503,3.1881,10.5111,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2504,5.5258,6.0019,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2505,2.8607,5.6820,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2506,2.9403,10.5771,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2507,3.1881,10.5104,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2508,5.5258,5.6687,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2509,2.8607,5.5541,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2510,2.9403,10.4929,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2511,3.1881,10.4803,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2512,5.5258,5.6621,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2513,2.8607,5.5755,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2514,2.9403,10.3624,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2515,3.1881,10.4009,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2516,5.5258,5.6786,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2517,2.8607,5.6038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2518,2.9403,10.4113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2519,3.1881,10.4026,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2520,5.5258,5.6269,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2521,2.8607,5.5519,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2522,2.9403,10.4123,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2523,3.1881,10.4042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2524,5.5258,5.7116,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2525,2.8607,5.6062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2526,2.9403,10.2871,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2527,3.1881,10.3050,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2528,5.5258,5.6720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2529,2.8607,5.5543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2530,2.9403,10.3330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2531,3.1881,10.2648,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2532,5.5258,5.9470,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2533,2.8607,5.6560,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2534,2.9403,10.5457,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2535,3.1881,10.4854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2536,5.5258,6.0527,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2537,2.8607,5.7166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2538,2.9403,10.6977,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2539,3.1881,10.4742,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2540,5.5258,6.0970,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2541,2.8607,5.7932,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2542,2.9403,10.7170,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2543,3.1881,10.4992,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2544,5.5258,6.1335,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2545,2.8607,5.7485,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2546,2.9403,10.6500,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2547,3.1881,10.5326,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2548,5.5258,6.2092,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2549,2.8607,5.8137,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2550,2.9403,10.6360,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2551,3.1881,10.4885,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2552,5.5258,6.2576,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2553,2.8607,5.8140,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2554,2.9403,10.7810,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2555,3.1881,10.6260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2556,5.5258,7.0810,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2557,2.8607,6.2921,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2558,2.9403,10.7983,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2559,3.1881,10.4647,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2560,5.5258,7.0586,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2561,2.8607,5.9836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2562,2.9403,10.4225,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2563,3.1881,10.4149,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2564,5.5258,7.3280,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2565,2.8607,6.2958,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2566,2.9403,10.7017,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2567,3.1881,10.2493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2568,5.5258,6.5821,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2569,2.8607,6.2616,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2570,2.9403,11.3417,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2571,3.1881,10.9195,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2572,5.5258,7.0571,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2573,2.8607,6.2720,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2574,2.9403,11.4362,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2575,3.1881,12.6792,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2576,5.5258,6.7217,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2577,2.8607,6.0835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2578,2.9403,10.9722,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2579,3.1881,10.9974,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2580,5.5258,7.6351,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2581,2.8607,6.0524,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2582,2.9403,10.0892,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2583,3.1881,10.4252,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2584,5.5258,9.7918,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2585,2.8607,8.5145,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2586,2.9403,10.7490,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2587,3.1881,10.4662,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2588,5.5258,6.8935,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2589,2.8607,6.0644,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2590,2.9403,11.4350,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2591,3.1881,11.4018,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2592,5.5258,7.0777,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2593,2.8607,6.0617,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2594,2.9403,10.6690,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2595,3.1881,10.2635,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2596,5.5258,6.8758,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2597,2.8607,5.9381,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2598,2.9403,10.6186,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2599,3.1881,10.1242,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2600,5.5258,6.6355,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2601,2.8607,6.0562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2602,2.9403,13.1475,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2603,3.1881,12.6619,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2604,5.5258,6.8371,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2605,2.8607,5.9075,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2606,2.9403,11.0852,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2607,3.1881,10.8630,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2608,5.5258,6.5898,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2609,2.8607,5.8969,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2610,2.9403,12.7587,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2611,3.1881,12.3134,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2612,5.5258,6.6075,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2613,2.8607,5.9470,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2614,2.9403,10.7672,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2615,3.1881,10.2655,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2616,5.5258,6.8937,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2617,2.8607,5.9947,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2618,2.9403,10.5715,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2619,3.1881,10.4431,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2620,5.5258,8.2062,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2621,2.8607,7.5739,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2622,2.9403,13.9406,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2623,3.1881,13.1890,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2624,5.5258,7.0144,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2625,2.8607,6.1274,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2626,2.9403,11.0031,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2627,3.1881,10.7290,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2628,5.5258,6.8376,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2629,2.8607,6.0418,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2630,2.9403,10.5424,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2631,3.1881,10.1684,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2632,5.5258,7.0154,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2633,2.8607,6.1779,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2634,2.9403,10.4725,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2635,3.1881,10.1770,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2636,5.5258,6.1903,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2637,2.8607,5.8170,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2638,2.9403,10.7278,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2639,3.1881,10.5911,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2640,5.5258,6.4782,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2641,2.8607,6.1302,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2642,2.9403,10.5175,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2643,3.1881,10.2075,0.1159,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2644,5.5258,6.8429,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2645,2.8607,5.9945,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2646,2.9403,10.8948,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2647,3.1881,10.4665,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2648,5.5258,6.7527,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2649,2.8607,5.9796,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2650,2.9403,10.6162,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2651,3.1881,10.5656,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2652,5.5258,6.9715,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2653,2.8607,6.3463,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2654,2.9403,10.0957,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2655,3.1881,10.2263,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2656,5.5258,6.7353,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2657,2.8607,6.0199,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2658,2.9403,11.2535,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2659,3.1881,11.0097,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2660,5.5258,6.9255,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2661,2.8607,6.0442,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2662,2.9403,10.8752,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2663,3.1881,10.8349,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2664,5.5258,6.8643,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2665,2.8607,5.9436,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2666,2.9403,14.7237,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2667,3.1881,14.7879,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2668,5.5258,6.9054,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2669,2.8607,9.5271,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2670,2.9403,10.5697,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2671,3.1881,10.1409,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2672,5.5258,6.6734,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2673,2.8607,5.9374,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2674,2.9403,10.3640,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2675,3.1881,10.2841,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2676,5.5258,8.9681,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2677,2.8607,7.8812,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2678,2.9403,10.4187,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2679,3.1881,10.0968,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2680,5.5258,6.8411,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2681,2.8607,5.9680,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2682,2.9403,13.3942,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2683,3.1881,13.1107,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2684,5.5258,7.0012,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2685,2.8607,6.1669,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2686,2.9403,11.0077,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2687,3.1881,10.9563,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2688,5.5258,6.8237,0.0250,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2689,2.8607,5.9763,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2690,2.9403,10.7526,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2691,3.1881,10.4434,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2692,5.5258,7.1133,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2693,2.8607,6.2148,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2694,2.9403,10.3045,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2695,3.1881,10.0642,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2696,5.5258,13.0550,0.0287,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2697,2.8607,12.1763,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2698,2.9403,11.7614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2699,3.1881,11.4447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2700,5.5258,6.7875,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2701,2.8607,6.6963,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2702,2.9403,9.5451,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2703,3.1881,10.0330,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2704,5.5258,6.9881,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2705,2.8607,6.4497,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2706,2.9403,10.6496,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2707,3.1881,10.4405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2708,5.5258,7.1345,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2709,2.8607,5.9023,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2710,2.9403,10.8225,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2711,3.1881,10.7854,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2712,5.5258,7.4004,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2713,2.8607,6.5083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2714,2.9403,10.5352,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2715,3.1881,10.1690,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2716,5.5258,6.8213,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2717,2.8607,6.1525,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2718,2.9403,11.9905,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2719,3.1881,11.4999,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2720,5.5258,6.1716,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2721,2.8607,5.7202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2722,2.9403,10.6057,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2723,3.1881,10.5134,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2724,5.5258,7.0139,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2725,2.8607,6.6615,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2726,2.9403,11.0933,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2727,3.1881,11.0711,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2728,5.5258,6.8906,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2729,2.8607,6.1377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2730,2.9403,10.2465,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2731,3.1881,10.2008,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2732,5.5258,6.5167,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2733,2.8607,5.7778,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2734,2.9403,11.2565,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2735,3.1881,11.0422,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2736,5.5258,6.7208,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2737,2.8607,5.9689,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2738,2.9403,11.1528,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2739,3.1881,11.0641,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2740,5.5258,6.6202,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2741,2.8607,6.1291,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2742,2.9403,10.6150,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2743,3.1881,10.1130,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2744,5.5258,7.1464,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2745,2.8607,6.2106,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2746,2.9403,10.5783,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2747,3.1881,10.4712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2748,5.5258,6.8830,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2749,2.8607,6.9086,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2750,2.9403,5.8991,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2751,3.1881,10.2290,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2752,5.5258,6.5899,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2753,2.8607,5.9336,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2754,2.9403,11.1487,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2755,3.1881,11.1084,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2756,5.5258,7.0995,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2757,2.8607,6.0853,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2758,2.9403,10.9940,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2759,3.1881,10.7035,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2760,5.5258,7.0769,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2761,2.8607,6.0797,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2762,2.9403,10.7199,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2763,3.1881,10.4234,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2764,5.5258,6.8444,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2765,2.8607,6.1512,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2766,2.9403,12.2771,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2767,3.1881,12.1881,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2768,5.5258,7.5503,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2769,2.8607,6.6645,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2770,2.9403,10.7503,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2771,3.1881,10.6243,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2772,5.5258,7.1364,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2773,2.8607,5.9732,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2774,2.9403,13.2672,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2775,3.1881,13.3475,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2776,5.5258,6.3177,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2777,2.8607,5.9132,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2778,2.9403,10.8986,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2779,3.1881,10.6061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2780,5.5258,8.3435,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2781,2.8607,7.8846,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2782,2.9403,10.8217,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2783,3.1881,10.7035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2784,5.5258,6.9245,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2785,2.8607,5.9116,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2786,2.9403,10.3952,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2787,3.1881,10.2128,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2788,5.5258,5.8005,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2789,2.8607,5.4870,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2790,2.9403,10.3590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2791,3.1881,10.3466,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2792,5.5258,5.5934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2793,2.8607,5.4960,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2794,2.9403,10.3205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2795,3.1881,10.3105,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2796,5.5258,5.7511,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2797,2.8607,5.5810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2798,2.9403,10.4946,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2799,3.1881,10.4653,0.0229,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2800,5.5258,6.0552,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2801,2.8607,5.7606,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2802,2.9403,10.8664,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2803,3.1881,10.7364,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2804,5.5258,6.6238,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2805,2.8607,6.0811,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2806,2.9403,11.0758,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2807,3.1881,10.8509,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2808,5.5258,6.8310,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2809,2.8607,5.8936,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2810,2.9403,11.5845,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2811,3.1881,11.2483,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2812,5.5258,6.6325,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2813,2.8607,5.9041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2814,2.9403,11.2510,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2815,3.1881,11.2424,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2816,5.5258,6.9520,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2817,2.8607,6.0866,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2818,2.9403,10.9397,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2819,3.1881,10.4134,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2820,5.5258,7.6385,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2821,2.8607,6.3667,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2822,2.9403,10.9341,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2823,3.1881,10.6667,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2824,5.5258,7.8870,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2825,2.8607,6.7988,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2826,2.9403,10.4913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2827,3.1881,10.4738,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2828,5.5258,6.3600,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2829,2.8607,5.7916,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2830,2.9403,10.9103,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2831,3.1881,10.8566,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2832,5.5258,6.7609,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2833,2.8607,5.9679,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2834,2.9403,10.3450,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2835,3.1881,10.2970,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2836,5.5258,6.7671,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2837,2.8607,6.3779,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2838,2.9403,8.2688,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2839,3.1881,10.4350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2840,5.5258,6.7809,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2841,2.8607,6.2190,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2842,2.9403,14.6290,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2843,3.1881,14.4385,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2844,5.5258,6.7070,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2845,2.8607,5.8331,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2846,2.9403,11.5780,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2847,3.1881,11.0565,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2848,5.5258,6.7659,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2849,2.8607,5.9268,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2850,2.9403,10.4790,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2851,3.1881,10.1277,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2852,5.5258,6.8496,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2853,2.8607,6.0245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2854,2.9403,10.0512,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2855,3.1881,9.8796,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2856,5.5258,6.7882,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2857,2.8607,5.9026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2858,2.9403,10.6332,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2859,3.1881,11.3069,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2860,5.5258,6.6288,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2861,2.8607,5.9350,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2862,2.9403,10.9685,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2863,3.1881,10.7030,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2864,5.5258,6.7034,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2865,2.8607,6.1036,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2866,2.9403,14.1665,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2867,3.1881,14.1158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2868,5.5258,6.9858,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2869,2.8607,5.9576,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2870,2.9403,10.7172,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2871,3.1881,10.5202,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2872,5.5258,7.3593,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2873,2.8607,5.8864,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2874,2.9403,10.1759,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2875,3.1881,10.1903,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2876,5.5258,7.1367,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2877,2.8607,6.9763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2878,2.9403,12.5671,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2879,3.1881,12.6072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2880,5.5258,6.4566,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2881,2.8607,5.7347,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2882,2.9403,11.3210,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2883,3.1881,11.2214,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2884,5.5258,6.2826,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2885,2.8607,5.8361,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2886,2.9403,10.7324,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2887,3.1881,10.6679,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2888,5.5258,6.5691,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2889,2.8607,5.8620,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2890,2.9403,10.0520,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2891,3.1881,9.9957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2892,5.5258,6.4684,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2893,2.8607,5.9156,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2894,2.9403,10.6487,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2895,3.1881,10.4019,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2896,5.5258,6.6712,0.0373,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2897,2.8607,6.1331,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2898,2.9403,10.5026,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2899,3.1881,10.3250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2900,5.5258,6.8555,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2901,2.8607,5.8983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2902,2.9403,13.5079,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2903,3.1881,12.9095,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2904,5.5258,6.5888,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2905,2.8607,5.9662,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2906,2.9403,10.7332,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2907,3.1881,10.6018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2908,5.5258,7.1565,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2909,2.8607,8.2654,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2910,2.9403,10.1761,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2911,3.1881,10.0321,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2912,5.5258,6.5800,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2913,2.8607,5.8673,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2914,2.9403,13.1836,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2915,3.1881,12.9944,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2916,5.5258,6.9573,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2917,2.8607,5.9386,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2918,2.9403,11.0511,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2919,3.1881,10.8054,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2920,5.5258,6.5406,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2921,2.8607,5.8456,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2922,2.9403,10.7866,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2923,3.1881,10.3820,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2924,5.5258,7.5697,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2925,2.8607,6.8161,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2926,2.9403,11.5241,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2927,3.1881,11.4501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2928,5.5258,6.8319,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2929,2.8607,6.0010,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2930,2.9403,10.3097,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2931,3.1881,10.5932,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2932,5.5258,7.4727,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2933,2.8607,6.5808,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2934,2.9403,10.6881,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2935,3.1881,10.4541,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2936,5.5258,6.5005,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2937,2.8607,5.9067,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2938,2.9403,10.7397,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2939,3.1881,10.3205,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2940,5.5258,6.9350,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2941,2.8607,6.0373,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2942,2.9403,10.9873,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2943,3.1881,10.7460,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2944,5.5258,6.8534,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2945,2.8607,6.0326,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2946,2.9403,10.2815,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2947,3.1881,10.1570,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2948,5.5258,6.9689,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2949,2.8607,6.2974,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2950,2.9403,10.3958,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2951,3.1881,10.0534,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2952,5.5258,6.5506,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2953,2.8607,6.4382,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2954,2.9403,10.7722,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2955,3.1881,10.5897,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2956,5.5258,6.5901,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2957,2.8607,5.9403,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2958,2.9403,10.8226,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2959,3.1881,10.6782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2960,5.5258,6.8045,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2961,2.8607,5.9204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2962,2.9403,11.4524,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2963,3.1881,11.1434,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2964,5.5258,6.9487,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2965,2.8607,6.1257,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2966,2.9403,10.4375,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2967,3.1881,10.1745,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2968,5.5258,9.2825,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2969,2.8607,8.2833,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2970,2.9403,10.3859,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2971,3.1881,10.2048,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2972,5.5258,6.9372,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2973,2.8607,5.9414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2974,2.9403,11.0558,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2975,3.1881,10.7247,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2976,5.5258,6.8297,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2977,2.8607,6.0450,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2978,2.9403,10.3847,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2979,3.1881,10.3184,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2980,5.5258,7.0713,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2981,2.8607,6.0615,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2982,2.9403,10.8801,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2983,3.1881,10.6107,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2984,5.5258,9.9955,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2985,2.8607,6.9726,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2986,2.9403,5.9035,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2987,3.1881,10.0666,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2988,5.5258,5.8795,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2989,2.8607,5.5578,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2990,2.9403,10.6036,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2991,3.1881,10.4570,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2992,5.5258,6.0832,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2993,2.8607,5.6575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2994,2.9403,10.9087,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2995,3.1881,10.9848,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2996,5.5258,6.3540,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2997,2.8607,5.9210,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2998,2.9403,10.1940,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2999,3.1881,10.0441,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3000,5.5258,40.2044,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3001,2.8607,25.7915,0.0081,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3002,2.9403,25.5041,0.0051,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3003,3.1881,26.4786,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3004,5.5258,5.6958,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3005,2.8607,5.5703,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3006,2.9403,10.4965,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3007,3.1881,10.4969,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3008,5.5258,6.4947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3009,2.8607,6.2139,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3010,2.9403,11.2531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3011,3.1881,11.0405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3012,5.5258,5.7915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3013,2.8607,5.6791,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3014,2.9403,10.5203,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3015,3.1881,10.5201,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3016,5.5258,5.6070,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3017,2.8607,5.5155,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3018,2.9403,10.4076,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3019,3.1881,10.3456,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3020,5.5258,5.8527,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3021,2.8607,5.6960,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3022,2.9403,10.5045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3023,3.1881,10.5029,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3024,5.5258,5.8762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3025,2.8607,5.6889,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3026,2.9403,10.5501,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3027,3.1881,10.5205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3028,5.5258,5.6679,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3029,2.8607,5.5468,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3030,2.9403,10.4130,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3031,3.1881,10.4176,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3032,5.5258,5.8844,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3033,2.8607,5.6335,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3034,2.9403,10.3689,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3035,3.1881,10.2927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3036,5.5258,5.7389,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3037,2.8607,5.5994,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3038,2.9403,10.6377,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3039,3.1881,10.6677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3040,5.5258,5.9597,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3041,2.8607,5.7256,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3042,2.9403,10.7139,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3043,3.1881,10.5187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3044,5.5258,5.9662,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3045,2.8607,5.7227,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3046,2.9403,10.8595,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3047,3.1881,10.7784,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3048,5.5258,6.0472,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3049,2.8607,5.7100,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3050,2.9403,10.7052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3051,3.1881,10.6395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3052,5.5258,6.1502,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3053,2.8607,5.8212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3054,2.9403,11.0481,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3055,3.1881,10.7807,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3056,5.5258,6.3224,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3057,2.8607,5.9138,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3058,2.9403,10.8737,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3059,3.1881,10.7344,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3060,5.5258,6.0792,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3061,2.8607,5.7036,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3062,2.9403,11.2737,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3063,3.1881,11.3529,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3064,5.5258,6.3665,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3065,2.8607,5.8280,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3066,2.9403,10.5653,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3067,3.1881,10.3011,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3068,5.5258,6.9476,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3069,2.8607,6.1487,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3070,2.9403,10.0337,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3071,3.1881,10.0427,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3072,5.5258,7.0549,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3073,2.8607,6.0001,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3074,2.9403,11.1215,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3075,3.1881,11.0410,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3076,5.5258,6.7076,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3077,2.8607,5.9589,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3078,2.9403,10.4664,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3079,3.1881,10.4485,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3080,5.5258,6.7887,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3081,2.8607,5.9478,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3082,2.9403,14.2056,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3083,3.1881,13.9052,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3084,5.5258,7.0575,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3085,2.8607,6.2510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3086,2.9403,10.5831,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3087,3.1881,10.5655,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3088,5.5258,10.2511,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3089,2.8607,5.8011,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3090,2.9403,11.2918,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3091,3.1881,10.9118,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3092,5.5258,6.8185,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3093,2.8607,6.6375,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3094,2.9403,8.9913,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3095,3.1881,10.8859,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3096,5.5258,7.0224,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3097,2.8607,6.0200,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3098,2.9403,10.6592,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3099,3.1881,10.5402,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3100,5.5258,6.6431,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3101,2.8607,5.9799,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3102,2.9403,9.9968,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3103,3.1881,9.8386,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3104,5.5258,6.2475,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3105,2.8607,5.8104,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3106,2.9403,13.3889,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3107,3.1881,13.2000,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3108,5.5258,6.6407,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3109,2.8607,6.2289,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3110,2.9403,11.3473,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3111,3.1881,10.9289,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3112,5.5258,6.5678,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3113,2.8607,5.8337,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3114,2.9403,10.9026,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3115,3.1881,9.2400,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3116,5.5258,6.9515,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3117,2.8607,6.3490,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3118,2.9403,10.8718,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3119,3.1881,10.6747,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3120,5.5258,6.8386,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3121,2.8607,6.1601,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3122,2.9403,10.6507,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3123,3.1881,10.4836,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3124,5.5258,6.6657,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3125,2.8607,5.8909,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3126,2.9403,11.8443,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3127,3.1881,11.6636,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3128,5.5258,7.3057,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3129,2.8607,6.4313,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3130,2.9403,10.4212,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3131,3.1881,10.4641,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3132,5.5258,8.9100,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3133,2.8607,8.1056,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3134,2.9403,10.5605,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3135,3.1881,10.2424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3136,5.5258,6.8080,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3137,2.8607,6.0013,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3138,2.9403,11.2718,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3139,3.1881,11.0401,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3140,5.5258,6.9100,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3141,2.8607,6.1337,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3142,2.9403,10.4154,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3143,3.1881,10.4151,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3144,5.5258,6.5607,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3145,2.8607,7.4871,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3146,2.9403,10.2443,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3147,3.1881,9.4772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3148,5.5258,6.9612,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3149,2.8607,6.1736,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3150,2.9403,10.7942,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3151,3.1881,10.5527,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3152,5.5258,6.4655,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3153,2.8607,5.9035,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3154,2.9403,11.3319,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3155,3.1881,10.9126,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3156,5.5258,7.1230,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3157,2.8607,6.1979,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3158,2.9403,11.2272,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3159,3.1881,11.2495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3160,5.5258,6.8097,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3161,2.8607,5.9498,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3162,2.9403,10.6322,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3163,3.1881,10.3534,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3164,5.5258,7.8120,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3165,2.8607,6.1356,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3166,2.9403,16.3123,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3167,3.1881,16.4405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3168,5.5258,9.5354,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3169,2.8607,8.8349,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3170,2.9403,10.8537,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3171,3.1881,10.5542,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3172,5.5258,7.3887,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3173,2.8607,6.3500,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3174,2.9403,12.0315,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3175,3.1881,12.0275,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3176,5.5258,6.9444,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3177,2.8607,5.9209,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3178,2.9403,11.1111,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3179,3.1881,10.8894,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3180,5.5258,6.5768,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3181,2.8607,6.0033,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3182,2.9403,10.0320,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3183,3.1881,10.1125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3184,5.5258,7.3271,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3185,2.8607,5.9415,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3186,2.9403,12.7531,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3187,3.1881,12.3363,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3188,5.5258,7.3177,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3189,2.8607,6.5729,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3190,2.9403,11.1235,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3191,3.1881,10.9176,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3192,5.5258,6.9443,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3193,2.8607,6.0043,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3194,2.9403,14.2490,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3195,3.1881,13.8928,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3196,5.5258,6.6895,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3197,2.8607,5.9000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3198,2.9403,11.2245,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3199,3.1881,10.9902,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3200,5.5258,7.0131,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3201,2.8607,6.3460,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3202,2.9403,10.2605,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3203,3.1881,10.6322,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3204,5.5258,7.0905,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3205,2.8607,6.2390,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3206,2.9403,10.2794,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3207,3.1881,10.4287,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3208,5.5258,6.8877,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3209,2.8607,6.4538,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3210,2.9403,10.9952,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3211,3.1881,10.6215,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3212,5.5258,6.7665,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3213,2.8607,5.8760,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3214,2.9403,11.0785,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3215,3.1881,11.4314,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3216,5.5258,6.8855,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3217,2.8607,6.2965,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3218,2.9403,9.8376,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3219,3.1881,10.0302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3220,5.5258,6.9658,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3221,2.8607,5.8840,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3222,2.9403,10.6934,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3223,3.1881,10.3338,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3224,5.5258,7.1119,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3225,2.8607,5.9641,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3226,2.9403,10.7998,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3227,3.1881,10.5645,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3228,5.5258,7.0959,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3229,2.8607,6.1461,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3230,2.9403,11.1918,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3231,3.1881,10.8957,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3232,5.5258,6.7918,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3233,2.8607,6.0309,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3234,2.9403,10.7001,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3235,3.1881,10.5043,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3236,5.5258,7.2082,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3237,2.8607,5.9887,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3238,2.9403,11.0679,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3239,3.1881,10.8242,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3240,5.5258,6.6386,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3241,2.8607,5.9280,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3242,2.9403,11.0620,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3243,3.1881,7.6773,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3244,5.5258,7.1034,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3245,2.8607,6.7165,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3246,2.9403,11.0175,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3247,3.1881,10.7232,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3248,5.5258,6.8172,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3249,2.8607,6.5305,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3250,2.9403,10.7303,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3251,3.1881,10.3648,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3252,5.5258,6.9122,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3253,2.8607,6.0255,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3254,2.9403,10.6454,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3255,3.1881,10.4505,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3256,5.5258,6.4818,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3257,2.8607,5.9256,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3258,2.9403,10.9997,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3259,3.1881,10.8327,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3260,5.5258,6.5687,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3261,2.8607,6.0385,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3262,2.9403,11.6280,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3263,3.1881,11.4500,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3264,5.5258,6.6358,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3265,2.8607,6.1080,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3266,2.9403,9.6079,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3267,3.1881,10.5801,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3268,5.5258,6.9854,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3269,2.8607,6.2581,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3270,2.9403,10.7075,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3271,3.1881,10.4202,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3272,5.5258,6.8897,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3273,2.8607,6.0580,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3274,2.9403,10.6069,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3275,3.1881,10.3673,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3276,5.5258,6.7860,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3277,2.8607,5.9917,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3278,2.9403,10.6856,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3279,3.1881,10.2965,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3280,5.5258,6.8078,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3281,2.8607,6.1863,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3282,2.9403,10.8342,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3283,3.1881,10.7256,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3284,5.5258,7.0935,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3285,2.8607,6.2541,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3286,2.9403,11.5353,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3287,3.1881,11.2346,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3288,5.5258,7.1922,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3289,2.8607,5.9733,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3290,2.9403,10.8730,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3291,3.1881,10.7351,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3292,5.5258,7.6360,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3293,2.8607,6.0073,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3294,2.9403,10.8498,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3295,3.1881,10.5746,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3296,5.5258,6.8669,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3297,2.8607,5.9628,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3298,2.9403,10.9044,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3299,3.1881,10.7016,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3300,5.5258,7.0290,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3301,2.8607,5.9822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3302,2.9403,10.9609,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3303,3.1881,10.7015,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3304,5.5258,15.1090,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3305,2.8607,14.6170,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3306,2.9403,14.4137,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3307,3.1881,14.2492,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3308,5.5258,6.7010,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3309,2.8607,5.8039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3310,2.9403,10.4565,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3311,3.1881,10.6123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3312,5.5258,6.1319,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3313,2.8607,5.9661,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3314,2.9403,10.1768,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3315,3.1881,10.2858,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3316,5.5258,5.8795,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3317,2.8607,5.6223,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3318,2.9403,10.2523,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3319,3.1881,10.1838,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3320,5.5258,5.7893,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3321,2.8607,5.5549,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3322,2.9403,10.8587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3323,3.1881,10.6784,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3324,5.5258,5.7523,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3325,2.8607,5.5445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3326,2.9403,10.3890,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3327,3.1881,10.3040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3328,5.5258,5.7327,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3329,2.8607,5.5012,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3330,2.9403,10.2571,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3331,3.1881,10.1891,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3332,5.5258,5.7273,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3333,2.8607,5.5007,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3334,2.9403,10.6328,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3335,3.1881,10.5835,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3336,5.5258,5.8492,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3337,2.8607,5.6666,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3338,2.9403,10.4135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3339,3.1881,10.3444,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3340,5.5258,5.7982,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3341,2.8607,5.5655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3342,2.9403,10.4587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3343,3.1881,10.4349,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3344,5.5258,5.6384,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3345,2.8607,5.4656,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3346,2.9403,10.2665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3347,3.1881,10.2428,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3348,5.5258,5.6182,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3349,2.8607,5.4660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3350,2.9403,10.3247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3351,3.1881,10.2729,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3352,5.5258,5.5917,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3353,2.8607,5.4523,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3354,2.9403,10.2985,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3355,3.1881,10.2567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3356,5.5258,5.6250,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3357,2.8607,5.4951,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3358,2.9403,10.2974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3359,3.1881,10.2732,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3360,5.5258,5.6195,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3361,2.8607,5.4886,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3362,2.9403,10.2446,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3363,3.1881,10.2104,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3364,5.5258,5.6287,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3365,2.8607,5.4658,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3366,2.9403,10.3266,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3367,3.1881,10.2680,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3368,5.5258,5.5915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3369,2.8607,5.4640,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3370,2.9403,10.2935,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3371,3.1881,10.2678,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3372,5.5258,5.6839,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3373,2.8607,5.4682,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3374,2.9403,10.4593,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3375,3.1881,10.4605,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3376,5.5258,5.6691,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3377,2.8607,5.5083,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3378,2.9403,10.2355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3379,3.1881,10.2548,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3380,5.5258,5.7298,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3381,2.8607,5.5285,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3382,2.9403,10.2820,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3383,3.1881,10.2877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3384,5.5258,5.6272,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3385,2.8607,5.4901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3386,2.9403,10.3120,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3387,3.1881,10.2891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3388,5.5258,5.7754,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3389,2.8607,5.5208,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3390,2.9403,10.3362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3391,3.1881,10.2734,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3392,5.5258,5.8484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3393,2.8607,5.6033,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3394,2.9403,10.4687,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3395,3.1881,10.4047,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3396,5.5258,6.0924,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3397,2.8607,5.7562,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3398,2.9403,10.6772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3399,3.1881,10.6039,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3400,5.5258,5.9721,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3401,2.8607,5.6840,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3402,2.9403,10.4799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3403,3.1881,10.3766,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3404,5.5258,6.0756,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3405,2.8607,5.7865,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3406,2.9403,10.4717,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3407,3.1881,10.3826,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3408,5.5258,6.7582,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3409,2.8607,6.2897,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3410,2.9403,11.2435,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3411,3.1881,10.9463,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3412,5.5258,6.2665,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3413,2.8607,5.8740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3414,2.9403,10.6692,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3415,3.1881,10.5501,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3416,5.5258,6.3827,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3417,2.8607,6.0432,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3418,2.9403,11.0915,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3419,3.1881,11.1076,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3420,5.5258,8.1296,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3421,2.8607,7.2755,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3422,2.9403,11.0961,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3423,3.1881,11.1263,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3424,5.5258,6.6360,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3425,2.8607,5.8899,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3426,2.9403,10.5506,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3427,3.1881,10.3150,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3428,5.5258,7.1982,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3429,2.8607,6.2910,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3430,2.9403,10.7979,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3431,3.1881,10.5249,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3432,5.5258,6.4247,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3433,2.8607,5.8945,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3434,2.9403,13.3249,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3435,3.1881,13.0772,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3436,5.5258,6.5624,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3437,2.8607,5.8957,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3438,2.9403,11.4976,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3439,3.1881,11.1516,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3440,5.5258,6.8895,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3441,2.8607,7.6450,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3442,2.9403,9.6707,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3443,3.1881,10.3859,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3444,5.5258,7.4076,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3445,2.8607,6.8528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3446,2.9403,10.7899,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3447,3.1881,10.4580,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3448,5.5258,6.9347,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3449,2.8607,5.9630,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3450,2.9403,11.6161,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3451,3.1881,11.3153,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3452,5.5258,6.9236,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3453,2.8607,6.0694,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3454,2.9403,10.1765,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3455,3.1881,9.9830,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3456,5.5258,6.6075,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3457,2.8607,5.7876,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3458,2.9403,11.3465,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3459,3.1881,11.2139,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3460,5.5258,7.1891,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3461,2.8607,6.2020,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3462,2.9403,10.8258,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3463,3.1881,10.5850,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3464,5.5258,6.4789,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3465,2.8607,5.9252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3466,2.9403,12.8968,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3467,3.1881,12.5936,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3468,5.5258,6.8545,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3469,2.8607,5.9914,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3470,2.9403,10.9612,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3471,3.1881,10.7432,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3472,5.5258,6.5895,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3473,2.8607,6.0117,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3474,2.9403,10.8827,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3475,3.1881,10.5984,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3476,5.5258,6.8574,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3477,2.8607,6.1452,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3478,2.9403,10.3971,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3479,3.1881,10.3575,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3480,5.5258,11.7396,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3481,2.8607,10.9368,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3482,2.9403,11.4905,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3483,3.1881,10.9807,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3484,5.5258,6.7502,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3485,2.8607,5.8918,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3486,2.9403,10.9050,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3487,3.1881,10.9108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3488,5.5258,6.1594,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3489,2.8607,5.6670,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3490,2.9403,10.4277,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3491,3.1881,10.3564,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3492,5.5258,5.8332,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3493,2.8607,5.6508,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3494,2.9403,10.3190,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3495,3.1881,10.2938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3496,5.5258,5.9939,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3497,2.8607,5.6885,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3498,2.9403,10.4535,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3499,3.1881,10.3112,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3500,5.5258,5.9932,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3501,2.8607,5.6673,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3502,2.9403,10.5511,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3503,3.1881,10.4722,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3504,5.5258,5.7444,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3505,2.8607,5.6023,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3506,2.9403,10.4256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3507,3.1881,10.2804,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3508,5.5258,6.2486,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3509,2.8607,5.9385,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3510,2.9403,10.8628,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3511,3.1881,10.7315,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3512,5.5258,9.8580,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3513,2.8607,8.8783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3514,2.9403,9.7997,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3515,3.1881,9.9149,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3516,5.5258,6.8230,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3517,2.8607,5.9661,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3518,2.9403,10.1114,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3519,3.1881,10.0733,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3520,5.5258,6.2660,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3521,2.8607,5.9426,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3522,2.9403,10.4451,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3523,3.1881,10.2352,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3524,5.5258,6.7351,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3525,2.8607,5.7439,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3526,2.9403,10.2975,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3527,3.1881,10.2395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3528,5.5258,6.5575,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3529,2.8607,5.8335,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3530,2.9403,11.5671,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3531,3.1881,10.9885,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3532,5.5258,6.4872,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3533,2.8607,5.7747,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3534,2.9403,9.9977,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3535,3.1881,9.6142,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3536,5.5258,6.6825,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3537,2.8607,5.9886,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3538,2.9403,12.0406,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3539,3.1881,11.9338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3540,5.5258,6.8999,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3541,2.8607,5.9254,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3542,2.9403,11.0535,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3543,3.1881,11.0452,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3544,5.5258,8.4404,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3545,2.8607,7.6251,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3546,2.9403,10.8082,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3547,3.1881,10.5055,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3548,5.5258,6.3503,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3549,2.8607,6.0154,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3550,2.9403,9.7061,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3551,3.1881,9.9703,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3552,5.5258,6.4787,0.0277,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3553,2.8607,5.9629,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3554,2.9403,10.8286,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3555,3.1881,10.8046,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3556,5.5258,6.3597,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3557,2.8607,5.8785,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3558,2.9403,10.8079,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3559,3.1881,10.7277,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3560,5.5258,5.9130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3561,2.8607,5.6818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3562,2.9403,10.6947,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3563,3.1881,10.7395,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3564,5.5258,6.1330,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3565,2.8607,5.8470,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3566,2.9403,8.9897,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3567,3.1881,10.4828,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3568,5.5258,6.5748,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3569,2.8607,5.9826,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3570,2.9403,11.9261,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3571,3.1881,11.5028,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3572,5.5258,6.5455,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3573,2.8607,6.1570,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3574,2.9403,10.4339,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3575,3.1881,10.1891,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3576,5.5258,6.2063,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3577,2.8607,5.8468,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3578,2.9403,11.0351,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3579,3.1881,10.7688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3580,5.5258,6.9727,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3581,2.8607,6.2762,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3582,2.9403,10.5684,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3583,3.1881,10.2447,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3584,5.5258,7.0184,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3585,2.8607,5.9683,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3586,2.9403,10.5742,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3587,3.1881,10.1234,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3588,5.5258,6.6021,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3589,2.8607,5.9524,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3590,2.9403,10.5565,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3591,3.1881,10.1776,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3592,5.5258,6.5141,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3593,2.8607,10.2487,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3594,2.9403,9.8190,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3595,3.1881,9.9520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3596,5.5258,6.3356,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3597,2.8607,5.9115,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3598,2.9403,10.9780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3599,3.1881,10.8257,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3600,5.5258,50.5342,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3601,2.8607,29.0058,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3602,2.9403,23.2141,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3603,3.1881,25.4142,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3604,5.5258,5.9388,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3605,2.8607,5.6989,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3606,2.9403,10.5357,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3607,3.1881,10.5028,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3608,5.5258,5.8671,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3609,2.8607,5.6335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3610,2.9403,10.5309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3611,3.1881,10.4646,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3612,5.5258,5.5919,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3613,2.8607,5.5480,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3614,2.9403,10.5108,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3615,3.1881,10.5000,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3616,5.5258,5.8830,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3617,2.8607,5.6705,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3618,2.9403,10.4878,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3619,3.1881,10.4723,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3620,5.5258,5.6356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3621,2.8607,5.5652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3622,2.9403,10.3671,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3623,3.1881,10.3226,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3624,5.5258,5.7530,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3625,2.8607,5.5846,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3626,2.9403,10.4825,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3627,3.1881,10.4396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3628,5.5258,5.7646,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3629,2.8607,5.6240,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3630,2.9403,10.5153,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3631,3.1881,10.4700,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3632,5.5258,5.6618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3633,2.8607,5.6116,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3634,2.9403,10.4240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3635,3.1881,10.3820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3636,5.5258,5.7756,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3637,2.8607,5.6551,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3638,2.9403,10.5274,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3639,3.1881,10.4205,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3640,5.5258,6.1840,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3641,2.8607,5.8546,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3642,2.9403,10.5810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3643,3.1881,10.5373,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3644,5.5258,6.0191,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3645,2.8607,5.7231,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3646,2.9403,10.6126,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3647,3.1881,10.4948,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3648,5.5258,5.8832,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3649,2.8607,5.6562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3650,2.9403,10.7102,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3651,3.1881,10.6725,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3652,5.5258,6.0788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3653,2.8607,5.7793,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3654,2.9403,10.6549,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3655,3.1881,10.5546,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3656,5.5258,5.9216,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3657,2.8607,5.7231,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3658,2.9403,10.6730,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3659,3.1881,10.5601,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3660,5.5258,6.3589,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3661,2.8607,6.0425,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3662,2.9403,11.1145,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3663,3.1881,11.1767,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3664,5.5258,6.6079,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3665,2.8607,6.1952,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3666,2.9403,8.6047,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3667,3.1881,8.7525,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3668,5.5258,7.7134,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3669,2.8607,7.2721,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3670,2.9403,11.1235,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3671,3.1881,11.0087,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3672,5.5258,6.6893,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3673,2.8607,5.9975,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3674,2.9403,11.5537,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3675,3.1881,11.1879,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3676,5.5258,6.5072,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3677,2.8607,6.1190,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3678,2.9403,10.6068,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3679,3.1881,10.5965,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3680,5.5258,6.5642,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3681,2.8607,5.9242,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3682,2.9403,10.2235,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3683,3.1881,7.1725,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3684,5.5258,6.0419,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3685,2.8607,5.8075,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3686,2.9403,10.8795,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3687,3.1881,10.7828,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3688,5.5258,18.0438,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3689,2.8607,17.6043,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3690,2.9403,17.5935,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3691,3.1881,17.2820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3692,5.5258,6.7399,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3693,2.8607,5.8737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3694,2.9403,10.5318,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3695,3.1881,10.2444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3696,5.5258,6.2354,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3697,2.8607,5.8075,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3698,2.9403,10.7876,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3699,3.1881,10.7252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3700,5.5258,5.7761,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3701,2.8607,5.5980,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3702,2.9403,10.4998,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3703,3.1881,10.3915,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3704,5.5258,6.3674,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3705,2.8607,5.9508,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3706,2.9403,10.9919,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3707,3.1881,10.7848,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3708,5.5258,6.1668,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3709,2.8607,5.9247,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3710,2.9403,10.1288,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3711,3.1881,10.1140,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3712,5.5258,6.0360,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3713,2.8607,5.6931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3714,2.9403,8.4421,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3715,3.1881,8.5570,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3716,5.5258,6.8337,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3717,2.8607,6.3741,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3718,2.9403,10.6320,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3719,3.1881,10.6197,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3720,5.5258,6.1825,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3721,2.8607,6.0327,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3722,2.9403,11.6350,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3723,3.1881,11.4220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3724,5.5258,6.4707,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3725,2.8607,6.0368,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3726,2.9403,10.6314,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3727,3.1881,10.3909,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3728,5.5258,6.0792,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3729,2.8607,5.7614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3730,2.9403,10.0855,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3731,3.1881,10.1559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3732,5.5258,6.0172,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3733,2.8607,5.6683,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3734,2.9403,10.4695,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3735,3.1881,10.3311,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3736,5.5258,6.0505,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3737,2.8607,5.7410,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3738,2.9403,10.5916,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3739,3.1881,10.5020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3740,5.5258,6.5769,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3741,2.8607,6.0750,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3742,2.9403,10.6857,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3743,3.1881,10.3536,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3744,5.5258,6.2661,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3745,2.8607,5.7899,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3746,2.9403,9.6520,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3747,3.1881,9.8480,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3748,5.5258,6.2709,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3749,2.8607,5.8218,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3750,2.9403,10.6798,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3751,3.1881,10.5681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3752,5.5258,6.0958,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3753,2.8607,5.7848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3754,2.9403,10.7408,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3755,3.1881,10.5390,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3756,5.5258,6.2002,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3757,2.8607,6.0728,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3758,2.9403,10.5202,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3759,3.1881,10.4733,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3760,5.5258,6.2175,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3761,2.8607,5.7762,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3762,2.9403,10.7071,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3763,3.1881,10.5943,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3764,5.5258,6.8281,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3765,2.8607,6.4069,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3766,2.9403,11.2992,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3767,3.1881,11.1412,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3768,5.5258,7.4058,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3769,2.8607,6.0548,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3770,2.9403,10.5709,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3771,3.1881,10.4210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3772,5.5258,6.6572,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3773,2.8607,6.0385,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3774,2.9403,10.5206,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3775,3.1881,9.7035,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3776,5.5258,6.8986,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3777,2.8607,5.9900,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3778,2.9403,11.1986,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3779,3.1881,10.7173,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3780,5.5258,6.9315,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3781,2.8607,6.7079,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3782,2.9403,9.2907,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3783,3.1881,10.5531,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3784,5.5258,7.8870,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3785,2.8607,6.6491,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3786,2.9403,10.1957,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3787,3.1881,9.8330,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3788,5.5258,6.8270,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3789,2.8607,6.2771,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3790,2.9403,11.1456,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3791,3.1881,10.9157,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3792,5.5258,9.3361,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3793,2.8607,8.3349,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3794,2.9403,10.7675,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3795,3.1881,10.5415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3796,5.5258,7.2588,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3797,2.8607,6.3727,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3798,2.9403,11.4271,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3799,3.1881,11.3810,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3800,5.5258,6.7244,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3801,2.8607,6.1679,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3802,2.9403,10.4098,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3803,3.1881,10.1013,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3804,5.5258,6.8841,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3805,2.8607,5.9203,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3806,2.9403,10.7224,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3807,3.1881,10.4838,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3808,5.5258,7.2036,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3809,2.8607,6.2343,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3810,2.9403,11.1837,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3811,3.1881,11.7480,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3812,5.5258,6.8715,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3813,2.8607,6.0248,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3814,2.9403,11.1434,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3815,3.1881,11.0496,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3816,5.5258,7.0582,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3817,2.8607,6.0678,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3818,2.9403,12.8323,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3819,3.1881,11.6422,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3820,5.5258,6.1218,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3821,2.8607,5.7104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3822,2.9403,11.1301,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3823,3.1881,10.9705,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3824,5.5258,6.7878,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3825,2.8607,6.0695,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3826,2.9403,11.7920,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3827,3.1881,11.5470,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3828,5.5258,7.3908,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3829,2.8607,6.5780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3830,2.9403,11.2498,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3831,3.1881,11.2207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3832,5.5258,7.2287,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3833,2.8607,6.2109,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3834,2.9403,11.5575,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3835,3.1881,11.6691,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3836,5.5258,6.5264,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3837,2.8607,5.9449,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3838,2.9403,11.0375,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3839,3.1881,10.8218,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3840,5.5258,6.8858,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3841,2.8607,6.0250,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3842,2.9403,10.6055,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3843,3.1881,10.4549,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3844,5.5258,7.3332,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3845,2.8607,6.9961,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3846,2.9403,10.1361,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3847,3.1881,9.8441,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3848,5.5258,10.3690,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3849,2.8607,9.1532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3850,2.9403,12.8513,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3851,3.1881,13.1701,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3852,5.5258,6.4190,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3853,2.8607,5.8208,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3854,2.9403,10.3915,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3855,3.1881,10.1241,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3856,5.5258,6.8669,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3857,2.8607,6.0812,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3858,2.9403,11.1072,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3859,3.1881,10.8380,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3860,5.5258,6.8534,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3861,2.8607,7.0878,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3862,2.9403,8.8447,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3863,3.1881,10.0559,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3864,5.5258,8.3081,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3865,2.8607,11.6402,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3866,2.9403,11.3326,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3867,3.1881,11.0732,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3868,5.5258,6.9651,0.0342,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3869,2.8607,5.9508,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3870,2.9403,11.3219,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3871,3.1881,11.0806,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3872,5.5258,6.8949,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3873,2.8607,6.0370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3874,2.9403,10.4384,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3875,3.1881,10.2582,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3876,5.5258,7.1611,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3877,2.8607,6.2836,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3878,2.9403,10.3352,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3879,3.1881,10.1785,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3880,5.5258,6.6273,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3881,2.8607,5.9484,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3882,2.9403,10.3205,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3883,3.1881,10.0211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3884,5.5258,6.7232,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3885,2.8607,6.2245,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3886,2.9403,10.9333,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3887,3.1881,10.8569,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3888,5.5258,9.8010,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3889,2.8607,5.6228,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3890,2.9403,10.2342,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3891,3.1881,10.2393,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3892,5.5258,5.6749,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3893,2.8607,5.4810,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3894,2.9403,10.3150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3895,3.1881,10.3336,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3896,5.5258,5.7189,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3897,2.8607,5.5584,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3898,2.9403,10.3124,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3899,3.1881,10.2943,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3900,5.5258,6.3542,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3901,2.8607,5.9355,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3902,2.9403,10.4768,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3903,3.1881,10.4120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3904,5.5258,6.4087,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3905,2.8607,5.7939,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3906,2.9403,10.7686,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3907,3.1881,10.5372,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3908,5.5258,6.2880,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3909,2.8607,5.8901,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3910,2.9403,10.1655,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3911,3.1881,10.1156,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3912,5.5258,6.3890,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3913,2.8607,5.9542,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3914,2.9403,10.3521,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3915,3.1881,10.0926,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3916,5.5258,11.7275,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3917,2.8607,11.5280,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3918,2.9403,10.8120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3919,3.1881,10.4324,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3920,5.5258,7.1431,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3921,2.8607,6.8277,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3922,2.9403,10.5535,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3923,3.1881,10.3620,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3924,5.5258,6.3520,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3925,2.8607,5.8125,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3926,2.9403,10.1110,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3927,3.1881,10.3343,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3928,5.5258,6.3736,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3929,2.8607,6.0044,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3930,2.9403,10.1397,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3931,3.1881,9.9223,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3932,5.5258,6.3976,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3933,2.8607,7.9410,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3934,2.9403,7.5804,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3935,3.1881,10.3318,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3936,5.5258,6.2699,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3937,2.8607,6.0293,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3938,2.9403,10.9423,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3939,3.1881,10.7637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3940,5.5258,6.5271,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3941,2.8607,5.8685,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3942,2.9403,10.8520,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3943,3.1881,10.8128,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3944,5.5258,6.4278,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3945,2.8607,5.8815,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3946,2.9403,10.1375,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3947,3.1881,10.2417,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3948,5.5258,6.6973,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3949,2.8607,5.7834,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3950,2.9403,10.5503,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3951,3.1881,10.3898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3952,5.5258,8.4965,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3953,2.8607,6.1930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3954,2.9403,9.8651,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3955,3.1881,9.4096,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3956,5.5258,6.8710,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3957,2.8607,6.3590,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3958,2.9403,10.9305,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3959,3.1881,10.6643,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3960,5.5258,7.0340,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3961,2.8607,6.0834,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3962,2.9403,11.1258,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3963,3.1881,10.6241,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3964,5.5258,6.7512,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3965,2.8607,5.9020,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3966,2.9403,10.8186,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3967,3.1881,10.7227,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3968,5.5258,7.1079,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3969,2.8607,6.0093,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3970,2.9403,10.8959,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3971,3.1881,10.5715,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3972,5.5258,8.2144,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3973,2.8607,6.6166,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3974,2.9403,5.7741,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3975,3.1881,10.5711,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3976,5.5258,6.2165,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3977,2.8607,5.7806,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3978,2.9403,10.5994,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3979,3.1881,10.4193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3980,5.5258,6.2130,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3981,2.8607,5.7621,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3982,2.9403,10.7342,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3983,3.1881,10.5700,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3984,5.5258,6.8060,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3985,2.8607,5.9926,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3986,2.9403,10.2774,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3987,3.1881,9.9865,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3988,5.5258,10.2792,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3989,2.8607,7.1357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3990,2.9403,13.9907,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3991,3.1881,12.8701,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3992,5.5258,7.8026,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3993,2.8607,6.7386,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3994,2.9403,10.3540,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3995,3.1881,10.7762,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3996,5.5258,6.5278,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3997,2.8607,5.9234,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3998,2.9403,11.2644,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3999,3.1881,11.1451,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4000,5.5258,6.8656,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4001,2.8607,5.9662,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4002,2.9403,10.3679,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4003,3.1881,10.0481,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4004,5.5258,6.9553,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4005,2.8607,5.9299,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4006,2.9403,10.8291,0.0439,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4007,3.1881,10.3863,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4008,5.5258,9.8969,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4009,2.8607,6.3467,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4010,2.9403,10.5255,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4011,3.1881,10.3873,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4012,5.5258,11.8926,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4013,2.8607,10.8935,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4014,2.9403,10.6020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4015,3.1881,10.1962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4016,5.5258,6.5995,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4017,2.8607,5.8915,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4018,2.9403,12.5850,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4019,3.1881,12.4040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4020,5.5258,6.9339,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4021,2.8607,5.8998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4022,2.9403,10.8192,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4023,3.1881,10.4281,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4024,5.5258,6.9162,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4025,2.8607,5.7912,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4026,2.9403,10.4446,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4027,3.1881,10.1965,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4028,5.5258,7.0447,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4029,2.8607,5.9795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4030,2.9403,10.9325,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4031,3.1881,10.6776,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4032,5.5258,6.4806,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4033,2.8607,5.7916,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4034,2.9403,10.0529,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4035,3.1881,9.9978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4036,5.5258,6.2595,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4037,2.8607,5.8070,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4038,2.9403,10.3816,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4039,3.1881,10.2741,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4040,5.5258,6.3714,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4041,2.8607,5.9025,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4042,2.9403,10.2245,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4043,3.1881,9.9565,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4044,5.5258,6.3590,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4045,2.8607,6.0744,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4046,2.9403,9.6150,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4047,3.1881,10.2759,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4048,5.5258,7.6212,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4049,2.8607,7.0490,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4050,2.9403,10.7848,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4051,3.1881,10.4969,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4052,5.5258,6.3106,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4053,2.8607,5.8269,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4054,2.9403,10.7939,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4055,3.1881,10.7717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4056,5.5258,6.3732,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4057,2.8607,5.9135,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4058,2.9403,10.0552,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4059,3.1881,10.0508,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4060,5.5258,6.7961,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4061,2.8607,6.7839,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4062,2.9403,10.0158,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4063,3.1881,9.9589,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4064,5.5258,6.4612,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4065,2.8607,5.7288,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4066,2.9403,9.9277,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4067,3.1881,9.6933,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4068,5.5258,6.3036,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4069,2.8607,5.8995,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4070,2.9403,9.5803,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4071,3.1881,9.6762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4072,5.5258,6.2747,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4073,2.8607,5.8024,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4074,2.9403,10.6650,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4075,3.1881,10.4615,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4076,5.5258,5.9397,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4077,2.8607,5.7159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4078,2.9403,10.3241,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4079,3.1881,10.2139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4080,5.5258,6.2762,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4081,2.8607,5.7787,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4082,2.9403,10.5337,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4083,3.1881,10.3377,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4084,5.5258,6.4350,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4085,2.8607,6.0289,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4086,2.9403,10.1108,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4087,3.1881,10.3175,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4088,5.5258,6.4048,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4089,2.8607,5.9588,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4090,2.9403,11.7360,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4091,3.1881,11.5228,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4092,5.5258,6.2462,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4093,2.8607,5.6595,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4094,2.9403,10.1735,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4095,3.1881,10.2012,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4096,5.5258,6.0334,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4097,2.8607,5.7139,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4098,2.9403,10.5801,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4099,3.1881,10.3699,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4100,5.5258,6.4225,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4101,2.8607,5.9056,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4102,2.9403,9.7506,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4103,3.1881,9.9271,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4104,5.5258,6.3802,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4105,2.8607,5.9815,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4106,2.9403,9.7188,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4107,3.1881,9.8783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4108,5.5258,6.0842,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4109,2.8607,5.8407,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4110,2.9403,9.8752,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4111,3.1881,9.9053,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4112,5.5258,6.2620,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4113,2.8607,5.7570,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4114,2.9403,10.3736,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4115,3.1881,10.1336,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4116,5.5258,6.3052,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4117,2.8607,5.9030,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4118,2.9403,8.9689,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4119,3.1881,9.9691,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4120,5.5258,6.4078,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4121,2.8607,6.2712,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4122,2.9403,10.1613,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4123,3.1881,9.9951,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4124,5.5258,6.2088,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4125,2.8607,5.7293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4126,2.9403,10.0681,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4127,3.1881,9.9358,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4128,5.5258,6.3840,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4129,2.8607,5.9945,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4130,2.9403,11.0835,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4131,3.1881,10.9331,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4132,5.5258,6.7600,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4133,2.8607,5.9462,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4134,2.9403,9.9548,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4135,3.1881,10.1977,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4136,5.5258,6.5498,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4137,2.8607,5.8078,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4138,2.9403,10.1155,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4139,3.1881,9.9430,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4140,5.5258,6.4557,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4141,2.8607,5.9733,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4142,2.9403,10.4917,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4143,3.1881,9.9583,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4144,5.5258,6.9831,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4145,2.8607,6.0395,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4146,2.9403,12.5685,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4147,3.1881,12.1848,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4148,5.5258,6.5038,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4149,2.8607,5.7893,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4150,2.9403,10.7018,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4151,3.1881,10.4251,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4152,5.5258,6.8662,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4153,2.8607,5.9423,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4154,2.9403,10.3826,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4155,3.1881,10.0945,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4156,5.5258,7.0023,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4157,2.8607,5.9537,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4158,2.9403,10.2372,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4159,3.1881,9.9175,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4160,5.5258,6.5328,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4161,2.8607,6.2891,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4162,2.9403,9.9285,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4163,3.1881,9.7132,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4164,5.5258,6.9479,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4165,2.8607,6.0607,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4166,2.9403,10.1258,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4167,3.1881,9.7499,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4168,5.5258,6.6611,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4169,2.8607,5.7443,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4170,2.9403,10.6745,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4171,3.1881,10.7458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4172,5.5258,6.9273,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4173,2.8607,6.1058,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4174,2.9403,10.8635,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4175,3.1881,10.6230,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4176,5.5258,11.0315,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4177,2.8607,10.0555,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4178,2.9403,9.6774,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4179,3.1881,9.8975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4180,5.5258,6.5889,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4181,2.8607,5.8703,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4182,2.9403,11.1445,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4183,3.1881,11.1513,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4184,5.5258,6.4565,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4185,2.8607,5.8314,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4186,2.9403,10.6394,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4187,3.1881,10.3270,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4188,5.5258,7.8286,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4189,2.8607,6.6593,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4190,2.9403,10.5165,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4191,3.1881,10.3530,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4192,5.5258,6.9633,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4193,2.8607,6.0069,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4194,2.9403,11.8514,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4195,3.1881,11.4434,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4196,5.5258,6.6939,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4197,2.8607,5.8928,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4198,2.9403,10.6061,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4199,3.1881,10.0980,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4200,5.5258,46.2811,0.0248,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4201,2.8607,30.8163,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4202,2.9403,25.3354,0.0058,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4203,3.1881,25.4803,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4204,5.5258,5.8221,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4205,2.8607,5.6286,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4206,2.9403,10.5463,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4207,3.1881,10.5328,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4208,5.5258,5.7652,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4209,2.8607,5.6065,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4210,2.9403,11.2122,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4211,3.1881,11.0522,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4212,5.5258,5.7340,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4213,2.8607,5.6040,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4214,2.9403,10.4849,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4215,3.1881,10.5095,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4216,5.5258,5.8223,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4217,2.8607,5.6362,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4218,2.9403,10.3600,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4219,3.1881,10.3338,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4220,5.5258,5.6886,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4221,2.8607,5.5830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4222,2.9403,10.4100,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4223,3.1881,10.3557,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4224,5.5258,5.7497,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4225,2.8607,5.6058,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4226,2.9403,10.3897,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4227,3.1881,10.3939,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4228,5.5258,5.9457,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4229,2.8607,5.6640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4230,2.9403,10.5491,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4231,3.1881,10.4236,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4232,5.5258,5.8161,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4233,2.8607,5.6028,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4234,2.9403,10.4920,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4235,3.1881,10.3846,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4236,5.5258,5.8548,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4237,2.8607,5.6024,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4238,2.9403,10.4430,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4239,3.1881,10.3571,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4240,5.5258,6.5977,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4241,2.8607,6.3545,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4242,2.9403,11.3586,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4243,3.1881,11.2210,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4244,5.5258,5.6378,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4245,2.8607,5.4911,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4246,2.9403,10.3368,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4247,3.1881,10.3001,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4248,5.5258,5.7325,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4249,2.8607,5.5480,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4250,2.9403,10.2696,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4251,3.1881,10.2736,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4252,5.5258,5.7706,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4253,2.8607,5.5988,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4254,2.9403,10.4112,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4255,3.1881,10.4176,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4256,5.5258,5.7153,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4257,2.8607,5.5216,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4258,2.9403,10.2615,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4259,3.1881,10.2968,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4260,5.5258,5.7586,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4261,2.8607,5.5679,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4262,2.9403,10.3978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4263,3.1881,10.3435,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4264,5.5258,5.7697,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4265,2.8607,5.5605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4266,2.9403,10.5794,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4267,3.1881,10.4950,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4268,5.5258,5.8060,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4269,2.8607,5.5416,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4270,2.9403,9.9106,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4271,3.1881,9.7378,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4272,5.5258,5.8998,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4273,2.8607,5.7012,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4274,2.9403,10.4910,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4275,3.1881,10.4082,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4276,5.5258,6.0931,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4277,2.8607,5.9226,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4278,2.9403,10.3143,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4279,3.1881,10.3448,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4280,5.5258,6.1915,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4281,2.8607,6.5832,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4282,2.9403,9.2973,0.0312,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4283,3.1881,9.9232,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4284,5.5258,6.1029,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4285,2.8607,5.8924,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4286,2.9403,12.4920,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4287,3.1881,12.1356,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4288,5.5258,6.2136,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4289,2.8607,5.8204,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4290,2.9403,10.2527,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4291,3.1881,10.1223,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4292,5.5258,6.2350,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4293,2.8607,5.8636,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4294,2.9403,10.1171,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4295,3.1881,10.1841,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4296,5.5258,6.1541,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4297,2.8607,6.0136,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4298,2.9403,10.0190,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4299,3.1881,10.2788,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4300,5.5258,6.0998,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4301,2.8607,5.6984,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4302,2.9403,10.3715,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4303,3.1881,10.2928,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4304,5.5258,6.1870,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4305,2.8607,6.2482,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4306,2.9403,9.7227,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4307,3.1881,10.2156,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4308,5.5258,6.5773,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4309,2.8607,5.9365,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4310,2.9403,9.9899,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4311,3.1881,9.8785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4312,5.5258,6.0424,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4313,2.8607,5.7752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4314,2.9403,10.6445,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4315,3.1881,10.4410,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4316,5.5258,6.2016,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4317,2.8607,5.9064,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4318,2.9403,9.8798,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4319,3.1881,10.0664,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4320,5.5258,6.2430,0.1469,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4321,2.8607,5.8779,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4322,2.9403,10.0121,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4323,3.1881,10.0515,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4324,5.5258,6.3549,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4325,2.8607,5.8442,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4326,2.9403,9.2528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4327,3.1881,9.5007,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4328,5.5258,6.1413,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4329,2.8607,5.8312,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4330,2.9403,9.8923,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4331,3.1881,9.8980,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4332,5.5258,6.3916,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4333,2.8607,6.1119,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4334,2.9403,10.3592,0.0314,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4335,3.1881,10.3180,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4336,5.5258,7.0548,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4337,2.8607,6.9417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4338,2.9403,15.8841,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4339,3.1881,16.0727,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4340,5.5258,6.3826,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4341,2.8607,6.0375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4342,2.9403,10.8482,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4343,3.1881,10.6116,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4344,5.5258,6.2714,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4345,2.8607,6.1303,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4346,2.9403,10.2932,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4347,3.1881,10.3346,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4348,5.5258,7.5019,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4349,2.8607,6.9817,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4350,2.9403,14.2607,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4351,3.1881,14.0975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4352,5.5258,6.1869,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4353,2.8607,5.8020,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4354,2.9403,10.4792,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4355,3.1881,10.3730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4356,5.5258,6.6530,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4357,2.8607,6.3737,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4358,2.9403,10.5926,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4359,3.1881,10.4577,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4360,5.5258,6.0827,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4361,2.8607,5.9007,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4362,2.9403,9.8138,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4363,3.1881,9.8308,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4364,5.5258,6.1500,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4365,2.8607,6.0213,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4366,2.9403,9.9935,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4367,3.1881,10.2053,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4368,5.5258,6.1382,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4369,2.8607,5.8604,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4370,2.9403,11.1545,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4371,3.1881,10.9520,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4372,5.5258,6.1768,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4373,2.8607,5.7058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4374,2.9403,10.4046,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4375,3.1881,10.1920,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4376,5.5258,6.6382,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4377,2.8607,5.9948,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4378,2.9403,14.0385,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4379,3.1881,14.0166,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4380,5.5258,6.2911,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4381,2.8607,5.8285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4382,2.9403,10.0028,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4383,3.1881,9.5846,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4384,5.5258,5.9793,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4385,2.8607,5.7745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4386,2.9403,10.5004,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4387,3.1881,10.1657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4388,5.5258,6.2956,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4389,2.8607,5.8390,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4390,2.9403,10.1972,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4391,3.1881,10.1199,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4392,5.5258,6.6550,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4393,2.8607,5.7491,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4394,2.9403,10.5294,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4395,3.1881,10.4013,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4396,5.5258,6.1341,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4397,2.8607,5.7694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4398,2.9403,10.8020,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4399,3.1881,10.6135,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4400,5.5258,6.4158,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4401,2.8607,5.7221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4402,2.9403,11.4166,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4403,3.1881,11.3687,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4404,5.5258,6.1707,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4405,2.8607,5.5680,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4406,2.9403,9.9045,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4407,3.1881,9.5510,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4408,5.5258,6.3788,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4409,2.8607,5.7964,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4410,2.9403,9.7690,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4411,3.1881,10.8481,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4412,5.5258,6.9567,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4413,2.8607,7.0938,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4414,2.9403,7.6365,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +4415,3.1881,10.4042,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4416,5.5258,6.5902,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4417,2.8607,6.0697,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4418,2.9403,12.3193,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4419,3.1881,12.3448,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4420,5.5258,6.7740,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4421,2.8607,5.9106,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4422,2.9403,10.2751,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4423,3.1881,10.1762,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4424,5.5258,7.9457,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4425,2.8607,6.6784,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4426,2.9403,9.0005,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4427,3.1881,9.0174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4428,5.5258,6.6840,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4429,2.8607,5.8327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4430,2.9403,7.8854,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4431,3.1881,7.2371,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4432,5.5258,6.3888,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4433,2.8607,5.7153,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4434,2.9403,11.3231,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4435,3.1881,11.4859,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4436,5.5258,6.8593,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4437,2.8607,5.8912,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4438,2.9403,10.7067,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4439,3.1881,10.5303,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4440,5.5258,7.4573,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4441,2.8607,6.2925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4442,2.9403,10.2324,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4443,3.1881,9.8628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4444,5.5258,7.1684,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4445,2.8607,6.0799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4446,2.9403,9.9683,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4447,3.1881,9.9324,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4448,5.5258,7.1733,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4449,2.8607,6.0336,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4450,2.9403,10.5852,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4451,3.1881,10.1464,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4452,5.5258,6.9439,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4453,2.8607,5.9619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4454,2.9403,11.2299,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4455,3.1881,11.0326,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4456,5.5258,6.3421,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4457,2.8607,5.7568,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4458,2.9403,10.5993,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4459,3.1881,10.1137,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4460,5.5258,6.2308,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4461,2.8607,5.7242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4462,2.9403,10.6972,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4463,3.1881,10.5510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4464,5.5258,6.5001,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4465,2.8607,5.7169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4466,2.9403,10.0592,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4467,3.1881,9.3511,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4468,5.5258,7.5039,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4469,2.8607,7.2321,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4470,2.9403,10.3539,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4471,3.1881,10.2038,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4472,5.5258,6.3521,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4473,2.8607,5.8859,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4474,2.9403,10.0661,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4475,3.1881,10.0083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4476,5.5258,6.1998,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4477,2.8607,5.8620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4478,2.9403,9.9173,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4479,3.1881,10.0499,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4480,5.5258,6.4327,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4481,2.8607,5.9414,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4482,2.9403,9.8865,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4483,3.1881,10.1182,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4484,5.5258,6.3090,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4485,2.8607,5.9673,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4486,2.9403,10.0017,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4487,3.1881,10.3547,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4488,5.5258,6.1196,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4489,2.8607,5.7920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4490,2.9403,11.1568,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +4491,3.1881,10.7576,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4492,5.5258,6.2157,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4493,2.8607,5.7242,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4494,2.9403,9.9352,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4495,3.1881,11.5488,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4496,5.5258,6.2235,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4497,2.8607,5.8968,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4498,2.9403,12.5593,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4499,3.1881,12.4583,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4500,5.5258,6.2263,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4501,2.8607,5.8208,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4502,2.9403,10.1910,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4503,3.1881,9.9649,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4504,5.5258,7.5929,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4505,2.8607,6.9527,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4506,2.9403,9.9767,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4507,3.1881,9.9831,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4508,5.5258,6.3295,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4509,2.8607,6.0160,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4510,2.9403,10.4246,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4511,3.1881,10.1961,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4512,5.5258,6.0437,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4513,2.8607,5.6523,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4514,2.9403,10.3729,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4515,3.1881,10.2593,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4516,5.5258,6.3930,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4517,2.8607,5.9115,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4518,2.9403,10.3063,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4519,3.1881,10.0880,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4520,5.5258,6.3823,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4521,2.8607,5.9142,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4522,2.9403,10.6186,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4523,3.1881,10.2640,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4524,5.5258,6.2378,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4525,2.8607,5.8503,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4526,2.9403,10.1091,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4527,3.1881,10.1276,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4528,5.5258,6.1391,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4529,2.8607,5.7995,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4530,2.9403,10.1072,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4531,3.1881,10.0927,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4532,5.5258,5.8890,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4533,2.8607,5.6345,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4534,2.9403,10.0988,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4535,3.1881,10.2301,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4536,5.5258,6.3792,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4537,2.8607,5.8680,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4538,2.9403,10.4128,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4539,3.1881,10.2144,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4540,5.5258,6.2421,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4541,2.8607,5.6423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4542,2.9403,10.2882,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4543,3.1881,10.1843,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4544,5.5258,6.4410,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4545,2.8607,5.9027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4546,2.9403,10.7572,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4547,3.1881,10.3620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4548,5.5258,5.9292,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4549,2.8607,5.6902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4550,2.9403,10.3251,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4551,3.1881,10.1927,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4552,5.5258,6.0313,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4553,2.8607,5.6769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4554,2.9403,9.7257,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4555,3.1881,10.0391,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4556,5.5258,5.6442,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4557,2.8607,5.4859,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4558,2.9403,10.1248,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4559,3.1881,10.1144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4560,5.5258,5.5783,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4561,2.8607,5.4353,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4562,2.9403,10.1343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4563,3.1881,10.1827,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4564,5.5258,5.9274,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4565,2.8607,5.5492,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4566,2.9403,10.3910,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4567,3.1881,10.1713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4568,5.5258,6.0662,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4569,2.8607,5.7157,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4570,2.9403,10.5714,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4571,3.1881,10.4239,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4572,5.5258,6.1198,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4573,2.8607,6.4100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4574,2.9403,9.6290,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4575,3.1881,10.3842,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4576,5.5258,6.2178,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4577,2.8607,5.7522,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4578,2.9403,11.1477,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4579,3.1881,11.0652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4580,5.5258,6.3132,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4581,2.8607,5.8856,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4582,2.9403,10.2972,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4583,3.1881,10.0922,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4584,5.5258,5.9811,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4585,2.8607,5.7348,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4586,2.9403,10.0651,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4587,3.1881,10.1391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4588,5.5258,5.8931,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4589,2.8607,5.6029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4590,2.9403,10.2916,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4591,3.1881,10.1588,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4592,5.5258,6.0574,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4593,2.8607,5.7093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4594,2.9403,10.1121,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4595,3.1881,10.3164,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4596,5.5258,7.9337,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4597,2.8607,7.3957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4598,2.9403,10.1269,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4599,3.1881,9.3414,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4600,5.5258,6.0181,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4601,2.8607,5.6380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4602,2.9403,10.5098,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4603,3.1881,9.3613,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4604,5.5258,6.3501,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4605,2.8607,5.8490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4606,2.9403,9.7311,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4607,3.1881,10.3142,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4608,5.5258,6.8241,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4609,2.8607,5.7312,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4610,2.9403,10.5448,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4611,3.1881,10.4494,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4612,5.5258,6.4079,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4613,2.8607,5.8282,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4614,2.9403,9.4535,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4615,3.1881,9.8204,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4616,5.5258,5.8411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4617,2.8607,5.5465,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4618,2.9403,10.3576,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4619,3.1881,10.2713,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4620,5.5258,6.1304,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4621,2.8607,5.7773,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4622,2.9403,14.3006,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4623,3.1881,14.1713,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4624,5.5258,6.4871,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4625,2.8607,5.7528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4626,2.9403,10.1517,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4627,3.1881,10.3135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4628,5.5258,6.6088,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4629,2.8607,6.3272,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4630,2.9403,10.5367,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4631,3.1881,10.2639,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4632,5.5258,11.2562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4633,2.8607,10.1030,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4634,2.9403,10.3070,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4635,3.1881,9.2012,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4636,5.5258,6.6701,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4637,2.8607,5.7003,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4638,2.9403,10.8207,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4639,3.1881,10.4579,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4640,5.5258,6.5631,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4641,2.8607,5.9835,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4642,2.9403,18.3009,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4643,3.1881,18.1937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4644,5.5258,6.3450,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4645,2.8607,5.6509,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4646,2.9403,10.2093,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4647,3.1881,10.1210,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4648,5.5258,5.9675,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4649,2.8607,5.6375,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4650,2.9403,10.8152,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4651,3.1881,10.6653,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4652,5.5258,6.5705,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4653,2.8607,7.5891,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4654,2.9403,9.9974,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4655,3.1881,9.8201,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4656,5.5258,6.2925,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4657,2.8607,5.8024,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4658,2.9403,10.4597,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4659,3.1881,10.6092,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4660,5.5258,7.0687,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4661,2.8607,6.2940,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4662,2.9403,10.0131,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4663,3.1881,9.9327,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4664,5.5258,7.1284,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4665,2.8607,5.8838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4666,2.9403,10.0077,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4667,3.1881,10.0715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4668,5.5258,8.4106,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4669,2.8607,6.8732,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4670,2.9403,10.8707,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4671,3.1881,10.7622,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4672,5.5258,6.6353,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4673,2.8607,5.8708,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4674,2.9403,10.8014,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4675,3.1881,10.5619,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4676,5.5258,6.4140,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4677,2.8607,5.7535,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4678,2.9403,10.4002,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4679,3.1881,10.2427,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4680,5.5258,6.3407,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4681,2.8607,5.8071,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4682,2.9403,10.1947,0.0447,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4683,3.1881,10.1337,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4684,5.5258,6.4604,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4685,2.8607,5.8291,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4686,2.9403,9.7663,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4687,3.1881,9.5189,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4688,5.5258,6.4890,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4689,2.8607,6.0847,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4690,2.9403,10.0180,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4691,3.1881,10.1420,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4692,5.5258,6.2813,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4693,2.8607,5.6415,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4694,2.9403,13.1298,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4695,3.1881,11.5894,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4696,5.5258,6.2602,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4697,2.8607,5.7698,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4698,2.9403,10.5266,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4699,3.1881,10.4635,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4700,5.5258,6.9880,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4701,2.8607,6.5975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4702,2.9403,11.0384,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4703,3.1881,10.8158,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4704,5.5258,7.4715,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4705,2.8607,5.7908,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4706,2.9403,9.9863,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4707,3.1881,9.9776,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4708,5.5258,6.0885,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4709,2.8607,5.7075,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4710,2.9403,10.4383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4711,3.1881,10.3159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4712,5.5258,6.0999,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4713,2.8607,5.7442,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4714,2.9403,10.3237,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4715,3.1881,10.2381,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4716,5.5258,6.0290,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4717,2.8607,5.6272,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4718,2.9403,10.4111,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4719,3.1881,10.2586,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4720,5.5258,6.0179,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4721,2.8607,5.6898,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4722,2.9403,10.2614,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4723,3.1881,10.2286,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4724,5.5258,7.1113,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4725,2.8607,6.5937,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4726,2.9403,10.5052,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4727,3.1881,10.1768,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4728,5.5258,6.3713,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4729,2.8607,5.8330,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4730,2.9403,10.7162,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4731,3.1881,10.6286,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4732,5.5258,6.7316,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4733,2.8607,6.0229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4734,2.9403,10.8340,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4735,3.1881,10.6059,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4736,5.5258,6.9702,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4737,2.8607,6.1082,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4738,2.9403,10.4173,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4739,3.1881,10.0732,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4740,5.5258,6.7580,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4741,2.8607,5.9942,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4742,2.9403,10.5984,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4743,3.1881,10.4474,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4744,5.5258,9.1189,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4745,2.8607,6.2836,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4746,2.9403,7.4023,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4747,3.1881,9.7607,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4748,5.5258,6.3336,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4749,2.8607,5.8711,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4750,2.9403,10.0299,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4751,3.1881,9.9116,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4752,5.5258,6.8123,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4753,2.8607,5.9222,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4754,2.9403,11.0882,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4755,3.1881,10.6408,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4756,5.5258,7.7195,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4757,2.8607,6.3937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4758,2.9403,7.5827,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4759,3.1881,6.3083,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4760,5.5258,6.1371,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4761,2.8607,5.7335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4762,2.9403,10.6707,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4763,3.1881,10.3626,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4764,5.5258,6.0715,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4765,2.8607,5.6903,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4766,2.9403,10.1355,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4767,3.1881,10.1523,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4768,5.5258,6.3468,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4769,2.8607,5.9290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4770,2.9403,10.5603,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4771,3.1881,10.3504,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4772,5.5258,6.0636,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4773,2.8607,5.7120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4774,2.9403,10.4944,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4775,3.1881,10.3524,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4776,5.5258,6.1755,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4777,2.8607,5.6934,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4778,2.9403,10.6435,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4779,3.1881,10.4263,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4780,5.5258,6.5852,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4781,2.8607,6.0957,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4782,2.9403,10.5531,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4783,3.1881,10.4757,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4784,5.5258,6.2563,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4785,2.8607,5.6732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4786,2.9403,10.7779,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4787,3.1881,12.5717,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4788,5.5258,8.3833,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4789,2.8607,7.4789,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4790,2.9403,10.3529,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4791,3.1881,10.2822,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4792,5.5258,6.5659,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4793,2.8607,5.7069,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4794,2.9403,10.4073,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4795,3.1881,10.0905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4796,5.5258,6.6071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4797,2.8607,5.9681,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4798,2.9403,11.9966,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4799,3.1881,11.5673,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.txt b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.txt new file mode 100644 index 0000000..a483b01 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.txt @@ -0,0 +1,87 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=150 +warmup_frames=20 +target_fps=60 +duration_seconds=20 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=1200 +frames_submitted=1200 +frames_skipped=0 +frames_encoded=1200 +failed_frames=0 +steady_frames_encoded=1180 +elapsed_seconds=19.997 +effective_logical_fps=60.008 +tile_frames_requested=4800 +tile_frames_encoded=4800 +failed_tile_frames=0 +avg_encode_latency_ms=13.075 +p95_encode_latency_ms=15.210 +max_encode_latency_ms=128.469 +avg_steady_encode_latency_ms=13.032 +p95_steady_encode_latency_ms=15.210 +max_steady_encode_latency_ms=128.469 +avg_tile_encode_latency_ms=8.767 +p95_tile_encode_latency_ms=11.934 +avg_max_tile_encode_latency_ms=11.104 +p95_max_tile_encode_latency_ms=13.124 +avg_steady_max_tile_encode_latency_ms=11.101 +p95_steady_max_tile_encode_latency_ms=13.124 +payload_bytes=8015440 +send_target=none +csv=benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s_logical.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s_logical.csv new file mode 100644 index 0000000..d1aa52f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset150_inflight1_20s_logical.csv @@ -0,0 +1,1201 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,100.5501,25.9814,231707 +1,4,0,11.1605,10.6213,65901 +2,4,0,11.0215,10.5444,36886 +3,4,0,11.0945,10.6265,69404 +4,4,0,11.0541,10.5610,87864 +5,4,0,10.9826,10.4314,53700 +6,4,0,10.8154,10.3347,24415 +7,4,0,11.0340,10.5019,15407 +8,4,0,10.9760,10.4342,12151 +9,4,0,11.0611,10.5433,11449 +10,4,0,11.1900,10.6185,8599 +11,4,0,11.4223,10.6645,6107 +12,4,0,11.2319,10.6523,5132 +13,4,0,11.5356,10.6810,3880 +14,4,0,11.5385,10.8027,4001 +15,4,0,11.5898,10.7342,3860 +16,4,0,11.1585,9.9979,4045 +17,4,0,11.2880,10.3444,3955 +18,4,0,10.9996,10.4533,3721 +19,4,0,11.1067,10.5438,3748 +20,4,0,11.0688,10.3818,3386 +21,4,0,11.1907,10.5717,2761 +22,4,0,11.2764,10.5273,2750 +23,4,0,11.2228,10.5812,2836 +24,4,0,11.1869,10.4926,2977 +25,4,0,12.2096,10.5054,2960 +26,4,0,12.8328,12.1890,3010 +27,4,0,11.2416,10.6993,2978 +28,4,0,12.2580,10.4232,2889 +29,4,0,11.2768,10.6694,2914 +30,4,0,12.0782,10.3364,2847 +31,4,0,11.9533,10.3968,3111 +32,4,0,14.2033,12.7245,2714 +33,4,0,13.7544,11.8474,2843 +34,4,0,10.9100,10.3297,2633 +35,4,0,11.8723,10.4499,2659 +36,4,0,11.5230,9.8550,2696 +37,4,0,12.1968,10.6395,2728 +38,4,0,11.9047,10.7780,2772 +39,4,0,11.8075,10.8254,2740 +40,4,0,11.6356,10.1388,2809 +41,4,0,11.4539,10.3282,2679 +42,4,0,12.3427,10.6679,2865 +43,4,0,11.2980,10.3163,2612 +44,4,0,13.3474,11.3295,2626 +45,4,0,11.5363,10.1608,2693 +46,4,0,11.9526,9.9869,2708 +47,4,0,11.3828,10.5457,2765 +48,4,0,12.3557,10.8900,2645 +49,4,0,11.5710,10.6149,2733 +50,4,0,19.9579,14.5505,2667 +51,4,0,10.9413,10.4888,2647 +52,4,0,11.5389,10.5013,2659 +53,4,0,11.9796,10.7396,2757 +54,4,0,14.1007,10.2383,2656 +55,4,0,11.5065,10.4245,2594 +56,4,0,15.4972,14.5173,2603 +57,4,0,11.9931,10.5523,2605 +58,4,0,12.3627,10.8984,2610 +59,4,0,10.9129,10.1912,2641 +60,4,0,10.9400,10.2693,2637 +61,4,0,10.8634,10.3010,2691 +62,4,0,10.8311,10.3547,2620 +63,4,0,10.9548,10.4291,2614 +64,4,0,11.0026,10.4230,2666 +65,4,0,11.0580,10.5050,2613 +66,4,0,10.7835,10.3012,2624 +67,4,0,10.9220,10.3441,2612 +68,4,0,10.8314,10.4248,2687 +69,4,0,10.9609,10.4929,2622 +70,4,0,10.8498,10.3315,2623 +71,4,0,10.9767,10.4446,2647 +72,4,0,10.9152,10.4401,2645 +73,4,0,11.1003,10.5753,2643 +74,4,0,10.9123,10.3646,2635 +75,4,0,11.1391,10.6402,2718 +76,4,0,11.2385,10.6340,2602 +77,4,0,11.3217,10.7040,2605 +78,4,0,11.2167,10.6206,2612 +79,4,0,11.3146,10.7048,2607 +80,4,0,11.3785,10.6693,2630 +81,4,0,11.1527,10.5835,2617 +82,4,0,11.4497,10.5809,2661 +83,4,0,11.4552,8.8113,2606 +84,4,0,11.8736,10.1831,2609 +85,4,0,12.4170,11.1544,2612 +86,4,0,12.3823,10.7900,2632 +87,4,0,11.9697,10.7759,2606 +88,4,0,11.9416,10.4560,2610 +89,4,0,12.1558,10.8265,2652 +90,4,0,12.2994,10.9508,2594 +91,4,0,11.1987,10.4990,2609 +92,4,0,11.4665,10.6477,2598 +93,4,0,12.1170,11.4367,2613 +94,4,0,11.0535,10.4988,2618 +95,4,0,10.8440,10.3445,2604 +96,4,0,10.9063,10.3528,2677 +97,4,0,10.9452,10.3742,2620 +98,4,0,10.8985,10.3268,2594 +99,4,0,10.8327,10.1770,2594 +100,4,0,11.0596,10.4534,2598 +101,4,0,11.1885,10.6555,2609 +102,4,0,10.8842,10.3507,2616 +103,4,0,11.2310,10.6490,2630 +104,4,0,11.2148,10.6049,2606 +105,4,0,11.3448,10.7576,2604 +106,4,0,11.2218,10.6351,2609 +107,4,0,12.5257,10.9902,2610 +108,4,0,13.7347,11.9339,2652 +109,4,0,12.2929,10.8403,2600 +110,4,0,15.6769,13.0823,2640 +111,4,0,12.0450,9.9382,2594 +112,4,0,13.4927,11.3355,2594 +113,4,0,12.3675,10.9337,2600 +114,4,0,13.0175,12.7984,2599 +115,4,0,15.2363,10.5156,2607 +116,4,0,13.9596,12.5500,2603 +117,4,0,12.6891,11.0414,2623 +118,4,0,13.3446,10.4345,2600 +119,4,0,16.4105,15.2642,2610 +120,4,0,12.4649,11.5772,2594 +121,4,0,12.3920,10.9098,2594 +122,4,0,13.8165,11.9218,2603 +123,4,0,11.9130,10.6139,2602 +124,4,0,14.1253,10.2569,2619 +125,4,0,12.3811,10.4528,2600 +126,4,0,13.1197,11.5506,2600 +127,4,0,12.4490,10.8018,2594 +128,4,0,13.7315,11.5700,2594 +129,4,0,12.6760,10.7262,2599 +130,4,0,13.7419,12.0258,2607 +131,4,0,12.0840,10.2905,2605 +132,4,0,12.7117,10.6469,2596 +133,4,0,12.8337,10.5935,2594 +134,4,0,13.0963,11.2018,2594 +135,4,0,12.6824,11.0189,2594 +136,4,0,13.0686,12.1669,2594 +137,4,0,12.5165,10.9202,2594 +138,4,0,12.6727,11.0127,2604 +139,4,0,12.0592,10.3226,2594 +140,4,0,14.9473,13.1242,2594 +141,4,0,12.1822,10.6637,2599 +142,4,0,13.2847,10.1315,2594 +143,4,0,13.5379,11.3273,2594 +144,4,0,12.8152,10.6165,2594 +145,4,0,12.5942,10.9921,2604 +146,4,0,13.8121,12.0524,2594 +147,4,0,11.8959,10.7384,2594 +148,4,0,12.4437,10.5109,2594 +149,4,0,12.3527,10.8052,2601 +150,4,0,114.0679,36.6050,231707 +151,4,0,11.1956,10.6776,65901 +152,4,0,10.9159,10.4289,36886 +153,4,0,11.0965,10.5505,69404 +154,4,0,10.9352,10.3575,87864 +155,4,0,11.2161,10.5595,53700 +156,4,0,11.1922,10.4946,24415 +157,4,0,11.1572,10.6340,15407 +158,4,0,11.0928,10.5651,12151 +159,4,0,11.0599,10.5633,11449 +160,4,0,11.2312,10.7364,8599 +161,4,0,11.4056,10.7950,6107 +162,4,0,11.2883,10.6291,5132 +163,4,0,11.2461,10.7323,3880 +164,4,0,11.3635,10.7097,4001 +165,4,0,12.0017,11.4422,3860 +166,4,0,12.3375,11.0600,4045 +167,4,0,12.3821,9.2910,3955 +168,4,0,13.5347,12.2600,3721 +169,4,0,11.7179,10.9763,3748 +170,4,0,12.4516,10.4764,3386 +171,4,0,12.2952,10.9435,2761 +172,4,0,12.7137,11.3750,2750 +173,4,0,12.1258,10.6982,2836 +174,4,0,12.2566,10.8838,2977 +175,4,0,14.3868,11.3199,2960 +176,4,0,13.2002,9.5665,3010 +177,4,0,12.5441,11.3186,2978 +178,4,0,12.2958,10.6060,2889 +179,4,0,12.3760,9.9570,2914 +180,4,0,12.9825,11.3126,2847 +181,4,0,14.2212,12.6430,3111 +182,4,0,12.2777,10.9789,2714 +183,4,0,16.6828,13.0048,2843 +184,4,0,12.4905,11.0285,2633 +185,4,0,12.4295,10.4305,2659 +186,4,0,16.0218,14.4929,2696 +187,4,0,13.0186,12.6466,2728 +188,4,0,17.7279,14.9190,2772 +189,4,0,12.2946,10.8831,2740 +190,4,0,13.6914,12.1333,2809 +191,4,0,12.9388,10.7039,2679 +192,4,0,12.8905,10.7833,2865 +193,4,0,12.4817,10.5497,2612 +194,4,0,12.8242,10.9830,2626 +195,4,0,13.8548,12.4855,2693 +196,4,0,13.2004,11.5986,2708 +197,4,0,15.1574,10.4673,2765 +198,4,0,13.0369,12.5770,2645 +199,4,0,13.1915,11.2436,2733 +200,4,0,13.4748,11.4151,2667 +201,4,0,13.0853,10.9187,2647 +202,4,0,12.3439,10.6243,2659 +203,4,0,11.6294,11.0435,2757 +204,4,0,15.0786,14.3085,2656 +205,4,0,13.1326,11.8762,2594 +206,4,0,13.5585,11.4704,2603 +207,4,0,13.2672,11.0605,2605 +208,4,0,13.3102,11.1470,2610 +209,4,0,15.6889,13.0159,2641 +210,4,0,13.6053,11.6689,2637 +211,4,0,17.0620,11.2304,2691 +212,4,0,15.4630,14.2107,2620 +213,4,0,14.5081,10.7142,2614 +214,4,0,11.3813,10.7074,2666 +215,4,0,13.3027,12.6039,2613 +216,4,0,11.9472,10.5319,2624 +217,4,0,13.3232,11.9376,2612 +218,4,0,12.7453,10.9660,2687 +219,4,0,12.2812,10.8861,2622 +220,4,0,12.7495,10.8527,2623 +221,4,0,12.5702,11.0660,2647 +222,4,0,13.0379,12.7200,2645 +223,4,0,13.0080,10.9535,2643 +224,4,0,13.1140,10.7494,2635 +225,4,0,13.2502,11.7957,2718 +226,4,0,13.3395,10.5053,2602 +227,4,0,12.5808,11.2532,2605 +228,4,0,12.7718,10.4398,2612 +229,4,0,13.5815,10.4988,2607 +230,4,0,13.0773,11.4490,2630 +231,4,0,12.7623,11.0709,2617 +232,4,0,14.0378,10.9315,2661 +233,4,0,12.3644,11.1023,2606 +234,4,0,13.2624,11.6510,2609 +235,4,0,12.4128,10.6843,2612 +236,4,0,13.4420,11.7691,2632 +237,4,0,12.6114,11.0348,2606 +238,4,0,12.3834,10.3884,2610 +239,4,0,12.0325,11.1300,2652 +240,4,0,13.0171,10.6000,2594 +241,4,0,12.9133,11.0636,2609 +242,4,0,12.7025,10.8430,2598 +243,4,0,12.2799,11.1328,2613 +244,4,0,12.6894,11.0479,2618 +245,4,0,13.0957,11.4100,2604 +246,4,0,13.5637,10.4410,2677 +247,4,0,13.4882,11.1530,2620 +248,4,0,12.9896,11.1013,2594 +249,4,0,12.4032,10.6839,2594 +250,4,0,14.7388,13.4108,2598 +251,4,0,12.1804,11.0501,2609 +252,4,0,12.8281,10.2100,2616 +253,4,0,12.6246,10.5453,2630 +254,4,0,12.3196,10.6090,2606 +255,4,0,12.3110,10.3959,2604 +256,4,0,12.5953,10.4503,2609 +257,4,0,12.5161,10.7253,2610 +258,4,0,13.3897,11.4480,2652 +259,4,0,13.7988,12.5421,2600 +260,4,0,12.4069,10.8642,2640 +261,4,0,12.4983,10.3072,2594 +262,4,0,12.6547,10.6420,2594 +263,4,0,12.5850,10.8007,2600 +264,4,0,14.1633,12.4213,2599 +265,4,0,12.5608,10.8055,2607 +266,4,0,14.5241,10.9368,2603 +267,4,0,12.2865,11.1624,2623 +268,4,0,15.7976,13.8792,2600 +269,4,0,18.7938,17.1770,2610 +270,4,0,14.2022,12.6623,2594 +271,4,0,11.4232,10.6608,2594 +272,4,0,14.7680,12.8980,2603 +273,4,0,15.2543,13.6642,2602 +274,4,0,11.8958,10.7812,2619 +275,4,0,12.0749,11.2842,2600 +276,4,0,11.5863,10.8587,2600 +277,4,0,11.5005,10.6924,2594 +278,4,0,12.1216,10.7106,2594 +279,4,0,11.9202,11.1984,2599 +280,4,0,12.7820,11.2538,2607 +281,4,0,12.4203,10.7580,2605 +282,4,0,13.6393,11.8070,2596 +283,4,0,11.9250,10.8286,2594 +284,4,0,12.7394,10.4827,2594 +285,4,0,12.1433,10.6525,2594 +286,4,0,12.2487,10.2851,2594 +287,4,0,11.5573,10.5198,2594 +288,4,0,12.7905,11.0629,2604 +289,4,0,12.4292,10.8783,2594 +290,4,0,12.3053,10.7671,2594 +291,4,0,12.6438,10.9878,2599 +292,4,0,13.2742,11.2248,2594 +293,4,0,13.2986,10.7427,2594 +294,4,0,13.3117,11.9729,2594 +295,4,0,14.5050,13.0642,2604 +296,4,0,12.2960,10.9158,2594 +297,4,0,12.9560,10.3700,2594 +298,4,0,12.4657,10.6417,2594 +299,4,0,11.6639,10.8790,2601 +300,4,0,121.0793,44.0589,231707 +301,4,0,10.9585,10.4512,65901 +302,4,0,11.0392,10.4546,36886 +303,4,0,12.0395,11.5521,69404 +304,4,0,10.7393,10.3081,87864 +305,4,0,10.8980,10.4147,53700 +306,4,0,10.9534,10.4565,24415 +307,4,0,11.0895,10.3892,15407 +308,4,0,11.0022,10.4790,12151 +309,4,0,10.9748,10.5055,11449 +310,4,0,10.8567,10.4908,8599 +311,4,0,10.8867,10.4082,6107 +312,4,0,11.1289,10.3712,5132 +313,4,0,10.8569,10.3696,3880 +314,4,0,10.7606,10.2916,4001 +315,4,0,10.7980,10.3067,3860 +316,4,0,10.7501,10.3373,4045 +317,4,0,10.8945,10.3161,3955 +318,4,0,10.8445,10.4001,3721 +319,4,0,11.1593,10.6886,3748 +320,4,0,11.1949,10.6297,3386 +321,4,0,11.1400,10.5146,2761 +322,4,0,11.2299,10.5722,2750 +323,4,0,11.3888,10.8022,2836 +324,4,0,11.2978,10.5227,2977 +325,4,0,11.3122,10.7190,2960 +326,4,0,12.3276,11.2529,3010 +327,4,0,11.9729,10.9793,2978 +328,4,0,14.3388,13.7476,2889 +329,4,0,12.9256,11.6427,2914 +330,4,0,13.2360,11.6951,2847 +331,4,0,12.4088,11.1984,3111 +332,4,0,16.3535,14.6703,2714 +333,4,0,12.3508,10.4057,2843 +334,4,0,11.7697,10.8415,2633 +335,4,0,11.6232,10.8700,2659 +336,4,0,11.4277,10.7363,2696 +337,4,0,11.6349,10.7802,2728 +338,4,0,11.3270,10.6382,2772 +339,4,0,11.9573,11.3387,2740 +340,4,0,12.2099,10.4335,2809 +341,4,0,12.7951,11.1284,2679 +342,4,0,12.4299,10.7878,2865 +343,4,0,12.6345,10.3955,2612 +344,4,0,12.9051,11.3897,2626 +345,4,0,12.3503,10.8352,2693 +346,4,0,15.4643,15.0132,2708 +347,4,0,12.0988,10.8330,2765 +348,4,0,14.6459,10.5047,2645 +349,4,0,12.5480,11.2153,2733 +350,4,0,15.4172,15.1000,2667 +351,4,0,12.2943,10.9682,2647 +352,4,0,12.5669,10.3481,2659 +353,4,0,12.8833,10.9205,2757 +354,4,0,17.4847,11.7302,2656 +355,4,0,12.4494,11.2068,2594 +356,4,0,12.5983,10.9856,2603 +357,4,0,13.3958,10.3361,2605 +358,4,0,12.5870,11.1428,2610 +359,4,0,13.7780,12.7434,2641 +360,4,0,13.2019,11.6008,2637 +361,4,0,13.0326,11.4275,2691 +362,4,0,12.8823,11.2389,2620 +363,4,0,12.2931,11.0929,2614 +364,4,0,14.0943,12.5011,2666 +365,4,0,12.2737,10.8728,2613 +366,4,0,12.4229,10.5843,2624 +367,4,0,12.6665,10.8920,2612 +368,4,0,12.9770,11.5022,2687 +369,4,0,12.8163,11.3802,2622 +370,4,0,12.7592,11.2531,2623 +371,4,0,12.2884,11.0123,2647 +372,4,0,12.5452,11.0644,2645 +373,4,0,12.7903,10.8939,2643 +374,4,0,12.9328,11.4272,2635 +375,4,0,12.7172,10.9756,2718 +376,4,0,12.3548,10.8461,2602 +377,4,0,12.7462,10.8046,2605 +378,4,0,14.7039,13.2882,2612 +379,4,0,11.8221,10.7472,2607 +380,4,0,12.0489,10.2537,2630 +381,4,0,11.5879,10.6414,2617 +382,4,0,11.6721,10.8987,2661 +383,4,0,10.9540,10.3656,2606 +384,4,0,10.9710,10.4049,2609 +385,4,0,10.8199,10.3280,2612 +386,4,0,11.9018,11.5598,2632 +387,4,0,10.8638,10.3470,2606 +388,4,0,10.9317,10.4637,2610 +389,4,0,10.9342,10.4370,2652 +390,4,0,10.8525,10.4413,2594 +391,4,0,10.9836,10.4900,2609 +392,4,0,10.7692,10.3733,2598 +393,4,0,10.7505,10.3709,2613 +394,4,0,10.7904,10.3260,2618 +395,4,0,10.8743,10.4176,2604 +396,4,0,10.7585,10.3225,2677 +397,4,0,10.8638,10.3232,2620 +398,4,0,10.9117,10.4017,2594 +399,4,0,11.2103,10.6788,2594 +400,4,0,10.8956,10.4102,2598 +401,4,0,11.3851,10.7015,2609 +402,4,0,11.2171,10.5898,2616 +403,4,0,11.3206,10.8112,2630 +404,4,0,11.5246,11.0651,2606 +405,4,0,12.0848,11.5152,2604 +406,4,0,14.3262,13.9547,2609 +407,4,0,12.6029,11.2415,2610 +408,4,0,13.0617,11.4550,2652 +409,4,0,12.2950,10.3902,2600 +410,4,0,15.2087,13.5663,2640 +411,4,0,12.3628,10.9315,2594 +412,4,0,12.6042,10.7757,2594 +413,4,0,12.2022,10.7381,2600 +414,4,0,14.2366,12.4859,2599 +415,4,0,16.0237,13.0545,2607 +416,4,0,17.6366,13.7165,2603 +417,4,0,13.0485,10.0779,2623 +418,4,0,11.2179,10.4154,2600 +419,4,0,11.6446,10.1657,2610 +420,4,0,11.0721,10.3980,2594 +421,4,0,11.0172,10.3878,2594 +422,4,0,11.9289,11.5074,2603 +423,4,0,10.9819,10.5325,2602 +424,4,0,13.1479,11.7444,2619 +425,4,0,11.4334,10.3077,2600 +426,4,0,12.2017,10.0921,2600 +427,4,0,11.7299,10.4812,2594 +428,4,0,13.3917,11.8283,2594 +429,4,0,12.2100,10.7927,2599 +430,4,0,13.7922,10.6387,2607 +431,4,0,12.0303,10.8340,2605 +432,4,0,12.7574,11.1064,2596 +433,4,0,12.0025,9.7819,2594 +434,4,0,13.6468,12.1568,2594 +435,4,0,12.0096,10.8269,2594 +436,4,0,12.4354,10.8755,2594 +437,4,0,12.3891,10.7655,2594 +438,4,0,11.6765,10.4649,2604 +439,4,0,14.8753,13.1048,2594 +440,4,0,12.2549,10.7943,2594 +441,4,0,12.2295,10.5991,2599 +442,4,0,15.1308,13.4238,2594 +443,4,0,12.1642,10.6026,2594 +444,4,0,16.2389,11.1723,2594 +445,4,0,12.5117,9.9560,2604 +446,4,0,13.2085,11.3480,2594 +447,4,0,12.4455,10.1065,2594 +448,4,0,14.0712,10.7209,2594 +449,4,0,12.6089,11.2234,2601 +450,4,0,109.9972,33.1000,231707 +451,4,0,11.0013,10.4799,65901 +452,4,0,10.9226,10.4824,36886 +453,4,0,10.9057,10.4241,69404 +454,4,0,10.8447,10.3703,87864 +455,4,0,11.0115,10.5315,53700 +456,4,0,11.0032,10.5530,24415 +457,4,0,11.1031,10.6328,15407 +458,4,0,11.1460,10.5163,12151 +459,4,0,11.3417,10.5331,11449 +460,4,0,11.5104,10.8338,8599 +461,4,0,11.5434,10.7375,6107 +462,4,0,11.3328,10.5936,5132 +463,4,0,11.6397,11.1546,3880 +464,4,0,11.9695,10.9642,4001 +465,4,0,11.7205,10.8717,3860 +466,4,0,12.4467,11.6737,4045 +467,4,0,12.5605,11.2475,3955 +468,4,0,16.0789,14.5815,3721 +469,4,0,15.8279,14.3417,3748 +470,4,0,15.2054,13.8220,3386 +471,4,0,16.5506,11.2549,2761 +472,4,0,20.1975,18.6305,2750 +473,4,0,11.7057,10.6939,2836 +474,4,0,13.1815,11.8924,2977 +475,4,0,13.7620,10.7479,2960 +476,4,0,12.0630,10.7503,3010 +477,4,0,12.4448,11.2517,2978 +478,4,0,13.3490,11.7326,2889 +479,4,0,11.4391,10.3705,2914 +480,4,0,11.8312,10.7907,2847 +481,4,0,11.2907,10.0734,3111 +482,4,0,11.2423,10.3550,2714 +483,4,0,12.0997,10.9967,2843 +484,4,0,11.5239,10.4915,2633 +485,4,0,11.8147,10.1084,2659 +486,4,0,13.1754,10.3517,2696 +487,4,0,11.6794,10.1207,2728 +488,4,0,11.2703,10.1955,2772 +489,4,0,11.8268,10.2387,2740 +490,4,0,12.2708,8.4608,2809 +491,4,0,11.7925,10.7218,2679 +492,4,0,14.7084,12.7337,2865 +493,4,0,12.3966,11.1474,2612 +494,4,0,13.3354,10.4880,2626 +495,4,0,13.6516,10.2988,2693 +496,4,0,12.3788,10.4707,2708 +497,4,0,12.6766,11.1683,2765 +498,4,0,13.1904,10.9291,2645 +499,4,0,12.0818,10.7543,2733 +500,4,0,12.1950,10.6641,2667 +501,4,0,13.6961,11.4899,2647 +502,4,0,14.5098,10.3945,2659 +503,4,0,11.7332,10.4970,2757 +504,4,0,11.5280,10.6647,2656 +505,4,0,12.0509,11.1335,2594 +506,4,0,14.3263,12.5874,2603 +507,4,0,11.8942,10.2080,2605 +508,4,0,11.7775,10.9254,2610 +509,4,0,12.7211,10.6751,2641 +510,4,0,15.2922,13.9266,2637 +511,4,0,12.3954,10.9641,2691 +512,4,0,13.0347,12.7901,2620 +513,4,0,11.6997,10.7479,2614 +514,4,0,11.8131,10.9601,2666 +515,4,0,13.6655,12.2637,2613 +516,4,0,12.8287,10.7390,2624 +517,4,0,12.7855,10.9139,2612 +518,4,0,12.1778,10.8553,2687 +519,4,0,13.1293,11.8111,2622 +520,4,0,11.3198,10.5764,2623 +521,4,0,11.3172,10.7121,2647 +522,4,0,11.1643,10.5271,2645 +523,4,0,12.0840,10.8990,2643 +524,4,0,12.4213,10.7377,2635 +525,4,0,12.5615,10.3206,2718 +526,4,0,12.0258,10.1701,2602 +527,4,0,12.9154,11.8755,2605 +528,4,0,12.7112,10.9480,2612 +529,4,0,11.9390,10.4548,2607 +530,4,0,12.0843,10.2850,2630 +531,4,0,12.1757,9.8405,2617 +532,4,0,12.7270,11.2473,2661 +533,4,0,12.6200,11.1658,2606 +534,4,0,13.7762,9.8683,2609 +535,4,0,12.3984,10.7785,2612 +536,4,0,12.3389,10.7457,2632 +537,4,0,13.8424,11.4000,2606 +538,4,0,11.8571,10.3594,2610 +539,4,0,11.4922,10.5405,2652 +540,4,0,13.3341,10.0133,2594 +541,4,0,12.5311,11.3240,2609 +542,4,0,13.9286,11.6528,2598 +543,4,0,12.0366,10.7538,2613 +544,4,0,12.7168,10.6550,2618 +545,4,0,12.0746,10.2271,2604 +546,4,0,13.0805,11.1538,2677 +547,4,0,11.7902,10.4819,2620 +548,4,0,12.3629,10.8591,2594 +549,4,0,12.5970,10.6900,2594 +550,4,0,15.2318,10.4050,2598 +551,4,0,11.3449,10.7426,2609 +552,4,0,11.2835,10.6943,2616 +553,4,0,11.9197,11.0450,2630 +554,4,0,12.5040,10.8475,2606 +555,4,0,12.7465,11.4076,2604 +556,4,0,14.6662,12.7300,2609 +557,4,0,12.2963,10.9776,2610 +558,4,0,13.1632,11.4066,2652 +559,4,0,12.1879,11.0325,2600 +560,4,0,12.5918,10.7983,2640 +561,4,0,12.3810,11.0487,2594 +562,4,0,12.1657,10.7732,2594 +563,4,0,11.9940,9.8100,2600 +564,4,0,12.4144,10.9176,2599 +565,4,0,12.3972,9.4327,2607 +566,4,0,14.8224,13.3492,2603 +567,4,0,12.4618,10.8127,2623 +568,4,0,12.3812,10.8372,2600 +569,4,0,12.2211,10.5694,2610 +570,4,0,15.0050,13.3414,2594 +571,4,0,11.7841,10.7800,2594 +572,4,0,13.4102,10.7149,2603 +573,4,0,13.0165,10.9407,2602 +574,4,0,12.1152,11.0663,2619 +575,4,0,12.2400,11.1289,2600 +576,4,0,12.3476,10.1815,2600 +577,4,0,11.4808,10.5905,2594 +578,4,0,11.1070,10.4896,2594 +579,4,0,11.2203,10.3146,2599 +580,4,0,11.0411,10.3674,2607 +581,4,0,11.4993,10.7154,2605 +582,4,0,12.4128,10.7542,2596 +583,4,0,12.8246,11.5169,2594 +584,4,0,12.3360,10.7817,2594 +585,4,0,12.3882,10.5191,2594 +586,4,0,14.1214,10.4560,2594 +587,4,0,11.6335,10.4862,2594 +588,4,0,11.8597,10.7545,2604 +589,4,0,12.0643,10.7531,2594 +590,4,0,12.1615,10.5698,2594 +591,4,0,12.1267,10.8293,2599 +592,4,0,12.5485,10.6964,2594 +593,4,0,12.1665,10.8996,2594 +594,4,0,12.1977,10.7192,2594 +595,4,0,12.1739,10.9564,2604 +596,4,0,12.5069,9.7755,2594 +597,4,0,13.1400,11.8940,2594 +598,4,0,11.6194,10.3915,2594 +599,4,0,11.5322,10.5782,2601 +600,4,0,114.7541,33.4258,231707 +601,4,0,10.9580,10.4814,65901 +602,4,0,11.1367,10.6003,36886 +603,4,0,11.1341,10.5409,69404 +604,4,0,10.9512,10.4418,87864 +605,4,0,11.3175,10.7280,53700 +606,4,0,12.3983,11.8529,24415 +607,4,0,11.0612,10.5126,15407 +608,4,0,11.1475,10.5172,12151 +609,4,0,11.0769,10.5550,11449 +610,4,0,11.0733,10.5396,8599 +611,4,0,11.4319,10.7569,6107 +612,4,0,11.2352,10.5749,5132 +613,4,0,11.7910,11.2257,3880 +614,4,0,11.2685,10.6274,4001 +615,4,0,19.6757,18.7625,3860 +616,4,0,12.3191,11.1444,4045 +617,4,0,11.8318,10.4167,3955 +618,4,0,12.3946,11.5886,3721 +619,4,0,11.6326,10.9120,3748 +620,4,0,11.5392,10.8045,3386 +621,4,0,11.3358,10.7566,2761 +622,4,0,11.3256,10.7341,2750 +623,4,0,11.3050,10.8205,2836 +624,4,0,11.2855,10.8297,2977 +625,4,0,11.2941,10.5530,2960 +626,4,0,11.2106,10.5771,3010 +627,4,0,11.0027,10.4929,2978 +628,4,0,10.9180,10.4009,2889 +629,4,0,10.8603,10.4113,2914 +630,4,0,10.8970,10.4123,2847 +631,4,0,10.9390,10.3050,3111 +632,4,0,10.8815,10.3330,2714 +633,4,0,11.1510,10.5457,2843 +634,4,0,11.3284,10.6977,2633 +635,4,0,11.3483,10.7170,2659 +636,4,0,11.4053,10.6500,2696 +637,4,0,11.4383,10.6360,2728 +638,4,0,11.6435,10.7810,2772 +639,4,0,12.4572,10.7983,2740 +640,4,0,12.6797,10.4225,2809 +641,4,0,12.5782,10.7017,2679 +642,4,0,13.0216,11.3417,2865 +643,4,0,14.0514,12.6792,2612 +644,4,0,12.7742,10.9974,2626 +645,4,0,13.3970,10.4252,2693 +646,4,0,12.7982,10.7490,2708 +647,4,0,12.9485,11.4350,2765 +648,4,0,12.7567,10.6690,2645 +649,4,0,12.3585,10.6186,2733 +650,4,0,14.2327,13.1475,2667 +651,4,0,12.3657,11.0852,2647 +652,4,0,14.1240,12.7587,2659 +653,4,0,11.9121,10.7672,2757 +654,4,0,12.6870,10.5715,2656 +655,4,0,15.5378,13.9406,2594 +656,4,0,12.5819,11.0031,2603 +657,4,0,12.4227,10.5424,2605 +658,4,0,12.4538,10.4725,2610 +659,4,0,11.3395,10.7278,2641 +660,4,0,11.9906,10.5175,2637 +661,4,0,12.7758,10.8948,2691 +662,4,0,12.7870,10.6162,2620 +663,4,0,12.7238,10.2263,2614 +664,4,0,13.1109,11.2535,2666 +665,4,0,12.5102,10.8752,2613 +666,4,0,17.1771,14.7879,2624 +667,4,0,11.9371,10.5697,2612 +668,4,0,12.3556,10.3640,2687 +669,4,0,12.3368,10.4187,2622 +670,4,0,15.0425,13.3942,2623 +671,4,0,12.5284,11.0077,2647 +672,4,0,12.3661,10.7526,2645 +673,4,0,12.4102,10.3045,2643 +674,4,0,13.5726,13.0550,2635 +675,4,0,12.7071,10.0330,2718 +676,4,0,12.8912,10.6496,2602 +677,4,0,12.7206,10.8225,2605 +678,4,0,12.2826,10.5352,2612 +679,4,0,13.7560,11.9905,2607 +680,4,0,11.3587,10.6057,2630 +681,4,0,11.8296,11.0933,2617 +682,4,0,12.5024,10.2465,2661 +683,4,0,12.2907,11.2565,2606 +684,4,0,12.9712,11.1528,2609 +685,4,0,12.1483,10.6150,2612 +686,4,0,12.3012,10.5783,2632 +687,4,0,17.4468,10.2290,2606 +688,4,0,12.8340,11.1487,2610 +689,4,0,12.4863,10.9940,2652 +690,4,0,12.8187,10.7199,2594 +691,4,0,13.5796,12.2771,2609 +692,4,0,12.6862,10.7503,2598 +693,4,0,15.2936,13.3475,2613 +694,4,0,11.6538,10.8986,2618 +695,4,0,12.4905,10.8217,2604 +696,4,0,12.1421,10.3952,2677 +697,4,0,10.9139,10.3590,2620 +698,4,0,10.7442,10.3205,2594 +699,4,0,10.9602,10.4946,2594 +700,4,0,12.1542,10.8664,2598 +701,4,0,12.2278,11.0758,2609 +702,4,0,13.6440,11.5845,2616 +703,4,0,12.6027,11.2510,2630 +704,4,0,12.2483,10.9397,2606 +705,4,0,12.6403,10.9341,2604 +706,4,0,12.2195,10.4913,2609 +707,4,0,12.0781,10.9103,2610 +708,4,0,12.4663,10.3450,2652 +709,4,0,14.2980,10.4350,2600 +710,4,0,16.0756,14.6290,2640 +711,4,0,12.9868,11.5780,2594 +712,4,0,12.3479,10.4790,2594 +713,4,0,12.4288,10.0512,2600 +714,4,0,13.9722,11.3069,2599 +715,4,0,12.1454,10.9685,2607 +716,4,0,16.6735,14.1665,2603 +717,4,0,12.2662,10.7172,2623 +718,4,0,12.8072,10.1903,2600 +719,4,0,13.6080,12.6072,2610 +720,4,0,12.7658,11.3210,2594 +721,4,0,11.8218,10.7324,2594 +722,4,0,11.9154,10.0520,2603 +723,4,0,11.6623,10.6487,2602 +724,4,0,12.3483,10.5026,2619 +725,4,0,15.3716,13.5079,2600 +726,4,0,12.3857,10.7332,2600 +727,4,0,12.5312,10.1761,2594 +728,4,0,14.6479,13.1836,2594 +729,4,0,12.4903,11.0511,2599 +730,4,0,12.4016,10.7866,2607 +731,4,0,12.8454,11.5241,2605 +732,4,0,13.2090,10.5932,2596 +733,4,0,12.2387,10.6881,2594 +734,4,0,12.5421,10.7397,2594 +735,4,0,12.4433,10.9873,2594 +736,4,0,12.4982,10.2815,2594 +737,4,0,12.4429,10.3958,2594 +738,4,0,12.5252,10.7722,2604 +739,4,0,11.9497,10.8226,2594 +740,4,0,13.4550,11.4524,2594 +741,4,0,12.2253,10.4375,2599 +742,4,0,11.9455,10.3859,2594 +743,4,0,12.8072,11.0558,2594 +744,4,0,12.4550,10.3847,2594 +745,4,0,12.3770,10.8801,2604 +746,4,0,18.5417,10.0666,2594 +747,4,0,11.2110,10.6036,2594 +748,4,0,11.8786,10.9848,2594 +749,4,0,11.7721,10.1940,2601 +750,4,0,118.2669,40.2044,231707 +751,4,0,10.9684,10.4969,65901 +752,4,0,11.6955,11.2531,36886 +753,4,0,11.0022,10.5203,69404 +754,4,0,10.8242,10.4076,87864 +755,4,0,11.1081,10.5045,53700 +756,4,0,11.0979,10.5501,24415 +757,4,0,10.9604,10.4176,15407 +758,4,0,11.0828,10.3689,12151 +759,4,0,11.2831,10.6677,11449 +760,4,0,11.2895,10.7139,8599 +761,4,0,11.4520,10.8595,6107 +762,4,0,11.3040,10.7052,5132 +763,4,0,11.6604,11.0481,3880 +764,4,0,11.5849,10.8737,4001 +765,4,0,12.1560,11.3529,3860 +766,4,0,11.4773,10.5653,4045 +767,4,0,12.4822,10.0427,3955 +768,4,0,13.5440,11.1215,3721 +769,4,0,12.3480,10.4664,3748 +770,4,0,15.6092,14.2056,3386 +771,4,0,12.1871,10.5831,2761 +772,4,0,16.0108,11.2918,2750 +773,4,0,14.0385,10.8859,2836 +774,4,0,12.5051,10.6592,2977 +775,4,0,12.2755,9.9968,2960 +776,4,0,14.1245,13.3889,3010 +777,4,0,12.3081,11.3473,2978 +778,4,0,12.5473,10.9026,2889 +779,4,0,12.1747,10.8718,2914 +780,4,0,12.3428,10.6507,2847 +781,4,0,13.3631,11.8443,3111 +782,4,0,12.4703,10.4641,2714 +783,4,0,12.1895,10.5605,2843 +784,4,0,12.5447,11.2718,2633 +785,4,0,12.3786,10.4154,2659 +786,4,0,14.1786,10.2443,2696 +787,4,0,11.9984,10.7942,2728 +788,4,0,12.8219,11.3319,2772 +789,4,0,12.8467,11.2495,2740 +790,4,0,12.9323,10.6322,2809 +791,4,0,18.3264,16.4405,2679 +792,4,0,12.2528,10.8537,2865 +793,4,0,13.5457,12.0315,2612 +794,4,0,12.7852,11.1111,2626 +795,4,0,12.3019,10.1125,2693 +796,4,0,15.3582,12.7531,2708 +797,4,0,12.5929,11.1235,2765 +798,4,0,16.0848,14.2490,2645 +799,4,0,12.5628,11.2245,2733 +800,4,0,13.1573,10.6322,2667 +801,4,0,12.6378,10.4287,2647 +802,4,0,12.9229,10.9952,2659 +803,4,0,12.9191,11.4314,2757 +804,4,0,12.9439,10.0302,2656 +805,4,0,12.3278,10.6934,2594 +806,4,0,12.7891,10.7998,2603 +807,4,0,12.6511,11.1918,2605 +808,4,0,12.4667,10.7001,2610 +809,4,0,12.7602,11.0679,2641 +810,4,0,12.7355,11.0620,2637 +811,4,0,12.1279,11.0175,2691 +812,4,0,12.5778,10.7303,2620 +813,4,0,12.2965,10.6454,2614 +814,4,0,11.8787,10.9997,2666 +815,4,0,12.5512,11.6280,2613 +816,4,0,13.4397,10.5801,2624 +817,4,0,12.2448,10.7075,2612 +818,4,0,12.5114,10.6069,2687 +819,4,0,12.1662,10.6856,2622 +820,4,0,12.5261,10.8342,2623 +821,4,0,13.0751,11.5353,2647 +822,4,0,12.7990,10.8730,2645 +823,4,0,13.1623,10.8498,2643 +824,4,0,12.7484,10.9044,2635 +825,4,0,12.5872,10.9609,2718 +826,4,0,16.1239,15.1090,2602 +827,4,0,12.6110,10.6123,2605 +828,4,0,11.4579,10.2858,2612 +829,4,0,10.9976,10.2523,2607 +830,4,0,11.4838,10.8587,2630 +831,4,0,10.9376,10.3890,2617 +832,4,0,10.8377,10.2571,2661 +833,4,0,11.1252,10.6328,2606 +834,4,0,11.0804,10.4135,2609 +835,4,0,10.9520,10.4587,2612 +836,4,0,10.7866,10.2665,2632 +837,4,0,10.7862,10.3247,2606 +838,4,0,10.7441,10.2985,2610 +839,4,0,10.8297,10.2974,2652 +840,4,0,10.7245,10.2446,2594 +841,4,0,10.7951,10.3266,2609 +842,4,0,10.7205,10.2935,2598 +843,4,0,10.9537,10.4605,2613 +844,4,0,10.8183,10.2548,2618 +845,4,0,10.8817,10.2877,2604 +846,4,0,10.7646,10.3120,2677 +847,4,0,10.9623,10.3362,2620 +848,4,0,11.0880,10.4687,2594 +849,4,0,11.3589,10.6772,2594 +850,4,0,11.1769,10.4799,2598 +851,4,0,11.3274,10.4717,2609 +852,4,0,11.9950,11.2435,2616 +853,4,0,11.4475,10.6692,2630 +854,4,0,11.8495,11.1076,2606 +855,4,0,12.7012,11.1263,2604 +856,4,0,12.3052,10.5506,2609 +857,4,0,12.3805,10.7979,2610 +858,4,0,14.9292,13.3249,2652 +859,4,0,12.7615,11.4976,2600 +860,4,0,13.6817,10.3859,2640 +861,4,0,12.0163,10.7899,2594 +862,4,0,13.0620,11.6161,2594 +863,4,0,12.2767,10.1765,2600 +864,4,0,12.8854,11.3465,2599 +865,4,0,12.2900,10.8258,2607 +866,4,0,14.7150,12.8968,2603 +867,4,0,12.0247,10.9612,2623 +868,4,0,12.6185,10.8827,2600 +869,4,0,12.3990,10.3971,2610 +870,4,0,13.0652,11.7396,2594 +871,4,0,12.4723,10.9108,2594 +872,4,0,11.2327,10.4277,2603 +873,4,0,11.0858,10.3190,2602 +874,4,0,11.0970,10.4535,2619 +875,4,0,11.2600,10.5511,2600 +876,4,0,10.9437,10.4256,2600 +877,4,0,11.4982,10.8628,2594 +878,4,0,11.8649,9.9149,2594 +879,4,0,12.2847,10.1114,2599 +880,4,0,12.1524,10.4451,2607 +881,4,0,11.9984,10.2975,2605 +882,4,0,12.8956,11.5671,2596 +883,4,0,11.7534,9.9977,2594 +884,4,0,13.6967,12.0406,2594 +885,4,0,12.6583,11.0535,2594 +886,4,0,12.5194,10.8082,2594 +887,4,0,12.2074,9.9703,2594 +888,4,0,12.1045,10.8286,2604 +889,4,0,11.8785,10.8079,2594 +890,4,0,11.4367,10.7395,2594 +891,4,0,13.0445,10.4828,2599 +892,4,0,13.9893,11.9261,2594 +893,4,0,11.3854,10.4339,2594 +894,4,0,12.2566,11.0351,2594 +895,4,0,11.9853,10.5684,2604 +896,4,0,12.5835,10.5742,2594 +897,4,0,12.1934,10.5565,2594 +898,4,0,12.1500,10.2487,2594 +899,4,0,12.0768,10.9780,2601 +900,4,0,128.4691,50.5342,231707 +901,4,0,11.0954,10.5357,65901 +902,4,0,11.0654,10.5309,36886 +903,4,0,10.9828,10.5108,69404 +904,4,0,11.0331,10.4878,87864 +905,4,0,10.8566,10.3671,53700 +906,4,0,10.9379,10.4825,24415 +907,4,0,11.0959,10.5153,15407 +908,4,0,10.9545,10.4240,12151 +909,4,0,11.0252,10.5274,11449 +910,4,0,11.2986,10.5810,8599 +911,4,0,11.3376,10.6126,6107 +912,4,0,11.3386,10.7102,5132 +913,4,0,11.3557,10.6549,3880 +914,4,0,11.1682,10.6730,4001 +915,4,0,11.8718,11.1767,3860 +916,4,0,12.3666,8.7525,4045 +917,4,0,12.2450,11.1235,3955 +918,4,0,12.7325,11.5537,3721 +919,4,0,12.2540,10.6068,3748 +920,4,0,12.1454,10.2235,3386 +921,4,0,11.5540,10.8795,2761 +922,4,0,18.3355,18.0438,2750 +923,4,0,11.9157,10.5318,2836 +924,4,0,11.5554,10.7876,2977 +925,4,0,11.0913,10.4998,2960 +926,4,0,11.7600,10.9919,3010 +927,4,0,11.7450,10.1288,2978 +928,4,0,11.8341,8.5570,2889 +929,4,0,11.9063,10.6320,2914 +930,4,0,12.9820,11.6350,2847 +931,4,0,11.6210,10.6314,3111 +932,4,0,11.4706,10.1559,2714 +933,4,0,11.1862,10.4695,2843 +934,4,0,11.3438,10.5916,2633 +935,4,0,11.8252,10.6857,2659 +936,4,0,12.0548,9.8480,2696 +937,4,0,11.5349,10.6798,2728 +938,4,0,11.3530,10.7408,2772 +939,4,0,11.6465,10.5202,2740 +940,4,0,11.4865,10.7071,2809 +941,4,0,12.0680,11.2992,2679 +942,4,0,12.4528,10.5709,2865 +943,4,0,12.0201,10.5206,2612 +944,4,0,13.0801,11.1986,2626 +945,4,0,13.4615,10.5531,2693 +946,4,0,12.8440,10.1957,2708 +947,4,0,12.1031,11.1456,2765 +948,4,0,12.8548,10.7675,2645 +949,4,0,12.9118,11.4271,2733 +950,4,0,12.4486,10.4098,2667 +951,4,0,12.5021,10.7224,2647 +952,4,0,13.3912,11.7480,2659 +953,4,0,12.6124,11.1434,2757 +954,4,0,15.1351,12.8323,2656 +955,4,0,11.8833,11.1301,2594 +956,4,0,13.8297,11.7920,2603 +957,4,0,13.0039,11.2498,2605 +958,4,0,13.9852,11.6691,2610 +959,4,0,12.3008,11.0375,2641 +960,4,0,12.5239,10.6055,2637 +961,4,0,12.9154,10.1361,2691 +962,4,0,15.5557,13.1701,2620 +963,4,0,12.0111,10.3915,2614 +964,4,0,12.6942,11.1072,2666 +965,4,0,13.4843,10.0559,2613 +966,4,0,12.8121,11.6402,2624 +967,4,0,12.8882,11.3219,2612 +968,4,0,12.4964,10.4384,2687 +969,4,0,12.4614,10.3352,2622 +970,4,0,12.1049,10.3205,2623 +971,4,0,12.1648,10.9333,2647 +972,4,0,14.9476,10.2393,2645 +973,4,0,10.8378,10.3336,2643 +974,4,0,10.8590,10.3124,2635 +975,4,0,11.5651,10.4768,2718 +976,4,0,11.7999,10.7686,2602 +977,4,0,11.8382,10.1655,2605 +978,4,0,12.0047,10.3521,2612 +979,4,0,12.4680,11.7275,2607 +980,4,0,11.5469,10.5535,2630 +981,4,0,12.0485,10.3343,2617 +982,4,0,11.7320,10.1397,2661 +983,4,0,14.5675,10.3318,2606 +984,4,0,12.5901,10.9423,2609 +985,4,0,12.3932,10.8520,2612 +986,4,0,12.1910,10.2417,2632 +987,4,0,12.3637,10.5503,2606 +988,4,0,13.5882,9.8651,2610 +989,4,0,12.3850,10.9305,2652 +990,4,0,12.9465,11.1258,2594 +991,4,0,12.1920,10.8186,2609 +992,4,0,12.6530,10.8959,2598 +993,4,0,19.8300,10.5711,2613 +994,4,0,11.5428,10.5994,2618 +995,4,0,11.5432,10.7342,2604 +996,4,0,12.3112,10.2774,2677 +997,4,0,18.1173,13.9907,2620 +998,4,0,12.5464,10.7762,2594 +999,4,0,12.6021,11.2644,2594 +1000,4,0,12.2727,10.3679,2598 +1001,4,0,12.3985,10.8291,2609 +1002,4,0,15.0318,10.5255,2616 +1003,4,0,12.4289,11.8926,2630 +1004,4,0,14.1925,12.5850,2606 +1005,4,0,12.3636,10.8192,2604 +1006,4,0,12.5596,10.4446,2609 +1007,4,0,13.0490,10.9325,2610 +1008,4,0,11.7965,10.0529,2652 +1009,4,0,11.5532,10.3816,2600 +1010,4,0,11.8144,10.2245,2640 +1011,4,0,12.6647,10.2759,2594 +1012,4,0,12.5914,10.7848,2594 +1013,4,0,12.0639,10.7939,2600 +1014,4,0,11.9213,10.0552,2599 +1015,4,0,11.9018,10.0158,2607 +1016,4,0,11.8462,9.9277,2603 +1017,4,0,11.9906,9.6762,2623 +1018,4,0,11.6997,10.6650,2600 +1019,4,0,11.3047,10.3241,2610 +1020,4,0,11.4783,10.5337,2594 +1021,4,0,11.9331,10.3175,2594 +1022,4,0,13.3793,11.7360,2603 +1023,4,0,11.5617,10.2012,2602 +1024,4,0,11.5612,10.5801,2619 +1025,4,0,12.0648,9.9271,2600 +1026,4,0,12.0358,9.8783,2600 +1027,4,0,11.8745,9.9053,2594 +1028,4,0,11.2720,10.3736,2594 +1029,4,0,12.8599,9.9691,2599 +1030,4,0,11.7841,10.1613,2607 +1031,4,0,11.8734,10.0681,2605 +1032,4,0,12.4560,11.0835,2596 +1033,4,0,12.4986,10.1977,2594 +1034,4,0,12.1568,10.1155,2594 +1035,4,0,11.9942,10.4917,2594 +1036,4,0,14.1703,12.5685,2594 +1037,4,0,11.8245,10.7018,2594 +1038,4,0,12.4631,10.3826,2604 +1039,4,0,12.1693,10.2372,2594 +1040,4,0,12.6111,9.9285,2594 +1041,4,0,12.2433,10.1258,2599 +1042,4,0,12.3518,10.7458,2594 +1043,4,0,12.1198,10.8635,2594 +1044,4,0,12.3494,11.0315,2594 +1045,4,0,12.5637,11.1513,2604 +1046,4,0,12.0928,10.6394,2594 +1047,4,0,12.3800,10.5165,2594 +1048,4,0,14.0996,11.8514,2594 +1049,4,0,12.2399,10.6061,2601 +1050,4,0,128.2330,46.2811,231707 +1051,4,0,11.0274,10.5463,65901 +1052,4,0,11.6945,11.2122,36886 +1053,4,0,11.0538,10.5095,69404 +1054,4,0,10.9097,10.3600,87864 +1055,4,0,10.9393,10.4100,53700 +1056,4,0,10.9937,10.3939,24415 +1057,4,0,11.1655,10.5491,15407 +1058,4,0,10.9899,10.4920,12151 +1059,4,0,11.0290,10.4430,11449 +1060,4,0,11.8033,11.3586,8599 +1061,4,0,10.8709,10.3368,6107 +1062,4,0,10.8435,10.2736,5132 +1063,4,0,10.9790,10.4176,3880 +1064,4,0,10.9399,10.2968,4001 +1065,4,0,10.8651,10.3978,3860 +1066,4,0,11.0928,10.5794,4045 +1067,4,0,11.1121,9.9106,3955 +1068,4,0,11.0780,10.4910,3721 +1069,4,0,11.6523,10.3448,3748 +1070,4,0,12.7305,9.9232,3386 +1071,4,0,13.7790,12.4920,2761 +1072,4,0,11.4983,10.2527,2750 +1073,4,0,11.7869,10.1841,2836 +1074,4,0,11.8190,10.2788,2977 +1075,4,0,11.2242,10.3715,2960 +1076,4,0,12.1776,10.2156,3010 +1077,4,0,11.6350,9.9899,2978 +1078,4,0,11.4388,10.6445,2889 +1079,4,0,11.8188,10.0664,2914 +1080,4,0,11.6432,10.0515,2847 +1081,4,0,11.9195,9.5007,3111 +1082,4,0,11.5488,9.8980,2714 +1083,4,0,11.1837,10.3592,2843 +1084,4,0,17.0908,16.0727,2633 +1085,4,0,11.8357,10.8482,2659 +1086,4,0,11.7122,10.3346,2696 +1087,4,0,15.4055,14.2607,2728 +1088,4,0,11.5489,10.4792,2772 +1089,4,0,11.4002,10.5926,2740 +1090,4,0,11.6284,9.8308,2809 +1091,4,0,12.0079,10.2053,2679 +1092,4,0,12.4491,11.1545,2865 +1093,4,0,11.6108,10.4046,2612 +1094,4,0,15.9595,14.0385,2626 +1095,4,0,11.6771,10.0028,2693 +1096,4,0,11.9199,10.5004,2708 +1097,4,0,11.9016,10.1972,2765 +1098,4,0,12.0008,10.5294,2645 +1099,4,0,11.6233,10.8020,2733 +1100,4,0,12.9125,11.4166,2667 +1101,4,0,11.4476,9.9045,2647 +1102,4,0,13.2482,10.8481,2659 +1103,4,0,15.2859,10.4042,2757 +1104,4,0,13.8019,12.3448,2656 +1105,4,0,12.1791,10.2751,2594 +1106,4,0,12.1489,9.0174,2603 +1107,4,0,12.1604,7.8854,2605 +1108,4,0,12.7942,11.4859,2610 +1109,4,0,12.5641,10.7067,2641 +1110,4,0,12.5742,10.2324,2637 +1111,4,0,12.7825,9.9683,2691 +1112,4,0,12.5447,10.5852,2620 +1113,4,0,13.4980,11.2299,2614 +1114,4,0,11.5943,10.5993,2666 +1115,4,0,11.5380,10.6972,2613 +1116,4,0,11.6292,10.0592,2624 +1117,4,0,11.2107,10.3539,2612 +1118,4,0,11.4537,10.0661,2687 +1119,4,0,11.9783,10.0499,2622 +1120,4,0,12.2202,10.1182,2623 +1121,4,0,12.2138,10.3547,2647 +1122,4,0,12.6426,11.1568,2645 +1123,4,0,14.3283,11.5488,2643 +1124,4,0,13.5494,12.5593,2635 +1125,4,0,11.3438,10.1910,2718 +1126,4,0,11.8029,9.9831,2602 +1127,4,0,12.2453,10.4246,2605 +1128,4,0,11.3204,10.3729,2612 +1129,4,0,11.6405,10.3063,2607 +1130,4,0,12.1365,10.6186,2630 +1131,4,0,11.8158,10.1276,2617 +1132,4,0,11.7373,10.1072,2661 +1133,4,0,11.4438,10.2301,2606 +1134,4,0,12.1668,10.4128,2609 +1135,4,0,11.6168,10.2882,2612 +1136,4,0,12.0661,10.7572,2632 +1137,4,0,11.1495,10.3251,2606 +1138,4,0,11.5399,10.0391,2610 +1139,4,0,10.7304,10.1248,2652 +1140,4,0,10.6977,10.1827,2594 +1141,4,0,11.0816,10.3910,2609 +1142,4,0,11.3097,10.5714,2598 +1143,4,0,12.5379,10.3842,2613 +1144,4,0,12.0808,11.1477,2618 +1145,4,0,11.3795,10.2972,2604 +1146,4,0,11.4482,10.1391,2677 +1147,4,0,11.2565,10.2916,2620 +1148,4,0,11.7448,10.3164,2594 +1149,4,0,11.3440,10.1269,2594 +1150,4,0,11.9435,10.5098,2598 +1151,4,0,12.2615,10.3142,2609 +1152,4,0,12.5926,10.5448,2616 +1153,4,0,12.2640,9.8204,2630 +1154,4,0,10.9808,10.3576,2606 +1155,4,0,14.9663,14.3006,2604 +1156,4,0,12.0013,10.3135,2609 +1157,4,0,12.4999,10.5367,2610 +1158,4,0,11.5079,11.2562,2652 +1159,4,0,12.3750,10.8207,2600 +1160,4,0,20.9868,18.3009,2640 +1161,4,0,11.5183,10.2093,2594 +1162,4,0,11.5665,10.8152,2594 +1163,4,0,12.0435,9.9974,2600 +1164,4,0,12.6759,10.6092,2599 +1165,4,0,12.6433,10.0131,2607 +1166,4,0,12.5981,10.0715,2603 +1167,4,0,14.3860,10.8707,2623 +1168,4,0,12.6339,10.8014,2600 +1169,4,0,11.8679,10.4002,2610 +1170,4,0,11.9330,10.1947,2594 +1171,4,0,12.0875,9.7663,2594 +1172,4,0,12.1243,10.1420,2603 +1173,4,0,15.0229,13.1298,2602 +1174,4,0,11.4517,10.5266,2619 +1175,4,0,11.9675,11.0384,2600 +1176,4,0,12.9162,9.9863,2600 +1177,4,0,11.3180,10.4383,2594 +1178,4,0,11.2568,10.3237,2594 +1179,4,0,11.1523,10.4111,2599 +1180,4,0,11.2906,10.2614,2607 +1181,4,0,11.9903,10.5052,2605 +1182,4,0,12.2572,10.7162,2596 +1183,4,0,12.7946,10.8340,2594 +1184,4,0,12.0581,10.4173,2594 +1185,4,0,12.6375,10.5984,2594 +1186,4,0,16.0312,9.7607,2594 +1187,4,0,12.0033,10.0299,2594 +1188,4,0,12.3822,11.0882,2604 +1189,4,0,12.4822,7.7195,2594 +1190,4,0,11.5657,10.6707,2594 +1191,4,0,11.4171,10.1523,2599 +1192,4,0,11.5751,10.5603,2594 +1193,4,0,11.5172,10.4944,2594 +1194,4,0,11.5836,10.6435,2594 +1195,4,0,11.8827,10.5531,2604 +1196,4,0,13.7442,12.5717,2594 +1197,4,0,11.9716,10.3529,2594 +1198,4,0,11.7306,10.4073,2594 +1199,4,0,12.7942,11.9966,2601 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.csv new file mode 100644 index 0000000..b3709b3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.csv @@ -0,0 +1,4801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.3229,28.3729,0.0258,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.0520,24.7577,0.0134,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,3.0073,25.4274,0.0154,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.9795,25.3072,0.0105,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.3229,5.7682,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.0520,5.5957,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,3.0073,10.5023,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.9795,10.4895,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.3229,5.6764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.0520,5.5678,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,3.0073,10.4451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.9795,10.4008,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.3229,5.8685,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.0520,5.6744,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,3.0073,10.5622,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.9795,10.5520,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.3229,5.6401,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.0520,5.4890,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,3.0073,10.3146,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.9795,10.2956,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.3229,5.6395,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.0520,5.5503,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,3.0073,10.2977,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.9795,10.2932,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.3229,5.6179,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.0520,5.5460,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,3.0073,10.3241,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.9795,10.3287,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.3229,5.7090,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.0520,5.5287,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,3.0073,10.3750,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.9795,10.2891,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.3229,5.7002,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.0520,5.5480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,3.0073,10.2933,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.9795,10.2790,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.3229,5.8587,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.0520,5.6295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,3.0073,10.5012,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.9795,10.4543,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.3229,5.9400,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.0520,5.6608,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,3.0073,10.6197,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.9795,10.4365,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.3229,5.8822,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.0520,5.6316,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,3.0073,10.4380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.9795,10.3997,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.3229,5.9308,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.0520,5.6631,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,3.0073,10.4563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.9795,10.3562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.3229,5.9280,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.0520,5.5895,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,3.0073,10.6114,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.9795,10.5150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.3229,5.9577,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.0520,5.6608,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,3.0073,10.4534,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.9795,10.3400,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.3229,6.0231,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.0520,5.6930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,3.0073,10.5834,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.9795,10.5059,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.3229,6.0238,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.0520,5.6439,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,3.0073,10.6175,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.9795,10.5038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.3229,5.9965,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.0520,5.6944,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,3.0073,10.8277,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.9795,10.6715,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.3229,6.3592,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.0520,5.7145,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,3.0073,12.3972,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.9795,11.7420,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.3229,6.7412,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.0520,5.8920,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,3.0073,10.0298,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.9795,10.4737,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.3229,7.4182,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.0520,6.7058,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,3.0073,10.9740,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.9795,10.6501,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.3229,7.0833,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.0520,6.2669,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,3.0073,12.4274,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.9795,12.1303,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.3229,6.2080,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.0520,5.7391,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,3.0073,10.5852,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.9795,10.4258,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.3229,6.4341,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.0520,5.9735,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,3.0073,10.4655,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.9795,10.2890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.3229,7.2823,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.0520,6.1893,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,3.0073,7.3087,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.9795,10.7928,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.3229,6.2319,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.0520,5.8667,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,3.0073,10.7789,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.9795,10.6501,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.3229,6.0691,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.0520,5.6739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,3.0073,10.4989,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.9795,10.4552,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.3229,6.6978,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.0520,5.9219,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,3.0073,11.0125,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.9795,10.9301,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.3229,7.1268,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.0520,6.1679,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,3.0073,11.6951,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.9795,11.4267,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.3229,7.1070,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.0520,6.5196,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,3.0073,10.6269,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.9795,10.3891,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.3229,6.7479,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.0520,6.0277,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,3.0073,10.6284,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.9795,10.4410,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.3229,6.8641,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.0520,5.9367,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,3.0073,11.1950,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.9795,10.8228,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.3229,7.4673,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.0520,6.0913,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,3.0073,10.0035,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.9795,9.8797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.3229,6.8645,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.0520,5.9453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,3.0073,10.2584,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.9795,9.4070,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.3229,7.6359,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.0520,7.1270,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,3.0073,10.5575,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.9795,10.3618,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.3229,6.5843,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.0520,7.1915,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,3.0073,8.8275,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.9795,10.1337,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.3229,6.0754,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.0520,5.7863,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,3.0073,10.5711,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.9795,10.3766,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.3229,7.4976,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.0520,5.8290,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,3.0073,10.1576,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.9795,10.4081,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.3229,6.5448,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.0520,5.9264,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,3.0073,10.3613,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.9795,10.2018,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.3229,6.3056,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.0520,5.9225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,3.0073,10.4241,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.9795,10.1893,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.3229,6.4387,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.0520,5.9164,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,3.0073,10.2033,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.9795,10.1290,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.3229,6.3803,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.0520,5.8652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,3.0073,10.3490,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.9795,9.9086,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.3229,6.6470,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.0520,6.0031,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,3.0073,11.5147,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.9795,11.3751,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.3229,6.5093,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.0520,6.0947,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,3.0073,10.4061,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.9795,10.1514,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.3229,6.2550,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.0520,5.8962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,3.0073,10.5487,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.9795,10.3660,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.3229,6.3568,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.0520,5.9936,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,3.0073,10.2562,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.9795,10.5839,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.3229,6.5725,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.0520,5.8351,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,3.0073,10.0862,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.9795,9.9172,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.3229,6.7977,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.0520,6.0383,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,3.0073,10.4228,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.9795,9.9461,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.3229,5.9426,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.0520,5.6303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,3.0073,10.4236,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.9795,10.2855,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.3229,5.8990,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.0520,5.5867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,3.0073,10.3184,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.9795,10.2903,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.3229,5.8301,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.0520,5.5245,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,3.0073,10.3878,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.9795,10.3239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.3229,5.8037,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.0520,5.6636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,3.0073,10.4605,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.9795,10.4684,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.3229,5.9000,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.0520,5.6524,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,3.0073,10.5215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.9795,10.4392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.3229,5.8001,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.0520,5.5439,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,3.0073,10.8618,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.9795,10.6974,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.3229,5.9395,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.0520,5.6056,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,3.0073,10.3700,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.9795,10.2839,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.3229,5.8870,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.0520,5.6276,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,3.0073,10.4152,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.9795,10.2571,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.3229,5.9620,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.0520,5.6890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,3.0073,10.3118,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.9795,10.3212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.3229,6.0164,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.0520,5.6788,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,3.0073,10.5331,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.9795,10.3477,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.3229,6.0090,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.0520,5.6518,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,3.0073,10.4367,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.9795,10.3554,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.3229,6.0082,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.0520,5.6856,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,3.0073,10.6427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.9795,10.5843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.3229,5.8621,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,3.0520,5.6514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,3.0073,10.4668,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.9795,10.3888,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.3229,5.8981,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,3.0520,5.6210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,3.0073,10.4423,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.9795,10.3805,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.3229,5.6810,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,3.0520,5.5070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,3.0073,10.3923,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.9795,10.2907,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.3229,5.9863,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,3.0520,5.6388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,3.0073,10.3562,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.9795,10.2118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.3229,5.8457,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,3.0520,5.5834,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,3.0073,10.3902,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.9795,10.2843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.3229,5.6739,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,3.0520,5.4718,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,3.0073,10.3255,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.9795,10.2930,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.3229,5.6647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,3.0520,5.4117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,3.0073,10.2737,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.9795,10.2044,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.3229,5.7008,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,3.0520,5.4546,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,3.0073,10.2712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.9795,10.1536,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.3229,6.1045,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,3.0520,5.6445,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,3.0073,10.1480,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.9795,9.8494,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.3229,6.1262,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,3.0520,5.6007,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,3.0073,10.1908,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.9795,10.0068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.3229,6.4052,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,3.0520,5.6944,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,3.0073,10.2960,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.9795,10.1409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.3229,6.2556,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,3.0520,5.6687,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,3.0073,10.7828,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.9795,10.6765,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.3229,5.7547,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,3.0520,5.4556,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,3.0073,10.2739,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.9795,9.9967,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.3229,5.7194,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,3.0520,5.5212,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,3.0073,10.2685,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.9795,10.2331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.3229,5.6232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,3.0520,5.5229,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,3.0073,10.2506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.9795,10.2417,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.3229,12.9398,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,3.0520,12.9021,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,3.0073,12.7517,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.9795,13.0620,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.3229,6.0731,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,3.0520,5.6750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,3.0073,10.3916,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.9795,10.2409,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.3229,5.7520,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,3.0520,5.5594,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,3.0073,10.1648,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.9795,10.1495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.3229,5.8456,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,3.0520,5.5501,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,3.0073,10.4241,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.9795,10.2544,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.3229,5.9824,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,3.0520,7.2782,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,3.0073,9.7586,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.9795,9.4335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.3229,6.1024,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,3.0520,5.6123,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,3.0073,10.2412,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.9795,10.1409,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.3229,5.8826,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,3.0520,5.6559,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,3.0073,10.2096,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.9795,10.1395,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.3229,5.7973,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,3.0520,5.5629,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,3.0073,10.3956,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.9795,10.2723,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.3229,5.9664,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,3.0520,5.6506,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,3.0073,10.5876,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.9795,10.5520,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.3229,6.0347,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,3.0520,5.6653,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,3.0073,10.5075,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.9795,10.3119,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.3229,5.7302,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,3.0520,5.4881,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,3.0073,10.3644,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.9795,10.3142,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.3229,6.0633,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,3.0520,5.6952,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,3.0073,10.6211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.9795,10.5306,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.3229,5.9124,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,3.0520,5.7066,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,3.0073,10.2999,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.9795,10.2693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.3229,5.7751,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,3.0520,5.5562,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,3.0073,10.3120,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.9795,10.2359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.3229,5.8294,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,3.0520,5.5739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,3.0073,10.2483,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.9795,10.1815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.3229,5.8142,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,3.0520,5.6173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,3.0073,10.4011,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.9795,10.3510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.3229,5.7830,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.0520,5.6040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,3.0073,10.4543,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.9795,10.3896,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.3229,5.8552,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.0520,5.5985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,3.0073,10.3027,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.9795,10.2942,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.3229,5.8042,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.0520,5.5791,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,3.0073,10.4908,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.9795,10.4146,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.3229,5.8315,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.0520,5.6797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,3.0073,11.2272,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.9795,11.0086,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.3229,5.9125,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.0520,5.6625,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,3.0073,10.4898,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.9795,10.3872,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.3229,6.0273,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.0520,5.6696,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,3.0073,10.4250,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.9795,10.3031,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.3229,5.9055,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.0520,5.6752,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,3.0073,10.4601,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.9795,10.4614,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.3229,5.9345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.0520,5.6645,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,3.0073,10.6370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.9795,10.5315,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.3229,5.8885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.0520,5.7635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,3.0073,10.3212,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.9795,10.4414,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.3229,6.0195,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.0520,5.7514,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,3.0073,10.6070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.9795,10.5511,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.3229,5.7668,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.0520,5.5332,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,3.0073,10.2546,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.9795,10.2718,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.3229,5.9306,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.0520,5.6376,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,3.0073,10.3400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.9795,10.3146,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.3229,5.8372,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.0520,5.5725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,3.0073,10.2910,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.9795,10.2680,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.3229,5.8537,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.0520,5.6084,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,3.0073,10.5028,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.9795,10.3266,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.3229,6.1482,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.0520,5.8108,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,3.0073,10.4506,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.9795,10.3380,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.3229,6.1662,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.0520,5.8585,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,3.0073,10.5127,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.9795,10.3929,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.3229,5.9642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.0520,5.6193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,3.0073,10.7488,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.9795,10.5917,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.3229,6.2717,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.0520,5.8195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,3.0073,10.7225,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.9795,10.6028,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.3229,5.6964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.0520,5.5563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,3.0073,10.3182,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.9795,10.2877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.3229,6.0954,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.0520,5.7332,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,3.0073,10.5553,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.9795,10.4628,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.3229,5.8725,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.0520,5.6578,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,3.0073,10.1525,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.9795,10.1160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.3229,5.9634,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.0520,5.6072,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,3.0073,10.6235,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.9795,10.5636,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.3229,5.9504,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.0520,5.6101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,3.0073,10.3703,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.9795,10.2752,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.3229,5.8502,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.0520,5.5720,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,3.0073,10.4137,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.9795,10.3230,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.3229,5.9333,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.0520,5.6990,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,3.0073,10.4047,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.9795,10.3159,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.3229,6.0880,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.0520,5.6782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,3.0073,10.5552,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.9795,10.3959,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.3229,6.1306,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.0520,5.7140,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,3.0073,11.5757,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.9795,11.3679,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.3229,7.3202,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.0520,6.0739,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,3.0073,10.6746,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.9795,10.3434,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.3229,7.4333,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.0520,6.1878,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,3.0073,9.9015,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.9795,10.2485,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.3229,6.9880,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,3.0520,5.9174,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,3.0073,10.8289,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.9795,10.5063,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.3229,7.9609,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,3.0520,7.1123,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,3.0073,10.7375,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.9795,10.5727,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.3229,7.1130,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,3.0520,6.2785,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,3.0073,12.9489,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.9795,12.8987,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.3229,6.7756,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,3.0520,5.7882,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,3.0073,10.6585,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.9795,10.6055,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.3229,7.6176,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,3.0520,5.9750,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,3.0073,10.8155,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.9795,10.6781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.3229,7.1430,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,3.0520,6.1955,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,3.0073,10.4458,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.9795,10.2643,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.3229,6.8905,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,3.0520,6.0105,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,3.0073,10.7818,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.9795,10.3527,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.3229,6.7864,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,3.0520,5.8686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,3.0073,10.3499,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.9795,8.6544,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.3229,8.3425,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,3.0520,6.1002,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,3.0073,10.1715,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.9795,10.5560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.3229,6.6605,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,3.0520,5.8948,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,3.0073,11.2312,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.9795,10.9687,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.3229,7.2835,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,3.0520,6.1342,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,3.0073,13.5521,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.9795,13.4711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.3229,6.4632,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,3.0520,5.8711,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,3.0073,10.9030,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.9795,10.8910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.3229,6.9037,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,3.0520,5.9838,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,3.0073,10.8946,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.9795,10.4668,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.3229,6.5974,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,3.0520,6.1957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,3.0073,9.9410,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.9795,10.1174,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.3229,6.9855,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,3.0520,6.0089,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,3.0073,10.6843,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.9795,10.3977,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.3229,6.3151,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,3.0520,6.0319,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,3.0073,10.5858,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.9795,10.2830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.3229,6.8074,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,3.0520,5.9753,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,3.0073,10.9250,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.9795,10.7164,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.3229,6.7595,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,3.0520,5.9301,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,3.0073,10.6650,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.9795,10.1188,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.3229,6.7107,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,3.0520,5.9324,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,3.0073,9.8074,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.9795,9.9173,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.3229,7.3536,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,3.0520,6.4982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,3.0073,11.6948,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.9795,11.4693,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.3229,6.8143,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,3.0520,5.8344,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,3.0073,12.7435,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.9795,12.4642,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.3229,6.8451,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,3.0520,5.9033,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,3.0073,10.2921,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.9795,10.3529,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.3229,7.0456,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,3.0520,5.8185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,3.0073,10.6744,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.9795,10.5790,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.3229,6.4933,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,3.0520,5.8742,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,3.0073,10.7686,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.9795,10.5293,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.3229,6.5948,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,3.0520,6.0481,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,3.0073,11.0072,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.9795,10.7606,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.3229,6.8612,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,3.0520,5.9377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,3.0073,11.9460,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.9795,12.9303,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.3229,6.7621,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,3.0520,5.9713,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,3.0073,10.9731,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.9795,10.7503,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.3229,15.9552,0.1028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,3.0520,11.2974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,3.0073,10.8517,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.9795,10.7490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.3229,6.6340,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,3.0520,5.9191,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,3.0073,10.9800,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.9795,10.7183,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.3229,6.1493,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,3.0520,5.9580,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,3.0073,12.8017,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.9795,12.9049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.3229,6.8870,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,3.0520,5.8901,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,3.0073,10.7745,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.9795,10.5411,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,5.3229,6.8929,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,3.0520,5.7965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,3.0073,10.5515,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.9795,10.3030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,5.3229,6.6561,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,3.0520,5.8371,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,3.0073,11.4981,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.9795,10.6494,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,5.3229,6.7942,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,3.0520,5.8870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,3.0073,10.8953,0.0279,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.9795,11.0063,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,5.3229,6.7050,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,3.0520,5.8134,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,3.0073,11.0015,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.9795,10.9957,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.3229,7.1885,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,3.0520,6.9048,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,3.0073,10.5817,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.9795,10.4114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.3229,6.0819,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,3.0520,5.6903,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,3.0073,10.4601,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.9795,10.3562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,5.3229,6.3894,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,3.0520,6.0421,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,3.0073,10.6155,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.9795,10.5528,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,5.3229,6.3587,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,3.0520,5.9938,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,3.0073,10.9537,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.9795,10.5500,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,5.3229,6.4029,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,3.0520,5.9052,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,3.0073,10.6920,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.9795,10.3398,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,5.3229,6.2093,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,3.0520,5.6627,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,3.0073,10.4617,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.9795,10.3222,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.3229,6.3432,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,3.0520,5.8790,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,3.0073,13.5890,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.9795,13.3987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.3229,6.5429,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,3.0520,6.2195,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,3.0073,10.3245,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.9795,10.3163,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.3229,7.1312,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,3.0520,6.2423,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,3.0073,11.2195,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.9795,6.3717,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,5.3229,6.8880,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,3.0520,6.2410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,3.0073,11.3250,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.9795,11.0851,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,5.3229,7.5385,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,3.0520,6.8574,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,3.0073,11.8168,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.9795,11.5236,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,5.3229,7.0009,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,3.0520,6.0204,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,3.0073,10.9781,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.9795,10.9367,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,5.3229,6.9950,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,3.0520,5.9939,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,3.0073,11.3890,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.9795,10.9532,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.3229,6.5697,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,3.0520,6.0534,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,3.0073,11.0209,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.9795,10.9724,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.3229,6.7728,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,3.0520,5.9449,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,3.0073,10.8742,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.9795,10.6839,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,5.3229,6.6573,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,3.0520,7.6193,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,3.0073,8.2683,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.9795,10.2215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.3229,6.9218,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,3.0520,6.4860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,3.0073,10.6765,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.9795,10.4679,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,5.3229,6.9248,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,3.0520,5.8720,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,3.0073,10.7052,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.9795,10.2460,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,5.3229,6.4183,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,3.0520,5.9545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,3.0073,9.8578,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.9795,9.7031,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,5.3229,6.4084,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,3.0520,5.7743,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,3.0073,10.0592,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.9795,10.1087,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.3229,7.7968,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,3.0520,7.2578,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,3.0073,10.0255,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.9795,9.6943,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.3229,6.0598,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,3.0520,5.7235,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,3.0073,9.7373,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.9795,10.0243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.3229,6.2398,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,3.0520,5.6585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,3.0073,10.5330,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.9795,10.3169,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,5.3229,6.2433,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,3.0520,5.6220,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,3.0073,10.3540,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.9795,10.2538,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,5.3229,6.2477,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,3.0520,5.7896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,3.0073,10.1913,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.9795,10.1778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,5.3229,43.5474,0.0232,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,3.0520,29.3495,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,3.0073,26.4312,0.0183,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.9795,25.3985,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.3229,5.8407,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,3.0520,5.5999,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,3.0073,10.4637,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.9795,10.4480,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.3229,5.7841,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,3.0520,5.6116,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,3.0073,10.4946,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.9795,10.4380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.3229,5.7803,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,3.0520,5.5881,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,3.0073,10.4048,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.9795,10.3793,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.3229,5.9075,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,3.0520,5.6705,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,3.0073,10.4747,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.9795,10.4482,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.3229,5.7588,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,3.0520,5.5337,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,3.0073,10.4475,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.9795,10.3996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.3229,5.7077,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,3.0520,5.5475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,3.0073,10.3535,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.9795,10.3229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.3229,5.8068,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,3.0520,5.5728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,3.0073,10.6257,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.9795,10.5469,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.3229,5.7497,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,3.0520,5.6256,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,3.0073,10.3540,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.9795,10.3343,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.3229,5.7951,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,3.0520,5.5543,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,3.0073,10.4131,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.9795,10.2744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.3229,5.8237,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,3.0520,5.6300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,3.0073,10.5304,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.9795,10.3674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.3229,5.8918,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,3.0520,5.6196,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,3.0073,10.4001,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.9795,10.2843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.3229,5.9144,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,3.0520,5.6150,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,3.0073,10.7169,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.9795,10.6156,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.3229,5.7927,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,3.0520,5.5152,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,3.0073,10.4542,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.9795,10.3256,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.3229,5.6679,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,3.0520,5.4977,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,3.0073,10.4673,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.9795,10.4490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.3229,5.7552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,3.0520,5.5775,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,3.0073,10.4333,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.9795,10.3920,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.3229,5.7604,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,3.0520,5.4902,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,3.0073,10.4827,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.9795,10.3391,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.3229,5.7577,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,3.0520,5.4750,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,3.0073,10.4456,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.9795,10.2223,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.3229,5.8232,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,3.0520,5.5400,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,3.0073,10.4348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.9795,10.3247,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.3229,5.8035,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,3.0520,5.5720,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,3.0073,10.5550,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.9795,10.4500,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.3229,5.7537,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,3.0520,5.5628,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,3.0073,10.4497,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.9795,10.4195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.3229,5.8252,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,3.0520,5.5998,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,3.0073,10.5833,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.9795,10.4977,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.3229,5.8306,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,3.0520,5.5639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,3.0073,10.4803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.9795,10.4214,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.3229,5.8015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,3.0520,5.5961,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,3.0073,10.4696,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.9795,10.3211,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.3229,5.6823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,3.0520,5.5293,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,3.0073,10.3697,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.9795,10.3698,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.3229,5.7168,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,3.0520,5.5873,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,3.0073,10.3471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.9795,10.3228,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.3229,5.7514,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,3.0520,5.5357,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,3.0073,10.2853,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.9795,10.2364,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.3229,5.6643,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,3.0520,5.5180,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,3.0073,10.4582,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.9795,10.3940,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.3229,5.7528,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,3.0520,5.6315,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,3.0073,10.4011,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.9795,10.4332,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.3229,5.6866,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,3.0520,5.5703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,3.0073,10.2477,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.9795,10.2210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.3229,5.6918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,3.0520,5.4668,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,3.0073,10.4204,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.9795,10.3744,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.3229,5.7145,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,3.0520,5.5541,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,3.0073,10.4662,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.9795,10.4381,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.3229,5.8549,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,3.0520,5.6089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,3.0073,10.4900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.9795,10.4782,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.3229,5.8440,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,3.0520,5.5489,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,3.0073,10.3622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.9795,10.3274,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.3229,5.7905,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,3.0520,5.5056,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,3.0073,10.4878,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.9795,10.4142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.3229,5.8886,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,3.0520,5.6075,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,3.0073,10.4646,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.9795,10.3915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.3229,5.8896,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,3.0520,5.6288,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,3.0073,10.4542,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.9795,10.4263,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.3229,5.7539,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,3.0520,5.5293,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,3.0073,10.3712,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.9795,10.3498,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.3229,5.8210,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,3.0520,5.5648,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,3.0073,10.3857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.9795,10.3125,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.3229,5.7779,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,3.0520,5.5757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,3.0073,10.5157,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.9795,10.4066,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.3229,5.7855,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.0520,5.5836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,3.0073,10.5809,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.9795,10.4749,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.3229,6.2303,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.0520,5.8428,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,3.0073,10.1306,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.9795,10.0442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.3229,6.5748,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.0520,5.8459,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,3.0073,9.9876,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.9795,10.1807,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.3229,6.8264,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.0520,6.5105,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,3.0073,10.4270,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.9795,10.3471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.3229,6.3130,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.0520,5.7899,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,3.0073,10.3012,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.9795,10.3038,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.3229,6.0180,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.0520,5.8321,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,3.0073,13.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.9795,13.5541,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.3229,6.1072,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.0520,5.6658,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,3.0073,10.5701,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.9795,9.7966,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.3229,6.0404,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.0520,5.8382,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,3.0073,9.6454,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.9795,9.5835,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.3229,6.2088,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.0520,5.8086,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,3.0073,10.4098,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.9795,10.3622,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.3229,6.0378,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.0520,5.6473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,3.0073,10.0292,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.9795,9.7683,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.3229,6.5008,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.0520,5.8816,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,3.0073,10.4649,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.9795,9.9304,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.3229,6.0800,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.0520,5.7422,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,3.0073,9.6018,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.9795,9.3206,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.3229,5.8896,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.0520,5.6314,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,3.0073,10.5093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.9795,10.4868,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.3229,5.9896,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.0520,5.7351,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,3.0073,11.9347,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.9795,12.0145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.3229,5.8481,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.0520,5.5448,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,3.0073,10.4849,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.9795,10.3684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.3229,5.9463,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.0520,5.6328,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,3.0073,14.2441,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.9795,14.1757,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.3229,6.1158,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.0520,5.8426,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,3.0073,10.0378,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.9795,10.6028,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.3229,6.2977,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.0520,5.9329,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,3.0073,10.1409,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.9795,10.3145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.3229,5.9363,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.0520,5.6346,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,3.0073,10.4006,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.9795,10.3353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.3229,5.9861,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.0520,5.7548,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,3.0073,9.8097,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.9795,9.7715,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.3229,6.0173,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,3.0520,5.6102,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,3.0073,9.7854,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +963,2.9795,9.7134,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +964,5.3229,5.8725,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,3.0520,5.6284,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,3.0073,11.5131,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +967,2.9795,11.5650,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +968,5.3229,5.8711,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,3.0520,5.5650,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,3.0073,10.4238,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +971,2.9795,10.3496,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +972,5.3229,5.7945,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,3.0520,5.5752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,3.0073,10.4870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +975,2.9795,10.3903,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +976,5.3229,6.0951,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,3.0520,5.7872,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,3.0073,10.5051,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +979,2.9795,10.3622,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +980,5.3229,5.9665,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,3.0520,5.6670,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,3.0073,11.5642,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.9795,11.0816,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +984,5.3229,6.0762,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,3.0520,5.9560,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,3.0073,10.0375,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.9795,10.2231,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +988,5.3229,6.0683,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,3.0520,5.6483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,3.0073,9.9414,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.9795,9.9021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +992,5.3229,6.0761,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,3.0520,5.7663,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,3.0073,10.5578,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.9795,10.4591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +996,5.3229,6.1438,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,3.0520,5.7612,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,3.0073,10.4925,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +999,2.9795,10.3320,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1000,5.3229,5.8949,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,3.0520,5.5682,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,3.0073,10.4894,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1003,2.9795,10.4010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1004,5.3229,5.9864,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,3.0520,5.6368,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,3.0073,10.5875,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1007,2.9795,10.5442,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1008,5.3229,5.7920,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,3.0520,5.5954,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,3.0073,10.6691,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1011,2.9795,10.5188,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.3229,6.9215,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,3.0520,6.4993,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,3.0073,10.2913,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1015,2.9795,6.0518,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1016,5.3229,6.6402,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,3.0520,5.9720,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,3.0073,10.6734,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1019,2.9795,10.5429,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1020,5.3229,6.1331,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,3.0520,5.7123,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,3.0073,10.3315,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1023,2.9795,10.0032,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1024,5.3229,6.0224,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,3.0520,5.7004,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,3.0073,10.4245,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.9795,10.3323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1028,5.3229,5.9907,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,3.0520,5.7912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,3.0073,12.5313,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.9795,12.2500,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1032,5.3229,5.9156,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,3.0520,5.5775,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,3.0073,10.7137,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.9795,10.6738,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1036,5.3229,6.0062,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,3.0520,5.7162,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,3.0073,10.3861,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.9795,10.2664,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1040,5.3229,6.1127,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,3.0520,5.8503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,3.0073,10.7865,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.9795,10.4114,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1044,5.3229,5.8462,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,3.0520,5.5664,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,3.0073,10.4787,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.9795,10.2881,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1048,5.3229,5.9333,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,3.0520,5.6811,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,3.0073,10.5051,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1051,2.9795,10.4250,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1052,5.3229,5.9237,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,3.0520,5.6055,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,3.0073,10.4818,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1055,2.9795,10.4156,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.3229,5.9057,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,3.0520,5.5987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,3.0073,10.4535,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1059,2.9795,10.2791,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1060,5.3229,5.8215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,3.0520,5.5482,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,3.0073,10.5150,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1063,2.9795,10.4333,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1064,5.3229,5.8811,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,3.0520,5.5774,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,3.0073,10.5281,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1067,2.9795,10.4173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1068,5.3229,5.9401,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,3.0520,5.6022,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,3.0073,10.4913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.9795,10.3371,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1072,5.3229,5.9328,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,3.0520,5.6155,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,3.0073,10.4987,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.9795,10.3226,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1076,5.3229,5.9043,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,3.0520,5.6151,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,3.0073,10.4776,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.9795,10.3699,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1080,5.3229,5.8990,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,3.0520,5.5850,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,3.0073,10.4802,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.9795,10.3872,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.3229,5.9000,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.0520,5.6417,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,3.0073,10.5168,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1087,2.9795,10.4230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1088,5.3229,5.8288,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.0520,5.5972,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,3.0073,10.4846,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.9795,10.4252,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1092,5.3229,5.8494,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.0520,5.6297,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,3.0073,10.3797,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1095,2.9795,10.2363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.3229,5.9051,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.0520,5.5760,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,3.0073,10.5228,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1099,2.9795,10.3950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1100,5.3229,5.8712,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.0520,5.6668,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,3.0073,10.4322,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,2.9795,10.3279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1104,5.3229,5.8277,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.0520,5.6182,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,3.0073,10.4485,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1107,2.9795,10.3762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1108,5.3229,5.9404,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.0520,5.6302,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,3.0073,10.4970,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1111,2.9795,10.3561,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.3229,7.2234,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.0520,6.8800,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,3.0073,11.8030,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.9795,11.7613,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.3229,5.8810,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.0520,5.6738,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,3.0073,10.4066,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.9795,10.3328,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.3229,5.9032,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.0520,5.5917,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,3.0073,10.5015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.9795,10.3395,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1124,5.3229,5.9338,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.0520,5.5536,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,3.0073,10.4004,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1127,2.9795,10.2800,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1128,5.3229,5.8972,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.0520,5.5684,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,3.0073,10.5187,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1131,2.9795,10.4718,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1132,5.3229,5.8275,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.0520,5.6029,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,3.0073,10.3815,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1135,2.9795,10.3564,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1136,5.3229,5.9010,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.0520,5.6152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,3.0073,10.4960,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1139,2.9795,10.4312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.3229,5.8659,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.0520,5.5950,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,3.0073,10.4370,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1143,2.9795,10.3713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.3229,5.9022,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.0520,5.7340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,3.0073,10.3519,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1147,2.9795,10.3663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.3229,5.9032,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.0520,5.6257,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,3.0073,10.4482,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1151,2.9795,10.4038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1152,5.3229,5.9128,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.0520,5.5906,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,3.0073,10.5172,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1155,2.9795,10.3904,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1156,5.3229,5.9357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.0520,5.6733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,3.0073,10.5056,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.9795,10.4316,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1160,5.3229,5.8248,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.0520,5.5899,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,3.0073,10.4225,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.9795,10.3575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1164,5.3229,5.8937,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.0520,5.6245,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,3.0073,10.5230,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.9795,10.5126,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.3229,5.8238,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.0520,5.6197,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,3.0073,10.4625,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.9795,10.2721,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.3229,5.8845,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.0520,5.6224,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,3.0073,10.4622,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1175,2.9795,10.4050,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.3229,5.8892,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.0520,5.6843,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,3.0073,10.4731,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1179,2.9795,10.4273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.3229,5.8773,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.0520,5.6506,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,3.0073,10.4485,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1183,2.9795,10.3405,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1184,5.3229,5.8629,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.0520,5.5575,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,3.0073,10.4914,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1187,2.9795,10.4360,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1188,5.3229,5.8842,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.0520,5.6297,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,3.0073,10.4309,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1191,2.9795,10.3968,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1192,5.3229,5.9331,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.0520,5.6396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,3.0073,10.4418,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1195,2.9795,10.3172,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.3229,5.9675,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.0520,5.6624,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,3.0073,10.6560,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1199,2.9795,10.6133,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.3229,5.8480,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1201,3.0520,5.5915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1202,3.0073,10.4819,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1203,2.9795,10.4624,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1204,5.3229,5.8438,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1205,3.0520,5.5706,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1206,3.0073,10.5407,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1207,2.9795,10.5166,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1208,5.3229,5.9027,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1209,3.0520,5.5970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1210,3.0073,10.5047,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1211,2.9795,10.3715,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1212,5.3229,5.9359,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1213,3.0520,5.6760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1214,3.0073,10.4223,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1215,2.9795,10.3599,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1216,5.3229,5.8680,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1217,3.0520,5.5902,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1218,3.0073,10.4973,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1219,2.9795,10.3758,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1220,5.3229,5.8717,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1221,3.0520,5.5706,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1222,3.0073,10.4378,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1223,2.9795,10.3265,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1224,5.3229,5.8627,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1225,3.0520,5.5890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1226,3.0073,10.5552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1227,2.9795,10.3938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1228,5.3229,5.9256,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1229,3.0520,5.6107,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1230,3.0073,10.4836,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1231,2.9795,10.4201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1232,5.3229,5.9430,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1233,3.0520,5.6247,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1234,3.0073,10.4529,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1235,2.9795,10.3615,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1236,5.3229,5.8157,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1237,3.0520,5.5340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1238,3.0073,10.4015,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1239,2.9795,10.3410,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1240,5.3229,5.9147,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1241,3.0520,5.6737,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1242,3.0073,10.4407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1243,2.9795,10.4220,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1244,5.3229,8.0085,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1245,3.0520,7.7076,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1246,3.0073,12.5870,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1247,2.9795,12.4579,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1248,5.3229,6.2663,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1249,3.0520,5.8420,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1250,3.0073,10.4341,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1251,2.9795,10.2784,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1252,5.3229,5.8773,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1253,3.0520,5.6257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1254,3.0073,10.3184,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1255,2.9795,10.2852,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1256,5.3229,5.8526,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1257,3.0520,5.5804,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1258,3.0073,10.5673,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1259,2.9795,10.5361,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1260,5.3229,5.8794,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1261,3.0520,5.5948,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,3.0073,10.5045,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1263,2.9795,10.4131,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1264,5.3229,5.8692,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1265,3.0520,5.6190,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,3.0073,10.5468,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1267,2.9795,10.3527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1268,5.3229,5.8347,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1269,3.0520,5.6096,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,3.0073,10.5301,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1271,2.9795,10.4209,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1272,5.3229,5.8331,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1273,3.0520,5.5995,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,3.0073,10.4937,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1275,2.9795,10.4603,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1276,5.3229,5.7908,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1277,3.0520,5.5349,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,3.0073,10.3463,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1279,2.9795,10.2465,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1280,5.3229,5.9380,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1281,3.0520,5.6688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,3.0073,10.4997,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1283,2.9795,10.4397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.3229,5.8645,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1285,3.0520,5.5876,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,3.0073,10.5625,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1287,2.9795,10.4968,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1288,5.3229,5.8215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1289,3.0520,5.6154,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,3.0073,10.4546,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.9795,10.3563,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1292,5.3229,5.8756,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1293,3.0520,5.5935,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,3.0073,10.6760,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.9795,10.5757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1296,5.3229,5.7977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1297,3.0520,5.5800,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,3.0073,10.3335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1299,2.9795,10.2953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1300,5.3229,5.9366,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1301,3.0520,5.6242,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,3.0073,10.5426,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1303,2.9795,10.4456,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1304,5.3229,5.8917,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1305,3.0520,5.6172,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,3.0073,10.5302,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1307,2.9795,10.3862,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1308,5.3229,5.9226,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1309,3.0520,5.6590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,3.0073,10.4112,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1311,2.9795,10.3135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.3229,5.8657,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1313,3.0520,5.6230,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,3.0073,10.4802,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1315,2.9795,10.3895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1316,5.3229,5.8359,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1317,3.0520,5.5622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,3.0073,10.4804,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1319,2.9795,10.3763,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1320,5.3229,5.9251,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1321,3.0520,5.6095,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,3.0073,10.5241,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1323,2.9795,10.3915,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1324,5.3229,5.8566,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,3.0520,5.5624,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,3.0073,10.4326,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1327,2.9795,10.4050,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1328,5.3229,5.9159,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,3.0520,5.5933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,3.0073,10.5227,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1331,2.9795,10.4740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1332,5.3229,5.9030,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,3.0520,5.6445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,3.0073,10.4804,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.9795,10.4103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1336,5.3229,5.9117,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,3.0520,5.6757,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,3.0073,10.3979,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.9795,10.3739,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.3229,5.8685,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,3.0520,5.5769,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,3.0073,10.4313,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.9795,10.3138,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.3229,5.9090,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,3.0520,5.6319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,3.0073,10.6006,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1347,2.9795,10.4319,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1348,5.3229,6.0012,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,3.0520,5.6691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,3.0073,10.4213,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1351,2.9795,10.3531,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1352,5.3229,5.8479,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,3.0520,5.5446,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,3.0073,10.4910,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1355,2.9795,10.3994,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1356,5.3229,5.8409,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,3.0520,5.6613,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,3.0073,10.2867,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1359,2.9795,10.2229,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1360,5.3229,5.8529,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,3.0520,5.5922,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,3.0073,10.4548,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1363,2.9795,10.3489,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.3229,5.8839,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,3.0520,5.6796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,3.0073,10.3707,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1367,2.9795,10.3223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.3229,5.8312,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,3.0520,5.6259,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,3.0073,10.4171,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1371,2.9795,10.3632,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.3229,5.8770,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,3.0520,5.6226,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,3.0073,10.3522,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1375,2.9795,10.3519,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1376,5.3229,5.9331,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,3.0520,5.6560,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,3.0073,10.4942,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1379,2.9795,10.4221,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1380,5.3229,5.9095,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,3.0520,5.6306,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,3.0073,10.4355,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.9795,10.4003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1384,5.3229,5.8586,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,3.0520,5.5650,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,3.0073,10.4649,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.9795,10.3745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1388,5.3229,5.8480,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,3.0520,5.6503,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,3.0073,10.3927,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.9795,10.2509,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.3229,5.8513,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,3.0520,5.5526,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,3.0073,10.5098,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1395,2.9795,10.4564,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.3229,5.9136,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,3.0520,5.6460,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,3.0073,10.4934,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1399,2.9795,10.3080,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1400,5.3229,5.8482,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,3.0520,5.6068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,3.0073,10.5035,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1403,2.9795,10.4187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.3229,5.8850,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,3.0520,5.5851,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,3.0073,10.4358,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1407,2.9795,10.3394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1408,5.3229,5.9078,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,3.0520,5.6902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,3.0073,10.4716,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1411,2.9795,10.3120,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1412,5.3229,5.9182,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,3.0520,5.6017,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,3.0073,10.5077,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1415,2.9795,10.3833,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1416,5.3229,5.8413,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,3.0520,5.6256,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,3.0073,10.4759,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,2.9795,10.3459,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.3229,5.8832,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,3.0520,5.6161,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,3.0073,10.5010,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.9795,10.3992,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.3229,5.8551,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,3.0520,5.5828,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,3.0073,10.5595,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.9795,10.4733,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.3229,5.9040,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,3.0520,5.6159,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,3.0073,10.5935,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.9795,10.4901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1432,5.3229,5.9222,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,3.0520,5.6167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,3.0073,10.4995,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.9795,10.4718,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1436,5.3229,5.8397,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,3.0520,5.6475,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,3.0073,10.5436,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1439,2.9795,10.3937,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1440,5.3229,45.4595,0.0270,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1441,3.0520,25.9517,0.0159,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1442,3.0073,25.7003,0.0065,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1443,2.9795,24.7679,0.0153,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1444,5.3229,5.8670,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1445,3.0520,5.6021,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1446,3.0073,10.3800,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1447,2.9795,10.2506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1448,5.3229,5.7024,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1449,3.0520,5.5769,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1450,3.0073,10.2258,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1451,2.9795,10.2251,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1452,5.3229,5.7709,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1453,3.0520,5.5796,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1454,3.0073,10.5108,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1455,2.9795,10.3906,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1456,5.3229,5.8533,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1457,3.0520,5.6418,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1458,3.0073,10.5004,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1459,2.9795,10.3172,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1460,5.3229,5.7322,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1461,3.0520,5.5908,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1462,3.0073,10.3349,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1463,2.9795,10.2630,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1464,5.3229,5.7644,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1465,3.0520,5.5523,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1466,3.0073,10.3250,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1467,2.9795,10.2689,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1468,5.3229,5.8741,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1469,3.0520,5.6621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1470,3.0073,10.5723,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1471,2.9795,10.4782,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1472,5.3229,5.7775,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1473,3.0520,5.5570,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1474,3.0073,10.2865,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1475,2.9795,10.2422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1476,5.3229,5.7107,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1477,3.0520,5.5405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1478,3.0073,10.3715,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1479,2.9795,10.2835,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1480,5.3229,5.8267,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1481,3.0520,5.6249,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1482,3.0073,10.4477,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1483,2.9795,10.3396,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1484,5.3229,5.7704,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1485,3.0520,5.6205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1486,3.0073,10.2459,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1487,2.9795,10.3063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1488,5.3229,5.8415,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1489,3.0520,5.6304,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1490,3.0073,10.4362,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1491,2.9795,10.3175,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1492,5.3229,5.8240,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1493,3.0520,5.6574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1494,3.0073,10.4680,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1495,2.9795,10.3990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1496,5.3229,5.7572,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1497,3.0520,5.5005,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1498,3.0073,10.3885,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1499,2.9795,10.2435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1500,5.3229,5.7511,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1501,3.0520,5.5566,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1502,3.0073,10.5583,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1503,2.9795,10.5529,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1504,5.3229,5.7401,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1505,3.0520,5.5377,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1506,3.0073,10.3812,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1507,2.9795,10.3650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1508,5.3229,5.8235,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1509,3.0520,5.5232,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1510,3.0073,10.3878,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1511,2.9795,10.3367,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1512,5.3229,5.7744,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1513,3.0520,5.6867,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1514,3.0073,10.4863,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1515,2.9795,10.4733,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1516,5.3229,5.8198,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1517,3.0520,5.5559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1518,3.0073,10.3432,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1519,2.9795,10.2704,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1520,5.3229,5.8697,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1521,3.0520,5.6099,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1522,3.0073,10.5193,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1523,2.9795,10.3971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1524,5.3229,5.8521,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1525,3.0520,5.6509,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1526,3.0073,10.4911,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1527,2.9795,10.4227,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1528,5.3229,5.9055,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1529,3.0520,5.6000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1530,3.0073,10.4633,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1531,2.9795,10.4267,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1532,5.3229,5.8723,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1533,3.0520,5.6120,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1534,3.0073,10.4521,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1535,2.9795,10.4227,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1536,5.3229,5.7497,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1537,3.0520,5.6100,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1538,3.0073,10.3671,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1539,2.9795,10.3319,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1540,5.3229,5.8163,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1541,3.0520,5.5882,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1542,3.0073,10.5070,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1543,2.9795,10.3486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1544,5.3229,5.8273,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1545,3.0520,5.6292,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1546,3.0073,10.5367,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1547,2.9795,10.3879,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1548,5.3229,6.1719,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1549,3.0520,5.8999,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1550,3.0073,10.5767,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1551,2.9795,10.5309,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1552,5.3229,5.9061,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1553,3.0520,5.7697,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1554,3.0073,10.1422,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1555,2.9795,10.2603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1556,5.3229,5.7548,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1557,3.0520,5.5634,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1558,3.0073,10.3847,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1559,2.9795,10.3522,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1560,5.3229,5.9625,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1561,3.0520,5.6890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,3.0073,10.3746,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1563,2.9795,10.3597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1564,5.3229,5.9813,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1565,3.0520,5.6580,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,3.0073,10.5050,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1567,2.9795,10.4074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1568,5.3229,5.8944,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1569,3.0520,5.6177,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,3.0073,10.5345,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1571,2.9795,10.4250,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1572,5.3229,5.9399,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1573,3.0520,5.6850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,3.0073,10.3951,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1575,2.9795,10.2522,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1576,5.3229,5.9229,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1577,3.0520,5.6392,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,3.0073,10.5161,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1579,2.9795,10.4242,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1580,5.3229,5.9095,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1581,3.0520,5.6206,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,3.0073,10.5652,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1583,2.9795,10.5158,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1584,5.3229,5.9539,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1585,3.0520,5.6545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,3.0073,10.6079,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1587,2.9795,10.4375,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1588,5.3229,5.9396,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1589,3.0520,5.7189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,3.0073,10.5153,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1591,2.9795,10.3790,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1592,5.3229,5.8975,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1593,3.0520,5.6199,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,3.0073,10.4720,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1595,2.9795,10.3660,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1596,5.3229,5.9846,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1597,3.0520,5.7494,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,3.0073,10.4590,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1599,2.9795,10.3953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1600,5.3229,5.8483,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,3.0520,5.6285,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,3.0073,10.5837,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1603,2.9795,10.4808,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1604,5.3229,5.9339,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,3.0520,5.5932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,3.0073,10.5207,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1607,2.9795,10.4135,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1608,5.3229,5.9017,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,3.0520,5.6843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,3.0073,10.4668,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1611,2.9795,10.3876,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1612,5.3229,5.9954,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,3.0520,5.6427,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,3.0073,10.5112,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1615,2.9795,10.4765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1616,5.3229,5.8742,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,3.0520,5.5881,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,3.0073,10.4304,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1619,2.9795,10.3404,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1620,5.3229,5.9729,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,3.0520,5.6006,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,3.0073,10.4558,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1623,2.9795,10.2933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1624,5.3229,5.9020,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,3.0520,5.6365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,3.0073,10.4203,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1627,2.9795,10.3210,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1628,5.3229,5.9319,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,3.0520,5.6715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,3.0073,10.5595,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1631,2.9795,10.4162,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1632,5.3229,5.9263,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,3.0520,5.6597,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,3.0073,10.4985,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1635,2.9795,10.4356,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1636,5.3229,5.9359,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,3.0520,5.5915,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,3.0073,10.5296,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1639,2.9795,10.4719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1640,5.3229,5.9191,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,3.0520,5.6075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,3.0073,10.4781,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1643,2.9795,10.3711,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1644,5.3229,5.8505,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,3.0520,5.5918,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,3.0073,10.4915,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1647,2.9795,10.4162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1648,5.3229,5.8834,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,3.0520,5.6455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,3.0073,10.4720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1651,2.9795,10.3691,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1652,5.3229,5.8937,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,3.0520,5.5918,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,3.0073,10.5095,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1655,2.9795,10.3396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1656,5.3229,5.8772,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,3.0520,5.6706,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,3.0073,10.5091,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1659,2.9795,10.3804,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1660,5.3229,5.8563,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,3.0520,5.5308,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,3.0073,10.4390,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1663,2.9795,10.2895,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1664,5.3229,5.8836,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,3.0520,5.6425,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,3.0073,10.4224,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1667,2.9795,10.3110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1668,5.3229,5.9038,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,3.0520,5.5849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,3.0073,10.4759,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1671,2.9795,10.3125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1672,5.3229,5.8626,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,3.0520,5.6035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,3.0073,10.4237,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1675,2.9795,10.3605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1676,5.3229,5.8590,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,3.0520,5.5743,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,3.0073,10.3728,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1679,2.9795,10.3524,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1680,5.3229,5.9497,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1681,3.0520,5.6048,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1682,3.0073,10.4611,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1683,2.9795,10.3180,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1684,5.3229,5.8593,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1685,3.0520,5.5837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1686,3.0073,10.3316,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1687,2.9795,10.2338,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1688,5.3229,5.7868,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1689,3.0520,5.6010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1690,3.0073,10.4180,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1691,2.9795,10.3708,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1692,5.3229,5.8398,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1693,3.0520,5.6136,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1694,3.0073,10.4490,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1695,2.9795,10.4193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1696,5.3229,5.8487,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1697,3.0520,5.6812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1698,3.0073,10.3013,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1699,2.9795,10.3314,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1700,5.3229,5.8810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1701,3.0520,5.5607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1702,3.0073,10.4981,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1703,2.9795,10.4072,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1704,5.3229,5.8393,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1705,3.0520,5.5757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1706,3.0073,10.5010,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1707,2.9795,10.3351,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1708,5.3229,5.9277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1709,3.0520,5.6297,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1710,3.0073,10.4713,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1711,2.9795,10.4000,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1712,5.3229,5.8645,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1713,3.0520,5.5982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1714,3.0073,10.4348,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1715,2.9795,10.3718,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1716,5.3229,5.9101,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1717,3.0520,5.5918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1718,3.0073,10.5331,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1719,2.9795,10.4601,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1720,5.3229,6.1200,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1721,3.0520,5.7942,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1722,3.0073,10.3907,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1723,2.9795,10.2834,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1724,5.3229,6.1779,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1725,3.0520,5.9713,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1726,3.0073,10.5282,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1727,2.9795,10.3747,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1728,5.3229,5.8712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1729,3.0520,5.5942,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1730,3.0073,10.5509,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1731,2.9795,10.4426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1732,5.3229,5.9075,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1733,3.0520,5.6205,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1734,3.0073,10.5631,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1735,2.9795,10.4653,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1736,5.3229,5.9073,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1737,3.0520,5.6608,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1738,3.0073,10.4567,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1739,2.9795,10.3245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1740,5.3229,5.8996,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1741,3.0520,5.6338,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,3.0073,10.9777,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1743,2.9795,10.7980,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1744,5.3229,6.0563,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1745,3.0520,6.1372,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,3.0073,10.5565,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1747,2.9795,10.3958,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1748,5.3229,5.8933,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1749,3.0520,5.6401,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,3.0073,10.4966,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,2.9795,10.4179,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1752,5.3229,5.9166,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1753,3.0520,5.6236,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,3.0073,10.5248,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1755,2.9795,10.4887,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1756,5.3229,5.8445,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1757,3.0520,5.6570,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,3.0073,10.4599,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1759,2.9795,10.3843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1760,5.3229,6.3190,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1761,3.0520,5.6314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,3.0073,10.1582,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1763,2.9795,9.5319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1764,5.3229,5.8026,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1765,3.0520,5.5204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,3.0073,10.4325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1767,2.9795,10.2837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1768,5.3229,5.8072,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1769,3.0520,5.5375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,3.0073,10.4114,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1771,2.9795,10.3249,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1772,5.3229,5.9523,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1773,3.0520,5.6270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,3.0073,10.5306,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1775,2.9795,10.4604,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1776,5.3229,5.9130,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1777,3.0520,5.5875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,3.0073,10.4110,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1779,2.9795,10.3023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1780,5.3229,5.8910,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1781,3.0520,5.6710,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,3.0073,10.4456,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1783,2.9795,10.3340,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1784,5.3229,5.7455,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1785,3.0520,5.5405,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,3.0073,10.3143,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1787,2.9795,10.2254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1788,5.3229,5.8860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1789,3.0520,5.5768,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,3.0073,10.4502,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1791,2.9795,10.3806,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1792,5.3229,5.8960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1793,3.0520,5.5170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,3.0073,10.2484,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1795,2.9795,10.1521,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1796,5.3229,5.9186,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1797,3.0520,5.6522,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,3.0073,10.3573,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1799,2.9795,10.3042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1800,5.3229,5.8500,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1801,3.0520,5.5565,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1802,3.0073,10.4522,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1803,2.9795,10.3438,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1804,5.3229,5.8822,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1805,3.0520,5.5953,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1806,3.0073,10.4510,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1807,2.9795,10.3684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1808,5.3229,5.8482,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1809,3.0520,5.5588,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1810,3.0073,10.3447,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1811,2.9795,10.3142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1812,5.3229,5.8792,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1813,3.0520,5.6085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1814,3.0073,10.4505,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1815,2.9795,10.2952,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1816,5.3229,5.8389,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1817,3.0520,5.5666,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1818,3.0073,10.3952,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1819,2.9795,10.2910,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1820,5.3229,5.9140,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1821,3.0520,5.6640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1822,3.0073,10.4620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1823,2.9795,10.3724,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1824,5.3229,5.8654,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1825,3.0520,5.6376,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1826,3.0073,10.3752,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1827,2.9795,10.2478,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1828,5.3229,5.8670,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1829,3.0520,5.6004,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1830,3.0073,10.4767,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1831,2.9795,10.4206,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1832,5.3229,5.8498,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1833,3.0520,5.5949,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1834,3.0073,10.4532,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1835,2.9795,10.4317,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1836,5.3229,5.8826,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1837,3.0520,5.5877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1838,3.0073,10.3879,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1839,2.9795,10.2878,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1840,5.3229,5.8376,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1841,3.0520,5.6087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1842,3.0073,10.4784,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1843,2.9795,10.4418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1844,5.3229,5.8870,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1845,3.0520,5.6280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1846,3.0073,14.0429,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1847,2.9795,13.9398,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1848,5.3229,5.6873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1849,3.0520,5.4778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1850,3.0073,10.1380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1851,2.9795,10.0854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1852,5.3229,5.9190,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1853,3.0520,5.5722,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1854,3.0073,10.3563,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1855,2.9795,10.2113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1856,5.3229,5.8438,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1857,3.0520,5.6602,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1858,3.0073,10.4591,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1859,2.9795,10.3622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1860,5.3229,5.9543,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1861,3.0520,5.5858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1862,3.0073,10.4647,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1863,2.9795,10.3672,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1864,5.3229,5.9633,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1865,3.0520,5.6377,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1866,3.0073,10.3869,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1867,2.9795,10.1210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1868,5.3229,5.9214,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1869,3.0520,5.6138,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1870,3.0073,10.5135,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1871,2.9795,10.3767,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1872,5.3229,5.8838,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1873,3.0520,5.8085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1874,3.0073,10.4932,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1875,2.9795,10.5660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1876,5.3229,5.8945,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1877,3.0520,5.6306,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1878,3.0073,10.5305,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1879,2.9795,10.4015,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1880,5.3229,5.9363,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1881,3.0520,5.6288,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1882,3.0073,10.5283,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1883,2.9795,10.3998,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1884,5.3229,5.9045,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1885,3.0520,5.5674,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1886,3.0073,10.3711,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1887,2.9795,10.1875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1888,5.3229,6.0681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1889,3.0520,5.6867,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1890,3.0073,10.4401,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1891,2.9795,10.3325,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1892,5.3229,6.0138,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1893,3.0520,5.7107,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1894,3.0073,10.4080,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1895,2.9795,10.3003,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1896,5.3229,5.9714,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1897,3.0520,5.6561,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1898,3.0073,10.5808,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1899,2.9795,10.4604,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1900,5.3229,6.1851,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1901,3.0520,6.6999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1902,3.0073,10.1838,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1903,2.9795,10.1017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1904,5.3229,5.8898,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1905,3.0520,5.6930,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1906,3.0073,9.4465,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1907,2.9795,9.4805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1908,5.3229,5.9305,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1909,3.0520,5.6057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1910,3.0073,10.4217,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1911,2.9795,10.3453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1912,5.3229,5.8833,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1913,3.0520,5.5820,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1914,3.0073,10.4888,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1915,2.9795,10.4068,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1916,5.3229,5.8882,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1917,3.0520,5.5655,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1918,3.0073,10.4756,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1919,2.9795,10.3831,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1920,5.3229,5.9270,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1921,3.0520,5.6578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,3.0073,10.4367,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1923,2.9795,10.3178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1924,5.3229,5.8472,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1925,3.0520,5.5728,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,3.0073,10.4606,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1927,2.9795,10.4021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1928,5.3229,6.0107,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1929,3.0520,5.6924,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,3.0073,10.5198,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1931,2.9795,10.4021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1932,5.3229,5.8900,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1933,3.0520,5.5639,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,3.0073,12.4854,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1935,2.9795,12.3217,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1936,5.3229,5.8963,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1937,3.0520,5.6777,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,3.0073,10.3679,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1939,2.9795,10.3129,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1940,5.3229,5.8662,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1941,3.0520,5.6803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,3.0073,10.3108,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1943,2.9795,10.3028,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1944,5.3229,5.8809,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1945,3.0520,5.6137,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,3.0073,10.4423,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1947,2.9795,10.2532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1948,5.3229,5.8399,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1949,3.0520,5.6112,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,3.0073,10.3620,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1951,2.9795,10.3414,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1952,5.3229,5.8055,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1953,3.0520,5.5677,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,3.0073,10.4042,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1955,2.9795,10.3276,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1956,5.3229,5.8438,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1957,3.0520,5.5940,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,3.0073,10.3860,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1959,2.9795,10.2834,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1960,5.3229,5.6885,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,3.0520,5.5313,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,3.0073,10.2279,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1963,2.9795,10.2549,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1964,5.3229,6.3069,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,3.0520,5.9744,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,3.0073,10.8095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1967,2.9795,10.6157,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1968,5.3229,5.8172,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,3.0520,5.6144,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,3.0073,10.4498,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1971,2.9795,10.3704,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1972,5.3229,5.8341,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,3.0520,5.6123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,3.0073,10.3518,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1975,2.9795,10.2762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1976,5.3229,5.7873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,3.0520,5.5341,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,3.0073,10.3723,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1979,2.9795,10.3127,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1980,5.3229,5.8410,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,3.0520,5.5866,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,3.0073,10.3711,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1983,2.9795,10.3549,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1984,5.3229,5.8198,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,3.0520,5.5974,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,3.0073,10.4252,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1987,2.9795,10.3687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1988,5.3229,5.8640,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,3.0520,5.6257,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,3.0073,10.5150,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1991,2.9795,10.4090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1992,5.3229,5.8654,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,3.0520,5.6147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,3.0073,10.3984,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1995,2.9795,10.3116,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1996,5.3229,5.9060,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,3.0520,5.5750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,3.0073,10.4857,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1999,2.9795,10.3218,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2000,5.3229,5.9089,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,3.0520,5.5894,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,3.0073,10.4515,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2003,2.9795,10.3965,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.3229,5.8895,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,3.0520,5.6115,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,3.0073,10.4954,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2007,2.9795,10.3788,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2008,5.3229,5.8512,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,3.0520,5.6176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,3.0073,10.4219,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2011,2.9795,10.3356,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2012,5.3229,5.9124,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,3.0520,5.6245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,3.0073,10.4683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2015,2.9795,10.4448,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2016,5.3229,5.8985,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,3.0520,5.6584,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,3.0073,10.4701,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2019,2.9795,10.3127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2020,5.3229,5.8999,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,3.0520,5.6220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,3.0073,10.5360,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2023,2.9795,10.4685,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2024,5.3229,5.7349,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,3.0520,5.5077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,3.0073,10.3168,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2027,2.9795,10.1986,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2028,5.3229,5.8086,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,3.0520,5.5068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,3.0073,10.4561,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,2.9795,10.3520,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2032,5.3229,6.0010,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,3.0520,5.5818,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,3.0073,10.3625,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2035,2.9795,10.2451,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2036,5.3229,6.0499,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,3.0520,5.7250,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,3.0073,10.4910,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2039,2.9795,10.4237,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2040,5.3229,6.2248,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,3.0520,5.8595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,3.0073,11.2847,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2043,2.9795,11.2223,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2044,5.3229,5.9795,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,3.0520,5.6945,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,3.0073,10.4550,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2047,2.9795,10.3014,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2048,5.3229,5.8626,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,3.0520,5.5643,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,3.0073,10.5493,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2051,2.9795,10.4138,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2052,5.3229,5.9210,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,3.0520,5.5661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,3.0073,10.4813,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2055,2.9795,10.4110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2056,5.3229,5.8562,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,3.0520,5.5823,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,3.0073,10.4900,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2059,2.9795,10.3943,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2060,5.3229,5.9426,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,3.0520,5.6213,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,3.0073,10.6397,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,2.9795,10.5354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2064,5.3229,5.9952,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,3.0520,5.6880,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,3.0073,10.4415,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2067,2.9795,10.3047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2068,5.3229,6.0793,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,3.0520,5.6917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,3.0073,10.5283,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2071,2.9795,10.3791,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2072,5.3229,5.8560,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,3.0520,5.5870,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,3.0073,10.4711,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,2.9795,10.4045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2076,5.3229,5.9315,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,3.0520,5.5800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,3.0073,10.5288,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2079,2.9795,10.4402,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2080,5.3229,5.9687,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,3.0520,5.6928,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,3.0073,10.3912,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2083,2.9795,10.3340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2084,5.3229,5.9123,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,3.0520,5.6322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,3.0073,10.4341,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2087,2.9795,10.3473,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2088,5.3229,5.8915,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,3.0520,5.6566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,3.0073,10.4650,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2091,2.9795,10.3606,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2092,5.3229,5.9267,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,3.0520,5.6557,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,3.0073,10.5168,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2095,2.9795,10.4543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2096,5.3229,5.8608,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,3.0520,5.6201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,3.0073,10.5246,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2099,2.9795,10.3840,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2100,5.3229,5.9084,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,3.0520,5.7363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,3.0073,10.3995,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2103,2.9795,10.4147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2104,5.3229,5.8921,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,3.0520,5.6003,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,3.0073,10.5436,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,2.9795,10.5067,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2108,5.3229,5.8753,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,3.0520,5.5805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,3.0073,10.5288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,2.9795,10.4367,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2112,5.3229,5.8634,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,3.0520,5.5979,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,3.0073,10.4652,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2115,2.9795,10.2960,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2116,5.3229,5.8150,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,3.0520,5.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,3.0073,10.4752,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,2.9795,10.3887,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2120,5.3229,5.9946,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,3.0520,5.6710,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,3.0073,10.4490,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,2.9795,10.4158,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2124,5.3229,5.9400,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,3.0520,5.6575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,3.0073,10.0962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,2.9795,10.0344,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2128,5.3229,6.7282,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,3.0520,6.3522,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,3.0073,11.2720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2131,2.9795,11.0552,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2132,5.3229,5.8651,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,3.0520,5.7645,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,3.0073,10.3545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2135,2.9795,10.3260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.3229,5.9219,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,3.0520,5.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,3.0073,10.3377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2139,2.9795,10.2979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2140,5.3229,6.9659,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,3.0520,6.9935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,3.0073,10.4738,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2143,2.9795,10.3740,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2144,5.3229,5.8578,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,3.0520,5.6253,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,3.0073,10.4560,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2147,2.9795,10.3292,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2148,5.3229,5.8428,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,3.0520,5.6083,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,3.0073,10.3704,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2151,2.9795,10.3350,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2152,5.3229,5.7903,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,3.0520,5.6297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,3.0073,10.3675,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2155,2.9795,10.3952,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2156,5.3229,5.9395,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,3.0520,5.6065,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,3.0073,10.4946,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2159,2.9795,10.3441,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2160,5.3229,41.1384,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2161,3.0520,26.5836,0.0194,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2162,3.0073,25.8410,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2163,2.9795,26.0226,0.0246,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2164,5.3229,5.9022,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2165,3.0520,5.7227,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2166,3.0073,10.3970,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2167,2.9795,10.4371,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2168,5.3229,5.7891,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2169,3.0520,5.6031,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2170,3.0073,10.4767,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2171,2.9795,10.3950,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2172,5.3229,5.8535,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2173,3.0520,5.6412,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2174,3.0073,10.4003,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2175,2.9795,10.4477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2176,5.3229,5.7720,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2177,3.0520,5.5912,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2178,3.0073,10.4087,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2179,2.9795,10.4346,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2180,5.3229,5.7995,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2181,3.0520,5.6017,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2182,3.0073,10.3989,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2183,2.9795,10.4053,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2184,5.3229,5.7600,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2185,3.0520,5.6246,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2186,3.0073,10.3705,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2187,2.9795,10.4051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2188,5.3229,5.8064,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2189,3.0520,5.6537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2190,3.0073,10.3302,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2191,2.9795,10.3632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2192,5.3229,5.8728,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2193,3.0520,5.6626,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2194,3.0073,10.3636,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2195,2.9795,10.3748,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2196,5.3229,5.7910,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2197,3.0520,5.6673,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2198,3.0073,10.4967,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2199,2.9795,10.3970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2200,5.3229,5.8450,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2201,3.0520,5.6565,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2202,3.0073,10.4468,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2203,2.9795,10.3912,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2204,5.3229,5.7520,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2205,3.0520,5.5623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2206,3.0073,10.4342,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2207,2.9795,10.3735,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2208,5.3229,5.8523,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2209,3.0520,5.6883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2210,3.0073,10.3640,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2211,2.9795,10.3283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2212,5.3229,5.7971,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2213,3.0520,5.6229,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2214,3.0073,10.3908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2215,2.9795,10.3959,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2216,5.3229,5.7682,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2217,3.0520,5.6215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2218,3.0073,10.4462,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2219,2.9795,10.3371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2220,5.3229,5.8004,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2221,3.0520,5.6033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2222,3.0073,10.4451,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2223,2.9795,10.4146,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2224,5.3229,5.7579,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2225,3.0520,5.5769,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2226,3.0073,10.5132,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2227,2.9795,10.4519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2228,5.3229,5.7932,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2229,3.0520,5.5854,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2230,3.0073,10.3921,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2231,2.9795,10.3859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2232,5.3229,5.8145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2233,3.0520,5.6017,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2234,3.0073,10.4286,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2235,2.9795,10.3702,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2236,5.3229,5.8288,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2237,3.0520,5.6043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2238,3.0073,10.4031,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2239,2.9795,10.3663,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2240,5.3229,5.8501,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2241,3.0520,5.6110,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2242,3.0073,10.3885,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2243,2.9795,10.3215,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2244,5.3229,5.8007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2245,3.0520,5.5645,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2246,3.0073,10.3776,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2247,2.9795,10.3032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2248,5.3229,5.7997,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2249,3.0520,5.6300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2250,3.0073,10.4948,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,2.9795,10.4232,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2252,5.3229,5.8195,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2253,3.0520,5.6459,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2254,3.0073,10.4541,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2255,2.9795,10.3529,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2256,5.3229,5.7744,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2257,3.0520,5.5272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2258,3.0073,10.4764,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2259,2.9795,10.4185,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2260,5.3229,5.7776,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2261,3.0520,5.6181,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2262,3.0073,10.3490,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2263,2.9795,10.4092,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2264,5.3229,5.8053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2265,3.0520,5.6107,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2266,3.0073,10.3897,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2267,2.9795,10.3594,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2268,5.3229,5.7915,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2269,3.0520,5.6042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2270,3.0073,10.4384,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2271,2.9795,10.2912,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2272,5.3229,5.7473,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2273,3.0520,5.5281,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2274,3.0073,10.2513,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2275,2.9795,10.2047,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2276,5.3229,5.8280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2277,3.0520,5.6103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2278,3.0073,10.4003,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2279,2.9795,10.3660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2280,5.3229,5.9320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2281,3.0520,5.6554,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,3.0073,10.5662,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2283,2.9795,10.5522,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2284,5.3229,5.8768,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2285,3.0520,5.6184,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,3.0073,10.3636,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2287,2.9795,10.2841,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2288,5.3229,5.8263,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2289,3.0520,5.6041,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,3.0073,10.4068,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2291,2.9795,10.3162,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2292,5.3229,5.8551,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2293,3.0520,5.6339,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,3.0073,10.4097,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2295,2.9795,10.3590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2296,5.3229,5.8277,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2297,3.0520,5.5976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,3.0073,10.4879,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2299,2.9795,10.4292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2300,5.3229,5.9151,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2301,3.0520,5.6429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,3.0073,10.3963,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2303,2.9795,10.3172,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.3229,5.8584,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2305,3.0520,5.6728,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,3.0073,10.4060,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2307,2.9795,10.3352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2308,5.3229,5.9428,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2309,3.0520,5.6370,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,3.0073,10.4630,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2311,2.9795,10.3885,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2312,5.3229,5.9463,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2313,3.0520,5.6090,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,3.0073,10.5834,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2315,2.9795,10.4634,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2316,5.3229,5.8829,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2317,3.0520,5.6140,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,3.0073,10.5041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2319,2.9795,10.4681,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2320,5.3229,5.9396,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,3.0520,5.6587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,3.0073,10.4102,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2323,2.9795,10.3976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2324,5.3229,5.8915,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,3.0520,5.5414,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,3.0073,10.4283,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2327,2.9795,10.3365,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2328,5.3229,5.8682,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,3.0520,5.6737,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,3.0073,10.3772,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2331,2.9795,10.3643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2332,5.3229,5.8884,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,3.0520,5.6696,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,3.0073,10.3631,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2335,2.9795,10.2930,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2336,5.3229,5.8233,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,3.0520,5.5655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,3.0073,10.5241,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2339,2.9795,10.3225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2340,5.3229,5.9105,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,3.0520,5.5865,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,3.0073,10.4231,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2343,2.9795,10.3120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2344,5.3229,5.7925,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,3.0520,5.5859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,3.0073,10.4897,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2347,2.9795,10.3758,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2348,5.3229,5.8576,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,3.0520,5.6518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,3.0073,10.4677,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2351,2.9795,10.3607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2352,5.3229,5.8493,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,3.0520,5.5666,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,3.0073,10.4250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2355,2.9795,10.3748,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2356,5.3229,5.8035,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,3.0520,5.5728,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,3.0073,10.4287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2359,2.9795,10.3670,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2360,5.3229,5.8616,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,3.0520,5.6113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,3.0073,10.3579,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2363,2.9795,10.3249,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.3229,5.8486,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,3.0520,5.5451,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,3.0073,10.5065,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2367,2.9795,10.4183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2368,5.3229,5.8825,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,3.0520,5.6648,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,3.0073,10.4972,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2371,2.9795,10.4269,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2372,5.3229,5.8386,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,3.0520,5.5730,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,3.0073,10.3747,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2375,2.9795,10.3722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2376,5.3229,5.8482,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,3.0520,5.6402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,3.0073,10.3191,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,2.9795,10.2904,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2380,5.3229,5.7964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,3.0520,5.6197,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,3.0073,10.4121,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,2.9795,10.3789,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2384,5.3229,5.8559,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,3.0520,5.6003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,3.0073,11.5002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,2.9795,11.3241,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2388,5.3229,5.8235,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,3.0520,5.5450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,3.0073,10.4024,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,2.9795,10.3717,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2392,5.3229,5.7935,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,3.0520,5.5875,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,3.0073,10.3234,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2395,2.9795,10.3319,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2396,5.3229,5.8522,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,3.0520,5.5645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,3.0073,10.4388,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2399,2.9795,10.3335,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2400,5.3229,5.8918,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2401,3.0520,5.6336,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2402,3.0073,10.4284,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2403,2.9795,10.3119,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2404,5.3229,5.8473,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2405,3.0520,5.5857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2406,3.0073,10.4216,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2407,2.9795,10.3362,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2408,5.3229,5.8169,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2409,3.0520,5.6340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2410,3.0073,10.3150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2411,2.9795,10.3644,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2412,5.3229,5.8914,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2413,3.0520,5.6082,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2414,3.0073,10.4072,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2415,2.9795,10.3675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2416,5.3229,5.8332,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2417,3.0520,5.5996,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2418,3.0073,10.4215,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2419,2.9795,10.3172,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2420,5.3229,5.8287,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2421,3.0520,5.5632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2422,3.0073,10.5110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2423,2.9795,10.3543,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2424,5.3229,5.8054,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2425,3.0520,5.5480,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2426,3.0073,10.3870,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2427,2.9795,10.3879,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2428,5.3229,5.8572,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2429,3.0520,5.6193,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2430,3.0073,10.3468,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2431,2.9795,10.3647,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2432,5.3229,5.8155,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2433,3.0520,5.6495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2434,3.0073,10.3498,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2435,2.9795,10.3805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2436,5.3229,5.8574,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2437,3.0520,5.6077,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2438,3.0073,10.3665,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2439,2.9795,10.2961,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2440,5.3229,5.8365,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2441,3.0520,5.5748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2442,3.0073,10.3709,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2443,2.9795,10.3022,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2444,5.3229,5.7953,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2445,3.0520,5.5845,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2446,3.0073,10.3562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2447,2.9795,10.3522,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2448,5.3229,5.8520,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2449,3.0520,5.6025,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2450,3.0073,10.4778,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2451,2.9795,10.3170,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2452,5.3229,5.8390,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2453,3.0520,5.6863,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2454,3.0073,10.2980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2455,2.9795,10.3859,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2456,5.3229,5.7988,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2457,3.0520,5.5985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2458,3.0073,10.3574,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2459,2.9795,10.3669,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2460,5.3229,5.8027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2461,3.0520,5.6436,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2462,3.0073,10.3529,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2463,2.9795,10.3540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2464,5.3229,5.8173,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2465,3.0520,5.5963,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2466,3.0073,10.3957,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2467,2.9795,10.3994,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2468,5.3229,5.8653,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2469,3.0520,5.6511,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2470,3.0073,10.3914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2471,2.9795,10.3473,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2472,5.3229,5.9027,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2473,3.0520,5.6353,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2474,3.0073,10.3055,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2475,2.9795,10.3370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2476,5.3229,5.8790,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2477,3.0520,5.6521,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2478,3.0073,10.5081,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2479,2.9795,10.4375,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2480,5.3229,5.8365,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2481,3.0520,5.5921,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2482,3.0073,10.3711,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2483,2.9795,10.3599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2484,5.3229,5.8037,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2485,3.0520,5.5568,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2486,3.0073,10.4177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2487,2.9795,10.2866,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2488,5.3229,5.8034,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2489,3.0520,5.5633,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2490,3.0073,10.3902,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2491,2.9795,10.3421,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2492,5.3229,5.8255,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2493,3.0520,5.5764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2494,3.0073,10.3076,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2495,2.9795,10.2961,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2496,5.3229,5.8295,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2497,3.0520,5.5657,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2498,3.0073,10.3563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2499,2.9795,10.2704,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2500,5.3229,5.8102,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2501,3.0520,5.5895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2502,3.0073,10.3938,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2503,2.9795,10.3173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2504,5.3229,5.8217,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2505,3.0520,5.5800,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2506,3.0073,10.3774,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2507,2.9795,10.3193,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2508,5.3229,5.8106,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2509,3.0520,5.5770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2510,3.0073,10.3450,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2511,2.9795,10.3105,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2512,5.3229,5.8610,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2513,3.0520,5.6681,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2514,3.0073,10.3663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2515,2.9795,10.3501,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2516,5.3229,5.9139,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2517,3.0520,5.7008,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2518,3.0073,10.3921,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2519,2.9795,10.2961,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2520,5.3229,5.8180,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2521,3.0520,5.5792,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2522,3.0073,10.3657,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2523,2.9795,10.2528,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2524,5.3229,5.8175,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2525,3.0520,5.6040,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2526,3.0073,10.5044,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2527,2.9795,10.4382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2528,5.3229,5.7973,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2529,3.0520,5.5909,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2530,3.0073,10.3526,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2531,2.9795,10.3682,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2532,5.3229,5.8608,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2533,3.0520,5.6034,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2534,3.0073,10.4920,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2535,2.9795,10.4404,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2536,5.3229,5.8425,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2537,3.0520,5.5949,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2538,3.0073,10.3733,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2539,2.9795,10.3920,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2540,5.3229,6.0633,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2541,3.0520,5.7713,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2542,3.0073,10.7756,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2543,2.9795,10.6089,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2544,5.3229,5.8963,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2545,3.0520,5.6219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2546,3.0073,10.4729,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2547,2.9795,10.3931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2548,5.3229,5.9967,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2549,3.0520,5.6486,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2550,3.0073,10.4138,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2551,2.9795,10.4042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2552,5.3229,5.8228,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2553,3.0520,5.5847,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2554,3.0073,10.5334,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2555,2.9795,10.4728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2556,5.3229,5.8583,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2557,3.0520,5.6160,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2558,3.0073,10.3298,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2559,2.9795,10.3171,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2560,5.3229,5.8265,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2561,3.0520,5.5958,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2562,3.0073,10.3614,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2563,2.9795,10.2490,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2564,5.3229,5.8936,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2565,3.0520,5.6162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2566,3.0073,10.4018,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2567,2.9795,10.3230,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2568,5.3229,5.8364,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2569,3.0520,5.6385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2570,3.0073,10.3814,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2571,2.9795,10.3519,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2572,5.3229,5.8602,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2573,3.0520,5.5853,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2574,3.0073,10.4009,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2575,2.9795,10.3883,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2576,5.3229,5.8165,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2577,3.0520,5.5796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2578,3.0073,10.3839,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2579,2.9795,10.2677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2580,5.3229,5.7768,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2581,3.0520,5.5645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2582,3.0073,10.3566,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2583,2.9795,10.3338,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2584,5.3229,5.8697,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2585,3.0520,5.6070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2586,3.0073,10.4615,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2587,2.9795,10.3970,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2588,5.3229,5.7894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2589,3.0520,5.5622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2590,3.0073,10.4306,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2591,2.9795,10.3740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2592,5.3229,5.8852,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2593,3.0520,5.6295,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2594,3.0073,10.3497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2595,2.9795,10.3402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2596,5.3229,5.8554,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2597,3.0520,5.5708,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2598,3.0073,10.4447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2599,2.9795,10.2966,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2600,5.3229,5.7790,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2601,3.0520,5.7177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2602,3.0073,10.2913,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2603,2.9795,10.3338,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2604,5.3229,5.8260,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2605,3.0520,5.6275,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2606,3.0073,10.3796,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2607,2.9795,10.2645,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2608,5.3229,5.8060,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2609,3.0520,5.5763,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2610,3.0073,10.3823,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2611,2.9795,10.3359,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2612,5.3229,5.8128,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2613,3.0520,5.6712,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2614,3.0073,10.3480,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2615,2.9795,10.3135,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2616,5.3229,5.8465,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2617,3.0520,5.6140,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2618,3.0073,10.3885,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2619,2.9795,10.3201,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2620,5.3229,5.8987,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2621,3.0520,5.6196,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2622,3.0073,10.4237,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2623,2.9795,10.3829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2624,5.3229,5.8704,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2625,3.0520,5.6176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2626,3.0073,10.3761,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2627,2.9795,10.3420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2628,5.3229,5.9228,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2629,3.0520,5.6039,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2630,3.0073,10.4764,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2631,2.9795,10.3626,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2632,5.3229,5.8280,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2633,3.0520,5.5842,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2634,3.0073,10.4445,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2635,2.9795,10.4102,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2636,5.3229,5.8230,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2637,3.0520,5.6093,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2638,3.0073,10.4557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2639,2.9795,10.4154,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2640,5.3229,5.8228,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2641,3.0520,5.5830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2642,3.0073,10.4020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2643,2.9795,10.3981,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2644,5.3229,5.8505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2645,3.0520,5.6570,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2646,3.0073,10.3540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2647,2.9795,10.3867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2648,5.3229,5.7637,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2649,3.0520,5.5424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2650,3.0073,10.4365,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2651,2.9795,10.3883,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2652,5.3229,5.8643,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2653,3.0520,5.5762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2654,3.0073,10.4394,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2655,2.9795,10.3720,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2656,5.3229,5.8982,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2657,3.0520,5.5647,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2658,3.0073,10.4514,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2659,2.9795,10.3502,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2660,5.3229,5.8499,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2661,3.0520,5.6086,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2662,3.0073,10.4102,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2663,2.9795,10.3987,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2664,5.3229,5.8065,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2665,3.0520,5.5975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2666,3.0073,10.3727,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2667,2.9795,10.3373,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2668,5.3229,5.8700,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2669,3.0520,5.5713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2670,3.0073,10.3697,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2671,2.9795,10.3134,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2672,5.3229,5.8538,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2673,3.0520,5.6369,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2674,3.0073,10.4329,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2675,2.9795,10.3682,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2676,5.3229,5.8700,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2677,3.0520,5.6352,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2678,3.0073,10.3875,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2679,2.9795,10.3571,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2680,5.3229,5.9488,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2681,3.0520,5.6223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2682,3.0073,10.3735,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2683,2.9795,10.2988,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2684,5.3229,5.9139,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2685,3.0520,5.5971,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2686,3.0073,10.4831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2687,2.9795,10.2745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2688,5.3229,5.8495,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2689,3.0520,5.6556,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2690,3.0073,10.3891,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2691,2.9795,10.3565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2692,5.3229,5.8620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2693,3.0520,5.6238,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2694,3.0073,10.4715,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2695,2.9795,10.3974,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2696,5.3229,5.7433,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2697,3.0520,5.5526,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2698,3.0073,10.3108,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2699,2.9795,10.3054,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2700,5.3229,5.7895,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2701,3.0520,5.5665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2702,3.0073,10.3602,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2703,2.9795,10.3644,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2704,5.3229,5.8221,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2705,3.0520,5.5695,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2706,3.0073,10.3853,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2707,2.9795,10.3870,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2708,5.3229,5.8061,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2709,3.0520,5.6035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2710,3.0073,10.3688,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2711,2.9795,10.3721,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2712,5.3229,5.8304,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2713,3.0520,5.6239,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2714,3.0073,10.3585,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2715,2.9795,10.3507,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2716,5.3229,5.8751,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2717,3.0520,5.6040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2718,3.0073,10.4623,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2719,2.9795,10.4441,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2720,5.3229,5.8680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2721,3.0520,5.6212,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2722,3.0073,10.3766,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2723,2.9795,10.2356,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2724,5.3229,5.8787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2725,3.0520,5.6195,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2726,3.0073,10.4625,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2727,2.9795,10.3165,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2728,5.3229,5.8173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2729,3.0520,5.6318,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2730,3.0073,10.2473,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2731,2.9795,10.2923,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2732,5.3229,5.8761,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2733,3.0520,5.5676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2734,3.0073,10.4112,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2735,2.9795,10.2761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2736,5.3229,5.8433,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2737,3.0520,5.6078,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2738,3.0073,10.4898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2739,2.9795,10.5162,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2740,5.3229,5.8362,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2741,3.0520,5.5913,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2742,3.0073,10.4893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2743,2.9795,10.4761,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2744,5.3229,5.7462,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2745,3.0520,5.5780,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2746,3.0073,10.4000,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2747,2.9795,10.4210,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2748,5.3229,5.6278,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2749,3.0520,5.5857,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2750,3.0073,10.3966,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2751,2.9795,10.4438,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2752,5.3229,5.7490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2753,3.0520,5.6030,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2754,3.0073,10.4476,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2755,2.9795,10.4568,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2756,5.3229,5.5169,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2757,3.0520,5.5126,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2758,3.0073,10.2857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2759,2.9795,10.3798,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2760,5.3229,5.6730,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2761,3.0520,5.5467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2762,3.0073,10.2766,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2763,2.9795,10.3285,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2764,5.3229,5.8356,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2765,3.0520,5.5375,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2766,3.0073,10.2025,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2767,2.9795,10.2294,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2768,5.3229,5.7879,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2769,3.0520,5.6234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2770,3.0073,10.3789,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2771,2.9795,10.3195,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2772,5.3229,5.7870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2773,3.0520,5.5289,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2774,3.0073,10.3831,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2775,2.9795,10.3083,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2776,5.3229,5.8170,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2777,3.0520,5.5808,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2778,3.0073,10.3410,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2779,2.9795,10.2969,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2780,5.3229,5.9088,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2781,3.0520,5.6098,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2782,3.0073,10.5347,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2783,2.9795,10.5105,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2784,5.3229,5.9987,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2785,3.0520,5.5978,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2786,3.0073,10.4985,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2787,2.9795,10.3778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2788,5.3229,5.9160,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2789,3.0520,5.5849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2790,3.0073,10.6121,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2791,2.9795,10.4690,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2792,5.3229,6.0615,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2793,3.0520,5.7688,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2794,3.0073,10.9575,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2795,2.9795,10.8888,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2796,5.3229,6.2816,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2797,3.0520,5.7338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2798,3.0073,10.5831,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2799,2.9795,10.4885,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2800,5.3229,5.8894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2801,3.0520,5.6006,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2802,3.0073,10.3942,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2803,2.9795,10.3447,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2804,5.3229,5.9681,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2805,3.0520,5.7684,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2806,3.0073,10.4374,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2807,2.9795,10.4448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2808,5.3229,5.8933,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2809,3.0520,5.8777,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2810,3.0073,11.1390,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2811,2.9795,10.8108,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2812,5.3229,5.9757,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2813,3.0520,5.7887,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2814,3.0073,10.2528,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2815,2.9795,10.2625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2816,5.3229,5.9388,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2817,3.0520,5.6681,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2818,3.0073,10.4931,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2819,2.9795,10.4106,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2820,5.3229,6.3257,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2821,3.0520,5.8113,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2822,3.0073,10.4811,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2823,2.9795,10.3052,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2824,5.3229,6.0962,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2825,3.0520,5.6873,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2826,3.0073,10.1657,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2827,2.9795,9.9319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2828,5.3229,6.1005,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2829,3.0520,5.8144,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2830,3.0073,12.5352,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2831,2.9795,12.3477,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2832,5.3229,5.9287,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2833,3.0520,5.6421,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2834,3.0073,10.4190,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2835,2.9795,9.9930,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2836,5.3229,5.9735,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2837,3.0520,5.7993,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2838,3.0073,10.1380,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2839,2.9795,10.1558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2840,5.3229,6.1432,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2841,3.0520,5.8026,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2842,3.0073,10.5089,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2843,2.9795,10.5172,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2844,5.3229,6.2675,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2845,3.0520,6.0169,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2846,3.0073,12.0866,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2847,2.9795,12.0613,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2848,5.3229,6.0403,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2849,3.0520,5.7403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2850,3.0073,10.7011,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2851,2.9795,10.5097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2852,5.3229,6.1283,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2853,3.0520,5.8371,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2854,3.0073,10.2901,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2855,2.9795,10.2855,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2856,5.3229,6.0475,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2857,3.0520,5.7293,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2858,3.0073,10.5831,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2859,2.9795,10.4685,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2860,5.3229,6.1345,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2861,3.0520,6.0336,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2862,3.0073,10.2042,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2863,2.9795,10.3008,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2864,5.3229,5.9627,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2865,3.0520,5.6943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2866,3.0073,10.6793,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2867,2.9795,10.6730,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2868,5.3229,5.9149,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2869,3.0520,5.6740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2870,3.0073,9.4883,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2871,2.9795,9.1564,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2872,5.3229,6.0585,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2873,3.0520,5.8064,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2874,3.0073,10.1364,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2875,2.9795,10.1902,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2876,5.3229,6.2135,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2877,3.0520,5.8215,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2878,3.0073,10.6635,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2879,2.9795,10.5463,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2880,5.3229,31.8512,0.0208,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2881,3.0520,33.2378,0.0154,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2882,3.0073,25.8023,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2883,2.9795,25.8137,0.0146,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2884,5.3229,5.8214,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2885,3.0520,5.5958,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2886,3.0073,10.4110,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2887,2.9795,10.4083,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2888,5.3229,5.7988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2889,3.0520,5.5630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2890,3.0073,10.4406,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2891,2.9795,10.3879,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2892,5.3229,5.7568,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2893,3.0520,5.5685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2894,3.0073,10.4380,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2895,2.9795,10.3499,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2896,5.3229,5.7290,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2897,3.0520,5.5174,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2898,3.0073,10.4132,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2899,2.9795,10.3410,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2900,5.3229,5.7584,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2901,3.0520,5.5598,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2902,3.0073,10.5156,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2903,2.9795,10.4499,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2904,5.3229,5.7266,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2905,3.0520,5.5613,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2906,3.0073,10.4750,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2907,2.9795,10.4196,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2908,5.3229,5.7620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2909,3.0520,5.5690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2910,3.0073,10.3465,0.0323,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2911,2.9795,10.3050,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2912,5.3229,5.7345,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2913,3.0520,5.5537,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2914,3.0073,10.4165,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2915,2.9795,10.3917,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2916,5.3229,5.7736,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2917,3.0520,5.5446,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2918,3.0073,10.4760,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2919,2.9795,10.4271,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2920,5.3229,5.7942,0.0309,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2921,3.0520,5.5867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2922,3.0073,10.3765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2923,2.9795,10.2912,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2924,5.3229,5.7140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2925,3.0520,5.6204,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2926,3.0073,10.3355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2927,2.9795,10.3313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2928,5.3229,5.7680,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2929,3.0520,5.6003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2930,3.0073,10.3358,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2931,2.9795,10.3351,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2932,5.3229,5.8042,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2933,3.0520,5.5955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2934,3.0073,10.3598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2935,2.9795,10.3764,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2936,5.3229,5.7341,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2937,3.0520,5.5890,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2938,3.0073,10.3850,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2939,2.9795,10.3642,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2940,5.3229,5.7603,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2941,3.0520,5.5523,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2942,3.0073,10.3990,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2943,2.9795,10.3644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2944,5.3229,5.8515,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2945,3.0520,5.5731,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2946,3.0073,10.4999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2947,2.9795,10.4525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2948,5.3229,5.7129,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2949,3.0520,5.5393,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2950,3.0073,10.3183,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2951,2.9795,10.3299,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2952,5.3229,5.8042,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2953,3.0520,5.5989,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2954,3.0073,10.3517,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2955,2.9795,10.3126,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2956,5.3229,5.7340,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2957,3.0520,5.5386,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2958,3.0073,10.3375,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2959,2.9795,10.3922,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2960,5.3229,5.7927,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2961,3.0520,5.6208,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2962,3.0073,10.3540,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2963,2.9795,10.3344,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2964,5.3229,5.8986,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2965,3.0520,5.8310,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2966,3.0073,10.2272,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2967,2.9795,10.2517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2968,5.3229,5.7854,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2969,3.0520,5.4930,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2970,3.0073,10.3425,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2971,2.9795,10.2111,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2972,5.3229,5.7702,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2973,3.0520,5.5656,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2974,3.0073,10.3443,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2975,2.9795,10.3003,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2976,5.3229,5.7983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2977,3.0520,5.5973,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2978,3.0073,10.3886,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2979,2.9795,10.3803,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2980,5.3229,5.7640,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2981,3.0520,5.5991,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2982,3.0073,10.4241,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2983,2.9795,10.3978,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2984,5.3229,5.7475,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2985,3.0520,5.5340,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2986,3.0073,10.3817,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2987,2.9795,10.3309,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2988,5.3229,5.9870,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2989,3.0520,5.5951,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2990,3.0073,10.5970,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2991,2.9795,10.5462,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2992,5.3229,5.7913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2993,3.0520,5.5003,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2994,3.0073,10.3345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2995,2.9795,10.2621,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2996,5.3229,5.8656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2997,3.0520,5.5607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2998,3.0073,10.4300,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2999,2.9795,10.3851,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3000,5.3229,5.8722,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3001,3.0520,5.5822,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3002,3.0073,10.3823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3003,2.9795,10.2466,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3004,5.3229,5.8077,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3005,3.0520,5.5788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3006,3.0073,10.3994,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3007,2.9795,10.3235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3008,5.3229,5.8069,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3009,3.0520,5.5900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3010,3.0073,10.3645,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3011,2.9795,10.3566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3012,5.3229,5.9497,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3013,3.0520,5.5937,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3014,3.0073,10.3103,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3015,2.9795,10.3521,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3016,5.3229,5.8426,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3017,3.0520,5.6429,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3018,3.0073,10.3950,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3019,2.9795,10.3390,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3020,5.3229,5.8304,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3021,3.0520,5.5455,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3022,3.0073,10.4945,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3023,2.9795,10.3893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3024,5.3229,5.8430,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3025,3.0520,5.5459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3026,3.0073,10.4320,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3027,2.9795,10.3785,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3028,5.3229,5.8129,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3029,3.0520,5.6217,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3030,3.0073,10.6985,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3031,2.9795,10.5673,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3032,5.3229,6.0624,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3033,3.0520,5.7943,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3034,3.0073,10.3836,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3035,2.9795,10.3189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3036,5.3229,6.1443,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3037,3.0520,5.9244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3038,3.0073,10.2515,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3039,2.9795,10.0961,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3040,5.3229,6.3896,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3041,3.0520,5.9116,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3042,3.0073,10.4772,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3043,2.9795,10.2645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3044,5.3229,6.1758,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3045,3.0520,5.8685,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3046,3.0073,10.7394,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3047,2.9795,10.6137,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3048,5.3229,6.2949,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3049,3.0520,5.9398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3050,3.0073,10.0358,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3051,2.9795,9.9705,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3052,5.3229,6.1754,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3053,3.0520,5.8020,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3054,3.0073,10.3393,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3055,2.9795,10.3640,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3056,5.3229,6.1452,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3057,3.0520,5.9216,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3058,3.0073,10.0894,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3059,2.9795,10.1420,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3060,5.3229,6.9674,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3061,3.0520,6.4163,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3062,3.0073,10.1318,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3063,2.9795,10.1445,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3064,5.3229,6.1148,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3065,3.0520,5.7121,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3066,3.0073,10.2070,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3067,2.9795,10.1688,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3068,5.3229,5.8903,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3069,3.0520,5.6194,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3070,3.0073,10.5489,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3071,2.9795,10.3236,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3072,5.3229,6.0388,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3073,3.0520,5.6372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3074,3.0073,10.4814,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3075,2.9795,10.3875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3076,5.3229,5.9754,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3077,3.0520,5.6877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3078,3.0073,10.3939,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3079,2.9795,10.3267,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3080,5.3229,6.0312,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3081,3.0520,5.6417,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3082,3.0073,10.4794,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3083,2.9795,10.2719,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3084,5.3229,5.9320,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3085,3.0520,5.5928,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3086,3.0073,10.4742,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3087,2.9795,10.4122,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3088,5.3229,5.9597,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3089,3.0520,5.6019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3090,3.0073,10.4875,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3091,2.9795,10.3730,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3092,5.3229,5.8546,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3093,3.0520,5.5780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3094,3.0073,10.4685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3095,2.9795,10.3108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3096,5.3229,5.8672,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3097,3.0520,5.6762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3098,3.0073,10.3873,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3099,2.9795,10.4198,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3100,5.3229,5.8955,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3101,3.0520,5.6738,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3102,3.0073,10.3906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3103,2.9795,10.3144,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3104,5.3229,5.7980,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3105,3.0520,5.5779,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3106,3.0073,10.3389,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3107,2.9795,10.3542,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3108,5.3229,5.8792,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3109,3.0520,5.6583,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3110,3.0073,10.4055,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3111,2.9795,10.3273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3112,5.3229,5.8404,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3113,3.0520,5.5596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3114,3.0073,10.4173,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3115,2.9795,10.2690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3116,5.3229,5.7775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3117,3.0520,5.5964,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3118,3.0073,10.4461,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3119,2.9795,10.2841,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3120,5.3229,5.8218,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3121,3.0520,5.5550,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3122,3.0073,10.3434,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3123,2.9795,10.3639,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3124,5.3229,5.8014,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3125,3.0520,5.6441,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3126,3.0073,10.3685,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3127,2.9795,10.2872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3128,5.3229,5.8316,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3129,3.0520,5.6157,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3130,3.0073,10.4188,0.0302,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3131,2.9795,10.3637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3132,5.3229,5.8217,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3133,3.0520,5.6200,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3134,3.0073,10.2887,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3135,2.9795,10.2863,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3136,5.3229,5.7981,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3137,3.0520,5.5705,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3138,3.0073,10.3955,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3139,2.9795,10.3673,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3140,5.3229,5.9166,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3141,3.0520,5.5977,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3142,3.0073,10.4457,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3143,2.9795,10.4046,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3144,5.3229,5.8924,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3145,3.0520,5.5856,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3146,3.0073,10.5004,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3147,2.9795,10.4644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3148,5.3229,5.7598,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3149,3.0520,5.5067,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3150,3.0073,10.3956,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3151,2.9795,10.3692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3152,5.3229,8.0352,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3153,3.0520,7.7637,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3154,3.0073,12.5842,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3155,2.9795,12.4321,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3156,5.3229,5.8126,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3157,3.0520,5.5303,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3158,3.0073,12.0635,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3159,2.9795,12.0306,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3160,5.3229,5.9037,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3161,3.0520,5.6161,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3162,3.0073,10.5094,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3163,2.9795,10.4874,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3164,5.3229,5.8205,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3165,3.0520,5.5440,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3166,3.0073,10.4455,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3167,2.9795,10.3884,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3168,5.3229,5.9517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3169,3.0520,5.6470,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3170,3.0073,10.6292,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3171,2.9795,10.5864,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3172,5.3229,5.8735,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3173,3.0520,5.6109,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3174,3.0073,10.4724,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3175,2.9795,10.3684,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3176,5.3229,5.7972,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3177,3.0520,5.5588,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3178,3.0073,10.4216,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3179,2.9795,10.2855,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3180,5.3229,5.8143,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3181,3.0520,5.5369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3182,3.0073,10.4050,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3183,2.9795,10.4000,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3184,5.3229,5.8083,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3185,3.0520,5.6378,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3186,3.0073,10.2814,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3187,2.9795,10.3510,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3188,5.3229,5.8081,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3189,3.0520,5.5545,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3190,3.0073,10.3767,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3191,2.9795,10.3119,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3192,5.3229,5.7912,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3193,3.0520,5.5609,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3194,3.0073,10.3551,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3195,2.9795,10.2884,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3196,5.3229,5.7758,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3197,3.0520,5.6273,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3198,3.0073,10.4149,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3199,2.9795,10.3612,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3200,5.3229,6.1619,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3201,3.0520,5.8251,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3202,3.0073,10.3065,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3203,2.9795,10.2701,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3204,5.3229,6.1816,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3205,3.0520,6.1181,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3206,3.0073,7.9796,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3207,2.9795,9.5114,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3208,5.3229,6.0781,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3209,3.0520,5.8376,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3210,3.0073,10.4763,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3211,2.9795,10.2512,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3212,5.3229,5.7315,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3213,3.0520,5.4398,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3214,3.0073,13.3505,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3215,2.9795,13.3012,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3216,5.3229,5.9515,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3217,3.0520,5.7530,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3218,3.0073,10.3843,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3219,2.9795,10.3562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3220,5.3229,6.0892,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3221,3.0520,5.7315,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3222,3.0073,10.0617,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3223,2.9795,10.1114,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3224,5.3229,5.7804,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3225,3.0520,5.6301,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3226,3.0073,10.2757,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3227,2.9795,10.3581,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3228,5.3229,5.8788,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3229,3.0520,5.6530,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3230,3.0073,10.4953,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3231,2.9795,10.3524,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3232,5.3229,6.0432,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3233,3.0520,5.7287,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3234,3.0073,10.2925,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3235,2.9795,10.2806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3236,5.3229,6.1002,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3237,3.0520,5.6818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3238,3.0073,10.2747,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3239,2.9795,10.3034,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3240,5.3229,6.1278,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3241,3.0520,5.9298,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3242,3.0073,10.1356,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3243,2.9795,9.8986,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3244,5.3229,6.1529,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3245,3.0520,5.9878,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3246,3.0073,9.9360,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3247,2.9795,10.0406,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3248,5.3229,6.1464,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3249,3.0520,5.9790,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3250,3.0073,10.0544,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3251,2.9795,9.9449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3252,5.3229,6.2070,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3253,3.0520,5.7047,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3254,3.0073,10.2340,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3255,2.9795,10.2958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3256,5.3229,6.0658,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3257,3.0520,5.8331,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3258,3.0073,10.5218,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3259,2.9795,10.2542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3260,5.3229,6.5331,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3261,3.0520,5.9533,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3262,3.0073,10.5717,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3263,2.9795,10.4622,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3264,5.3229,6.1501,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3265,3.0520,5.7195,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3266,3.0073,10.6438,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3267,2.9795,10.4357,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3268,5.3229,6.1398,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3269,3.0520,5.7050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3270,3.0073,10.6730,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3271,2.9795,10.4868,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3272,5.3229,6.4606,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3273,3.0520,5.9180,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3274,3.0073,10.3489,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3275,2.9795,10.3054,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3276,5.3229,5.9822,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3277,3.0520,5.6861,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3278,3.0073,10.3458,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3279,2.9795,10.3078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3280,5.3229,5.8960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3281,3.0520,5.5907,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3282,3.0073,10.4918,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3283,2.9795,10.3908,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3284,5.3229,5.9352,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3285,3.0520,5.5938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3286,3.0073,10.5507,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3287,2.9795,10.4438,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3288,5.3229,5.8589,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3289,3.0520,5.6092,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3290,3.0073,10.4948,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3291,2.9795,10.4454,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3292,5.3229,5.9734,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3293,3.0520,5.6113,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3294,3.0073,10.5582,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3295,2.9795,10.4377,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3296,5.3229,5.9247,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3297,3.0520,5.6455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3298,3.0073,10.4335,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3299,2.9795,10.3337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3300,5.3229,5.9797,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3301,3.0520,5.7634,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3302,3.0073,10.3646,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3303,2.9795,10.2872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3304,5.3229,5.9135,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3305,3.0520,5.8223,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3306,3.0073,10.5949,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3307,2.9795,10.5716,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3308,5.3229,6.0169,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3309,3.0520,5.6936,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3310,3.0073,10.4695,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3311,2.9795,10.3715,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3312,5.3229,6.0454,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3313,3.0520,5.7494,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3314,3.0073,10.6048,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3315,2.9795,10.5149,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3316,5.3229,6.1070,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3317,3.0520,5.7792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3318,3.0073,10.5341,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3319,2.9795,10.4238,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3320,5.3229,6.1809,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3321,3.0520,5.9051,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3322,3.0073,10.0934,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3323,2.9795,10.0258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3324,5.3229,6.1797,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3325,3.0520,5.8387,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3326,3.0073,10.5095,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3327,2.9795,10.3522,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3328,5.3229,6.0428,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3329,3.0520,5.6833,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3330,3.0073,10.6215,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3331,2.9795,10.4072,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3332,5.3229,6.1940,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3333,3.0520,5.8940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3334,3.0073,10.2390,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3335,2.9795,10.2586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3336,5.3229,5.9973,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3337,3.0520,5.8809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3338,3.0073,10.0848,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3339,2.9795,9.9729,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3340,5.3229,6.3519,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3341,3.0520,5.9607,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3342,3.0073,10.5690,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3343,2.9795,10.3553,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3344,5.3229,6.2434,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3345,3.0520,5.8881,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3346,3.0073,10.0804,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3347,2.9795,10.1948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3348,5.3229,6.1228,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3349,3.0520,5.7471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3350,3.0073,11.7547,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3351,2.9795,11.7329,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3352,5.3229,6.2228,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3353,3.0520,5.7552,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3354,3.0073,10.3882,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3355,2.9795,10.2517,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3356,5.3229,6.1958,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3357,3.0520,5.7970,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3358,3.0073,10.5049,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3359,2.9795,10.3758,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3360,5.3229,6.0729,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3361,3.0520,5.8403,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3362,3.0073,9.9874,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3363,2.9795,9.7938,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3364,5.3229,6.1925,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3365,3.0520,5.8959,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3366,3.0073,10.1209,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3367,2.9795,10.2655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3368,5.3229,6.0113,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3369,3.0520,5.8460,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3370,3.0073,9.9173,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3371,2.9795,9.7267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3372,5.3229,6.2655,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3373,3.0520,6.0381,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3374,3.0073,10.3137,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3375,2.9795,10.1383,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3376,5.3229,6.1894,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3377,3.0520,5.8323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3378,3.0073,10.9525,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3379,2.9795,10.5734,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3380,5.3229,6.0380,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3381,3.0520,5.8518,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3382,3.0073,10.5084,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3383,2.9795,10.2720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3384,5.3229,6.1634,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3385,3.0520,5.8537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3386,3.0073,9.8084,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3387,2.9795,10.2572,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3388,5.3229,6.5334,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3389,3.0520,6.0761,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3390,3.0073,10.9860,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3391,2.9795,10.8762,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3392,5.3229,6.1360,0.0506,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3393,3.0520,5.8133,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3394,3.0073,10.7253,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3395,2.9795,10.4973,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3396,5.3229,6.0926,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3397,3.0520,5.7972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3398,3.0073,10.2990,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3399,2.9795,10.4521,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3400,5.3229,6.0133,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3401,3.0520,5.7059,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3402,3.0073,10.2716,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3403,2.9795,10.2372,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3404,5.3229,6.1771,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3405,3.0520,5.7038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3406,3.0073,10.0139,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3407,2.9795,9.8980,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3408,5.3229,6.5300,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3409,3.0520,6.0716,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3410,3.0073,10.2179,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3411,2.9795,10.2808,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3412,5.3229,6.1335,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3413,3.0520,5.6716,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3414,3.0073,11.5298,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3415,2.9795,11.5512,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3416,5.3229,5.9915,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3417,3.0520,5.8735,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3418,3.0073,10.1028,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3419,2.9795,10.1580,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3420,5.3229,6.0767,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3421,3.0520,5.8657,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3422,3.0073,10.2263,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3423,2.9795,10.2616,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3424,5.3229,6.2047,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3425,3.0520,5.7761,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3426,3.0073,10.6191,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3427,2.9795,10.4213,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3428,5.3229,6.2699,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3429,3.0520,5.7049,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3430,3.0073,10.4234,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3431,2.9795,10.3194,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3432,5.3229,6.0854,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3433,3.0520,5.8053,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3434,3.0073,10.4975,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3435,2.9795,10.4849,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3436,5.3229,6.0786,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3437,3.0520,5.7292,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3438,3.0073,10.3675,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3439,2.9795,10.4389,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3440,5.3229,6.1959,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3441,3.0520,5.8410,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3442,3.0073,10.2120,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3443,2.9795,10.2168,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3444,5.3229,6.5056,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3445,3.0520,6.0426,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3446,3.0073,10.4078,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3447,2.9795,10.2370,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3448,5.3229,6.1104,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3449,3.0520,5.9111,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3450,3.0073,11.2867,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3451,2.9795,10.9969,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3452,5.3229,5.9813,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3453,3.0520,5.6224,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3454,3.0073,10.4083,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3455,2.9795,10.3901,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3456,5.3229,6.2075,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3457,3.0520,5.7310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3458,3.0073,10.2075,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3459,2.9795,10.2085,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3460,5.3229,6.0589,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3461,3.0520,5.8193,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3462,3.0073,10.2324,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3463,2.9795,10.2730,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3464,5.3229,6.2038,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3465,3.0520,5.8336,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3466,3.0073,10.2545,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3467,2.9795,10.2854,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3468,5.3229,6.1428,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3469,3.0520,5.7219,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3470,3.0073,10.4831,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3471,2.9795,10.2946,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3472,5.3229,6.1345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3473,3.0520,5.8540,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3474,3.0073,9.9355,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3475,2.9795,10.0632,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3476,5.3229,6.0315,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3477,3.0520,5.9504,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3478,3.0073,9.4360,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3479,2.9795,9.6103,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3480,5.3229,6.1759,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3481,3.0520,5.8339,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3482,3.0073,10.2287,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3483,2.9795,10.1465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3484,5.3229,5.9747,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3485,3.0520,5.6442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3486,3.0073,10.3846,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3487,2.9795,10.2881,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3488,5.3229,5.8777,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3489,3.0520,5.7692,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3490,3.0073,10.1853,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3491,2.9795,10.1705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3492,5.3229,6.1364,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3493,3.0520,5.7513,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3494,3.0073,10.3383,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3495,2.9795,10.2735,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3496,5.3229,6.1560,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3497,3.0520,5.7721,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3498,3.0073,17.4094,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3499,2.9795,17.2308,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3500,5.3229,6.1068,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3501,3.0520,5.7399,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3502,3.0073,10.4852,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3503,2.9795,10.2337,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3504,5.3229,6.0473,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3505,3.0520,5.8198,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3506,3.0073,10.5531,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3507,2.9795,10.4649,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3508,5.3229,5.9981,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3509,3.0520,5.6761,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3510,3.0073,10.3927,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3511,2.9795,10.2670,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3512,5.3229,6.1349,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3513,3.0520,5.8675,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3514,3.0073,10.0012,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3515,2.9795,10.2397,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3516,5.3229,6.1747,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3517,3.0520,5.8222,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3518,3.0073,10.5762,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3519,2.9795,10.4232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3520,5.3229,6.3762,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3521,3.0520,6.1563,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3522,3.0073,10.5877,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3523,2.9795,10.7640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3524,5.3229,6.1133,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3525,3.0520,5.7770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3526,3.0073,10.1593,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3527,2.9795,10.0376,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3528,5.3229,6.2350,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3529,3.0520,5.9328,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3530,3.0073,10.7054,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3531,2.9795,10.6877,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3532,5.3229,8.9448,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3533,3.0520,6.0845,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3534,3.0073,9.4713,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3535,2.9795,10.0988,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3536,5.3229,5.7373,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3537,3.0520,5.5194,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3538,3.0073,10.4684,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3539,2.9795,10.4049,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3540,5.3229,5.8259,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3541,3.0520,5.5924,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3542,3.0073,10.6394,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3543,2.9795,10.5522,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3544,5.3229,6.1657,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3545,3.0520,5.9023,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3546,3.0073,10.1254,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3547,2.9795,10.0959,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3548,5.3229,6.5557,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3549,3.0520,5.9680,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3550,3.0073,9.4235,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3551,2.9795,10.1234,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3552,5.3229,6.1828,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3553,3.0520,5.7464,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3554,3.0073,10.3911,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3555,2.9795,10.2684,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3556,5.3229,6.2155,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3557,3.0520,6.0141,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3558,3.0073,9.6933,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3559,2.9795,9.9708,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3560,5.3229,6.0280,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3561,3.0520,5.8791,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3562,3.0073,8.7191,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3563,2.9795,8.9334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3564,5.3229,6.0801,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3565,3.0520,5.8189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3566,3.0073,10.0986,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3567,2.9795,10.1962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3568,5.3229,6.2239,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3569,3.0520,5.9335,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3570,3.0073,9.8300,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3571,2.9795,9.9814,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3572,5.3229,6.1258,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3573,3.0520,5.7622,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3574,3.0073,10.5127,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3575,2.9795,10.5361,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3576,5.3229,6.0392,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3577,3.0520,5.6539,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3578,3.0073,11.4590,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3579,2.9795,11.7454,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3580,5.3229,6.1133,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3581,3.0520,5.7463,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3582,3.0073,10.6269,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3583,2.9795,10.4243,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3584,5.3229,6.1801,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3585,3.0520,5.7281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3586,3.0073,10.5346,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3587,2.9795,10.4042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3588,5.3229,6.3088,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3589,3.0520,5.7295,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3590,3.0073,10.4907,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3591,2.9795,10.2107,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3592,5.3229,8.5897,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3593,3.0520,8.1531,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3594,3.0073,10.3970,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3595,2.9795,10.3225,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3596,5.3229,6.0565,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3597,3.0520,5.7397,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3598,3.0073,10.5231,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3599,2.9795,10.7555,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3600,5.3229,42.2825,0.0105,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3601,3.0520,26.4670,0.0078,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3602,3.0073,25.3821,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3603,2.9795,25.5033,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3604,5.3229,5.8652,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3605,3.0520,5.6136,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3606,3.0073,10.4577,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3607,2.9795,10.4440,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3608,5.3229,5.7382,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3609,3.0520,5.5762,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3610,3.0073,10.3735,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3611,2.9795,10.4096,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3612,5.3229,5.8070,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3613,3.0520,5.6114,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3614,3.0073,10.4453,0.0503,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3615,2.9795,10.3881,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3616,5.3229,5.8472,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3617,3.0520,5.6297,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3618,3.0073,10.5650,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3619,2.9795,10.5352,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3620,5.3229,5.9180,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3621,3.0520,5.6978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3622,3.0073,10.4262,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3623,2.9795,10.3618,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3624,5.3229,5.7631,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3625,3.0520,5.5945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3626,3.0073,10.3638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3627,2.9795,10.3180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3628,5.3229,5.7817,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3629,3.0520,5.5760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3630,3.0073,10.4427,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3631,2.9795,10.3424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3632,5.3229,5.7724,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3633,3.0520,5.5468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3634,3.0073,10.4478,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3635,2.9795,10.4476,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3636,5.3229,5.7787,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3637,3.0520,5.5780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3638,3.0073,10.4313,0.0291,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3639,2.9795,10.3883,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3640,5.3229,5.7377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3641,3.0520,5.5781,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3642,3.0073,10.5220,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3643,2.9795,10.4281,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3644,5.3229,5.6944,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3645,3.0520,5.5970,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3646,3.0073,10.3857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3647,2.9795,10.4274,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3648,5.3229,5.7229,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3649,3.0520,5.5610,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3650,3.0073,10.3913,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3651,2.9795,10.3111,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3652,5.3229,5.7354,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3653,3.0520,5.5778,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3654,3.0073,10.3958,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3655,2.9795,10.3994,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3656,5.3229,5.7825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3657,3.0520,5.6655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3658,3.0073,10.2912,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3659,2.9795,10.3183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3660,5.3229,5.7747,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3661,3.0520,5.6054,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3662,3.0073,10.3885,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3663,2.9795,10.3282,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3664,5.3229,5.7124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3665,3.0520,5.5835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3666,3.0073,10.3955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3667,2.9795,10.3993,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3668,5.3229,5.7246,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3669,3.0520,5.5570,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3670,3.0073,10.4231,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3671,2.9795,10.3912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3672,5.3229,5.7804,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3673,3.0520,5.5810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3674,3.0073,10.3831,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3675,2.9795,10.3422,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3676,5.3229,5.7620,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3677,3.0520,5.5559,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3678,3.0073,10.3925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3679,2.9795,10.3552,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3680,5.3229,5.7497,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3681,3.0520,5.5458,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3682,3.0073,10.4321,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3683,2.9795,10.3622,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3684,5.3229,5.8030,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3685,3.0520,5.5710,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3686,3.0073,10.3310,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3687,2.9795,10.1759,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3688,5.3229,5.7697,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3689,3.0520,5.6320,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3690,3.0073,10.4180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3691,2.9795,10.3494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3692,5.3229,5.7118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3693,3.0520,5.5850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3694,3.0073,10.3750,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3695,2.9795,10.3540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3696,5.3229,5.8282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3697,3.0520,5.5884,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3698,3.0073,10.4376,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3699,2.9795,10.4217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3700,5.3229,5.8000,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3701,3.0520,5.5598,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3702,3.0073,10.3959,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3703,2.9795,10.3384,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3704,5.3229,5.6910,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3705,3.0520,5.5382,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3706,3.0073,10.4394,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3707,2.9795,10.4440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3708,5.3229,5.7585,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3709,3.0520,5.5408,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3710,3.0073,10.4039,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3711,2.9795,10.3948,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3712,5.3229,5.7820,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3713,3.0520,5.5773,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3714,3.0073,10.3841,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3715,2.9795,10.3664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3716,5.3229,5.8075,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3717,3.0520,5.5368,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3718,3.0073,10.4202,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3719,2.9795,10.3194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3720,5.3229,5.7485,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3721,3.0520,5.5923,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3722,3.0073,10.4088,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3723,2.9795,10.3440,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3724,5.3229,5.8157,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3725,3.0520,5.5296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3726,3.0073,10.3627,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3727,2.9795,10.2869,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3728,5.3229,5.8403,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3729,3.0520,5.5495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3730,3.0073,10.4049,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3731,2.9795,10.3554,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3732,5.3229,5.7960,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3733,3.0520,5.5644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3734,3.0073,10.5552,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3735,2.9795,10.5594,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3736,5.3229,5.8846,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3737,3.0520,5.5770,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3738,3.0073,10.4029,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3739,2.9795,10.2989,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3740,5.3229,5.8550,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3741,3.0520,5.6080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3742,3.0073,10.4990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3743,2.9795,10.4091,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3744,5.3229,6.0131,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3745,3.0520,5.6355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3746,3.0073,10.5192,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3747,2.9795,10.4086,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3748,5.3229,5.9958,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3749,3.0520,5.6280,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3750,3.0073,10.5492,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3751,2.9795,10.4695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3752,5.3229,5.9009,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3753,3.0520,5.5909,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3754,3.0073,10.4076,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3755,2.9795,10.3437,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3756,5.3229,5.8118,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3757,3.0520,5.6009,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3758,3.0073,10.3978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3759,2.9795,10.3811,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3760,5.3229,5.8456,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3761,3.0520,5.5619,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3762,3.0073,10.4950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3763,2.9795,10.4352,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3764,5.3229,5.8078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3765,3.0520,5.5883,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3766,3.0073,10.4991,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3767,2.9795,10.3994,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3768,5.3229,6.1725,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3769,3.0520,5.7733,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3770,3.0073,10.3426,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3771,2.9795,10.2661,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3772,5.3229,6.1132,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3773,3.0520,5.9205,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3774,3.0073,10.2948,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3775,2.9795,10.2820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3776,5.3229,6.0297,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3777,3.0520,5.7926,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3778,3.0073,10.1305,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3779,2.9795,9.9910,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3780,5.3229,6.1129,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3781,3.0520,5.8212,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3782,3.0073,10.4235,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3783,2.9795,10.0740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3784,5.3229,6.2601,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3785,3.0520,5.8383,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3786,3.0073,10.5835,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3787,2.9795,10.4326,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3788,5.3229,6.0585,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3789,3.0520,6.2217,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3790,3.0073,10.6520,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3791,2.9795,10.3671,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3792,5.3229,6.2821,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3793,3.0520,5.9082,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3794,3.0073,10.4281,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3795,2.9795,10.2120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3796,5.3229,6.6765,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3797,3.0520,6.2369,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3798,3.0073,11.0044,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3799,2.9795,11.0005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3800,5.3229,6.2206,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3801,3.0520,5.8577,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3802,3.0073,10.2244,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3803,2.9795,10.2832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3804,5.3229,6.2471,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3805,3.0520,5.8258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3806,3.0073,10.4029,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3807,2.9795,10.1804,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3808,5.3229,6.1203,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3809,3.0520,5.9783,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3810,3.0073,9.9244,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3811,2.9795,10.3168,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3812,5.3229,6.0677,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3813,3.0520,5.8250,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3814,3.0073,10.6350,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3815,2.9795,10.4583,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3816,5.3229,5.9499,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3817,3.0520,5.9143,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3818,3.0073,10.7067,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3819,2.9795,10.5267,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3820,5.3229,6.0143,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3821,3.0520,5.6647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3822,3.0073,10.0182,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3823,2.9795,9.8371,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3824,5.3229,6.1277,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3825,3.0520,6.2704,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3826,3.0073,9.4986,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3827,2.9795,9.8943,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3828,5.3229,6.1978,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3829,3.0520,6.0657,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3830,3.0073,10.3272,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3831,2.9795,10.4165,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3832,5.3229,6.2147,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3833,3.0520,5.8186,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3834,3.0073,14.8383,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3835,2.9795,14.8211,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3836,5.3229,6.8354,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3837,3.0520,6.3815,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3838,3.0073,10.1733,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3839,2.9795,10.2880,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3840,5.3229,6.3278,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3841,3.0520,6.0275,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3842,3.0073,10.1916,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3843,2.9795,10.1250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3844,5.3229,6.1452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3845,3.0520,5.8230,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3846,3.0073,10.5772,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3847,2.9795,10.4725,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3848,5.3229,6.6563,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3849,3.0520,6.3191,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3850,3.0073,10.5288,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3851,2.9795,10.4597,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3852,5.3229,6.2815,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3853,3.0520,5.8603,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3854,3.0073,10.7767,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3855,2.9795,11.1392,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3856,5.3229,6.1525,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3857,3.0520,5.8178,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3858,3.0073,10.5190,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3859,2.9795,10.2252,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3860,5.3229,6.2513,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3861,3.0520,5.8236,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3862,3.0073,10.0421,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3863,2.9795,10.0459,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3864,5.3229,6.2324,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3865,3.0520,6.0217,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3866,3.0073,10.1931,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3867,2.9795,10.4342,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3868,5.3229,6.0618,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3869,3.0520,5.8104,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3870,3.0073,10.5617,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3871,2.9795,10.3646,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3872,5.3229,6.1169,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3873,3.0520,5.9018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3874,3.0073,10.0168,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3875,2.9795,10.0219,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3876,5.3229,6.2995,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3877,3.0520,5.8987,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3878,3.0073,10.3628,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3879,2.9795,10.4724,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3880,5.3229,6.1016,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3881,3.0520,5.7125,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3882,3.0073,10.1203,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3883,2.9795,9.8087,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3884,5.3229,6.2951,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3885,3.0520,6.0601,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3886,3.0073,10.6187,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3887,2.9795,10.4585,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3888,5.3229,6.1613,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3889,3.0520,5.9872,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3890,3.0073,11.1047,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3891,2.9795,10.8989,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3892,5.3229,6.1346,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3893,3.0520,5.8194,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3894,3.0073,10.4298,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3895,2.9795,10.2897,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3896,5.3229,6.0248,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3897,3.0520,5.8069,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3898,3.0073,10.2941,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3899,2.9795,10.4278,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3900,5.3229,6.7268,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3901,3.0520,10.3484,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3902,3.0073,6.0728,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3903,2.9795,9.5883,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3904,5.3229,5.8025,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3905,3.0520,5.6861,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3906,3.0073,10.3138,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3907,2.9795,10.3100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3908,5.3229,5.8662,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3909,3.0520,5.6067,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3910,3.0073,10.4115,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3911,2.9795,10.3681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3912,5.3229,5.8275,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3913,3.0520,5.5862,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3914,3.0073,10.5487,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3915,2.9795,10.4555,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3916,5.3229,6.2009,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3917,3.0520,5.9416,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3918,3.0073,10.0688,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3919,2.9795,10.0722,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3920,5.3229,6.1081,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3921,3.0520,5.8948,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3922,3.0073,10.1341,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3923,2.9795,10.1478,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3924,5.3229,6.1112,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3925,3.0520,5.8617,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3926,3.0073,9.9715,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3927,2.9795,10.1515,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3928,5.3229,6.3188,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3929,3.0520,5.9560,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3930,3.0073,10.6089,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3931,2.9795,10.6395,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3932,5.3229,5.8382,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3933,3.0520,5.5246,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3934,3.0073,10.4910,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3935,2.9795,10.3293,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3936,5.3229,6.0712,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3937,3.0520,5.8794,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3938,3.0073,10.6187,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3939,2.9795,10.4227,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3940,5.3229,6.2320,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3941,3.0520,5.8676,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3942,3.0073,10.1510,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3943,2.9795,10.4166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3944,5.3229,6.1387,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3945,3.0520,5.9495,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3946,3.0073,10.2201,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3947,2.9795,10.5250,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3948,5.3229,6.0640,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3949,3.0520,5.8880,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3950,3.0073,10.0700,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3951,2.9795,10.0839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3952,5.3229,6.1857,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3953,3.0520,5.8453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3954,3.0073,9.9340,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3955,2.9795,10.0844,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3956,5.3229,6.1515,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3957,3.0520,5.8260,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3958,3.0073,10.6054,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3959,2.9795,10.8209,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3960,5.3229,6.0321,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3961,3.0520,5.8377,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3962,3.0073,10.0368,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3963,2.9795,9.9220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3964,5.3229,5.9370,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3965,3.0520,5.9073,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3966,3.0073,9.8792,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3967,2.9795,9.9628,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3968,5.3229,6.0747,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3969,3.0520,5.8711,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3970,3.0073,10.0045,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3971,2.9795,10.2604,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3972,5.3229,6.0441,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3973,3.0520,5.7200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3974,3.0073,10.3943,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3975,2.9795,10.4653,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3976,5.3229,6.1786,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3977,3.0520,5.7737,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3978,3.0073,10.4234,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3979,2.9795,10.4426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3980,5.3229,6.1664,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3981,3.0520,5.7609,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3982,3.0073,10.2239,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3983,2.9795,10.2555,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3984,5.3229,6.3762,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3985,3.0520,5.9673,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3986,3.0073,10.3507,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3987,2.9795,10.2551,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3988,5.3229,6.3111,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3989,3.0520,5.9607,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3990,3.0073,10.2378,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3991,2.9795,10.1256,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3992,5.3229,6.1161,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3993,3.0520,5.9609,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3994,3.0073,10.0354,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3995,2.9795,10.2510,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3996,5.3229,6.0625,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3997,3.0520,5.7920,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3998,3.0073,10.3286,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3999,2.9795,10.2660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4000,5.3229,5.8293,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4001,3.0520,5.5634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4002,3.0073,10.3734,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4003,2.9795,10.2934,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4004,5.3229,5.9520,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4005,3.0520,5.5770,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4006,3.0073,10.4053,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4007,2.9795,10.3541,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4008,5.3229,5.8828,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4009,3.0520,5.6020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4010,3.0073,10.3520,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4011,2.9795,10.3099,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4012,5.3229,5.8155,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4013,3.0520,5.5848,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4014,3.0073,10.3408,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4015,2.9795,10.3392,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4016,5.3229,5.7855,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4017,3.0520,5.5802,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4018,3.0073,10.4089,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4019,2.9795,10.3040,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4020,5.3229,5.8679,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4021,3.0520,5.6026,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4022,3.0073,10.4708,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4023,2.9795,10.4113,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4024,5.3229,5.7825,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4025,3.0520,5.5707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4026,3.0073,10.3787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4027,2.9795,10.3439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4028,5.3229,5.9240,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4029,3.0520,5.6557,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4030,3.0073,10.5396,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4031,2.9795,10.4575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4032,5.3229,6.0517,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4033,3.0520,5.6646,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4034,3.0073,10.5717,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4035,2.9795,10.4984,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4036,5.3229,5.9651,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4037,3.0520,5.7043,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4038,3.0073,10.3880,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4039,2.9795,10.3195,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4040,5.3229,5.8211,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4041,3.0520,5.5627,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4042,3.0073,10.4130,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4043,2.9795,10.3853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4044,5.3229,5.8262,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4045,3.0520,5.5592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4046,3.0073,10.3319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4047,2.9795,10.3567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4048,5.3229,5.7990,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4049,3.0520,5.5703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4050,3.0073,10.3715,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4051,2.9795,10.3690,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4052,5.3229,5.7417,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4053,3.0520,5.5266,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4054,3.0073,10.4652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4055,2.9795,10.4090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4056,5.3229,5.8500,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4057,3.0520,5.6542,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4058,3.0073,10.2582,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4059,2.9795,10.2843,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4060,5.3229,5.8783,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4061,3.0520,5.5687,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4062,3.0073,10.5072,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4063,2.9795,10.3975,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4064,5.3229,5.8904,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4065,3.0520,5.5608,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4066,3.0073,10.4747,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4067,2.9795,10.3870,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4068,5.3229,5.8345,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4069,3.0520,5.5507,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4070,3.0073,10.3944,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4071,2.9795,10.3806,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4072,5.3229,5.7546,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4073,3.0520,5.5772,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4074,3.0073,10.3909,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4075,2.9795,10.2020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4076,5.3229,5.8378,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4077,3.0520,5.6020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4078,3.0073,10.4326,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4079,2.9795,10.2773,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4080,5.3229,5.9030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4081,3.0520,5.5758,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4082,3.0073,10.3915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4083,2.9795,10.3701,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4084,5.3229,5.7727,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4085,3.0520,5.5656,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4086,3.0073,10.3628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4087,2.9795,10.3425,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4088,5.3229,5.8700,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4089,3.0520,5.5743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4090,3.0073,10.3010,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4091,2.9795,10.2806,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4092,5.3229,5.7509,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4093,3.0520,5.6345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4094,3.0073,10.2988,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4095,2.9795,10.3471,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4096,5.3229,5.7659,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4097,3.0520,5.5652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4098,3.0073,10.4551,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4099,2.9795,10.3333,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4100,5.3229,5.8681,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4101,3.0520,5.5658,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4102,3.0073,10.4692,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4103,2.9795,10.3395,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4104,5.3229,5.7670,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4105,3.0520,5.5597,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4106,3.0073,10.3421,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4107,2.9795,10.2973,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4108,5.3229,5.8087,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4109,3.0520,5.5933,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4110,3.0073,10.3611,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4111,2.9795,10.3230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4112,5.3229,5.7218,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4113,3.0520,5.5244,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4114,3.0073,10.5071,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4115,2.9795,10.4178,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4116,5.3229,5.9740,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4117,3.0520,5.7002,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4118,3.0073,10.5128,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4119,2.9795,10.3798,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4120,5.3229,6.1052,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4121,3.0520,5.8899,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4122,3.0073,9.9657,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4123,2.9795,9.9569,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4124,5.3229,6.1253,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4125,3.0520,5.9056,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4126,3.0073,10.0770,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4127,2.9795,10.0181,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4128,5.3229,6.2660,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4129,3.0520,5.8871,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4130,3.0073,10.0995,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4131,2.9795,9.8916,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4132,5.3229,6.0745,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4133,3.0520,5.8644,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4134,3.0073,11.0422,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4135,2.9795,10.8763,0.0237,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4136,5.3229,7.0986,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4137,3.0520,6.7177,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4138,3.0073,10.4563,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4139,2.9795,10.3770,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4140,5.3229,6.0143,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4141,3.0520,5.7898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4142,3.0073,10.1672,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4143,2.9795,10.0202,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4144,5.3229,6.2135,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4145,3.0520,5.8008,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4146,3.0073,10.2458,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4147,2.9795,10.2505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4148,5.3229,6.1362,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4149,3.0520,5.9387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4150,3.0073,10.0320,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4151,2.9795,10.2658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4152,5.3229,6.9183,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4153,3.0520,6.3950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4154,3.0073,6.4235,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4155,2.9795,5.7647,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4156,5.3229,6.1039,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4157,3.0520,5.6690,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4158,3.0073,10.3679,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4159,2.9795,10.4441,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4160,5.3229,6.1975,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4161,3.0520,5.9277,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4162,3.0073,9.9640,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4163,2.9795,10.1314,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4164,5.3229,6.0814,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4165,3.0520,5.9390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4166,3.0073,9.9315,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4167,2.9795,9.9938,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4168,5.3229,6.0163,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4169,3.0520,5.8382,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4170,3.0073,10.0899,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4171,2.9795,9.9311,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4172,5.3229,5.6788,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4173,3.0520,5.4523,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4174,3.0073,10.3770,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4175,2.9795,10.2787,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4176,5.3229,6.0247,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4177,3.0520,5.7554,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4178,3.0073,10.7681,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4179,2.9795,10.6971,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4180,5.3229,6.2024,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4181,3.0520,5.7421,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4182,3.0073,10.3280,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4183,2.9795,10.2130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4184,5.3229,5.8342,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4185,3.0520,5.5666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4186,3.0073,10.4162,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4187,2.9795,10.3803,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4188,5.3229,5.8698,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4189,3.0520,5.5778,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4190,3.0073,10.3870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4191,2.9795,10.3452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4192,5.3229,5.7899,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4193,3.0520,5.5541,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4194,3.0073,10.3124,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4195,2.9795,10.2890,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4196,5.3229,5.7837,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4197,3.0520,5.5733,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4198,3.0073,10.4678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4199,2.9795,10.4723,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4200,5.3229,5.7977,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4201,3.0520,5.6210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4202,3.0073,10.2764,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4203,2.9795,10.2496,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4204,5.3229,5.5847,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4205,3.0520,5.5315,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4206,3.0073,10.3784,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4207,2.9795,10.3889,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4208,5.3229,5.8137,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4209,3.0520,5.5775,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4210,3.0073,10.3551,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4211,2.9795,10.2389,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4212,5.3229,5.8668,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4213,3.0520,5.6841,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4214,3.0073,11.8044,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4215,2.9795,11.7536,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4216,5.3229,6.2566,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4217,3.0520,5.7574,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4218,3.0073,9.9706,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4219,2.9795,9.9382,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4220,5.3229,7.5523,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4221,3.0520,5.9899,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4222,3.0073,9.5747,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4223,2.9795,9.6327,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4224,5.3229,6.0356,0.0769,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4225,3.0520,5.7208,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4226,3.0073,10.1918,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4227,2.9795,10.0880,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4228,5.3229,6.3106,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4229,3.0520,5.9009,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4230,3.0073,10.1953,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4231,2.9795,10.1115,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4232,5.3229,6.0761,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4233,3.0520,5.8559,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4234,3.0073,10.0290,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4235,2.9795,10.0496,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4236,5.3229,5.8762,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4237,3.0520,5.7783,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4238,3.0073,10.5793,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4239,2.9795,10.5348,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4240,5.3229,5.8923,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4241,3.0520,5.8195,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4242,3.0073,9.9494,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4243,2.9795,10.0015,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4244,5.3229,5.9616,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4245,3.0520,5.8582,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4246,3.0073,10.0316,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4247,2.9795,10.1366,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4248,5.3229,6.1280,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4249,3.0520,5.8279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4250,3.0073,10.0717,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4251,2.9795,10.1720,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4252,5.3229,6.0365,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4253,3.0520,5.8440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4254,3.0073,9.9962,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4255,2.9795,9.9663,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4256,5.3229,6.2172,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4257,3.0520,5.9527,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4258,3.0073,9.9499,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4259,2.9795,10.1191,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4260,5.3229,5.8483,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4261,3.0520,5.6629,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4262,3.0073,10.6777,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4263,2.9795,10.4960,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4264,5.3229,6.1755,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4265,3.0520,5.8349,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4266,3.0073,10.3661,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4267,2.9795,10.4184,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4268,5.3229,6.1498,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4269,3.0520,5.9462,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4270,3.0073,10.2395,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4271,2.9795,10.0309,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4272,5.3229,6.1056,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4273,3.0520,5.7854,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4274,3.0073,10.2440,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4275,2.9795,10.2703,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4276,5.3229,5.9209,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4277,3.0520,5.6819,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4278,3.0073,10.5480,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4279,2.9795,10.3221,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4280,5.3229,5.9634,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4281,3.0520,5.6811,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4282,3.0073,10.9328,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4283,2.9795,10.7188,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4284,5.3229,8.0756,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4285,3.0520,7.3268,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4286,3.0073,9.9722,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4287,2.9795,9.8758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4288,5.3229,6.0103,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4289,3.0520,5.7371,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4290,3.0073,10.6575,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4291,2.9795,10.4708,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4292,5.3229,6.0378,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4293,3.0520,6.0104,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4294,3.0073,9.8781,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4295,2.9795,10.1073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4296,5.3229,6.0469,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4297,3.0520,5.7429,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4298,3.0073,10.2830,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4299,2.9795,10.2810,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4300,5.3229,6.1454,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4301,3.0520,5.7085,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4302,3.0073,10.3377,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4303,2.9795,10.0702,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4304,5.3229,6.0881,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4305,3.0520,5.8806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4306,3.0073,9.5850,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4307,2.9795,10.2227,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4308,5.3229,6.1702,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4309,3.0520,5.8945,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4310,3.0073,10.3426,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4311,2.9795,10.4020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4312,5.3229,6.0315,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4313,3.0520,5.7051,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4314,3.0073,10.3318,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4315,2.9795,10.3054,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4316,5.3229,6.1318,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4317,3.0520,6.0290,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4318,3.0073,10.2601,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4319,2.9795,10.1705,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4320,5.3229,48.0403,0.0143,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4321,3.0520,31.9149,0.0163,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4322,3.0073,25.4172,0.0057,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4323,2.9795,25.8362,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4324,5.3229,5.8447,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4325,3.0520,5.5810,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4326,3.0073,10.4252,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4327,2.9795,10.3785,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4328,5.3229,5.8254,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4329,3.0520,5.5633,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4330,3.0073,10.3950,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4331,2.9795,10.4175,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4332,5.3229,5.8078,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4333,3.0520,5.6080,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4334,3.0073,10.4757,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4335,2.9795,10.4277,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4336,5.3229,5.7417,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4337,3.0520,5.5518,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4338,3.0073,10.3445,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4339,2.9795,10.3327,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4340,5.3229,5.7651,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4341,3.0520,5.5487,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4342,3.0073,10.4795,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4343,2.9795,10.4082,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4344,5.3229,5.8047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4345,3.0520,5.5512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4346,3.0073,10.4393,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4347,2.9795,10.3591,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4348,5.3229,5.8908,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4349,3.0520,5.5895,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4350,3.0073,10.4413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4351,2.9795,10.3227,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4352,5.3229,5.7778,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4353,3.0520,5.6598,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4354,3.0073,10.4353,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4355,2.9795,10.4648,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4356,5.3229,5.6973,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4357,3.0520,5.6313,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4358,3.0073,10.5116,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4359,2.9795,10.5114,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4360,5.3229,5.6939,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4361,3.0520,5.5580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4362,3.0073,10.4515,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4363,2.9795,10.4622,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4364,5.3229,5.7608,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4365,3.0520,5.6101,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4366,3.0073,10.4526,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4367,2.9795,10.4585,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4368,5.3229,5.6684,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4369,3.0520,5.5908,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4370,3.0073,10.4442,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4371,2.9795,10.4530,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4372,5.3229,5.6300,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4373,3.0520,5.5695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4374,3.0073,10.4871,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4375,2.9795,10.4861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4376,5.3229,5.6575,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4377,3.0520,5.6062,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4378,3.0073,10.4370,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4379,2.9795,10.4437,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4380,5.3229,5.6810,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4381,3.0520,5.6544,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4382,3.0073,10.5090,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4383,2.9795,10.5188,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4384,5.3229,5.5264,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4385,3.0520,5.4887,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4386,3.0073,10.3666,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4387,2.9795,10.3406,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4388,5.3229,5.9673,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4389,3.0520,5.6367,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4390,3.0073,10.2513,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4391,2.9795,10.1266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4392,5.3229,5.7600,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4393,3.0520,5.5486,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4394,3.0073,10.3963,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4395,2.9795,10.2893,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4396,5.3229,5.8076,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4397,3.0520,5.6208,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4398,3.0073,10.3319,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4399,2.9795,10.2685,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4400,5.3229,5.6904,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4401,3.0520,5.4075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4402,3.0073,10.2455,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4403,2.9795,10.1463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4404,5.3229,5.9588,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4405,3.0520,5.6745,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4406,3.0073,10.5155,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4407,2.9795,10.4184,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4408,5.3229,5.7396,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4409,3.0520,5.6248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4410,3.0073,10.5927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4411,2.9795,10.5907,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4412,5.3229,5.6563,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4413,3.0520,5.5892,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4414,3.0073,10.4162,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4415,2.9795,10.3957,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4416,5.3229,5.7271,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4417,3.0520,5.5690,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4418,3.0073,10.4883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4419,2.9795,10.5329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4420,5.3229,5.6599,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4421,3.0520,5.5855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4422,3.0073,10.5723,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4423,2.9795,10.5832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4424,5.3229,5.7035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4425,3.0520,5.6250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4426,3.0073,10.4088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4427,2.9795,10.3903,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4428,5.3229,5.7193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4429,3.0520,5.5679,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4430,3.0073,10.3529,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4431,2.9795,10.3532,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4432,5.3229,5.6273,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4433,3.0520,5.4931,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4434,3.0073,10.3442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4435,2.9795,10.3830,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4436,5.3229,5.8012,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4437,3.0520,5.5763,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4438,3.0073,10.3880,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4439,2.9795,10.4175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4440,5.3229,5.7922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4441,3.0520,5.5927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4442,3.0073,10.3249,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4443,2.9795,10.2820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4444,5.3229,5.8670,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4445,3.0520,5.6795,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4446,3.0073,10.4374,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4447,2.9795,10.3983,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4448,5.3229,5.8338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4449,3.0520,5.6083,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4450,3.0073,10.3784,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4451,2.9795,10.3163,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4452,5.3229,6.1900,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4453,3.0520,5.8601,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4454,3.0073,10.6480,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4455,2.9795,10.6276,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4456,5.3229,6.4489,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4457,3.0520,5.7524,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4458,3.0073,10.0237,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4459,2.9795,9.7828,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4460,5.3229,6.6685,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4461,3.0520,5.8045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4462,3.0073,9.6447,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4463,2.9795,10.1346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4464,5.3229,6.2201,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4465,3.0520,5.7911,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4466,3.0073,10.6050,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4467,2.9795,10.5218,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4468,5.3229,5.9682,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4469,3.0520,5.6848,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4470,3.0073,10.2622,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4471,2.9795,10.2668,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4472,5.3229,6.1491,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4473,3.0520,5.6826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4474,3.0073,10.6282,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4475,2.9795,10.5567,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4476,5.3229,5.7990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4477,3.0520,5.5530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4478,3.0073,10.3782,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4479,2.9795,10.3486,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4480,5.3229,5.8501,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4481,3.0520,5.5504,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4482,3.0073,10.4279,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4483,2.9795,10.4087,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4484,5.3229,5.9343,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4485,3.0520,5.6165,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4486,3.0073,10.3883,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4487,2.9795,10.3661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4488,5.3229,5.6593,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4489,3.0520,5.5642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4490,3.0073,10.4772,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4491,2.9795,10.3642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4492,5.3229,5.7470,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4493,3.0520,5.5388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4494,3.0073,10.3633,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4495,2.9795,10.3388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4496,5.3229,5.6681,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4497,3.0520,5.5171,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4498,3.0073,10.3203,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4499,2.9795,10.2636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4500,5.3229,5.6847,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4501,3.0520,5.5255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4502,3.0073,10.3407,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4503,2.9795,10.2436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4504,5.3229,5.7708,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4505,3.0520,5.5265,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4506,3.0073,10.2398,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4507,2.9795,10.1683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4508,5.3229,5.6732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4509,3.0520,5.5114,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4510,3.0073,10.3373,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4511,2.9795,10.3018,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4512,5.3229,5.7345,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4513,3.0520,5.5206,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4514,3.0073,10.2750,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4515,2.9795,10.2188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4516,5.3229,5.7855,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4517,3.0520,5.5936,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4518,3.0073,10.3694,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4519,2.9795,10.3505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4520,5.3229,5.8691,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4521,3.0520,5.6126,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4522,3.0073,10.2877,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4523,2.9795,10.1395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4524,5.3229,6.0267,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4525,3.0520,5.6370,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4526,3.0073,10.3947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4527,2.9795,10.3151,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4528,5.3229,5.8382,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4529,3.0520,5.6198,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4530,3.0073,10.3896,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4531,2.9795,10.3573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4532,5.3229,5.6970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4533,3.0520,5.5590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4534,3.0073,10.3083,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +4535,2.9795,10.2482,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4536,5.3229,5.7177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4537,3.0520,5.5804,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4538,3.0073,10.2620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4539,2.9795,10.1923,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4540,5.3229,5.8607,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4541,3.0520,5.6449,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4542,3.0073,10.3706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4543,2.9795,10.3161,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4544,5.3229,6.2333,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4545,3.0520,5.6978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4546,3.0073,10.5664,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4547,2.9795,10.4842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4548,5.3229,5.6925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4549,3.0520,5.5128,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4550,3.0073,10.2867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4551,2.9795,10.2743,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4552,5.3229,5.7616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4553,3.0520,5.5856,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4554,3.0073,10.3967,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4555,2.9795,10.3909,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4556,5.3229,5.7018,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4557,3.0520,5.5596,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4558,3.0073,10.3708,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4559,2.9795,10.3770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4560,5.3229,5.9627,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4561,3.0520,5.8512,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4562,3.0073,10.7072,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4563,2.9795,10.7183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4564,5.3229,6.0051,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4565,3.0520,5.7450,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4566,3.0073,10.6750,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4567,2.9795,10.6783,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4568,5.3229,5.6412,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4569,3.0520,5.5211,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4570,3.0073,10.3277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4571,2.9795,10.3035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4572,5.3229,5.7493,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4573,3.0520,5.5878,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4574,3.0073,10.4834,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4575,2.9795,10.4896,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4576,5.3229,5.8473,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4577,3.0520,5.6867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4578,3.0073,10.5467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4579,2.9795,10.4950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4580,5.3229,6.0680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4581,3.0520,5.8570,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4582,3.0073,10.6131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4583,2.9795,10.5698,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4584,5.3229,5.8358,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4585,3.0520,5.6346,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4586,3.0073,10.3426,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4587,2.9795,10.3074,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4588,5.3229,6.1145,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4589,3.0520,5.8127,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4590,3.0073,10.4996,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4591,2.9795,10.3066,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4592,5.3229,6.5058,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4593,3.0520,5.9125,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4594,3.0073,10.1415,0.0237,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4595,2.9795,9.9462,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4596,5.3229,6.4330,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4597,3.0520,5.8233,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4598,3.0073,9.9498,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4599,2.9795,10.1258,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4600,5.3229,6.3066,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4601,3.0520,5.8706,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4602,3.0073,9.7303,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4603,2.9795,9.7018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4604,5.3229,6.5341,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4605,3.0520,5.8407,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4606,3.0073,10.0575,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4607,2.9795,10.1922,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4608,5.3229,6.4778,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4609,3.0520,5.9322,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4610,3.0073,9.6808,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +4611,2.9795,10.0038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4612,5.3229,6.5080,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4613,3.0520,5.8739,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4614,3.0073,10.0965,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4615,2.9795,9.9512,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4616,5.3229,6.7355,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4617,3.0520,5.7743,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4618,3.0073,10.1856,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4619,2.9795,9.9254,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4620,5.3229,6.3884,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4621,3.0520,5.8020,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4622,3.0073,10.0370,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4623,2.9795,9.9551,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4624,5.3229,6.4374,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4625,3.0520,5.7821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4626,3.0073,10.1508,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4627,2.9795,9.7493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4628,5.3229,6.4522,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4629,3.0520,5.8539,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4630,3.0073,10.0735,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4631,2.9795,9.9332,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4632,5.3229,8.1163,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4633,3.0520,7.2364,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4634,3.0073,11.3605,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4635,2.9795,12.3315,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4636,5.3229,6.1369,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4637,3.0520,5.6790,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4638,3.0073,10.5049,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4639,2.9795,10.2458,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4640,5.3229,6.3081,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4641,3.0520,5.8422,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4642,3.0073,10.3271,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4643,2.9795,10.0040,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4644,5.3229,6.8380,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4645,3.0520,5.8946,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4646,3.0073,10.1835,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4647,2.9795,10.1515,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4648,5.3229,5.9469,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4649,3.0520,5.6989,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4650,3.0073,10.3704,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4651,2.9795,10.2539,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4652,5.3229,5.7420,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4653,3.0520,5.4648,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4654,3.0073,10.2689,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4655,2.9795,10.1472,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4656,5.3229,5.7561,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4657,3.0520,5.5578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4658,3.0073,10.4280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4659,2.9795,10.4175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4660,5.3229,5.6963,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4661,3.0520,5.5316,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4662,3.0073,10.4199,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4663,2.9795,10.3933,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4664,5.3229,5.7052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4665,3.0520,5.6035,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4666,3.0073,10.4096,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4667,2.9795,10.3782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4668,5.3229,5.6439,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4669,3.0520,5.5701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4670,3.0073,10.2571,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4671,2.9795,10.2889,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4672,5.3229,5.6608,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4673,3.0520,5.5177,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4674,3.0073,10.3232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4675,2.9795,10.3851,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4676,5.3229,5.7196,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4677,3.0520,5.5294,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4678,3.0073,10.4633,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4679,2.9795,10.4733,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4680,5.3229,5.7796,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4681,3.0520,5.5847,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4682,3.0073,10.3906,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4683,2.9795,10.3931,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4684,5.3229,5.6682,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4685,3.0520,5.5183,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4686,3.0073,10.4431,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4687,2.9795,10.4544,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4688,5.3229,5.6215,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4689,3.0520,5.5362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4690,3.0073,10.4235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4691,2.9795,10.4375,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4692,5.3229,5.6752,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4693,3.0520,5.5597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4694,3.0073,10.4238,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4695,2.9795,10.4159,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4696,5.3229,5.7494,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4697,3.0520,5.5996,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4698,3.0073,10.3759,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4699,2.9795,10.3809,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4700,5.3229,5.6870,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4701,3.0520,5.5323,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4702,3.0073,10.3846,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4703,2.9795,10.3505,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4704,5.3229,5.7171,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4705,3.0520,5.6049,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4706,3.0073,10.4594,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4707,2.9795,10.4720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4708,5.3229,5.7617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4709,3.0520,5.5995,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4710,3.0073,10.3981,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4711,2.9795,10.3831,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4712,5.3229,5.6322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4713,3.0520,5.5378,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4714,3.0073,10.3682,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4715,2.9795,10.3310,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4716,5.3229,5.7447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4717,3.0520,5.5253,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4718,3.0073,10.2858,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4719,2.9795,10.2577,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4720,5.3229,5.7849,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4721,3.0520,5.5842,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4722,3.0073,10.3695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4723,2.9795,10.3182,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4724,5.3229,5.8166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4725,3.0520,5.5892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4726,3.0073,10.3815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4727,2.9795,10.3035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4728,5.3229,5.7990,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4729,3.0520,5.6255,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4730,3.0073,10.6797,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4731,2.9795,10.6706,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4732,5.3229,6.3212,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4733,3.0520,5.7652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4734,3.0073,10.1554,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4735,2.9795,9.9521,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4736,5.3229,6.5218,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4737,3.0520,5.8206,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4738,3.0073,10.0035,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4739,2.9795,9.8394,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4740,5.3229,6.5837,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4741,3.0520,5.6579,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4742,3.0073,10.1058,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4743,2.9795,10.0918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4744,5.3229,6.0902,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4745,3.0520,5.6545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4746,3.0073,10.4637,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4747,2.9795,10.3756,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4748,5.3229,5.8029,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4749,3.0520,5.5538,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4750,3.0073,10.3306,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4751,2.9795,10.2919,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4752,5.3229,5.9411,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4753,3.0520,5.5953,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4754,3.0073,10.3767,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4755,2.9795,10.3430,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4756,5.3229,5.8294,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4757,3.0520,5.5966,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4758,3.0073,10.2814,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4759,2.9795,10.2354,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4760,5.3229,5.7528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4761,3.0520,5.5556,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4762,3.0073,10.2939,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4763,2.9795,10.2507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4764,5.3229,5.8936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4765,3.0520,5.6472,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4766,3.0073,10.3378,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4767,2.9795,10.2566,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4768,5.3229,5.7911,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4769,3.0520,5.6737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4770,3.0073,10.2026,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4771,2.9795,10.1293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4772,5.3229,6.4475,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4773,3.0520,5.7568,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4774,3.0073,10.5240,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4775,2.9795,10.2635,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4776,5.3229,6.3512,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4777,3.0520,5.8408,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4778,3.0073,10.7342,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4779,2.9795,10.3375,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4780,5.3229,6.3535,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4781,3.0520,5.7477,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4782,3.0073,9.9195,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4783,2.9795,10.1425,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4784,5.3229,6.9508,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4785,3.0520,5.8777,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4786,3.0073,11.7435,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4787,2.9795,11.5794,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4788,5.3229,6.4082,0.0382,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4789,3.0520,5.7570,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4790,3.0073,10.5387,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4791,2.9795,10.5416,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4792,5.3229,6.6957,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4793,3.0520,5.7888,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4794,3.0073,10.6882,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4795,2.9795,10.4999,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4796,5.3229,7.5523,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4797,3.0520,6.7155,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4798,3.0073,10.7623,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4799,2.9795,10.7342,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.txt b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.txt new file mode 100644 index 0000000..4053e66 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.txt @@ -0,0 +1,83 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +warmup_frames=20 +target_fps=60 +duration_seconds=20 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=1200 +frames_submitted=1200 +frames_skipped=0 +frames_encoded=1200 +failed_frames=0 +steady_frames_encoded=1180 +elapsed_seconds=19.997 +effective_logical_fps=60.010 +tile_frames_requested=4800 +tile_frames_encoded=4800 +failed_tile_frames=0 +avg_encode_latency_ms=11.991 +p95_encode_latency_ms=12.632 +max_encode_latency_ms=131.582 +avg_steady_encode_latency_ms=11.923 +p95_steady_encode_latency_ms=12.624 +max_steady_encode_latency_ms=131.582 +avg_tile_encode_latency_ms=8.280 +p95_tile_encode_latency_ms=10.644 +avg_max_tile_encode_latency_ms=10.669 +p95_max_tile_encode_latency_ms=11.022 +avg_steady_max_tile_encode_latency_ms=10.656 +p95_steady_max_tile_encode_latency_ms=11.013 +payload_bytes=7402631 +send_target=none +csv=benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s_logical.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s_logical.csv new file mode 100644 index 0000000..a4c7794 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset180_inflight1_20s_logical.csv @@ -0,0 +1,1201 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,104.3188,28.3729,231707 +1,4,0,10.9886,10.5023,65901 +2,4,0,10.8993,10.4451,36886 +3,4,0,11.0190,10.5622,69404 +4,4,0,10.8337,10.3146,87864 +5,4,0,10.8217,10.2977,53700 +6,4,0,10.7230,10.3287,24415 +7,4,0,10.8735,10.3750,15407 +8,4,0,10.8989,10.2933,12151 +9,4,0,11.0388,10.5012,11449 +10,4,0,11.2889,10.6197,8599 +11,4,0,11.1337,10.4380,6107 +12,4,0,11.1525,10.4563,5132 +13,4,0,11.2700,10.6114,3880 +14,4,0,11.2178,10.4534,4001 +15,4,0,11.2870,10.5834,3860 +16,4,0,11.3190,10.6175,4045 +17,4,0,11.6134,10.8277,3955 +18,4,0,14.0420,12.3972,3721 +19,4,0,12.6089,10.4737,3748 +20,4,0,12.5789,10.9740,3386 +21,4,0,13.9810,12.4274,2761 +22,4,0,11.4011,10.5852,2750 +23,4,0,11.6264,10.4655,2836 +24,4,0,16.1121,10.7928,2977 +25,4,0,11.4847,10.7789,2960 +26,4,0,11.5925,10.4989,3010 +27,4,0,12.5912,11.0125,2978 +28,4,0,13.9550,11.6951,2889 +29,4,0,11.9561,10.6269,2914 +30,4,0,12.5087,10.6284,2847 +31,4,0,12.7332,11.1950,3111 +32,4,0,13.1873,10.0035,2714 +33,4,0,12.2324,10.2584,2843 +34,4,0,12.3827,10.5575,2633 +35,4,0,13.5125,10.1337,2659 +36,4,0,12.2208,10.5711,2696 +37,4,0,13.1348,10.4081,2728 +38,4,0,12.0129,10.3613,2772 +39,4,0,11.5531,10.4241,2740 +40,4,0,12.0413,10.2033,2809 +41,4,0,11.8550,10.3490,2679 +42,4,0,12.4468,11.5147,2865 +43,4,0,12.0331,10.4061,2612 +44,4,0,12.0004,10.5487,2626 +45,4,0,12.3645,10.5839,2693 +46,4,0,12.1045,10.0862,2708 +47,4,0,11.7527,10.4228,2765 +48,4,0,11.1563,10.4236,2645 +49,4,0,11.0944,10.3184,2733 +50,4,0,11.0141,10.3878,2667 +51,4,0,11.1020,10.4684,2647 +52,4,0,11.1617,10.5215,2659 +53,4,0,11.4663,10.8618,2757 +54,4,0,11.0755,10.3700,2656 +55,4,0,11.0523,10.4152,2594 +56,4,0,11.1463,10.3212,2603 +57,4,0,11.2210,10.5331,2605 +58,4,0,11.2076,10.4367,2610 +59,4,0,11.3102,10.6427,2641 +60,4,0,11.1054,10.4668,2637 +61,4,0,11.0679,10.4423,2691 +62,4,0,10.8772,10.3923,2620 +63,4,0,11.1439,10.3562,2614 +64,4,0,10.9387,10.3902,2666 +65,4,0,10.8444,10.3255,2613 +66,4,0,10.7653,10.2737,2624 +67,4,0,10.8254,10.2712,2612 +68,4,0,11.2879,10.1480,2687 +69,4,0,11.3215,10.1908,2622 +70,4,0,11.4306,10.2960,2623 +71,4,0,11.9068,10.7828,2647 +72,4,0,10.8837,10.2739,2645 +73,4,0,10.8065,10.2685,2643 +74,4,0,10.8089,10.2506,2635 +75,4,0,13.5798,13.0620,2718 +76,4,0,11.1726,10.3916,2602 +77,4,0,10.9161,10.1648,2605 +78,4,0,11.0572,10.4241,2612 +79,4,0,11.3317,9.7586,2607 +80,4,0,11.2370,10.2412,2630 +81,4,0,11.0709,10.2096,2617 +82,4,0,10.9330,10.3956,2661 +83,4,0,11.2007,10.5876,2606 +84,4,0,11.3167,10.5075,2609 +85,4,0,10.9353,10.3644,2612 +86,4,0,11.2774,10.6211,2632 +87,4,0,11.1158,10.2999,2606 +88,4,0,10.9803,10.3120,2610 +89,4,0,10.9346,10.2483,2652 +90,4,0,11.0071,10.4011,2594 +91,4,0,10.9355,10.4543,2609 +92,4,0,11.0353,10.3027,2598 +93,4,0,10.9992,10.4908,2613 +94,4,0,11.7627,11.2272,2618 +95,4,0,11.1731,10.4898,2604 +96,4,0,11.1447,10.4250,2677 +97,4,0,11.1484,10.4614,2620 +98,4,0,11.2137,10.6370,2594 +99,4,0,11.2638,10.4414,2594 +100,4,0,11.1607,10.6070,2598 +101,4,0,10.9152,10.2718,2609 +102,4,0,11.1767,10.3400,2616 +103,4,0,10.9957,10.2910,2630 +104,4,0,11.1072,10.5028,2606 +105,4,0,11.4069,10.4506,2604 +106,4,0,11.2797,10.5127,2609 +107,4,0,11.3781,10.7488,2610 +108,4,0,11.4647,10.7225,2652 +109,4,0,10.9337,10.3182,2600 +110,4,0,11.1863,10.5553,2640 +111,4,0,11.0416,10.1525,2594 +112,4,0,11.2952,10.6235,2594 +113,4,0,11.1337,10.3703,2600 +114,4,0,11.0917,10.4137,2599 +115,4,0,11.1881,10.4047,2607 +116,4,0,11.3285,10.5552,2603 +117,4,0,12.3879,11.5757,2623 +118,4,0,12.7607,10.6746,2600 +119,4,0,13.4226,10.2485,2610 +120,4,0,12.5714,10.8289,2594 +121,4,0,12.6319,10.7375,2594 +122,4,0,14.4016,12.9489,2603 +123,4,0,12.1918,10.6585,2602 +124,4,0,13.2153,10.8155,2619 +125,4,0,12.0857,10.4458,2600 +126,4,0,12.6023,10.7818,2600 +127,4,0,12.2343,10.3499,2594 +128,4,0,14.1514,10.5560,2594 +129,4,0,12.7122,11.2312,2599 +130,4,0,15.0825,13.5521,2607 +131,4,0,12.8755,10.9030,2605 +132,4,0,12.3183,10.8946,2596 +133,4,0,12.4628,10.1174,2594 +134,4,0,12.0627,10.6843,2594 +135,4,0,12.4056,10.5858,2594 +136,4,0,12.2287,10.9250,2594 +137,4,0,12.6102,10.6650,2594 +138,4,0,12.5736,9.9173,2604 +139,4,0,13.4899,11.6948,2594 +140,4,0,14.2430,12.7435,2594 +141,4,0,12.5325,10.3529,2599 +142,4,0,12.9361,10.6744,2594 +143,4,0,11.8893,10.7686,2594 +144,4,0,12.0226,11.0072,2594 +145,4,0,14.7314,12.9303,2604 +146,4,0,12.2425,10.9731,2594 +147,4,0,16.5237,15.9552,2594 +148,4,0,12.1430,10.9800,2594 +149,4,0,14.2665,12.9049,2601 +150,4,0,12.1852,10.7745,2601 +151,4,0,12.2595,10.5515,2594 +152,4,0,13.1300,11.4981,2606 +153,4,0,12.5343,11.0063,2594 +154,4,0,12.6764,11.0015,2594 +155,4,0,11.3513,10.5817,2594 +156,4,0,11.2070,10.4601,2594 +157,4,0,11.6131,10.6155,2594 +158,4,0,12.1922,10.9537,2594 +159,4,0,11.5217,10.6920,2594 +160,4,0,11.5726,10.4617,2594 +161,4,0,15.1384,13.5890,2594 +162,4,0,11.7949,10.3245,2594 +163,4,0,13.0282,11.2195,2598 +164,4,0,12.4999,11.3250,2594 +165,4,0,13.1800,11.8168,2594 +166,4,0,12.5148,10.9781,2594 +167,4,0,13.1168,11.3890,2594 +168,4,0,12.0293,11.0209,2594 +169,4,0,11.9485,10.8742,2594 +170,4,0,14.2561,10.2215,2594 +171,4,0,11.9277,10.6765,2594 +172,4,0,12.4720,10.7052,2594 +173,4,0,11.8250,9.8578,2594 +174,4,0,11.7607,10.1087,2594 +175,4,0,11.4363,10.0255,2594 +176,4,0,11.7365,10.0243,2594 +177,4,0,11.5145,10.5330,2594 +178,4,0,11.4042,10.3540,2594 +179,4,0,11.6130,10.1913,2594 +180,4,0,125.0624,43.5474,231707 +181,4,0,11.0369,10.4637,65901 +182,4,0,11.0246,10.4946,36886 +183,4,0,10.9406,10.4048,69404 +184,4,0,11.1280,10.4747,87864 +185,4,0,10.9979,10.4475,53700 +186,4,0,10.8148,10.3535,24415 +187,4,0,11.0382,10.6257,15407 +188,4,0,10.9731,10.3540,12151 +189,4,0,10.9122,10.4131,11449 +190,4,0,11.0919,10.5304,8599 +191,4,0,10.9024,10.4001,6107 +192,4,0,11.2827,10.7169,5132 +193,4,0,11.0181,10.4542,3880 +194,4,0,11.0274,10.4673,4001 +195,4,0,10.8610,10.4333,3860 +196,4,0,10.9304,10.4827,4045 +197,4,0,10.9347,10.4456,3955 +198,4,0,10.9391,10.4348,3721 +199,4,0,10.9967,10.5550,3748 +200,4,0,10.9465,10.4497,3386 +201,4,0,11.0071,10.5833,2761 +202,4,0,10.9493,10.4803,2750 +203,4,0,10.9920,10.4696,2836 +204,4,0,10.8927,10.3698,2977 +205,4,0,10.9717,10.3471,2960 +206,4,0,10.8239,10.2853,3010 +207,4,0,10.9165,10.4582,2978 +208,4,0,10.9735,10.4332,2889 +209,4,0,10.8310,10.2477,2914 +210,4,0,10.8909,10.4204,2847 +211,4,0,10.9591,10.4662,3111 +212,4,0,11.0216,10.4900,2714 +213,4,0,10.9987,10.3622,2843 +214,4,0,11.0329,10.4878,2633 +215,4,0,10.9362,10.4646,2659 +216,4,0,11.0699,10.4542,2696 +217,4,0,10.9367,10.3712,2728 +218,4,0,10.9015,10.3857,2772 +219,4,0,11.0178,10.5157,2740 +220,4,0,11.0890,10.5809,2809 +221,4,0,11.5697,10.1306,2679 +222,4,0,11.9505,10.1807,2865 +223,4,0,10.9595,10.4270,2612 +224,4,0,11.5314,10.3038,2626 +225,4,0,14.3294,13.6837,2693 +226,4,0,11.5589,10.5701,2708 +227,4,0,11.5101,9.6454,2765 +228,4,0,11.5821,10.4098,2645 +229,4,0,11.3572,10.0292,2733 +230,4,0,11.5196,10.4649,2667 +231,4,0,11.4027,9.6018,2647 +232,4,0,11.1645,10.5093,2659 +233,4,0,12.7305,12.0145,2757 +234,4,0,11.0259,10.4849,2656 +235,4,0,14.7931,14.2441,2594 +236,4,0,12.0720,10.6028,2603 +237,4,0,11.6740,10.3145,2605 +238,4,0,11.1282,10.4006,2610 +239,4,0,11.6141,9.8097,2641 +240,4,0,11.4170,9.7854,2637 +241,4,0,12.2402,11.5650,2691 +242,4,0,11.0247,10.4238,2620 +243,4,0,11.0236,10.4870,2614 +244,4,0,11.1249,10.5051,2666 +245,4,0,12.2384,11.5642,2613 +246,4,0,11.7651,10.2231,2624 +247,4,0,11.4875,9.9414,2612 +248,4,0,11.1391,10.5578,2687 +249,4,0,11.2081,10.4925,2622 +250,4,0,11.1316,10.4894,2623 +251,4,0,11.2054,10.5875,2647 +252,4,0,11.1658,10.6691,2645 +253,4,0,12.9599,10.2913,2643 +254,4,0,11.8918,10.6734,2635 +255,4,0,11.6249,10.3315,2718 +256,4,0,11.0775,10.4245,2602 +257,4,0,13.1390,12.5313,2605 +258,4,0,11.4241,10.7137,2612 +259,4,0,11.0312,10.3861,2607 +260,4,0,11.5215,10.7865,2630 +261,4,0,10.9777,10.4787,2617 +262,4,0,11.2327,10.5051,2661 +263,4,0,11.0904,10.4818,2606 +264,4,0,11.0920,10.4535,2609 +265,4,0,11.0807,10.5150,2612 +266,4,0,11.0559,10.5281,2632 +267,4,0,11.1422,10.4913,2606 +268,4,0,11.1318,10.4987,2610 +269,4,0,11.0770,10.4776,2652 +270,4,0,11.0897,10.4802,2594 +271,4,0,11.0443,10.5168,2609 +272,4,0,11.0358,10.4846,2598 +273,4,0,10.9985,10.3797,2613 +274,4,0,11.0737,10.5228,2618 +275,4,0,11.0476,10.4322,2604 +276,4,0,10.9852,10.4485,2677 +277,4,0,11.0260,10.4970,2620 +278,4,0,12.4418,11.8030,2594 +279,4,0,11.0868,10.4066,2594 +280,4,0,11.0859,10.5015,2598 +281,4,0,11.0385,10.4004,2609 +282,4,0,11.0572,10.5187,2616 +283,4,0,10.9769,10.3815,2630 +284,4,0,11.0769,10.4960,2606 +285,4,0,11.0488,10.4370,2604 +286,4,0,11.1644,10.3663,2609 +287,4,0,11.1307,10.4482,2610 +288,4,0,11.1382,10.5172,2652 +289,4,0,11.1444,10.5056,2600 +290,4,0,11.0386,10.4225,2640 +291,4,0,11.2009,10.5230,2594 +292,4,0,10.9860,10.4625,2594 +293,4,0,11.0610,10.4622,2600 +294,4,0,11.1725,10.4731,2599 +295,4,0,11.0509,10.4485,2607 +296,4,0,11.0427,10.4914,2603 +297,4,0,11.0439,10.4309,2623 +298,4,0,11.1133,10.4418,2600 +299,4,0,11.3218,10.6560,2610 +300,4,0,11.0875,10.4819,2594 +301,4,0,11.1796,10.5407,2594 +302,4,0,11.0613,10.5047,2603 +303,4,0,11.1026,10.4223,2602 +304,4,0,11.1090,10.4973,2619 +305,4,0,11.0170,10.4378,2600 +306,4,0,11.0795,10.5552,2600 +307,4,0,11.0890,10.4836,2594 +308,4,0,11.1616,10.4529,2594 +309,4,0,11.0310,10.4015,2599 +310,4,0,11.0375,10.4407,2607 +311,4,0,13.1470,12.5870,2605 +312,4,0,11.1564,10.4341,2596 +313,4,0,11.0563,10.3184,2594 +314,4,0,11.1218,10.5673,2594 +315,4,0,11.1182,10.5045,2594 +316,4,0,11.0501,10.5468,2594 +317,4,0,11.0523,10.5301,2594 +318,4,0,11.0915,10.4937,2604 +319,4,0,10.9947,10.3463,2594 +320,4,0,11.1817,10.4997,2594 +321,4,0,11.1256,10.5625,2599 +322,4,0,11.0038,10.4546,2594 +323,4,0,11.2377,10.6760,2594 +324,4,0,10.9603,10.3335,2594 +325,4,0,11.0951,10.5426,2604 +326,4,0,11.0791,10.5302,2594 +327,4,0,11.0343,10.4112,2594 +328,4,0,11.0285,10.4802,2594 +329,4,0,11.0253,10.4804,2601 +330,4,0,11.0947,10.5241,2601 +331,4,0,11.0902,10.4326,2594 +332,4,0,11.1867,10.5227,2606 +333,4,0,11.1557,10.4804,2594 +334,4,0,11.1127,10.3979,2594 +335,4,0,10.9534,10.4313,2594 +336,4,0,11.1435,10.6006,2594 +337,4,0,11.1280,10.4213,2594 +338,4,0,11.0332,10.4910,2594 +339,4,0,11.0142,10.2867,2594 +340,4,0,11.0713,10.4548,2594 +341,4,0,11.0625,10.3707,2594 +342,4,0,10.9963,10.4171,2594 +343,4,0,11.1137,10.3522,2598 +344,4,0,11.1693,10.4942,2594 +345,4,0,11.0815,10.4355,2594 +346,4,0,11.0759,10.4649,2594 +347,4,0,11.0496,10.3927,2594 +348,4,0,11.0782,10.5098,2594 +349,4,0,11.0947,10.4934,2594 +350,4,0,11.1026,10.5035,2594 +351,4,0,11.0247,10.4358,2594 +352,4,0,11.1356,10.4716,2594 +353,4,0,11.0630,10.5077,2594 +354,4,0,11.0973,10.4759,2594 +355,4,0,11.0450,10.5010,2594 +356,4,0,11.0903,10.5595,2594 +357,4,0,11.1570,10.5935,2594 +358,4,0,11.0923,10.4995,2594 +359,4,0,11.0940,10.5436,2594 +360,4,0,122.2396,45.4595,231707 +361,4,0,10.8848,10.3800,65901 +362,4,0,10.9235,10.2258,36886 +363,4,0,11.0286,10.5108,69404 +364,4,0,11.0295,10.5004,87864 +365,4,0,11.0256,10.3349,53700 +366,4,0,10.8671,10.3250,24415 +367,4,0,11.1075,10.5723,15407 +368,4,0,10.9570,10.2865,12151 +369,4,0,10.8766,10.3715,11449 +370,4,0,10.9756,10.4477,8599 +371,4,0,11.0340,10.3063,6107 +372,4,0,11.0624,10.4362,5132 +373,4,0,11.1184,10.4680,3880 +374,4,0,10.8894,10.3885,4001 +375,4,0,11.0832,10.5583,3860 +376,4,0,10.9481,10.3812,4045 +377,4,0,10.9477,10.3878,3955 +378,4,0,11.0867,10.4863,3721 +379,4,0,10.9217,10.3432,3748 +380,4,0,11.0837,10.5193,3386 +381,4,0,11.0855,10.4911,2761 +382,4,0,11.0644,10.4633,2750 +383,4,0,11.1218,10.4521,2836 +384,4,0,10.9443,10.3671,2977 +385,4,0,10.9770,10.5070,2960 +386,4,0,11.1521,10.5367,3010 +387,4,0,11.1199,10.5767,2978 +388,4,0,11.2660,10.2603,2889 +389,4,0,10.9987,10.3847,2914 +390,4,0,11.2089,10.3746,2847 +391,4,0,11.1671,10.5050,3111 +392,4,0,11.1691,10.5345,2714 +393,4,0,11.1388,10.3951,2843 +394,4,0,11.1438,10.5161,2633 +395,4,0,11.1602,10.5652,2659 +396,4,0,11.2075,10.6079,2696 +397,4,0,11.2171,10.5153,2728 +398,4,0,11.0510,10.4720,2772 +399,4,0,11.1879,10.4590,2740 +400,4,0,11.1810,10.5837,2809 +401,4,0,11.1454,10.5207,2679 +402,4,0,11.0809,10.4668,2865 +403,4,0,11.2106,10.5112,2612 +404,4,0,11.0340,10.4304,2626 +405,4,0,11.0925,10.4558,2693 +406,4,0,11.1025,10.4203,2708 +407,4,0,11.1995,10.5595,2765 +408,4,0,11.1942,10.4985,2645 +409,4,0,11.1113,10.5296,2733 +410,4,0,11.1479,10.4781,2667 +411,4,0,11.0116,10.4915,2647 +412,4,0,11.0482,10.4720,2659 +413,4,0,11.0778,10.5095,2757 +414,4,0,11.1226,10.5091,2656 +415,4,0,10.9855,10.4390,2594 +416,4,0,11.0985,10.4224,2603 +417,4,0,11.1152,10.4759,2605 +418,4,0,11.0745,10.4237,2610 +419,4,0,11.0725,10.3728,2641 +420,4,0,11.1033,10.4611,2637 +421,4,0,11.0212,10.3316,2691 +422,4,0,11.0342,10.4180,2620 +423,4,0,11.0425,10.4490,2614 +424,4,0,11.1086,10.3314,2666 +425,4,0,11.0916,10.4981,2613 +426,4,0,11.0260,10.5010,2624 +427,4,0,11.0793,10.4713,2612 +428,4,0,11.0441,10.4348,2687 +429,4,0,11.1274,10.5331,2622 +430,4,0,11.0855,10.3907,2623 +431,4,0,11.1240,10.5282,2647 +432,4,0,11.1631,10.5509,2645 +433,4,0,11.1333,10.5631,2643 +434,4,0,11.0864,10.4567,2635 +435,4,0,11.5823,10.9777,2718 +436,4,0,11.1152,10.5565,2602 +437,4,0,11.1078,10.4966,2605 +438,4,0,11.1480,10.5248,2612 +439,4,0,11.0544,10.4599,2607 +440,4,0,11.6568,10.1582,2630 +441,4,0,11.0368,10.4325,2617 +442,4,0,11.0469,10.4114,2661 +443,4,0,11.1852,10.5306,2606 +444,4,0,11.0672,10.4110,2609 +445,4,0,11.0130,10.4456,2612 +446,4,0,10.9223,10.3143,2632 +447,4,0,11.0826,10.4502,2606 +448,4,0,10.8953,10.2484,2610 +449,4,0,11.1019,10.3573,2652 +450,4,0,11.0391,10.4522,2594 +451,4,0,11.0326,10.4510,2609 +452,4,0,10.9975,10.3447,2598 +453,4,0,10.9733,10.4505,2613 +454,4,0,11.0022,10.3952,2618 +455,4,0,11.0990,10.4620,2604 +456,4,0,10.9751,10.3752,2677 +457,4,0,11.1393,10.4767,2620 +458,4,0,11.0479,10.4532,2594 +459,4,0,11.0682,10.3879,2594 +460,4,0,11.1132,10.4784,2598 +461,4,0,14.5824,14.0429,2609 +462,4,0,10.7946,10.1380,2616 +463,4,0,10.9849,10.3563,2630 +464,4,0,11.0333,10.4591,2606 +465,4,0,11.0805,10.4647,2604 +466,4,0,11.1669,10.3869,2609 +467,4,0,11.1183,10.5135,2610 +468,4,0,11.2451,10.5660,2652 +469,4,0,11.1214,10.5305,2600 +470,4,0,11.1511,10.5283,2640 +471,4,0,11.0463,10.3711,2594 +472,4,0,11.3635,10.4401,2594 +473,4,0,11.2294,10.4080,2600 +474,4,0,11.1139,10.5808,2599 +475,4,0,11.5305,10.1838,2607 +476,4,0,11.4660,9.4805,2603 +477,4,0,11.0808,10.4217,2623 +478,4,0,11.0699,10.4888,2600 +479,4,0,11.0537,10.4756,2610 +480,4,0,11.0474,10.4367,2594 +481,4,0,11.0332,10.4606,2594 +482,4,0,11.1753,10.5198,2603 +483,4,0,12.9707,12.4854,2602 +484,4,0,11.0623,10.3679,2619 +485,4,0,11.0177,10.3108,2600 +486,4,0,11.0735,10.4423,2600 +487,4,0,11.0324,10.3620,2594 +488,4,0,10.9914,10.4042,2594 +489,4,0,10.9901,10.3860,2599 +490,4,0,10.8245,10.2549,2607 +491,4,0,11.4170,10.8095,2605 +492,4,0,10.9929,10.4498,2596 +493,4,0,10.9972,10.3518,2594 +494,4,0,10.9253,10.3723,2594 +495,4,0,10.9748,10.3711,2594 +496,4,0,11.0461,10.4252,2594 +497,4,0,11.1129,10.5150,2594 +498,4,0,10.9650,10.3984,2604 +499,4,0,11.0512,10.4857,2594 +500,4,0,11.0520,10.4515,2594 +501,4,0,11.0932,10.4954,2599 +502,4,0,11.0679,10.4219,2594 +503,4,0,11.0838,10.4683,2594 +504,4,0,11.0805,10.4701,2594 +505,4,0,11.1441,10.5360,2604 +506,4,0,10.8530,10.3168,2594 +507,4,0,10.9884,10.4561,2594 +508,4,0,11.0701,10.3625,2594 +509,4,0,11.3454,10.4910,2601 +510,4,0,12.0085,11.2847,2601 +511,4,0,11.1615,10.4550,2594 +512,4,0,11.0920,10.5493,2606 +513,4,0,11.1040,10.4813,2594 +514,4,0,11.0299,10.4900,2594 +515,4,0,11.2568,10.6397,2594 +516,4,0,11.2459,10.4415,2594 +517,4,0,11.2800,10.5283,2594 +518,4,0,11.0841,10.4711,2594 +519,4,0,11.1694,10.5288,2594 +520,4,0,11.1092,10.3912,2594 +521,4,0,11.0871,10.4341,2594 +522,4,0,11.1180,10.4650,2594 +523,4,0,11.1517,10.5168,2598 +524,4,0,11.0518,10.5246,2594 +525,4,0,11.1268,10.4147,2594 +526,4,0,11.2275,10.5436,2594 +527,4,0,11.0579,10.5288,2594 +528,4,0,11.0397,10.4652,2594 +529,4,0,11.0282,10.4752,2594 +530,4,0,11.1683,10.4490,2594 +531,4,0,11.0990,10.0962,2594 +532,4,0,11.9242,11.2720,2594 +533,4,0,11.1575,10.3545,2594 +534,4,0,11.0501,10.3377,2594 +535,4,0,11.0726,10.4738,2594 +536,4,0,11.0827,10.4560,2594 +537,4,0,11.0169,10.3704,2594 +538,4,0,11.0963,10.3952,2594 +539,4,0,11.0720,10.4946,2594 +540,4,0,119.9662,41.1384,231707 +541,4,0,11.0895,10.4371,65901 +542,4,0,11.0585,10.4767,36886 +543,4,0,11.1054,10.4477,69404 +544,4,0,11.0472,10.4346,87864 +545,4,0,10.9716,10.4053,53700 +546,4,0,10.9701,10.4051,24415 +547,4,0,11.0724,10.3632,15407 +548,4,0,11.0989,10.3748,12151 +549,4,0,10.9904,10.4967,11449 +550,4,0,11.1423,10.4468,8599 +551,4,0,10.9892,10.4342,6107 +552,4,0,11.0766,10.3640,5132 +553,4,0,11.0055,10.3959,3880 +554,4,0,11.0367,10.4462,4001 +555,4,0,11.0441,10.4451,3860 +556,4,0,11.0000,10.5132,4045 +557,4,0,11.0581,10.3921,3955 +558,4,0,10.9944,10.4286,3721 +559,4,0,10.9971,10.4031,3748 +560,4,0,11.0458,10.3885,3386 +561,4,0,10.9655,10.3776,2761 +562,4,0,11.1245,10.4948,2750 +563,4,0,11.0953,10.4541,2836 +564,4,0,10.9680,10.4764,2977 +565,4,0,11.0790,10.4092,2960 +566,4,0,10.9835,10.3897,3010 +567,4,0,10.9608,10.4384,2978 +568,4,0,10.9126,10.2513,2889 +569,4,0,11.0430,10.4003,2914 +570,4,0,11.2758,10.5662,2847 +571,4,0,11.0123,10.3636,3111 +572,4,0,11.0185,10.4068,2714 +573,4,0,11.0843,10.4097,2843 +574,4,0,11.0250,10.4879,2633 +575,4,0,11.0351,10.3963,2659 +576,4,0,11.0905,10.4060,2696 +577,4,0,11.0638,10.4630,2728 +578,4,0,11.1414,10.5834,2772 +579,4,0,11.1578,10.5041,2740 +580,4,0,11.0826,10.4102,2809 +581,4,0,11.0263,10.4283,2679 +582,4,0,11.1138,10.3772,2865 +583,4,0,11.0736,10.3631,2612 +584,4,0,11.0165,10.5241,2626 +585,4,0,11.0304,10.4231,2693 +586,4,0,10.9703,10.4897,2708 +587,4,0,11.0836,10.4677,2765 +588,4,0,11.0627,10.4250,2645 +589,4,0,10.9811,10.4287,2733 +590,4,0,11.0178,10.3579,2667 +591,4,0,11.0695,10.5065,2647 +592,4,0,11.0591,10.4972,2659 +593,4,0,11.0466,10.3747,2757 +594,4,0,11.0963,10.3191,2656 +595,4,0,10.9966,10.4121,2594 +596,4,0,12.0245,11.5002,2603 +597,4,0,10.9941,10.4024,2605 +598,4,0,11.0597,10.3319,2610 +599,4,0,10.9526,10.4388,2641 +600,4,0,11.0642,10.4284,2637 +601,4,0,10.9797,10.4216,2691 +602,4,0,11.1009,10.3644,2620 +603,4,0,11.0575,10.4072,2614 +604,4,0,11.0068,10.4215,2666 +605,4,0,11.0560,10.5110,2613 +606,4,0,10.9935,10.3879,2624 +607,4,0,11.0334,10.3647,2612 +608,4,0,11.0991,10.3805,2687 +609,4,0,10.9869,10.3665,2622 +610,4,0,11.0318,10.3709,2623 +611,4,0,11.0530,10.3562,2647 +612,4,0,11.0539,10.4778,2645 +613,4,0,11.1026,10.3859,2643 +614,4,0,11.0747,10.3669,2635 +615,4,0,11.0170,10.3540,2718 +616,4,0,10.9848,10.3994,2602 +617,4,0,11.0254,10.3914,2605 +618,4,0,11.0592,10.3370,2612 +619,4,0,11.0866,10.5081,2607 +620,4,0,11.0407,10.3711,2630 +621,4,0,11.0100,10.4177,2617 +622,4,0,11.0028,10.3902,2661 +623,4,0,10.9186,10.3076,2606 +624,4,0,11.0057,10.3563,2609 +625,4,0,10.9570,10.3938,2612 +626,4,0,10.9431,10.3774,2632 +627,4,0,10.9915,10.3450,2606 +628,4,0,11.0722,10.3663,2610 +629,4,0,11.0880,10.3921,2652 +630,4,0,10.9637,10.3657,2594 +631,4,0,11.0628,10.5044,2609 +632,4,0,11.0021,10.3682,2598 +633,4,0,11.0936,10.4920,2613 +634,4,0,11.0492,10.3920,2618 +635,4,0,11.3656,10.7756,2604 +636,4,0,11.0567,10.4729,2677 +637,4,0,11.2148,10.4138,2620 +638,4,0,11.0635,10.5334,2594 +639,4,0,11.0612,10.3298,2594 +640,4,0,10.9523,10.3614,2598 +641,4,0,11.0840,10.4018,2609 +642,4,0,11.0688,10.3814,2616 +643,4,0,10.9909,10.4009,2630 +644,4,0,10.9936,10.3839,2606 +645,4,0,10.8822,10.3566,2604 +646,4,0,11.0885,10.4615,2609 +647,4,0,10.9983,10.4306,2610 +648,4,0,11.0598,10.3497,2652 +649,4,0,11.0416,10.4447,2600 +650,4,0,11.0984,10.3338,2640 +651,4,0,10.9665,10.3796,2594 +652,4,0,10.9967,10.3823,2594 +653,4,0,11.0648,10.3480,2600 +654,4,0,11.0144,10.3885,2599 +655,4,0,11.0418,10.4237,2607 +656,4,0,11.0719,10.3761,2603 +657,4,0,11.0137,10.4764,2623 +658,4,0,11.0515,10.4445,2600 +659,4,0,11.0042,10.4557,2610 +660,4,0,11.0345,10.4020,2594 +661,4,0,11.1030,10.3867,2594 +662,4,0,11.0020,10.4365,2603 +663,4,0,11.0747,10.4394,2602 +664,4,0,11.0865,10.4514,2619 +665,4,0,11.0890,10.4102,2600 +666,4,0,11.0185,10.3727,2600 +667,4,0,11.0747,10.3697,2594 +668,4,0,11.0437,10.4329,2594 +669,4,0,11.0353,10.3875,2599 +670,4,0,11.0390,10.3735,2607 +671,4,0,11.0302,10.4831,2605 +672,4,0,11.1177,10.3891,2596 +673,4,0,11.0613,10.4715,2594 +674,4,0,10.9623,10.3108,2594 +675,4,0,10.9514,10.3644,2594 +676,4,0,11.0055,10.3870,2594 +677,4,0,11.0299,10.3721,2594 +678,4,0,11.0572,10.3585,2604 +679,4,0,11.0866,10.4623,2594 +680,4,0,11.0098,10.3766,2594 +681,4,0,11.0720,10.4625,2599 +682,4,0,11.0416,10.2923,2594 +683,4,0,10.9826,10.4112,2594 +684,4,0,11.1576,10.5162,2594 +685,4,0,11.0192,10.4893,2604 +686,4,0,10.9649,10.4210,2594 +687,4,0,10.8923,10.4438,2594 +688,4,0,10.8734,10.4568,2594 +689,4,0,10.8113,10.3798,2601 +690,4,0,10.8398,10.3285,2601 +691,4,0,11.0325,10.2294,2594 +692,4,0,11.0430,10.3789,2606 +693,4,0,10.9264,10.3831,2594 +694,4,0,10.9619,10.3410,2594 +695,4,0,11.1367,10.5347,2594 +696,4,0,11.1320,10.4985,2594 +697,4,0,11.1998,10.6121,2594 +698,4,0,11.9122,10.9575,2594 +699,4,0,11.7184,10.5831,2594 +700,4,0,11.0286,10.3942,2594 +701,4,0,11.0525,10.4448,2594 +702,4,0,12.0510,11.1390,2594 +703,4,0,11.3123,10.2625,2598 +704,4,0,11.3702,10.4931,2594 +705,4,0,11.4352,10.4811,2594 +706,4,0,11.4362,10.1657,2594 +707,4,0,13.4177,12.5352,2594 +708,4,0,11.0458,10.4190,2594 +709,4,0,11.4078,10.1558,2594 +710,4,0,11.4617,10.5172,2594 +711,4,0,12.9813,12.0866,2594 +712,4,0,11.6405,10.7011,2594 +713,4,0,11.3203,10.2901,2594 +714,4,0,11.3608,10.5831,2594 +715,4,0,11.5853,10.3008,2594 +716,4,0,11.7709,10.6793,2594 +717,4,0,11.2010,9.4883,2594 +718,4,0,11.5343,10.1902,2594 +719,4,0,11.5515,10.6635,2594 +720,4,0,117.0550,33.2378,231707 +721,4,0,10.9584,10.4110,65901 +722,4,0,11.0540,10.4406,36886 +723,4,0,10.9294,10.4380,69404 +724,4,0,10.9494,10.4132,87864 +725,4,0,11.0067,10.5156,53700 +726,4,0,10.9102,10.4750,24415 +727,4,0,10.8641,10.3465,15407 +728,4,0,10.9319,10.4165,12151 +729,4,0,11.0140,10.4760,11449 +730,4,0,10.9454,10.3765,8599 +731,4,0,10.9403,10.3355,6107 +732,4,0,10.9911,10.3358,5132 +733,4,0,10.9987,10.3764,3880 +734,4,0,10.9175,10.3850,4001 +735,4,0,10.9444,10.3990,3860 +736,4,0,11.0093,10.4999,4045 +737,4,0,10.8808,10.3299,3955 +738,4,0,10.9840,10.3517,3721 +739,4,0,10.9787,10.3922,3748 +740,4,0,10.9631,10.3540,3386 +741,4,0,11.1950,10.2517,2761 +742,4,0,10.8417,10.3425,2750 +743,4,0,10.9470,10.3443,2836 +744,4,0,10.9827,10.3886,2977 +745,4,0,10.9477,10.4241,2960 +746,4,0,10.8940,10.3817,3010 +747,4,0,11.2910,10.5970,2978 +748,4,0,10.9846,10.3345,2889 +749,4,0,11.0116,10.4300,2914 +750,4,0,10.9189,10.3823,2847 +751,4,0,10.9503,10.3994,3111 +752,4,0,11.0397,10.3645,2714 +753,4,0,11.1938,10.3521,2843 +754,4,0,11.0136,10.3950,2633 +755,4,0,11.0430,10.4945,2659 +756,4,0,10.9906,10.4320,2696 +757,4,0,11.3137,10.6985,2728 +758,4,0,11.2640,10.3836,2772 +759,4,0,11.7484,10.2515,2740 +760,4,0,11.4046,10.4772,2809 +761,4,0,11.9040,10.7394,2679 +762,4,0,11.7511,10.0358,2865 +763,4,0,11.5258,10.3640,2612 +764,4,0,11.6522,10.1420,2626 +765,4,0,11.9161,10.1445,2693 +766,4,0,11.4036,10.2070,2708 +767,4,0,11.0302,10.5489,2765 +768,4,0,11.2727,10.4814,2645 +769,4,0,11.1097,10.3939,2733 +770,4,0,11.1205,10.4794,2667 +771,4,0,11.0475,10.4742,2647 +772,4,0,11.1527,10.4875,2659 +773,4,0,10.9834,10.4685,2757 +774,4,0,11.1633,10.4198,2656 +775,4,0,11.0820,10.3906,2594 +776,4,0,11.0106,10.3542,2603 +777,4,0,11.0510,10.4055,2605 +778,4,0,10.9882,10.4173,2610 +779,4,0,10.9595,10.4461,2641 +780,4,0,11.0243,10.3639,2637 +781,4,0,10.9703,10.3685,2691 +782,4,0,11.0029,10.4188,2620 +783,4,0,11.0091,10.2887,2614 +784,4,0,10.9662,10.3955,2666 +785,4,0,11.1443,10.4457,2613 +786,4,0,11.0910,10.5004,2624 +787,4,0,10.9166,10.3956,2612 +788,4,0,13.1092,12.5842,2687 +789,4,0,12.6231,12.0635,2622 +790,4,0,11.0562,10.5094,2623 +791,4,0,10.9908,10.4455,2647 +792,4,0,11.1743,10.6292,2645 +793,4,0,10.9445,10.4724,2643 +794,4,0,10.9146,10.4216,2635 +795,4,0,10.9998,10.4050,2718 +796,4,0,10.9614,10.3510,2602 +797,4,0,10.8965,10.3767,2605 +798,4,0,10.8940,10.3551,2612 +799,4,0,11.0342,10.4149,2607 +800,4,0,11.5062,10.3065,2630 +801,4,0,13.1795,9.5114,2617 +802,4,0,11.6590,10.4763,2661 +803,4,0,13.8973,13.3505,2606 +804,4,0,11.3212,10.3843,2609 +805,4,0,11.4977,10.1114,2612 +806,4,0,11.0008,10.3581,2632 +807,4,0,11.1634,10.4953,2606 +808,4,0,11.4023,10.2925,2610 +809,4,0,11.3554,10.3034,2652 +810,4,0,11.6707,10.1356,2594 +811,4,0,11.5567,10.0406,2609 +812,4,0,11.5450,10.0544,2598 +813,4,0,11.4566,10.2958,2613 +814,4,0,12.0135,10.5218,2618 +815,4,0,11.9648,10.5717,2604 +816,4,0,11.6215,10.6438,2677 +817,4,0,11.6193,10.6730,2620 +818,4,0,11.5105,10.3489,2594 +819,4,0,11.1082,10.3458,2594 +820,4,0,11.1179,10.4918,2598 +821,4,0,11.1536,10.5507,2609 +822,4,0,11.0882,10.4948,2616 +823,4,0,11.1743,10.5582,2630 +824,4,0,11.0788,10.4335,2606 +825,4,0,11.1220,10.3646,2604 +826,4,0,11.3261,10.5949,2609 +827,4,0,11.1315,10.4695,2610 +828,4,0,11.2266,10.6048,2652 +829,4,0,11.5388,10.5341,2600 +830,4,0,11.6923,10.0934,2640 +831,4,0,11.3415,10.5095,2594 +832,4,0,11.4758,10.6215,2594 +833,4,0,11.3813,10.2586,2600 +834,4,0,11.3462,10.0848,2599 +835,4,0,12.3336,10.5690,2607 +836,4,0,11.7532,10.1948,2603 +837,4,0,12.7692,11.7547,2623 +838,4,0,11.2792,10.3882,2600 +839,4,0,11.5929,10.5049,2610 +840,4,0,11.6452,9.9874,2594 +841,4,0,11.5454,10.2655,2594 +842,4,0,11.5041,9.9173,2603 +843,4,0,11.4649,10.3137,2602 +844,4,0,12.5245,10.9525,2619 +845,4,0,11.2584,10.5084,2600 +846,4,0,11.9186,10.2572,2600 +847,4,0,11.8794,10.9860,2594 +848,4,0,11.6451,10.7253,2594 +849,4,0,11.7561,10.4521,2599 +850,4,0,11.3346,10.2716,2607 +851,4,0,11.5654,10.0139,2605 +852,4,0,11.5533,10.2808,2596 +853,4,0,12.5588,11.5512,2594 +854,4,0,11.4135,10.1580,2594 +855,4,0,11.3186,10.2616,2594 +856,4,0,11.4551,10.6191,2594 +857,4,0,11.5485,10.4234,2594 +858,4,0,11.4155,10.4975,2604 +859,4,0,11.6045,10.4389,2594 +860,4,0,11.4205,10.2168,2594 +861,4,0,11.5842,10.4078,2599 +862,4,0,12.6390,11.2867,2594 +863,4,0,11.1914,10.4083,2594 +864,4,0,11.6433,10.2085,2594 +865,4,0,11.3602,10.2730,2604 +866,4,0,11.4838,10.2854,2594 +867,4,0,11.2863,10.4831,2594 +868,4,0,11.6696,10.0632,2594 +869,4,0,11.8592,9.6103,2601 +870,4,0,11.2819,10.2287,2601 +871,4,0,11.2945,10.3846,2594 +872,4,0,11.2621,10.1853,2606 +873,4,0,11.2413,10.3383,2594 +874,4,0,18.2508,17.4094,2594 +875,4,0,11.3421,10.4852,2594 +876,4,0,11.4272,10.5531,2594 +877,4,0,11.2445,10.3927,2594 +878,4,0,12.1227,10.2397,2594 +879,4,0,11.3901,10.5762,2594 +880,4,0,11.6970,10.7640,2594 +881,4,0,11.6116,10.1593,2594 +882,4,0,12.0437,10.7054,2594 +883,4,0,14.9572,10.0988,2598 +884,4,0,11.0056,10.4684,2594 +885,4,0,11.2073,10.6394,2594 +886,4,0,11.7492,10.1254,2594 +887,4,0,12.9173,10.1234,2594 +888,4,0,11.3792,10.3911,2594 +889,4,0,12.0656,9.9708,2594 +890,4,0,11.6970,8.9334,2594 +891,4,0,11.4097,10.1962,2594 +892,4,0,11.8748,9.9814,2594 +893,4,0,11.5259,10.5361,2594 +894,4,0,12.6691,11.7454,2594 +895,4,0,11.6704,10.6269,2594 +896,4,0,11.5292,10.5346,2594 +897,4,0,11.4061,10.4907,2594 +898,4,0,11.2762,10.3970,2594 +899,4,0,11.7758,10.7555,2594 +900,4,0,119.9569,42.2825,231707 +901,4,0,11.0837,10.4577,65901 +902,4,0,10.9498,10.4096,36886 +903,4,0,10.9917,10.4453,69404 +904,4,0,11.1092,10.5650,87864 +905,4,0,11.0830,10.4262,53700 +906,4,0,10.9690,10.3638,24415 +907,4,0,10.9598,10.4427,15407 +908,4,0,10.9450,10.4478,12151 +909,4,0,10.9686,10.4313,11449 +910,4,0,10.9946,10.5220,8599 +911,4,0,10.9464,10.4274,6107 +912,4,0,10.9537,10.3913,5132 +913,4,0,10.9266,10.3994,3880 +914,4,0,11.0342,10.3183,4001 +915,4,0,10.9636,10.3885,3860 +916,4,0,10.9427,10.3993,4045 +917,4,0,10.9122,10.4231,3955 +918,4,0,10.9990,10.3831,3721 +919,4,0,10.9610,10.3925,3748 +920,4,0,10.9228,10.4321,3386 +921,4,0,10.8409,10.3310,2761 +922,4,0,11.0182,10.4180,2750 +923,4,0,10.9419,10.3750,2836 +924,4,0,11.0202,10.4376,2977 +925,4,0,10.9994,10.3959,2960 +926,4,0,11.0059,10.4440,3010 +927,4,0,10.9527,10.4039,2978 +928,4,0,10.9477,10.3841,2889 +929,4,0,10.9891,10.4202,2914 +930,4,0,10.9990,10.4088,2847 +931,4,0,10.8992,10.3627,3111 +932,4,0,10.9832,10.4049,2714 +933,4,0,11.1498,10.5594,2843 +934,4,0,11.0671,10.4029,2633 +935,4,0,11.0183,10.4990,2659 +936,4,0,11.1905,10.5192,2696 +937,4,0,11.2136,10.5492,2728 +938,4,0,11.0217,10.4076,2772 +939,4,0,10.9819,10.3978,2740 +940,4,0,11.0100,10.4950,2809 +941,4,0,11.0297,10.4991,2679 +942,4,0,11.4834,10.3426,2865 +943,4,0,11.5733,10.2948,2612 +944,4,0,11.5928,10.1305,2626 +945,4,0,11.2471,10.4235,2693 +946,4,0,11.5793,10.5835,2708 +947,4,0,11.4738,10.6520,2765 +948,4,0,11.3934,10.4281,2645 +949,4,0,11.9450,11.0044,2733 +950,4,0,11.5023,10.2832,2667 +951,4,0,11.9356,10.4029,2647 +952,4,0,11.7395,10.3168,2659 +953,4,0,11.5215,10.6350,2757 +954,4,0,11.7797,10.7067,2656 +955,4,0,11.3895,10.0182,2594 +956,4,0,12.2233,9.8943,2603 +957,4,0,11.6358,10.4165,2605 +958,4,0,15.8230,14.8383,2610 +959,4,0,11.5996,10.2880,2641 +960,4,0,11.7642,10.1916,2637 +961,4,0,11.5562,10.5772,2691 +962,4,0,11.4458,10.5288,2620 +963,4,0,12.4682,11.1392,2614 +964,4,0,11.8822,10.5190,2666 +965,4,0,11.9347,10.0459,2613 +966,4,0,11.8259,10.4342,2624 +967,4,0,11.3102,10.5617,2612 +968,4,0,11.4618,10.0219,2687 +969,4,0,11.8201,10.4724,2622 +970,4,0,11.4433,10.1203,2623 +971,4,0,11.3825,10.6187,2647 +972,4,0,12.3450,11.1047,2645 +973,4,0,11.2656,10.4298,2643 +974,4,0,11.3139,10.4278,2635 +975,4,0,16.2043,10.3484,2718 +976,4,0,10.9790,10.3138,2602 +977,4,0,11.0103,10.4115,2605 +978,4,0,11.1396,10.5487,2612 +979,4,0,11.7987,10.0722,2607 +980,4,0,11.6420,10.1478,2630 +981,4,0,11.8344,10.1515,2617 +982,4,0,11.9588,10.6395,2661 +983,4,0,11.1064,10.4910,2606 +984,4,0,11.6711,10.6187,2609 +985,4,0,11.6744,10.4166,2612 +986,4,0,11.8182,10.5250,2632 +987,4,0,11.6197,10.0839,2606 +988,4,0,11.7606,10.0844,2610 +989,4,0,11.9325,10.8209,2652 +990,4,0,11.6189,10.0368,2594 +991,4,0,11.7182,9.9628,2609 +992,4,0,11.8271,10.2604,2598 +993,4,0,11.6168,10.4653,2613 +994,4,0,11.6635,10.4426,2618 +995,4,0,11.5542,10.2555,2604 +996,4,0,12.0433,10.3507,2677 +997,4,0,11.8698,10.2378,2620 +998,4,0,11.7747,10.2510,2594 +999,4,0,11.1140,10.3286,2594 +1000,4,0,10.9961,10.3734,2598 +1001,4,0,11.0751,10.4053,2609 +1002,4,0,11.0110,10.3520,2616 +1003,4,0,11.0025,10.3408,2630 +1004,4,0,11.0059,10.4089,2606 +1005,4,0,11.0965,10.4708,2604 +1006,4,0,10.9272,10.3787,2609 +1007,4,0,11.1671,10.5396,2610 +1008,4,0,11.2103,10.5717,2652 +1009,4,0,11.1730,10.3880,2600 +1010,4,0,11.0035,10.4130,2640 +1011,4,0,11.0449,10.3567,2594 +1012,4,0,10.9697,10.3715,2594 +1013,4,0,10.9576,10.4652,2600 +1014,4,0,11.0594,10.2843,2599 +1015,4,0,11.0310,10.5072,2607 +1016,4,0,11.0483,10.4747,2603 +1017,4,0,10.9735,10.3944,2623 +1018,4,0,10.8408,10.3909,2600 +1019,4,0,10.9350,10.4326,2610 +1020,4,0,10.9788,10.3915,2594 +1021,4,0,10.9242,10.3628,2594 +1022,4,0,10.9766,10.3010,2603 +1023,4,0,11.0342,10.3471,2602 +1024,4,0,10.9934,10.4551,2619 +1025,4,0,11.0382,10.4692,2600 +1026,4,0,10.9072,10.3421,2600 +1027,4,0,10.9489,10.3611,2594 +1028,4,0,10.9855,10.5071,2594 +1029,4,0,11.4183,10.5128,2599 +1030,4,0,11.5121,9.9657,2607 +1031,4,0,11.5388,10.0770,2605 +1032,4,0,11.7705,10.0995,2596 +1033,4,0,12.3046,11.0422,2594 +1034,4,0,11.3600,10.4563,2594 +1035,4,0,11.6508,10.1672,2594 +1036,4,0,11.4109,10.2505,2594 +1037,4,0,11.8293,10.2658,2594 +1038,4,0,12.3503,6.9183,2604 +1039,4,0,11.5724,10.4441,2594 +1040,4,0,11.6403,10.1314,2594 +1041,4,0,11.5675,9.9938,2599 +1042,4,0,11.6225,10.0899,2594 +1043,4,0,10.9188,10.3770,2594 +1044,4,0,11.6626,10.7681,2594 +1045,4,0,11.2071,10.3280,2604 +1046,4,0,10.9840,10.4162,2594 +1047,4,0,11.0271,10.3870,2594 +1048,4,0,10.9166,10.3124,2594 +1049,4,0,11.0406,10.4723,2601 +1050,4,0,11.0157,10.2764,2601 +1051,4,0,10.8561,10.3889,2594 +1052,4,0,11.0500,10.3551,2606 +1053,4,0,12.2765,11.8044,2594 +1054,4,0,11.7722,9.9706,2594 +1055,4,0,12.2797,9.6327,2594 +1056,4,0,11.3631,10.1918,2594 +1057,4,0,11.8368,10.1953,2594 +1058,4,0,11.6194,10.0496,2594 +1059,4,0,11.3998,10.5793,2594 +1060,4,0,11.3568,10.0015,2594 +1061,4,0,11.6323,10.1366,2594 +1062,4,0,11.6126,10.1720,2594 +1063,4,0,11.5880,9.9962,2598 +1064,4,0,11.7034,10.1191,2594 +1065,4,0,11.3805,10.6777,2594 +1066,4,0,11.7268,10.4184,2594 +1067,4,0,11.6696,10.2395,2594 +1068,4,0,11.4009,10.2703,2594 +1069,4,0,11.2500,10.5480,2594 +1070,4,0,11.6677,10.9328,2594 +1071,4,0,11.4682,9.9722,2594 +1072,4,0,11.5130,10.6575,2594 +1073,4,0,11.7073,10.1073,2594 +1074,4,0,11.4490,10.2830,2594 +1075,4,0,11.2128,10.3377,2594 +1076,4,0,12.0593,10.2227,2594 +1077,4,0,11.6322,10.4020,2594 +1078,4,0,11.2375,10.3318,2594 +1079,4,0,11.6607,10.2601,2594 +1080,4,0,131.5817,48.0403,231707 +1081,4,0,10.9596,10.4252,65901 +1082,4,0,11.0288,10.4175,36886 +1083,4,0,11.0139,10.4757,69404 +1084,4,0,10.8509,10.3445,87864 +1085,4,0,10.9025,10.4795,53700 +1086,4,0,10.9324,10.4393,24415 +1087,4,0,11.1031,10.4413,15407 +1088,4,0,11.0858,10.4648,12151 +1089,4,0,10.9433,10.5116,11449 +1090,4,0,10.9134,10.4622,8599 +1091,4,0,10.9812,10.4585,6107 +1092,4,0,10.8810,10.4530,5132 +1093,4,0,10.8847,10.4871,3880 +1094,4,0,10.8600,10.4437,4001 +1095,4,0,10.9548,10.5188,3860 +1096,4,0,10.7513,10.3666,4045 +1097,4,0,11.1222,10.2513,3955 +1098,4,0,10.9472,10.3963,3721 +1099,4,0,11.0184,10.3319,3748 +1100,4,0,10.7543,10.2455,3386 +1101,4,0,11.1672,10.5155,2761 +1102,4,0,11.0637,10.5927,2750 +1103,4,0,10.8841,10.4162,2836 +1104,4,0,11.0002,10.5329,2977 +1105,4,0,11.0198,10.5832,2960 +1106,4,0,10.8742,10.4088,3010 +1107,4,0,10.8224,10.3532,2978 +1108,4,0,10.7817,10.3830,2889 +1109,4,0,10.9443,10.4175,2914 +1110,4,0,10.8965,10.3249,2847 +1111,4,0,11.0427,10.4374,3111 +1112,4,0,11.0196,10.3784,2714 +1113,4,0,11.4703,10.6480,2843 +1114,4,0,11.6867,10.0237,2633 +1115,4,0,12.5334,10.1346,2659 +1116,4,0,11.4563,10.6050,2696 +1117,4,0,11.1134,10.2668,2728 +1118,4,0,11.4868,10.6282,2772 +1119,4,0,10.9458,10.3782,2740 +1120,4,0,11.0220,10.4279,2809 +1121,4,0,11.0805,10.3883,2679 +1122,4,0,10.9272,10.4772,2865 +1123,4,0,10.9232,10.3633,2612 +1124,4,0,10.8530,10.3203,2626 +1125,4,0,10.8256,10.3407,2693 +1126,4,0,10.8845,10.2398,2708 +1127,4,0,10.8433,10.3373,2765 +1128,4,0,10.9125,10.2750,2645 +1129,4,0,10.9647,10.3694,2733 +1130,4,0,10.8814,10.2877,2667 +1131,4,0,11.1798,10.3947,2647 +1132,4,0,10.9776,10.3896,2659 +1133,4,0,10.8836,10.3083,2757 +1134,4,0,10.8609,10.2620,2656 +1135,4,0,10.9648,10.3706,2594 +1136,4,0,11.4756,10.5664,2603 +1137,4,0,10.8618,10.2867,2605 +1138,4,0,10.8939,10.3967,2610 +1139,4,0,10.8174,10.3770,2641 +1140,4,0,11.1590,10.7183,2637 +1141,4,0,11.2929,10.6783,2691 +1142,4,0,10.8562,10.3277,2620 +1143,4,0,11.0147,10.4896,2614 +1144,4,0,11.0781,10.5467,2666 +1145,4,0,11.2517,10.6131,2613 +1146,4,0,10.9881,10.3426,2624 +1147,4,0,11.1175,10.4996,2612 +1148,4,0,11.9865,10.1415,2687 +1149,4,0,12.1227,10.1258,2622 +1150,4,0,11.7239,9.7303,2623 +1151,4,0,12.0925,10.1922,2647 +1152,4,0,12.3370,10.0038,2645 +1153,4,0,11.9167,10.0965,2643 +1154,4,0,12.2287,10.1856,2635 +1155,4,0,11.8781,10.0370,2718 +1156,4,0,11.9117,10.1508,2602 +1157,4,0,11.9472,10.0735,2605 +1158,4,0,13.9292,12.3315,2612 +1159,4,0,11.4000,10.5049,2607 +1160,4,0,11.7184,10.3271,2630 +1161,4,0,11.8432,10.1835,2617 +1162,4,0,11.1988,10.3704,2661 +1163,4,0,10.7970,10.2689,2606 +1164,4,0,10.9689,10.4280,2609 +1165,4,0,10.8407,10.4199,2612 +1166,4,0,10.8961,10.4096,2632 +1167,4,0,10.8466,10.2889,2606 +1168,4,0,10.8962,10.3851,2610 +1169,4,0,10.9722,10.4733,2652 +1170,4,0,10.9607,10.3931,2594 +1171,4,0,10.8894,10.4544,2609 +1172,4,0,10.8050,10.4375,2598 +1173,4,0,10.8692,10.4238,2613 +1174,4,0,10.8401,10.3809,2618 +1175,4,0,10.7923,10.3846,2604 +1176,4,0,10.9174,10.4720,2677 +1177,4,0,10.9038,10.3981,2620 +1178,4,0,10.8435,10.3682,2594 +1179,4,0,10.8691,10.2858,2594 +1180,4,0,10.9988,10.3695,2598 +1181,4,0,10.9952,10.3815,2609 +1182,4,0,11.4847,10.6797,2616 +1183,4,0,11.6746,10.1554,2630 +1184,4,0,11.9904,10.0035,2606 +1185,4,0,11.8994,10.1058,2604 +1186,4,0,11.2761,10.4637,2609 +1187,4,0,11.0000,10.3306,2610 +1188,4,0,11.1203,10.3767,2652 +1189,4,0,10.9095,10.2814,2600 +1190,4,0,10.8273,10.2939,2640 +1191,4,0,10.9682,10.3378,2594 +1192,4,0,10.9180,10.2026,2594 +1193,4,0,11.8381,10.5240,2600 +1194,4,0,12.2691,10.7342,2599 +1195,4,0,12.0367,10.1425,2607 +1196,4,0,13.8535,11.7435,2603 +1197,4,0,11.9850,10.5416,2623 +1198,4,0,12.4941,10.6882,2600 +1199,4,0,12.1778,10.7623,2610 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.csv new file mode 100644 index 0000000..2131583 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.csv @@ -0,0 +1,4801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2804,28.9803,0.0276,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8706,24.6016,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8226,25.4803,0.0101,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8108,26.3591,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.2804,5.8021,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8706,5.6474,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8226,10.6516,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8108,10.6655,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.2804,5.6518,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8706,5.5780,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8226,10.4097,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8108,10.4255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.2804,5.6766,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8706,5.6012,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8226,10.4303,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8108,10.4055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.2804,5.6145,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8706,5.4840,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8226,10.3944,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8108,10.3641,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.2804,5.6403,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8706,5.5407,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8226,10.4321,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8108,10.3379,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.2804,5.8104,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8706,5.5530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8226,10.3100,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8108,10.2977,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.2804,5.6593,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8706,5.5058,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8226,10.3750,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8108,10.3745,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.2804,5.6680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8706,5.4926,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8226,10.3663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8108,10.3233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.2804,5.7121,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8706,5.5845,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8226,10.5764,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8108,10.5430,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.2804,6.0170,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8706,5.7040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8226,10.6657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8108,10.6397,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.2804,5.6510,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8706,5.4982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8226,10.3963,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8108,10.4072,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.2804,5.7102,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8706,5.4977,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8226,10.4572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8108,10.3961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.2804,5.7210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8706,5.5424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8226,10.3591,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8108,10.4246,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.2804,5.7162,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8706,5.5302,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8226,10.4248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8108,10.3841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.2804,5.6515,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8706,5.5332,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8226,10.2179,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8108,10.1663,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.2804,5.7136,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8706,5.6182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8226,10.4322,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8108,10.4795,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.2804,6.3571,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8706,6.0495,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8226,10.8028,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8108,10.6098,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.2804,6.5659,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8706,5.7867,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8226,10.1716,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8108,10.0247,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.2804,6.3181,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8706,5.8521,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8226,10.3605,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8108,10.1159,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.2804,6.5510,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8706,5.7644,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8226,10.1664,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8108,9.9544,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.2804,6.5045,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8706,5.8282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8226,10.3450,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8108,10.2053,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.2804,6.4893,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8706,5.7765,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8226,10.2050,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8108,9.9326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.2804,6.6783,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8706,5.8938,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8226,10.2419,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8108,9.9964,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.2804,6.4312,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8706,5.8374,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8226,10.1945,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8108,9.9785,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.2804,6.7641,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8706,6.5077,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8226,9.6569,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8108,10.2731,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.2804,6.5410,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8706,5.7992,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8226,10.2629,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8108,9.9920,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.2804,6.4298,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8706,5.6442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8226,10.1094,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8108,9.9005,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.2804,6.4353,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8706,5.8276,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8226,10.1538,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8108,9.8978,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.2804,6.4116,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8706,5.9186,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8226,10.6016,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8108,10.3887,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.2804,6.4533,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8706,5.7848,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8226,10.0677,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8108,9.8866,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.2804,6.8487,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8706,6.0173,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8226,10.2472,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8108,9.8783,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.2804,6.8510,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8706,5.8551,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8226,9.8269,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8108,9.6490,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.2804,6.4388,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8706,5.8632,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8226,10.2015,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8108,9.9957,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.2804,6.5411,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8706,5.8155,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8226,10.0014,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8108,9.9245,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.2804,6.3078,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8706,6.0958,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8226,10.4473,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8108,10.0470,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.2804,6.5180,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8706,5.9050,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8226,10.4813,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8108,10.2642,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.2804,6.4498,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8706,6.0930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8226,9.8573,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8108,9.8028,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.2804,6.1700,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8706,5.6770,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8226,10.4998,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8108,10.2704,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.2804,6.5852,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8706,5.7233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8226,10.3018,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8108,9.0030,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.2804,6.2405,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8706,5.6962,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8226,10.3243,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8108,10.1923,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.2804,6.6477,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8706,5.8497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8226,10.2243,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8108,10.0274,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.2804,6.4520,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8706,5.7769,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8226,10.2287,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8108,9.9542,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.2804,6.3581,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8706,5.7513,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8226,10.5476,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8108,10.3547,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.2804,6.3358,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8706,5.7433,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8226,10.3319,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8108,10.1683,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.2804,6.3555,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8706,5.8207,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8226,10.1381,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8108,9.8480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.2804,6.7167,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8706,5.8848,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8226,9.6649,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8108,9.6434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.2804,6.4586,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8706,5.7819,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8226,10.4458,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8108,10.3602,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.2804,6.3829,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8706,5.7911,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8226,10.2770,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8108,9.9753,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.2804,6.2838,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8706,5.7168,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8226,10.1905,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8108,9.8145,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.2804,6.3715,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8706,5.7400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8226,10.5195,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8108,10.3091,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.2804,6.9891,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8706,5.9048,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8226,10.1483,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8108,10.0189,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.2804,6.4910,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8706,5.6947,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8226,10.3578,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8108,10.3575,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.2804,6.7484,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8706,5.8783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8226,10.5940,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8108,10.4637,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.2804,6.8881,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8706,6.1235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8226,11.8577,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8108,11.7328,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.2804,6.4567,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8706,5.7707,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8226,10.7742,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8108,10.4836,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.2804,6.6087,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8706,5.8813,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8226,10.5775,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8108,10.5369,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.2804,6.2790,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8706,5.9151,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8226,10.4958,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8108,10.2574,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.2804,7.7908,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8706,6.7607,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8226,10.3549,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8108,10.0002,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.2804,6.2473,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8706,5.6673,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8226,9.9804,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8108,10.0318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.2804,6.0342,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,2.8706,5.8208,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,2.8226,10.0808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.8108,10.0818,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.2804,6.7145,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,2.8706,6.1625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,2.8226,10.6906,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.8108,10.6011,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.2804,6.6052,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,2.8706,5.8510,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,2.8226,11.1347,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.8108,11.0839,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.2804,6.8746,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,2.8706,6.1016,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,2.8226,10.7166,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.8108,10.6453,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.2804,6.2199,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,2.8706,5.6562,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,2.8226,10.4969,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.8108,10.2630,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.2804,6.0312,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,2.8706,5.6954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,2.8226,10.4962,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.8108,10.4168,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.2804,6.3155,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,2.8706,5.7138,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,2.8226,10.2655,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.8108,10.1011,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.2804,6.1199,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,2.8706,5.6458,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,2.8226,10.3340,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.8108,10.0536,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.2804,6.7937,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,2.8706,5.9139,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,2.8226,10.4234,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.8108,10.0912,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.2804,6.3236,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,2.8706,5.7987,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,2.8226,10.1913,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.8108,9.8816,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.2804,6.2143,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,2.8706,5.8243,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,2.8226,10.2472,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.8108,9.9414,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.2804,6.2556,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,2.8706,5.8195,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,2.8226,10.6090,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.8108,10.4269,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.2804,6.3773,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,2.8706,5.6920,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,2.8226,10.8004,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.8108,10.7300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.2804,6.5320,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,2.8706,5.8639,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,2.8226,10.5674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.8108,10.4639,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.2804,6.0559,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,2.8706,5.7085,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,2.8226,10.5848,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.8108,10.5995,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.2804,6.6305,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,2.8706,5.7775,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8226,10.0823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.8108,9.8908,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.2804,5.6280,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,2.8706,5.4439,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8226,10.3230,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.8108,10.3495,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.2804,9.6005,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,2.8706,9.5870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8226,10.4030,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8108,10.4073,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.2804,6.4323,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,2.8706,5.9096,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8226,10.0607,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.8108,10.0336,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.2804,5.9221,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,2.8706,5.6155,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8226,10.1826,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.8108,10.0854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.2804,6.1776,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,2.8706,5.8239,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8226,10.7127,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.8108,10.4440,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.2804,6.1479,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,2.8706,5.7335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8226,10.1989,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.8108,9.8996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.2804,6.3013,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,2.8706,5.7538,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8226,9.9727,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.8108,9.7355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.2804,6.1111,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,2.8706,5.7284,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8226,10.4395,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.8108,10.0633,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.2804,6.2930,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,2.8706,5.7135,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8226,10.1401,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.8108,9.9995,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.2804,6.7545,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,2.8706,6.0510,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8226,8.8139,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.8108,10.3427,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.2804,6.2179,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,2.8706,5.7552,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8226,10.5834,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.8108,10.3763,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.2804,6.5903,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,2.8706,5.8136,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8226,10.1034,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.8108,9.7515,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.2804,6.3753,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,2.8706,5.8777,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8226,10.3015,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.8108,9.9307,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.2804,6.2908,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,2.8706,5.7336,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8226,10.4310,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.8108,10.2282,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.2804,6.4567,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,2.8706,5.7583,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8226,10.2765,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.8108,9.9700,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.2804,6.1790,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8706,5.7140,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8226,10.1400,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.8108,9.8763,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.2804,6.6724,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8706,6.0016,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8226,10.5925,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.8108,10.4254,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.2804,6.3208,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8706,5.7840,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8226,10.1950,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.8108,9.9589,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.2804,6.2560,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8706,5.7652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8226,9.9201,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.8108,9.8573,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.2804,6.3300,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8706,5.7763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8226,10.3205,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.8108,10.1456,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.2804,6.4143,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8706,5.7642,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8226,10.2120,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.8108,9.9860,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.2804,6.3047,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8706,5.8211,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8226,10.3673,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.8108,10.0132,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.2804,6.7797,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8706,6.3034,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8226,10.9202,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8108,10.8412,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.2804,6.5342,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8706,6.1133,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8226,9.8012,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8108,9.9660,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.2804,6.4674,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8706,5.8601,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8226,10.2713,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8108,9.9340,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.2804,6.2040,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8706,5.7078,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8226,10.3048,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.8108,9.9976,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.2804,6.5054,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8706,5.7399,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8226,10.6077,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.8108,10.3726,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.2804,6.2157,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8706,5.7967,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8226,10.4021,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.8108,10.0126,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.2804,6.2970,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8706,5.7387,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8226,10.2188,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.8108,10.0040,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.2804,6.5043,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8706,5.7588,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8226,10.2187,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.8108,9.9758,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.2804,6.2684,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8706,5.8032,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8226,10.2368,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.8108,9.9128,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.2804,6.1829,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8706,5.7667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8226,10.0711,0.0337,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.8108,9.8558,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.2804,6.2399,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8706,5.7302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8226,10.2751,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.8108,10.0098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.2804,6.3278,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8706,5.7998,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8226,10.4550,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8108,10.0500,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.2804,6.4815,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8706,5.7737,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8226,10.2838,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8108,10.1401,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.2804,6.3893,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8706,5.8229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8226,10.4110,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8108,10.2108,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.2804,7.5450,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8706,6.7884,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8226,13.0203,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.8108,12.7887,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.2804,6.5244,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8706,5.7207,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8226,12.9401,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.8108,12.8529,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.2804,6.6292,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8706,5.8919,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8226,10.5110,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.8108,10.4507,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.2804,6.8562,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8706,5.8223,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8226,10.5525,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.8108,10.3080,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.2804,6.8199,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8706,5.8065,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8226,10.4647,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.8108,10.2853,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.2804,7.0908,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8706,6.0693,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8226,10.7136,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.8108,10.5813,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.2804,6.7137,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8706,6.1040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8226,10.4990,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.8108,10.3982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.2804,6.6863,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8706,5.8408,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8226,10.3923,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.8108,10.3505,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.2804,6.7327,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,2.8706,5.8295,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,2.8226,10.5232,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.8108,10.3051,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.2804,6.5758,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,2.8706,5.8550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,2.8226,10.3792,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.8108,10.3039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.2804,6.7469,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,2.8706,5.8838,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,2.8226,10.7209,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.8108,10.4663,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.2804,7.0676,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,2.8706,5.8952,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,2.8226,10.4547,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.8108,10.2093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.2804,6.5549,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,2.8706,5.7366,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,2.8226,10.3200,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.8108,10.0177,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.2804,6.6452,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,2.8706,5.7253,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,2.8226,10.6770,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.8108,10.3627,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.2804,6.2140,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,2.8706,5.8513,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,2.8226,9.0334,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.8108,10.1023,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.2804,6.0918,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,2.8706,5.7144,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,2.8226,10.0892,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.8108,10.0639,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.2804,6.1025,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,2.8706,5.7173,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,2.8226,10.4805,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.8108,10.2490,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.2804,6.2422,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,2.8706,5.8457,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,2.8226,10.1753,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.8108,9.8796,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.2804,7.7702,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,2.8706,7.0328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,2.8226,10.2713,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.8108,9.9660,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.2804,6.4506,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,2.8706,6.9509,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,2.8226,9.3412,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.8108,11.2439,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.2804,6.3637,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,2.8706,5.7255,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,2.8226,10.6702,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.8108,10.6249,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.2804,6.4189,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,2.8706,5.7675,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,2.8226,10.4885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.8108,10.3718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.2804,5.9701,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,2.8706,5.6720,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,2.8226,10.3793,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.8108,10.2921,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.2804,6.8145,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,2.8706,5.9603,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8226,10.5516,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.8108,10.2924,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.2804,6.2117,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,2.8706,5.7985,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8226,10.1429,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.8108,9.9820,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.2804,6.5747,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,2.8706,5.8369,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8226,9.9190,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.8108,9.8553,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.2804,6.3578,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,2.8706,5.9903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8226,9.4431,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.8108,9.6836,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.2804,6.2210,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,2.8706,5.8005,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8226,10.0365,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.8108,9.9405,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.2804,6.2912,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,2.8706,5.8266,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8226,10.2253,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.8108,9.9856,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.2804,6.2944,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,2.8706,5.7915,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8226,10.0741,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.8108,9.9223,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.2804,6.2040,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,2.8706,5.7775,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8226,10.1982,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8108,10.0019,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.2804,6.2155,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,2.8706,5.7693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8226,10.2368,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8108,9.8541,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.2804,6.2328,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,2.8706,5.7161,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8226,10.1094,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.8108,9.8760,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.2804,6.5315,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,2.8706,6.2818,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8226,8.9079,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.8108,9.2884,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.2804,6.3128,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,2.8706,5.6342,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8226,9.6836,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.8108,9.7964,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.2804,6.5263,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,2.8706,5.8749,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8226,10.2911,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.8108,9.9320,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.2804,6.3023,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,2.8706,5.7546,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8226,10.2160,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.8108,9.9048,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.2804,6.2890,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,2.8706,5.8197,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8226,10.4569,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.8108,10.2737,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.2804,6.4720,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,2.8706,5.7504,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8226,10.4437,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.8108,10.2243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,5.2804,6.4332,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8706,5.8407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8226,10.1713,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.8108,9.9480,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,5.2804,6.7370,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8706,5.9211,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8226,10.2651,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.8108,9.8006,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,5.2804,6.4372,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8706,5.7565,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8226,10.1079,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8108,9.9466,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,5.2804,6.3006,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8706,5.7861,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8226,10.2250,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8108,9.9442,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.2804,6.3045,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8706,5.7708,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8226,10.0571,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8108,9.9410,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.2804,6.2472,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8706,5.7765,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8226,10.1151,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.8108,9.9646,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,5.2804,6.3710,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8706,5.7513,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8226,9.9016,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.8108,9.8877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,5.2804,6.2678,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8706,5.8178,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8226,10.6998,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.8108,10.5506,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,5.2804,6.3945,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8706,5.7822,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8226,10.1500,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.8108,9.8615,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,5.2804,6.6341,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8706,5.8512,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8226,10.1495,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.8108,10.0251,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.2804,6.2412,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8706,5.7933,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8226,10.1844,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.8108,10.0174,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.2804,6.3552,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8706,5.7732,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8226,10.2514,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.8108,9.9234,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.2804,6.3611,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8706,5.8174,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8226,10.2475,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.8108,9.9803,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,5.2804,6.3133,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8706,5.8123,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8226,9.9634,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.8108,9.9015,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,5.2804,6.3837,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8706,5.9260,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8226,10.2796,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8108,9.8659,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,5.2804,6.2030,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8706,5.8313,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8226,10.2318,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8108,10.0495,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,5.2804,6.2268,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8706,5.7094,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8226,10.2030,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8108,10.0031,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.2804,6.3658,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8706,5.8364,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8226,9.9747,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.8108,9.9638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.2804,6.2601,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8706,5.8010,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8226,10.5112,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.8108,10.2243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,5.2804,6.4894,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8706,5.7859,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8226,10.1645,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.8108,9.9147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.2804,6.4395,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8706,6.1472,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8226,10.1925,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.8108,9.8573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,5.2804,6.4524,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8706,5.5858,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8226,10.2547,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.8108,9.6905,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,5.2804,6.5629,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8706,5.7355,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8226,9.9320,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.8108,9.7427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,5.2804,6.3160,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8706,5.8620,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8226,10.2059,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.8108,10.0060,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.2804,6.5783,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8706,5.8307,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8226,10.2030,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8108,10.0122,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.2804,6.9349,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8706,5.9911,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8226,6.4120,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8108,5.8301,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.2804,6.3708,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8706,5.6584,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8226,10.4173,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8108,10.1185,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,5.2804,6.3038,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8706,5.9656,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8226,10.1013,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8108,10.1301,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,5.2804,5.9080,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8706,5.6502,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8226,10.3235,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.8108,10.3901,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,5.2804,6.2776,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +721,2.8706,5.9411,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +722,2.8226,10.6144,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +723,2.8108,10.3530,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +724,5.2804,6.2158,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +725,2.8706,5.9335,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +726,2.8226,11.5052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +727,2.8108,11.6106,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +728,5.2804,16.0648,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +729,2.8706,15.8858,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +730,2.8226,29.8850,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +731,2.8108,29.8670,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +732,5.2804,16.1894,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +733,2.8706,16.0003,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +734,2.8226,32.0251,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +735,2.8108,31.8442,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +736,5.2804,16.1382,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +737,2.8706,15.7874,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +738,2.8226,29.7669,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +739,2.8108,29.9284,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +740,5.2804,16.1236,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +741,2.8706,15.8364,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +742,2.8226,29.7637,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +743,2.8108,29.8293,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +744,5.2804,16.4267,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +745,2.8706,15.6650,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +746,2.8226,30.1368,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +747,2.8108,30.0192,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +748,5.2804,16.5727,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +749,2.8706,16.0477,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +750,2.8226,30.3922,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +751,2.8108,30.1645,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +752,5.2804,16.1807,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +753,2.8706,15.6930,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +754,2.8226,30.4068,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +755,2.8108,30.0904,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +756,5.2804,15.7769,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +757,2.8706,15.7234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +758,2.8226,29.7162,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +759,2.8108,30.0221,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +760,5.2804,15.9621,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +761,2.8706,15.6560,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +762,2.8226,30.3871,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +763,2.8108,30.1411,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +764,5.2804,16.2716,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +765,2.8706,15.8936,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +766,2.8226,29.8805,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +767,2.8108,29.9393,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +768,5.2804,16.1878,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +769,2.8706,15.9404,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +770,2.8226,29.9090,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +771,2.8108,29.8116,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +772,5.2804,16.0961,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +773,2.8706,15.7067,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +774,2.8226,29.7895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +775,2.8108,29.6287,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +776,5.2804,16.5046,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +777,2.8706,16.0083,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +778,2.8226,30.0225,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +779,2.8108,28.3644,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +780,5.2804,16.2969,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +781,2.8706,15.7375,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8226,30.2020,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +783,2.8108,29.9883,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +784,5.2804,16.3409,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +785,2.8706,15.8996,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8226,29.7530,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +787,2.8108,29.7417,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +788,5.2804,16.1548,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +789,2.8706,16.3067,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8226,28.5509,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +791,2.8108,29.6487,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +792,5.2804,16.3315,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +793,2.8706,15.9268,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8226,29.3130,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +795,2.8108,29.1778,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +796,5.2804,16.3696,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +797,2.8706,15.8417,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8226,29.8216,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +799,2.8108,29.6736,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +800,5.2804,16.3947,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +801,2.8706,15.8853,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8226,29.6575,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +803,2.8108,29.7475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +804,5.2804,16.2267,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +805,2.8706,15.6886,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8226,30.6160,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +807,2.8108,30.3672,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +808,5.2804,16.3318,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +809,2.8706,15.7984,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8226,29.3644,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.8108,29.7370,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +812,5.2804,16.3545,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +813,2.8706,15.8277,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8226,29.9660,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +815,2.8108,29.7685,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +816,5.2804,16.3422,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +817,2.8706,15.8402,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8226,29.3506,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +819,2.8108,29.9491,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +820,5.2804,16.4763,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +821,2.8706,15.8644,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +822,2.8226,29.9175,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +823,2.8108,29.7317,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +824,5.2804,16.4124,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +825,2.8706,15.7977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +826,2.8226,29.7398,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +827,2.8108,29.7540,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +828,5.2804,16.2103,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +829,2.8706,15.8270,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +830,2.8226,28.8263,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +831,2.8108,29.8497,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +832,5.2804,16.8730,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +833,2.8706,16.2015,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +834,2.8226,29.4153,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +835,2.8108,29.6392,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +836,5.2804,16.4113,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +837,2.8706,16.0375,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +838,2.8226,28.4364,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8108,27.5328,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +840,5.2804,48.0366,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +841,2.8706,27.7271,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +842,2.8226,25.3155,0.0053,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +843,2.8108,25.8980,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +844,5.2804,5.7690,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +845,2.8706,5.6873,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +846,2.8226,10.5485,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +847,2.8108,10.5435,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +848,5.2804,5.6865,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +849,2.8706,5.5427,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +850,2.8226,10.4429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +851,2.8108,10.4572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +852,5.2804,5.9748,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +853,2.8706,5.7733,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +854,2.8226,10.7265,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +855,2.8108,10.6884,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +856,5.2804,5.7328,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +857,2.8706,5.5624,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +858,2.8226,10.4078,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +859,2.8108,10.3328,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +860,5.2804,5.8114,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +861,2.8706,5.5960,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +862,2.8226,10.4818,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +863,2.8108,10.4650,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +864,5.2804,5.9589,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +865,2.8706,5.6277,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +866,2.8226,10.5491,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +867,2.8108,10.5264,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +868,5.2804,5.6799,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +869,2.8706,5.6561,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +870,2.8226,10.4467,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +871,2.8108,10.4903,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +872,5.2804,5.7908,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +873,2.8706,5.6413,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +874,2.8226,10.5205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +875,2.8108,10.5146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +876,5.2804,5.7733,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +877,2.8706,5.6117,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +878,2.8226,10.5511,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +879,2.8108,10.5526,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +880,5.2804,5.7443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +881,2.8706,5.5425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +882,2.8226,10.4543,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +883,2.8108,10.3539,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +884,5.2804,5.7489,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +885,2.8706,5.5166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +886,2.8226,10.5762,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +887,2.8108,10.5260,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +888,5.2804,5.7406,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +889,2.8706,5.5024,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +890,2.8226,10.5068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +891,2.8108,10.4747,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +892,5.2804,5.7165,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +893,2.8706,5.5736,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +894,2.8226,10.5087,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +895,2.8108,10.4135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +896,5.2804,5.7526,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +897,2.8706,5.5812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +898,2.8226,10.4290,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +899,2.8108,10.4343,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +900,5.2804,5.7102,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +901,2.8706,5.5471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +902,2.8226,10.5168,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +903,2.8108,10.5355,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +904,5.2804,5.6670,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +905,2.8706,5.6217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +906,2.8226,10.4273,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +907,2.8108,10.4073,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +908,5.2804,5.6870,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +909,2.8706,5.5525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +910,2.8226,10.5021,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +911,2.8108,10.5060,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +912,5.2804,5.7422,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +913,2.8706,5.5718,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +914,2.8226,10.4600,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +915,2.8108,10.4714,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +916,5.2804,5.6450,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +917,2.8706,5.5390,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +918,2.8226,10.4551,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +919,2.8108,10.4361,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +920,5.2804,5.6320,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +921,2.8706,5.5327,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +922,2.8226,10.2800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +923,2.8108,10.2771,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +924,5.2804,5.5439,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +925,2.8706,5.4515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +926,2.8226,10.3241,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +927,2.8108,10.3224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +928,5.2804,5.7308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +929,2.8706,5.5376,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +930,2.8226,10.4893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8108,10.4788,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +932,5.2804,5.6661,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +933,2.8706,5.5428,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +934,2.8226,10.4537,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +935,2.8108,10.4715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +936,5.2804,5.6135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +937,2.8706,5.5463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +938,2.8226,10.3959,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +939,2.8108,10.3887,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +940,5.2804,5.6704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +941,2.8706,5.5868,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +942,2.8226,10.4721,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +943,2.8108,10.4441,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +944,5.2804,5.6910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +945,2.8706,5.5256,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +946,2.8226,10.4918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +947,2.8108,10.5047,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +948,5.2804,5.7150,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +949,2.8706,5.5792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,2.8226,10.4010,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +951,2.8108,10.2954,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +952,5.2804,5.7942,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +953,2.8706,5.5824,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +954,2.8226,10.3780,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +955,2.8108,10.3230,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +956,5.2804,5.8151,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +957,2.8706,5.5820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +958,2.8226,10.4218,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +959,2.8108,10.3938,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +960,5.2804,5.7526,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +961,2.8706,5.5912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8226,10.4072,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +963,2.8108,10.3742,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +964,5.2804,5.7337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +965,2.8706,5.5628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8226,10.4078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +967,2.8108,10.3918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +968,5.2804,5.6770,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +969,2.8706,5.5945,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8226,10.4182,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +971,2.8108,10.4160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +972,5.2804,5.6239,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +973,2.8706,5.5655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8226,10.4019,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +975,2.8108,10.3933,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +976,5.2804,5.7129,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +977,2.8706,5.5337,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8226,10.3109,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +979,2.8108,10.3513,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +980,5.2804,5.7084,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +981,2.8706,5.5340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8226,10.2583,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +983,2.8108,10.2033,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +984,5.2804,5.7070,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +985,2.8706,5.5482,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8226,10.3955,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +987,2.8108,10.3983,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +988,5.2804,5.6371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +989,2.8706,5.5022,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8226,10.2403,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +991,2.8108,10.3995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +992,5.2804,5.6495,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +993,2.8706,5.4878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8226,10.3417,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +995,2.8108,10.2235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +996,5.2804,5.7985,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +997,2.8706,5.5595,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8226,10.3049,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +999,2.8108,10.2727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1000,5.2804,5.6703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,2.8706,5.4920,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8226,10.2933,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1003,2.8108,10.2570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1004,5.2804,5.6684,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,2.8706,5.4661,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8226,10.2913,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1007,2.8108,10.1590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1008,5.2804,5.5780,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,2.8706,5.4407,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8226,10.2820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1011,2.8108,10.2590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1012,5.2804,5.5337,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,2.8706,5.4446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8226,10.2424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1015,2.8108,10.2150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1016,5.2804,5.6987,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,2.8706,5.5280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8226,10.3324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1019,2.8108,10.2687,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1020,5.2804,5.6844,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,2.8706,5.5073,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8226,10.3507,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1023,2.8108,10.2747,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1024,5.2804,5.6710,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,2.8706,5.5133,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8226,10.3615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1027,2.8108,10.2312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1028,5.2804,5.8078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,2.8706,5.6267,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8226,10.3349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1031,2.8108,10.3210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1032,5.2804,5.6975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,2.8706,5.6044,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8226,10.4295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1035,2.8108,10.4055,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1036,5.2804,5.6529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,2.8706,5.6158,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8226,10.3695,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1039,2.8108,10.3837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1040,5.2804,5.6665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,2.8706,5.6131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8226,10.5180,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1043,2.8108,10.4327,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1044,5.2804,5.7554,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,2.8706,5.5927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8226,10.3681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1047,2.8108,10.3145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1048,5.2804,5.5791,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,2.8706,5.4663,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8226,10.2906,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1051,2.8108,10.2740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1052,5.2804,5.6108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,2.8706,5.5042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8226,10.3455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1055,2.8108,10.3303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1056,5.2804,5.7355,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,2.8706,5.5493,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8226,10.2720,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1059,2.8108,10.2405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1060,5.2804,5.7168,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,2.8706,5.5948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8226,10.6140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1063,2.8108,10.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1064,5.2804,5.6890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,2.8706,5.5650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8226,10.4152,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1067,2.8108,10.3855,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1068,5.2804,5.7660,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,2.8706,5.6015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8226,10.3810,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.8108,10.3183,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1072,5.2804,5.9186,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,2.8706,5.5814,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8226,10.4328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1075,2.8108,10.3985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1076,5.2804,5.7359,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,2.8706,5.5908,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8226,10.5865,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1079,2.8108,10.5694,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1080,5.2804,5.9162,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,2.8706,5.6879,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8226,10.6130,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1083,2.8108,10.5959,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1084,5.2804,5.8389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8706,5.5843,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8226,10.5535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1087,2.8108,10.5159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1088,5.2804,5.8231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8706,5.6129,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8226,10.5124,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1091,2.8108,10.4960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1092,5.2804,5.9047,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8706,5.6390,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8226,10.6328,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1095,2.8108,10.5119,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1096,5.2804,5.9778,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8706,5.6100,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8226,10.3793,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1099,2.8108,10.3395,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1100,5.2804,5.7114,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8706,5.5852,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8226,10.3334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1103,2.8108,10.2900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1104,5.2804,5.7660,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8706,5.5551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8226,10.5883,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1107,2.8108,10.4612,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1108,5.2804,6.1925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8706,5.7309,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8226,10.3855,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1111,2.8108,10.2844,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1112,5.2804,5.7105,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8706,5.6037,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8226,10.3368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8108,10.3345,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1116,5.2804,5.7349,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8706,5.5782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8226,10.3987,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1119,2.8108,10.2965,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1120,5.2804,5.7112,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8706,5.5493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8226,10.4945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1123,2.8108,10.4647,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1124,5.2804,5.7459,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8706,5.5482,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8226,10.4021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1127,2.8108,10.3763,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1128,5.2804,5.6975,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8706,5.5076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8226,10.3254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1131,2.8108,10.2621,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1132,5.2804,5.7695,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8706,5.5266,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8226,10.3436,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1135,2.8108,10.3074,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1136,5.2804,5.8111,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8706,5.4863,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8226,10.4725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1139,2.8108,10.3562,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1140,5.2804,5.7452,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8706,5.5436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8226,10.3745,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1143,2.8108,10.3336,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1144,5.2804,5.7811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8706,5.6531,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8226,10.4185,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1147,2.8108,10.3678,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1148,5.2804,5.7384,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8706,5.5431,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8226,10.4585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1151,2.8108,10.4380,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1152,5.2804,5.6480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8706,5.5134,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8226,10.3604,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1155,2.8108,10.2668,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1156,5.2804,5.8093,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8706,5.5876,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8226,10.4062,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8108,10.2902,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1160,5.2804,5.6561,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8706,5.5728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8226,10.4106,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8108,10.3725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1164,5.2804,5.6539,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8706,5.5314,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8226,10.2848,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.8108,10.1918,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1168,5.2804,5.9555,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8706,5.7426,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8226,10.6411,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1171,2.8108,10.4907,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1172,5.2804,5.9527,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8706,5.6486,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8226,10.3667,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1175,2.8108,10.2914,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.2804,5.7367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8706,5.5604,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8226,10.3220,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1179,2.8108,10.2482,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1180,5.2804,5.7809,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8706,5.6348,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8226,10.4671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1183,2.8108,10.4121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1184,5.2804,5.6835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8706,5.5854,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8226,10.3674,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1187,2.8108,10.3255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1188,5.2804,5.7453,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8706,5.6061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8226,10.3908,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8108,10.3527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1192,5.2804,5.8233,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8706,5.6136,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8226,10.3931,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1195,2.8108,10.3611,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1196,5.2804,5.7279,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8706,5.6362,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8226,10.4281,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1199,2.8108,10.3689,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1200,5.2804,5.7911,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1201,2.8706,5.5255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1202,2.8226,10.2679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1203,2.8108,10.1677,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1204,5.2804,5.9775,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1205,2.8706,5.6801,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1206,2.8226,10.3165,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1207,2.8108,10.2674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1208,5.2804,5.7121,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1209,2.8706,5.5866,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1210,2.8226,10.3205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1211,2.8108,10.2387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1212,5.2804,5.6830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1213,2.8706,5.4655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1214,2.8226,10.3127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1215,2.8108,10.3110,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1216,5.2804,5.7662,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1217,2.8706,5.6225,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1218,2.8226,10.4386,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1219,2.8108,10.3353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1220,5.2804,5.7113,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1221,2.8706,5.5903,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1222,2.8226,10.3272,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1223,2.8108,10.2773,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1224,5.2804,5.7963,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1225,2.8706,5.6094,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1226,2.8226,10.3697,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1227,2.8108,10.3317,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1228,5.2804,5.7333,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1229,2.8706,5.6098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1230,2.8226,10.4023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1231,2.8108,10.3409,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1232,5.2804,5.8484,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1233,2.8706,5.5946,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1234,2.8226,10.4065,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1235,2.8108,10.3643,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1236,5.2804,5.7117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1237,2.8706,5.6387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1238,2.8226,10.4853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1239,2.8108,10.4580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1240,5.2804,5.9293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1241,2.8706,5.7604,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1242,2.8226,10.5670,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1243,2.8108,10.5145,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1244,5.2804,5.8247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1245,2.8706,5.7086,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1246,2.8226,10.5568,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1247,2.8108,10.3603,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1248,5.2804,5.9953,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1249,2.8706,5.9010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1250,2.8226,10.4522,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1251,2.8108,10.3918,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1252,5.2804,5.9828,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1253,2.8706,5.6416,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1254,2.8226,10.5510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1255,2.8108,10.4790,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1256,5.2804,5.7406,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1257,2.8706,5.5847,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1258,2.8226,10.7357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1259,2.8108,10.7734,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1260,5.2804,5.9267,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1261,2.8706,5.6863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8226,10.6339,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1263,2.8108,10.5540,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1264,5.2804,5.9997,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1265,2.8706,5.7062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8226,10.5981,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1267,2.8108,10.6208,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1268,5.2804,5.8207,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1269,2.8706,5.6590,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8226,10.6750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1271,2.8108,10.7107,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1272,5.2804,6.0611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1273,2.8706,5.8670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8226,10.6988,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1275,2.8108,10.7558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1276,5.2804,5.9520,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1277,2.8706,5.7239,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8226,10.7725,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1279,2.8108,10.8094,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1280,5.2804,5.9813,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1281,2.8706,5.8415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8226,10.7658,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1283,2.8108,10.7661,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1284,5.2804,5.8537,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1285,2.8706,5.6996,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8226,10.6161,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1287,2.8108,10.5888,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1288,5.2804,6.0473,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1289,2.8706,5.7005,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8226,10.8016,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.8108,10.7862,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1292,5.2804,6.9445,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1293,2.8706,5.8180,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8226,10.5705,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1295,2.8108,10.2968,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1296,5.2804,6.8800,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1297,2.8706,5.8386,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8226,10.2209,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1299,2.8108,9.9076,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1300,5.2804,7.3373,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1301,2.8706,6.0450,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8226,10.3992,0.0357,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1303,2.8108,10.4171,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1304,5.2804,6.9630,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1305,2.8706,6.1241,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8226,10.5162,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1307,2.8108,9.9799,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1308,5.2804,6.2423,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1309,2.8706,5.7593,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8226,10.4361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1311,2.8108,10.3204,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1312,5.2804,6.1428,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1313,2.8706,5.6898,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8226,10.5736,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1315,2.8108,10.4556,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1316,5.2804,6.0096,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1317,2.8706,5.6525,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8226,10.4037,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1319,2.8108,10.3555,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1320,5.2804,5.9893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1321,2.8706,5.7796,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8226,10.5927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1323,2.8108,10.5110,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1324,5.2804,5.7126,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8706,5.6257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8226,10.2948,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1327,2.8108,10.2601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1328,5.2804,5.8768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8706,5.6708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8226,10.4955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1331,2.8108,10.4177,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1332,5.2804,6.0500,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8706,5.6900,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8226,10.5331,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.8108,10.4670,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1336,5.2804,6.0434,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8706,5.7001,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8226,10.4611,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1339,2.8108,10.3915,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1340,5.2804,5.9906,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8706,5.7786,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8226,10.5769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1343,2.8108,10.5120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.2804,5.8729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8706,5.6565,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8226,10.3462,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1347,2.8108,10.2575,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1348,5.2804,5.7877,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8706,5.6586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8226,10.4270,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1351,2.8108,10.3325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1352,5.2804,6.2352,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8706,5.7193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8226,10.4578,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1355,2.8108,10.2898,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1356,5.2804,6.3705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8706,5.7457,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8226,10.4793,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1359,2.8108,10.3766,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1360,5.2804,6.2026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8706,5.7774,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8226,10.6128,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1363,2.8108,10.5220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.2804,5.8077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8706,5.5935,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8226,10.5114,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1367,2.8108,10.4836,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1368,5.2804,5.9379,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8706,5.7187,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8226,10.5506,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1371,2.8108,10.4819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1372,5.2804,5.9369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8706,5.6984,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8226,10.4353,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1375,2.8108,10.3417,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1376,5.2804,6.3750,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8706,5.6520,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8226,10.2841,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1379,2.8108,9.9965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1380,5.2804,6.2191,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8706,5.8132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8226,10.6810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.8108,10.6012,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1384,5.2804,5.9835,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8706,5.7396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8226,10.5559,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.8108,10.5260,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1388,5.2804,5.8934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8706,5.6918,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8226,10.4730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.8108,10.3974,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.2804,5.9038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8706,5.6727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8226,10.3422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1395,2.8108,10.2736,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1396,5.2804,6.4113,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8706,5.6960,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8226,10.2779,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1399,2.8108,10.1683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1400,5.2804,5.9915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8706,5.6411,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8226,10.4223,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1403,2.8108,10.3834,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.2804,5.7583,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8706,5.6220,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8226,10.3086,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1407,2.8108,10.2732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1408,5.2804,5.8942,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8706,5.7286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8226,10.5214,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1411,2.8108,10.4502,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1412,5.2804,6.4791,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8706,5.7652,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8226,10.7439,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1415,2.8108,10.5053,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1416,5.2804,6.5287,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8706,5.8940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8226,10.7819,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,2.8108,10.5296,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.2804,6.3101,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8706,5.8260,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8226,10.5813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.8108,10.5080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1424,5.2804,5.8976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8706,5.6534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8226,10.4511,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.8108,10.4042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.2804,5.9648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8706,5.7456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8226,10.5580,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.8108,10.5164,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1432,5.2804,5.9024,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8706,5.6342,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8226,10.4018,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.8108,10.3406,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1436,5.2804,6.2189,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8706,5.8431,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8226,12.4882,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1439,2.8108,12.2523,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1440,5.2804,6.9547,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1441,2.8706,5.9885,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1442,2.8226,10.9294,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1443,2.8108,10.6989,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1444,5.2804,6.7996,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1445,2.8706,5.7999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1446,2.8226,10.5322,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1447,2.8108,10.4279,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1448,5.2804,5.8930,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1449,2.8706,5.6441,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1450,2.8226,10.4924,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1451,2.8108,10.4741,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1452,5.2804,5.7647,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1453,2.8706,5.5238,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1454,2.8226,10.3904,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1455,2.8108,10.3905,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1456,5.2804,6.0891,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1457,2.8706,6.1055,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1458,2.8226,10.6815,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1459,2.8108,10.6114,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1460,5.2804,6.4305,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1461,2.8706,5.9161,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1462,2.8226,10.2202,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1463,2.8108,10.0707,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1464,5.2804,6.2656,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1465,2.8706,5.8150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1466,2.8226,10.2528,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1467,2.8108,10.0896,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1468,5.2804,6.2089,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1469,2.8706,5.8451,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1470,2.8226,10.0485,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1471,2.8108,9.9292,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1472,5.2804,5.7762,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1473,2.8706,5.5247,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1474,2.8226,10.6064,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1475,2.8108,10.6545,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1476,5.2804,5.9387,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1477,2.8706,5.6707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1478,2.8226,10.3957,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1479,2.8108,10.3027,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1480,5.2804,5.8646,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1481,2.8706,5.6359,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1482,2.8226,10.4007,0.0228,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1483,2.8108,10.3433,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1484,5.2804,6.0344,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1485,2.8706,5.7419,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1486,2.8226,10.6958,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1487,2.8108,10.4917,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1488,5.2804,6.1608,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1489,2.8706,5.6918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1490,2.8226,9.0882,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1491,2.8108,8.8280,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1492,5.2804,5.8004,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1493,2.8706,5.5728,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1494,2.8226,10.3430,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1495,2.8108,10.2250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1496,5.2804,5.8143,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1497,2.8706,5.6146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1498,2.8226,10.5059,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1499,2.8108,10.5252,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1500,5.2804,5.6885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1501,2.8706,5.5596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1502,2.8226,10.4790,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1503,2.8108,10.4813,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1504,5.2804,5.7841,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1505,2.8706,5.6591,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1506,2.8226,11.4259,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1507,2.8108,11.3375,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1508,5.2804,6.4078,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1509,2.8706,5.7051,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1510,2.8226,10.0734,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1511,2.8108,9.4719,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1512,5.2804,5.9214,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1513,2.8706,5.6318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1514,2.8226,10.8201,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1515,2.8108,10.8295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1516,5.2804,5.8113,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1517,2.8706,5.5444,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1518,2.8226,10.5632,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1519,2.8108,10.5217,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1520,5.2804,5.8660,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1521,2.8706,5.6849,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1522,2.8226,10.5352,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1523,2.8108,10.4735,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1524,5.2804,5.7175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1525,2.8706,5.5918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1526,2.8226,10.4307,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1527,2.8108,10.4000,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1528,5.2804,5.7527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1529,2.8706,5.6144,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1530,2.8226,10.4599,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1531,2.8108,10.4335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1532,5.2804,5.6639,0.0296,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1533,2.8706,5.4895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1534,2.8226,10.2666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1535,2.8108,10.2244,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1536,5.2804,5.7858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1537,2.8706,5.6458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1538,2.8226,10.5307,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1539,2.8108,10.5077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1540,5.2804,5.7401,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1541,2.8706,5.5666,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1542,2.8226,10.7027,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1543,2.8108,10.6822,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1544,5.2804,5.9288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1545,2.8706,5.7163,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1546,2.8226,10.4078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1547,2.8108,10.3638,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1548,5.2804,5.8083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1549,2.8706,5.6097,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1550,2.8226,10.3859,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1551,2.8108,10.3310,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1552,5.2804,5.7122,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1553,2.8706,5.5081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1554,2.8226,10.3048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1555,2.8108,10.2515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1556,5.2804,5.8880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1557,2.8706,5.5977,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1558,2.8226,10.4982,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1559,2.8108,10.4662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1560,5.2804,5.7598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1561,2.8706,5.5587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,2.8226,10.5480,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1563,2.8108,10.5271,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1564,5.2804,5.7961,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1565,2.8706,5.6144,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,2.8226,11.8744,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1567,2.8108,11.8392,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1568,5.2804,15.7129,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1569,2.8706,15.5018,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,2.8226,30.1133,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1571,2.8108,30.0715,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1572,5.2804,15.9381,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1573,2.8706,15.5798,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,2.8226,30.3529,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1575,2.8108,30.2362,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1576,5.2804,16.0191,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1577,2.8706,15.6565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,2.8226,30.2394,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1579,2.8108,30.1036,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1580,5.2804,15.8990,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1581,2.8706,15.5542,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,2.8226,30.2220,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1583,2.8108,30.1280,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1584,5.2804,15.9246,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1585,2.8706,15.6137,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,2.8226,29.8586,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1587,2.8108,29.8787,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1588,5.2804,16.0396,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1589,2.8706,15.7962,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,2.8226,30.5817,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1591,2.8108,30.5098,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1592,5.2804,16.7481,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1593,2.8706,16.0314,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,2.8226,30.4688,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1595,2.8108,30.1843,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1596,5.2804,15.9798,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1597,2.8706,15.5572,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,2.8226,30.2334,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1599,2.8108,30.0719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1600,5.2804,15.9054,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,2.8706,15.5859,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,2.8226,30.0625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1603,2.8108,29.9711,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1604,5.2804,15.9406,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,2.8706,15.6265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,2.8226,30.5294,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1607,2.8108,30.4285,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1608,5.2804,15.9993,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,2.8706,15.6005,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,2.8226,30.1805,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1611,2.8108,30.0890,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1612,5.2804,15.9404,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,2.8706,15.6820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,2.8226,30.4200,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1615,2.8108,30.3192,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1616,5.2804,16.4593,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,2.8706,16.2804,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,2.8226,30.0592,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1619,2.8108,29.9760,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1620,5.2804,15.9557,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,2.8706,15.6000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,2.8226,30.0099,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1623,2.8108,29.9020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1624,5.2804,15.6071,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,2.8706,15.4576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,2.8226,30.1198,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1627,2.8108,29.9337,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1628,5.2804,15.7348,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,2.8706,15.5042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,2.8226,30.0027,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1631,2.8108,29.9968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1632,5.2804,15.6921,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,2.8706,15.4330,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,2.8226,29.9510,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1635,2.8108,29.8267,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1636,5.2804,15.6425,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,2.8706,15.4913,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,2.8226,30.0139,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1639,2.8108,30.0538,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1640,5.2804,15.6304,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,2.8706,15.4287,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,2.8226,30.2112,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1643,2.8108,30.1388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1644,5.2804,15.5985,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,2.8706,15.4445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,2.8226,29.9974,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1647,2.8108,29.9894,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1648,5.2804,15.4619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,2.8706,15.4973,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,2.8226,30.1165,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1651,2.8108,29.9361,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1652,5.2804,16.2340,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,2.8706,15.8127,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,2.8226,29.6781,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1655,2.8108,29.7675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1656,5.2804,15.6900,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,2.8706,15.5045,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,2.8226,29.9304,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1659,2.8108,29.9116,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1660,5.2804,15.6048,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,2.8706,15.4043,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,2.8226,30.1627,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1663,2.8108,30.0889,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1664,5.2804,15.8427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,2.8706,15.5865,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,2.8226,30.0900,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1667,2.8108,30.0628,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1668,5.2804,15.6353,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,2.8706,15.4938,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,2.8226,29.8908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1671,2.8108,29.8805,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1672,5.2804,15.6940,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,2.8706,15.5180,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,2.8226,29.9840,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1675,2.8108,29.9659,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1676,5.2804,15.8723,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,2.8706,15.6194,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,2.8226,30.2713,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1679,2.8108,30.2232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1680,5.2804,44.1499,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1681,2.8706,26.2863,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1682,2.8226,25.3015,0.0087,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1683,2.8108,25.4829,0.0193,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1684,5.2804,5.8031,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1685,2.8706,5.6245,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1686,2.8226,10.5901,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1687,2.8108,10.5616,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1688,5.2804,5.8427,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1689,2.8706,5.6850,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1690,2.8226,10.8020,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1691,2.8108,10.7962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1692,5.2804,5.7377,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1693,2.8706,5.6187,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1694,2.8226,10.8030,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1695,2.8108,10.8223,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1696,5.2804,5.7439,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1697,2.8706,5.5983,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1698,2.8226,10.4576,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1699,2.8108,10.4234,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1700,5.2804,5.6662,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1701,2.8706,5.5464,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1702,2.8226,10.4681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1703,2.8108,10.4023,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1704,5.2804,5.9495,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1705,2.8706,5.7402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1706,2.8226,10.4790,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1707,2.8108,10.4161,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1708,5.2804,5.9795,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1709,2.8706,5.7427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1710,2.8226,10.6369,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1711,2.8108,10.5908,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1712,5.2804,5.7065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1713,2.8706,5.6121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1714,2.8226,10.6251,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1715,2.8108,10.6137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1716,5.2804,5.7393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1717,2.8706,5.6041,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1718,2.8226,10.6008,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1719,2.8108,10.5808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1720,5.2804,5.7653,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1721,2.8706,5.5957,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1722,2.8226,10.5665,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1723,2.8108,10.5472,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1724,5.2804,5.8855,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1725,2.8706,5.5707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1726,2.8226,10.4068,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1727,2.8108,10.2866,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1728,5.2804,5.7723,0.0274,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1729,2.8706,5.5297,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1730,2.8226,10.4783,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1731,2.8108,10.4562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1732,5.2804,5.7268,0.0271,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1733,2.8706,5.5366,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1734,2.8226,10.3350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1735,2.8108,10.3356,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1736,5.2804,5.8480,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1737,2.8706,5.6460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1738,2.8226,10.5726,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1739,2.8108,10.5086,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1740,5.2804,5.7713,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1741,2.8706,5.6581,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1742,2.8226,10.5152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1743,2.8108,10.5035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1744,5.2804,5.8142,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1745,2.8706,5.6157,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1746,2.8226,10.4733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1747,2.8108,10.4278,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1748,5.2804,5.7655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1749,2.8706,5.5787,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1750,2.8226,10.5183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1751,2.8108,10.4898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1752,5.2804,5.6709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1753,2.8706,5.5962,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1754,2.8226,10.4473,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1755,2.8108,10.4099,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1756,5.2804,5.6534,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1757,2.8706,5.4947,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1758,2.8226,10.3700,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1759,2.8108,10.3582,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1760,5.2804,5.7837,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1761,2.8706,5.5319,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1762,2.8226,10.4660,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1763,2.8108,10.4088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1764,5.2804,5.7965,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1765,2.8706,5.6303,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1766,2.8226,10.3474,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1767,2.8108,10.2821,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1768,5.2804,5.8007,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1769,2.8706,5.5951,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1770,2.8226,10.5991,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1771,2.8108,10.6205,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1772,5.2804,5.7402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1773,2.8706,5.6672,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1774,2.8226,10.5587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1775,2.8108,10.5193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1776,5.2804,5.8170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1777,2.8706,5.6698,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1778,2.8226,10.5985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1779,2.8108,10.5718,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1780,5.2804,5.8024,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1781,2.8706,5.6430,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1782,2.8226,10.4949,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1783,2.8108,10.4383,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1784,5.2804,5.7317,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1785,2.8706,5.6146,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1786,2.8226,10.4335,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1787,2.8108,10.3782,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1788,5.2804,5.6945,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1789,2.8706,5.5512,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1790,2.8226,10.3797,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1791,2.8108,10.2777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1792,5.2804,5.8583,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1793,2.8706,5.5598,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1794,2.8226,10.4267,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1795,2.8108,10.3678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1796,5.2804,5.8426,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1797,2.8706,5.5452,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1798,2.8226,10.5485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1799,2.8108,10.5070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1800,5.2804,5.8549,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1801,2.8706,5.6395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1802,2.8226,10.5521,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1803,2.8108,10.4893,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1804,5.2804,5.8390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1805,2.8706,5.5606,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1806,2.8226,10.6568,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1807,2.8108,10.5379,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1808,5.2804,5.7809,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1809,2.8706,5.6067,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1810,2.8226,10.4902,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1811,2.8108,10.4488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1812,5.2804,5.7694,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1813,2.8706,5.6562,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1814,2.8226,10.5578,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1815,2.8108,10.5527,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1816,5.2804,5.8100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1817,2.8706,5.6587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1818,2.8226,10.7091,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1819,2.8108,10.6795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1820,5.2804,5.6970,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1821,2.8706,5.5527,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1822,2.8226,10.4561,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1823,2.8108,10.3865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1824,5.2804,5.7795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1825,2.8706,5.6607,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1826,2.8226,10.3388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1827,2.8108,10.3174,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1828,5.2804,5.7371,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1829,2.8706,5.5924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1830,2.8226,10.4357,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1831,2.8108,10.4038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1832,5.2804,5.8753,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1833,2.8706,5.6583,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1834,2.8226,10.5181,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1835,2.8108,10.4355,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1836,5.2804,5.8413,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1837,2.8706,5.5760,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1838,2.8226,10.5066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1839,2.8108,10.4160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1840,5.2804,5.6948,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1841,2.8706,5.5578,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1842,2.8226,10.4981,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1843,2.8108,10.4090,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1844,5.2804,5.8004,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1845,2.8706,5.5894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1846,2.8226,10.5562,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1847,2.8108,10.3778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1848,5.2804,5.8433,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1849,2.8706,5.5890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1850,2.8226,10.6152,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1851,2.8108,10.5296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1852,5.2804,5.7367,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1853,2.8706,5.5258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1854,2.8226,10.4577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1855,2.8108,10.3531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1856,5.2804,5.7350,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1857,2.8706,5.5130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1858,2.8226,10.4730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1859,2.8108,10.4175,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1860,5.2804,5.8835,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1861,2.8706,5.6632,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1862,2.8226,10.5558,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1863,2.8108,10.4909,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1864,5.2804,5.8233,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1865,2.8706,5.6269,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1866,2.8226,10.6785,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1867,2.8108,10.6866,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1868,5.2804,5.9203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1869,2.8706,5.7346,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1870,2.8226,10.6265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1871,2.8108,10.5640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1872,5.2804,5.9865,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1873,2.8706,5.6782,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1874,2.8226,10.5120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1875,2.8108,10.4586,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1876,5.2804,5.8011,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1877,2.8706,5.5883,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1878,2.8226,10.3993,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1879,2.8108,10.3608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1880,5.2804,5.7796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1881,2.8706,5.5415,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1882,2.8226,10.3749,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1883,2.8108,10.3335,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1884,5.2804,5.7590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1885,2.8706,5.6376,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1886,2.8226,10.5335,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1887,2.8108,10.5292,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1888,5.2804,5.5839,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1889,2.8706,5.4924,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1890,2.8226,10.6644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1891,2.8108,10.7188,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1892,5.2804,5.9333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1893,2.8706,5.7743,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1894,2.8226,10.7270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1895,2.8108,10.7142,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1896,5.2804,5.7604,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1897,2.8706,5.6265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1898,2.8226,10.6360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1899,2.8108,10.5993,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1900,5.2804,5.7403,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1901,2.8706,5.6393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1902,2.8226,10.7686,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1903,2.8108,10.6990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1904,5.2804,6.0624,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1905,2.8706,5.7419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1906,2.8226,10.6627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1907,2.8108,10.6500,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1908,5.2804,5.6745,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1909,2.8706,5.5099,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1910,2.8226,10.3008,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1911,2.8108,10.2567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1912,5.2804,5.6167,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1913,2.8706,5.4805,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1914,2.8226,10.4487,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1915,2.8108,10.3674,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1916,5.2804,5.7419,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1917,2.8706,5.5169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1918,2.8226,10.4249,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1919,2.8108,10.3011,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1920,5.2804,5.7995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1921,2.8706,5.5455,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,2.8226,10.5288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1923,2.8108,10.4010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1924,5.2804,5.7596,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1925,2.8706,5.5948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,2.8226,10.3684,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1927,2.8108,10.2676,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1928,5.2804,5.8006,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1929,2.8706,5.5752,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,2.8226,10.5073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1931,2.8108,10.4204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1932,5.2804,5.8314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1933,2.8706,5.6800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,2.8226,10.5381,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1935,2.8108,10.4988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1936,5.2804,5.7852,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1937,2.8706,5.6002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,2.8226,10.3507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1939,2.8108,10.2891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1940,5.2804,5.8546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1941,2.8706,5.5755,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,2.8226,10.5769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1943,2.8108,10.5951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1944,5.2804,5.8015,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1945,2.8706,5.5825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,2.8226,10.4898,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1947,2.8108,10.4340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1948,5.2804,5.7073,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1949,2.8706,5.5743,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,2.8226,10.4424,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1951,2.8108,10.4047,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1952,5.2804,5.7292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1953,2.8706,5.5990,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,2.8226,10.4034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1955,2.8108,10.3425,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1956,5.2804,5.8375,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1957,2.8706,5.6245,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,2.8226,10.4108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1959,2.8108,10.3635,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1960,5.2804,5.7175,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,2.8706,5.5703,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,2.8226,10.3517,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1963,2.8108,10.2764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1964,5.2804,5.8156,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,2.8706,5.5907,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,2.8226,10.3651,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1967,2.8108,10.2759,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1968,5.2804,5.7632,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,2.8706,5.5712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,2.8226,10.2398,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1971,2.8108,10.1497,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1972,5.2804,5.9337,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,2.8706,5.6608,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,2.8226,10.4138,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1975,2.8108,10.3072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1976,5.2804,5.7115,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,2.8706,5.9073,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,2.8226,8.6853,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1979,2.8108,8.7770,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1980,5.2804,5.8918,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,2.8706,5.6451,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,2.8226,10.6150,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1983,2.8108,10.5342,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1984,5.2804,5.7560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,2.8706,5.5875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,2.8226,10.4452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1987,2.8108,10.4128,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1988,5.2804,5.7795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,2.8706,5.5796,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,2.8226,10.5674,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1991,2.8108,10.4670,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1992,5.2804,5.8817,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,2.8706,5.6945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,2.8226,10.5906,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1995,2.8108,10.5384,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1996,5.2804,6.0365,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,2.8706,5.8165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,2.8226,10.7631,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1999,2.8108,10.7124,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2000,5.2804,5.9207,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,2.8706,5.7107,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,2.8226,10.4320,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2003,2.8108,10.3963,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2004,5.2804,5.7542,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,2.8706,5.6357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,2.8226,10.7169,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2007,2.8108,10.6973,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2008,5.2804,6.2214,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,2.8706,5.7465,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,2.8226,10.1874,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2011,2.8108,10.1709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2012,5.2804,6.1425,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,2.8706,5.7126,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,2.8226,10.6876,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2015,2.8108,10.6067,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2016,5.2804,5.9725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,2.8706,5.7254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,2.8226,10.6252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2019,2.8108,10.5676,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2020,5.2804,5.7634,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,2.8706,5.6162,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,2.8226,10.4805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2023,2.8108,10.4482,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2024,5.2804,5.8752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,2.8706,5.6719,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,2.8226,10.6679,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2027,2.8108,10.6248,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2028,5.2804,5.9098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,2.8706,5.7025,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,2.8226,10.5572,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,2.8108,10.5088,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2032,5.2804,5.8432,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,2.8706,5.6445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,2.8226,10.3963,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2035,2.8108,10.3403,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2036,5.2804,6.2653,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,2.8706,5.9742,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,2.8226,12.2481,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2039,2.8108,12.0453,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2040,5.2804,6.5450,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,2.8706,5.7083,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,2.8226,10.2523,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2043,2.8108,10.0570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2044,5.2804,6.0665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,2.8706,5.6975,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,2.8226,10.6307,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2047,2.8108,10.5193,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2048,5.2804,5.8797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,2.8706,5.6817,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,2.8226,10.5571,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2051,2.8108,10.5075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2052,5.2804,5.9286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,2.8706,5.7217,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,2.8226,10.7302,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2055,2.8108,10.6648,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2056,5.2804,6.0622,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,2.8706,5.8485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,2.8226,10.7265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2059,2.8108,10.6652,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2060,5.2804,5.9975,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,2.8706,5.6945,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,2.8226,10.7913,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2063,2.8108,10.6705,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2064,5.2804,6.0726,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,2.8706,5.6743,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,2.8226,10.6228,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2067,2.8108,10.5405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2068,5.2804,6.1635,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,2.8706,5.8347,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,2.8226,10.7010,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2071,2.8108,10.6376,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2072,5.2804,6.5160,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,2.8706,6.2060,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,2.8226,10.7530,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,2.8108,10.5755,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2076,5.2804,5.9739,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,2.8706,5.7118,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,2.8226,10.3895,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2079,2.8108,10.1670,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2080,5.2804,5.9370,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,2.8706,5.6932,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,2.8226,10.6459,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2083,2.8108,10.4724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2084,5.2804,6.0279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,2.8706,5.6602,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,2.8226,10.4196,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2087,2.8108,10.3500,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2088,5.2804,5.7811,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,2.8706,5.4949,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,2.8226,10.5152,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2091,2.8108,10.3697,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2092,5.2804,5.7986,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,2.8706,5.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,2.8226,10.5030,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2095,2.8108,10.4230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2096,5.2804,5.8525,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,2.8706,5.5802,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,2.8226,10.5717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2099,2.8108,10.5102,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2100,5.2804,5.9766,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,2.8706,5.6885,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,2.8226,10.6028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2103,2.8108,10.5460,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2104,5.2804,5.9411,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,2.8706,5.6831,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,2.8226,10.6167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2107,2.8108,10.5466,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2108,5.2804,5.8340,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,2.8706,5.6477,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,2.8226,10.5559,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2111,2.8108,10.5019,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2112,5.2804,5.8068,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,2.8706,5.5529,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,2.8226,10.4590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2115,2.8108,10.3480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2116,5.2804,5.9675,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,2.8706,5.6697,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,2.8226,10.4956,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,2.8108,10.4298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2120,5.2804,5.8246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,2.8706,5.5904,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,2.8226,10.4853,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,2.8108,10.4677,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2124,5.2804,5.8587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,2.8706,5.6631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,2.8226,10.4900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,2.8108,10.4147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2128,5.2804,5.8291,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,2.8706,5.6114,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,2.8226,10.3776,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2131,2.8108,10.2553,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2132,5.2804,6.3529,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,2.8706,5.7891,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,2.8226,9.9003,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2135,2.8108,9.9090,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.2804,5.8499,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,2.8706,5.5941,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,2.8226,10.3244,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2139,2.8108,10.1700,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2140,5.2804,5.7944,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,2.8706,5.5569,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,2.8226,10.3744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2143,2.8108,10.3017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2144,5.2804,5.9595,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,2.8706,5.7321,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,2.8226,10.5202,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2147,2.8108,10.4510,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2148,5.2804,5.9498,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,2.8706,5.6867,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,2.8226,10.6454,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2151,2.8108,10.5240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2152,5.2804,5.9951,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,2.8706,5.6993,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,2.8226,11.0457,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2155,2.8108,11.1070,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2156,5.2804,6.6147,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,2.8706,5.8140,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,2.8226,10.3606,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2159,2.8108,10.2432,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2160,5.2804,6.1223,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2161,2.8706,5.7480,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2162,2.8226,10.6480,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2163,2.8108,10.5651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2164,5.2804,6.0729,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2165,2.8706,5.6997,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2166,2.8226,10.6692,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2167,2.8108,10.6218,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2168,5.2804,6.0492,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2169,2.8706,5.7971,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2170,2.8226,10.6920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2171,2.8108,10.6723,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2172,5.2804,6.0728,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2173,2.8706,5.7770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2174,2.8226,10.7562,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2175,2.8108,10.6148,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2176,5.2804,6.1811,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2177,2.8706,5.8068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2178,2.8226,10.8133,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2179,2.8108,10.6827,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2180,5.2804,6.1617,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2181,2.8706,5.7360,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2182,2.8226,10.5707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2183,2.8108,10.3610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2184,5.2804,5.9258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2185,2.8706,5.6154,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2186,2.8226,10.4706,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2187,2.8108,10.3565,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2188,5.2804,5.7886,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2189,2.8706,5.5682,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2190,2.8226,10.4360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2191,2.8108,10.3850,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2192,5.2804,5.7448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2193,2.8706,5.4926,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2194,2.8226,10.3789,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2195,2.8108,10.3025,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2196,5.2804,5.8421,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2197,2.8706,5.6237,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2198,2.8226,10.6316,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2199,2.8108,10.5660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2200,5.2804,5.7950,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2201,2.8706,5.5578,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2202,2.8226,10.4176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2203,2.8108,10.3490,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2204,5.2804,5.8417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2205,2.8706,5.6233,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2206,2.8226,10.5047,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2207,2.8108,10.4707,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2208,5.2804,5.8525,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2209,2.8706,5.6861,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2210,2.8226,10.5204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2211,2.8108,10.4779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2212,5.2804,5.8215,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2213,2.8706,5.6116,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2214,2.8226,10.6306,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2215,2.8108,10.5620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2216,5.2804,5.9346,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2217,2.8706,5.7260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2218,2.8226,10.6675,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2219,2.8108,10.6357,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2220,5.2804,5.7854,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2221,2.8706,5.5328,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2222,2.8226,10.3619,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2223,2.8108,10.2357,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2224,5.2804,5.9261,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2225,2.8706,5.6755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2226,2.8226,10.6776,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2227,2.8108,10.5888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2228,5.2804,5.9787,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2229,2.8706,5.7527,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2230,2.8226,10.6551,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2231,2.8108,10.5419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2232,5.2804,6.0099,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2233,2.8706,5.7354,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2234,2.8226,10.5497,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2235,2.8108,10.4449,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2236,5.2804,5.9631,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2237,2.8706,5.7149,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2238,2.8226,10.6560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2239,2.8108,10.6044,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2240,5.2804,5.9635,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2241,2.8706,5.7337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2242,2.8226,10.5282,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2243,2.8108,10.4258,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2244,5.2804,5.8387,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2245,2.8706,5.5817,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2246,2.8226,10.2992,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2247,2.8108,10.2073,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2248,5.2804,6.0855,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2249,2.8706,5.7647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2250,2.8226,10.5995,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,2.8108,10.5439,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2252,5.2804,5.8478,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2253,2.8706,5.7069,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2254,2.8226,10.5233,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2255,2.8108,10.4659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2256,5.2804,5.8173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2257,2.8706,5.5759,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2258,2.8226,10.5924,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2259,2.8108,10.5445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2260,5.2804,5.8150,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2261,2.8706,5.5870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2262,2.8226,10.5324,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2263,2.8108,10.4699,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2264,5.2804,5.8264,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2265,2.8706,5.6143,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2266,2.8226,10.3851,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2267,2.8108,10.1986,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2268,5.2804,5.9797,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2269,2.8706,5.7225,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2270,2.8226,10.6372,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2271,2.8108,10.5600,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2272,5.2804,5.9439,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2273,2.8706,5.6476,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2274,2.8226,10.5525,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2275,2.8108,10.4449,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2276,5.2804,5.9927,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2277,2.8706,5.6889,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2278,2.8226,10.5895,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2279,2.8108,10.4891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2280,5.2804,5.8676,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2281,2.8706,5.6062,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,2.8226,10.4307,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2283,2.8108,10.3374,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2284,5.2804,5.8133,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2285,2.8706,5.4986,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,2.8226,10.4025,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2287,2.8108,10.2637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2288,5.2804,5.8275,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2289,2.8706,5.6105,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,2.8226,10.4993,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2291,2.8108,10.4665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2292,5.2804,5.7813,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2293,2.8706,5.6162,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,2.8226,10.3952,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2295,2.8108,10.3383,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2296,5.2804,5.9524,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2297,2.8706,5.7352,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,2.8226,10.9034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2299,2.8108,10.9112,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2300,5.2804,5.8392,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2301,2.8706,5.6540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,2.8226,10.6723,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2303,2.8108,10.6844,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.2804,5.8755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2305,2.8706,5.7195,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,2.8226,10.7806,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2307,2.8108,10.7634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2308,5.2804,5.8495,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2309,2.8706,5.7036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,2.8226,10.5916,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2311,2.8108,10.5467,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2312,5.2804,5.8263,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2313,2.8706,5.5602,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,2.8226,10.4327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2315,2.8108,10.3474,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2316,5.2804,5.8923,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2317,2.8706,5.6671,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,2.8226,10.6169,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2319,2.8108,10.5775,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2320,5.2804,5.8303,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,2.8706,5.6335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,2.8226,10.5136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2323,2.8108,10.4631,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2324,5.2804,5.6349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,2.8706,5.4387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,2.8226,10.3564,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2327,2.8108,10.3105,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2328,5.2804,5.8619,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,2.8706,5.6325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,2.8226,10.5441,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2331,2.8108,10.4744,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2332,5.2804,5.8517,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,2.8706,5.5640,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,2.8226,10.4846,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2335,2.8108,10.3727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2336,5.2804,5.9440,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,2.8706,5.6144,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,2.8226,10.4853,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2339,2.8108,10.3558,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2340,5.2804,5.8145,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,2.8706,5.5563,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,2.8226,10.6874,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2343,2.8108,10.5804,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2344,5.2804,5.7970,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,2.8706,5.6178,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,2.8226,10.5040,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2347,2.8108,10.4282,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2348,5.2804,5.9064,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,2.8706,5.6214,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,2.8226,10.4709,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2351,2.8108,10.3537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2352,5.2804,6.1863,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,2.8706,5.8499,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,2.8226,10.7665,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2355,2.8108,10.6898,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2356,5.2804,5.8031,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,2.8706,5.6104,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,2.8226,10.6104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2359,2.8108,10.5884,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2360,5.2804,5.7864,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,2.8706,5.6105,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,2.8226,10.4857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2363,2.8108,10.4465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.2804,6.0233,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,2.8706,5.7693,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,2.8226,10.8043,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2367,2.8108,10.7853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2368,5.2804,5.9714,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,2.8706,5.7816,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,2.8226,10.7192,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2371,2.8108,10.6772,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2372,5.2804,5.8236,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,2.8706,5.5862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,2.8226,10.6065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2375,2.8108,10.5457,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2376,5.2804,5.7658,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,2.8706,5.5352,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,2.8226,10.4772,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,2.8108,10.4368,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2380,5.2804,5.8815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,2.8706,5.6540,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,2.8226,10.6143,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,2.8108,10.5121,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2384,5.2804,5.7691,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,2.8706,5.5291,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,2.8226,10.4303,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,2.8108,10.3283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2388,5.2804,5.7885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,2.8706,5.6071,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,2.8226,10.5679,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,2.8108,10.5441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2392,5.2804,5.7851,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,2.8706,5.6421,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,2.8226,10.4918,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2395,2.8108,10.4552,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2396,5.2804,5.6681,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,2.8706,5.4989,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,2.8226,10.3874,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2399,2.8108,10.3453,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2400,5.2804,5.8840,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2401,2.8706,5.6624,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2402,2.8226,10.4739,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2403,2.8108,10.4503,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2404,5.2804,5.7604,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2405,2.8706,5.5530,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2406,2.8226,11.9957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2407,2.8108,11.9267,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2408,5.2804,16.8473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2409,2.8706,15.4322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2410,2.8226,30.0917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2411,2.8108,30.0560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2412,5.2804,15.8927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2413,2.8706,15.6620,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2414,2.8226,30.3963,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2415,2.8108,30.3382,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2416,5.2804,15.7542,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2417,2.8706,15.5930,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2418,2.8226,30.0906,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2419,2.8108,29.9540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2420,5.2804,15.6860,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2421,2.8706,15.5828,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2422,2.8226,29.9324,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2423,2.8108,29.9637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2424,5.2804,15.9257,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2425,2.8706,15.6825,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2426,2.8226,30.2379,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2427,2.8108,30.1359,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2428,5.2804,15.5910,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2429,2.8706,15.4295,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2430,2.8226,30.1213,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2431,2.8108,30.0472,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2432,5.2804,15.6295,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2433,2.8706,15.4826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2434,2.8226,30.0744,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2435,2.8108,29.9728,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2436,5.2804,15.5666,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2437,2.8706,15.4920,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2438,2.8226,30.1908,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2439,2.8108,30.0680,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2440,5.2804,15.9640,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2441,2.8706,15.5920,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2442,2.8226,30.3638,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2443,2.8108,30.2228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2444,5.2804,15.7688,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2445,2.8706,15.6310,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2446,2.8226,33.1902,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2447,2.8108,33.2357,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2448,5.2804,16.7872,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2449,2.8706,16.0918,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2450,2.8226,30.4520,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2451,2.8108,30.2504,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2452,5.2804,16.1402,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2453,2.8706,15.7027,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2454,2.8226,30.6350,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2455,2.8108,30.5101,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2456,5.2804,16.2093,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2457,2.8706,17.3485,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2458,2.8226,31.4590,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2459,2.8108,31.0640,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2460,5.2804,16.4745,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2461,2.8706,16.0783,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2462,2.8226,28.9448,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2463,2.8108,29.7178,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2464,5.2804,16.0126,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2465,2.8706,15.5833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2466,2.8226,30.3498,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2467,2.8108,30.2576,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2468,5.2804,16.3139,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2469,2.8706,16.0426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2470,2.8226,30.2498,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2471,2.8108,30.0295,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2472,5.2804,16.1412,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2473,2.8706,15.7318,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2474,2.8226,30.2178,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2475,2.8108,30.0839,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2476,5.2804,15.8682,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2477,2.8706,15.5882,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2478,2.8226,30.3020,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2479,2.8108,30.1532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2480,5.2804,16.0210,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2481,2.8706,15.6625,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2482,2.8226,30.3804,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2483,2.8108,30.2251,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2484,5.2804,16.2206,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2485,2.8706,15.7143,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2486,2.8226,30.3473,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2487,2.8108,30.1299,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2488,5.2804,15.7217,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2489,2.8706,15.4860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2490,2.8226,29.8979,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2491,2.8108,29.8290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2492,5.2804,15.8305,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2493,2.8706,15.5275,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2494,2.8226,30.3193,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2495,2.8108,30.1720,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2496,5.2804,16.0119,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2497,2.8706,15.6119,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2498,2.8226,30.3018,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2499,2.8108,30.1062,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2500,5.2804,15.9437,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2501,2.8706,15.5958,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2502,2.8226,30.4401,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2503,2.8108,30.3114,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2504,5.2804,16.0055,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2505,2.8706,15.6106,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2506,2.8226,30.2936,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2507,2.8108,30.1343,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2508,5.2804,16.0918,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2509,2.8706,15.6804,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2510,2.8226,30.2081,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2511,2.8108,30.0811,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2512,5.2804,15.7883,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2513,2.8706,15.5133,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2514,2.8226,30.0249,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2515,2.8108,29.9837,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2516,5.2804,15.6045,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2517,2.8706,15.4545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2518,2.8226,30.2362,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2519,2.8108,30.2071,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2520,5.2804,42.3707,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2521,2.8706,27.2267,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2522,2.8226,25.3348,0.0158,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2523,2.8108,25.6769,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2524,5.2804,5.7678,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2525,2.8706,5.6189,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2526,2.8226,10.5320,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2527,2.8108,10.5362,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2528,5.2804,5.7383,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2529,2.8706,5.6395,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2530,2.8226,10.6469,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2531,2.8108,10.6242,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2532,5.2804,5.7668,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2533,2.8706,5.6108,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2534,2.8226,10.5099,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2535,2.8108,10.5015,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2536,5.2804,5.9333,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2537,2.8706,5.6565,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2538,2.8226,10.5636,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2539,2.8108,10.6156,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2540,5.2804,5.7748,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2541,2.8706,5.6453,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2542,2.8226,10.5207,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2543,2.8108,10.4822,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2544,5.2804,5.8874,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2545,2.8706,5.6642,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2546,2.8226,10.5291,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2547,2.8108,10.5101,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2548,5.2804,5.8090,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2549,2.8706,5.6581,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2550,2.8226,10.5240,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2551,2.8108,10.4626,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2552,5.2804,5.7050,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2553,2.8706,5.5945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2554,2.8226,10.4432,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2555,2.8108,10.4501,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2556,5.2804,5.6730,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2557,2.8706,5.4586,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2558,2.8226,10.4274,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2559,2.8108,10.3712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2560,5.2804,5.7943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2561,2.8706,5.5986,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2562,2.8226,10.4227,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2563,2.8108,10.3101,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2564,5.2804,5.7884,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2565,2.8706,5.5230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2566,2.8226,10.5587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2567,2.8108,10.5403,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2568,5.2804,5.6699,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2569,2.8706,5.5339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2570,2.8226,10.3268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2571,2.8108,10.3038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2572,5.2804,5.7004,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2573,2.8706,5.5238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2574,2.8226,10.3685,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2575,2.8108,10.3530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2576,5.2804,5.6891,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2577,2.8706,5.5364,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2578,2.8226,10.6087,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2579,2.8108,10.5628,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2580,5.2804,5.8583,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2581,2.8706,5.6341,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2582,2.8226,10.4853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2583,2.8108,10.4814,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2584,5.2804,5.8650,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2585,2.8706,5.6748,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2586,2.8226,10.5017,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2587,2.8108,10.4313,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2588,5.2804,5.6775,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2589,2.8706,5.4696,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2590,2.8226,10.7032,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2591,2.8108,10.6603,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2592,5.2804,5.7512,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2593,2.8706,5.5647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2594,2.8226,10.4340,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2595,2.8108,10.3420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2596,5.2804,5.7757,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2597,2.8706,5.6217,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2598,2.8226,10.4211,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2599,2.8108,10.4147,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2600,5.2804,5.7116,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2601,2.8706,5.5790,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2602,2.8226,10.4898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2603,2.8108,10.4573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2604,5.2804,5.7086,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2605,2.8706,5.5688,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2606,2.8226,10.4220,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2607,2.8108,10.3771,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2608,5.2804,5.6846,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2609,2.8706,5.6155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2610,2.8226,10.4152,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2611,2.8108,10.3417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2612,5.2804,5.8625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2613,2.8706,5.6754,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2614,2.8226,10.5622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2615,2.8108,10.5082,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2616,5.2804,5.7295,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2617,2.8706,5.5038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2618,2.8226,10.4365,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2619,2.8108,10.3416,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2620,5.2804,5.8433,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2621,2.8706,5.5884,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2622,2.8226,10.3785,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2623,2.8108,10.2526,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2624,5.2804,5.6846,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2625,2.8706,5.5069,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2626,2.8226,10.3828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2627,2.8108,10.3000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2628,5.2804,5.6991,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2629,2.8706,5.5260,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2630,2.8226,10.4125,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2631,2.8108,10.3541,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2632,5.2804,5.8077,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2633,2.8706,5.6335,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2634,2.8226,10.4823,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2635,2.8108,10.4293,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2636,5.2804,5.8190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2637,2.8706,5.6272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2638,2.8226,10.7775,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2639,2.8108,10.7897,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2640,5.2804,5.6974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2641,2.8706,5.5327,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2642,2.8226,10.4199,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2643,2.8108,10.4103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2644,5.2804,5.8805,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2645,2.8706,5.6935,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2646,2.8226,10.7152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2647,2.8108,10.7099,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2648,5.2804,5.8217,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2649,2.8706,5.6636,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2650,2.8226,10.6188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2651,2.8108,10.5619,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2652,5.2804,5.7027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2653,2.8706,5.5854,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2654,2.8226,10.6036,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2655,2.8108,10.5306,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2656,5.2804,5.6087,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2657,2.8706,5.4592,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2658,2.8226,10.3282,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2659,2.8108,10.3283,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2660,5.2804,5.9334,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2661,2.8706,5.7295,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2662,2.8226,10.8649,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2663,2.8108,10.8572,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2664,5.2804,5.7274,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2665,2.8706,5.5793,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2666,2.8226,10.5881,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2667,2.8108,10.5782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2668,5.2804,5.8390,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2669,2.8706,5.7033,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2670,2.8226,10.6072,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2671,2.8108,10.6220,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2672,5.2804,5.7011,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2673,2.8706,5.5731,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2674,2.8226,10.6896,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2675,2.8108,10.6985,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2676,5.2804,5.6764,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2677,2.8706,5.6390,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2678,2.8226,10.5004,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2679,2.8108,10.4768,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2680,5.2804,5.7976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2681,2.8706,5.6205,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2682,2.8226,10.5252,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2683,2.8108,10.4377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2684,5.2804,5.6988,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2685,2.8706,5.5484,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2686,2.8226,10.5225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2687,2.8108,10.4853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2688,5.2804,5.6549,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2689,2.8706,5.5261,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2690,2.8226,10.5463,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2691,2.8108,10.5164,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2692,5.2804,5.7431,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2693,2.8706,5.6570,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2694,2.8226,10.4410,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2695,2.8108,10.4984,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2696,5.2804,5.8198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2697,2.8706,5.6592,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2698,2.8226,10.6458,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2699,2.8108,10.6560,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2700,5.2804,5.6998,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2701,2.8706,5.6370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2702,2.8226,10.5434,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2703,2.8108,10.5447,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2704,5.2804,5.8540,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2705,2.8706,5.7012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2706,2.8226,10.6054,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2707,2.8108,10.5817,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2708,5.2804,5.7696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2709,2.8706,5.6665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2710,2.8226,10.5612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2711,2.8108,10.5291,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2712,5.2804,5.6324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2713,2.8706,5.5193,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2714,2.8226,10.4497,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2715,2.8108,10.4204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2716,5.2804,5.7606,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2717,2.8706,5.5724,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2718,2.8226,10.4314,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2719,2.8108,10.3245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2720,5.2804,5.7944,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2721,2.8706,5.5154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2722,2.8226,10.4054,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2723,2.8108,10.3618,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2724,5.2804,5.8144,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2725,2.8706,5.5276,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2726,2.8226,10.5027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2727,2.8108,10.4518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2728,5.2804,5.6433,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2729,2.8706,5.4592,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2730,2.8226,10.3091,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2731,2.8108,10.2720,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2732,5.2804,5.6457,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2733,2.8706,5.4942,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2734,2.8226,10.2879,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2735,2.8108,10.2353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2736,5.2804,5.7292,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2737,2.8706,5.5373,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2738,2.8226,10.5378,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2739,2.8108,10.4993,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2740,5.2804,5.7163,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2741,2.8706,5.6311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2742,2.8226,10.2994,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2743,2.8108,10.2695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2744,5.2804,5.6611,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2745,2.8706,5.5135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2746,2.8226,10.3274,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2747,2.8108,10.2740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2748,5.2804,5.7378,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2749,2.8706,5.6137,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2750,2.8226,10.2822,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2751,2.8108,10.2195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2752,5.2804,5.8208,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2753,2.8706,5.5325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2754,2.8226,10.3540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2755,2.8108,10.3266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2756,5.2804,5.6715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2757,2.8706,5.5152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2758,2.8226,10.3120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2759,2.8108,10.3205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2760,5.2804,5.6337,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2761,2.8706,5.4995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2762,2.8226,10.3698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2763,2.8108,10.3435,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2764,5.2804,5.5906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2765,2.8706,5.5028,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2766,2.8226,10.3414,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2767,2.8108,10.3240,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2768,5.2804,5.8050,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2769,2.8706,5.6385,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2770,2.8226,10.4597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2771,2.8108,10.4595,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2772,5.2804,5.6931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2773,2.8706,5.5770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2774,2.8226,10.5644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2775,2.8108,10.5286,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2776,5.2804,5.6406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2777,2.8706,5.5491,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2778,2.8226,10.3470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2779,2.8108,10.3196,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2780,5.2804,5.7348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2781,2.8706,5.5831,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2782,2.8226,10.4429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2783,2.8108,10.4022,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2784,5.2804,5.7926,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2785,2.8706,5.6222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2786,2.8226,10.5573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2787,2.8108,10.5373,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2788,5.2804,5.7603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2789,2.8706,5.7201,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2790,2.8226,10.3888,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2791,2.8108,10.3061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2792,5.2804,5.8312,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2793,2.8706,5.5972,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2794,2.8226,10.3559,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2795,2.8108,10.3208,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2796,5.2804,5.6682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2797,2.8706,5.5676,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2798,2.8226,10.4430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2799,2.8108,10.4192,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2800,5.2804,5.7256,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2801,2.8706,5.5404,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2802,2.8226,10.3875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2803,2.8108,10.3887,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2804,5.2804,5.7204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2805,2.8706,5.5739,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2806,2.8226,10.3334,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2807,2.8108,10.2901,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2808,5.2804,5.6720,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2809,2.8706,5.5680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2810,2.8226,10.3453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2811,2.8108,10.2977,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2812,5.2804,5.8098,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2813,2.8706,5.6447,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2814,2.8226,10.5022,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2815,2.8108,10.4227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2816,5.2804,5.9045,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2817,2.8706,5.7108,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2818,2.8226,10.4864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2819,2.8108,10.4303,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2820,5.2804,5.9400,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2821,2.8706,5.6318,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2822,2.8226,10.5579,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2823,2.8108,10.5100,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2824,5.2804,5.9323,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2825,2.8706,5.5445,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2826,2.8226,10.6512,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2827,2.8108,10.5902,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2828,5.2804,5.7395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2829,2.8706,5.6022,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2830,2.8226,10.4766,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2831,2.8108,10.4494,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2832,5.2804,5.6681,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2833,2.8706,5.4655,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2834,2.8226,10.3631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2835,2.8108,10.3114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2836,5.2804,5.7808,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2837,2.8706,5.5710,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2838,2.8226,10.3704,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2839,2.8108,10.2801,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2840,5.2804,5.7928,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2841,2.8706,5.6295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2842,2.8226,10.5054,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2843,2.8108,10.4668,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2844,5.2804,5.8918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2845,2.8706,5.6930,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2846,2.8226,10.4663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2847,2.8108,10.3751,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2848,5.2804,5.7662,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2849,2.8706,5.6110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2850,2.8226,10.4064,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2851,2.8108,10.3618,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2852,5.2804,5.7846,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2853,2.8706,5.6804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2854,2.8226,10.3428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2855,2.8108,10.2847,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2856,5.2804,6.1697,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2857,2.8706,5.8664,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2858,2.8226,10.4475,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2859,2.8108,10.3085,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2860,5.2804,6.0560,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2861,2.8706,5.7271,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2862,2.8226,10.6448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2863,2.8108,10.5360,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2864,5.2804,5.9258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2865,2.8706,5.6335,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2866,2.8226,10.5635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2867,2.8108,10.5243,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2868,5.2804,5.8238,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2869,2.8706,5.6295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2870,2.8226,10.6788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2871,2.8108,10.5366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2872,5.2804,6.0412,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2873,2.8706,5.7702,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2874,2.8226,10.8070,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2875,2.8108,10.7662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2876,5.2804,5.8325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2877,2.8706,5.5883,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2878,2.8226,10.4685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2879,2.8108,10.3799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2880,5.2804,5.8970,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2881,2.8706,5.6410,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2882,2.8226,11.1412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2883,2.8108,10.8657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2884,5.2804,6.1252,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2885,2.8706,5.7996,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2886,2.8226,10.9014,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2887,2.8108,10.8072,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2888,5.2804,6.1898,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2889,2.8706,5.8884,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2890,2.8226,10.7086,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2891,2.8108,10.5604,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2892,5.2804,6.0378,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2893,2.8706,5.7307,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2894,2.8226,10.6305,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2895,2.8108,10.5394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2896,5.2804,5.7879,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2897,2.8706,5.5265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2898,2.8226,10.5695,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2899,2.8108,10.4567,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2900,5.2804,5.7660,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2901,2.8706,5.5295,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2902,2.8226,10.4799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2903,2.8108,10.4491,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2904,5.2804,5.9637,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2905,2.8706,5.6779,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2906,2.8226,10.6247,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2907,2.8108,10.5760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2908,5.2804,5.7359,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2909,2.8706,5.5715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2910,2.8226,10.6883,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2911,2.8108,10.6063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2912,5.2804,5.7646,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2913,2.8706,5.4792,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2914,2.8226,10.3909,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2915,2.8108,10.3587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2916,5.2804,5.9397,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2917,2.8706,5.6431,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2918,2.8226,10.5716,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2919,2.8108,10.5103,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2920,5.2804,5.7848,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2921,2.8706,5.5425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2922,2.8226,10.4909,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2923,2.8108,10.4080,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2924,5.2804,5.9430,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2925,2.8706,5.6918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2926,2.8226,10.6549,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2927,2.8108,10.6340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2928,5.2804,5.9308,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2929,2.8706,5.7052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2930,2.8226,10.5843,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2931,2.8108,10.5502,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2932,5.2804,5.9963,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2933,2.8706,5.7227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2934,2.8226,10.7203,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2935,2.8108,10.6366,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2936,5.2804,5.9550,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2937,2.8706,5.6315,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2938,2.8226,10.6009,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2939,2.8108,10.5628,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2940,5.2804,6.2193,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2941,2.8706,5.8717,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2942,2.8226,10.7570,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2943,2.8108,10.6614,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2944,5.2804,5.9355,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2945,2.8706,5.6731,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2946,2.8226,10.6393,0.0184,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2947,2.8108,10.5625,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2948,5.2804,5.9673,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2949,2.8706,5.6905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2950,2.8226,10.6410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2951,2.8108,10.6412,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2952,5.2804,5.8293,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2953,2.8706,5.5854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2954,2.8226,10.5158,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2955,2.8108,10.4633,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2956,5.2804,5.9014,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2957,2.8706,5.6650,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2958,2.8226,10.7133,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2959,2.8108,10.6903,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2960,5.2804,5.8948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2961,2.8706,5.7273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2962,2.8226,10.6523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2963,2.8108,10.6148,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2964,5.2804,5.8776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2965,2.8706,5.6897,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2966,2.8226,10.5585,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2967,2.8108,10.5384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2968,5.2804,5.8261,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2969,2.8706,5.6601,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2970,2.8226,10.5727,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2971,2.8108,10.5415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2972,5.2804,5.7914,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2973,2.8706,5.4851,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2974,2.8226,10.3813,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2975,2.8108,10.3402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2976,5.2804,5.9419,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2977,2.8706,5.7505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2978,2.8226,10.6182,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2979,2.8108,10.6059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2980,5.2804,5.7547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2981,2.8706,5.5875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2982,2.8226,10.4789,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2983,2.8108,10.4246,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2984,5.2804,5.7340,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2985,2.8706,5.5728,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2986,2.8226,10.5936,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2987,2.8108,10.5140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2988,5.2804,5.8719,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2989,2.8706,5.6765,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2990,2.8226,10.6162,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2991,2.8108,10.5285,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2992,5.2804,5.8610,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2993,2.8706,5.5161,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2994,2.8226,10.3887,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2995,2.8108,10.3166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2996,5.2804,5.8527,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2997,2.8706,5.6327,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2998,2.8226,10.5808,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2999,2.8108,10.4954,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3000,5.2804,5.9546,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3001,2.8706,5.6890,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3002,2.8226,10.8013,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3003,2.8108,10.6903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3004,5.2804,5.9776,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3005,2.8706,5.7107,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3006,2.8226,10.7062,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3007,2.8108,10.6062,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3008,5.2804,5.7725,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3009,2.8706,5.5622,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3010,2.8226,10.4769,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3011,2.8108,10.3818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3012,5.2804,5.8568,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3013,2.8706,5.5905,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3014,2.8226,10.3266,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3015,2.8108,10.2260,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3016,5.2804,6.0249,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3017,2.8706,5.7758,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3018,2.8226,10.7096,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3019,2.8108,10.6287,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3020,5.2804,5.9687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3021,2.8706,5.7037,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3022,2.8226,10.6595,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3023,2.8108,10.5936,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3024,5.2804,5.9859,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3025,2.8706,5.7209,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3026,2.8226,10.7717,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3027,2.8108,10.7025,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3028,5.2804,6.1354,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3029,2.8706,5.8302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3030,2.8226,10.7074,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3031,2.8108,10.5828,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3032,5.2804,6.2422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3033,2.8706,5.8699,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3034,2.8226,10.7882,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3035,2.8108,10.7319,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3036,5.2804,6.4534,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3037,2.8706,5.9425,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3038,2.8226,10.7274,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3039,2.8108,10.6341,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3040,5.2804,5.7373,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3041,2.8706,5.4737,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3042,2.8226,10.5828,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3043,2.8108,10.5424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3044,5.2804,5.7697,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3045,2.8706,5.5419,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3046,2.8226,10.5310,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3047,2.8108,10.5012,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3048,5.2804,5.6948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3049,2.8706,5.4985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3050,2.8226,10.4000,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3051,2.8108,10.3547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3052,5.2804,5.9464,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3053,2.8706,5.7229,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3054,2.8226,10.5955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3055,2.8108,10.5692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3056,5.2804,5.7978,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3057,2.8706,5.5329,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3058,2.8226,10.5066,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3059,2.8108,10.3872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3060,5.2804,5.7396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3061,2.8706,5.4735,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3062,2.8226,10.5827,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3063,2.8108,10.5470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3064,5.2804,5.6817,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3065,2.8706,5.5292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3066,2.8226,10.4074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3067,2.8108,10.3978,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3068,5.2804,5.7419,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3069,2.8706,5.5743,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3070,2.8226,10.4515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3071,2.8108,10.4185,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3072,5.2804,5.8281,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3073,2.8706,5.6714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3074,2.8226,10.4548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3075,2.8108,10.3980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3076,5.2804,5.7459,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3077,2.8706,5.5390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3078,2.8226,10.3979,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3079,2.8108,10.3728,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3080,5.2804,5.8296,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3081,2.8706,5.5838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3082,2.8226,10.4491,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3083,2.8108,10.3786,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3084,5.2804,5.9896,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3085,2.8706,5.7843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3086,2.8226,10.7325,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3087,2.8108,10.6470,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3088,5.2804,5.8415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3089,2.8706,5.5289,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3090,2.8226,10.7072,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3091,2.8108,10.6159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3092,5.2804,5.9282,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3093,2.8706,5.6383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3094,2.8226,10.5260,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3095,2.8108,10.4380,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3096,5.2804,6.1173,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3097,2.8706,5.7544,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3098,2.8226,10.7444,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3099,2.8108,10.5972,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3100,5.2804,6.2232,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3101,2.8706,5.8219,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3102,2.8226,10.6688,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3103,2.8108,10.4633,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3104,5.2804,6.3482,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3105,2.8706,5.8489,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3106,2.8226,10.6916,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3107,2.8108,10.6190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3108,5.2804,6.2751,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3109,2.8706,5.9072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3110,2.8226,10.9916,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3111,2.8108,10.8509,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3112,5.2804,6.3756,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3113,2.8706,5.9485,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3114,2.8226,11.0264,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3115,2.8108,10.9107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3116,5.2804,6.2636,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3117,2.8706,5.8178,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3118,2.8226,10.8485,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3119,2.8108,10.7763,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3120,5.2804,6.3854,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3121,2.8706,6.0605,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3122,2.8226,10.8990,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3123,2.8108,10.7624,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3124,5.2804,6.3325,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3125,2.8706,5.8697,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3126,2.8226,10.7507,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3127,2.8108,10.6606,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3128,5.2804,6.0260,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3129,2.8706,5.6795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3130,2.8226,10.5724,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3131,2.8108,10.4676,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3132,5.2804,5.8680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3133,2.8706,5.6420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3134,2.8226,10.5938,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3135,2.8108,10.5051,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3136,5.2804,5.7311,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3137,2.8706,5.6098,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3138,2.8226,10.5356,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3139,2.8108,10.4691,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3140,5.2804,5.7806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3141,2.8706,5.6180,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3142,2.8226,10.4872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3143,2.8108,10.4173,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3144,5.2804,5.9395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3145,2.8706,5.7014,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3146,2.8226,10.7281,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3147,2.8108,10.5282,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3148,5.2804,5.9470,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3149,2.8706,5.6536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3150,2.8226,10.3353,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3151,2.8108,10.2318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3152,5.2804,5.9952,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3153,2.8706,5.6856,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3154,2.8226,10.7182,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3155,2.8108,10.6530,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3156,5.2804,6.0078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3157,2.8706,5.7530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3158,2.8226,10.6797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3159,2.8108,10.6129,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3160,5.2804,6.0533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3161,2.8706,5.8269,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3162,2.8226,10.7975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3163,2.8108,10.6822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3164,5.2804,6.4365,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3165,2.8706,6.1042,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3166,2.8226,11.0275,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3167,2.8108,10.8323,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3168,5.2804,6.6112,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3169,2.8706,5.8166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3170,2.8226,10.0463,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3171,2.8108,9.7050,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3172,5.2804,6.1195,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3173,2.8706,5.7065,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3174,2.8226,10.5380,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3175,2.8108,10.4240,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3176,5.2804,6.0348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3177,2.8706,5.7418,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3178,2.8226,10.5263,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3179,2.8108,10.3999,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3180,5.2804,5.7926,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3181,2.8706,5.6393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3182,2.8226,10.3834,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3183,2.8108,10.2760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3184,5.2804,6.0777,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3185,2.8706,5.7248,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3186,2.8226,10.5312,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3187,2.8108,10.4945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3188,5.2804,5.8151,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3189,2.8706,5.6290,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3190,2.8226,10.5410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3191,2.8108,10.4897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3192,5.2804,5.8920,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3193,2.8706,5.6600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3194,2.8226,10.3735,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3195,2.8108,10.3343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3196,5.2804,5.8898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3197,2.8706,5.6851,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3198,2.8226,10.3097,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3199,2.8108,10.1956,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3200,5.2804,6.3947,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3201,2.8706,5.6434,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3202,2.8226,9.9098,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3203,2.8108,9.9713,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3204,5.2804,6.5779,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3205,2.8706,5.7474,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3206,2.8226,10.4462,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3207,2.8108,10.0377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3208,5.2804,6.4466,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3209,2.8706,5.7940,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3210,2.8226,10.4989,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3211,2.8108,10.1055,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3212,5.2804,14.3671,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3213,2.8706,13.4746,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3214,2.8226,12.9597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3215,2.8108,12.5034,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3216,5.2804,6.5020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3217,2.8706,5.6230,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3218,2.8226,10.5566,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3219,2.8108,10.4093,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3220,5.2804,6.5803,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3221,2.8706,5.9592,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3222,2.8226,10.2179,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3223,2.8108,10.0304,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3224,5.2804,6.2768,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3225,2.8706,5.8495,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3226,2.8226,10.3804,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3227,2.8108,10.0627,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3228,5.2804,6.6866,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3229,2.8706,5.8266,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3230,2.8226,10.3636,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3231,2.8108,10.2356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3232,5.2804,6.2272,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3233,2.8706,5.7532,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3234,2.8226,10.4794,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3235,2.8108,10.3852,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3236,5.2804,6.0228,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3237,2.8706,5.6773,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3238,2.8226,10.4432,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3239,2.8108,10.3634,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3240,5.2804,6.1100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3241,2.8706,5.7995,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3242,2.8226,10.6026,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3243,2.8108,10.5562,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3244,5.2804,5.7960,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3245,2.8706,5.6215,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3246,2.8226,11.7521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3247,2.8108,11.7384,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3248,5.2804,15.6978,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3249,2.8706,15.5185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3250,2.8226,30.1656,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3251,2.8108,30.1576,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3252,5.2804,16.0203,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3253,2.8706,15.7287,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3254,2.8226,30.4120,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3255,2.8108,30.2889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3256,5.2804,16.3442,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3257,2.8706,15.8934,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3258,2.8226,30.7898,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3259,2.8108,31.4893,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3260,5.2804,16.9722,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3261,2.8706,16.6319,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3262,2.8226,30.7921,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3263,2.8108,30.8022,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3264,5.2804,16.7132,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3265,2.8706,15.9872,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3266,2.8226,29.7936,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3267,2.8108,29.9065,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3268,5.2804,16.8768,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3269,2.8706,16.2737,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3270,2.8226,28.6112,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3271,2.8108,30.0087,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3272,5.2804,16.5490,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3273,2.8706,16.0066,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3274,2.8226,28.7504,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3275,2.8108,29.8545,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3276,5.2804,16.5560,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3277,2.8706,16.0868,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3278,2.8226,29.0119,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3279,2.8108,30.0742,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3280,5.2804,16.8983,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3281,2.8706,16.0103,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3282,2.8226,29.7752,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3283,2.8108,30.1667,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3284,5.2804,16.7828,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3285,2.8706,15.9701,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3286,2.8226,30.1849,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3287,2.8108,29.8827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3288,5.2804,17.0458,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3289,2.8706,16.0463,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3290,2.8226,30.5418,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3291,2.8108,30.2539,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3292,5.2804,16.7895,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3293,2.8706,15.7357,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3294,2.8226,28.7300,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3295,2.8108,29.8878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3296,5.2804,15.8736,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3297,2.8706,15.5111,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3298,2.8226,30.0612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3299,2.8108,30.0062,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3300,5.2804,15.4932,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3301,2.8706,15.3988,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3302,2.8226,29.8386,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3303,2.8108,29.8433,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3304,5.2804,15.4423,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3305,2.8706,15.4254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3306,2.8226,29.9068,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3307,2.8108,29.9152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3308,5.2804,15.6063,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3309,2.8706,15.4012,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3310,2.8226,29.9419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3311,2.8108,29.9363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3312,5.2804,15.6180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3313,2.8706,15.4330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3314,2.8226,29.9394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3315,2.8108,29.9152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3316,5.2804,15.5652,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3317,2.8706,15.4109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3318,2.8226,29.9942,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3319,2.8108,29.8923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3320,5.2804,15.8018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3321,2.8706,15.5352,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3322,2.8226,30.2380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3323,2.8108,30.1636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3324,5.2804,15.7423,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3325,2.8706,15.5431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3326,2.8226,30.2083,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3327,2.8108,30.0465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3328,5.2804,15.7159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3329,2.8706,15.4632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3330,2.8226,30.0614,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3331,2.8108,30.0251,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3332,5.2804,15.6148,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3333,2.8706,15.5041,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3334,2.8226,30.1998,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3335,2.8108,30.1003,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3336,5.2804,15.9727,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3337,2.8706,15.6171,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3338,2.8226,30.2931,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3339,2.8108,30.2336,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3340,5.2804,15.8814,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3341,2.8706,15.5962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3342,2.8226,30.2518,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3343,2.8108,30.0760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3344,5.2804,16.1125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3345,2.8706,15.7525,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3346,2.8226,30.4485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3347,2.8108,30.3774,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3348,5.2804,16.1665,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3349,2.8706,15.8590,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3350,2.8226,30.7144,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3351,2.8108,30.5087,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3352,5.2804,16.3521,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3353,2.8706,15.8442,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3354,2.8226,29.8022,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3355,2.8108,29.6769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3356,5.2804,16.1995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3357,2.8706,15.7475,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3358,2.8226,30.4881,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3359,2.8108,30.4332,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3360,5.2804,36.5117,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3361,2.8706,28.5872,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3362,2.8226,26.9795,0.0074,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3363,2.8108,26.0888,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3364,5.2804,5.7905,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3365,2.8706,5.6455,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3366,2.8226,10.5576,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3367,2.8108,10.6750,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3368,5.2804,5.6705,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3369,2.8706,5.6259,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3370,2.8226,10.5181,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3371,2.8108,10.5420,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3372,5.2804,5.7654,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3373,2.8706,5.6950,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3374,2.8226,10.5772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3375,2.8108,10.5883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3376,5.2804,5.9475,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3377,2.8706,5.7923,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3378,2.8226,10.4610,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3379,2.8108,10.4487,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3380,5.2804,5.7316,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3381,2.8706,5.7025,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3382,2.8226,10.2977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3383,2.8108,10.4397,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3384,5.2804,5.7862,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3385,2.8706,5.6502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3386,2.8226,10.4476,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3387,2.8108,10.5522,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3388,5.2804,5.7918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3389,2.8706,5.7097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3390,2.8226,10.6403,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3391,2.8108,10.6134,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3392,5.2804,5.6955,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3393,2.8706,5.6630,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3394,2.8226,10.4808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3395,2.8108,10.5898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3396,5.2804,5.7071,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3397,2.8706,5.6651,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3398,2.8226,10.5185,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3399,2.8108,10.5758,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3400,5.2804,5.7041,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3401,2.8706,5.6442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3402,2.8226,10.5712,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3403,2.8108,10.5681,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3404,5.2804,5.6535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3405,2.8706,5.6351,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3406,2.8226,10.4853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3407,2.8108,10.5157,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3408,5.2804,5.6621,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3409,2.8706,5.5922,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3410,2.8226,10.3582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3411,2.8108,10.3564,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3412,5.2804,5.6078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3413,2.8706,5.5619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3414,2.8226,10.2898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3415,2.8108,10.3242,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3416,5.2804,5.7602,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3417,2.8706,5.6585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3418,2.8226,10.5409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3419,2.8108,10.5503,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3420,5.2804,5.6887,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3421,2.8706,5.5617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3422,2.8226,10.3737,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3423,2.8108,10.3792,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3424,5.2804,5.7293,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3425,2.8706,5.5841,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3426,2.8226,10.4891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3427,2.8108,10.4797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3428,5.2804,5.6386,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3429,2.8706,5.6222,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3430,2.8226,10.4337,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3431,2.8108,10.5069,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3432,5.2804,5.6280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3433,2.8706,5.5812,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3434,2.8226,10.4107,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3435,2.8108,10.3065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3436,5.2804,5.8650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3437,2.8706,5.6816,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3438,2.8226,10.6650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3439,2.8108,10.6029,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3440,5.2804,5.7496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3441,2.8706,5.6558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3442,2.8226,10.4213,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3443,2.8108,10.3918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3444,5.2804,6.0950,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3445,2.8706,5.8003,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3446,2.8226,10.6534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3447,2.8108,10.5654,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3448,5.2804,5.7866,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3449,2.8706,5.6636,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3450,2.8226,10.4981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3451,2.8108,10.4426,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3452,5.2804,5.6406,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3453,2.8706,5.5672,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3454,2.8226,10.5169,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3455,2.8108,10.4753,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3456,5.2804,5.7219,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3457,2.8706,5.5779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3458,2.8226,10.2894,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3459,2.8108,10.3539,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3460,5.2804,5.7596,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3461,2.8706,5.6701,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3462,2.8226,10.4698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3463,2.8108,10.5285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3464,5.2804,5.7165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3465,2.8706,5.6351,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3466,2.8226,10.4680,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3467,2.8108,10.4617,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3468,5.2804,5.6675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3469,2.8706,5.5624,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3470,2.8226,10.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3471,2.8108,10.3905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3472,5.2804,5.6885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3473,2.8706,5.7385,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3474,2.8226,10.3510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3475,2.8108,10.3941,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3476,5.2804,5.8285,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3477,2.8706,5.7146,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3478,2.8226,10.6203,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3479,2.8108,10.5703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3480,5.2804,5.8062,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3481,2.8706,5.6430,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3482,2.8226,10.6566,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3483,2.8108,10.6088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3484,5.2804,5.8700,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3485,2.8706,5.6385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3486,2.8226,10.4186,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3487,2.8108,10.3247,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3488,5.2804,5.6307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3489,2.8706,5.5694,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3490,2.8226,10.3243,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3491,2.8108,10.3201,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3492,5.2804,5.7289,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3493,2.8706,5.6324,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3494,2.8226,10.5181,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3495,2.8108,10.4968,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3496,5.2804,5.8611,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3497,2.8706,5.6915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3498,2.8226,10.6459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3499,2.8108,10.5976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3500,5.2804,5.7356,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3501,2.8706,5.5721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3502,2.8226,10.5531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3503,2.8108,10.5315,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3504,5.2804,5.9642,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3505,2.8706,5.7383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3506,2.8226,10.5344,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3507,2.8108,10.4685,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3508,5.2804,5.9931,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3509,2.8706,5.7742,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3510,2.8226,10.7523,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3511,2.8108,10.7085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3512,5.2804,5.9307,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3513,2.8706,5.7031,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3514,2.8226,10.5117,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3515,2.8108,10.4562,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3516,5.2804,5.7950,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3517,2.8706,5.7399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3518,2.8226,10.3928,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3519,2.8108,10.3591,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3520,5.2804,5.9946,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3521,2.8706,5.7377,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3522,2.8226,10.6555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3523,2.8108,10.5409,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3524,5.2804,6.0091,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3525,2.8706,5.8190,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3526,2.8226,10.7678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3527,2.8108,10.6588,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3528,5.2804,5.7864,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3529,2.8706,5.6431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3530,2.8226,10.5634,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3531,2.8108,10.5087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3532,5.2804,5.8294,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3533,2.8706,5.6882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3534,2.8226,10.6477,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3535,2.8108,10.5137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3536,5.2804,5.8959,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3537,2.8706,5.6867,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3538,2.8226,10.6511,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3539,2.8108,10.5075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3540,5.2804,5.9400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3541,2.8706,5.7595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3542,2.8226,10.5713,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3543,2.8108,10.4192,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3544,5.2804,6.0882,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3545,2.8706,5.7224,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3546,2.8226,10.7340,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3547,2.8108,10.0698,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3548,5.2804,6.6034,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3549,2.8706,5.9913,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3550,2.8226,10.1085,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3551,2.8108,10.1962,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3552,5.2804,6.6600,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3553,2.8706,5.9149,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3554,2.8226,10.8326,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3555,2.8108,10.4295,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3556,5.2804,6.0487,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3557,2.8706,5.7138,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3558,2.8226,10.5826,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3559,2.8108,10.4416,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3560,5.2804,6.0213,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3561,2.8706,5.7239,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3562,2.8226,10.5835,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3563,2.8108,10.5340,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3564,5.2804,5.8817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3565,2.8706,5.6618,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3566,2.8226,10.4792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3567,2.8108,10.4149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3568,5.2804,5.9087,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3569,2.8706,5.6795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3570,2.8226,10.6100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3571,2.8108,10.5550,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3572,5.2804,5.7793,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3573,2.8706,5.6712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3574,2.8226,10.4053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3575,2.8108,10.3204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3576,5.2804,5.7437,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3577,2.8706,5.6487,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3578,2.8226,10.4125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3579,2.8108,10.3916,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3580,5.2804,5.8163,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3581,2.8706,5.7444,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3582,2.8226,10.4612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3583,2.8108,10.3703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3584,5.2804,5.9992,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3585,2.8706,5.7748,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3586,2.8226,10.6918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3587,2.8108,10.5002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3588,5.2804,6.1862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3589,2.8706,5.8469,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3590,2.8226,10.6355,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3591,2.8108,10.5091,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3592,5.2804,5.8628,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3593,2.8706,5.7532,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3594,2.8226,10.4955,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3595,2.8108,10.3661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3596,5.2804,6.0790,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3597,2.8706,5.7289,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3598,2.8226,10.7821,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3599,2.8108,10.5350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3600,5.2804,5.9599,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3601,2.8706,5.7182,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3602,2.8226,10.6010,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3603,2.8108,10.5243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3604,5.2804,5.9152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3605,2.8706,5.7080,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3606,2.8226,10.5104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3607,2.8108,10.4521,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3608,5.2804,5.7605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3609,2.8706,5.6375,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3610,2.8226,10.4447,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3611,2.8108,10.4076,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3612,5.2804,5.9310,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3613,2.8706,5.7535,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3614,2.8226,10.6917,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3615,2.8108,10.6538,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3616,5.2804,5.9021,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3617,2.8706,5.7642,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3618,2.8226,10.6595,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3619,2.8108,10.6480,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3620,5.2804,6.2384,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3621,2.8706,5.7880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3622,2.8226,10.6150,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3623,2.8108,10.5441,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3624,5.2804,6.2977,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3625,2.8706,5.8142,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3626,2.8226,8.9769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3627,2.8108,8.4489,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3628,5.2804,6.0681,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3629,2.8706,5.7514,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3630,2.8226,10.6775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3631,2.8108,10.6055,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3632,5.2804,5.8444,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3633,2.8706,5.6741,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3634,2.8226,10.4189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3635,2.8108,10.3933,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3636,5.2804,5.7410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3637,2.8706,5.6496,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3638,2.8226,10.4036,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3639,2.8108,10.3325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3640,5.2804,6.0131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3641,2.8706,5.7695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3642,2.8226,10.6052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3643,2.8108,10.5373,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3644,5.2804,5.8061,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3645,2.8706,5.6872,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3646,2.8226,10.4755,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3647,2.8108,10.3820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3648,5.2804,5.8361,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3649,2.8706,5.7647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3650,2.8226,10.9425,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3651,2.8108,10.7417,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3652,5.2804,6.4800,0.0386,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3653,2.8706,5.9350,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3654,2.8226,10.9478,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3655,2.8108,10.6887,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3656,5.2804,6.6714,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3657,2.8706,5.9864,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3658,2.8226,9.1521,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3659,2.8108,8.8155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3660,5.2804,6.0429,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3661,2.8706,5.7362,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3662,2.8226,10.4607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3663,2.8108,10.3892,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3664,5.2804,5.7527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3665,2.8706,5.6627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3666,2.8226,10.4076,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3667,2.8108,10.3522,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3668,5.2804,5.7820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3669,2.8706,5.6303,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3670,2.8226,10.6725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3671,2.8108,10.4216,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3672,5.2804,5.7965,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3673,2.8706,5.7080,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3674,2.8226,10.4253,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3675,2.8108,10.3294,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3676,5.2804,5.7598,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3677,2.8706,5.6731,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3678,2.8226,10.3857,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3679,2.8108,10.3302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3680,5.2804,5.7655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3681,2.8706,5.6651,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3682,2.8226,10.5657,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3683,2.8108,10.4663,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3684,5.2804,6.1347,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3685,2.8706,5.6937,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3686,2.8226,10.5877,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3687,2.8108,10.4940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3688,5.2804,5.8107,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3689,2.8706,5.6522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3690,2.8226,10.6151,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3691,2.8108,10.5696,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3692,5.2804,5.7654,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3693,2.8706,5.5948,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3694,2.8226,10.6006,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3695,2.8108,10.5871,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3696,5.2804,5.7111,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3697,2.8706,5.5948,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3698,2.8226,10.6669,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3699,2.8108,10.6847,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3700,5.2804,5.8752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3701,2.8706,5.7175,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3702,2.8226,10.6148,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3703,2.8108,10.5992,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3704,5.2804,5.7198,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3705,2.8706,5.5857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3706,2.8226,10.3575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3707,2.8108,10.3666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3708,5.2804,5.6707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3709,2.8706,5.6122,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3710,2.8226,10.3715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3711,2.8108,10.4128,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3712,5.2804,5.7407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3713,2.8706,5.6379,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3714,2.8226,10.4828,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3715,2.8108,10.4302,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3716,5.2804,5.8042,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3717,2.8706,5.6238,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3718,2.8226,10.5325,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3719,2.8108,10.5206,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3720,5.2804,5.9633,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3721,2.8706,5.7040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3722,2.8226,10.5463,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3723,2.8108,10.4575,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3724,5.2804,6.0417,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3725,2.8706,5.7365,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3726,2.8226,10.6025,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3727,2.8108,10.5181,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3728,5.2804,5.9295,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3729,2.8706,5.6601,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3730,2.8226,10.5843,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3731,2.8108,10.5155,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3732,5.2804,5.9433,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3733,2.8706,5.7584,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3734,2.8226,10.5443,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3735,2.8108,10.3908,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3736,5.2804,5.9048,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3737,2.8706,5.6309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3738,2.8226,10.7081,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3739,2.8108,10.6519,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3740,5.2804,6.0658,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3741,2.8706,5.7220,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3742,2.8226,10.5332,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3743,2.8108,10.4781,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3744,5.2804,6.0826,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3745,2.8706,5.7947,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3746,2.8226,10.6682,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3747,2.8108,10.5342,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3748,5.2804,6.0051,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3749,2.8706,5.7969,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3750,2.8226,10.6043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3751,2.8108,10.4727,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3752,5.2804,6.0627,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3753,2.8706,5.7513,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3754,2.8226,10.5495,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3755,2.8108,10.4501,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3756,5.2804,6.1668,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3757,2.8706,5.8128,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3758,2.8226,10.5653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3759,2.8108,10.4541,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3760,5.2804,6.1889,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3761,2.8706,5.8165,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3762,2.8226,10.6570,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3763,2.8108,10.4927,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3764,5.2804,6.0192,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3765,2.8706,5.7613,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3766,2.8226,10.5982,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3767,2.8108,10.4738,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3768,5.2804,6.0458,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3769,2.8706,5.7570,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3770,2.8226,10.4981,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3771,2.8108,10.3809,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3772,5.2804,5.9854,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3773,2.8706,5.8909,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3774,2.8226,10.6222,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3775,2.8108,10.4524,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3776,5.2804,6.0555,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3777,2.8706,5.7940,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3778,2.8226,10.7153,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3779,2.8108,10.6762,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3780,5.2804,6.0451,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3781,2.8706,5.7064,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3782,2.8226,10.4716,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3783,2.8108,10.3582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3784,5.2804,5.9935,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3785,2.8706,5.7337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3786,2.8226,10.5872,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3787,2.8108,10.3930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3788,5.2804,6.5435,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3789,2.8706,6.0644,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3790,2.8226,11.2444,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3791,2.8108,11.1426,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3792,5.2804,6.5468,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3793,2.8706,5.8715,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3794,2.8226,10.4154,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3795,2.8108,10.4296,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3796,5.2804,6.5752,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3797,2.8706,5.9988,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3798,2.8226,9.3221,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3799,2.8108,10.5488,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3800,5.2804,7.0980,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3801,2.8706,5.8637,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3802,2.8226,11.1362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3803,2.8108,10.6714,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3804,5.2804,6.7167,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3805,2.8706,5.8200,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3806,2.8226,10.5001,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3807,2.8108,10.3375,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3808,5.2804,6.7825,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3809,2.8706,6.0730,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3810,2.8226,10.4791,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3811,2.8108,10.4149,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3812,5.2804,7.6592,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3813,2.8706,5.8804,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3814,2.8226,10.5190,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3815,2.8108,10.3403,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3816,5.2804,6.5398,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3817,2.8706,5.9208,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3818,2.8226,11.6208,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3819,2.8108,10.3159,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3820,5.2804,7.0154,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3821,2.8706,5.8637,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3822,2.8226,11.3247,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3823,2.8108,10.9629,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3824,5.2804,6.7660,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3825,2.8706,5.8148,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3826,2.8226,10.5844,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3827,2.8108,10.3888,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3828,5.2804,6.9726,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3829,2.8706,6.0255,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3830,2.8226,10.8027,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3831,2.8108,10.2617,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3832,5.2804,6.7510,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3833,2.8706,6.0806,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3834,2.8226,8.9069,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3835,2.8108,8.6771,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3836,5.2804,7.1341,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3837,2.8706,6.1560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3838,2.8226,10.8323,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3839,2.8108,10.4657,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3840,5.2804,6.9000,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3841,2.8706,5.8796,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3842,2.8226,10.8220,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3843,2.8108,10.7537,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3844,5.2804,6.6247,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3845,2.8706,5.9722,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3846,2.8226,10.6681,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3847,2.8108,10.2411,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3848,5.2804,7.5285,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3849,2.8706,6.8277,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3850,2.8226,10.6648,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3851,2.8108,10.3665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3852,5.2804,7.1267,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3853,2.8706,6.1866,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3854,2.8226,9.7935,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3855,2.8108,8.9281,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3856,5.2804,6.3213,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3857,2.8706,5.9124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3858,2.8226,10.3166,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3859,2.8108,10.1823,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3860,5.2804,6.9528,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3861,2.8706,6.1760,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3862,2.8226,10.6606,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3863,2.8108,10.5506,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3864,5.2804,6.6428,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3865,2.8706,5.9502,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3866,2.8226,10.1551,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3867,2.8108,10.1342,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3868,5.2804,6.4870,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3869,2.8706,5.8096,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3870,2.8226,10.9992,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3871,2.8108,10.6410,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3872,5.2804,6.6773,0.0289,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3873,2.8706,5.7985,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3874,2.8226,10.7581,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3875,2.8108,10.7489,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3876,5.2804,6.6068,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3877,2.8706,5.8805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3878,2.8226,10.6182,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3879,2.8108,10.4277,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3880,5.2804,6.6316,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3881,2.8706,5.9250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3882,2.8226,10.2260,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3883,2.8108,10.0762,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3884,5.2804,6.5640,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3885,2.8706,5.9395,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3886,2.8226,11.2827,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3887,2.8108,10.8968,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3888,5.2804,6.3901,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3889,2.8706,5.7802,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3890,2.8226,10.3722,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3891,2.8108,10.3051,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3892,5.2804,6.2058,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3893,2.8706,5.8669,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3894,2.8226,10.7127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3895,2.8108,10.6108,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3896,5.2804,5.7210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3897,2.8706,5.5013,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3898,2.8226,10.4597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3899,2.8108,10.4738,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3900,5.2804,5.8527,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3901,2.8706,5.7057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3902,2.8226,10.5729,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3903,2.8108,10.5065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3904,5.2804,5.9031,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3905,2.8706,5.6504,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3906,2.8226,10.5002,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3907,2.8108,10.4809,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3908,5.2804,5.7888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3909,2.8706,5.6695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3910,2.8226,10.5381,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3911,2.8108,10.5590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3912,5.2804,5.7393,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3913,2.8706,5.6547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3914,2.8226,10.5195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3915,2.8108,10.5312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3916,5.2804,5.7473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3917,2.8706,5.6268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3918,2.8226,10.4574,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3919,2.8108,10.4189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3920,5.2804,5.6383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3921,2.8706,5.5224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3922,2.8226,10.4509,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3923,2.8108,10.4645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3924,5.2804,5.8641,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3925,2.8706,5.6509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3926,2.8226,10.5529,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3927,2.8108,10.5009,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3928,5.2804,5.9989,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3929,2.8706,5.6555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3930,2.8226,10.6315,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3931,2.8108,10.5226,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3932,5.2804,6.0953,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3933,2.8706,5.7011,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3934,2.8226,10.5331,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3935,2.8108,10.3129,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3936,5.2804,6.0580,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3937,2.8706,5.7438,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3938,2.8226,10.4783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3939,2.8108,10.3187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3940,5.2804,6.2417,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3941,2.8706,5.7776,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3942,2.8226,10.6779,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3943,2.8108,10.4548,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3944,5.2804,6.4102,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3945,2.8706,5.9710,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3946,2.8226,10.8507,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3947,2.8108,11.6273,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3948,5.2804,6.7970,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3949,2.8706,5.9575,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3950,2.8226,10.7547,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3951,2.8108,10.5171,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3952,5.2804,6.7244,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3953,2.8706,5.8275,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3954,2.8226,9.9824,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3955,2.8108,10.1476,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3956,5.2804,6.1431,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3957,2.8706,5.7098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3958,2.8226,10.7039,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3959,2.8108,10.5142,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3960,5.2804,6.1338,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3961,2.8706,5.7466,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3962,2.8226,10.7559,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3963,2.8108,10.7298,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3964,5.2804,5.9573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3965,2.8706,5.6659,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3966,2.8226,10.5348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3967,2.8108,10.4746,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3968,5.2804,5.9262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3969,2.8706,5.6748,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3970,2.8226,10.5728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3971,2.8108,10.5274,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3972,5.2804,5.9829,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3973,2.8706,5.7156,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3974,2.8226,10.6740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3975,2.8108,10.6058,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3976,5.2804,5.9709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3977,2.8706,5.6871,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3978,2.8226,10.6408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3979,2.8108,10.5266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3980,5.2804,5.9357,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3981,2.8706,5.7444,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3982,2.8226,10.6337,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3983,2.8108,10.5338,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3984,5.2804,6.6313,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3985,2.8706,5.9040,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3986,2.8226,10.0637,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3987,2.8108,10.2220,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3988,5.2804,7.0023,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3989,2.8706,6.9485,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3990,2.8226,10.0696,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3991,2.8108,10.0194,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3992,5.2804,6.3872,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3993,2.8706,5.8312,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3994,2.8226,10.6687,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3995,2.8108,10.4296,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3996,5.2804,5.9610,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3997,2.8706,5.8131,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3998,2.8226,10.1939,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3999,2.8108,10.0960,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4000,5.2804,5.9386,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4001,2.8706,5.6618,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4002,2.8226,10.3876,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4003,2.8108,10.3184,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4004,5.2804,6.0806,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4005,2.8706,5.7079,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4006,2.8226,10.4589,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4007,2.8108,10.4517,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4008,5.2804,6.0509,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4009,2.8706,5.7680,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4010,2.8226,10.5706,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4011,2.8108,10.4802,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4012,5.2804,6.3133,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4013,2.8706,6.0012,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4014,2.8226,10.3124,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4015,2.8108,10.1965,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4016,5.2804,6.1131,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4017,2.8706,5.7608,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4018,2.8226,9.4582,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4019,2.8108,9.5956,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4020,5.2804,5.9159,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4021,2.8706,5.6678,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4022,2.8226,10.3695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4023,2.8108,10.2850,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4024,5.2804,5.7475,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4025,2.8706,5.6245,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4026,2.8226,10.3427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4027,2.8108,10.3407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4028,5.2804,5.8623,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4029,2.8706,5.6311,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4030,2.8226,10.3281,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4031,2.8108,10.2828,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4032,5.2804,6.0903,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4033,2.8706,5.7012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4034,2.8226,10.5383,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4035,2.8108,10.4545,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4036,5.2804,6.0381,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4037,2.8706,5.6808,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4038,2.8226,10.5040,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4039,2.8108,10.3475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4040,5.2804,5.9639,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4041,2.8706,5.6389,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4042,2.8226,10.5594,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4043,2.8108,10.5065,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4044,5.2804,6.0977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4045,2.8706,5.7742,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4046,2.8226,10.8012,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4047,2.8108,10.7302,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4048,5.2804,6.1695,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4049,2.8706,5.8029,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4050,2.8226,10.6352,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4051,2.8108,10.4924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4052,5.2804,6.2227,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4053,2.8706,5.8741,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4054,2.8226,11.4086,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4055,2.8108,11.0370,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4056,5.2804,6.1882,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4057,2.8706,5.7728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4058,2.8226,10.6376,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4059,2.8108,10.5100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4060,5.2804,6.0978,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4061,2.8706,5.6887,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4062,2.8226,10.7336,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4063,2.8108,10.6397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4064,5.2804,6.2455,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4065,2.8706,5.8055,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4066,2.8226,10.8536,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4067,2.8108,10.6328,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4068,5.2804,5.9729,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4069,2.8706,5.6280,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4070,2.8226,10.7682,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4071,2.8108,10.6484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4072,5.2804,5.9902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4073,2.8706,5.7220,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4074,2.8226,10.6955,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4075,2.8108,10.5798,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4076,5.2804,6.1214,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4077,2.8706,5.7515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4078,2.8226,10.7084,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4079,2.8108,10.6480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4080,5.2804,5.9623,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4081,2.8706,5.6627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4082,2.8226,10.4841,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4083,2.8108,10.3582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4084,5.2804,6.1754,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4085,2.8706,5.8149,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4086,2.8226,12.2009,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4087,2.8108,12.0682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4088,5.2804,16.1809,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4089,2.8706,15.8248,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4090,2.8226,30.7376,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4091,2.8108,30.5133,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4092,5.2804,16.2803,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4093,2.8706,15.7148,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4094,2.8226,30.5341,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4095,2.8108,30.3223,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4096,5.2804,16.3129,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4097,2.8706,15.8428,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4098,2.8226,30.5647,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4099,2.8108,30.4103,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4100,5.2804,16.5706,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4101,2.8706,16.0899,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4102,2.8226,30.7042,0.0786,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4103,2.8108,30.4623,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4104,5.2804,21.8232,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4105,2.8706,20.9356,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4106,2.8226,30.0441,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4107,2.8108,29.6321,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4108,5.2804,17.8045,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4109,2.8706,17.4372,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4110,2.8226,30.5391,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4111,2.8108,30.2890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4112,5.2804,16.2614,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4113,2.8706,15.7399,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4114,2.8226,30.5415,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4115,2.8108,30.3212,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4116,5.2804,16.3245,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4117,2.8706,15.8145,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4118,2.8226,30.5729,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4119,2.8108,30.2679,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4120,5.2804,16.1434,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4121,2.8706,15.6792,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4122,2.8226,30.6980,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4123,2.8108,30.4255,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4124,5.2804,16.2778,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4125,2.8706,15.8188,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4126,2.8226,30.5794,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4127,2.8108,30.3187,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4128,5.2804,16.2460,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4129,2.8706,15.8088,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4130,2.8226,30.3197,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4131,2.8108,30.1542,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4132,5.2804,15.7767,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4133,2.8706,15.4695,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4134,2.8226,30.1965,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4135,2.8108,30.0885,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4136,5.2804,15.6618,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4137,2.8706,15.4270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4138,2.8226,30.2002,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4139,2.8108,30.1092,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4140,5.2804,15.6990,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4141,2.8706,15.4557,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4142,2.8226,30.2110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4143,2.8108,30.1135,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4144,5.2804,15.6625,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4145,2.8706,15.4626,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4146,2.8226,30.1017,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4147,2.8108,29.9982,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4148,5.2804,15.6145,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4149,2.8706,15.4377,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4150,2.8226,29.9746,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4151,2.8108,29.8682,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4152,5.2804,15.7174,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4153,2.8706,15.4629,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4154,2.8226,30.2763,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4155,2.8108,30.0852,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4156,5.2804,15.7572,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4157,2.8706,15.4881,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4158,2.8226,30.2276,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4159,2.8108,30.0915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4160,5.2804,15.6513,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4161,2.8706,15.4124,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4162,2.8226,30.2202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4163,2.8108,30.0602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4164,5.2804,15.6997,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4165,2.8706,15.4302,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4166,2.8226,30.2070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4167,2.8108,30.0664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4168,5.2804,15.6694,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4169,2.8706,15.4229,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4170,2.8226,30.2003,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4171,2.8108,30.0984,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4172,5.2804,15.6313,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4173,2.8706,15.3538,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4174,2.8226,29.9495,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4175,2.8108,29.8427,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4176,5.2804,15.7611,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4177,2.8706,15.4787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4178,2.8226,30.0786,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4179,2.8108,30.0366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4180,5.2804,15.8943,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4181,2.8706,15.6277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4182,2.8226,30.2401,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4183,2.8108,30.1636,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4184,5.2804,15.6397,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4185,2.8706,15.4466,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4186,2.8226,30.2015,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4187,2.8108,30.0975,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4188,5.2804,15.8152,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4189,2.8706,15.4978,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4190,2.8226,30.1658,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4191,2.8108,30.1153,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4192,5.2804,15.9002,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4193,2.8706,15.6342,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4194,2.8226,30.2901,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4195,2.8108,30.1461,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4196,5.2804,15.9221,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4197,2.8706,15.5738,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4198,2.8226,30.4046,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4199,2.8108,30.2073,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4200,5.2804,42.1630,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4201,2.8706,27.5363,0.0156,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4202,2.8226,25.5545,0.0039,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4203,2.8108,25.9937,0.0135,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4204,5.2804,5.6749,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4205,2.8706,5.5335,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4206,2.8226,10.4333,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4207,2.8108,10.3982,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4208,5.2804,5.7035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4209,2.8706,5.5903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4210,2.8226,10.4333,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4211,2.8108,10.4070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4212,5.2804,5.7552,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4213,2.8706,5.6129,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4214,2.8226,10.5685,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4215,2.8108,10.5484,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4216,5.2804,5.6058,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4217,2.8706,5.5784,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4218,2.8226,10.3602,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4219,2.8108,10.4410,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4220,5.2804,5.6662,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4221,2.8706,5.5888,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4222,2.8226,10.3566,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4223,2.8108,10.3547,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4224,5.2804,5.7190,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4225,2.8706,5.6276,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4226,2.8226,10.5469,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4227,2.8108,10.5398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4228,5.2804,5.7099,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4229,2.8706,5.6121,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4230,2.8226,10.4297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4231,2.8108,10.4072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4232,5.2804,5.7414,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4233,2.8706,5.6105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4234,2.8226,10.4231,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4235,2.8108,10.3599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4236,5.2804,5.7009,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4237,2.8706,5.6232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4238,2.8226,10.4825,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4239,2.8108,10.4453,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4240,5.2804,5.7343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4241,2.8706,5.6765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4242,2.8226,10.4220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4243,2.8108,10.4677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4244,5.2804,5.7225,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4245,2.8706,5.6302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4246,2.8226,10.6164,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4247,2.8108,10.5337,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4248,5.2804,5.8431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4249,2.8706,5.6970,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4250,2.8226,10.5750,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4251,2.8108,10.5036,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4252,5.2804,6.1539,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4253,2.8706,5.8009,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4254,2.8226,10.9053,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4255,2.8108,10.7356,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4256,5.2804,6.1780,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4257,2.8706,5.7947,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4258,2.8226,10.5678,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4259,2.8108,10.5073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4260,5.2804,5.8911,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4261,2.8706,5.7426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4262,2.8226,10.8147,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4263,2.8108,10.7765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4264,5.2804,6.0975,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4265,2.8706,5.7610,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4266,2.8226,10.6670,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4267,2.8108,10.5895,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4268,5.2804,5.9580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4269,2.8706,5.8620,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4270,2.8226,10.4104,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4271,2.8108,10.5268,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4272,5.2804,6.0394,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4273,2.8706,5.9034,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4274,2.8226,10.4200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4275,2.8108,10.4834,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4276,5.2804,5.9502,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4277,2.8706,5.7764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4278,2.8226,10.6176,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4279,2.8108,10.4794,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4280,5.2804,6.1466,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4281,2.8706,5.8325,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4282,2.8226,10.7191,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4283,2.8108,10.5204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4284,5.2804,5.9958,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4285,2.8706,5.6564,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4286,2.8226,10.4739,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4287,2.8108,10.2882,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4288,5.2804,5.7694,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4289,2.8706,5.5811,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4290,2.8226,10.5286,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4291,2.8108,10.5096,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4292,5.2804,5.7593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4293,2.8706,5.5994,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4294,2.8226,10.4879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4295,2.8108,10.4424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4296,5.2804,5.8129,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4297,2.8706,5.5833,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4298,2.8226,10.5207,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4299,2.8108,10.4380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4300,5.2804,5.8382,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4301,2.8706,5.6664,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4302,2.8226,10.4835,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4303,2.8108,10.4011,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4304,5.2804,6.7226,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4305,2.8706,6.4334,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4306,2.8226,10.6236,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4307,2.8108,10.5122,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4308,5.2804,6.4326,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4309,2.8706,6.1621,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4310,2.8226,11.3066,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4311,2.8108,11.2418,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4312,5.2804,6.2547,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4313,2.8706,5.7996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4314,2.8226,10.7260,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4315,2.8108,10.5246,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4316,5.2804,6.4300,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4317,2.8706,6.0810,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4318,2.8226,10.5050,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4319,2.8108,10.3818,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4320,5.2804,6.3980,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4321,2.8706,5.8750,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4322,2.8226,11.8676,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4323,2.8108,11.6356,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4324,5.2804,7.2590,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4325,2.8706,6.6999,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4326,2.8226,9.9228,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4327,2.8108,10.0070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4328,5.2804,6.2983,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4329,2.8706,5.8210,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4330,2.8226,11.7355,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4331,2.8108,11.5358,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4332,5.2804,6.1392,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4333,2.8706,5.8357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4334,2.8226,10.2486,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4335,2.8108,10.2090,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4336,5.2804,8.4723,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4337,2.8706,8.1215,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4338,2.8226,10.2977,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4339,2.8108,10.2181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4340,5.2804,6.1150,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4341,2.8706,5.7771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4342,2.8226,11.0130,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4343,2.8108,10.8047,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4344,5.2804,6.2448,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4345,2.8706,5.7982,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4346,2.8226,12.2257,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4347,2.8108,12.2114,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4348,5.2804,6.9395,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4349,2.8706,5.9020,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4350,2.8226,9.5874,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4351,2.8108,11.1382,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4352,5.2804,5.9843,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4353,2.8706,5.7107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4354,2.8226,10.0902,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4355,2.8108,10.2209,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4356,5.2804,6.8431,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4357,2.8706,6.5283,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4358,2.8226,10.5040,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4359,2.8108,10.3084,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4360,5.2804,6.0178,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4361,2.8706,5.7421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4362,2.8226,10.2667,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4363,2.8108,10.1169,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4364,5.2804,6.1120,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4365,2.8706,5.7324,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4366,2.8226,10.1796,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4367,2.8108,9.8961,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4368,5.2804,7.3035,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4369,2.8706,6.9492,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4370,2.8226,10.6099,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4371,2.8108,10.4041,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4372,5.2804,6.1883,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4373,2.8706,6.2138,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4374,2.8226,9.7941,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4375,2.8108,10.1860,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4376,5.2804,6.6945,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4377,2.8706,6.3220,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4378,2.8226,10.5755,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4379,2.8108,10.4682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4380,5.2804,6.7990,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4381,2.8706,6.1831,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4382,2.8226,10.2942,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4383,2.8108,10.3721,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4384,5.2804,6.2745,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4385,2.8706,5.7494,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4386,2.8226,10.1156,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4387,2.8108,10.0270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4388,5.2804,5.7889,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4389,2.8706,6.0939,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4390,2.8226,10.1584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4391,2.8108,10.1867,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4392,5.2804,5.9209,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4393,2.8706,5.7317,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4394,2.8226,10.6262,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4395,2.8108,10.5640,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4396,5.2804,6.0468,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4397,2.8706,5.7132,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4398,2.8226,10.2823,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4399,2.8108,10.2560,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4400,5.2804,5.8459,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4401,2.8706,5.6569,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4402,2.8226,10.2966,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4403,2.8108,10.2618,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4404,5.2804,5.8153,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4405,2.8706,5.7265,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4406,2.8226,10.6389,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4407,2.8108,10.5593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4408,5.2804,8.3297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4409,2.8706,7.7951,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4410,2.8226,11.0104,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4411,2.8108,10.9832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4412,5.2804,7.8575,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4413,2.8706,5.8565,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4414,2.8226,11.1438,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +4415,2.8108,10.9469,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4416,5.2804,6.1975,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4417,2.8706,5.8223,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4418,2.8226,11.0573,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4419,2.8108,11.0117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4420,5.2804,7.6522,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4421,2.8706,6.1700,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4422,2.8226,9.2920,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4423,2.8108,10.5210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4424,5.2804,6.5345,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4425,2.8706,5.8925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4426,2.8226,10.4597,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4427,2.8108,10.4105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4428,5.2804,6.1625,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4429,2.8706,5.9000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4430,2.8226,10.7739,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4431,2.8108,10.6250,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4432,5.2804,6.2307,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4433,2.8706,5.8959,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4434,2.8226,10.5373,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4435,2.8108,10.5032,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4436,5.2804,5.9995,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4437,2.8706,6.0139,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4438,2.8226,10.1250,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4439,2.8108,10.3552,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4440,5.2804,6.4380,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4441,2.8706,6.0576,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4442,2.8226,11.2314,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4443,2.8108,11.0838,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4444,5.2804,6.4456,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4445,2.8706,5.8307,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4446,2.8226,11.3203,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4447,2.8108,11.2263,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4448,5.2804,6.8573,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4449,2.8706,6.0546,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4450,2.8226,10.5221,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4451,2.8108,10.4235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4452,5.2804,6.0517,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4453,2.8706,6.1997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4454,2.8226,8.8593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4455,2.8108,9.1514,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4456,5.2804,6.0122,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4457,2.8706,5.7325,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4458,2.8226,10.7401,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4459,2.8108,10.6650,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4460,5.2804,6.1060,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4461,2.8706,5.8434,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4462,2.8226,10.4525,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4463,2.8108,10.4861,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4464,5.2804,6.0347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4465,2.8706,5.8854,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4466,2.8226,10.6800,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4467,2.8108,10.4872,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4468,5.2804,6.1087,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4469,2.8706,5.8534,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4470,2.8226,10.5849,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4471,2.8108,10.5132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4472,5.2804,5.9976,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4473,2.8706,5.8129,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4474,2.8226,10.6907,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4475,2.8108,10.5134,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4476,5.2804,6.1124,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4477,2.8706,6.0975,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4478,2.8226,10.6764,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4479,2.8108,10.4576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4480,5.2804,6.1038,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4481,2.8706,5.8468,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4482,2.8226,10.7894,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4483,2.8108,10.7651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4484,5.2804,6.2085,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4485,2.8706,5.8556,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4486,2.8226,10.6265,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4487,2.8108,10.5192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4488,5.2804,6.1823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4489,2.8706,5.9059,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4490,2.8226,10.7532,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +4491,2.8108,10.6320,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4492,5.2804,6.2284,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4493,2.8706,5.9333,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4494,2.8226,10.7903,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4495,2.8108,10.5723,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4496,5.2804,6.3803,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4497,2.8706,5.9125,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4498,2.8226,10.6732,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4499,2.8108,10.5442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4500,5.2804,6.4154,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4501,2.8706,5.9392,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4502,2.8226,12.6987,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4503,2.8108,12.7622,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4504,5.2804,7.2039,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4505,2.8706,6.4315,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4506,2.8226,10.7492,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4507,2.8108,10.4965,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4508,5.2804,6.6951,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4509,2.8706,5.9758,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4510,2.8226,11.4806,0.2231,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4511,2.8108,11.2223,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4512,5.2804,7.8179,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4513,2.8706,7.2402,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4514,2.8226,11.6158,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4515,2.8108,11.3834,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4516,5.2804,8.1060,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4517,2.8706,6.2926,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4518,2.8226,9.2185,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4519,2.8108,10.4157,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4520,5.2804,6.5635,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4521,2.8706,5.9512,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4522,2.8226,9.7060,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4523,2.8108,9.8475,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4524,5.2804,6.9383,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4525,2.8706,6.1642,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4526,2.8226,10.8255,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4527,2.8108,10.5465,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4528,5.2804,6.8347,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4529,2.8706,6.0829,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4530,2.8226,10.8546,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4531,2.8108,10.7679,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4532,5.2804,6.4540,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4533,2.8706,5.9938,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4534,2.8226,10.4069,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4535,2.8108,10.6203,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4536,5.2804,6.6627,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4537,2.8706,5.9963,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4538,2.8226,10.3193,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4539,2.8108,12.2225,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4540,5.2804,6.9123,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4541,2.8706,6.1069,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4542,2.8226,10.6732,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4543,2.8108,10.5107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4544,5.2804,6.6525,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4545,2.8706,6.0080,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4546,2.8226,12.8398,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4547,2.8108,12.8116,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4548,5.2804,8.8673,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4549,2.8706,7.9484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4550,2.8226,10.7036,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4551,2.8108,10.5190,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4552,5.2804,6.2334,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4553,2.8706,5.8459,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4554,2.8226,10.6614,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4555,2.8108,10.6033,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4556,5.2804,6.1844,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4557,2.8706,5.9379,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4558,2.8226,10.7776,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4559,2.8108,10.5846,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4560,5.2804,6.2074,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4561,2.8706,5.8430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4562,2.8226,10.8797,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4563,2.8108,10.7305,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4564,5.2804,6.1657,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4565,2.8706,5.8666,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4566,2.8226,10.9215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4567,2.8108,10.8577,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4568,5.2804,6.4620,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4569,2.8706,6.1453,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4570,2.8226,11.1501,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4571,2.8108,11.2365,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4572,5.2804,6.6066,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4573,2.8706,6.0285,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4574,2.8226,10.0217,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4575,2.8108,10.5548,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4576,5.2804,6.8425,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4577,2.8706,6.0435,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4578,2.8226,10.2670,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4579,2.8108,10.2423,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4580,5.2804,6.8531,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4581,2.8706,5.9470,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4582,2.8226,9.1762,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4583,2.8108,10.2515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4584,5.2804,6.2538,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4585,2.8706,5.8419,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4586,2.8226,10.7822,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4587,2.8108,10.6961,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4588,5.2804,6.2248,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4589,2.8706,5.8238,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4590,2.8226,10.4020,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4591,2.8108,10.2616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4592,5.2804,5.8983,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4593,2.8706,5.6586,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4594,2.8226,10.7607,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4595,2.8108,10.7546,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4596,5.2804,6.0169,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4597,2.8706,5.7416,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4598,2.8226,10.7420,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4599,2.8108,10.6540,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4600,5.2804,6.1668,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4601,2.8706,5.7384,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4602,2.8226,10.6595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4603,2.8108,10.5691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4604,5.2804,6.0063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4605,2.8706,5.8177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4606,2.8226,10.6122,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4607,2.8108,10.5530,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4608,5.2804,5.7083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4609,2.8706,5.6228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4610,2.8226,10.3797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4611,2.8108,10.3381,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4612,5.2804,5.8117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4613,2.8706,5.6210,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4614,2.8226,10.4724,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4615,2.8108,10.4332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4616,5.2804,5.8285,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4617,2.8706,5.6510,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4618,2.8226,10.3802,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4619,2.8108,10.3892,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4620,5.2804,5.7500,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4621,2.8706,5.6501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4622,2.8226,10.4705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4623,2.8108,10.4049,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4624,5.2804,5.7362,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4625,2.8706,5.6602,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4626,2.8226,10.4459,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4627,2.8108,10.3837,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4628,5.2804,5.7773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4629,2.8706,5.7169,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4630,2.8226,10.5360,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4631,2.8108,10.3419,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4632,5.2804,6.1363,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4633,2.8706,5.6995,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4634,2.8226,10.4581,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4635,2.8108,10.2454,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4636,5.2804,6.1524,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4637,2.8706,5.7539,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4638,2.8226,11.7731,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4639,2.8108,11.7653,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4640,5.2804,6.0980,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4641,2.8706,5.7557,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4642,2.8226,10.4707,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4643,2.8108,10.3365,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4644,5.2804,6.4440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4645,2.8706,5.9520,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4646,2.8226,12.0952,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4647,2.8108,12.0143,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4648,5.2804,6.3270,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4649,2.8706,5.9786,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4650,2.8226,10.6565,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4651,2.8108,10.4186,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4652,5.2804,6.2007,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4653,2.8706,5.8161,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4654,2.8226,10.7733,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4655,2.8108,10.5860,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4656,5.2804,6.1979,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4657,2.8706,5.8155,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4658,2.8226,10.4040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4659,2.8108,10.3295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4660,5.2804,5.8502,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4661,2.8706,5.6540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4662,2.8226,10.5100,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4663,2.8108,10.4149,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4664,5.2804,5.9880,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4665,2.8706,5.6874,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4666,2.8226,10.3112,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4667,2.8108,10.2840,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4668,5.2804,6.2300,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4669,2.8706,5.7866,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4670,2.8226,10.5567,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4671,2.8108,10.3688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4672,5.2804,6.1368,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4673,2.8706,5.7378,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4674,2.8226,10.5131,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4675,2.8108,10.4475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4676,5.2804,6.0720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4677,2.8706,5.6807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4678,2.8226,11.0866,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4679,2.8108,11.6983,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4680,5.2804,6.5920,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4681,2.8706,6.3157,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4682,2.8226,8.8586,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4683,2.8108,10.4832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4684,5.2804,6.6814,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4685,2.8706,5.7249,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4686,2.8226,10.6442,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4687,2.8108,10.3981,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4688,5.2804,7.1232,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4689,2.8706,6.1290,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4690,2.8226,9.8674,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4691,2.8108,9.5160,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4692,5.2804,6.9430,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4693,2.8706,5.8480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4694,2.8226,10.0618,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4695,2.8108,10.4197,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4696,5.2804,6.3947,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4697,2.8706,5.9275,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4698,2.8226,10.5828,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4699,2.8108,10.0033,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4700,5.2804,6.6878,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4701,2.8706,5.8501,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4702,2.8226,11.9245,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4703,2.8108,11.8998,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4704,5.2804,6.6098,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4705,2.8706,5.7666,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4706,2.8226,10.7340,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4707,2.8108,10.4827,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4708,5.2804,6.7787,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4709,2.8706,5.8196,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4710,2.8226,10.5012,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4711,2.8108,10.3158,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4712,5.2804,6.1042,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4713,2.8706,5.6992,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4714,2.8226,11.5467,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4715,2.8108,11.4563,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4716,5.2804,6.5637,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4717,2.8706,5.7445,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4718,2.8226,10.9036,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4719,2.8108,10.9021,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4720,5.2804,6.7830,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4721,2.8706,5.8518,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4722,2.8226,10.6783,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4723,2.8108,10.4633,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4724,5.2804,6.7029,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4725,2.8706,5.7710,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4726,2.8226,10.3803,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4727,2.8108,10.4064,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4728,5.2804,6.7667,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4729,2.8706,6.4610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4730,2.8226,10.7366,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4731,2.8108,10.4642,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4732,5.2804,6.6589,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4733,2.8706,5.7384,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4734,2.8226,11.1050,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4735,2.8108,10.9510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4736,5.2804,6.5207,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4737,2.8706,5.9391,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4738,2.8226,10.5643,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4739,2.8108,10.3566,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4740,5.2804,6.7796,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4741,2.8706,6.0068,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4742,2.8226,9.8810,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4743,2.8108,10.0668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4744,5.2804,6.4034,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4745,2.8706,5.8905,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4746,2.8226,10.5306,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4747,2.8108,10.1456,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4748,5.2804,6.3682,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4749,2.8706,5.7795,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4750,2.8226,10.3882,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4751,2.8108,10.2901,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4752,5.2804,6.1977,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4753,2.8706,5.7825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4754,2.8226,11.1109,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4755,2.8108,11.1305,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4756,5.2804,6.6539,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4757,2.8706,5.8396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4758,2.8226,13.3204,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4759,2.8108,13.3680,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4760,5.2804,7.1337,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4761,2.8706,7.1205,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4762,2.8226,9.3885,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4763,2.8108,10.0753,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4764,5.2804,6.5950,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4765,2.8706,5.8657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4766,2.8226,10.2968,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4767,2.8108,10.2654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4768,5.2804,6.4787,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4769,2.8706,5.8395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4770,2.8226,10.4679,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4771,2.8108,10.1940,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4772,5.2804,6.8572,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4773,2.8706,5.8262,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4774,2.8226,21.2685,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4775,2.8108,21.1438,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4776,5.2804,6.3941,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4777,2.8706,5.7758,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4778,2.8226,10.3893,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4779,2.8108,10.3206,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4780,5.2804,6.7322,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4781,2.8706,6.5818,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4782,2.8226,10.7332,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4783,2.8108,10.2616,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4784,5.2804,6.8397,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4785,2.8706,5.8752,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4786,2.8226,10.4146,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4787,2.8108,10.0202,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4788,5.2804,6.5723,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4789,2.8706,5.7773,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4790,2.8226,10.5422,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4791,2.8108,10.2625,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4792,5.2804,6.2643,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4793,2.8706,5.9269,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4794,2.8226,10.5686,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4795,2.8108,10.3112,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4796,5.2804,6.3663,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4797,2.8706,5.9482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4798,2.8226,11.3067,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4799,2.8108,11.2403,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.txt b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.txt new file mode 100644 index 0000000..ce5176d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.txt @@ -0,0 +1,79 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=210 +warmup_frames=20 +target_fps=60 +duration_seconds=20 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=1200 +frames_submitted=1200 +frames_skipped=0 +frames_encoded=1200 +failed_frames=0 +steady_frames_encoded=1180 +elapsed_seconds=19.998 +effective_logical_fps=60.006 +tile_frames_requested=4800 +tile_frames_encoded=4800 +failed_tile_frames=0 +avg_encode_latency_ms=14.300 +p95_encode_latency_ms=31.276 +max_encode_latency_ms=127.290 +avg_steady_encode_latency_ms=14.274 +p95_steady_encode_latency_ms=31.276 +max_steady_encode_latency_ms=127.290 +avg_tile_encode_latency_ms=10.030 +p95_tile_encode_latency_ms=29.830 +avg_max_tile_encode_latency_ms=12.981 +p95_max_tile_encode_latency_ms=30.222 +avg_steady_max_tile_encode_latency_ms=13.008 +p95_steady_max_tile_encode_latency_ms=30.228 +payload_bytes=6789895 +send_target=none +csv=benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s_logical.csv b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s_logical.csv new file mode 100644 index 0000000..2d55a8b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/reset210_inflight1_20s_logical.csv @@ -0,0 +1,1201 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.8380,28.9803,231707 +1,4,0,11.1811,10.6655,65901 +2,4,0,10.8793,10.4255,36886 +3,4,0,10.8800,10.4303,69404 +4,4,0,10.8585,10.3944,87864 +5,4,0,10.8405,10.4321,53700 +6,4,0,11.0605,10.3100,24415 +7,4,0,10.8799,10.3750,15407 +8,4,0,10.8627,10.3663,12151 +9,4,0,11.0545,10.5764,11449 +10,4,0,11.3425,10.6657,8599 +11,4,0,10.8529,10.4072,6107 +12,4,0,11.0004,10.4572,5132 +13,4,0,11.0077,10.4246,3880 +14,4,0,11.0278,10.4248,4001 +15,4,0,10.7843,10.2179,3860 +16,4,0,10.8599,10.4795,4045 +17,4,0,11.4720,10.8028,3955 +18,4,0,11.5897,10.1716,3721 +19,4,0,11.8473,10.3605,3748 +20,4,0,11.9125,10.1664,3386 +21,4,0,12.1440,10.3450,2761 +22,4,0,11.8780,10.2050,2750 +23,4,0,11.9062,10.2419,2836 +24,4,0,11.9392,10.1945,2977 +25,4,0,12.8801,10.2731,2960 +26,4,0,12.0852,10.2629,3010 +27,4,0,11.6265,10.1094,2978 +28,4,0,11.8196,10.1538,2889 +29,4,0,11.7075,10.6016,2914 +30,4,0,11.8753,10.0677,2847 +31,4,0,11.7980,10.2472,3111 +32,4,0,12.4118,9.8269,2714 +33,4,0,11.9488,10.2015,2843 +34,4,0,11.7634,10.0014,2633 +35,4,0,11.9956,10.4473,2659 +36,4,0,12.1886,10.4813,2696 +37,4,0,12.1173,9.8573,2728 +38,4,0,11.4372,10.4998,2772 +39,4,0,11.9307,10.3018,2740 +40,4,0,11.6358,10.3243,2809 +41,4,0,12.1437,10.2243,2679 +42,4,0,11.8175,10.2287,2865 +43,4,0,12.2105,10.5476,2612 +44,4,0,12.0047,10.3319,2626 +45,4,0,11.7925,10.1381,2693 +46,4,0,12.2064,9.6649,2708 +47,4,0,12.1933,10.4458,2765 +48,4,0,11.8890,10.2770,2645 +49,4,0,11.6273,10.1905,2733 +50,4,0,12.2533,10.5195,2667 +51,4,0,12.5931,10.1483,2647 +52,4,0,12.0309,10.3578,2659 +53,4,0,12.5663,10.5940,2757 +54,4,0,13.4583,11.8577,2656 +55,4,0,12.1154,10.7742,2594 +56,4,0,12.3826,10.5775,2603 +57,4,0,11.7137,10.4958,2605 +58,4,0,11.9965,10.3549,2610 +59,4,0,11.5345,10.0318,2641 +60,4,0,11.3468,10.0818,2637 +61,4,0,12.0084,10.6906,2691 +62,4,0,12.4351,11.1347,2620 +63,4,0,12.1904,10.7166,2614 +64,4,0,11.5974,10.4969,2666 +65,4,0,11.5019,10.4962,2613 +66,4,0,11.6857,10.2655,2624 +67,4,0,11.4039,10.3340,2612 +68,4,0,12.2367,10.4234,2687 +69,4,0,11.6920,10.1913,2622 +70,4,0,11.7198,10.2472,2623 +71,4,0,12.1762,10.6090,2647 +72,4,0,12.0193,10.8004,2645 +73,4,0,11.8284,10.5674,2643 +74,4,0,11.2937,10.5995,2635 +75,4,0,11.4910,10.0823,2718 +76,4,0,10.8272,10.3495,2602 +77,4,0,10.8180,10.4073,2605 +78,4,0,11.2789,10.0607,2612 +79,4,0,11.2480,10.1826,2607 +80,4,0,11.8768,10.7127,2630 +81,4,0,11.6369,10.1989,2617 +82,4,0,11.6195,9.9727,2661 +83,4,0,11.8325,10.4395,2606 +84,4,0,11.7543,10.1401,2609 +85,4,0,13.7264,10.3427,2612 +86,4,0,11.7609,10.5834,2632 +87,4,0,11.9204,10.1034,2606 +88,4,0,12.0578,10.3015,2610 +89,4,0,11.6602,10.4310,2652 +90,4,0,11.7895,10.2765,2594 +91,4,0,11.5968,10.1400,2609 +92,4,0,12.2105,10.5925,2598 +93,4,0,11.8624,10.1950,2613 +94,4,0,11.6720,9.9201,2618 +95,4,0,11.9736,10.3205,2604 +96,4,0,12.0055,10.2120,2677 +97,4,0,11.9315,10.3673,2620 +98,4,0,12.0970,10.9202,2594 +99,4,0,12.2255,9.9660,2594 +100,4,0,12.0056,10.2713,2598 +101,4,0,11.7548,10.3048,2609 +102,4,0,11.7875,10.6077,2616 +103,4,0,11.7595,10.4021,2630 +104,4,0,11.7892,10.2188,2606 +105,4,0,11.9992,10.2187,2604 +106,4,0,11.6972,10.2368,2609 +107,4,0,11.6234,10.0711,2610 +108,4,0,11.7684,10.2751,2652 +109,4,0,11.9286,10.4550,2600 +110,4,0,11.9192,10.2838,2640 +111,4,0,12.0226,10.4110,2594 +112,4,0,14.4253,13.0203,2594 +113,4,0,14.5479,12.9401,2600 +114,4,0,12.0942,10.5110,2599 +115,4,0,12.1629,10.5525,2607 +116,4,0,12.1487,10.4647,2603 +117,4,0,12.3785,10.7136,2623 +118,4,0,11.9741,10.4990,2600 +119,4,0,11.9138,10.3923,2610 +120,4,0,11.9001,10.5232,2594 +121,4,0,11.8389,10.3792,2594 +122,4,0,12.1051,10.7209,2603 +123,4,0,12.1074,10.4547,2602 +124,4,0,11.7864,10.3200,2619 +125,4,0,12.0751,10.6770,2600 +126,4,0,12.7921,10.1023,2600 +127,4,0,11.3367,10.0892,2594 +128,4,0,11.2966,10.4805,2594 +129,4,0,11.8490,10.1753,2599 +130,4,0,11.7843,10.2713,2607 +131,4,0,14.4547,11.2439,2605 +132,4,0,11.8455,10.6702,2596 +133,4,0,11.7947,10.4885,2594 +134,4,0,11.0686,10.3793,2594 +135,4,0,12.1160,10.5516,2594 +136,4,0,11.7998,10.1429,2594 +137,4,0,11.8978,9.9190,2594 +138,4,0,12.1755,9.6836,2604 +139,4,0,11.6400,10.0365,2594 +140,4,0,11.7920,10.2253,2594 +141,4,0,11.6320,10.0741,2599 +142,4,0,11.7258,10.1982,2594 +143,4,0,11.7331,10.2368,2594 +144,4,0,11.6430,10.1094,2594 +145,4,0,12.4117,9.2884,2604 +146,4,0,11.8010,9.7964,2594 +147,4,0,11.7867,10.2911,2594 +148,4,0,11.7688,10.2160,2594 +149,4,0,11.9688,10.4569,2601 +150,4,0,11.8330,10.4437,2601 +151,4,0,11.8752,10.1713,2594 +152,4,0,11.8940,10.2651,2606 +153,4,0,11.8961,10.1079,2594 +154,4,0,11.6580,10.2250,2594 +155,4,0,11.8335,10.0571,2594 +156,4,0,11.8217,10.1151,2594 +157,4,0,12.0892,9.9016,2594 +158,4,0,11.5777,10.6998,2594 +159,4,0,11.9350,10.1500,2594 +160,4,0,12.0373,10.1495,2594 +161,4,0,11.7712,10.1844,2594 +162,4,0,11.7208,10.2514,2594 +163,4,0,11.7635,10.2475,2598 +164,4,0,11.9496,9.9634,2594 +165,4,0,11.8632,10.2796,2594 +166,4,0,11.8015,10.2318,2594 +167,4,0,11.7704,10.2030,2594 +168,4,0,11.9442,9.9747,2594 +169,4,0,11.9386,10.5112,2594 +170,4,0,11.6262,10.1645,2594 +171,4,0,11.3614,10.1925,2594 +172,4,0,11.5575,10.2547,2594 +173,4,0,11.8785,9.9320,2594 +174,4,0,11.8630,10.2059,2594 +175,4,0,12.0451,10.2030,2594 +176,4,0,12.9645,6.9349,2594 +177,4,0,11.6686,10.4173,2594 +178,4,0,11.8943,10.1301,2594 +179,4,0,11.2565,10.3901,2594 +180,4,0,11.6780,10.6144,2594 +181,4,0,13.2351,11.6106,2594 +182,4,0,31.5236,29.8850,2594 +183,4,0,33.4332,32.0251,2594 +184,4,0,31.3328,29.9284,2594 +185,4,0,31.3958,29.8293,2594 +186,4,0,31.4925,30.1368,2594 +187,4,0,31.5460,30.3922,2594 +188,4,0,31.2275,30.4068,2594 +189,4,0,31.9261,30.0221,2594 +190,4,0,31.2186,30.3871,2594 +191,4,0,31.5292,29.9393,2594 +192,4,0,31.4833,29.9090,2594 +193,4,0,31.2510,29.7895,2594 +194,4,0,31.2323,30.0225,2594 +195,4,0,31.6866,30.2020,2594 +196,4,0,31.6754,29.7530,2594 +197,4,0,32.6255,29.6487,2594 +198,4,0,31.8085,29.3130,2594 +199,4,0,31.4690,29.8216,2594 +200,4,0,31.5666,29.7475,2594 +201,4,0,31.6702,30.6160,2594 +202,4,0,31.8265,29.7370,2594 +203,4,0,31.5083,29.9660,2594 +204,4,0,31.9679,29.9491,2594 +205,4,0,31.5705,29.9175,2594 +206,4,0,31.5227,29.7540,2594 +207,4,0,32.1653,29.8497,2594 +208,4,0,31.9201,29.6392,2594 +209,4,0,33.0687,28.4364,2594 +210,4,0,127.2896,48.0366,231707 +211,4,0,11.0474,10.5485,65901 +212,4,0,10.9200,10.4572,36886 +213,4,0,11.1595,10.7265,69404 +214,4,0,10.8967,10.4078,87864 +215,4,0,11.0802,10.4818,53700 +216,4,0,11.2891,10.5491,24415 +217,4,0,11.0246,10.4903,15407 +218,4,0,11.1007,10.5205,12151 +219,4,0,11.0727,10.5526,11449 +220,4,0,10.9400,10.4543,8599 +221,4,0,11.1233,10.5762,6107 +222,4,0,10.9594,10.5068,5132 +223,4,0,11.0239,10.5087,3880 +224,4,0,10.9766,10.4343,4001 +225,4,0,10.9880,10.5355,3860 +226,4,0,10.9097,10.4273,4045 +227,4,0,10.9301,10.5060,3955 +228,4,0,10.8720,10.4714,3721 +229,4,0,10.8761,10.4551,3748 +230,4,0,10.7968,10.2800,3386 +231,4,0,10.7458,10.3241,2761 +232,4,0,10.9637,10.4893,2750 +233,4,0,10.9099,10.4715,2836 +234,4,0,10.8080,10.3959,2977 +235,4,0,10.9354,10.4721,2960 +236,4,0,10.9828,10.5047,3010 +237,4,0,10.8228,10.4010,2978 +238,4,0,10.9582,10.3780,2889 +239,4,0,11.0177,10.4218,2914 +240,4,0,10.9466,10.4072,2847 +241,4,0,10.9300,10.4078,3111 +242,4,0,10.8996,10.4182,2714 +243,4,0,10.8729,10.4019,2843 +244,4,0,10.8773,10.3513,2633 +245,4,0,10.9788,10.2583,2659 +246,4,0,10.9116,10.3983,2696 +247,4,0,10.9713,10.3995,2728 +248,4,0,10.8336,10.3417,2772 +249,4,0,11.0100,10.3049,2740 +250,4,0,10.8235,10.2933,2809 +251,4,0,10.7453,10.2913,2679 +252,4,0,10.7714,10.2820,2865 +253,4,0,10.7111,10.2424,2612 +254,4,0,10.7865,10.3324,2626 +255,4,0,10.8857,10.3507,2693 +256,4,0,10.8352,10.3615,2708 +257,4,0,11.0035,10.3349,2765 +258,4,0,10.9641,10.4295,2645 +259,4,0,10.9048,10.3837,2733 +260,4,0,10.9495,10.5180,2667 +261,4,0,10.9591,10.3681,2647 +262,4,0,10.7915,10.2906,2659 +263,4,0,10.8554,10.3455,2757 +264,4,0,10.8401,10.2720,2656 +265,4,0,11.2074,10.6140,2594 +266,4,0,10.9644,10.4152,2603 +267,4,0,11.0466,10.3810,2605 +268,4,0,11.1443,10.4328,2610 +269,4,0,11.1475,10.5865,2641 +270,4,0,11.2071,10.6130,2637 +271,4,0,11.1645,10.5535,2691 +272,4,0,11.1153,10.5124,2620 +273,4,0,11.1791,10.6328,2614 +274,4,0,11.1462,10.3793,2666 +275,4,0,10.9037,10.3334,2613 +276,4,0,11.0878,10.5883,2624 +277,4,0,11.3920,10.3855,2612 +278,4,0,10.9742,10.3368,2687 +279,4,0,10.9130,10.3987,2622 +280,4,0,11.1111,10.4945,2623 +281,4,0,10.9830,10.4021,2647 +282,4,0,10.9421,10.3254,2645 +283,4,0,10.9352,10.3436,2643 +284,4,0,11.0476,10.4725,2635 +285,4,0,10.9998,10.3745,2718 +286,4,0,11.0114,10.4185,2602 +287,4,0,10.9904,10.4585,2605 +288,4,0,10.8784,10.3604,2612 +289,4,0,11.0764,10.4062,2607 +290,4,0,10.9578,10.4106,2630 +291,4,0,10.8675,10.2848,2617 +292,4,0,11.1504,10.6411,2661 +293,4,0,11.1483,10.3667,2606 +294,4,0,10.9200,10.3220,2609 +295,4,0,11.0350,10.4671,2612 +296,4,0,10.8958,10.3674,2632 +297,4,0,10.9855,10.3908,2606 +298,4,0,10.9918,10.3931,2610 +299,4,0,10.9824,10.4281,2652 +300,4,0,10.8346,10.2679,2594 +301,4,0,11.1207,10.3165,2609 +302,4,0,10.9642,10.3205,2598 +303,4,0,10.9471,10.3127,2613 +304,4,0,11.0599,10.4386,2618 +305,4,0,10.9004,10.3272,2604 +306,4,0,11.0223,10.3697,2677 +307,4,0,10.9709,10.4023,2620 +308,4,0,11.0763,10.4065,2594 +309,4,0,11.0933,10.4853,2594 +310,4,0,11.1411,10.5670,2598 +311,4,0,11.2274,10.5568,2609 +312,4,0,11.3904,10.4522,2616 +313,4,0,11.2807,10.5510,2630 +314,4,0,11.2525,10.7734,2606 +315,4,0,11.2204,10.6339,2604 +316,4,0,11.2114,10.6208,2609 +317,4,0,11.1837,10.7107,2610 +318,4,0,11.2241,10.7558,2652 +319,4,0,11.3638,10.8094,2600 +320,4,0,11.2293,10.7661,2640 +321,4,0,11.0384,10.6161,2594 +322,4,0,11.4758,10.8016,2594 +323,4,0,12.2345,10.5705,2600 +324,4,0,12.2072,10.2209,2599 +325,4,0,12.9447,10.4171,2607 +326,4,0,12.2908,10.5162,2603 +327,4,0,11.4440,10.4361,2623 +328,4,0,11.4544,10.5736,2600 +329,4,0,11.2166,10.4037,2610 +330,4,0,11.1769,10.5927,2594 +331,4,0,10.9732,10.2948,2594 +332,4,0,11.1378,10.4955,2603 +333,4,0,11.3445,10.5331,2602 +334,4,0,11.2220,10.4611,2619 +335,4,0,11.1700,10.5769,2600 +336,4,0,10.9940,10.3462,2600 +337,4,0,11.0486,10.4270,2594 +338,4,0,11.4177,10.4578,2594 +339,4,0,11.5580,10.4793,2599 +340,4,0,11.4647,10.6128,2607 +341,4,0,11.1053,10.5114,2605 +342,4,0,11.1543,10.5506,2596 +343,4,0,11.1108,10.4353,2594 +344,4,0,11.6214,10.2841,2594 +345,4,0,11.5030,10.6810,2594 +346,4,0,11.2229,10.5559,2594 +347,4,0,11.0704,10.4730,2594 +348,4,0,11.0453,10.3422,2604 +349,4,0,11.7085,10.2779,2594 +350,4,0,11.1880,10.4223,2594 +351,4,0,10.9950,10.3086,2599 +352,4,0,11.3076,10.5214,2594 +353,4,0,11.8983,10.7439,2594 +354,4,0,12.3007,10.7819,2594 +355,4,0,11.4782,10.5813,2604 +356,4,0,11.1321,10.4511,2594 +357,4,0,11.2287,10.5580,2594 +358,4,0,11.0650,10.4018,2594 +359,4,0,13.3367,12.4882,2601 +360,4,0,12.3928,10.9294,2601 +361,4,0,11.9902,10.5322,2594 +362,4,0,11.0347,10.4924,2606 +363,4,0,10.9060,10.3905,2594 +364,4,0,11.0998,10.6815,2594 +365,4,0,11.8549,10.2202,2594 +366,4,0,11.8491,10.2528,2594 +367,4,0,11.6293,10.0485,2594 +368,4,0,11.1943,10.6545,2594 +369,4,0,11.1707,10.3957,2594 +370,4,0,11.0914,10.4007,2594 +371,4,0,11.3539,10.6958,2594 +372,4,0,11.5910,9.0882,2594 +373,4,0,11.0347,10.3430,2598 +374,4,0,10.9935,10.5252,2594 +375,4,0,10.9295,10.4813,2594 +376,4,0,11.8704,11.4259,2594 +377,4,0,11.7793,10.0734,2594 +378,4,0,11.4577,10.8295,2594 +379,4,0,11.0612,10.5632,2594 +380,4,0,11.1910,10.5352,2594 +381,4,0,10.9417,10.4307,2594 +382,4,0,11.0360,10.4599,2594 +383,4,0,10.8178,10.2666,2594 +384,4,0,11.1437,10.5307,2594 +385,4,0,11.2388,10.7027,2594 +386,4,0,10.9990,10.4078,2594 +387,4,0,10.9465,10.3859,2594 +388,4,0,10.8487,10.3048,2594 +389,4,0,11.1494,10.4982,2594 +390,4,0,11.1056,10.5480,2594 +391,4,0,12.4287,11.8744,2594 +392,4,0,30.6948,30.1133,2594 +393,4,0,31.1259,30.3529,2594 +394,4,0,31.0679,30.2394,2594 +395,4,0,31.0673,30.2220,2594 +396,4,0,30.9588,29.8787,2594 +397,4,0,31.0394,30.5817,2594 +398,4,0,31.7062,30.4688,2594 +399,4,0,31.1671,30.2334,2594 +400,4,0,30.7057,30.0625,2594 +401,4,0,31.2005,30.5294,2594 +402,4,0,30.8271,30.1805,2594 +403,4,0,30.9454,30.4200,2594 +404,4,0,30.7914,30.0592,2594 +405,4,0,30.8123,30.0099,2594 +406,4,0,30.7192,30.1198,2594 +407,4,0,30.7261,30.0027,2594 +408,4,0,30.5065,29.9510,2594 +409,4,0,30.6583,30.0538,2594 +410,4,0,30.6300,30.2112,2594 +411,4,0,30.5248,29.9974,2594 +412,4,0,30.7583,30.1165,2594 +413,4,0,31.2735,29.7675,2594 +414,4,0,30.6435,29.9304,2594 +415,4,0,30.7080,30.1627,2594 +416,4,0,30.7406,30.0900,2594 +417,4,0,30.5731,29.8908,2594 +418,4,0,30.5887,29.9840,2594 +419,4,0,31.0549,30.2713,2594 +420,4,0,121.5480,44.1499,231707 +421,4,0,11.0216,10.5901,65901 +422,4,0,11.2158,10.8020,36886 +423,4,0,11.2889,10.8223,69404 +424,4,0,10.9585,10.4576,87864 +425,4,0,10.8440,10.4681,53700 +426,4,0,11.1901,10.4790,24415 +427,4,0,11.1353,10.6369,15407 +428,4,0,11.0577,10.6251,12151 +429,4,0,11.0068,10.6008,11449 +430,4,0,10.9953,10.5665,8599 +431,4,0,11.0090,10.4068,6107 +432,4,0,11.1107,10.4783,5132 +433,4,0,10.8995,10.3356,3880 +434,4,0,11.1353,10.5726,4001 +435,4,0,11.0426,10.5152,3860 +436,4,0,10.9455,10.4733,4045 +437,4,0,10.9895,10.5183,3955 +438,4,0,10.8818,10.4473,3721 +439,4,0,10.8868,10.3700,3748 +440,4,0,11.0590,10.4660,3386 +441,4,0,10.9514,10.3474,2761 +442,4,0,11.1205,10.6205,2750 +443,4,0,11.0797,10.5587,2836 +444,4,0,11.1758,10.5985,2977 +445,4,0,10.9949,10.4949,2960 +446,4,0,10.9853,10.4335,3010 +447,4,0,10.8392,10.3797,2978 +448,4,0,11.0552,10.4267,2889 +449,4,0,11.1788,10.5485,2914 +450,4,0,11.1433,10.5521,2847 +451,4,0,11.2320,10.6568,3111 +452,4,0,11.0487,10.4902,2714 +453,4,0,11.0557,10.5578,2843 +454,4,0,11.2422,10.7091,2633 +455,4,0,10.9108,10.4561,2659 +456,4,0,10.9342,10.3388,2696 +457,4,0,11.0282,10.4357,2728 +458,4,0,11.0121,10.5181,2772 +459,4,0,11.1136,10.5066,2740 +460,4,0,10.8718,10.4981,2809 +461,4,0,11.1260,10.5562,2679 +462,4,0,11.2149,10.6152,2865 +463,4,0,10.9045,10.4577,2612 +464,4,0,11.0115,10.4730,2626 +465,4,0,11.0863,10.5558,2693 +466,4,0,11.1442,10.6866,2708 +467,4,0,11.1983,10.6265,2765 +468,4,0,11.1553,10.5120,2645 +469,4,0,10.9498,10.3993,2733 +470,4,0,10.8988,10.3749,2667 +471,4,0,10.9572,10.5335,2647 +472,4,0,11.1124,10.7188,2659 +473,4,0,11.2093,10.7270,2757 +474,4,0,11.1362,10.6360,2656 +475,4,0,11.1427,10.7686,2594 +476,4,0,11.3367,10.6627,2603 +477,4,0,10.8170,10.3008,2605 +478,4,0,10.8584,10.4487,2610 +479,4,0,10.8891,10.4249,2641 +480,4,0,11.1134,10.5288,2637 +481,4,0,10.9241,10.3684,2691 +482,4,0,11.0830,10.5073,2620 +483,4,0,11.1990,10.5381,2614 +484,4,0,10.9539,10.3507,2666 +485,4,0,11.2664,10.5951,2613 +486,4,0,11.0542,10.4898,2624 +487,4,0,11.0514,10.4424,2612 +488,4,0,10.9699,10.4034,2687 +489,4,0,10.9719,10.4108,2622 +490,4,0,10.9974,10.3517,2623 +491,4,0,11.0964,10.3651,2647 +492,4,0,10.8886,10.2398,2645 +493,4,0,11.1355,10.4138,2643 +494,4,0,11.2578,8.7770,2635 +495,4,0,11.3628,10.6150,2718 +496,4,0,11.0557,10.4452,2602 +497,4,0,11.0657,10.5674,2605 +498,4,0,11.2141,10.5906,2612 +499,4,0,11.4079,10.7631,2607 +500,4,0,11.0816,10.4320,2630 +501,4,0,11.4875,10.7169,2617 +502,4,0,11.5648,10.1874,2661 +503,4,0,11.5608,10.6876,2606 +504,4,0,11.2314,10.6252,2609 +505,4,0,11.0196,10.4805,2612 +506,4,0,11.2874,10.6679,2632 +507,4,0,11.1578,10.5572,2606 +508,4,0,11.0822,10.3963,2610 +509,4,0,12.9163,12.2481,2652 +510,4,0,11.8069,10.2523,2594 +511,4,0,11.3278,10.6307,2609 +512,4,0,11.1593,10.5571,2598 +513,4,0,11.2950,10.7302,2613 +514,4,0,11.2259,10.7265,2618 +515,4,0,11.3544,10.7913,2604 +516,4,0,11.3690,10.6228,2677 +517,4,0,11.3823,10.7010,2620 +518,4,0,11.3049,10.7530,2594 +519,4,0,11.1996,10.3895,2594 +520,4,0,11.2625,10.6459,2598 +521,4,0,11.2466,10.4196,2609 +522,4,0,11.0298,10.5152,2616 +523,4,0,11.0385,10.5030,2630 +524,4,0,11.1002,10.5717,2606 +525,4,0,11.2100,10.6028,2604 +526,4,0,11.2033,10.6167,2609 +527,4,0,11.1445,10.5559,2610 +528,4,0,10.9636,10.4590,2652 +529,4,0,11.0834,10.4956,2600 +530,4,0,11.1385,10.4853,2640 +531,4,0,11.0174,10.4900,2594 +532,4,0,10.9948,10.3776,2594 +533,4,0,11.7801,9.9090,2600 +534,4,0,11.0216,10.3244,2599 +535,4,0,11.0169,10.3744,2607 +536,4,0,11.1650,10.5202,2603 +537,4,0,11.2465,10.6454,2623 +538,4,0,11.9616,11.1070,2600 +539,4,0,12.1272,10.3606,2610 +540,4,0,11.3950,10.6480,2594 +541,4,0,11.4158,10.6692,2594 +542,4,0,11.3380,10.6920,2603 +543,4,0,11.3618,10.7562,2602 +544,4,0,11.5512,10.8133,2619 +545,4,0,11.5001,10.5707,2600 +546,4,0,11.0856,10.4706,2600 +547,4,0,10.9986,10.4360,2594 +548,4,0,10.9584,10.3789,2594 +549,4,0,11.1934,10.6316,2599 +550,4,0,11.0405,10.4176,2607 +551,4,0,11.1242,10.5047,2605 +552,4,0,11.0205,10.5204,2596 +553,4,0,11.1975,10.6306,2594 +554,4,0,11.2639,10.6675,2594 +555,4,0,10.8937,10.3619,2594 +556,4,0,11.2234,10.6776,2594 +557,4,0,11.1850,10.6551,2594 +558,4,0,11.1516,10.5497,2604 +559,4,0,11.2309,10.6560,2594 +560,4,0,11.0956,10.5282,2594 +561,4,0,10.9198,10.2992,2599 +562,4,0,11.3023,10.5995,2594 +563,4,0,11.1181,10.5233,2594 +564,4,0,11.2520,10.5924,2594 +565,4,0,11.1635,10.5324,2604 +566,4,0,11.0301,10.3851,2594 +567,4,0,11.2543,10.6372,2594 +568,4,0,11.1258,10.5525,2594 +569,4,0,11.2193,10.5895,2601 +570,4,0,11.0292,10.4307,2601 +571,4,0,10.9398,10.4025,2594 +572,4,0,11.0944,10.4993,2606 +573,4,0,10.9158,10.3952,2594 +574,4,0,11.4886,10.9112,2594 +575,4,0,11.1682,10.6844,2594 +576,4,0,11.2650,10.7806,2594 +577,4,0,11.0636,10.5916,2594 +578,4,0,11.0564,10.4327,2594 +579,4,0,11.1664,10.6169,2594 +580,4,0,11.0242,10.5136,2594 +581,4,0,10.8489,10.3564,2594 +582,4,0,11.1472,10.5441,2594 +583,4,0,11.1676,10.4846,2598 +584,4,0,11.2290,10.4853,2594 +585,4,0,11.3011,10.6874,2594 +586,4,0,11.0683,10.5040,2594 +587,4,0,11.0522,10.4709,2594 +588,4,0,11.4267,10.7665,2594 +589,4,0,11.2469,10.6104,2594 +590,4,0,10.9999,10.4857,2594 +591,4,0,11.3908,10.8043,2594 +592,4,0,11.2347,10.7192,2594 +593,4,0,11.0955,10.6065,2594 +594,4,0,11.0233,10.4772,2594 +595,4,0,11.1208,10.6143,2594 +596,4,0,10.9579,10.4303,2594 +597,4,0,11.0925,10.5679,2594 +598,4,0,10.9390,10.4918,2594 +599,4,0,10.8495,10.3874,2594 +600,4,0,10.9986,10.4739,2594 +601,4,0,12.4785,11.9957,2594 +602,4,0,31.8765,30.0917,2594 +603,4,0,30.9856,30.3963,2594 +604,4,0,30.6530,30.0906,2594 +605,4,0,30.7761,29.9637,2594 +606,4,0,30.8178,30.2379,2594 +607,4,0,30.5776,30.1213,2594 +608,4,0,30.7063,30.0744,2594 +609,4,0,30.7828,30.1908,2594 +610,4,0,31.0628,30.3638,2594 +611,4,0,34.0067,33.2357,2594 +612,4,0,31.5674,30.4520,2594 +613,4,0,31.4405,30.6350,2594 +614,4,0,32.4160,31.4590,2594 +615,4,0,32.6033,29.7178,2594 +616,4,0,31.2097,30.3498,2594 +617,4,0,30.9567,30.2498,2594 +618,4,0,31.0289,30.2178,2594 +619,4,0,31.1220,30.3020,2594 +620,4,0,31.0776,30.3804,2594 +621,4,0,31.2578,30.3473,2594 +622,4,0,30.6441,29.8979,2594 +623,4,0,31.0084,30.3193,2594 +624,4,0,31.0551,30.3018,2594 +625,4,0,31.0323,30.4401,2594 +626,4,0,30.9944,30.2936,2594 +627,4,0,30.9592,30.2081,2594 +628,4,0,30.5897,30.0249,2594 +629,4,0,30.8850,30.2362,2594 +630,4,0,120.9018,42.3707,231707 +631,4,0,11.0419,10.5362,65901 +632,4,0,11.1259,10.6469,36886 +633,4,0,11.0123,10.5099,69404 +634,4,0,11.2481,10.6156,87864 +635,4,0,11.0025,10.5207,53700 +636,4,0,11.0633,10.5291,24415 +637,4,0,11.1023,10.5240,15407 +638,4,0,10.9072,10.4501,12151 +639,4,0,10.9258,10.4274,11449 +640,4,0,10.8775,10.4227,8599 +641,4,0,11.0795,10.5587,6107 +642,4,0,10.8524,10.3268,5132 +643,4,0,10.8024,10.3685,3880 +644,4,0,11.1336,10.6087,4001 +645,4,0,11.1000,10.4853,3860 +646,4,0,11.0083,10.5017,4045 +647,4,0,11.1620,10.7032,3955 +648,4,0,10.9467,10.4340,3721 +649,4,0,10.9730,10.4211,3748 +650,4,0,10.9811,10.4898,3386 +651,4,0,11.0030,10.4220,2761 +652,4,0,10.8711,10.4152,2750 +653,4,0,11.0594,10.5622,2836 +654,4,0,10.9130,10.4365,2977 +655,4,0,11.0172,10.3785,2960 +656,4,0,10.8867,10.3828,3010 +657,4,0,10.8210,10.4125,2978 +658,4,0,11.0049,10.4823,2889 +659,4,0,11.2510,10.7897,2914 +660,4,0,10.8545,10.4199,2847 +661,4,0,11.1515,10.7152,3111 +662,4,0,10.9988,10.6188,2714 +663,4,0,11.0265,10.6036,2843 +664,4,0,10.7435,10.3283,2633 +665,4,0,11.3667,10.8649,2659 +666,4,0,11.0169,10.5881,2696 +667,4,0,11.0624,10.6220,2728 +668,4,0,11.1112,10.6985,2772 +669,4,0,10.9610,10.5004,2740 +670,4,0,10.9405,10.5252,2809 +671,4,0,10.9255,10.5225,2679 +672,4,0,11.0283,10.5463,2865 +673,4,0,11.0296,10.4984,2612 +674,4,0,11.1007,10.6560,2626 +675,4,0,11.0110,10.5447,2693 +676,4,0,11.0055,10.6054,2708 +677,4,0,11.0343,10.5612,2765 +678,4,0,10.9551,10.4497,2645 +679,4,0,10.8700,10.4314,2733 +680,4,0,10.9775,10.4054,2667 +681,4,0,11.1103,10.5027,2647 +682,4,0,10.7912,10.3091,2659 +683,4,0,10.7613,10.2879,2757 +684,4,0,11.0631,10.5378,2656 +685,4,0,10.9543,10.2994,2594 +686,4,0,10.8535,10.3274,2603 +687,4,0,10.9120,10.2822,2605 +688,4,0,11.0659,10.3540,2610 +689,4,0,10.9370,10.3205,2641 +690,4,0,10.8065,10.3698,2637 +691,4,0,10.8382,10.3414,2691 +692,4,0,10.9658,10.4597,2620 +693,4,0,11.1187,10.5644,2614 +694,4,0,10.8604,10.3470,2666 +695,4,0,11.0330,10.4429,2613 +696,4,0,11.1548,10.5573,2624 +697,4,0,10.9913,10.3888,2612 +698,4,0,11.0259,10.3559,2687 +699,4,0,10.9663,10.4430,2622 +700,4,0,10.9314,10.3887,2623 +701,4,0,10.9194,10.3334,2647 +702,4,0,10.8913,10.3453,2645 +703,4,0,11.1053,10.5022,2643 +704,4,0,11.0748,10.4864,2635 +705,4,0,11.2433,10.5579,2718 +706,4,0,11.3415,10.6512,2602 +707,4,0,11.0383,10.4766,2605 +708,4,0,10.9185,10.3631,2612 +709,4,0,10.8985,10.3704,2607 +710,4,0,11.0509,10.5054,2630 +711,4,0,11.0270,10.4663,2617 +712,4,0,10.9846,10.4064,2661 +713,4,0,11.0877,10.3428,2606 +714,4,0,11.1081,10.4475,2609 +715,4,0,11.3943,10.6448,2612 +716,4,0,11.2646,10.5635,2632 +717,4,0,11.0753,10.6788,2606 +718,4,0,11.3749,10.8070,2610 +719,4,0,11.0884,10.4685,2652 +720,4,0,11.7497,11.1412,2594 +721,4,0,11.4708,10.9014,2609 +722,4,0,11.4716,10.7086,2598 +723,4,0,11.3792,10.6305,2613 +724,4,0,11.0868,10.5695,2618 +725,4,0,11.0066,10.4799,2604 +726,4,0,11.2358,10.6247,2677 +727,4,0,11.2114,10.6883,2620 +728,4,0,10.9657,10.3909,2594 +729,4,0,11.1543,10.5716,2594 +730,4,0,11.0157,10.4909,2598 +731,4,0,11.2325,10.6549,2609 +732,4,0,11.2365,10.5843,2616 +733,4,0,11.2453,10.7203,2630 +734,4,0,11.1858,10.6009,2606 +735,4,0,11.3978,10.7570,2604 +736,4,0,11.1937,10.6393,2609 +737,4,0,11.2518,10.6412,2610 +738,4,0,11.0261,10.5158,2652 +739,4,0,11.2224,10.7133,2600 +740,4,0,11.1638,10.6523,2640 +741,4,0,11.0720,10.5585,2594 +742,4,0,11.0610,10.5727,2594 +743,4,0,10.9770,10.3813,2600 +744,4,0,11.1580,10.6182,2599 +745,4,0,10.9623,10.4789,2607 +746,4,0,11.0351,10.5936,2603 +747,4,0,11.1787,10.6162,2623 +748,4,0,11.0512,10.3887,2600 +749,4,0,11.1555,10.5808,2610 +750,4,0,11.3439,10.8013,2594 +751,4,0,11.2818,10.7062,2594 +752,4,0,11.0598,10.4769,2603 +753,4,0,10.9857,10.3266,2602 +754,4,0,11.2699,10.7096,2619 +755,4,0,11.2673,10.6595,2600 +756,4,0,11.3919,10.7717,2600 +757,4,0,11.4153,10.7074,2594 +758,4,0,11.6088,10.7882,2594 +759,4,0,11.6564,10.7274,2599 +760,4,0,11.1185,10.5828,2607 +761,4,0,11.0296,10.5310,2605 +762,4,0,10.8732,10.4000,2596 +763,4,0,11.1140,10.5955,2594 +764,4,0,11.0400,10.5066,2594 +765,4,0,11.2024,10.5827,2594 +766,4,0,10.8938,10.4074,2594 +767,4,0,10.9487,10.4515,2594 +768,4,0,11.0917,10.4548,2604 +769,4,0,10.9723,10.3979,2594 +770,4,0,11.0522,10.4491,2594 +771,4,0,11.2394,10.7325,2599 +772,4,0,11.3187,10.7072,2594 +773,4,0,11.1163,10.5260,2594 +774,4,0,11.5198,10.7444,2594 +775,4,0,11.4905,10.6688,2604 +776,4,0,11.6379,10.6916,2594 +777,4,0,11.6887,10.9916,2594 +778,4,0,11.7715,11.0264,2594 +779,4,0,11.7646,10.8485,2601 +780,4,0,11.6137,10.8990,2601 +781,4,0,11.6024,10.7507,2594 +782,4,0,11.3478,10.5724,2606 +783,4,0,11.1813,10.5938,2594 +784,4,0,11.0710,10.5356,2594 +785,4,0,11.0958,10.4872,2594 +786,4,0,11.3585,10.7281,2594 +787,4,0,11.0517,10.3353,2594 +788,4,0,11.4046,10.7182,2594 +789,4,0,11.3147,10.6797,2594 +790,4,0,11.3897,10.7975,2594 +791,4,0,11.7378,11.0275,2594 +792,4,0,12.0191,10.0463,2594 +793,4,0,11.4805,10.5380,2598 +794,4,0,11.1511,10.5263,2594 +795,4,0,10.9688,10.3834,2594 +796,4,0,11.2740,10.5312,2594 +797,4,0,11.1272,10.5410,2594 +798,4,0,11.0288,10.3735,2594 +799,4,0,11.0655,10.3097,2594 +800,4,0,11.7974,9.9713,2594 +801,4,0,11.8022,10.4462,2594 +802,4,0,12.0151,10.4989,2594 +803,4,0,14.6538,14.3671,2594 +804,4,0,11.9728,10.5566,2594 +805,4,0,12.0832,10.2179,2594 +806,4,0,11.9604,10.3804,2594 +807,4,0,11.7632,10.3636,2594 +808,4,0,11.3472,10.4794,2594 +809,4,0,11.1798,10.4432,2594 +810,4,0,11.3071,10.6026,2594 +811,4,0,12.3807,11.7521,2594 +812,4,0,30.7503,30.1656,2594 +813,4,0,31.0958,30.4120,2594 +814,4,0,32.5580,31.4893,2594 +815,4,0,31.6607,30.8022,2594 +816,4,0,32.1982,29.9065,2594 +817,4,0,33.4290,30.0087,2594 +818,4,0,33.1622,29.8545,2594 +819,4,0,33.0612,30.0742,2594 +820,4,0,32.4556,30.1667,2594 +821,4,0,32.0259,30.1849,2594 +822,4,0,32.3214,30.5418,2594 +823,4,0,33.1390,29.8878,2594 +824,4,0,30.7416,30.0612,2594 +825,4,0,30.3881,29.8433,2594 +826,4,0,30.4035,29.9152,2594 +827,4,0,30.5209,29.9419,2594 +828,4,0,30.5098,29.9394,2594 +829,4,0,30.4496,29.9942,2594 +830,4,0,30.8276,30.2380,2594 +831,4,0,30.8003,30.2083,2594 +832,4,0,30.6529,30.0614,2594 +833,4,0,30.6810,30.1998,2594 +834,4,0,31.1110,30.2931,2594 +835,4,0,30.8908,30.2518,2594 +836,4,0,31.2278,30.4485,2594 +837,4,0,31.4054,30.7144,2594 +838,4,0,31.5753,29.8022,2594 +839,4,0,31.3957,30.4881,2594 +840,4,0,118.5108,36.5117,231707 +841,4,0,11.2022,10.6750,65901 +842,4,0,10.9850,10.5420,36886 +843,4,0,11.0811,10.5883,69404 +844,4,0,11.1665,10.4610,87864 +845,4,0,11.0511,10.4397,53700 +846,4,0,11.1125,10.5522,24415 +847,4,0,11.0856,10.6403,15407 +848,4,0,11.0680,10.5898,12151 +849,4,0,11.0510,10.5758,11449 +850,4,0,11.0220,10.5712,8599 +851,4,0,11.0100,10.5157,6107 +852,4,0,10.9000,10.3582,5132 +853,4,0,10.8328,10.3242,3880 +854,4,0,11.1156,10.5503,4001 +855,4,0,10.9218,10.3792,3860 +856,4,0,10.9582,10.4891,4045 +857,4,0,11.0019,10.5069,3955 +858,4,0,10.8677,10.4107,3721 +859,4,0,11.2535,10.6650,3748 +860,4,0,10.9904,10.4213,3386 +861,4,0,11.4087,10.6534,2761 +862,4,0,11.0372,10.4981,2750 +863,4,0,10.8597,10.5169,2836 +864,4,0,10.9978,10.3539,2977 +865,4,0,11.1437,10.5285,2960 +866,4,0,11.0400,10.4680,3010 +867,4,0,10.9213,10.4413,2978 +868,4,0,11.0754,10.3941,2889 +869,4,0,11.3089,10.6203,2914 +870,4,0,11.2037,10.6566,2847 +871,4,0,11.1721,10.4186,3111 +872,4,0,10.9015,10.3243,2714 +873,4,0,11.0798,10.5181,2843 +874,4,0,11.2895,10.6459,2633 +875,4,0,11.0995,10.5531,2659 +876,4,0,11.1330,10.5344,2696 +877,4,0,11.3973,10.7523,2728 +878,4,0,11.0971,10.5117,2772 +879,4,0,11.1486,10.3928,2740 +880,4,0,11.4490,10.6555,2809 +881,4,0,11.3060,10.7678,2679 +882,4,0,11.1049,10.5634,2865 +883,4,0,11.2566,10.6477,2612 +884,4,0,11.2393,10.6511,2626 +885,4,0,11.2263,10.5713,2693 +886,4,0,11.6718,10.7340,2708 +887,4,0,12.3635,10.1962,2765 +888,4,0,12.1455,10.8326,2645 +889,4,0,11.2867,10.5826,2733 +890,4,0,11.2654,10.5835,2667 +891,4,0,11.1472,10.4792,2647 +892,4,0,11.1822,10.6100,2659 +893,4,0,11.0459,10.4053,2757 +894,4,0,11.0377,10.4125,2656 +895,4,0,11.1366,10.4612,2594 +896,4,0,11.3148,10.6918,2603 +897,4,0,11.6022,10.6355,2605 +898,4,0,11.2035,10.4955,2610 +899,4,0,11.3870,10.7821,2641 +900,4,0,11.2713,10.6010,2637 +901,4,0,11.1254,10.5104,2691 +902,4,0,10.9679,10.4447,2620 +903,4,0,11.2345,10.6917,2614 +904,4,0,11.5296,10.6595,2666 +905,4,0,11.7396,10.6150,2613 +906,4,0,11.6098,8.9769,2624 +907,4,0,11.3676,10.6775,2612 +908,4,0,11.1019,10.4189,2687 +909,4,0,10.9977,10.4036,2622 +910,4,0,11.2587,10.6052,2623 +911,4,0,11.1469,10.4755,2647 +912,4,0,11.6886,10.9425,2645 +913,4,0,12.2172,10.9478,2643 +914,4,0,12.1616,9.1521,2635 +915,4,0,11.3736,10.4607,2718 +916,4,0,11.0186,10.4076,2602 +917,4,0,11.1410,10.6725,2605 +918,4,0,11.0539,10.4253,2612 +919,4,0,11.0472,10.3857,2607 +920,4,0,11.1093,10.5657,2630 +921,4,0,11.3854,10.5877,2617 +922,4,0,11.1773,10.6151,2661 +923,4,0,11.1320,10.6006,2606 +924,4,0,11.1366,10.6847,2609 +925,4,0,11.0815,10.6148,2612 +926,4,0,10.9177,10.3666,2632 +927,4,0,10.9493,10.4128,2606 +928,4,0,11.0152,10.4828,2610 +929,4,0,11.0833,10.5325,2652 +930,4,0,11.1665,10.5463,2594 +931,4,0,11.2385,10.6025,2609 +932,4,0,11.2803,10.5843,2598 +933,4,0,11.2176,10.5443,2613 +934,4,0,11.2130,10.7081,2618 +935,4,0,11.3024,10.5332,2604 +936,4,0,11.5466,10.6682,2677 +937,4,0,11.4051,10.6043,2620 +938,4,0,11.2888,10.5495,2594 +939,4,0,11.5095,10.5653,2594 +940,4,0,11.5125,10.6570,2598 +941,4,0,11.4255,10.5982,2609 +942,4,0,11.3017,10.4981,2616 +943,4,0,11.3839,10.6222,2630 +944,4,0,11.2990,10.7153,2606 +945,4,0,11.2899,10.4716,2604 +946,4,0,11.2571,10.5872,2609 +947,4,0,11.7810,11.2444,2610 +948,4,0,12.2177,10.4296,2652 +949,4,0,13.4996,10.5488,2600 +950,4,0,12.8206,11.1362,2640 +951,4,0,12.0813,10.5001,2594 +952,4,0,12.6222,10.4791,2594 +953,4,0,13.4412,10.5190,2600 +954,4,0,13.3522,11.6208,2599 +955,4,0,13.0198,11.3247,2607 +956,4,0,12.1529,10.5844,2603 +957,4,0,12.5001,10.8027,2623 +958,4,0,13.0471,8.9069,2600 +959,4,0,12.4856,10.8323,2610 +960,4,0,12.5603,10.8220,2594 +961,4,0,12.2264,10.6681,2594 +962,4,0,12.1670,10.6648,2603 +963,4,0,12.8105,9.7935,2602 +964,4,0,12.1092,10.3166,2619 +965,4,0,12.3328,10.6606,2600 +966,4,0,12.1699,10.1551,2600 +967,4,0,12.7091,10.9992,2594 +968,4,0,12.3998,10.7581,2594 +969,4,0,12.5101,10.6182,2599 +970,4,0,12.1398,10.2260,2607 +971,4,0,12.9035,11.2827,2605 +972,4,0,11.5785,10.3722,2596 +973,4,0,11.4618,10.7127,2594 +974,4,0,10.9805,10.4738,2594 +975,4,0,11.0957,10.5729,2594 +976,4,0,11.1650,10.5002,2594 +977,4,0,11.0733,10.5590,2594 +978,4,0,10.9992,10.5312,2604 +979,4,0,10.9916,10.4574,2594 +980,4,0,10.9175,10.4645,2594 +981,4,0,11.0848,10.5529,2599 +982,4,0,11.2702,10.6315,2594 +983,4,0,11.2535,10.5331,2594 +984,4,0,11.2430,10.4783,2594 +985,4,0,11.5691,10.6779,2604 +986,4,0,12.9289,11.6273,2594 +987,4,0,12.0693,10.7547,2594 +988,4,0,12.3752,10.1476,2594 +989,4,0,11.4910,10.7039,2601 +990,4,0,11.4325,10.7559,2601 +991,4,0,11.1584,10.5348,2594 +992,4,0,11.2148,10.5728,2606 +993,4,0,11.2858,10.6740,2594 +994,4,0,11.2752,10.6408,2594 +995,4,0,11.2026,10.6337,2594 +996,4,0,12.4470,10.2220,2594 +997,4,0,12.3984,10.0696,2594 +998,4,0,11.6424,10.6687,2594 +999,4,0,11.2013,10.1939,2594 +1000,4,0,11.1600,10.3876,2594 +1001,4,0,11.3319,10.4589,2594 +1002,4,0,11.2569,10.5706,2594 +1003,4,0,11.9297,10.3124,2598 +1004,4,0,11.6718,9.5956,2594 +1005,4,0,11.0538,10.3695,2594 +1006,4,0,10.9771,10.3427,2594 +1007,4,0,10.9774,10.3281,2594 +1008,4,0,11.3390,10.5383,2594 +1009,4,0,11.2665,10.5040,2594 +1010,4,0,11.2687,10.5594,2594 +1011,4,0,11.5032,10.8012,2594 +1012,4,0,11.4212,10.6352,2594 +1013,4,0,12.2355,11.4086,2594 +1014,4,0,11.4998,10.6376,2594 +1015,4,0,11.4863,10.7336,2594 +1016,4,0,11.5119,10.8536,2594 +1017,4,0,11.4192,10.7682,2594 +1018,4,0,11.2777,10.6955,2594 +1019,4,0,11.4398,10.7084,2594 +1020,4,0,11.1498,10.4841,2594 +1021,4,0,12.8580,12.2009,2594 +1022,4,0,31.3885,30.7376,2594 +1023,4,0,31.4103,30.5341,2594 +1024,4,0,31.4063,30.5647,2594 +1025,4,0,31.5965,30.7042,2594 +1026,4,0,31.7524,30.0441,2594 +1027,4,0,31.5195,30.5391,2594 +1028,4,0,31.4345,30.5415,2594 +1029,4,0,31.4533,30.5729,2594 +1030,4,0,31.3951,30.6980,2594 +1031,4,0,31.4173,30.5794,2594 +1032,4,0,31.0703,30.3197,2594 +1033,4,0,30.7091,30.1965,2594 +1034,4,0,30.6470,30.2002,2594 +1035,4,0,30.6634,30.2110,2594 +1036,4,0,30.6011,30.1017,2594 +1037,4,0,30.5660,29.9746,2594 +1038,4,0,30.6973,30.2763,2594 +1039,4,0,30.6688,30.2276,2594 +1040,4,0,30.6427,30.2202,2594 +1041,4,0,30.6219,30.2070,2594 +1042,4,0,30.6361,30.2003,2594 +1043,4,0,30.4403,29.9495,2594 +1044,4,0,30.7628,30.0786,2594 +1045,4,0,30.7481,30.2401,2594 +1046,4,0,30.7020,30.2015,2594 +1047,4,0,30.8486,30.1658,2594 +1048,4,0,30.8693,30.2901,2594 +1049,4,0,31.1127,30.4046,2594 +1050,4,0,121.5324,42.1630,231707 +1051,4,0,10.9026,10.4333,65901 +1052,4,0,10.8857,10.4333,36886 +1053,4,0,11.0469,10.5685,69404 +1054,4,0,10.9289,10.4410,87864 +1055,4,0,10.8888,10.3566,53700 +1056,4,0,11.0141,10.5469,24415 +1057,4,0,10.9671,10.4297,15407 +1058,4,0,10.9222,10.4231,12151 +1059,4,0,10.9805,10.4825,11449 +1060,4,0,11.0728,10.4677,8599 +1061,4,0,11.0961,10.6164,6107 +1062,4,0,11.1439,10.5750,5132 +1063,4,0,11.6280,10.9053,3880 +1064,4,0,11.3290,10.5678,4001 +1065,4,0,11.3406,10.8147,3860 +1066,4,0,11.4363,10.6670,4045 +1067,4,0,11.4295,10.5268,3955 +1068,4,0,11.4422,10.4834,3721 +1069,4,0,11.3265,10.6176,3748 +1070,4,0,11.4970,10.7191,3386 +1071,4,0,11.1586,10.4739,2761 +1072,4,0,11.0498,10.5286,2750 +1073,4,0,11.0241,10.4879,2836 +1074,4,0,11.0240,10.5207,2977 +1075,4,0,11.0701,10.4835,2960 +1076,4,0,11.1628,10.6236,3010 +1077,4,0,12.1936,11.3066,2978 +1078,4,0,11.5468,10.7260,2889 +1079,4,0,11.3758,10.5050,2914 +1080,4,0,12.7837,11.8676,2847 +1081,4,0,11.8765,10.0070,3111 +1082,4,0,12.6636,11.7355,2714 +1083,4,0,11.4414,10.2486,2843 +1084,4,0,11.3106,10.2977,2633 +1085,4,0,11.9573,11.0130,2659 +1086,4,0,13.3634,12.2257,2696 +1087,4,0,13.8471,11.1382,2728 +1088,4,0,11.4704,10.2209,2772 +1089,4,0,11.3078,10.5040,2740 +1090,4,0,11.2573,10.2667,2809 +1091,4,0,11.5842,10.1796,2679 +1092,4,0,11.4827,10.6099,2865 +1093,4,0,11.9845,10.1860,2612 +1094,4,0,11.5916,10.5755,2626 +1095,4,0,11.5687,10.3721,2693 +1096,4,0,11.7870,10.1156,2708 +1097,4,0,11.1355,10.1867,2765 +1098,4,0,11.4552,10.6262,2645 +1099,4,0,11.4317,10.2823,2733 +1100,4,0,11.2590,10.2966,2667 +1101,4,0,11.4156,10.6389,2647 +1102,4,0,12.0725,11.0104,2659 +1103,4,0,13.7519,11.1438,2757 +1104,4,0,12.0276,11.0573,2656 +1105,4,0,14.2091,10.5210,2594 +1106,4,0,11.9330,10.4597,2603 +1107,4,0,11.7703,10.7739,2605 +1108,4,0,11.6885,10.5373,2610 +1109,4,0,11.6174,10.3552,2641 +1110,4,0,11.9669,11.2314,2637 +1111,4,0,13.2444,11.3203,2691 +1112,4,0,12.1272,10.5221,2620 +1113,4,0,11.7956,9.1514,2614 +1114,4,0,11.4187,10.7401,2666 +1115,4,0,11.5585,10.4861,2613 +1116,4,0,11.4680,10.6800,2624 +1117,4,0,11.2774,10.5849,2612 +1118,4,0,11.4239,10.6907,2687 +1119,4,0,11.3784,10.6764,2622 +1120,4,0,11.3966,10.7894,2623 +1121,4,0,11.5108,10.6265,2647 +1122,4,0,11.6573,10.7532,2645 +1123,4,0,11.7978,10.7903,2643 +1124,4,0,11.7707,10.6732,2635 +1125,4,0,13.8165,12.7622,2718 +1126,4,0,12.1677,10.7492,2602 +1127,4,0,12.7580,11.4806,2605 +1128,4,0,12.8607,11.6158,2612 +1129,4,0,14.8566,10.4157,2607 +1130,4,0,12.5587,9.8475,2630 +1131,4,0,12.2192,10.8255,2617 +1132,4,0,12.0801,10.8546,2661 +1133,4,0,12.3044,10.6203,2606 +1134,4,0,13.9292,12.2225,2609 +1135,4,0,12.1569,10.6732,2612 +1136,4,0,14.1006,12.8398,2632 +1137,4,0,12.0150,10.7036,2606 +1138,4,0,11.6234,10.6614,2610 +1139,4,0,11.5690,10.7776,2652 +1140,4,0,11.6497,10.8797,2594 +1141,4,0,11.6977,10.9215,2609 +1142,4,0,11.9580,11.2365,2598 +1143,4,0,12.8451,10.5548,2613 +1144,4,0,12.3817,10.2670,2618 +1145,4,0,12.9775,10.2515,2604 +1146,4,0,11.6185,10.7822,2677 +1147,4,0,11.5351,10.4020,2620 +1148,4,0,11.3216,10.7607,2594 +1149,4,0,11.3988,10.7420,2594 +1150,4,0,11.5053,10.6595,2598 +1151,4,0,11.1885,10.6122,2609 +1152,4,0,10.9770,10.3797,2616 +1153,4,0,11.0212,10.4724,2630 +1154,4,0,10.9673,10.3892,2606 +1155,4,0,11.1199,10.4705,2604 +1156,4,0,11.0514,10.4459,2609 +1157,4,0,11.2293,10.5360,2610 +1158,4,0,11.5095,10.4581,2652 +1159,4,0,13.0787,11.7731,2600 +1160,4,0,11.1878,10.4707,2640 +1161,4,0,12.5802,12.0952,2594 +1162,4,0,11.5095,10.6565,2594 +1163,4,0,11.5102,10.7733,2600 +1164,4,0,11.3271,10.4040,2599 +1165,4,0,11.0811,10.5100,2607 +1166,4,0,11.3831,10.3112,2603 +1167,4,0,11.4812,10.5567,2623 +1168,4,0,11.2360,10.5131,2600 +1169,4,0,12.6012,11.6983,2610 +1170,4,0,13.6347,10.4832,2594 +1171,4,0,12.0683,10.6442,2594 +1172,4,0,12.2621,9.8674,2603 +1173,4,0,12.7670,10.4197,2602 +1174,4,0,12.0502,10.5828,2619 +1175,4,0,13.5218,11.9245,2600 +1176,4,0,12.0468,10.7340,2600 +1177,4,0,11.9501,10.5012,2594 +1178,4,0,12.6048,11.5467,2594 +1179,4,0,12.2972,10.9036,2599 +1180,4,0,12.4839,10.6783,2607 +1181,4,0,12.2413,10.4064,2605 +1182,4,0,12.2653,10.7366,2596 +1183,4,0,12.5195,11.1050,2594 +1184,4,0,11.9496,10.5643,2594 +1185,4,0,12.5188,10.0668,2594 +1186,4,0,12.0680,10.5306,2594 +1187,4,0,11.6623,10.3882,2594 +1188,4,0,12.2749,11.1305,2604 +1189,4,0,14.9817,13.3680,2594 +1190,4,0,13.8285,10.0753,2594 +1191,4,0,12.2394,10.2968,2599 +1192,4,0,11.8190,10.4679,2594 +1193,4,0,23.1642,21.2685,2594 +1194,4,0,11.5310,10.3893,2594 +1195,4,0,11.4955,10.7332,2604 +1196,4,0,11.8872,10.4146,2594 +1197,4,0,11.7741,10.5422,2594 +1198,4,0,11.4633,10.5686,2594 +1199,4,0,13.3662,11.3067,2601 diff --git a/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/summary.md b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/summary.md new file mode 100644 index 0000000..681f85a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/summary.md @@ -0,0 +1,7 @@ +# Tiled 5K60 Reset Interval Probe + +| Case | Reset every | Frames | Effective fps | Avg ms | P95 ms | Max ms | Late >16.67ms | Late >33.33ms | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---:|---| +| reset150_inflight1_20s | 150 | 1200 | 60.008 | 13.075 | 15.210 | 128.469 | 27 | 8 | PASS | +| reset180_inflight1_20s | 180 | 1200 | 60.010 | 11.991 | 12.632 | 131.582 | 8 | 7 | PASS | +| reset210_inflight1_20s | 210 | 1200 | 60.006 | 14.300 | 31.276 | 127.290 | 147 | 9 | FAIL | diff --git a/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/deadline_analysis.md b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/deadline_analysis.md new file mode 100644 index 0000000..792c765 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/deadline_analysis.md @@ -0,0 +1,29 @@ +# Tiled Deadline Analysis — reset180_inflight1_30s_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 1800 | +| avg_group_latency_ms | 12.100 | +| p95_group_latency_ms | 12.690 | +| max_group_latency_ms | 135.530 | +| effective_logical_fps | 60.009 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 1800 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 322 | 17.889% | 0, 22, 24, 25, 26, 28, 29, 30, 32, 33, 53, 56, ... | +| 16.67 | 18 | 1.000% | 0, 148, 180, 271, 360, 470, 540, 574, 720, 900, 1080, 1133, ... | +| 20.00 | 12 | 0.667% | 0, 180, 360, 540, 574, 720, 900, 1080, 1260, 1440, 1464, 1620 | +| 33.33 | 10 | 0.556% | 0, 180, 360, 540, 720, 900, 1080, 1260, 1440, 1620 | +| 50.00 | 10 | 0.556% | 0, 180, 360, 540, 720, 900, 1080, 1260, 1440, 1620 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.587 | 13.458 | 135.530 | +| 300-599 | 12.485 | 13.361 | 126.674 | +| 600-899 | 11.626 | 12.393 | 121.477 | +| 900-1199 | 11.987 | 12.239 | 128.659 | +| 1200-1499 | 12.325 | 12.678 | 128.417 | +| 1500-1799 | 11.592 | 12.128 | 128.022 | diff --git a/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.csv b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.csv new file mode 100644 index 0000000..343a39f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.csv @@ -0,0 +1,7201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.5312,29.1779,0.0351,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.2530,27.9045,0.0156,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,3.2670,25.6689,0.0150,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.9280,26.4961,0.0092,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.5312,5.7535,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.2530,5.6544,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,3.2670,10.4324,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.9280,10.4560,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.5312,5.7286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.2530,5.6169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,3.2670,10.4377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.9280,10.4918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.5312,5.6400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.2530,5.6755,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,3.2670,10.4486,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.9280,10.4940,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.5312,5.5433,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.2530,5.5303,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,3.2670,10.2873,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.9280,10.3449,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.5312,5.5245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.2530,5.4837,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,3.2670,10.2225,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.9280,10.2728,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.5312,5.5740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.2530,5.5502,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,3.2670,10.3302,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.9280,10.3202,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.5312,5.5498,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.2530,5.5187,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,3.2670,10.2625,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.9280,10.2671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.5312,5.5297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.2530,5.5021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,3.2670,10.2465,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.9280,10.2918,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.5312,5.5947,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.2530,5.5111,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,3.2670,10.3234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.9280,10.3144,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.5312,5.6825,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.2530,5.5377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,3.2670,10.2824,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.9280,10.2970,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.5312,5.5802,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.2530,5.5711,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,3.2670,10.2462,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.9280,10.2317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.5312,5.5875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.2530,5.5606,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,3.2670,10.3422,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.9280,10.3409,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.5312,5.6665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.2530,5.6095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,3.2670,10.2765,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.9280,10.2449,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.5312,5.6182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.2530,5.5974,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,3.2670,10.2412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.9280,10.2535,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.5312,5.6162,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.2530,5.5713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,3.2670,10.2097,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.9280,10.2359,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.5312,5.6360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.2530,5.6282,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,3.2670,10.3425,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.9280,10.2063,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.5312,6.0704,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.2530,5.7018,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,3.2670,10.5496,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.9280,10.2944,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.5312,6.0041,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.2530,5.6575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,3.2670,9.8730,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.9280,9.9676,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.5312,6.2009,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.2530,5.8435,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,3.2670,10.0507,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.9280,10.2502,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.5312,6.2472,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.2530,5.8410,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,3.2670,9.8229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.9280,10.2690,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.5312,6.3188,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.2530,5.6840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,3.2670,10.3485,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.9280,10.3356,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.5312,6.4574,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.2530,5.9131,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,3.2670,10.0510,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.9280,10.2861,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.5312,6.4245,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.2530,5.8403,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,3.2670,9.7844,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.9280,9.9925,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.5312,6.3781,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.2530,5.7881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,3.2670,9.8679,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.9280,9.9891,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.5312,6.3195,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.2530,5.9909,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,3.2670,10.0348,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.9280,10.2689,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.5312,6.8566,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.2530,5.9280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,3.2670,10.6840,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.9280,10.5434,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.5312,6.4566,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.2530,5.7608,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,3.2670,10.1657,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.9280,10.0643,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.5312,6.5730,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.2530,5.8090,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,3.2670,10.2252,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.9280,10.3108,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.5312,6.8231,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.2530,5.8070,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,3.2670,10.3061,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.9280,10.2686,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.5312,6.5665,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.2530,5.7636,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,3.2670,10.6764,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.9280,10.5688,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.5312,6.4360,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.2530,5.8267,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,3.2670,10.2367,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.9280,10.4223,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.5312,6.6660,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.2530,5.9058,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,3.2670,9.9687,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.9280,9.9952,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.5312,6.6599,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.2530,6.0482,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,3.2670,10.2976,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.9280,11.8327,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.5312,6.1160,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.2530,5.6980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,3.2670,10.1871,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.9280,10.1701,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.5312,5.9395,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.2530,5.5844,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,3.2670,10.4136,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.9280,10.3431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.5312,5.9406,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.2530,5.5490,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,3.2670,10.4807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.9280,10.4299,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.5312,5.9611,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.2530,5.5896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,3.2670,10.4596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.9280,10.3140,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.5312,5.8063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.2530,5.5068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,3.2670,10.2323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.9280,10.2365,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.5312,5.7307,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.2530,5.5554,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,3.2670,10.2248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.9280,10.2395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.5312,5.7868,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.2530,5.6047,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,3.2670,10.3400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.9280,10.2690,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.5312,5.8907,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.2530,5.5907,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,3.2670,10.4456,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.9280,10.3517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.5312,5.7984,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.2530,5.5665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,3.2670,10.3321,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.9280,10.2346,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.5312,5.9350,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.2530,5.6712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,3.2670,10.3135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.9280,10.2355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.5312,6.0953,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.2530,5.6684,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,3.2670,10.4363,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.9280,10.3224,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.5312,6.2762,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.2530,5.8727,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,3.2670,10.4171,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.9280,10.3414,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.5312,6.3487,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.2530,5.8987,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,3.2670,10.2913,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.9280,10.2376,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.5312,6.3488,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.2530,5.8160,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,3.2670,10.4149,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.9280,10.1053,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.5312,6.2222,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.2530,5.8419,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,3.2670,10.0565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.9280,10.0392,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.5312,6.2947,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.2530,5.9590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,3.2670,9.7323,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.9280,10.0518,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.5312,6.3054,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.2530,5.9226,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,3.2670,9.8788,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.9280,9.8417,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.5312,6.2658,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.2530,5.8035,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,3.2670,10.0403,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.9280,10.0595,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.5312,6.0892,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.2530,5.7876,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,3.2670,9.9288,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.9280,10.1190,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.5312,6.3730,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.2530,5.7393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,3.2670,11.2937,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.9280,14.0732,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.5312,6.0755,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.2530,5.7144,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,3.2670,10.0809,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.9280,10.4331,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.5312,6.1103,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.2530,5.7922,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,3.2670,9.8845,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.9280,10.2227,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.5312,6.5935,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.2530,5.8237,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,3.2670,10.6520,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.9280,10.3758,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.5312,6.5775,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.2530,5.7032,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,3.2670,9.4615,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.9280,10.1514,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.5312,6.3816,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.2530,5.7752,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,3.2670,10.4039,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.9280,10.4030,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.5312,5.9813,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.2530,5.7380,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,3.2670,9.9387,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.9280,10.1870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.5312,5.8081,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +241,3.2530,5.5647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +242,3.2670,10.2005,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +243,2.9280,10.2173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +244,5.5312,5.6204,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +245,3.2530,5.5221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +246,3.2670,10.1327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +247,2.9280,10.2116,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +248,5.5312,5.6645,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +249,3.2530,5.6110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +250,3.2670,10.3317,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +251,2.9280,10.2342,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +252,5.5312,5.6590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +253,3.2530,5.5758,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +254,3.2670,10.3425,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +255,2.9280,10.3567,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +256,5.5312,5.6068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +257,3.2530,5.5560,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +258,3.2670,10.3087,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +259,2.9280,10.3943,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +260,5.5312,5.6537,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +261,3.2530,5.5704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +262,3.2670,10.2963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +263,2.9280,10.3686,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +264,5.5312,5.6733,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +265,3.2530,5.5421,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +266,3.2670,10.3303,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +267,2.9280,10.3543,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +268,5.5312,5.6391,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +269,3.2530,5.5366,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +270,3.2670,10.3780,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +271,2.9280,10.3706,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +272,5.5312,5.7911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +273,3.2530,5.5633,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +274,3.2670,10.4014,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +275,2.9280,10.4552,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +276,5.5312,5.6551,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +277,3.2530,5.5964,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +278,3.2670,10.4423,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +279,2.9280,10.4226,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +280,5.5312,5.7835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +281,3.2530,5.6340,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +282,3.2670,10.4652,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +283,2.9280,10.4551,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +284,5.5312,5.4858,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +285,3.2530,5.4521,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +286,3.2670,10.2736,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +287,2.9280,10.2498,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +288,5.5312,5.5102,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +289,3.2530,5.5150,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +290,3.2670,10.3142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +291,2.9280,10.3083,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +292,5.5312,5.5999,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +293,3.2530,5.4873,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +294,3.2670,10.3241,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +295,2.9280,10.3411,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +296,5.5312,5.6795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +297,3.2530,5.5204,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +298,3.2670,10.3886,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +299,2.9280,10.3750,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +300,5.5312,5.5953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +301,3.2530,5.5496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,3.2670,10.2890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +303,2.9280,10.3081,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +304,5.5312,5.6349,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +305,3.2530,5.5280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,3.2670,10.2815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +307,2.9280,10.2615,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +308,5.5312,5.6712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +309,3.2530,5.5693,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,3.2670,10.2354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.9280,10.2911,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +312,5.5312,5.6903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +313,3.2530,5.5400,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,3.2670,10.1985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +315,2.9280,10.1997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +316,5.5312,5.7011,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +317,3.2530,5.5924,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,3.2670,10.2578,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +319,2.9280,10.2050,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +320,5.5312,5.7423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +321,3.2530,5.6199,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,3.2670,10.3651,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +323,2.9280,10.2521,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +324,5.5312,5.8060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +325,3.2530,5.6453,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,3.2670,10.7128,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +327,2.9280,10.5558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +328,5.5312,7.7163,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +329,3.2530,6.5705,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,3.2670,11.2885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +331,2.9280,10.9670,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +332,5.5312,5.7690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +333,3.2530,5.5900,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,3.2670,10.2895,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +335,2.9280,10.2464,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +336,5.5312,5.6890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +337,3.2530,5.5321,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,3.2670,10.2528,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +339,2.9280,10.2565,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +340,5.5312,5.7790,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +341,3.2530,5.5618,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,3.2670,10.6322,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +343,2.9280,10.5021,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +344,5.5312,6.5851,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +345,3.2530,5.7538,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,3.2670,10.0045,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +347,2.9280,10.1769,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +348,5.5312,6.3675,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +349,3.2530,5.7870,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,3.2670,10.6165,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +351,2.9280,10.5717,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +352,5.5312,6.3802,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +353,3.2530,5.7451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,3.2670,10.2193,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +355,2.9280,10.2114,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +356,5.5312,6.4644,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +357,3.2530,6.1899,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,3.2670,10.8521,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +359,2.9280,10.7879,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +360,5.5312,6.5290,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +361,3.2530,5.8232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,3.2670,10.3381,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +363,2.9280,10.2703,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +364,5.5312,7.1747,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.2530,6.0897,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,3.2670,10.6902,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +367,2.9280,10.6462,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +368,5.5312,6.3554,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.2530,5.7438,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,3.2670,10.2464,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +371,2.9280,10.3030,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +372,5.5312,6.4123,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.2530,5.7378,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,3.2670,10.0881,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +375,2.9280,10.2323,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +376,5.5312,6.4908,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.2530,6.3408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,3.2670,7.3414,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +379,2.9280,8.1780,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +380,5.5312,6.5444,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.2530,5.7599,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,3.2670,10.2879,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +383,2.9280,10.3302,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +384,5.5312,8.0820,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.2530,6.9120,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,3.2670,9.9108,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +387,2.9280,10.1687,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +388,5.5312,6.3848,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.2530,5.8666,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,3.2670,9.5551,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +391,2.9280,10.2296,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +392,5.5312,6.3949,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.2530,5.7012,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,3.2670,9.9892,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.9280,10.0972,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +396,5.5312,6.6290,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.2530,5.7446,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,3.2670,10.1867,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.9280,10.1378,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +400,5.5312,6.5072,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.2530,5.7446,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,3.2670,9.9863,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.9280,9.9961,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +404,5.5312,6.8992,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.2530,6.1801,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,3.2670,10.5306,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +407,2.9280,10.4006,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +408,5.5312,6.7410,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.2530,5.9737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,3.2670,10.4840,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +411,2.9280,10.2639,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +412,5.5312,12.2603,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.2530,11.1216,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,3.2670,10.8950,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +415,2.9280,10.6254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +416,5.5312,6.1999,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.2530,5.6869,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,3.2670,10.2927,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +419,2.9280,10.2739,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.5312,6.3175,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.2530,6.0009,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,3.2670,10.0004,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +423,2.9280,10.1735,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.5312,6.3511,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.2530,5.9212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,3.2670,10.3785,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +427,2.9280,10.3522,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.5312,6.3409,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.2530,5.8667,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,3.2670,10.4134,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +431,2.9280,10.4250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +432,5.5312,6.4108,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.2530,6.1017,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,3.2670,10.0938,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +435,2.9280,10.2089,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +436,5.5312,6.1898,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.2530,5.7983,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,3.2670,10.2805,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.9280,10.1776,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +440,5.5312,6.1848,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.2530,5.7861,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,3.2670,10.0871,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.9280,9.9942,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +444,5.5312,6.5918,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.2530,6.1305,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,3.2670,9.9434,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.9280,10.0218,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.5312,6.3745,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.2530,5.8788,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,3.2670,9.5040,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +451,2.9280,10.1099,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.5312,6.3899,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.2530,5.7616,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,3.2670,10.0065,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +455,2.9280,9.9978,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +456,5.5312,6.3227,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.2530,5.8654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,3.2670,9.9100,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +459,2.9280,9.9755,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +460,5.5312,6.2698,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.2530,5.7253,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,3.2670,10.3634,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +463,2.9280,10.2440,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +464,5.5312,6.5997,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.2530,5.8673,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,3.2670,10.0306,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +467,2.9280,10.0761,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +468,5.5312,6.4495,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.2530,5.8731,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,3.2670,9.8374,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +471,2.9280,10.1955,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +472,5.5312,6.5351,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.2530,5.8396,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,3.2670,9.9980,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +475,2.9280,9.9969,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +476,5.5312,6.1870,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.2530,5.6588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,3.2670,10.3397,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +479,2.9280,10.2322,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.5312,6.6511,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +481,3.2530,5.6628,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +482,3.2670,10.0641,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +483,2.9280,10.1690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +484,5.5312,7.1541,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +485,3.2530,5.7136,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +486,3.2670,10.0706,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +487,2.9280,10.1530,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +488,5.5312,7.6614,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +489,3.2530,5.7412,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +490,3.2670,9.8355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +491,2.9280,10.4367,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +492,5.5312,6.5866,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +493,3.2530,6.1348,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +494,3.2670,9.8604,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +495,2.9280,10.0292,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +496,5.5312,6.5596,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +497,3.2530,6.0232,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +498,3.2670,8.3091,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +499,2.9280,10.0946,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +500,5.5312,6.7179,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +501,3.2530,5.6757,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +502,3.2670,10.1948,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +503,2.9280,10.1581,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +504,5.5312,7.1888,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +505,3.2530,6.4690,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +506,3.2670,10.2743,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +507,2.9280,10.2063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +508,5.5312,11.5724,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +509,3.2530,10.8781,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +510,3.2670,10.7215,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +511,2.9280,10.5332,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +512,5.5312,6.7036,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +513,3.2530,5.7719,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +514,3.2670,10.8618,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +515,2.9280,10.6285,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +516,5.5312,6.4392,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +517,3.2530,5.8317,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +518,3.2670,10.1076,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +519,2.9280,10.2577,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +520,5.5312,6.3377,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +521,3.2530,5.7912,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +522,3.2670,10.6056,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +523,2.9280,10.3724,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +524,5.5312,6.6444,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +525,3.2530,5.9168,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +526,3.2670,9.8757,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +527,2.9280,9.9897,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +528,5.5312,6.4963,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +529,3.2530,5.7587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +530,3.2670,10.0723,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +531,2.9280,10.3035,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +532,5.5312,9.0422,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +533,3.2530,8.4033,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +534,3.2670,10.7911,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +535,2.9280,10.6524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +536,5.5312,6.4611,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +537,3.2530,5.7109,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +538,3.2670,10.4500,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +539,2.9280,10.2369,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +540,5.5312,6.7710,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +541,3.2530,5.8492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,3.2670,10.4740,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +543,2.9280,10.3873,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +544,5.5312,6.7169,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +545,3.2530,5.9732,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,3.2670,10.0914,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +547,2.9280,10.1195,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +548,5.5312,7.2562,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +549,3.2530,6.1218,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,3.2670,11.0180,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +551,2.9280,10.9377,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +552,5.5312,6.5087,0.0246,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +553,3.2530,5.6665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,3.2670,10.4243,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +555,2.9280,10.3067,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +556,5.5312,5.9863,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +557,3.2530,5.7043,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,3.2670,10.3210,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +559,2.9280,10.1565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +560,5.5312,6.7633,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +561,3.2530,5.6449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,3.2670,10.8545,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +563,2.9280,10.8862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.5312,6.5857,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +565,3.2530,5.6968,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,3.2670,11.0205,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +567,2.9280,10.9579,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +568,5.5312,6.6551,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +569,3.2530,5.8197,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,3.2670,11.0883,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.9280,10.9409,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +572,5.5312,6.6763,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +573,3.2530,5.7443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,3.2670,10.0889,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.9280,9.9967,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +576,5.5312,9.4552,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +577,3.2530,8.5429,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,3.2670,10.2046,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +579,2.9280,10.0061,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +580,5.5312,6.1548,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +581,3.2530,5.6395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,3.2670,10.4991,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +583,2.9280,10.4289,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +584,5.5312,6.6724,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +585,3.2530,5.9398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,3.2670,10.7040,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +587,2.9280,10.6660,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +588,5.5312,8.1349,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +589,3.2530,6.2889,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,3.2670,9.8531,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +591,2.9280,10.0917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.5312,8.8227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +593,3.2530,6.0925,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,3.2670,5.7242,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +595,2.9280,9.9506,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +596,5.5312,5.6417,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +597,3.2530,5.4955,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,3.2670,10.3594,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +599,2.9280,10.3290,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.5312,5.6976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +601,3.2530,5.5606,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,3.2670,10.4645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +603,2.9280,10.4750,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +604,5.5312,5.7282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,3.2530,5.5965,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,3.2670,10.2960,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +607,2.9280,10.2777,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +608,5.5312,7.0042,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,3.2530,5.8453,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,3.2670,9.7730,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +611,2.9280,10.1319,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +612,5.5312,6.3447,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,3.2530,5.6738,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,3.2670,10.5267,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.9280,10.4953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +616,5.5312,5.9978,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,3.2530,5.6117,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,3.2670,10.3592,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.9280,10.3497,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.5312,6.1814,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,3.2530,5.6813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,3.2670,10.3715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.9280,10.3012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +624,5.5312,5.6239,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,3.2530,5.5867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,3.2670,10.2307,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +627,2.9280,10.2361,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +628,5.5312,5.8538,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,3.2530,5.6542,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,3.2670,10.2672,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +631,2.9280,10.2363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +632,5.5312,5.7830,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,3.2530,5.6575,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,3.2670,10.1241,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +635,2.9280,10.2258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +636,5.5312,5.7255,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,3.2530,5.6557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,3.2670,10.4125,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +639,2.9280,10.2164,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +640,5.5312,6.1046,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,3.2530,5.8204,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,3.2670,10.4489,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +643,2.9280,10.2777,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.5312,6.7199,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,3.2530,6.0410,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,3.2670,10.1107,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +647,2.9280,10.2598,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.5312,6.3801,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,3.2530,5.8247,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,3.2670,10.6848,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +651,2.9280,10.5697,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.5312,13.0719,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,3.2530,12.2135,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,3.2670,12.4700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +655,2.9280,13.1276,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +656,5.5312,6.2172,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,3.2530,5.9088,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,3.2670,13.2220,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +659,2.9280,15.0077,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +660,5.5312,6.5317,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,3.2530,5.7339,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,3.2670,10.3580,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.9280,10.1244,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +664,5.5312,6.4392,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,3.2530,5.7565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,3.2670,10.1231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.9280,10.2830,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +668,5.5312,6.9107,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,3.2530,6.2036,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,3.2670,11.9322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.9280,11.5621,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.5312,6.5987,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,3.2530,5.7188,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,3.2670,9.8734,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +675,2.9280,10.2525,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.5312,6.3424,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,3.2530,5.6802,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,3.2670,10.7060,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +679,2.9280,10.5493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +680,5.5312,8.6663,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,3.2530,7.5655,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,3.2670,10.4915,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +683,2.9280,10.3432,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +684,5.5312,6.6265,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,3.2530,5.8017,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,3.2670,10.6378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +687,2.9280,10.1828,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +688,5.5312,9.0985,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,3.2530,7.9020,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,3.2670,10.2878,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +691,2.9280,10.1738,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +692,5.5312,6.2238,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,3.2530,5.7879,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,3.2670,10.6185,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +695,2.9280,10.4400,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +696,5.5312,6.3117,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,3.2530,5.7350,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,3.2670,10.4548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +699,2.9280,10.3538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.5312,5.8625,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,3.2530,5.6030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,3.2670,10.4437,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.9280,10.3722,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.5312,5.7588,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,3.2530,5.5498,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,3.2670,10.3291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.9280,10.2937,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.5312,5.7039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,3.2530,5.5768,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,3.2670,10.3960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.9280,10.3839,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +712,5.5312,5.6878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,3.2530,5.5456,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,3.2670,10.4329,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.9280,10.4062,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +716,5.5312,6.2035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,3.2530,5.8333,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,3.2670,10.7665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +719,2.9280,10.6770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +720,5.5312,52.6468,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,3.2530,31.5745,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,3.2670,25.6461,0.0060,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.9280,25.3870,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.5312,5.7915,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,3.2530,5.6725,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,3.2670,10.5255,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.9280,10.4875,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.5312,5.7360,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,3.2530,5.6307,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,3.2670,10.3988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.9280,10.5014,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.5312,5.6832,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,3.2530,5.6627,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,3.2670,10.4399,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.9280,10.5010,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.5312,5.7133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,3.2530,5.5603,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,3.2670,10.4194,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.9280,10.4486,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.5312,5.6069,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,3.2530,5.5709,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,3.2670,10.4977,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.9280,10.4562,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.5312,5.6261,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,3.2530,5.6210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,3.2670,10.3285,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.9280,10.3808,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.5312,5.6510,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,3.2530,5.5968,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,3.2670,10.3721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.9280,10.3955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.5312,5.6580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,3.2530,5.6082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,3.2670,10.3011,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.9280,10.3669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.5312,5.5947,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,3.2530,5.5764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,3.2670,10.2712,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.9280,10.3383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.5312,5.6815,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,3.2530,5.6711,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,3.2670,10.3844,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.9280,10.4240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.5312,5.6865,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,3.2530,5.6365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,3.2670,10.5783,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.9280,10.5490,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.5312,5.7979,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,3.2530,5.6815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,3.2670,10.3554,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.9280,10.3678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.5312,5.8316,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,3.2530,5.6915,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,3.2670,10.3515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.9280,10.3542,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.5312,5.7448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,3.2530,5.6691,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,3.2670,10.4152,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.9280,10.4055,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.5312,5.9547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,3.2530,5.7722,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,3.2670,10.3167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.9280,10.3238,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.5312,6.2113,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,3.2530,5.9216,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,3.2670,10.5313,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.9280,10.4251,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.5312,6.2268,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,3.2530,5.9223,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,3.2670,10.4145,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.9280,10.3369,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.5312,6.2505,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,3.2530,5.7890,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,3.2670,10.1677,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.9280,10.3690,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.5312,6.3258,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,3.2530,5.8812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,3.2670,9.8147,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.9280,9.5860,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.5312,6.6696,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,3.2530,5.9393,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,3.2670,10.4145,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.9280,10.2892,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.5312,6.5871,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,3.2530,6.3140,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,3.2670,10.3415,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.9280,10.2284,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.5312,6.4026,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,3.2530,5.8698,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,3.2670,9.8138,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.9280,10.1136,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.5312,6.3626,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,3.2530,5.9194,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,3.2670,9.4513,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.9280,8.0765,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.5312,7.0762,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,3.2530,5.8538,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,3.2670,11.8437,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.9280,11.8616,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.5312,7.1292,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,3.2530,6.1220,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,3.2670,11.1581,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.9280,10.9164,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.5312,6.3477,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,3.2530,5.8194,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,3.2670,10.8682,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.9280,10.7410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.5312,6.4950,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,3.2530,5.9591,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,3.2670,9.9681,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.9280,10.3684,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.5312,6.8833,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,3.2530,6.0224,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,3.2670,10.0992,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.9280,10.0173,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.5312,6.2528,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,3.2530,5.8246,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,3.2670,10.5759,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.9280,10.5348,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.5312,6.3522,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,3.2530,5.7923,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,3.2670,10.4480,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.9280,10.3438,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.5312,6.5179,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,3.2530,5.8937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,3.2670,8.0204,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.9280,7.7915,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.5312,6.3416,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,3.2530,5.8484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,3.2670,10.4830,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.9280,10.2898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.5312,6.7104,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,3.2530,6.1761,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,3.2670,12.6257,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.9280,12.5496,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.5312,6.5565,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,3.2530,5.8272,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,3.2670,10.4284,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.9280,10.4118,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.5312,6.7007,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,3.2530,5.8536,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,3.2670,10.2739,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.9280,10.2592,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.5312,6.0476,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,3.2530,5.7939,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,3.2670,10.4026,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.9280,10.3792,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.5312,6.2239,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,3.2530,5.8096,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,3.2670,10.9369,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.9280,10.7215,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.5312,7.0888,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,3.2530,5.8393,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,3.2670,10.8403,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.9280,10.7669,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.5312,7.1812,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,3.2530,6.2244,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,3.2670,10.5093,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.9280,10.3256,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.5312,8.4783,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.2530,7.5358,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,3.2670,10.5036,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.9280,10.3059,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.5312,8.7477,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.2530,7.9262,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,3.2670,10.3140,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.9280,10.3030,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.5312,6.8648,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.2530,5.8940,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,3.2670,10.6060,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.9280,10.3787,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.5312,10.3796,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.2530,9.2028,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,3.2670,10.5803,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.9280,10.3465,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.5312,7.1158,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.2530,6.0734,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,3.2670,10.3809,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.9280,10.3957,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.5312,7.1697,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.2530,5.8531,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,3.2670,10.2458,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.9280,10.3068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.5312,6.7895,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.2530,6.0041,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,3.2670,9.3368,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.9280,10.0660,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.5312,6.5726,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.2530,5.8069,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,3.2670,10.5917,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.9280,10.3649,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.5312,6.5923,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.2530,5.7071,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,3.2670,10.7191,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.9280,10.5064,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.5312,6.8019,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.2530,6.1041,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,3.2670,10.6566,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.9280,10.4331,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.5312,6.7787,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.2530,5.9707,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,3.2670,9.8995,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.9280,10.5412,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.5312,6.6382,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.2530,5.9477,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,3.2670,10.0321,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.9280,10.3490,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.5312,6.9401,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.2530,5.8981,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,3.2670,10.8916,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.9280,10.5147,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.5312,6.6812,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.2530,5.9813,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,3.2670,10.1227,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.9280,10.2320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.5312,6.7473,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.2530,5.8508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,3.2670,10.5229,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.9280,10.3222,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.5312,6.6725,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.2530,5.9202,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,3.2670,9.5101,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.9280,10.2684,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.5312,6.3955,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.2530,5.8805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,3.2670,10.2901,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.9280,10.4318,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.5312,6.1920,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.2530,5.7198,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,3.2670,8.9832,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.9280,9.0915,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.5312,6.5517,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.2530,5.8127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,3.2670,10.1999,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.9280,10.1365,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.5312,6.1013,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.2530,5.7394,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,3.2670,10.0655,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.9280,10.0729,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.5312,6.3655,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +961,3.2530,5.7387,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,3.2670,10.1776,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +963,2.9280,10.0134,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +964,5.5312,6.2719,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +965,3.2530,5.7590,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,3.2670,9.7492,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +967,2.9280,9.7489,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +968,5.5312,6.3030,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +969,3.2530,5.7712,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,3.2670,9.6040,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +971,2.9280,10.2808,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +972,5.5312,6.6160,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +973,3.2530,5.7981,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,3.2670,10.4292,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +975,2.9280,10.2863,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +976,5.5312,6.3786,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +977,3.2530,5.7621,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,3.2670,9.9583,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +979,2.9280,9.9070,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +980,5.5312,6.3498,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +981,3.2530,5.9319,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,3.2670,10.0278,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +983,2.9280,10.2745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +984,5.5312,6.3250,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +985,3.2530,5.9327,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,3.2670,10.0837,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +987,2.9280,10.0717,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +988,5.5312,6.4575,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +989,3.2530,5.8763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,3.2670,10.0191,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +991,2.9280,10.0361,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +992,5.5312,6.2695,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +993,3.2530,5.9119,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,3.2670,9.9549,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +995,2.9280,10.0757,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +996,5.5312,6.2392,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +997,3.2530,5.7195,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,3.2670,10.1062,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +999,2.9280,10.3780,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1000,5.5312,6.2695,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1001,3.2530,5.8025,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,3.2670,9.9484,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1003,2.9280,10.0679,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1004,5.5312,6.0903,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1005,3.2530,5.7924,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,3.2670,9.8731,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1007,2.9280,10.0675,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1008,5.5312,6.3479,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1009,3.2530,5.8366,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,3.2670,8.8795,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1011,2.9280,10.4044,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1012,5.5312,6.4425,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1013,3.2530,5.6811,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,3.2670,8.9682,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1015,2.9280,9.3620,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1016,5.5312,6.2802,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1017,3.2530,5.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,3.2670,10.1013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1019,2.9280,10.0425,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1020,5.5312,6.6216,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1021,3.2530,5.7259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,3.2670,10.3933,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1023,2.9280,10.3435,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1024,5.5312,6.4517,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1025,3.2530,5.7636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,3.2670,9.8706,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1027,2.9280,9.9798,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1028,5.5312,7.7500,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1029,3.2530,6.7147,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,3.2670,10.1361,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.9280,9.9753,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1032,5.5312,6.5496,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1033,3.2530,5.6740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,3.2670,10.1967,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1035,2.9280,10.1960,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1036,5.5312,6.7415,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1037,3.2530,5.7490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,3.2670,9.9819,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1039,2.9280,10.1509,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1040,5.5312,6.6953,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1041,3.2530,5.8590,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,3.2670,10.1468,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1043,2.9280,10.1613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1044,5.5312,6.8156,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1045,3.2530,5.7678,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,3.2670,10.3719,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1047,2.9280,10.3170,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1048,5.5312,6.7035,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1049,3.2530,5.7939,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,3.2670,10.3883,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1051,2.9280,10.3327,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1052,5.5312,6.5517,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1053,3.2530,5.7377,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,3.2670,10.4563,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1055,2.9280,10.3251,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1056,5.5312,6.9247,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1057,3.2530,5.7850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,3.2670,10.8873,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1059,2.9280,10.8348,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1060,5.5312,6.7083,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1061,3.2530,5.7577,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,3.2670,10.1845,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1063,2.9280,10.1560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1064,5.5312,6.6320,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1065,3.2530,5.8480,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,3.2670,10.5482,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1067,2.9280,10.4056,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1068,5.5312,6.9548,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1069,3.2530,5.8305,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,3.2670,10.1689,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1071,2.9280,10.2330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1072,5.5312,6.6512,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1073,3.2530,5.8135,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,3.2670,10.3480,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1075,2.9280,10.2069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1076,5.5312,6.8294,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1077,3.2530,5.8800,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,3.2670,10.9760,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1079,2.9280,10.8477,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1080,5.5312,7.2000,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1081,3.2530,5.9944,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,3.2670,10.0586,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1083,2.9280,10.0539,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1084,5.5312,6.8724,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.2530,5.7758,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,3.2670,16.0141,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1087,2.9280,15.4906,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1088,5.5312,6.7406,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.2530,5.8628,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,3.2670,10.3862,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1091,2.9280,10.2539,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1092,5.5312,6.8359,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.2530,5.9713,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,3.2670,10.6397,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1095,2.9280,10.8780,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1096,5.5312,6.3222,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.2530,5.8606,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,3.2670,10.3458,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1099,2.9280,10.2336,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1100,5.5312,6.1415,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.2530,5.6868,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,3.2670,10.5338,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1103,2.9280,10.4483,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1104,5.5312,5.8530,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.2530,5.6537,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,3.2670,10.4020,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1107,2.9280,10.2999,0.0142,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1108,5.5312,6.1086,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.2530,5.7790,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,3.2670,10.4979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1111,2.9280,10.4232,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1112,5.5312,6.0403,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.2530,5.7321,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,3.2670,10.4505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.9280,10.3555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1116,5.5312,5.9193,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.2530,5.7508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,3.2670,10.3092,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.9280,10.2860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1120,5.5312,6.7612,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.2530,5.9161,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,3.2670,10.3834,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.9280,10.2952,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1124,5.5312,6.6897,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.2530,5.9470,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,3.2670,9.9189,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1127,2.9280,10.0156,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1128,5.5312,6.8992,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.2530,5.8040,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,3.2670,10.2549,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1131,2.9280,10.2111,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1132,5.5312,8.6770,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.2530,7.6625,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,3.2670,11.9327,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1135,2.9280,11.9226,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1136,5.5312,6.7659,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.2530,6.0476,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,3.2670,10.5011,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1139,2.9280,10.2361,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.5312,6.7453,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.2530,5.7263,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,3.2670,10.4958,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1143,2.9280,10.2452,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.5312,6.3600,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.2530,5.6801,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,3.2670,10.1865,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1147,2.9280,10.1994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.5312,6.7378,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.2530,5.9348,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,3.2670,10.2746,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1151,2.9280,10.1631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1152,5.5312,6.7050,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.2530,6.2637,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,3.2670,10.0567,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1155,2.9280,9.9395,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1156,5.5312,7.5548,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.2530,5.7812,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,3.2670,10.4913,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.9280,10.2483,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1160,5.5312,6.7775,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.2530,5.8002,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,3.2670,11.7943,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.9280,11.5362,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1164,5.5312,6.2052,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.2530,5.6413,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,3.2670,10.3464,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.9280,10.1940,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.5312,6.7719,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.2530,5.9362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,3.2670,10.3530,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1171,2.9280,10.1024,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.5312,6.9308,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.2530,5.7773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,3.2670,10.0519,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1175,2.9280,10.1719,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1176,5.5312,6.6002,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.2530,5.9463,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,3.2670,11.6505,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1179,2.9280,11.6249,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1180,5.5312,6.6910,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.2530,5.7290,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,3.2670,10.6410,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1183,2.9280,10.4041,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1184,5.5312,6.4436,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.2530,5.7677,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,3.2670,10.0035,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1187,2.9280,9.9424,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1188,5.5312,6.7405,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.2530,5.9597,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,3.2670,10.4860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1191,2.9280,10.2588,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1192,5.5312,6.4297,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.2530,5.7377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,3.2670,10.2337,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1195,2.9280,10.1570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1196,5.5312,7.7983,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.2530,8.1784,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,3.2670,10.2026,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1199,2.9280,10.1008,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.5312,6.1299,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1201,3.2530,5.6891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1202,3.2670,10.2521,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1203,2.9280,10.1705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1204,5.5312,6.0100,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1205,3.2530,5.5506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1206,3.2670,10.5001,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1207,2.9280,10.3586,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1208,5.5312,5.7761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1209,3.2530,5.5323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1210,3.2670,10.4646,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1211,2.9280,10.3989,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1212,5.5312,5.7998,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1213,3.2530,5.5652,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1214,3.2670,10.4689,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1215,2.9280,10.3426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1216,5.5312,5.7479,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1217,3.2530,5.5572,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1218,3.2670,10.4547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1219,2.9280,10.3996,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1220,5.5312,5.8547,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1221,3.2530,5.6223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1222,3.2670,10.3049,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1223,2.9280,10.1754,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1224,5.5312,6.0014,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1225,3.2530,5.7191,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1226,3.2670,10.4886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1227,2.9280,10.3380,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1228,5.5312,7.0317,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1229,3.2530,6.2927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1230,3.2670,10.3486,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1231,2.9280,10.1795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1232,5.5312,6.7583,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1233,3.2530,5.9709,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1234,3.2670,10.1533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1235,2.9280,10.1115,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1236,5.5312,6.3151,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1237,3.2530,5.6502,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1238,3.2670,10.0881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1239,2.9280,10.1761,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1240,5.5312,6.5293,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1241,3.2530,5.8429,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1242,3.2670,10.1233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1243,2.9280,14.1130,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1244,5.5312,6.2072,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1245,3.2530,5.8150,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1246,3.2670,10.4095,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1247,2.9280,10.2332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1248,5.5312,6.6562,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1249,3.2530,5.7612,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1250,3.2670,11.6636,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1251,2.9280,11.5291,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1252,5.5312,6.9892,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1253,3.2530,5.8767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1254,3.2670,10.1100,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1255,2.9280,9.8244,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1256,5.5312,6.7626,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1257,3.2530,6.4229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1258,3.2670,10.4665,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1259,2.9280,10.3673,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1260,5.5312,8.0307,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1261,3.2530,7.2109,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,3.2670,11.0277,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1263,2.9280,14.0860,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1264,5.5312,7.9832,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1265,3.2530,7.2016,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,3.2670,10.4276,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1267,2.9280,10.1995,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1268,5.5312,6.7395,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1269,3.2530,5.8503,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,3.2670,9.9239,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1271,2.9280,9.8983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1272,5.5312,7.5486,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1273,3.2530,6.3720,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,3.2670,10.0585,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1275,2.9280,10.1740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1276,5.5312,6.6408,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1277,3.2530,5.7685,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,3.2670,10.4532,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1279,2.9280,10.2096,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1280,5.5312,6.0639,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1281,3.2530,5.6399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,3.2670,10.4253,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1283,2.9280,10.2296,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.5312,6.1957,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1285,3.2530,5.7538,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,3.2670,10.6222,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1287,2.9280,10.6255,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1288,5.5312,5.9873,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1289,3.2530,5.6466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,3.2670,10.3156,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.9280,10.4913,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1292,5.5312,6.2213,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1293,3.2530,5.8723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,3.2670,9.9813,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.9280,10.0290,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1296,5.5312,6.2530,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1297,3.2530,5.9039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,3.2670,9.7914,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1299,2.9280,9.7966,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1300,5.5312,6.0766,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1301,3.2530,5.7017,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,3.2670,10.5626,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1303,2.9280,10.5375,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1304,5.5312,6.8172,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1305,3.2530,5.8839,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,3.2670,9.9031,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1307,2.9280,10.3129,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1308,5.5312,6.3240,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1309,3.2530,5.8815,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,3.2670,10.3814,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1311,2.9280,10.2506,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.5312,6.5676,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1313,3.2530,5.7104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,3.2670,10.1880,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1315,2.9280,10.2533,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1316,5.5312,6.1987,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1317,3.2530,5.7343,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,3.2670,10.4672,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1319,2.9280,10.2783,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1320,5.5312,6.6183,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1321,3.2530,5.8669,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,3.2670,10.4719,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1323,2.9280,10.4129,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1324,5.5312,7.1643,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,3.2530,5.7348,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,3.2670,10.7985,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1327,2.9280,10.7325,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1328,5.5312,6.7082,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,3.2530,6.8332,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,3.2670,9.9188,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1331,2.9280,9.7265,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1332,5.5312,6.6707,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,3.2530,5.9481,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,3.2670,10.2927,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.9280,10.1892,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1336,5.5312,7.5209,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,3.2530,6.8313,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,3.2670,10.4035,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.9280,10.2046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.5312,6.5258,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,3.2530,6.1846,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,3.2670,9.2622,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.9280,9.9312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1344,5.5312,8.9285,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,3.2530,8.1212,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,3.2670,10.3272,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1347,2.9280,10.1542,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1348,5.5312,6.5008,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,3.2530,5.8144,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,3.2670,9.9967,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1351,2.9280,10.0186,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1352,5.5312,6.7483,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,3.2530,5.8783,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,3.2670,10.2863,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1355,2.9280,10.1452,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1356,5.5312,6.5796,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,3.2530,5.8510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,3.2670,10.4868,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1359,2.9280,10.2880,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1360,5.5312,6.9831,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,3.2530,6.0614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,3.2670,10.2685,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1363,2.9280,10.1838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.5312,6.5017,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,3.2530,5.8304,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,3.2670,10.4850,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1367,2.9280,10.3970,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.5312,6.6308,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,3.2530,5.9324,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,3.2670,10.3192,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1371,2.9280,10.1009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.5312,8.3393,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,3.2530,7.4347,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,3.2670,10.9237,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1375,2.9280,10.5274,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1376,5.5312,6.7598,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,3.2530,5.8063,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,3.2670,10.7072,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1379,2.9280,10.4746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1380,5.5312,6.2923,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,3.2530,5.8119,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,3.2670,10.0833,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.9280,10.2910,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1384,5.5312,6.3434,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,3.2530,5.9581,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,3.2670,10.3640,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.9280,10.4295,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1388,5.5312,6.5161,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,3.2530,5.8434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,3.2670,10.4461,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.9280,10.3594,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.5312,6.1132,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,3.2530,5.7174,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,3.2670,10.4369,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1395,2.9280,10.4262,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.5312,6.0885,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,3.2530,5.7606,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,3.2670,9.9542,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1399,2.9280,9.9644,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1400,5.5312,5.9682,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,3.2530,5.5830,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,3.2670,10.1817,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1403,2.9280,10.1534,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1404,5.5312,6.1015,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,3.2530,5.7094,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,3.2670,10.1028,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1407,2.9280,10.0495,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1408,5.5312,6.0638,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,3.2530,5.8762,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,3.2670,9.7132,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1411,2.9280,9.8744,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1412,5.5312,6.5047,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,3.2530,5.7123,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,3.2670,10.2541,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1415,2.9280,10.2787,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1416,5.5312,6.2983,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,3.2530,5.8430,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,3.2670,9.9321,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1419,2.9280,10.2740,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.5312,6.2450,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,3.2530,5.6930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,3.2670,10.2038,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.9280,10.2684,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.5312,6.5957,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,3.2530,5.8255,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,3.2670,10.6878,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.9280,10.4488,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.5312,6.5081,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,3.2530,5.7386,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,3.2670,10.1773,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.9280,10.1820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1432,5.5312,6.1327,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,3.2530,5.6475,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,3.2670,10.0303,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.9280,10.0871,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1436,5.5312,6.0601,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,3.2530,5.7758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,3.2670,10.2419,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1439,2.9280,10.2597,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1440,5.5312,46.3196,0.0363,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1441,3.2530,27.1373,0.0135,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1442,3.2670,26.7070,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1443,2.9280,26.1580,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1444,5.5312,5.8005,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1445,3.2530,5.6772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1446,3.2670,10.4175,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1447,2.9280,10.4017,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1448,5.5312,5.7661,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1449,3.2530,5.6078,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1450,3.2670,10.3882,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1451,2.9280,10.4067,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1452,5.5312,5.7820,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1453,3.2530,5.6608,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1454,3.2670,10.5147,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1455,2.9280,10.4952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1456,5.5312,5.6413,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1457,3.2530,5.5677,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1458,3.2670,10.3278,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1459,2.9280,10.3629,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1460,5.5312,5.6529,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1461,3.2530,5.5646,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1462,3.2670,10.2652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1463,2.9280,10.2956,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1464,5.5312,5.6104,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1465,3.2530,5.5442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1466,3.2670,10.2576,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1467,2.9280,10.2729,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1468,5.5312,5.6084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1469,3.2530,5.5866,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1470,3.2670,10.3171,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1471,2.9280,10.3560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1472,5.5312,5.7319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1473,3.2530,5.6137,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1474,3.2670,10.4864,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1475,2.9280,10.3684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1476,5.5312,5.6805,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1477,3.2530,5.6232,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1478,3.2670,10.3560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1479,2.9280,10.3092,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1480,5.5312,5.6950,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1481,3.2530,5.6205,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1482,3.2670,10.3090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1483,2.9280,10.3186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1484,5.5312,5.7038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1485,3.2530,5.6272,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1486,3.2670,10.3636,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1487,2.9280,10.3323,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1488,5.5312,5.6608,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1489,3.2530,5.6807,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1490,3.2670,10.2904,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1491,2.9280,10.3305,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1492,5.5312,6.0552,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1493,3.2530,6.7088,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1494,3.2670,10.5662,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1495,2.9280,10.3732,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1496,5.5312,6.9035,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1497,3.2530,6.3708,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1498,3.2670,10.2184,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1499,2.9280,10.4144,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1500,5.5312,9.5705,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1501,3.2530,5.9844,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1502,3.2670,10.2671,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1503,2.9280,10.3429,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1504,5.5312,6.3188,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1505,3.2530,5.9020,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1506,3.2670,9.8540,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1507,2.9280,9.8715,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1508,5.5312,5.9859,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1509,3.2530,5.6982,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1510,3.2670,10.3370,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1511,2.9280,10.3770,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1512,5.5312,6.5529,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1513,3.2530,5.8845,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1514,3.2670,10.3083,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1515,2.9280,10.1981,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1516,5.5312,6.4907,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1517,3.2530,5.8174,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1518,3.2670,10.0115,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1519,2.9280,9.9895,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1520,5.5312,6.1978,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1521,3.2530,5.8410,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1522,3.2670,10.5381,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1523,2.9280,10.1593,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1524,5.5312,6.0801,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1525,3.2530,5.9395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1526,3.2670,9.7696,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1527,2.9280,10.2426,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1528,5.5312,6.5308,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1529,3.2530,6.0047,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1530,3.2670,10.6756,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1531,2.9280,10.3347,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1532,5.5312,6.4190,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1533,3.2530,6.0426,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1534,3.2670,9.8658,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1535,2.9280,9.7937,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1536,5.5312,6.3628,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1537,3.2530,5.8580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1538,3.2670,11.3191,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1539,2.9280,11.1969,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1540,5.5312,6.5936,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1541,3.2530,5.7887,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1542,3.2670,10.1738,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1543,2.9280,10.3212,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1544,5.5312,6.3412,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1545,3.2530,5.8375,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1546,3.2670,9.8889,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1547,2.9280,10.0799,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1548,5.5312,6.2387,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1549,3.2530,6.0282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1550,3.2670,10.0036,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1551,2.9280,10.0218,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1552,5.5312,6.2043,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1553,3.2530,5.8490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1554,3.2670,9.8149,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1555,2.9280,10.0031,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1556,5.5312,6.1959,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1557,3.2530,5.8556,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1558,3.2670,9.6532,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1559,2.9280,10.3710,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1560,5.5312,6.3275,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1561,3.2530,5.8630,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,3.2670,9.9672,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1563,2.9280,10.1626,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1564,5.5312,6.2870,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1565,3.2530,5.9283,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,3.2670,10.1692,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1567,2.9280,9.9998,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1568,5.5312,6.4362,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1569,3.2530,5.8891,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,3.2670,10.1056,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1571,2.9280,10.1695,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1572,5.5312,6.7080,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1573,3.2530,5.7685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,3.2670,10.4935,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1575,2.9280,10.2744,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1576,5.5312,6.0585,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1577,3.2530,5.7495,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,3.2670,10.9137,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1579,2.9280,10.5835,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1580,5.5312,6.0177,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1581,3.2530,5.6820,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,3.2670,10.4205,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1583,2.9280,10.3637,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1584,5.5312,5.7198,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1585,3.2530,5.6929,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,3.2670,10.2256,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1587,2.9280,10.2874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1588,5.5312,6.0376,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1589,3.2530,5.7123,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,3.2670,10.2725,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1591,2.9280,10.2662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1592,5.5312,6.0573,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1593,3.2530,5.7453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,3.2670,11.0542,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1595,2.9280,10.5397,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1596,5.5312,6.6025,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1597,3.2530,5.9785,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,3.2670,10.0871,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1599,2.9280,10.2143,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1600,5.5312,6.7426,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,3.2530,5.9887,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,3.2670,10.2302,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1603,2.9280,10.0852,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1604,5.5312,6.5995,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,3.2530,5.7791,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,3.2670,9.6748,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1607,2.9280,10.3521,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1608,5.5312,7.1879,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,3.2530,5.8303,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,3.2670,10.1508,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1611,2.9280,10.3422,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1612,5.5312,7.7482,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,3.2530,6.6750,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,3.2670,10.3248,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1615,2.9280,10.0343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1616,5.5312,6.5458,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,3.2530,5.9554,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,3.2670,10.1243,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1619,2.9280,10.3517,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1620,5.5312,6.1800,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,3.2530,5.7927,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,3.2670,10.0640,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1623,2.9280,10.0030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1624,5.5312,6.3172,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,3.2530,5.9437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,3.2670,10.1586,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1627,2.9280,10.3827,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1628,5.5312,6.4865,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,3.2530,5.9810,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,3.2670,10.1705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1631,2.9280,10.2061,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1632,5.5312,6.3714,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,3.2530,5.9596,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,3.2670,10.2149,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1635,2.9280,10.2293,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1636,5.5312,6.1287,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,3.2530,5.9055,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,3.2670,10.2688,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1639,2.9280,10.3491,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1640,5.5312,6.5457,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,3.2530,5.7208,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,3.2670,10.3880,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1643,2.9280,10.2266,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1644,5.5312,6.2410,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,3.2530,5.8197,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,3.2670,10.3060,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1647,2.9280,10.3697,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1648,5.5312,6.2870,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,3.2530,5.8428,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,3.2670,10.3475,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1651,2.9280,10.1395,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1652,5.5312,6.2083,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,3.2530,5.8277,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,3.2670,10.0820,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1655,2.9280,10.0939,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1656,5.5312,6.3702,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,3.2530,5.8287,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,3.2670,10.1948,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1659,2.9280,10.1128,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1660,5.5312,6.5794,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,3.2530,5.8600,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,3.2670,9.9708,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1663,2.9280,10.1297,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1664,5.5312,6.3920,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,3.2530,5.7910,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,3.2670,9.9204,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1667,2.9280,10.0582,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1668,5.5312,6.5058,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,3.2530,5.7160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,3.2670,10.2429,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1671,2.9280,10.2975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1672,5.5312,6.7402,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,3.2530,5.9743,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,3.2670,9.8373,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1675,2.9280,10.2032,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1676,5.5312,6.6081,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,3.2530,5.8590,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,3.2670,10.2762,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1679,2.9280,10.3447,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1680,5.5312,7.0789,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1681,3.2530,6.2427,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1682,3.2670,10.3978,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1683,2.9280,10.1565,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1684,5.5312,6.7338,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1685,3.2530,5.7974,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1686,3.2670,10.2175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1687,2.9280,10.1894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1688,5.5312,6.7466,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1689,3.2530,5.8678,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1690,3.2670,9.8162,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1691,2.9280,10.1517,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1692,5.5312,6.4659,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1693,3.2530,5.7589,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1694,3.2670,10.1357,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1695,2.9280,10.2381,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1696,5.5312,6.5759,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1697,3.2530,5.7348,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1698,3.2670,9.8073,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1699,2.9280,10.2564,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1700,5.5312,6.7683,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1701,3.2530,5.8924,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1702,3.2670,9.8393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1703,2.9280,9.9941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1704,5.5312,6.3929,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1705,3.2530,5.7555,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1706,3.2670,10.2095,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1707,2.9280,10.3688,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1708,5.5312,6.4484,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1709,3.2530,5.7854,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1710,3.2670,10.0503,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1711,2.9280,10.1688,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1712,5.5312,6.4442,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1713,3.2530,5.7434,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1714,3.2670,10.3701,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1715,2.9280,10.3284,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1716,5.5312,6.3674,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1717,3.2530,5.7307,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1718,3.2670,10.1159,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1719,2.9280,10.3922,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1720,5.5312,6.6436,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1721,3.2530,5.8330,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1722,3.2670,11.6385,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1723,2.9280,11.4288,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1724,5.5312,6.5005,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1725,3.2530,5.9699,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1726,3.2670,10.3695,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1727,2.9280,10.2218,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1728,5.5312,6.3667,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1729,3.2530,6.2742,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1730,3.2670,9.6499,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1731,2.9280,10.2551,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1732,5.5312,6.2320,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1733,3.2530,6.1999,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1734,3.2670,9.9863,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1735,2.9280,10.2322,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1736,5.5312,6.4599,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1737,3.2530,6.0616,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1738,3.2670,9.5909,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1739,2.9280,9.5184,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1740,5.5312,6.5376,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1741,3.2530,5.7004,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,3.2670,10.0665,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1743,2.9280,10.0684,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1744,5.5312,6.1959,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1745,3.2530,5.8499,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,3.2670,10.5074,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1747,2.9280,10.3777,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1748,5.5312,6.1904,0.0858,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1749,3.2530,5.9119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,3.2670,10.2438,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,2.9280,10.1586,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1752,5.5312,6.4896,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1753,3.2530,5.7443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,3.2670,9.9742,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1755,2.9280,10.0260,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1756,5.5312,6.0093,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1757,3.2530,5.6485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,3.2670,10.3056,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1759,2.9280,10.2295,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1760,5.5312,6.1900,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1761,3.2530,5.6582,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,3.2670,10.0461,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1763,2.9280,9.7383,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1764,5.5312,6.4582,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1765,3.2530,5.9364,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,3.2670,10.5979,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1767,2.9280,10.5183,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1768,5.5312,6.2545,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1769,3.2530,5.7829,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,3.2670,10.1733,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1771,2.9280,10.2298,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1772,5.5312,6.2988,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1773,3.2530,5.8658,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,3.2670,10.3150,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1775,2.9280,9.9374,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1776,5.5312,6.3575,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1777,3.2530,5.8482,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,3.2670,10.1330,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1779,2.9280,10.1788,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1780,5.5312,6.6344,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1781,3.2530,6.2004,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,3.2670,10.4295,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1783,2.9280,10.2997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1784,5.5312,6.1854,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1785,3.2530,5.8238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,3.2670,10.2795,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1787,2.9280,10.1025,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1788,5.5312,6.5424,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1789,3.2530,6.0961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,3.2670,10.5552,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1791,2.9280,10.3675,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1792,5.5312,6.3628,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1793,3.2530,5.7926,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,3.2670,10.3709,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1795,2.9280,10.2111,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1796,5.5312,6.5237,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1797,3.2530,5.8852,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,3.2670,10.4112,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1799,2.9280,10.2732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1800,5.5312,8.6573,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1801,3.2530,7.6128,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1802,3.2670,10.5480,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1803,2.9280,10.1601,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1804,5.5312,7.0393,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1805,3.2530,6.0779,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1806,3.2670,10.3120,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1807,2.9280,10.2241,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1808,5.5312,6.7632,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1809,3.2530,5.9718,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1810,3.2670,10.4719,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1811,2.9280,10.2986,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1812,5.5312,6.7530,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1813,3.2530,5.9916,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1814,3.2670,10.5519,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1815,2.9280,10.3355,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1816,5.5312,6.8044,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1817,3.2530,6.1584,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1818,3.2670,10.4976,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1819,2.9280,10.2776,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1820,5.5312,6.8314,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1821,3.2530,6.0675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1822,3.2670,10.6499,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1823,2.9280,10.4328,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1824,5.5312,8.1614,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1825,3.2530,7.7847,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1826,3.2670,10.4644,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1827,2.9280,10.2521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1828,5.5312,6.5715,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1829,3.2530,5.8571,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1830,3.2670,10.0042,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1831,2.9280,10.2470,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1832,5.5312,6.8128,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1833,3.2530,5.9266,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1834,3.2670,10.3084,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1835,2.9280,10.2222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1836,5.5312,6.3860,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1837,3.2530,5.8214,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1838,3.2670,9.8640,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1839,2.9280,9.9422,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1840,5.5312,6.4340,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1841,3.2530,5.6872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1842,3.2670,10.1282,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1843,2.9280,10.1805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1844,5.5312,6.5705,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1845,3.2530,5.7470,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1846,3.2670,10.1099,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1847,2.9280,9.9436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1848,5.5312,6.7984,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1849,3.2530,6.0799,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1850,3.2670,10.5218,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1851,2.9280,10.3659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1852,5.5312,8.7091,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1853,3.2530,7.7672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1854,3.2670,10.1779,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1855,2.9280,10.1234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1856,5.5312,5.9979,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1857,3.2530,5.5908,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1858,3.2670,10.6683,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1859,2.9280,10.5433,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1860,5.5312,6.4436,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1861,3.2530,5.7362,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1862,3.2670,10.0701,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1863,2.9280,10.2072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1864,5.5312,10.1685,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1865,3.2530,9.3993,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1866,3.2670,10.1816,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1867,2.9280,10.0116,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1868,5.5312,6.9399,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1869,3.2530,6.0042,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1870,3.2670,10.4155,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1871,2.9280,10.3887,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1872,5.5312,6.7512,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1873,3.2530,6.1495,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1874,3.2670,10.3021,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1875,2.9280,10.0195,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1876,5.5312,6.9993,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1877,3.2530,5.8596,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1878,3.2670,10.5786,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1879,2.9280,10.3487,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1880,5.5312,18.8643,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1881,3.2530,17.3382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1882,3.2670,16.9797,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1883,2.9280,16.6795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1884,5.5312,6.0310,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1885,3.2530,5.6257,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1886,3.2670,10.5297,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1887,2.9280,10.4522,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1888,5.5312,6.0185,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1889,3.2530,5.5926,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1890,3.2670,10.5853,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1891,2.9280,10.5877,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1892,5.5312,6.5473,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1893,3.2530,5.8588,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1894,3.2670,10.5264,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1895,2.9280,10.3120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1896,5.5312,6.7732,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1897,3.2530,5.8354,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1898,3.2670,10.0140,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1899,2.9280,10.1681,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1900,5.5312,7.6472,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1901,3.2530,6.8839,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1902,3.2670,10.1860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1903,2.9280,10.2679,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1904,5.5312,7.2343,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1905,3.2530,6.2050,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1906,3.2670,10.1395,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1907,2.9280,10.2884,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1908,5.5312,11.6749,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1909,3.2530,10.8630,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1910,3.2670,10.0790,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1911,2.9280,9.9433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1912,5.5312,6.4068,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1913,3.2530,5.9810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1914,3.2670,10.4872,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1915,2.9280,10.2337,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1916,5.5312,6.3179,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1917,3.2530,5.8438,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1918,3.2670,9.2433,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1919,2.9280,9.5265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1920,5.5312,6.2678,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1921,3.2530,6.1487,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1922,3.2670,11.3765,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1923,2.9280,11.2628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1924,5.5312,6.5640,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1925,3.2530,5.6520,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1926,3.2670,13.1929,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1927,2.9280,9.6905,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1928,5.5312,5.9850,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1929,3.2530,5.7022,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1930,3.2670,10.5293,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1931,2.9280,10.4797,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1932,5.5312,6.2025,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1933,3.2530,5.7597,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1934,3.2670,10.0307,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1935,2.9280,10.0223,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1936,5.5312,6.2528,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1937,3.2530,5.7990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1938,3.2670,10.2765,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1939,2.9280,10.2157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1940,5.5312,6.4312,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1941,3.2530,5.8698,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1942,3.2670,9.2270,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1943,2.9280,10.1893,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1944,5.5312,6.5476,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1945,3.2530,5.8846,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1946,3.2670,10.0716,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1947,2.9280,10.1690,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1948,5.5312,6.5057,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1949,3.2530,6.0897,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1950,3.2670,10.5436,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1951,2.9280,10.2181,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1952,5.5312,7.2511,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1953,3.2530,6.6211,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1954,3.2670,10.2270,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1955,2.9280,10.1937,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1956,5.5312,6.3448,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1957,3.2530,6.3986,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1958,3.2670,10.4120,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1959,2.9280,10.2160,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1960,5.5312,6.0721,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1961,3.2530,5.8548,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1962,3.2670,9.2739,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1963,2.9280,9.0012,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1964,5.5312,6.4272,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1965,3.2530,6.0976,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1966,3.2670,8.8365,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1967,2.9280,10.2056,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1968,5.5312,6.5544,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1969,3.2530,5.9248,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1970,3.2670,11.3237,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1971,2.9280,11.1085,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1972,5.5312,8.5361,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1973,3.2530,7.7020,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1974,3.2670,12.5850,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1975,2.9280,12.2471,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1976,5.5312,6.2242,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1977,3.2530,7.5305,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1978,3.2670,10.3675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1979,2.9280,10.2652,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1980,5.5312,7.1818,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1981,3.2530,6.0528,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,3.2670,10.1672,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1983,2.9280,10.0860,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1984,5.5312,6.5995,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1985,3.2530,5.7687,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,3.2670,9.9582,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1987,2.9280,10.2364,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1988,5.5312,6.3755,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1989,3.2530,5.7065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,3.2670,10.1648,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1991,2.9280,10.0914,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1992,5.5312,6.0078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1993,3.2530,5.7053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,3.2670,10.2746,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1995,2.9280,10.2113,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1996,5.5312,5.8458,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1997,3.2530,5.6795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,3.2670,10.2663,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1999,2.9280,10.1075,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2000,5.5312,6.2055,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2001,3.2530,8.0199,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,3.2670,10.4757,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2003,2.9280,10.3194,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.5312,6.7842,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2005,3.2530,6.3385,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,3.2670,13.6478,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2007,2.9280,13.6177,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2008,5.5312,10.0382,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2009,3.2530,5.7620,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,3.2670,9.8896,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2011,2.9280,10.3729,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2012,5.5312,7.2390,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2013,3.2530,6.9200,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,3.2670,10.6470,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2015,2.9280,10.0879,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2016,5.5312,6.2223,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2017,3.2530,5.5826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,3.2670,10.3197,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2019,2.9280,10.2197,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2020,5.5312,5.7750,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2021,3.2530,5.5313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,3.2670,10.2455,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2023,2.9280,10.2291,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2024,5.5312,5.8994,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2025,3.2530,5.6331,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,3.2670,10.3700,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2027,2.9280,10.3355,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2028,5.5312,5.8295,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2029,3.2530,5.6722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,3.2670,10.4296,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2031,2.9280,10.2659,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2032,5.5312,5.8437,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2033,3.2530,5.5544,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,3.2670,10.4000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2035,2.9280,10.2888,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2036,5.5312,5.9405,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2037,3.2530,5.6917,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,3.2670,10.3838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2039,2.9280,10.3138,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2040,5.5312,5.9040,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2041,3.2530,5.6374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,3.2670,10.4732,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2043,2.9280,10.3365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2044,5.5312,5.8865,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,3.2530,5.6680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,3.2670,10.4300,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2047,2.9280,10.3211,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2048,5.5312,5.8635,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,3.2530,5.6488,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,3.2670,10.3848,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2051,2.9280,10.3347,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2052,5.5312,5.8806,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,3.2530,5.7252,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,3.2670,10.4047,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2055,2.9280,10.3522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2056,5.5312,5.9675,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,3.2530,5.6822,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,3.2670,10.3573,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2059,2.9280,10.3547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2060,5.5312,5.9230,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,3.2530,5.6161,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,3.2670,10.4731,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,2.9280,10.3869,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2064,5.5312,5.8878,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,3.2530,5.6348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,3.2670,10.4923,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2067,2.9280,10.4095,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2068,5.5312,5.9413,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,3.2530,5.6569,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,3.2670,10.4927,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2071,2.9280,10.3625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2072,5.5312,5.8988,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,3.2530,5.6479,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,3.2670,10.4434,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2075,2.9280,10.3782,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2076,5.5312,5.8234,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,3.2530,5.6547,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,3.2670,10.3705,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2079,2.9280,10.2988,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2080,5.5312,5.7885,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,3.2530,5.6171,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,3.2670,10.4474,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2083,2.9280,10.3652,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2084,5.5312,5.8438,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,3.2530,5.6091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,3.2670,10.4945,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2087,2.9280,10.3740,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2088,5.5312,5.8381,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,3.2530,5.5740,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,3.2670,10.3775,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2091,2.9280,10.3079,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2092,5.5312,5.7992,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,3.2530,5.5758,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,3.2670,10.5318,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2095,2.9280,10.4125,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2096,5.5312,5.8978,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,3.2530,5.7011,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,3.2670,12.5758,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2099,2.9280,12.4380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2100,5.5312,5.9351,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,3.2530,5.7152,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,3.2670,10.2303,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2103,2.9280,9.9078,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2104,5.5312,6.2032,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,3.2530,5.6995,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,3.2670,10.3971,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,2.9280,10.1282,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2108,5.5312,5.8751,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,3.2530,5.6014,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,3.2670,10.4292,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,2.9280,10.3912,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2112,5.5312,5.7355,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,3.2530,5.5931,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,3.2670,10.3441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2115,2.9280,10.3528,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2116,5.5312,5.7357,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,3.2530,5.5955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,3.2670,10.3020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2119,2.9280,10.3346,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2120,5.5312,5.7616,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,3.2530,5.5962,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,3.2670,10.3990,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2123,2.9280,10.2885,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2124,5.5312,5.8508,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,3.2530,5.6087,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,3.2670,10.4125,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2127,2.9280,10.3252,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2128,5.5312,5.7115,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,3.2530,5.5852,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,3.2670,10.3598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2131,2.9280,10.3069,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2132,5.5312,5.6908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,3.2530,5.5779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,3.2670,10.3093,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2135,2.9280,10.2872,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2136,5.5312,5.7051,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,3.2530,5.4796,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,3.2670,10.3802,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2139,2.9280,10.2796,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2140,5.5312,5.8484,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2141,3.2530,5.6548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2142,3.2670,10.4585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2143,2.9280,10.4003,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2144,5.5312,5.9460,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2145,3.2530,5.6435,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2146,3.2670,10.4507,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2147,2.9280,10.4815,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2148,5.5312,5.8065,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2149,3.2530,5.5812,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2150,3.2670,10.4207,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2151,2.9280,10.3994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2152,5.5312,5.8624,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2153,3.2530,5.6527,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2154,3.2670,10.4660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2155,2.9280,10.5132,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2156,5.5312,5.7141,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2157,3.2530,5.6207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2158,3.2670,10.4662,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2159,2.9280,10.4684,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2160,5.5312,30.4750,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2161,3.2530,33.2593,0.0233,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2162,3.2670,25.5283,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2163,2.9280,25.3782,0.0098,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2164,5.5312,5.7314,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2165,3.2530,5.5866,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2166,3.2670,10.5645,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2167,2.9280,10.6043,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2168,5.5312,5.7842,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2169,3.2530,5.6758,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2170,3.2670,10.4987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2171,2.9280,10.4872,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2172,5.5312,5.8055,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2173,3.2530,5.6301,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2174,3.2670,10.5900,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2175,2.9280,10.5785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2176,5.5312,5.7088,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2177,3.2530,5.6102,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2178,3.2670,10.6449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2179,2.9280,10.6386,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2180,5.5312,5.6981,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2181,3.2530,5.5469,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2182,3.2670,10.4584,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2183,2.9280,10.4639,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2184,5.5312,5.6752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2185,3.2530,5.5358,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2186,3.2670,10.4038,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2187,2.9280,10.3917,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2188,5.5312,5.6606,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2189,3.2530,5.5392,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2190,3.2670,10.3585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2191,2.9280,10.3688,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2192,5.5312,5.6576,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2193,3.2530,5.4867,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2194,3.2670,10.3728,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2195,2.9280,10.3347,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2196,5.5312,5.6420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2197,3.2530,5.5259,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2198,3.2670,10.5622,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2199,2.9280,10.5483,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2200,5.5312,5.7006,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2201,3.2530,5.6107,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2202,3.2670,10.4491,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2203,2.9280,10.4475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2204,5.5312,5.6384,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2205,3.2530,5.5463,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2206,3.2670,10.4714,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2207,2.9280,10.4597,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2208,5.5312,5.6714,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2209,3.2530,5.6080,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2210,3.2670,10.4817,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2211,2.9280,10.4925,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2212,5.5312,5.6528,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2213,3.2530,5.5071,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2214,3.2670,10.3664,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2215,2.9280,10.3486,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2216,5.5312,5.8437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2217,3.2530,5.5812,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2218,3.2670,10.5193,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2219,2.9280,10.4572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2220,5.5312,5.6402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2221,3.2530,5.5127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2222,3.2670,10.3593,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2223,2.9280,10.3041,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2224,5.5312,5.5632,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2225,3.2530,5.4462,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2226,3.2670,10.4390,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2227,2.9280,10.4300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2228,5.5312,5.6735,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2229,3.2530,5.5057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2230,3.2670,10.3854,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2231,2.9280,10.3619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2232,5.5312,5.6042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2233,3.2530,5.5084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2234,3.2670,10.2546,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2235,2.9280,10.2188,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2236,5.5312,5.6695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2237,3.2530,5.5800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2238,3.2670,10.2837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2239,2.9280,10.2511,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2240,5.5312,5.8167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2241,3.2530,5.6387,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2242,3.2670,10.4020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2243,2.9280,10.3608,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2244,5.5312,5.7708,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2245,3.2530,5.6012,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2246,3.2670,10.4063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2247,2.9280,10.3728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2248,5.5312,5.7542,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2249,3.2530,5.6019,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2250,3.2670,10.6064,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,2.9280,10.5892,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2252,5.5312,6.0114,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2253,3.2530,5.6597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2254,3.2670,10.6358,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2255,2.9280,10.5758,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2256,5.5312,5.8354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2257,3.2530,5.5600,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2258,3.2670,10.5148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2259,2.9280,10.4982,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2260,5.5312,5.9572,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2261,3.2530,5.7290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2262,3.2670,10.5417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2263,2.9280,10.5587,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2264,5.5312,6.1625,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2265,3.2530,5.8876,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2266,3.2670,10.7682,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2267,2.9280,10.5770,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2268,5.5312,6.1391,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2269,3.2530,5.7838,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2270,3.2670,9.9580,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2271,2.9280,9.9333,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2272,5.5312,6.4795,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2273,3.2530,5.6487,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2274,3.2670,10.1944,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2275,2.9280,10.0905,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2276,5.5312,6.4754,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2277,3.2530,5.7735,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2278,3.2670,10.1790,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2279,2.9280,9.6968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2280,5.5312,5.9613,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2281,3.2530,6.0251,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,3.2670,9.6911,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2283,2.9280,10.2095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2284,5.5312,6.3523,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2285,3.2530,5.6373,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,3.2670,9.8977,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2287,2.9280,9.8708,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2288,5.5312,6.4950,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2289,3.2530,5.8650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,3.2670,9.8398,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2291,2.9280,9.9079,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2292,5.5312,6.3666,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2293,3.2530,5.7019,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,3.2670,10.4836,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2295,2.9280,10.2948,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2296,5.5312,6.9601,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2297,3.2530,6.1245,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,3.2670,18.9882,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2299,2.9280,18.7483,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2300,5.5312,5.8711,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2301,3.2530,5.9779,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,3.2670,10.0866,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2303,2.9280,10.1263,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.5312,9.3483,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2305,3.2530,9.0142,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,3.2670,10.5400,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2307,2.9280,10.4350,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2308,5.5312,5.9211,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2309,3.2530,5.5728,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,3.2670,10.3035,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2311,2.9280,10.0031,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2312,5.5312,5.8254,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2313,3.2530,5.5534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,3.2670,10.3002,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2315,2.9280,10.1854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2316,5.5312,5.9310,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2317,3.2530,5.6471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,3.2670,10.3167,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2319,2.9280,10.2323,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2320,5.5312,5.8578,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,3.2530,5.5671,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,3.2670,10.6061,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2323,2.9280,10.4611,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2324,5.5312,6.2087,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,3.2530,5.7407,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,3.2670,10.1349,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2327,2.9280,10.0076,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2328,5.5312,6.1117,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,3.2530,5.6785,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,3.2670,10.4680,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2331,2.9280,10.3578,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2332,5.5312,6.3680,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,3.2530,5.8039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,3.2670,12.5654,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2335,2.9280,12.1658,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2336,5.5312,6.3274,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,3.2530,6.0766,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,3.2670,8.0013,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2339,2.9280,9.6742,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2340,5.5312,6.2614,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,3.2530,5.8771,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,3.2670,10.3868,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2343,2.9280,10.2698,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2344,5.5312,6.1126,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,3.2530,5.6988,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,3.2670,10.6078,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2347,2.9280,10.4190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2348,5.5312,6.0447,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,3.2530,5.6784,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,3.2670,10.3507,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2351,2.9280,10.2909,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2352,5.5312,5.8406,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,3.2530,5.5861,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,3.2670,10.3235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2355,2.9280,10.2833,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2356,5.5312,5.7194,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,3.2530,5.5680,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,3.2670,10.3154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2359,2.9280,10.2726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2360,5.5312,5.8140,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,3.2530,5.6386,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,3.2670,10.2887,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2363,2.9280,10.2528,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.5312,5.8520,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,3.2530,5.6080,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,3.2670,10.6152,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2367,2.9280,10.4574,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2368,5.5312,6.3863,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,3.2530,5.7512,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,3.2670,10.3871,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2371,2.9280,10.2445,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2372,5.5312,6.3633,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,3.2530,5.8015,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,3.2670,10.4096,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2375,2.9280,10.0658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2376,5.5312,6.5001,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,3.2530,5.8431,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,3.2670,12.0432,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,2.9280,11.3477,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2380,5.5312,6.0610,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,3.2530,5.7189,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,3.2670,10.4852,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,2.9280,10.2629,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2384,5.5312,6.3157,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,3.2530,6.1183,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,3.2670,8.2871,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,2.9280,9.5876,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2388,5.5312,5.9503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,3.2530,5.5404,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,3.2670,10.2568,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,2.9280,10.1798,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2392,5.5312,5.6715,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,3.2530,5.5208,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,3.2670,10.1476,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2395,2.9280,10.1160,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2396,5.5312,5.6800,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,3.2530,5.5437,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,3.2670,10.4090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2399,2.9280,10.4225,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2400,5.5312,5.6205,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2401,3.2530,5.5172,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2402,3.2670,10.3978,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2403,2.9280,10.3806,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2404,5.5312,5.8833,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2405,3.2530,5.6333,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2406,3.2670,10.5265,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2407,2.9280,10.5276,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2408,5.5312,5.7275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2409,3.2530,5.5540,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2410,3.2670,10.6296,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2411,2.9280,10.6236,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2412,5.5312,5.6608,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2413,3.2530,5.4347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2414,3.2670,10.4485,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2415,2.9280,10.4266,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2416,5.5312,5.8086,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2417,3.2530,5.5523,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2418,3.2670,10.3417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2419,2.9280,10.3359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2420,5.5312,5.5803,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2421,3.2530,5.4945,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2422,3.2670,10.3154,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2423,2.9280,10.3137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2424,5.5312,5.5777,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2425,3.2530,5.5247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2426,3.2670,10.4403,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2427,2.9280,10.4287,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2428,5.5312,5.6562,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2429,3.2530,5.5252,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2430,3.2670,10.4345,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2431,2.9280,10.3952,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2432,5.5312,5.6958,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2433,3.2530,5.5303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2434,3.2670,10.4150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2435,2.9280,10.3722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2436,5.5312,5.9180,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2437,3.2530,5.5895,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2438,3.2670,10.3846,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2439,2.9280,10.3373,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2440,5.5312,5.7336,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2441,3.2530,5.5751,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2442,3.2670,10.2587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2443,2.9280,10.2023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2444,5.5312,5.6758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2445,3.2530,5.5496,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2446,3.2670,10.2411,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2447,2.9280,10.1717,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2448,5.5312,5.7979,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2449,3.2530,5.5800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2450,3.2670,10.3097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2451,2.9280,10.2630,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2452,5.5312,5.9095,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2453,3.2530,5.6448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2454,3.2670,13.0212,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2455,2.9280,12.8540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2456,5.5312,6.6844,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2457,3.2530,5.9060,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2458,3.2670,10.3532,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2459,2.9280,10.2198,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2460,5.5312,6.3202,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2461,3.2530,5.7822,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2462,3.2670,10.7060,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2463,2.9280,10.6512,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2464,5.5312,6.0743,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2465,3.2530,5.6656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2466,3.2670,10.4364,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2467,2.9280,10.2875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2468,5.5312,5.9011,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2469,3.2530,5.6747,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2470,3.2670,10.4805,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2471,2.9280,10.4655,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2472,5.5312,5.9254,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2473,3.2530,5.6688,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2474,3.2670,10.3292,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2475,2.9280,10.2633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2476,5.5312,6.7815,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2477,3.2530,5.9529,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2478,3.2670,10.5794,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2479,2.9280,10.5342,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2480,5.5312,6.4097,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2481,3.2530,5.8651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2482,3.2670,10.1242,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2483,2.9280,10.2602,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2484,5.5312,7.4078,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2485,3.2530,6.8473,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2486,3.2670,10.2566,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2487,2.9280,10.1437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2488,5.5312,6.4250,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2489,3.2530,5.7146,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2490,3.2670,10.1172,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2491,2.9280,10.1560,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2492,5.5312,6.8625,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2493,3.2530,5.8849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2494,3.2670,9.9228,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2495,2.9280,9.8277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2496,5.5312,6.6736,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2497,3.2530,5.7794,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2498,3.2670,9.5854,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2499,2.9280,9.4361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2500,5.5312,6.8636,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2501,3.2530,5.8251,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2502,3.2670,10.8077,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2503,2.9280,10.5972,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2504,5.5312,6.5263,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2505,3.2530,5.7515,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2506,3.2670,10.0448,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2507,2.9280,9.6363,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2508,5.5312,6.5433,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2509,3.2530,5.8222,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2510,3.2670,9.8808,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2511,2.9280,9.9126,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2512,5.5312,6.6321,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2513,3.2530,5.9757,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2514,3.2670,9.3037,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2515,2.9280,9.6755,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2516,5.5312,6.5217,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2517,3.2530,5.8220,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2518,3.2670,10.1700,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2519,2.9280,10.1611,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2520,5.5312,6.4879,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2521,3.2530,5.6887,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2522,3.2670,10.2692,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2523,2.9280,9.9880,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2524,5.5312,6.0913,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2525,3.2530,5.7386,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2526,3.2670,10.4176,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2527,2.9280,10.1720,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2528,5.5312,5.7938,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2529,3.2530,5.5337,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2530,3.2670,11.0073,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2531,2.9280,10.9523,0.0438,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2532,5.5312,6.5324,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2533,3.2530,5.5594,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2534,3.2670,10.5783,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2535,2.9280,10.5340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2536,5.5312,6.2244,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2537,3.2530,5.7797,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2538,3.2670,10.8280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2539,2.9280,10.7858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2540,5.5312,6.1119,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2541,3.2530,5.8281,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2542,3.2670,10.7381,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2543,2.9280,10.6224,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2544,5.5312,5.7879,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2545,3.2530,5.6007,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2546,3.2670,10.4590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2547,2.9280,10.3968,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2548,5.5312,5.8528,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2549,3.2530,5.5293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2550,3.2670,10.5431,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2551,2.9280,10.5062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2552,5.5312,5.7988,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2553,3.2530,5.5332,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2554,3.2670,10.3018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2555,2.9280,10.2975,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2556,5.5312,5.7876,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2557,3.2530,5.5389,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2558,3.2670,10.4428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2559,2.9280,10.3911,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2560,5.5312,5.8117,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2561,3.2530,5.6163,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2562,3.2670,10.3794,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2563,2.9280,10.3344,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2564,5.5312,5.9605,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2565,3.2530,5.8974,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2566,3.2670,10.2185,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2567,2.9280,10.1838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2568,5.5312,6.7270,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2569,3.2530,5.8271,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2570,3.2670,9.7277,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2571,2.9280,10.1938,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2572,5.5312,7.1924,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2573,3.2530,5.7472,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2574,3.2670,9.3352,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2575,2.9280,9.8123,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2576,5.5312,6.3860,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2577,3.2530,5.6342,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2578,3.2670,10.2779,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2579,2.9280,10.0908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2580,5.5312,6.0873,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2581,3.2530,5.6754,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2582,3.2670,10.0624,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2583,2.9280,9.9830,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2584,5.5312,6.2471,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2585,3.2530,5.9572,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2586,3.2670,12.3227,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2587,2.9280,12.1926,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2588,5.5312,5.8525,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2589,3.2530,5.6002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2590,3.2670,10.2103,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2591,2.9280,10.2207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2592,5.5312,5.7838,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2593,3.2530,5.6144,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2594,3.2670,10.5268,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2595,2.9280,10.3888,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2596,5.5312,6.4164,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2597,3.2530,5.9969,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2598,3.2670,10.2115,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2599,2.9280,10.1359,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2600,5.5312,6.1673,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2601,3.2530,5.8830,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2602,3.2670,9.8457,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2603,2.9280,9.9530,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2604,5.5312,6.3358,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2605,3.2530,5.7972,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2606,3.2670,9.9149,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2607,2.9280,9.9259,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2608,5.5312,6.0288,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2609,3.2530,5.6870,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2610,3.2670,9.9588,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2611,2.9280,9.9543,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2612,5.5312,6.1586,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2613,3.2530,5.9912,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2614,3.2670,9.9365,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2615,2.9280,10.0433,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2616,5.5312,6.0775,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2617,3.2530,5.7531,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2618,3.2670,10.1922,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2619,2.9280,10.2362,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2620,5.5312,6.1842,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2621,3.2530,5.9508,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2622,3.2670,9.9998,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2623,2.9280,10.0831,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2624,5.5312,6.1737,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2625,3.2530,5.9093,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2626,3.2670,10.1415,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2627,2.9280,10.0962,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2628,5.5312,12.3078,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2629,3.2530,11.5207,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2630,3.2670,11.0459,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2631,2.9280,10.7021,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2632,5.5312,5.7813,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2633,3.2530,5.6220,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2634,3.2670,10.3388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2635,2.9280,10.3039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2636,5.5312,5.6737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2637,3.2530,5.4875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2638,3.2670,10.3478,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2639,2.9280,10.3270,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2640,5.5312,5.7361,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2641,3.2530,5.6760,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2642,3.2670,10.2193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2643,2.9280,10.3092,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2644,5.5312,6.5578,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2645,3.2530,5.8149,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2646,3.2670,10.0652,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2647,2.9280,10.1392,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2648,5.5312,6.0476,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2649,3.2530,5.7419,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2650,3.2670,10.6092,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2651,2.9280,10.5496,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2652,5.5312,5.8710,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2653,3.2530,5.5964,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2654,3.2670,10.4906,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2655,2.9280,10.2933,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2656,5.5312,6.2030,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2657,3.2530,5.6878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2658,3.2670,10.2279,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2659,2.9280,10.2513,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2660,5.5312,6.0713,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2661,3.2530,5.6467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2662,3.2670,10.4207,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2663,2.9280,10.3764,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2664,5.5312,6.6940,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2665,3.2530,6.2503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2666,3.2670,10.3049,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2667,2.9280,9.9993,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2668,5.5312,6.1448,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2669,3.2530,5.6061,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2670,3.2670,10.4882,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2671,2.9280,10.3695,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2672,5.5312,6.0255,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2673,3.2530,5.6202,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2674,3.2670,10.5102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2675,2.9280,10.4102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2676,5.5312,6.1707,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2677,3.2530,5.8513,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2678,3.2670,10.6375,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2679,2.9280,10.5535,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2680,5.5312,6.6569,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2681,3.2530,6.0152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2682,3.2670,10.5620,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2683,2.9280,10.3210,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2684,5.5312,6.6165,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2685,3.2530,5.7763,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2686,3.2670,10.3104,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2687,2.9280,10.2403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2688,5.5312,7.5583,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2689,3.2530,6.2917,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2690,3.2670,9.9891,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2691,2.9280,10.1038,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2692,5.5312,6.1753,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2693,3.2530,5.7162,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2694,3.2670,10.6425,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2695,2.9280,10.5108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2696,5.5312,6.1093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2697,3.2530,5.6563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2698,3.2670,10.4968,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2699,2.9280,10.4010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2700,5.5312,5.8601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2701,3.2530,5.5782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2702,3.2670,10.8797,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2703,2.9280,10.5570,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2704,5.5312,6.4958,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2705,3.2530,5.7402,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2706,3.2670,10.3745,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2707,2.9280,10.1399,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2708,5.5312,6.6032,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2709,3.2530,5.7723,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2710,3.2670,10.5409,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2711,2.9280,10.4253,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2712,5.5312,6.5453,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2713,3.2530,5.6457,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2714,3.2670,10.2936,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2715,2.9280,10.1587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2716,5.5312,6.5351,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2717,3.2530,5.7426,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2718,3.2670,10.4282,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2719,2.9280,10.2968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2720,5.5312,6.3362,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2721,3.2530,5.6467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2722,3.2670,10.1168,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2723,2.9280,10.1035,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2724,5.5312,6.2870,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2725,3.2530,5.6688,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2726,3.2670,10.2746,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2727,2.9280,10.0971,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2728,5.5312,7.2159,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2729,3.2530,6.5332,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2730,3.2670,10.7598,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2731,2.9280,10.5147,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2732,5.5312,6.3217,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2733,3.2530,5.7580,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2734,3.2670,10.1192,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2735,2.9280,10.0195,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2736,5.5312,7.2179,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2737,3.2530,6.5303,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2738,3.2670,10.2201,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2739,2.9280,10.1192,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2740,5.5312,6.4105,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2741,3.2530,5.6565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2742,3.2670,10.3343,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2743,2.9280,11.6615,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2744,5.5312,6.3969,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2745,3.2530,5.8059,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2746,3.2670,9.1394,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2747,2.9280,10.1728,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2748,5.5312,6.7358,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2749,3.2530,5.7865,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2750,3.2670,10.0879,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2751,2.9280,9.9611,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2752,5.5312,6.7954,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2753,3.2530,5.8612,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2754,3.2670,10.0652,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2755,2.9280,10.0512,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2756,5.5312,6.3768,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2757,3.2530,5.7764,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2758,3.2670,9.9795,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2759,2.9280,9.8413,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2760,5.5312,6.6730,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2761,3.2530,5.8095,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2762,3.2670,9.9115,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2763,2.9280,9.8622,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2764,5.5312,6.6255,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2765,3.2530,5.9122,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2766,3.2670,9.7347,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2767,2.9280,9.7065,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2768,5.5312,7.0741,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2769,3.2530,5.7782,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2770,3.2670,10.1935,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2771,2.9280,10.1737,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2772,5.5312,6.6440,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2773,3.2530,5.8490,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2774,3.2670,10.1750,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2775,2.9280,9.9018,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2776,5.5312,6.7042,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2777,3.2530,5.8310,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2778,3.2670,10.2419,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2779,2.9280,10.0863,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2780,5.5312,6.9300,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2781,3.2530,5.8665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2782,3.2670,10.5440,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2783,2.9280,10.4495,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2784,5.5312,6.6582,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2785,3.2530,5.8835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2786,3.2670,10.1332,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2787,2.9280,10.1520,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2788,5.5312,6.9480,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2789,3.2530,5.7895,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2790,3.2670,9.9382,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2791,2.9280,10.1891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2792,5.5312,6.5743,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2793,3.2530,5.6943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2794,3.2670,11.3146,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2795,2.9280,11.2661,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2796,5.5312,6.3726,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2797,3.2530,5.6263,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2798,3.2670,9.6468,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2799,2.9280,9.5742,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2800,5.5312,6.1107,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2801,3.2530,5.6514,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2802,3.2670,10.5098,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2803,2.9280,10.4115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2804,5.5312,6.0285,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2805,3.2530,5.6486,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2806,3.2670,10.4217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2807,2.9280,10.3251,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2808,5.5312,5.8974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2809,3.2530,5.6961,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2810,3.2670,11.9003,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2811,2.9280,11.9485,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2812,5.5312,7.5906,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2813,3.2530,6.5603,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2814,3.2670,10.3722,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2815,2.9280,10.0828,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2816,5.5312,6.3477,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2817,3.2530,5.7717,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2818,3.2670,9.9027,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2819,2.9280,9.3928,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2820,5.5312,6.3812,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2821,3.2530,5.9382,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2822,3.2670,10.7920,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2823,2.9280,10.6772,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2824,5.5312,6.3484,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2825,3.2530,5.9062,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2826,3.2670,10.5086,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2827,2.9280,10.3626,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2828,5.5312,6.2315,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2829,3.2530,5.9602,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2830,3.2670,13.3310,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2831,2.9280,14.0135,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2832,5.5312,5.6878,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2833,3.2530,5.4879,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2834,3.2670,10.3110,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2835,2.9280,10.2910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2836,5.5312,6.0440,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2837,3.2530,5.9017,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2838,3.2670,10.2637,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2839,2.9280,10.1993,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2840,5.5312,6.2777,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2841,3.2530,5.7723,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2842,3.2670,9.7738,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2843,2.9280,9.9100,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2844,5.5312,6.2888,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2845,3.2530,5.8422,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2846,3.2670,9.9597,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2847,2.9280,9.8934,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2848,5.5312,6.5289,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2849,3.2530,5.8135,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2850,3.2670,10.4698,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2851,2.9280,10.2852,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2852,5.5312,6.3054,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2853,3.2530,5.7334,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2854,3.2670,10.1945,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2855,2.9280,10.2221,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2856,5.5312,6.7429,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2857,3.2530,5.9052,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2858,3.2670,9.9411,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2859,2.9280,10.1856,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2860,5.5312,6.4204,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2861,3.2530,5.7263,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2862,3.2670,9.7105,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2863,2.9280,9.8898,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2864,5.5312,5.8797,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2865,3.2530,5.6788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2866,3.2670,10.1358,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2867,2.9280,10.0826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2868,5.5312,6.1345,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2869,3.2530,5.6647,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2870,3.2670,10.4450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2871,2.9280,10.3840,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2872,5.5312,5.8014,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2873,3.2530,5.6582,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2874,3.2670,10.9822,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2875,2.9280,10.8653,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2876,5.5312,6.4981,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2877,3.2530,5.7918,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2878,3.2670,10.1047,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2879,2.9280,10.1475,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2880,5.5312,40.0366,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2881,3.2530,29.9033,0.0076,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2882,3.2670,25.6069,0.0040,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2883,2.9280,25.6637,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2884,5.5312,5.6524,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2885,3.2530,5.4472,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2886,3.2670,10.3311,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2887,2.9280,10.3347,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2888,5.5312,5.6271,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2889,3.2530,5.5601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2890,3.2670,10.3558,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2891,2.9280,10.3824,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2892,5.5312,5.7866,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2893,3.2530,5.6636,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2894,3.2670,10.6525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2895,2.9280,10.5665,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2896,5.5312,5.7122,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2897,3.2530,5.5966,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2898,3.2670,10.5352,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2899,2.9280,10.5213,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2900,5.5312,5.6618,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2901,3.2530,5.5448,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2902,3.2670,10.3378,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2903,2.9280,10.3341,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2904,5.5312,5.6527,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2905,3.2530,5.4755,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2906,3.2670,10.3483,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2907,2.9280,10.3134,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2908,5.5312,5.7818,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2909,3.2530,5.5165,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2910,3.2670,10.3715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2911,2.9280,10.2987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2912,5.5312,5.6507,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2913,3.2530,5.4728,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2914,3.2670,10.2973,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2915,2.9280,10.2712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2916,5.5312,5.6215,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2917,3.2530,5.4570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2918,3.2670,10.2972,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2919,2.9280,10.2454,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2920,5.5312,5.6727,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2921,3.2530,5.5063,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2922,3.2670,10.4256,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2923,2.9280,10.3640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2924,5.5312,5.9028,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2925,3.2530,5.6992,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2926,3.2670,10.6303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2927,2.9280,10.5100,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2928,5.5312,5.7546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2929,3.2530,5.5792,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2930,3.2670,10.4974,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2931,2.9280,10.4291,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2932,5.5312,5.8351,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2933,3.2530,5.6423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2934,3.2670,10.5545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2935,2.9280,10.4705,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2936,5.5312,5.9215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2937,3.2530,5.5779,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2938,3.2670,10.2845,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2939,2.9280,9.9244,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2940,5.5312,5.7550,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2941,3.2530,5.5018,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2942,3.2670,10.3464,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2943,2.9280,10.2720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2944,5.5312,5.7075,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2945,3.2530,5.4618,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2946,3.2670,10.3120,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2947,2.9280,10.1845,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2948,5.5312,5.7332,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2949,3.2530,5.5090,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2950,3.2670,10.3555,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2951,2.9280,10.2161,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2952,5.5312,5.7377,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2953,3.2530,5.4891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2954,3.2670,10.2812,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2955,2.9280,10.2195,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2956,5.5312,5.6534,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2957,3.2530,5.4399,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2958,3.2670,10.2997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2959,2.9280,10.2489,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2960,5.5312,5.5924,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2961,3.2530,5.4272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2962,3.2670,10.2831,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2963,2.9280,10.2435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2964,5.5312,5.5762,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2965,3.2530,5.4188,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2966,3.2670,10.2525,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2967,2.9280,10.2363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2968,5.5312,5.6170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2969,3.2530,5.4711,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2970,3.2670,10.2992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2971,2.9280,10.2525,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2972,5.5312,5.5792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2973,3.2530,5.4633,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2974,3.2670,10.2993,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2975,2.9280,10.2776,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2976,5.5312,5.6030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2977,3.2530,5.4575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2978,3.2670,10.3768,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2979,2.9280,10.2900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2980,5.5312,5.7110,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2981,3.2530,5.4902,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2982,3.2670,10.3044,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2983,2.9280,10.1798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2984,5.5312,5.7138,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2985,3.2530,5.4494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2986,3.2670,10.2727,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2987,2.9280,10.2140,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2988,5.5312,5.6851,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2989,3.2530,5.5061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2990,3.2670,10.3033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2991,2.9280,10.2601,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2992,5.5312,5.5781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2993,3.2530,5.4185,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2994,3.2670,10.2408,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2995,2.9280,10.2112,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2996,5.5312,5.6318,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2997,3.2530,5.4284,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2998,3.2670,10.2287,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2999,2.9280,10.1917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3000,5.5312,5.6341,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3001,3.2530,5.4422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3002,3.2670,10.2626,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3003,2.9280,10.2133,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3004,5.5312,5.7335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3005,3.2530,5.5475,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3006,3.2670,10.3901,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3007,2.9280,10.1791,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3008,5.5312,5.7090,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3009,3.2530,5.4672,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3010,3.2670,10.2787,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3011,2.9280,10.2018,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3012,5.5312,5.7015,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3013,3.2530,5.4397,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3014,3.2670,10.2502,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3015,2.9280,10.1678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3016,5.5312,5.6117,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3017,3.2530,5.4833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3018,3.2670,10.2481,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3019,2.9280,10.2286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3020,5.5312,5.6129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3021,3.2530,5.4487,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3022,3.2670,10.2649,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3023,2.9280,10.2412,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3024,5.5312,5.6522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3025,3.2530,5.5117,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3026,3.2670,10.2807,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3027,2.9280,10.2570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3028,5.5312,5.7407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3029,3.2530,5.4660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3030,3.2670,10.3483,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3031,2.9280,10.2525,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3032,5.5312,5.7425,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3033,3.2530,5.5122,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3034,3.2670,10.4686,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3035,2.9280,10.4152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3036,5.5312,5.8012,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3037,3.2530,5.5246,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3038,3.2670,10.2438,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3039,2.9280,10.1582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3040,5.5312,5.7722,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3041,3.2530,5.4888,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3042,3.2670,10.4597,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3043,2.9280,10.3580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3044,5.5312,5.6883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3045,3.2530,5.5740,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3046,3.2670,10.4290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3047,2.9280,10.4078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3048,5.5312,5.8290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3049,3.2530,5.6407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3050,3.2670,10.4255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3051,2.9280,10.4026,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3052,5.5312,5.8042,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3053,3.2530,5.5617,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3054,3.2670,10.2915,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3055,2.9280,10.2525,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3056,5.5312,5.9234,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3057,3.2530,5.5607,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3058,3.2670,10.4114,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3059,2.9280,10.3736,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3060,5.5312,5.6613,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3061,3.2530,5.5416,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3062,3.2670,10.3664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3063,2.9280,10.3540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3064,5.5312,5.6139,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3065,3.2530,5.5020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3066,3.2670,10.2537,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3067,2.9280,10.2077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3068,5.5312,5.7010,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3069,3.2530,5.4971,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3070,3.2670,10.3393,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3071,2.9280,10.2849,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3072,5.5312,5.6992,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3073,3.2530,5.5136,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3074,3.2670,10.3175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3075,2.9280,10.2472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3076,5.5312,5.7700,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3077,3.2530,5.5535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3078,3.2670,10.3619,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3079,2.9280,10.2984,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3080,5.5312,5.7756,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3081,3.2530,5.6008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3082,3.2670,10.5209,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3083,2.9280,10.4960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3084,5.5312,5.9954,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3085,3.2530,5.6908,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3086,3.2670,10.5820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3087,2.9280,10.4528,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3088,5.5312,6.1558,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3089,3.2530,5.6910,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3090,3.2670,10.5085,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3091,2.9280,10.4240,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3092,5.5312,5.8877,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3093,3.2530,5.6638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3094,3.2670,10.3313,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3095,2.9280,10.2339,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3096,5.5312,5.6669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3097,3.2530,5.5068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3098,3.2670,10.2540,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3099,2.9280,10.2408,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3100,5.5312,5.6324,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3101,3.2530,5.4477,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3102,3.2670,10.3039,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3103,2.9280,10.2087,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3104,5.5312,5.5860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3105,3.2530,5.4500,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3106,3.2670,10.2287,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3107,2.9280,10.1753,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3108,5.5312,5.6519,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3109,3.2530,5.5170,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3110,3.2670,10.2873,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3111,2.9280,10.2220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3112,5.5312,5.7328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3113,3.2530,5.5164,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3114,3.2670,10.3166,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3115,2.9280,10.1327,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3116,5.5312,5.7773,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3117,3.2530,5.5128,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3118,3.2670,10.5225,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3119,2.9280,10.4662,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3120,5.5312,5.8049,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3121,3.2530,5.6318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3122,3.2670,10.4475,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3123,2.9280,10.4117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3124,5.5312,5.7073,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3125,3.2530,5.5494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3126,3.2670,10.3055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3127,2.9280,10.2545,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3128,5.5312,5.6565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3129,3.2530,5.5547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3130,3.2670,10.3238,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3131,2.9280,10.2931,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3132,5.5312,5.6281,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3133,3.2530,5.4619,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3134,3.2670,10.2785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3135,2.9280,10.2355,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3136,5.5312,5.7525,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3137,3.2530,5.5008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3138,3.2670,10.2233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3139,2.9280,10.1858,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3140,5.5312,5.8514,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3141,3.2530,5.5572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3142,3.2670,10.4157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3143,2.9280,10.3908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3144,5.5312,5.5925,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3145,3.2530,5.4274,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3146,3.2670,10.3105,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3147,2.9280,10.3117,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3148,5.5312,5.7448,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3149,3.2530,5.5147,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3150,3.2670,10.2675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3151,2.9280,10.2131,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3152,5.5312,5.7230,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3153,3.2530,5.5223,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3154,3.2670,10.4556,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3155,2.9280,10.3923,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3156,5.5312,5.7739,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3157,3.2530,5.5959,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3158,3.2670,10.4984,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3159,2.9280,10.4723,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3160,5.5312,5.6661,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3161,3.2530,5.5663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3162,3.2670,10.4389,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3163,2.9280,10.3974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3164,5.5312,5.6573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3165,3.2530,5.5760,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3166,3.2670,10.3970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3167,2.9280,10.3917,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3168,5.5312,5.5977,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3169,3.2530,5.4539,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3170,3.2670,10.2838,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3171,2.9280,10.2522,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3172,5.5312,5.6891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3173,3.2530,5.4808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3174,3.2670,10.3387,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3175,2.9280,10.3292,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3176,5.5312,5.6517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3177,3.2530,5.4675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3178,3.2670,10.3341,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3179,2.9280,10.2914,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3180,5.5312,5.8267,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3181,3.2530,5.6531,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3182,3.2670,10.4431,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3183,2.9280,10.4133,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3184,5.5312,5.8416,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3185,3.2530,5.6510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3186,3.2670,10.4781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3187,2.9280,10.4071,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3188,5.5312,6.0981,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3189,3.2530,5.6900,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3190,3.2670,10.6708,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3191,2.9280,10.6233,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3192,5.5312,6.1617,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3193,3.2530,5.6943,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3194,3.2670,10.4337,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3195,2.9280,10.3492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3196,5.5312,5.7927,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3197,3.2530,5.5080,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3198,3.2670,10.4470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3199,2.9280,10.4445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3200,5.5312,5.7130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3201,3.2530,5.5254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3202,3.2670,10.3155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3203,2.9280,10.2618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3204,5.5312,5.6275,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3205,3.2530,5.4730,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3206,3.2670,10.2235,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3207,2.9280,10.1725,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3208,5.5312,5.5583,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3209,3.2530,5.4419,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3210,3.2670,10.3395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3211,2.9280,10.3193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3212,5.5312,5.6775,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3213,3.2530,5.5375,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3214,3.2670,10.2561,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3215,2.9280,10.1846,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3216,5.5312,5.7314,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3217,3.2530,5.4627,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3218,3.2670,10.3587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3219,2.9280,10.3238,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3220,5.5312,5.8004,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3221,3.2530,5.5999,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3222,3.2670,10.5416,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3223,2.9280,10.5462,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3224,5.5312,5.7385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3225,3.2530,5.6311,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3226,3.2670,10.4359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3227,2.9280,10.4432,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3228,5.5312,5.7419,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3229,3.2530,5.6306,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3230,3.2670,10.5270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3231,2.9280,10.5281,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3232,5.5312,5.7915,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3233,3.2530,5.5937,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3234,3.2670,10.4693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3235,2.9280,10.4710,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3236,5.5312,5.8865,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3237,3.2530,5.6129,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3238,3.2670,10.3924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3239,2.9280,10.3606,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3240,5.5312,5.8003,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3241,3.2530,5.5270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3242,3.2670,10.4035,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3243,2.9280,10.3464,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3244,5.5312,5.8238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3245,3.2530,5.5550,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3246,3.2670,10.4030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3247,2.9280,10.4100,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3248,5.5312,5.9044,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3249,3.2530,5.6853,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3250,3.2670,10.3735,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3251,2.9280,10.3332,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3252,5.5312,5.8813,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3253,3.2530,5.5769,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3254,3.2670,10.4645,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3255,2.9280,10.3927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3256,5.5312,5.7962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3257,3.2530,5.6139,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3258,3.2670,10.5152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3259,2.9280,10.5333,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3260,5.5312,5.8807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3261,3.2530,5.5819,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3262,3.2670,10.5353,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3263,2.9280,10.4402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3264,5.5312,5.8753,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3265,3.2530,5.5586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3266,3.2670,10.4433,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3267,2.9280,10.3680,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3268,5.5312,5.8032,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3269,3.2530,5.5368,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3270,3.2670,10.5340,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3271,2.9280,10.4505,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3272,5.5312,5.7575,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3273,3.2530,5.5499,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3274,3.2670,10.4654,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3275,2.9280,10.4953,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3276,5.5312,5.6360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3277,3.2530,5.5452,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3278,3.2670,10.4361,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3279,2.9280,10.4721,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3280,5.5312,5.6436,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3281,3.2530,5.5573,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3282,3.2670,10.4499,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3283,2.9280,10.4642,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3284,5.5312,5.6821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3285,3.2530,5.5276,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3286,3.2670,10.4961,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3287,2.9280,10.4230,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3288,5.5312,5.5999,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3289,3.2530,5.4922,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3290,3.2670,10.3983,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3291,2.9280,10.3818,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3292,5.5312,5.7228,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3293,3.2530,5.5641,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3294,3.2670,10.4897,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3295,2.9280,10.3336,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3296,5.5312,5.8374,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3297,3.2530,5.5606,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3298,3.2670,10.4393,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3299,2.9280,10.3302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3300,5.5312,5.7442,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3301,3.2530,5.5477,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3302,3.2670,10.5069,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3303,2.9280,10.4186,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3304,5.5312,5.6306,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3305,3.2530,5.5357,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3306,3.2670,10.4286,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3307,2.9280,10.3605,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3308,5.5312,5.5709,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3309,3.2530,5.5057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3310,3.2670,10.2568,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3311,2.9280,10.2287,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3312,5.5312,5.6007,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3313,3.2530,5.4592,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3314,3.2670,10.3009,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3315,2.9280,10.2853,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3316,5.5312,5.7113,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3317,3.2530,5.4475,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3318,3.2670,10.3513,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3319,2.9280,10.2872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3320,5.5312,5.8062,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3321,3.2530,5.5730,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3322,3.2670,10.4388,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3323,2.9280,10.3531,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3324,5.5312,5.8223,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3325,3.2530,5.5598,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3326,3.2670,10.4759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3327,2.9280,10.4822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3328,5.5312,5.6870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3329,3.2530,5.5442,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3330,3.2670,10.4111,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3331,2.9280,10.3873,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3332,5.5312,5.6152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3333,3.2530,5.5237,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3334,3.2670,10.4620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3335,2.9280,10.4471,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3336,5.5312,5.6725,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3337,3.2530,5.5887,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3338,3.2670,10.3279,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3339,2.9280,10.3266,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3340,5.5312,5.5797,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3341,3.2530,5.4448,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3342,3.2670,10.3456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3343,2.9280,10.3554,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3344,5.5312,5.7760,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3345,3.2530,5.5890,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3346,3.2670,10.3840,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3347,2.9280,10.3678,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3348,5.5312,5.5775,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3349,3.2530,5.4379,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3350,3.2670,10.2691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3351,2.9280,10.2476,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3352,5.5312,5.6723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3353,3.2530,5.5115,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3354,3.2670,10.3701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3355,2.9280,10.3818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3356,5.5312,5.6735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3357,3.2530,5.4857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3358,3.2670,10.3585,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3359,2.9280,10.3091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3360,5.5312,5.7894,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3361,3.2530,5.5160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3362,3.2670,10.4288,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3363,2.9280,10.3233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3364,5.5312,5.7924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3365,3.2530,5.6194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3366,3.2670,10.4934,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3367,2.9280,10.5007,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3368,5.5312,5.6574,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3369,3.2530,5.5718,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3370,3.2670,10.4535,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3371,2.9280,10.4611,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3372,5.5312,5.7570,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3373,3.2530,5.5752,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3374,3.2670,10.4453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3375,2.9280,10.3931,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3376,5.5312,5.7811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3377,3.2530,5.6082,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3378,3.2670,10.4127,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3379,2.9280,10.4151,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3380,5.5312,5.6581,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3381,3.2530,5.5626,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3382,3.2670,10.3880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3383,2.9280,10.3865,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3384,5.5312,5.6962,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3385,3.2530,5.5607,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3386,3.2670,10.4157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3387,2.9280,10.3469,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3388,5.5312,5.6676,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3389,3.2530,5.4491,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3390,3.2670,10.3037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3391,2.9280,10.2616,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3392,5.5312,5.6805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3393,3.2530,5.4837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3394,3.2670,10.2696,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3395,2.9280,10.2480,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3396,5.5312,5.6396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3397,3.2530,5.4779,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3398,3.2670,10.2246,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3399,2.9280,10.1942,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3400,5.5312,5.6553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3401,3.2530,5.4821,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3402,3.2670,10.2568,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3403,2.9280,10.2357,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3404,5.5312,5.6777,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3405,3.2530,5.5174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3406,3.2670,10.3090,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3407,2.9280,10.2680,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3408,5.5312,5.7325,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3409,3.2530,5.5623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3410,3.2670,10.3177,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3411,2.9280,10.2562,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3412,5.5312,5.7524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3413,3.2530,5.5888,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3414,3.2670,10.5116,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3415,2.9280,10.4413,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3416,5.5312,5.7501,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3417,3.2530,5.5458,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3418,3.2670,10.3594,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3419,2.9280,10.2769,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3420,5.5312,6.0148,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3421,3.2530,5.6548,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3422,3.2670,10.5841,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3423,2.9280,10.5247,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3424,5.5312,5.8732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3425,3.2530,5.5597,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3426,3.2670,10.3032,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3427,2.9280,10.2490,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3428,5.5312,5.7655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3429,3.2530,5.5599,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3430,3.2670,10.4989,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3431,2.9280,10.4775,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3432,5.5312,5.8890,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3433,3.2530,5.6164,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3434,3.2670,10.3827,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3435,2.9280,10.3020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3436,5.5312,5.8925,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3437,3.2530,5.6252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3438,3.2670,10.3187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3439,2.9280,10.1679,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3440,5.5312,5.8031,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3441,3.2530,5.5436,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3442,3.2670,10.2293,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3443,2.9280,10.1508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3444,5.5312,6.0881,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3445,3.2530,5.8091,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3446,3.2670,10.7350,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3447,2.9280,10.6940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3448,5.5312,6.3833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3449,3.2530,5.6508,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3450,3.2670,10.0731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3451,2.9280,9.9725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3452,5.5312,5.8631,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3453,3.2530,5.5860,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3454,3.2670,10.3086,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3455,2.9280,10.1863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3456,5.5312,6.0122,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3457,3.2530,5.6131,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3458,3.2670,10.3267,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3459,2.9280,10.2684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3460,5.5312,5.7133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3461,3.2530,5.4817,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3462,3.2670,10.2779,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3463,2.9280,10.2236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3464,5.5312,5.7525,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3465,3.2530,5.4745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3466,3.2670,10.3612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3467,2.9280,10.3475,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3468,5.5312,5.6208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3469,3.2530,5.4669,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3470,3.2670,10.2501,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3471,2.9280,10.2172,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3472,5.5312,5.7082,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3473,3.2530,5.4752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3474,3.2670,10.2417,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3475,2.9280,10.1816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3476,5.5312,5.6920,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3477,3.2530,5.5312,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3478,3.2670,10.4284,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3479,2.9280,10.4054,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3480,5.5312,5.7103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3481,3.2530,5.5764,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3482,3.2670,10.3882,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3483,2.9280,10.3793,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3484,5.5312,5.6382,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3485,3.2530,5.5578,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3486,3.2670,10.4109,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3487,2.9280,10.4020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3488,5.5312,5.6720,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3489,3.2530,5.5203,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3490,3.2670,10.2839,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3491,2.9280,10.2759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3492,5.5312,5.5980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3493,3.2530,5.4757,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3494,3.2670,10.2508,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3495,2.9280,10.2420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3496,5.5312,5.5881,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3497,3.2530,5.4598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3498,3.2670,10.2152,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3499,2.9280,10.1909,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3500,5.5312,5.6624,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3501,3.2530,5.4692,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3502,3.2670,10.2869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3503,2.9280,10.2680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3504,5.5312,5.6798,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3505,3.2530,5.4822,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3506,3.2670,10.3571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3507,2.9280,10.2647,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3508,5.5312,5.8622,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3509,3.2530,5.5293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3510,3.2670,10.4589,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3511,2.9280,10.4688,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3512,5.5312,5.7203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3513,3.2530,5.6142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3514,3.2670,10.4186,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3515,2.9280,10.3509,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3516,5.5312,5.6584,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3517,3.2530,5.5058,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3518,3.2670,10.2185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3519,2.9280,10.1850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3520,5.5312,5.6391,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3521,3.2530,5.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3522,3.2670,10.2420,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3523,2.9280,10.1871,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3524,5.5312,5.6686,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3525,3.2530,5.5437,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3526,3.2670,10.2566,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3527,2.9280,10.1821,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3528,5.5312,5.6630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3529,3.2530,5.5441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3530,3.2670,10.2363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3531,2.9280,10.1836,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3532,5.5312,5.7313,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3533,3.2530,5.5778,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3534,3.2670,10.2329,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3535,2.9280,10.1414,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3536,5.5312,6.2752,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3537,3.2530,5.6629,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3538,3.2670,10.2014,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3539,2.9280,10.2653,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3540,5.5312,6.4695,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3541,3.2530,5.7067,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3542,3.2670,10.0666,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3543,2.9280,10.0290,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3544,5.5312,6.2579,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3545,3.2530,5.6022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3546,3.2670,10.2787,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3547,2.9280,10.0450,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3548,5.5312,6.4443,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3549,3.2530,5.7153,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3550,3.2670,11.1817,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3551,2.9280,10.9396,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3552,5.5312,6.1370,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3553,3.2530,5.8929,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3554,3.2670,10.3984,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3555,2.9280,10.2345,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3556,5.5312,5.8259,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3557,3.2530,5.5375,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3558,3.2670,10.3752,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3559,2.9280,10.2402,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3560,5.5312,6.0885,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3561,3.2530,5.7105,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3562,3.2670,10.6206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3563,2.9280,10.5396,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3564,5.5312,5.8655,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3565,3.2530,5.6110,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3566,3.2670,10.4824,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3567,2.9280,10.4529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3568,5.5312,5.7539,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3569,3.2530,5.5488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3570,3.2670,10.3821,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3571,2.9280,10.3428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3572,5.5312,5.8863,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3573,3.2530,5.6697,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3574,3.2670,10.3875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3575,2.9280,10.3184,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3576,5.5312,5.9143,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3577,3.2530,5.5587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3578,3.2670,10.2324,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3579,2.9280,10.1627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3580,5.5312,5.8247,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3581,3.2530,5.5450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3582,3.2670,10.4543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3583,2.9280,10.4396,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3584,5.5312,5.7076,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3585,3.2530,5.5898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3586,3.2670,10.3993,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3587,2.9280,10.4096,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3588,5.5312,5.6652,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3589,3.2530,5.5682,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3590,3.2670,10.4010,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3591,2.9280,10.3695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3592,5.5312,5.5785,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3593,3.2530,5.4519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3594,3.2670,10.3344,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3595,2.9280,10.3311,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3596,5.5312,5.8249,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3597,3.2530,5.6398,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3598,3.2670,10.4273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3599,2.9280,10.3462,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3600,5.5312,46.1707,0.0096,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3601,3.2530,31.1599,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3602,3.2670,25.5055,0.0039,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3603,2.9280,25.5482,0.0137,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3604,5.5312,5.7861,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +3605,3.2530,5.5732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +3606,3.2670,10.4223,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +3607,2.9280,10.4102,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +3608,5.5312,5.6777,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +3609,3.2530,5.4948,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +3610,3.2670,10.3743,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +3611,2.9280,10.2967,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +3612,5.5312,5.6408,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +3613,3.2530,5.4965,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +3614,3.2670,10.3780,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +3615,2.9280,10.3784,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +3616,5.5312,5.6925,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +3617,3.2530,5.5880,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +3618,3.2670,10.5749,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +3619,2.9280,10.5889,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +3620,5.5312,5.7378,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +3621,3.2530,5.6222,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +3622,3.2670,10.5822,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +3623,2.9280,10.6091,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +3624,5.5312,5.6491,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +3625,3.2530,5.6117,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +3626,3.2670,10.5040,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +3627,2.9280,10.5068,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +3628,5.5312,5.6164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +3629,3.2530,5.5886,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +3630,3.2670,10.4373,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +3631,2.9280,10.4535,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +3632,5.5312,5.6188,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +3633,3.2530,5.4742,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +3634,3.2670,10.3031,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +3635,2.9280,10.2687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +3636,5.5312,5.6927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +3637,3.2530,5.5046,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +3638,3.2670,10.2944,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +3639,2.9280,10.2564,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +3640,5.5312,5.7516,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +3641,3.2530,5.6058,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +3642,3.2670,10.6370,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +3643,2.9280,10.6330,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +3644,5.5312,5.8298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +3645,3.2530,5.6414,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +3646,3.2670,10.4601,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +3647,2.9280,10.4590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +3648,5.5312,5.6266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +3649,3.2530,5.6400,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +3650,3.2670,10.4086,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3651,2.9280,10.4064,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +3652,5.5312,5.7449,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +3653,3.2530,5.5664,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +3654,3.2670,10.3752,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +3655,2.9280,10.3354,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3656,5.5312,5.6938,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3657,3.2530,5.5522,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3658,3.2670,10.3469,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +3659,2.9280,10.3244,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3660,5.5312,5.7100,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +3661,3.2530,5.5419,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3662,3.2670,10.2767,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3663,2.9280,10.2960,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +3664,5.5312,5.6792,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +3665,3.2530,5.5354,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3666,3.2670,10.4198,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +3667,2.9280,10.4412,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +3668,5.5312,5.6210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +3669,3.2530,5.5842,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +3670,3.2670,10.3616,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +3671,2.9280,10.3887,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +3672,5.5312,5.6393,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +3673,3.2530,5.5393,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +3674,3.2670,10.4646,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +3675,2.9280,10.4755,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +3676,5.5312,5.6842,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3677,3.2530,5.5208,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +3678,3.2670,10.4528,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3679,2.9280,10.4141,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +3680,5.5312,5.6897,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +3681,3.2530,5.5663,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3682,3.2670,10.3415,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3683,2.9280,10.3192,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3684,5.5312,5.7532,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3685,3.2530,5.4970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +3686,3.2670,10.4037,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3687,2.9280,10.2846,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3688,5.5312,5.7815,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3689,3.2530,5.5666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +3690,3.2670,10.4465,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3691,2.9280,10.3494,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3692,5.5312,5.7663,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +3693,3.2530,5.5605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +3694,3.2670,10.4992,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3695,2.9280,10.4106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3696,5.5312,5.8415,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +3697,3.2530,5.5728,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3698,3.2670,10.5285,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3699,2.9280,10.5037,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +3700,5.5312,5.8945,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3701,3.2530,5.6177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3702,3.2670,10.4356,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +3703,2.9280,10.3685,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3704,5.5312,5.7765,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3705,3.2530,5.6022,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +3706,3.2670,10.4209,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3707,2.9280,10.3467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +3708,5.5312,5.7995,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +3709,3.2530,5.5680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3710,3.2670,10.4452,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3711,2.9280,10.3603,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3712,5.5312,5.7075,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3713,3.2530,5.4872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +3714,3.2670,10.3778,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +3715,2.9280,10.3410,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3716,5.5312,5.8381,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +3717,3.2530,5.6229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +3718,3.2670,10.3878,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +3719,2.9280,10.3428,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3720,5.5312,5.7363,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +3721,3.2530,5.5665,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3722,3.2670,10.3814,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3723,2.9280,10.3311,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3724,5.5312,5.7544,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3725,3.2530,5.5306,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3726,3.2670,10.4815,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +3727,2.9280,10.4321,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +3728,5.5312,5.7090,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +3729,3.2530,5.4433,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3730,3.2670,10.3319,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3731,2.9280,10.3227,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3732,5.5312,5.7640,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +3733,3.2530,5.5385,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3734,3.2670,10.5287,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3735,2.9280,10.4478,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +3736,5.5312,5.8078,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +3737,3.2530,5.5375,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3738,3.2670,10.5164,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3739,2.9280,10.4670,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3740,5.5312,5.7412,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +3741,3.2530,5.5126,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3742,3.2670,10.4898,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +3743,2.9280,10.4098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3744,5.5312,5.7976,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3745,3.2530,5.4948,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3746,3.2670,10.4309,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3747,2.9280,10.3144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3748,5.5312,5.7774,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3749,3.2530,5.5174,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3750,3.2670,10.4893,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3751,2.9280,10.4361,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3752,5.5312,5.8574,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +3753,3.2530,5.5602,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3754,3.2670,10.4942,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +3755,2.9280,10.4032,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3756,5.5312,5.7960,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +3757,3.2530,5.5667,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3758,3.2670,10.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3759,2.9280,10.4499,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3760,5.5312,5.7834,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3761,3.2530,5.5065,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3762,3.2670,10.4074,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +3763,2.9280,10.3990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3764,5.5312,5.7665,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3765,3.2530,5.5003,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3766,3.2670,10.4665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +3767,2.9280,10.4637,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +3768,5.5312,5.7422,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3769,3.2530,5.5665,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3770,3.2670,10.4949,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +3771,2.9280,10.4148,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3772,5.5312,5.7955,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3773,3.2530,5.5359,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3774,3.2670,10.3167,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3775,2.9280,10.2482,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3776,5.5312,5.8099,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3777,3.2530,5.6264,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3778,3.2670,10.4703,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3779,2.9280,10.4132,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3780,5.5312,5.9432,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3781,3.2530,5.6289,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3782,3.2670,10.5841,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3783,2.9280,10.5353,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +3784,5.5312,5.7936,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3785,3.2530,5.5358,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3786,3.2670,10.4300,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3787,2.9280,10.4050,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3788,5.5312,5.8163,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3789,3.2530,5.5703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3790,3.2670,10.4950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +3791,2.9280,10.5119,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3792,5.5312,5.7767,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3793,3.2530,5.5417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3794,3.2670,10.4188,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3795,2.9280,10.3994,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3796,5.5312,5.7583,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3797,3.2530,5.5219,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3798,3.2670,10.3051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +3799,2.9280,10.2785,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3800,5.5312,5.7216,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3801,3.2530,5.5445,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3802,3.2670,10.3586,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3803,2.9280,10.3808,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3804,5.5312,5.7616,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3805,3.2530,5.5591,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3806,3.2670,10.3707,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3807,2.9280,10.3853,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3808,5.5312,5.7689,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3809,3.2530,5.5460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3810,3.2670,10.4844,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3811,2.9280,10.4998,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3812,5.5312,5.8017,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3813,3.2530,5.5250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3814,3.2670,10.4168,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +3815,2.9280,10.4168,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3816,5.5312,5.7634,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3817,3.2530,5.5289,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3818,3.2670,10.3841,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3819,2.9280,10.3976,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3820,5.5312,5.7048,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3821,3.2530,5.5222,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3822,3.2670,10.4251,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3823,2.9280,10.4488,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3824,5.5312,5.6910,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3825,3.2530,5.5323,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3826,3.2670,10.3969,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3827,2.9280,10.4094,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3828,5.5312,5.7418,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3829,3.2530,5.5634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3830,3.2670,10.4075,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3831,2.9280,10.3882,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3832,5.5312,5.8459,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3833,3.2530,5.5778,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3834,3.2670,10.4965,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3835,2.9280,10.4348,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3836,5.5312,5.8270,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3837,3.2530,5.6020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3838,3.2670,10.3519,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3839,2.9280,10.3688,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3840,5.5312,5.8456,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3841,3.2530,5.5637,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3842,3.2670,10.4291,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3843,2.9280,10.3922,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3844,5.5312,5.7331,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3845,3.2530,5.6475,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3846,3.2670,10.4900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3847,2.9280,10.4677,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3848,5.5312,5.7577,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3849,3.2530,5.6032,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3850,3.2670,10.4129,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3851,2.9280,10.3913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3852,5.5312,5.8248,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3853,3.2530,5.6098,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3854,3.2670,10.4510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3855,2.9280,10.4199,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3856,5.5312,5.7060,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3857,3.2530,5.5362,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3858,3.2670,10.3639,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3859,2.9280,10.3750,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3860,5.5312,5.6666,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3861,3.2530,5.5417,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3862,3.2670,10.3955,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3863,2.9280,10.4283,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3864,5.5312,5.7192,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3865,3.2530,5.5538,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3866,3.2670,10.3586,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3867,2.9280,10.3690,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3868,5.5312,5.6825,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3869,3.2530,5.5373,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3870,3.2670,10.3485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3871,2.9280,10.3431,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3872,5.5312,5.7085,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3873,3.2530,5.5368,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3874,3.2670,10.4357,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3875,2.9280,10.4310,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3876,5.5312,5.7372,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3877,3.2530,5.5387,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3878,3.2670,10.4237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3879,2.9280,10.4209,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3880,5.5312,5.6450,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3881,3.2530,5.5254,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3882,3.2670,10.3781,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3883,2.9280,10.3798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3884,5.5312,5.7094,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3885,3.2530,5.5640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3886,3.2670,10.3400,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3887,2.9280,10.3534,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3888,5.5312,5.7555,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3889,3.2530,5.6181,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3890,3.2670,10.5081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +3891,2.9280,10.4733,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3892,5.5312,5.6525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3893,3.2530,5.5508,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3894,3.2670,10.4325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3895,2.9280,10.3604,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3896,5.5312,5.6645,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3897,3.2530,5.5251,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3898,3.2670,10.3967,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3899,2.9280,10.3996,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3900,5.5312,5.6945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3901,3.2530,5.5744,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3902,3.2670,10.3696,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3903,2.9280,10.4310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +3904,5.5312,5.6593,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3905,3.2530,5.4809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3906,3.2670,10.3192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3907,2.9280,10.2390,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3908,5.5312,5.8990,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3909,3.2530,5.6171,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3910,3.2670,10.1999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3911,2.9280,10.3237,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3912,5.5312,5.7240,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3913,3.2530,5.5941,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3914,3.2670,10.3976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3915,2.9280,10.3822,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3916,5.5312,5.6468,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3917,3.2530,5.5830,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3918,3.2670,10.3438,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3919,2.9280,10.3160,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3920,5.5312,5.6377,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3921,3.2530,5.5367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3922,3.2670,10.2952,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3923,2.9280,10.2647,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3924,5.5312,5.6452,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3925,3.2530,5.5146,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3926,3.2670,10.2944,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3927,2.9280,10.2545,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +3928,5.5312,5.6580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3929,3.2530,5.5288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3930,3.2670,10.2180,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3931,2.9280,10.1660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3932,5.5312,5.6409,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3933,3.2530,5.5085,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3934,3.2670,10.1962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3935,2.9280,10.1403,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3936,5.5312,5.7811,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3937,3.2530,5.5635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3938,3.2670,10.7505,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3939,2.9280,10.7182,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3940,5.5312,6.4477,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3941,3.2530,5.8912,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3942,3.2670,9.9915,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3943,2.9280,10.0966,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3944,5.5312,6.4570,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3945,3.2530,5.6678,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3946,3.2670,12.0730,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3947,2.9280,12.3441,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3948,5.5312,6.0948,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3949,3.2530,5.6414,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3950,3.2670,10.3914,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3951,2.9280,10.2712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3952,5.5312,5.7609,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3953,3.2530,5.4908,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3954,3.2670,10.4040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3955,2.9280,10.3724,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3956,5.5312,6.0855,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3957,3.2530,5.6922,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3958,3.2670,10.3271,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3959,2.9280,10.2509,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3960,5.5312,5.9801,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3961,3.2530,5.6692,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3962,3.2670,10.3763,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3963,2.9280,10.2983,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3964,5.5312,6.0218,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3965,3.2530,5.7019,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3966,3.2670,10.3325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3967,2.9280,10.3187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3968,5.5312,5.9829,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3969,3.2530,5.6902,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3970,3.2670,10.3949,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3971,2.9280,10.3047,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3972,5.5312,6.0265,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3973,3.2530,5.6949,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3974,3.2670,10.5388,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3975,2.9280,10.3134,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3976,5.5312,5.8052,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3977,3.2530,5.5792,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3978,3.2670,10.4760,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3979,2.9280,10.5027,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3980,5.5312,6.0605,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3981,3.2530,5.6641,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3982,3.2670,9.8535,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3983,2.9280,9.9013,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3984,5.5312,6.1284,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3985,3.2530,5.7453,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3986,3.2670,10.2463,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3987,2.9280,10.0870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3988,5.5312,6.1145,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3989,3.2530,5.8255,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3990,3.2670,12.5185,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3991,2.9280,12.2465,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3992,5.5312,5.8874,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3993,3.2530,5.8500,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3994,3.2670,10.1327,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3995,2.9280,10.0025,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3996,5.5312,6.5468,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3997,3.2530,5.8271,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +3998,3.2670,9.9922,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +3999,2.9280,10.1519,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4000,5.5312,6.5136,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4001,3.2530,5.8532,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4002,3.2670,10.0651,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4003,2.9280,10.1419,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4004,5.5312,6.5622,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4005,3.2530,5.8082,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4006,3.2670,9.9198,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4007,2.9280,9.6285,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4008,5.5312,7.1957,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4009,3.2530,5.9931,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4010,3.2670,9.0949,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4011,2.9280,10.0177,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4012,5.5312,9.7733,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4013,3.2530,9.0737,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4014,3.2670,10.0683,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4015,2.9280,10.0344,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4016,5.5312,6.5865,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4017,3.2530,5.8987,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4018,3.2670,10.1130,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4019,2.9280,10.1683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4020,5.5312,6.2169,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4021,3.2530,5.8088,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4022,3.2670,10.2901,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4023,2.9280,10.2629,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4024,5.5312,6.2874,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4025,3.2530,5.9457,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4026,3.2670,10.1284,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4027,2.9280,10.1340,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4028,5.5312,6.3155,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4029,3.2530,5.9501,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4030,3.2670,10.0907,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4031,2.9280,10.0732,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4032,5.5312,6.1623,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4033,3.2530,5.8969,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4034,3.2670,10.0806,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4035,2.9280,10.1702,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4036,5.5312,6.2708,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4037,3.2530,5.8175,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4038,3.2670,9.9220,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4039,2.9280,9.9068,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4040,5.5312,6.3281,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4041,3.2530,5.7657,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4042,3.2670,10.3635,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4043,2.9280,10.2367,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4044,5.5312,6.1265,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4045,3.2530,5.7212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4046,3.2670,10.0269,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4047,2.9280,10.1493,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4048,5.5312,6.1846,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4049,3.2530,5.7200,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4050,3.2670,10.0670,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4051,2.9280,10.0283,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4052,5.5312,6.4724,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4053,3.2530,5.7103,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4054,3.2670,10.4928,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4055,2.9280,10.0941,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4056,5.5312,6.4082,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4057,3.2530,5.7715,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4058,3.2670,10.0585,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4059,2.9280,10.0324,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4060,5.5312,6.0062,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4061,3.2530,5.6247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4062,3.2670,10.3535,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4063,2.9280,10.2991,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4064,5.5312,5.8960,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4065,3.2530,5.5456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4066,3.2670,10.3496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4067,2.9280,10.2808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4068,5.5312,5.8543,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4069,3.2530,5.5219,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4070,3.2670,10.3324,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4071,2.9280,10.2897,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4072,5.5312,5.8087,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4073,3.2530,5.5553,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4074,3.2670,10.3643,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4075,2.9280,10.2617,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4076,5.5312,5.7812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4077,3.2530,5.5463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4078,3.2670,10.3887,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4079,2.9280,10.3257,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4080,5.5312,5.7793,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4081,3.2530,5.6000,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4082,3.2670,10.5768,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4083,2.9280,10.4527,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4084,5.5312,5.8994,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4085,3.2530,5.6554,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4086,3.2670,10.3985,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4087,2.9280,10.2498,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4088,5.5312,5.8454,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4089,3.2530,5.5731,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4090,3.2670,10.7133,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4091,2.9280,10.6415,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4092,5.5312,5.8753,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4093,3.2530,5.6926,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4094,3.2670,10.3311,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4095,2.9280,10.1954,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4096,5.5312,5.7823,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4097,3.2530,5.5635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4098,3.2670,10.4318,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4099,2.9280,10.3719,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4100,5.5312,5.8535,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4101,3.2530,5.4798,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4102,3.2670,10.6340,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4103,2.9280,10.5452,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4104,5.5312,6.0115,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4105,3.2530,5.5256,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4106,3.2670,10.1732,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4107,2.9280,9.9038,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4108,5.5312,5.8083,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4109,3.2530,5.5447,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4110,3.2670,10.4550,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4111,2.9280,10.4444,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4112,5.5312,5.6775,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4113,3.2530,5.5548,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4114,3.2670,10.3130,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4115,2.9280,10.3268,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4116,5.5312,5.6515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4117,3.2530,5.5616,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4118,3.2670,10.3389,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4119,2.9280,10.3987,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4120,5.5312,5.7707,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4121,3.2530,5.5440,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4122,3.2670,10.4693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4123,2.9280,10.4365,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4124,5.5312,5.8593,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4125,3.2530,5.5911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4126,3.2670,10.5164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4127,2.9280,10.5190,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4128,5.5312,5.8129,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4129,3.2530,5.5496,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4130,3.2670,10.4653,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4131,2.9280,10.4265,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4132,5.5312,5.6569,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4133,3.2530,5.5253,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4134,3.2670,10.3326,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4135,2.9280,10.3292,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4136,5.5312,5.7260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4137,3.2530,5.5703,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4138,3.2670,10.5041,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4139,2.9280,10.4496,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4140,5.5312,5.6890,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4141,3.2530,5.5597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4142,3.2670,10.4283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4143,2.9280,10.4366,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4144,5.5312,5.7275,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4145,3.2530,5.6290,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4146,3.2670,10.4291,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4147,2.9280,10.3442,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4148,5.5312,5.8801,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4149,3.2530,5.6544,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4150,3.2670,10.3930,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4151,2.9280,10.3390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4152,5.5312,5.8352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4153,3.2530,5.5473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4154,3.2670,10.3711,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4155,2.9280,10.3569,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4156,5.5312,5.7650,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4157,3.2530,5.5530,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4158,3.2670,10.3714,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4159,2.9280,10.3384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4160,5.5312,5.7670,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4161,3.2530,5.5132,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4162,3.2670,10.4073,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4163,2.9280,10.3833,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4164,5.5312,5.8498,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4165,3.2530,5.5704,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4166,3.2670,10.4610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4167,2.9280,10.4690,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4168,5.5312,5.7633,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4169,3.2530,5.6104,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4170,3.2670,10.4395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4171,2.9280,10.4169,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4172,5.5312,5.7383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4173,3.2530,5.6307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4174,3.2670,10.4487,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4175,2.9280,10.4098,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4176,5.5312,5.7089,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4177,3.2530,5.5917,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4178,3.2670,10.3780,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4179,2.9280,10.3455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4180,5.5312,5.8606,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4181,3.2530,5.5927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4182,3.2670,10.4146,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4183,2.9280,10.4164,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4184,5.5312,5.7312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4185,3.2530,5.5704,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4186,3.2670,10.4146,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4187,2.9280,10.4123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4188,5.5312,5.6750,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4189,3.2530,5.5694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4190,3.2670,10.6131,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4191,2.9280,10.6240,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4192,5.5312,5.7287,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4193,3.2530,5.5922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4194,3.2670,10.3360,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4195,2.9280,10.3003,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4196,5.5312,5.7101,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4197,3.2530,5.5441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4198,3.2670,10.2897,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4199,2.9280,10.2895,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4200,5.5312,5.7909,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4201,3.2530,5.5950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4202,3.2670,10.4121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4203,2.9280,10.4011,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4204,5.5312,5.7340,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4205,3.2530,5.6455,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4206,3.2670,10.5260,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4207,2.9280,10.5165,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4208,5.5312,5.6503,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4209,3.2530,5.5270,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4210,3.2670,10.3458,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4211,2.9280,10.3191,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4212,5.5312,5.6946,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4213,3.2530,5.4521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4214,3.2670,10.3281,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4215,2.9280,10.3160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4216,5.5312,5.6818,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4217,3.2530,5.4488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4218,3.2670,10.2219,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4219,2.9280,10.1636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4220,5.5312,5.8653,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4221,3.2530,5.6172,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4222,3.2670,10.4817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4223,2.9280,10.4673,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4224,5.5312,5.6891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4225,3.2530,5.5897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4226,3.2670,10.4108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4227,2.9280,10.4114,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4228,5.5312,5.9144,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4229,3.2530,5.6657,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4230,3.2670,10.4077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4231,2.9280,10.3590,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4232,5.5312,5.7072,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4233,3.2530,5.5738,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4234,3.2670,10.3968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4235,2.9280,10.4059,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4236,5.5312,5.6992,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4237,3.2530,5.5889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4238,3.2670,10.3895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4239,2.9280,10.3790,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4240,5.5312,5.6512,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4241,3.2530,5.5635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4242,3.2670,10.3582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4243,2.9280,10.3440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4244,5.5312,5.6796,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4245,3.2530,5.5260,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4246,3.2670,10.2888,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4247,2.9280,10.2267,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4248,5.5312,5.7122,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4249,3.2530,5.6925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4250,3.2670,10.2480,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4251,2.9280,10.2062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4252,5.5312,6.4807,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4253,3.2530,6.2183,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4254,3.2670,10.4623,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4255,2.9280,10.3873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4256,5.5312,5.9828,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4257,3.2530,5.6663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4258,3.2670,10.5123,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4259,2.9280,10.4979,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4260,5.5312,5.7078,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4261,3.2530,5.5870,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4262,3.2670,10.4734,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4263,2.9280,10.4759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4264,5.5312,5.8349,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4265,3.2530,5.6229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4266,3.2670,10.3871,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4267,2.9280,10.3782,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4268,5.5312,5.5800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4269,3.2530,5.4580,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4270,3.2670,10.2788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4271,2.9280,10.2404,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4272,5.5312,5.6112,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4273,3.2530,5.4977,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4274,3.2670,10.3035,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4275,2.9280,10.2926,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4276,5.5312,5.5910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4277,3.2530,5.5381,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4278,3.2670,10.3182,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4279,2.9280,10.3113,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4280,5.5312,5.7482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4281,3.2530,5.5848,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4282,3.2670,10.1783,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4283,2.9280,10.2212,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4284,5.5312,5.8108,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4285,3.2530,5.5679,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4286,3.2670,10.6231,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4287,2.9280,10.6200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4288,5.5312,5.6979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4289,3.2530,5.5788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4290,3.2670,10.3083,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4291,2.9280,10.3845,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4292,5.5312,5.7396,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4293,3.2530,5.5594,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4294,3.2670,10.5745,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4295,2.9280,10.5689,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4296,5.5312,5.7444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4297,3.2530,5.6401,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4298,3.2670,10.4602,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4299,2.9280,10.4052,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4300,5.5312,5.7001,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4301,3.2530,5.5929,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4302,3.2670,10.4207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4303,2.9280,10.4182,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4304,5.5312,5.7255,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4305,3.2530,5.5123,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4306,3.2670,10.4040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4307,2.9280,10.4012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4308,5.5312,5.7720,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4309,3.2530,5.6117,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4310,3.2670,10.5177,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4311,2.9280,10.4521,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4312,5.5312,5.7687,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4313,3.2530,5.5888,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4314,3.2670,10.3390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4315,2.9280,10.2825,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4316,5.5312,6.0054,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4317,3.2530,5.6996,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4318,3.2670,10.5260,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4319,2.9280,10.3425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4320,5.5312,47.4412,0.0084,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4321,3.2530,29.3764,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4322,3.2670,25.5079,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4323,2.9280,25.6077,0.0106,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4324,5.5312,5.7590,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +4325,3.2530,5.5896,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +4326,3.2670,10.5277,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +4327,2.9280,10.5665,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +4328,5.5312,5.7059,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +4329,3.2530,5.6197,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +4330,3.2670,10.5360,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +4331,2.9280,10.5522,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +4332,5.5312,5.8015,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +4333,3.2530,5.7445,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +4334,3.2670,10.6196,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +4335,2.9280,10.6148,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +4336,5.5312,5.6328,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +4337,3.2530,5.5566,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +4338,3.2670,10.4413,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +4339,2.9280,10.4281,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +4340,5.5312,5.6810,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +4341,3.2530,5.6326,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +4342,3.2670,10.5630,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +4343,2.9280,10.5553,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +4344,5.5312,5.6726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +4345,3.2530,5.5842,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +4346,3.2670,10.4878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +4347,2.9280,10.4740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +4348,5.5312,5.6883,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +4349,3.2530,5.5911,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +4350,3.2670,10.4617,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +4351,2.9280,10.4275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +4352,5.5312,5.6856,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +4353,3.2530,5.5441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +4354,3.2670,10.3740,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +4355,2.9280,10.3793,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +4356,5.5312,5.7217,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +4357,3.2530,5.5115,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +4358,3.2670,10.3551,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +4359,2.9280,10.2959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +4360,5.5312,5.8026,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +4361,3.2530,5.6119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +4362,3.2670,10.4975,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +4363,2.9280,10.4796,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +4364,5.5312,5.8373,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +4365,3.2530,5.5899,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +4366,3.2670,10.5635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +4367,2.9280,10.4965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +4368,5.5312,5.7442,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +4369,3.2530,5.6713,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +4370,3.2670,10.5847,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4371,2.9280,10.5515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +4372,5.5312,5.7688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +4373,3.2530,5.6735,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +4374,3.2670,10.6360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +4375,2.9280,10.6313,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4376,5.5312,5.8066,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4377,3.2530,5.6341,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4378,3.2670,10.6532,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +4379,2.9280,10.6290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4380,5.5312,5.7167,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +4381,3.2530,5.6211,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4382,3.2670,10.4636,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4383,2.9280,10.4686,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +4384,5.5312,5.6369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +4385,3.2530,5.4755,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4386,3.2670,10.4503,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +4387,2.9280,10.4147,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +4388,5.5312,5.7617,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +4389,3.2530,5.5638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +4390,3.2670,10.3698,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +4391,2.9280,10.3224,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +4392,5.5312,5.7014,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +4393,3.2530,5.5800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +4394,3.2670,10.4683,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +4395,2.9280,10.4082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +4396,5.5312,5.6910,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4397,3.2530,5.5183,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +4398,3.2670,10.4057,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4399,2.9280,10.3581,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +4400,5.5312,5.7894,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +4401,3.2530,5.6545,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4402,3.2670,10.1357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4403,2.9280,10.1084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4404,5.5312,6.0252,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4405,3.2530,5.7700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +4406,3.2670,10.6827,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4407,2.9280,10.6784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4408,5.5312,5.7675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4409,3.2530,5.5216,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +4410,3.2670,10.4362,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4411,2.9280,10.3871,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4412,5.5312,5.6693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +4413,3.2530,5.6143,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +4414,3.2670,10.3697,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4415,2.9280,10.3293,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4416,5.5312,5.6615,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +4417,3.2530,5.5664,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4418,3.2670,10.4024,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4419,2.9280,10.3937,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +4420,5.5312,5.7175,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4421,3.2530,5.5210,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4422,3.2670,10.2433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +4423,2.9280,10.1768,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4424,5.5312,5.6805,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4425,3.2530,5.5255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +4426,3.2670,10.3166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4427,2.9280,10.2709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +4428,5.5312,5.8738,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +4429,3.2530,5.6268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4430,3.2670,10.5672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4431,2.9280,10.5327,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4432,5.5312,5.7793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4433,3.2530,5.6134,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +4434,3.2670,10.5300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +4435,2.9280,10.4600,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4436,5.5312,5.6926,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +4437,3.2530,5.6528,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +4438,3.2670,10.4926,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +4439,2.9280,10.5084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4440,5.5312,5.6152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +4441,3.2530,5.5189,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4442,3.2670,10.3530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4443,2.9280,10.3088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4444,5.5312,5.8229,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4445,3.2530,5.5296,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4446,3.2670,10.3453,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +4447,2.9280,10.2868,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +4448,5.5312,5.9553,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +4449,3.2530,5.6617,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4450,3.2670,10.6001,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4451,2.9280,10.5956,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4452,5.5312,6.0091,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +4453,3.2530,5.6932,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4454,3.2670,10.5261,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4455,2.9280,10.4858,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +4456,5.5312,5.8972,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +4457,3.2530,5.6525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4458,3.2670,10.5807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4459,2.9280,10.5161,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4460,5.5312,5.8013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +4461,3.2530,5.6346,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4462,3.2670,10.4309,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +4463,2.9280,10.4328,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4464,5.5312,5.8038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4465,3.2530,5.6498,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4466,3.2670,10.5436,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4467,2.9280,10.5090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4468,5.5312,5.9832,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4469,3.2530,5.6269,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4470,3.2670,10.3702,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4471,2.9280,10.3362,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4472,5.5312,5.7670,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +4473,3.2530,5.5563,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4474,3.2670,10.6005,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +4475,2.9280,10.5234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4476,5.5312,5.7481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +4477,3.2530,5.5842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4478,3.2670,10.3937,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4479,2.9280,10.3555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4480,5.5312,5.7958,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4481,3.2530,5.6257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4482,3.2670,10.2840,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +4483,2.9280,10.2538,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4484,5.5312,5.7888,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4485,3.2530,5.6982,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4486,3.2670,10.4500,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +4487,2.9280,10.3654,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4488,5.5312,5.8737,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4489,3.2530,5.6854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4490,3.2670,10.9413,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +4491,2.9280,10.7060,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4492,5.5312,8.0191,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4493,3.2530,7.5137,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4494,3.2670,10.8391,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4495,2.9280,10.7065,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4496,5.5312,6.9218,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4497,3.2530,5.8810,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4498,3.2670,10.3390,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4499,2.9280,10.2858,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4500,5.5312,6.9825,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4501,3.2530,5.8892,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4502,3.2670,10.6480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4503,2.9280,10.5230,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +4504,5.5312,7.0056,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4505,3.2530,5.8385,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4506,3.2670,10.1703,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4507,2.9280,10.1490,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4508,5.5312,6.6387,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4509,3.2530,5.8627,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4510,3.2670,10.0475,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +4511,2.9280,10.3358,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4512,5.5312,6.6605,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4513,3.2530,5.9552,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4514,3.2670,9.9672,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4515,2.9280,10.2144,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4516,5.5312,6.8527,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4517,3.2530,5.7852,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4518,3.2670,10.4893,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +4519,2.9280,10.3514,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4520,5.5312,6.6612,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4521,3.2530,5.7258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4522,3.2670,10.1630,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4523,2.9280,10.2048,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4524,5.5312,6.6935,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4525,3.2530,5.8510,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4526,3.2670,10.1615,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4527,2.9280,10.3039,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4528,5.5312,6.6099,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4529,3.2530,5.7233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4530,3.2670,10.1888,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4531,2.9280,10.1709,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4532,5.5312,6.7562,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4533,3.2530,5.9114,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4534,3.2670,16.1963,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +4535,2.9280,16.7106,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4536,5.5312,6.6136,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4537,3.2530,5.8039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4538,3.2670,10.5725,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4539,2.9280,10.4472,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4540,5.5312,6.0556,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4541,3.2530,5.7706,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4542,3.2670,10.7178,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4543,2.9280,10.5463,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4544,5.5312,6.7603,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4545,3.2530,5.9167,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4546,3.2670,10.5940,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4547,2.9280,10.5089,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4548,5.5312,6.6345,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4549,3.2530,6.0531,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4550,3.2670,9.8907,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4551,2.9280,10.4746,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4552,5.5312,6.4754,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4553,3.2530,5.7170,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4554,3.2670,10.3455,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4555,2.9280,10.2279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4556,5.5312,5.9361,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4557,3.2530,5.6241,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4558,3.2670,10.5228,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4559,2.9280,10.4373,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4560,5.5312,6.3236,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4561,3.2530,5.8496,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4562,3.2670,10.8611,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4563,2.9280,10.8042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4564,5.5312,6.1165,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4565,3.2530,5.8771,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4566,3.2670,10.9209,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4567,2.9280,10.8557,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4568,5.5312,6.0752,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4569,3.2530,5.8057,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4570,3.2670,10.7580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4571,2.9280,10.7321,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4572,5.5312,5.8300,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4573,3.2530,5.6237,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4574,3.2670,10.4652,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4575,2.9280,10.3669,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4576,5.5312,5.9157,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4577,3.2530,5.7542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4578,3.2670,10.4997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4579,2.9280,10.4492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4580,5.5312,5.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4581,3.2530,5.5751,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4582,3.2670,10.2809,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4583,2.9280,10.2484,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4584,5.5312,6.0092,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4585,3.2530,5.7930,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4586,3.2670,10.5621,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4587,2.9280,10.4994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4588,5.5312,5.9492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4589,3.2530,5.7538,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4590,3.2670,10.4714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4591,2.9280,10.4168,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4592,5.5312,5.7526,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4593,3.2530,5.6220,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4594,3.2670,10.3483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4595,2.9280,10.3208,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4596,5.5312,6.0767,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4597,3.2530,5.8288,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4598,3.2670,10.4492,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4599,2.9280,10.3590,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4600,5.5312,5.9679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4601,3.2530,5.6767,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4602,3.2670,10.4706,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4603,2.9280,10.3693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4604,5.5312,6.3938,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4605,3.2530,5.6336,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4606,3.2670,10.1992,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4607,2.9280,9.9271,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4608,5.5312,6.3924,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4609,3.2530,5.7255,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4610,3.2670,10.3169,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +4611,2.9280,10.0732,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4612,5.5312,6.1183,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4613,3.2530,5.8015,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4614,3.2670,10.6613,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4615,2.9280,10.4374,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4616,5.5312,6.6450,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4617,3.2530,5.8676,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4618,3.2670,9.3120,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4619,2.9280,10.1654,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4620,5.5312,6.1336,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4621,3.2530,5.7564,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4622,3.2670,10.5084,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4623,2.9280,10.3207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +4624,5.5312,6.3420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4625,3.2530,5.7749,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4626,3.2670,10.9289,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4627,2.9280,10.8361,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4628,5.5312,6.1009,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4629,3.2530,5.8042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4630,3.2670,10.7540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4631,2.9280,10.7021,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4632,5.5312,6.0536,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4633,3.2530,5.7484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4634,3.2670,10.5876,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4635,2.9280,10.5191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4636,5.5312,6.0435,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4637,3.2530,5.7830,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4638,3.2670,10.7200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4639,2.9280,10.6800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4640,5.5312,5.8763,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4641,3.2530,5.6463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4642,3.2670,10.6566,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4643,2.9280,10.4503,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4644,5.5312,6.8120,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4645,3.2530,6.0490,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4646,3.2670,10.3306,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4647,2.9280,10.2602,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +4648,5.5312,6.5320,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4649,3.2530,5.7791,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4650,3.2670,10.1833,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4651,2.9280,10.1571,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4652,5.5312,6.6119,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4653,3.2530,6.0070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4654,3.2670,9.7620,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4655,2.9280,10.1993,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4656,5.5312,6.9413,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4657,3.2530,6.1023,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4658,3.2670,10.9463,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4659,2.9280,10.8649,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4660,5.5312,6.6573,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4661,3.2530,5.7253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4662,3.2670,10.3312,0.0288,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4663,2.9280,10.1690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4664,5.5312,5.8535,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4665,3.2530,5.5511,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4666,3.2670,10.4605,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4667,2.9280,10.3537,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4668,5.5312,5.9584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4669,3.2530,5.6630,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4670,3.2670,10.4390,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4671,2.9280,10.3433,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4672,5.5312,5.7883,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4673,3.2530,5.6100,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4674,3.2670,10.3193,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4675,2.9280,10.2508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4676,5.5312,5.8276,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4677,3.2530,5.5830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4678,3.2670,10.3296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4679,2.9280,10.2618,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4680,5.5312,5.8619,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4681,3.2530,5.6067,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4682,3.2670,10.5358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4683,2.9280,10.4754,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4684,5.5312,5.7523,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4685,3.2530,5.5367,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4686,3.2670,10.4149,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4687,2.9280,10.3833,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4688,5.5312,5.6885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4689,3.2530,5.5326,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4690,3.2670,10.4010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4691,2.9280,10.3958,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4692,5.5312,5.8891,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4693,3.2530,5.6539,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4694,3.2670,10.4809,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4695,2.9280,10.4679,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4696,5.5312,5.7889,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4697,3.2530,5.7464,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4698,3.2670,10.1877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4699,2.9280,10.1370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4700,5.5312,5.8007,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4701,3.2530,5.5005,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4702,3.2670,10.2652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4703,2.9280,10.2037,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4704,5.5312,5.8582,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4705,3.2530,5.5701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4706,3.2670,10.3983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4707,2.9280,10.3145,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4708,5.5312,5.7381,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4709,3.2530,5.5287,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4710,3.2670,10.4001,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4711,2.9280,10.3453,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4712,5.5312,5.8262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4713,3.2530,5.5161,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4714,3.2670,10.4543,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4715,2.9280,10.4468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4716,5.5312,5.6885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4717,3.2530,5.5867,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4718,3.2670,10.3354,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4719,2.9280,10.2826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4720,5.5312,5.7343,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4721,3.2530,5.4913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4722,3.2670,10.2417,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4723,2.9280,10.2052,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4724,5.5312,5.9710,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4725,3.2530,5.5983,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4726,3.2670,10.5600,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4727,2.9280,10.5288,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4728,5.5312,5.7803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4729,3.2530,5.5728,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4730,3.2670,10.4848,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4731,2.9280,10.4797,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4732,5.5312,5.6156,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4733,3.2530,5.4779,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4734,3.2670,10.3775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4735,2.9280,10.3250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4736,5.5312,5.7484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4737,3.2530,5.5248,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4738,3.2670,10.4786,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4739,2.9280,10.4802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4740,5.5312,5.6598,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4741,3.2530,5.4980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4742,3.2670,10.3845,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4743,2.9280,10.3543,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4744,5.5312,5.6586,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4745,3.2530,5.5008,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4746,3.2670,10.3869,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4747,2.9280,10.3502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4748,5.5312,5.8175,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4749,3.2530,5.5386,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4750,3.2670,10.3528,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4751,2.9280,10.2277,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4752,5.5312,5.9281,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4753,3.2530,5.6803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4754,3.2670,10.6204,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4755,2.9280,10.5895,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4756,5.5312,5.7758,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4757,3.2530,5.6557,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4758,3.2670,10.5097,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4759,2.9280,10.4749,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4760,5.5312,5.7114,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4761,3.2530,5.6275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4762,3.2670,10.5340,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4763,2.9280,10.4661,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4764,5.5312,5.6601,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4765,3.2530,5.5420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4766,3.2670,10.4482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4767,2.9280,10.3163,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4768,5.5312,5.7763,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4769,3.2530,5.6192,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4770,3.2670,10.3862,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4771,2.9280,10.3389,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4772,5.5312,5.7162,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4773,3.2530,5.5812,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4774,3.2670,10.3257,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4775,2.9280,10.3081,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4776,5.5312,5.8068,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4777,3.2530,5.6127,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4778,3.2670,10.4021,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4779,2.9280,10.2775,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4780,5.5312,5.7679,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4781,3.2530,5.5250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4782,3.2670,10.4040,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4783,2.9280,10.3790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4784,5.5312,5.8303,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4785,3.2530,5.5893,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4786,3.2670,10.4488,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4787,2.9280,10.3665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4788,5.5312,5.8619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4789,3.2530,5.6288,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4790,3.2670,10.6580,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4791,2.9280,10.6583,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4792,5.5312,5.7625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4793,3.2530,5.6162,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4794,3.2670,10.5159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4795,2.9280,10.5031,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4796,5.5312,5.7973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4797,3.2530,5.6323,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4798,3.2670,10.5884,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4799,2.9280,10.6007,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4800,5.5312,5.6718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4801,3.2530,5.5267,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4802,3.2670,10.3710,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4803,2.9280,10.3712,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4804,5.5312,5.7467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4805,3.2530,5.5271,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4806,3.2670,10.5522,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4807,2.9280,10.5020,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4808,5.5312,5.6236,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4809,3.2530,5.4790,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4810,3.2670,10.3752,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4811,2.9280,10.3658,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4812,5.5312,5.7706,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4813,3.2530,5.5917,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4814,3.2670,10.5262,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4815,2.9280,10.5326,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4816,5.5312,5.8527,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4817,3.2530,5.7724,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4818,3.2670,10.3598,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4819,2.9280,10.2865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4820,5.5312,5.9442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4821,3.2530,5.5925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4822,3.2670,10.4385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4823,2.9280,10.3900,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4824,5.5312,5.6582,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4825,3.2530,5.5250,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4826,3.2670,10.3953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4827,2.9280,10.3600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4828,5.5312,5.9022,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4829,3.2530,5.5894,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4830,3.2670,10.3803,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4831,2.9280,10.3375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4832,5.5312,5.7930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4833,3.2530,5.5209,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4834,3.2670,10.3442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4835,2.9280,10.2716,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4836,5.5312,5.8630,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4837,3.2530,5.5789,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4838,3.2670,10.3882,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4839,2.9280,10.3372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4840,5.5312,5.7555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4841,3.2530,5.5713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4842,3.2670,10.3521,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4843,2.9280,10.3296,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4844,5.5312,5.7796,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4845,3.2530,5.6001,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4846,3.2670,10.4317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4847,2.9280,10.4043,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4848,5.5312,5.7971,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4849,3.2530,5.6441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4850,3.2670,10.4246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4851,2.9280,10.3636,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +4852,5.5312,5.6998,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4853,3.2530,5.5526,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4854,3.2670,10.3496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4855,2.9280,10.3088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4856,5.5312,5.8423,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4857,3.2530,5.5819,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4858,3.2670,10.4040,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4859,2.9280,10.3091,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4860,5.5312,5.8535,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4861,3.2530,5.6308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4862,3.2670,10.5307,0.0285,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4863,2.9280,10.5070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4864,5.5312,5.6570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4865,3.2530,5.5306,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4866,3.2670,10.3779,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4867,2.9280,10.2681,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4868,5.5312,5.6661,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4869,3.2530,5.4864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4870,3.2670,10.2989,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4871,2.9280,10.2663,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4872,5.5312,5.7574,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4873,3.2530,5.4450,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4874,3.2670,10.2852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4875,2.9280,10.2212,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4876,5.5312,5.9720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4877,3.2530,5.6028,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4878,3.2670,10.4279,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4879,2.9280,10.3736,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4880,5.5312,5.8050,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4881,3.2530,5.6217,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4882,3.2670,10.5390,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4883,2.9280,10.5376,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4884,5.5312,5.8800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4885,3.2530,5.6705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4886,3.2670,10.4171,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4887,2.9280,10.4035,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4888,5.5312,5.6738,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4889,3.2530,5.5590,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4890,3.2670,10.3947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4891,2.9280,10.3462,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4892,5.5312,5.6543,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4893,3.2530,5.5309,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4894,3.2670,10.3194,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4895,2.9280,10.2926,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4896,5.5312,5.6580,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4897,3.2530,5.5207,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4898,3.2670,10.3820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4899,2.9280,10.2780,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4900,5.5312,5.7021,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4901,3.2530,5.5430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4902,3.2670,10.3714,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4903,2.9280,10.3551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4904,5.5312,5.8653,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4905,3.2530,5.6517,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4906,3.2670,10.5101,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4907,2.9280,10.4162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4908,5.5312,5.8486,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4909,3.2530,5.4784,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4910,3.2670,10.2720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4911,2.9280,10.2127,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4912,5.5312,5.9650,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4913,3.2530,5.6612,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4914,3.2670,10.6244,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4915,2.9280,10.6157,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4916,5.5312,5.7547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4917,3.2530,5.6047,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4918,3.2670,10.5736,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4919,2.9280,10.5392,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4920,5.5312,5.8835,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4921,3.2530,5.6671,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4922,3.2670,10.5505,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4923,2.9280,10.5110,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4924,5.5312,5.6785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4925,3.2530,5.4962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4926,3.2670,10.4010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4927,2.9280,10.3755,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4928,5.5312,5.6955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4929,3.2530,5.5509,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4930,3.2670,10.2917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4931,2.9280,10.2565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4932,5.5312,5.6967,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4933,3.2530,5.5386,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4934,3.2670,10.3185,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4935,2.9280,10.2427,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4936,5.5312,5.9013,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4937,3.2530,5.6195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4938,3.2670,10.5224,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4939,2.9280,10.4926,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4940,5.5312,5.8080,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4941,3.2530,5.5695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4942,3.2670,10.4856,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4943,2.9280,10.4860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4944,5.5312,5.7586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4945,3.2530,5.6476,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4946,3.2670,10.5070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4947,2.9280,10.4932,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4948,5.5312,5.8219,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4949,3.2530,5.6007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4950,3.2670,10.4404,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4951,2.9280,10.3967,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4952,5.5312,5.7601,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4953,3.2530,5.5375,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4954,3.2670,10.3237,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4955,2.9280,10.2752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4956,5.5312,5.7833,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4957,3.2530,5.5645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4958,3.2670,10.4382,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4959,2.9280,10.4060,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4960,5.5312,5.7404,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4961,3.2530,5.5371,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4962,3.2670,10.4740,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4963,2.9280,10.4531,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4964,5.5312,5.9130,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4965,3.2530,5.6251,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4966,3.2670,10.5492,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4967,2.9280,10.5698,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4968,5.5312,5.7292,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4969,3.2530,5.6116,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4970,3.2670,10.5368,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4971,2.9280,10.5462,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4972,5.5312,5.6371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4973,3.2530,5.5393,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4974,3.2670,10.4775,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4975,2.9280,10.4025,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4976,5.5312,5.8873,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4977,3.2530,5.5652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4978,3.2670,10.5936,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4979,2.9280,10.5107,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4980,5.5312,5.8217,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4981,3.2530,5.5889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4982,3.2670,10.3052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4983,2.9280,10.1607,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4984,5.5312,5.8632,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4985,3.2530,5.6147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4986,3.2670,10.5282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4987,2.9280,10.5197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4988,5.5312,5.9706,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4989,3.2530,5.6828,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4990,3.2670,10.5939,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4991,2.9280,10.5242,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4992,5.5312,5.8828,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4993,3.2530,5.6282,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4994,3.2670,10.5090,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4995,2.9280,10.5051,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4996,5.5312,5.7021,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4997,3.2530,5.5975,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +4998,3.2670,10.5525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +4999,2.9280,10.5354,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5000,5.5312,5.8239,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5001,3.2530,5.6059,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5002,3.2670,10.4745,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5003,2.9280,10.4800,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5004,5.5312,5.6879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5005,3.2530,5.5493,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5006,3.2670,10.3609,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5007,2.9280,10.3672,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5008,5.5312,5.6606,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5009,3.2530,5.5166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5010,3.2670,10.3175,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5011,2.9280,10.3558,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5012,5.5312,5.7810,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5013,3.2530,5.6046,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5014,3.2670,10.4715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5015,2.9280,10.4001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5016,5.5312,5.8373,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5017,3.2530,5.5662,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5018,3.2670,10.3462,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5019,2.9280,10.3164,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5020,5.5312,5.7996,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5021,3.2530,5.5958,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5022,3.2670,10.5620,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5023,2.9280,10.4277,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5024,5.5312,5.8271,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5025,3.2530,5.5022,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5026,3.2670,10.2404,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5027,2.9280,10.1921,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5028,5.5312,5.7578,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5029,3.2530,5.4879,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5030,3.2670,10.3848,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5031,2.9280,10.2768,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5032,5.5312,5.9643,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5033,3.2530,5.6700,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5034,3.2670,10.6028,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5035,2.9280,10.5930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5036,5.5312,5.8826,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5037,3.2530,5.6540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5038,3.2670,10.4908,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5039,2.9280,10.4506,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5040,5.5312,47.4584,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +5041,3.2530,30.0500,0.0150,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +5042,3.2670,24.6097,0.0083,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +5043,2.9280,25.9931,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +5044,5.5312,5.7591,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5045,3.2530,5.5877,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +5046,3.2670,10.5683,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +5047,2.9280,10.6093,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +5048,5.5312,5.6954,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +5049,3.2530,5.6534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +5050,3.2670,10.6630,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +5051,2.9280,10.6647,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +5052,5.5312,5.8046,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +5053,3.2530,5.6732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +5054,3.2670,10.5594,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +5055,2.9280,10.5478,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +5056,5.5312,5.6781,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +5057,3.2530,5.6097,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +5058,3.2670,10.5137,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +5059,2.9280,10.5103,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +5060,5.5312,5.6325,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +5061,3.2530,5.5415,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +5062,3.2670,10.4898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +5063,2.9280,10.4957,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +5064,5.5312,5.6731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +5065,3.2530,5.5432,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +5066,3.2670,10.4149,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +5067,2.9280,10.4365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +5068,5.5312,5.7433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +5069,3.2530,5.5614,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +5070,3.2670,10.5117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +5071,2.9280,10.5262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +5072,5.5312,5.5533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +5073,3.2530,5.4675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +5074,3.2670,10.2233,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +5075,2.9280,10.1881,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +5076,5.5312,5.6410,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +5077,3.2530,5.4982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +5078,3.2670,10.4649,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +5079,2.9280,10.4653,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +5080,5.5312,5.8465,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +5081,3.2530,5.5954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +5082,3.2670,10.4620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +5083,2.9280,10.4647,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +5084,5.5312,5.8360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +5085,3.2530,5.6561,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +5086,3.2670,10.5312,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +5087,2.9280,10.5452,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +5088,5.5312,5.7716,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +5089,3.2530,5.6497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +5090,3.2670,10.5273,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5091,2.9280,10.5073,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +5092,5.5312,5.7641,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +5093,3.2530,5.6835,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +5094,3.2670,10.6198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +5095,2.9280,10.5945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +5096,5.5312,5.7289,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5097,3.2530,5.6435,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5098,3.2670,10.5137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +5099,2.9280,10.5164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5100,5.5312,5.6594,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +5101,3.2530,5.5652,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5102,3.2670,10.4355,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +5103,2.9280,10.4480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5104,5.5312,5.6733,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +5105,3.2530,5.5040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5106,3.2670,10.4160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +5107,2.9280,10.4010,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +5108,5.5312,5.7565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +5109,3.2530,5.6059,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +5110,3.2670,10.5259,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5111,2.9280,10.5085,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +5112,5.5312,5.6392,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +5113,3.2530,5.5559,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +5114,3.2670,10.4222,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +5115,2.9280,10.3889,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +5116,5.5312,5.6353,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5117,3.2530,5.4845,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +5118,3.2670,10.3676,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +5119,2.9280,10.3263,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +5120,5.5312,5.7262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +5121,3.2530,5.6324,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5122,3.2670,10.2777,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +5123,2.9280,10.4368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5124,5.5312,5.7053,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5125,3.2530,5.5701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +5126,3.2670,10.3368,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5127,2.9280,10.3118,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5128,5.5312,5.8445,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5129,3.2530,5.6731,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +5130,3.2670,10.5976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5131,2.9280,10.5801,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +5132,5.5312,5.7030,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +5133,3.2530,5.6714,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +5134,3.2670,10.4809,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5135,2.9280,10.4930,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5136,5.5312,5.6981,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +5137,3.2530,5.6158,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5138,3.2670,10.3818,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +5139,2.9280,10.3727,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +5140,5.5312,5.6859,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +5141,3.2530,5.6217,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5142,3.2670,10.5887,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +5143,2.9280,10.5995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5144,5.5312,5.6932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5145,3.2530,5.5362,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +5146,3.2670,10.3582,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5147,2.9280,10.3410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +5148,5.5312,5.6559,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +5149,3.2530,5.5153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5150,3.2670,10.3299,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +5151,2.9280,10.3050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5152,5.5312,5.8722,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +5153,3.2530,5.6315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +5154,3.2670,10.5077,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +5155,2.9280,10.3965,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5156,5.5312,5.7514,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +5157,3.2530,5.5564,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +5158,3.2670,10.3641,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +5159,2.9280,10.2927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5160,5.5312,5.8853,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +5161,3.2530,5.5546,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5162,3.2670,10.4922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +5163,2.9280,10.4617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5164,5.5312,5.8258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +5165,3.2530,5.6833,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5166,3.2670,10.4464,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +5167,2.9280,10.4488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +5168,5.5312,5.7358,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5169,3.2530,5.6785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5170,3.2670,10.4953,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5171,2.9280,10.4748,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5172,5.5312,5.7628,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5173,3.2530,5.6340,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5174,3.2670,10.5075,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5175,2.9280,10.4415,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +5176,5.5312,5.6417,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +5177,3.2530,5.5442,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5178,3.2670,10.5225,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5179,2.9280,10.5072,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5180,5.5312,5.6917,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +5181,3.2530,5.5692,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5182,3.2670,10.3443,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +5183,2.9280,10.2665,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5184,5.5312,5.7199,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5185,3.2530,5.5209,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5186,3.2670,10.3387,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +5187,2.9280,10.2777,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5188,5.5312,5.9473,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5189,3.2530,5.6304,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5190,3.2670,10.2697,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +5191,2.9280,10.1671,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +5192,5.5312,6.0058,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5193,3.2530,5.6567,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5194,3.2670,10.6542,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +5195,2.9280,10.5087,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5196,5.5312,5.7537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5197,3.2530,5.6665,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5198,3.2670,10.5986,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +5199,2.9280,10.5271,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +5200,5.5312,5.9313,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5201,3.2530,5.6704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5202,3.2670,10.5466,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +5203,2.9280,10.5168,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5204,5.5312,5.9088,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5205,3.2530,5.6998,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5206,3.2670,10.7257,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5207,2.9280,10.6214,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5208,5.5312,5.7690,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5209,3.2530,5.6189,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5210,3.2670,10.5012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +5211,2.9280,10.4648,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5212,5.5312,5.6912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5213,3.2530,5.6060,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5214,3.2670,10.4711,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5215,2.9280,10.3618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5216,5.5312,5.9877,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5217,3.2530,5.6173,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5218,3.2670,10.5192,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5219,2.9280,10.4374,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5220,5.5312,5.8792,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5221,3.2530,5.5486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5222,3.2670,10.5246,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5223,2.9280,10.3763,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +5224,5.5312,5.8768,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5225,3.2530,5.5987,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5226,3.2670,10.4952,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5227,2.9280,10.4715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5228,5.5312,5.8169,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5229,3.2530,5.6213,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5230,3.2670,10.4045,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +5231,2.9280,10.3399,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5232,5.5312,5.7733,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5233,3.2530,5.6354,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5234,3.2670,10.4964,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5235,2.9280,10.3763,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5236,5.5312,5.7456,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5237,3.2530,5.6353,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5238,3.2670,10.3628,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5239,2.9280,10.2651,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5240,5.5312,6.1867,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5241,3.2530,5.6520,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5242,3.2670,10.3034,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5243,2.9280,10.0850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5244,5.5312,6.1833,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5245,3.2530,5.6280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5246,3.2670,10.3328,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5247,2.9280,10.1418,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5248,5.5312,6.0912,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5249,3.2530,5.6568,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5250,3.2670,10.1339,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5251,2.9280,10.0613,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5252,5.5312,6.4120,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5253,3.2530,5.7867,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5254,3.2670,10.3488,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +5255,2.9280,10.0702,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5256,5.5312,6.5235,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5257,3.2530,5.7929,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5258,3.2670,10.3268,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5259,2.9280,10.0979,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5260,5.5312,6.5728,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5261,3.2530,5.7963,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5262,3.2670,10.4066,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5263,2.9280,9.9808,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5264,5.5312,7.0011,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5265,3.2530,5.9110,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5266,3.2670,10.5184,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5267,2.9280,10.3954,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5268,5.5312,6.7531,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5269,3.2530,5.8875,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5270,3.2670,10.3465,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5271,2.9280,10.0883,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5272,5.5312,6.8878,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5273,3.2530,5.8127,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5274,3.2670,10.5607,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5275,2.9280,10.3080,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5276,5.5312,6.9628,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5277,3.2530,5.9417,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5278,3.2670,10.0213,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5279,2.9280,10.1464,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +5280,5.5312,7.3856,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5281,3.2530,6.0825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5282,3.2670,10.6436,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5283,2.9280,10.3956,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5284,5.5312,6.9978,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5285,3.2530,5.9252,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5286,3.2670,10.0540,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5287,2.9280,10.0865,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5288,5.5312,6.7389,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5289,3.2530,6.1066,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5290,3.2670,9.8321,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5291,2.9280,10.0637,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5292,5.5312,8.2309,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5293,3.2530,5.8543,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5294,3.2670,10.3040,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5295,2.9280,10.2146,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5296,5.5312,6.4208,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5297,3.2530,5.6658,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5298,3.2670,9.9705,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +5299,2.9280,10.1362,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5300,5.5312,6.4234,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5301,3.2530,5.7490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5302,3.2670,9.9654,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5303,2.9280,10.0023,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5304,5.5312,6.5936,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5305,3.2530,5.7747,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5306,3.2670,10.4417,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5307,2.9280,9.5278,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5308,5.5312,6.6924,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5309,3.2530,5.8108,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5310,3.2670,10.5672,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5311,2.9280,10.6773,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5312,5.5312,7.7660,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5313,3.2530,5.8371,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5314,3.2670,10.5672,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5315,2.9280,10.2033,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +5316,5.5312,7.1325,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5317,3.2530,6.1910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5318,3.2670,10.8877,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5319,2.9280,11.1653,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5320,5.5312,6.7196,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5321,3.2530,5.8575,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5322,3.2670,17.5940,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5323,2.9280,17.6102,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5324,5.5312,6.4905,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5325,3.2530,5.9223,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5326,3.2670,10.5968,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +5327,2.9280,10.5339,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5328,5.5312,6.3337,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5329,3.2530,6.0058,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5330,3.2670,8.4147,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +5331,2.9280,9.9625,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5332,5.5312,6.6414,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5333,3.2530,5.7657,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5334,3.2670,10.4978,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +5335,2.9280,10.3584,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5336,5.5312,6.2893,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5337,3.2530,5.8723,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5338,3.2670,10.0798,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5339,2.9280,10.2730,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5340,5.5312,6.1537,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5341,3.2530,5.7455,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5342,3.2670,9.9478,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5343,2.9280,9.8922,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5344,5.5312,6.2235,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5345,3.2530,5.7776,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5346,3.2670,9.8496,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5347,2.9280,10.0007,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5348,5.5312,6.3643,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5349,3.2530,5.7330,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5350,3.2670,9.9600,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5351,2.9280,9.9845,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5352,5.5312,6.1952,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5353,3.2530,5.7430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5354,3.2670,10.5245,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5355,2.9280,10.3292,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5356,5.5312,6.6216,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5357,3.2530,5.7095,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5358,3.2670,10.2045,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5359,2.9280,10.1509,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5360,5.5312,6.5243,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5361,3.2530,5.8378,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5362,3.2670,10.1810,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5363,2.9280,10.1032,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +5364,5.5312,6.7281,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5365,3.2530,5.7753,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5366,3.2670,10.1512,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5367,2.9280,10.1281,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +5368,5.5312,6.3362,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5369,3.2530,6.2391,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5370,3.2670,9.9803,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5371,2.9280,10.2109,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5372,5.5312,6.6025,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5373,3.2530,5.8010,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5374,3.2670,10.3067,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5375,2.9280,10.1830,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5376,5.5312,6.8275,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5377,3.2530,5.7545,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5378,3.2670,10.1628,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5379,2.9280,10.0575,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5380,5.5312,6.5088,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5381,3.2530,5.7939,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5382,3.2670,9.9430,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5383,2.9280,9.9633,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5384,5.5312,6.7806,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5385,3.2530,5.9515,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5386,3.2670,9.1350,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5387,2.9280,10.5564,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5388,5.5312,6.3978,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5389,3.2530,5.6161,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5390,3.2670,10.4913,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5391,2.9280,10.3809,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5392,5.5312,6.7900,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5393,3.2530,5.8097,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5394,3.2670,9.7917,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5395,2.9280,9.9224,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5396,5.5312,6.6132,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5397,3.2530,5.6894,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5398,3.2670,10.2108,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5399,2.9280,10.2162,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5400,5.5312,6.4970,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5401,3.2530,5.6976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5402,3.2670,9.9636,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5403,2.9280,10.1764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5404,5.5312,6.7953,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5405,3.2530,5.7160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5406,3.2670,10.1278,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5407,2.9280,10.0400,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5408,5.5312,6.5275,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5409,3.2530,5.7510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5410,3.2670,10.0740,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5411,2.9280,10.1154,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5412,5.5312,6.5574,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5413,3.2530,5.8148,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5414,3.2670,9.9888,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5415,2.9280,9.7888,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5416,5.5312,5.9965,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5417,3.2530,5.6539,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5418,3.2670,10.4815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5419,2.9280,10.3633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5420,5.5312,5.9588,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5421,3.2530,5.6323,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5422,3.2670,10.9100,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5423,2.9280,10.4913,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5424,5.5312,8.1615,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5425,3.2530,7.2698,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5426,3.2670,10.4807,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5427,2.9280,10.2054,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +5428,5.5312,6.5828,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5429,3.2530,5.6860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5430,3.2670,10.1310,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5431,2.9280,9.9488,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5432,5.5312,8.1705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5433,3.2530,6.9858,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5434,3.2670,10.2105,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5435,2.9280,9.9290,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5436,5.5312,6.4805,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5437,3.2530,5.6679,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5438,3.2670,10.1182,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5439,2.9280,10.0004,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5440,5.5312,7.1900,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5441,3.2530,6.1709,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5442,3.2670,9.8796,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5443,2.9280,10.2157,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5444,5.5312,6.5573,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5445,3.2530,5.7436,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5446,3.2670,9.5935,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5447,2.9280,10.2693,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5448,5.5312,6.1087,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5449,3.2530,5.7901,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5450,3.2670,10.5627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5451,2.9280,10.4988,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5452,5.5312,6.9059,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5453,3.2530,6.2186,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5454,3.2670,11.0310,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5455,2.9280,11.2978,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5456,5.5312,7.1688,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5457,3.2530,6.4770,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5458,3.2670,10.7648,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5459,2.9280,10.5830,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5460,5.5312,6.7335,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5461,3.2530,5.6906,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5462,3.2670,8.2618,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5463,2.9280,8.1389,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5464,5.5312,6.4787,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5465,3.2530,5.7857,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5466,3.2670,10.4247,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5467,2.9280,10.3458,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5468,5.5312,6.2197,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5469,3.2530,5.7666,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5470,3.2670,10.0892,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5471,2.9280,10.0543,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5472,5.5312,6.2640,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5473,3.2530,6.1415,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5474,3.2670,9.8597,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +5475,2.9280,9.8830,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5476,5.5312,6.5192,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5477,3.2530,5.7216,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5478,3.2670,10.4087,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5479,2.9280,10.3228,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5480,5.5312,6.8129,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5481,3.2530,6.0673,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5482,3.2670,10.3968,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5483,2.9280,10.0532,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +5484,5.5312,6.6834,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5485,3.2530,5.8508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5486,3.2670,10.1007,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5487,2.9280,10.1821,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5488,5.5312,6.6754,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5489,3.2530,5.8657,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5490,3.2670,10.2620,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5491,2.9280,9.9838,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5492,5.5312,6.6775,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5493,3.2530,5.8131,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5494,3.2670,9.9924,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5495,2.9280,9.9543,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5496,5.5312,6.8754,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5497,3.2530,6.9106,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5498,3.2670,10.6996,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5499,2.9280,10.5624,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5500,5.5312,6.5298,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5501,3.2530,5.7345,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5502,3.2670,10.3522,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5503,2.9280,10.2488,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5504,5.5312,6.6101,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5505,3.2530,5.8309,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5506,3.2670,10.6850,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5507,2.9280,10.6228,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5508,5.5312,6.4828,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5509,3.2530,5.9560,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5510,3.2670,9.5602,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5511,2.9280,9.6186,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +5512,5.5312,6.1885,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5513,3.2530,5.6860,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5514,3.2670,10.4859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5515,2.9280,10.3742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5516,5.5312,6.1681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5517,3.2530,5.6976,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5518,3.2670,10.5021,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5519,2.9280,10.2732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5520,5.5312,5.7833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5521,3.2530,5.5877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5522,3.2670,10.3639,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5523,2.9280,10.2755,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5524,5.5312,5.6572,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5525,3.2530,5.5068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5526,3.2670,10.3574,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5527,2.9280,10.2796,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5528,5.5312,5.6430,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5529,3.2530,5.5246,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5530,3.2670,10.3183,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5531,2.9280,10.2878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5532,5.5312,5.8184,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5533,3.2530,5.6025,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5534,3.2670,10.3439,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5535,2.9280,10.2207,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5536,5.5312,5.7108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5537,3.2530,5.5505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5538,3.2670,10.3847,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5539,2.9280,10.2821,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5540,5.5312,5.7078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5541,3.2530,5.5727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5542,3.2670,10.2714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5543,2.9280,10.1782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5544,5.5312,5.8363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5545,3.2530,5.6231,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5546,3.2670,10.3608,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5547,2.9280,10.3123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5548,5.5312,5.7176,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5549,3.2530,5.5897,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5550,3.2670,10.3277,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5551,2.9280,10.2470,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5552,5.5312,5.8224,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5553,3.2530,5.6155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5554,3.2670,10.4898,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5555,2.9280,10.4133,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5556,5.5312,6.1333,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5557,3.2530,5.6658,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5558,3.2670,10.3976,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5559,2.9280,10.2585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5560,5.5312,6.1996,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5561,3.2530,5.7963,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5562,3.2670,10.5062,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5563,2.9280,10.4164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5564,5.5312,5.8553,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5565,3.2530,5.6270,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5566,3.2670,10.3291,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5567,2.9280,10.2810,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5568,5.5312,5.7988,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5569,3.2530,5.6052,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5570,3.2670,10.4102,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5571,2.9280,10.3501,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5572,5.5312,5.6910,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5573,3.2530,5.6465,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5574,3.2670,10.5434,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5575,2.9280,10.5054,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5576,5.5312,5.7033,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5577,3.2530,5.6091,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5578,3.2670,10.4996,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5579,2.9280,10.3995,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5580,5.5312,5.6288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5581,3.2530,5.4501,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5582,3.2670,10.2528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5583,2.9280,10.2146,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5584,5.5312,5.7443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5585,3.2530,5.5680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5586,3.2670,10.3398,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5587,2.9280,10.3079,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5588,5.5312,5.8950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5589,3.2530,5.6383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5590,3.2670,10.5597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5591,2.9280,10.5259,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5592,5.5312,5.7714,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5593,3.2530,5.5902,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5594,3.2670,10.4833,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5595,2.9280,10.4601,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5596,5.5312,5.6555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5597,3.2530,5.6063,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5598,3.2670,10.4174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5599,2.9280,10.4034,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5600,5.5312,5.6476,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5601,3.2530,5.4808,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5602,3.2670,10.3786,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5603,2.9280,10.3369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5604,5.5312,5.6973,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5605,3.2530,5.4743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5606,3.2670,10.2831,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5607,2.9280,10.2419,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5608,5.5312,5.8161,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5609,3.2530,5.5430,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5610,3.2670,10.5205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5611,2.9280,10.5200,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5612,5.5312,5.8215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5613,3.2530,5.6658,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5614,3.2670,10.5344,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5615,2.9280,10.4588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5616,5.5312,5.6445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5617,3.2530,5.5379,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5618,3.2670,10.3624,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5619,2.9280,10.3193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5620,5.5312,5.7181,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5621,3.2530,5.5953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5622,3.2670,10.4277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5623,2.9280,10.3998,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5624,5.5312,5.6674,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5625,3.2530,5.4750,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5626,3.2670,10.3040,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5627,2.9280,10.2281,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5628,5.5312,5.7932,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5629,3.2530,5.5816,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5630,3.2670,10.3105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5631,2.9280,10.1638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5632,5.5312,5.9066,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5633,3.2530,5.5903,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5634,3.2670,10.5156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5635,2.9280,10.4293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5636,5.5312,5.7026,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5637,3.2530,5.5546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5638,3.2670,10.3874,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5639,2.9280,10.3489,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5640,5.5312,5.9123,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5641,3.2530,5.6480,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5642,3.2670,10.3891,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5643,2.9280,10.3602,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5644,5.5312,5.7683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5645,3.2530,5.5747,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5646,3.2670,10.4062,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5647,2.9280,10.3524,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5648,5.5312,5.8116,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5649,3.2530,5.5855,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5650,3.2670,10.2730,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5651,2.9280,10.1980,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5652,5.5312,5.8811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5653,3.2530,5.6003,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5654,3.2670,10.3232,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5655,2.9280,10.2490,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5656,5.5312,6.1958,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5657,3.2530,6.0118,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5658,3.2670,10.3523,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5659,2.9280,10.2384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5660,5.5312,6.5220,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5661,3.2530,5.7250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5662,3.2670,10.4605,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5663,2.9280,10.2531,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5664,5.5312,6.7118,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5665,3.2530,5.8195,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5666,3.2670,10.3160,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5667,2.9280,10.0802,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5668,5.5312,6.3408,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5669,3.2530,5.6627,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5670,3.2670,10.0407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5671,2.9280,10.1221,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5672,5.5312,6.7986,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5673,3.2530,5.8531,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5674,3.2670,10.5562,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5675,2.9280,10.3303,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5676,5.5312,6.3787,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5677,3.2530,5.9113,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5678,3.2670,9.2287,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5679,2.9280,10.1832,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5680,5.5312,6.4879,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5681,3.2530,5.7986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5682,3.2670,9.8471,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5683,2.9280,9.9400,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5684,5.5312,6.3722,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5685,3.2530,5.6852,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5686,3.2670,10.3620,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5687,2.9280,10.2100,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5688,5.5312,6.5289,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5689,3.2530,5.6168,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5690,3.2670,9.8333,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5691,2.9280,10.2070,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5692,5.5312,7.6835,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5693,3.2530,6.5572,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5694,3.2670,10.4163,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5695,2.9280,10.1945,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5696,5.5312,6.9406,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5697,3.2530,5.8888,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5698,3.2670,10.2993,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5699,2.9280,10.1999,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5700,5.5312,6.8667,0.0359,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5701,3.2530,5.9631,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5702,3.2670,10.3183,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5703,2.9280,10.2211,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5704,5.5312,6.9725,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5705,3.2530,5.8739,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5706,3.2670,9.9777,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5707,2.9280,9.7685,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5708,5.5312,6.4398,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5709,3.2530,5.6996,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5710,3.2670,9.9895,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5711,2.9280,10.1542,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5712,5.5312,6.9032,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5713,3.2530,5.9380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5714,3.2670,10.7019,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5715,2.9280,10.6693,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5716,5.5312,6.5103,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5717,3.2530,5.6827,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5718,3.2670,10.1214,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5719,2.9280,10.1918,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5720,5.5312,6.4487,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5721,3.2530,5.7235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5722,3.2670,10.1385,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5723,2.9280,10.1064,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5724,5.5312,6.5915,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5725,3.2530,5.7979,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5726,3.2670,9.7814,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5727,2.9280,9.9437,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5728,5.5312,6.4692,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5729,3.2530,5.7885,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5730,3.2670,9.9605,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5731,2.9280,9.9182,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5732,5.5312,6.4946,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5733,3.2530,5.7040,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5734,3.2670,10.6795,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5735,2.9280,10.4685,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5736,5.5312,6.5400,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5737,3.2530,5.8023,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5738,3.2670,10.1237,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5739,2.9280,10.1683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5740,5.5312,6.2880,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5741,3.2530,5.7093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5742,3.2670,9.9413,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5743,2.9280,10.3431,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5744,5.5312,6.8071,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5745,3.2530,5.6689,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5746,3.2670,10.4830,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5747,2.9280,10.4313,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5748,5.5312,7.0382,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5749,3.2530,6.0363,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5750,3.2670,10.4769,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5751,2.9280,10.2475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5752,5.5312,6.9700,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5753,3.2530,5.8675,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5754,3.2670,8.3236,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5755,2.9280,10.0978,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5756,5.5312,6.3865,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5757,3.2530,5.7522,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5758,3.2670,10.3872,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5759,2.9280,10.1080,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5760,5.5312,45.7189,0.0095,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +5761,3.2530,28.6195,0.0090,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +5762,3.2670,26.9200,0.0078,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +5763,2.9280,26.1738,0.0116,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +5764,5.5312,5.8495,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5765,3.2530,5.6703,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +5766,3.2670,10.4440,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +5767,2.9280,10.4161,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +5768,5.5312,5.7355,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +5769,3.2530,5.6674,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +5770,3.2670,10.5078,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +5771,2.9280,10.4839,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +5772,5.5312,5.6976,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +5773,3.2530,5.6245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +5774,3.2670,10.5590,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +5775,2.9280,10.5249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +5776,5.5312,5.7446,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +5777,3.2530,5.6493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +5778,3.2670,10.5942,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +5779,2.9280,10.5816,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +5780,5.5312,5.7207,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +5781,3.2530,5.5613,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +5782,3.2670,10.4685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +5783,2.9280,10.4410,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +5784,5.5312,5.7679,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +5785,3.2530,5.6625,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +5786,3.2670,10.3915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +5787,2.9280,10.3584,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +5788,5.5312,5.6713,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +5789,3.2530,5.5624,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +5790,3.2670,10.3802,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +5791,2.9280,10.3604,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +5792,5.5312,5.6765,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +5793,3.2530,5.5854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +5794,3.2670,10.5479,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +5795,2.9280,10.5359,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +5796,5.5312,5.6959,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +5797,3.2530,5.5838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +5798,3.2670,10.4175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +5799,2.9280,10.3896,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +5800,5.5312,5.7330,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +5801,3.2530,5.6187,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +5802,3.2670,10.4600,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +5803,2.9280,10.4050,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +5804,5.5312,5.7870,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +5805,3.2530,5.6033,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +5806,3.2670,10.5174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +5807,2.9280,10.4854,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +5808,5.5312,5.9055,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +5809,3.2530,5.6763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +5810,3.2670,10.4727,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5811,2.9280,10.3019,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +5812,5.5312,5.8301,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +5813,3.2530,5.6682,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +5814,3.2670,10.4946,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +5815,2.9280,10.4163,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +5816,5.5312,5.8003,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5817,3.2530,5.6870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5818,3.2670,10.4100,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +5819,2.9280,10.3478,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5820,5.5312,5.9065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +5821,3.2530,5.6989,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5822,3.2670,10.8749,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +5823,2.9280,10.6024,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +5824,5.5312,6.3517,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +5825,3.2530,5.8467,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5826,3.2670,11.1051,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +5827,2.9280,11.0748,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +5828,5.5312,6.5668,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +5829,3.2530,5.8561,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +5830,3.2670,10.1627,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +5831,2.9280,10.0010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +5832,5.5312,6.5865,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +5833,3.2530,5.8765,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +5834,3.2670,10.8692,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +5835,2.9280,10.5186,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +5836,5.5312,6.5691,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5837,3.2530,5.9884,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +5838,3.2670,10.5080,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +5839,2.9280,10.2947,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +5840,5.5312,6.3773,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +5841,3.2530,6.3929,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5842,3.2670,9.4861,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +5843,2.9280,10.1536,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5844,5.5312,6.6235,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5845,3.2530,5.9252,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +5846,3.2670,10.3607,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5847,2.9280,10.0947,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5848,5.5312,6.5204,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5849,3.2530,5.9714,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +5850,3.2670,10.3102,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5851,2.9280,9.9603,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +5852,5.5312,6.3142,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +5853,3.2530,5.8105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +5854,3.2670,10.3541,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5855,2.9280,10.2926,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5856,5.5312,6.4172,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +5857,3.2530,5.8851,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5858,3.2670,21.6321,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +5859,2.9280,21.1727,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +5860,5.5312,6.3510,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +5861,3.2530,6.0352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5862,3.2670,10.4822,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +5863,2.9280,10.4295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5864,5.5312,5.9482,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5865,3.2530,5.7229,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +5866,3.2670,10.7389,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5867,2.9280,10.4757,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +5868,5.5312,5.8329,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +5869,3.2530,5.6047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5870,3.2670,10.8123,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +5871,2.9280,10.8732,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5872,5.5312,6.2091,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +5873,3.2530,5.8117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +5874,3.2670,10.6357,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +5875,2.9280,10.5449,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5876,5.5312,6.8604,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +5877,3.2530,5.8459,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +5878,3.2670,10.2245,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +5879,2.9280,10.2748,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5880,5.5312,6.5610,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +5881,3.2530,5.8370,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5882,3.2670,10.4630,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +5883,2.9280,10.1590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5884,5.5312,6.8270,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +5885,3.2530,5.8456,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5886,3.2670,10.4675,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +5887,2.9280,10.3388,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +5888,5.5312,6.5264,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +5889,3.2530,5.8999,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5890,3.2670,10.4380,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5891,2.9280,10.3459,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5892,5.5312,6.4349,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +5893,3.2530,5.8347,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5894,3.2670,10.4355,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5895,2.9280,10.2535,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +5896,5.5312,6.6316,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +5897,3.2530,5.8699,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5898,3.2670,10.1378,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5899,2.9280,10.0503,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5900,5.5312,6.3515,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +5901,3.2530,5.8703,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5902,3.2670,10.4558,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +5903,2.9280,10.2221,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5904,5.5312,6.3281,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5905,3.2530,5.8274,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5906,3.2670,10.2161,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +5907,2.9280,10.1725,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5908,5.5312,6.3553,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5909,3.2530,5.7293,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5910,3.2670,10.0842,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +5911,2.9280,10.1145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +5912,5.5312,7.0056,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +5913,3.2530,5.9272,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5914,3.2670,10.1587,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +5915,2.9280,10.1723,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5916,5.5312,6.5682,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +5917,3.2530,5.8054,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5918,3.2670,10.2951,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +5919,2.9280,9.9981,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +5920,5.5312,6.5909,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5921,3.2530,5.7784,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5922,3.2670,10.6092,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +5923,2.9280,10.3740,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5924,5.5312,6.8694,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5925,3.2530,6.5565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5926,3.2670,10.8695,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +5927,2.9280,10.7154,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +5928,5.5312,6.6973,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5929,3.2530,5.8537,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5930,3.2670,11.8408,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +5931,2.9280,11.3743,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5932,5.5312,7.1259,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5933,3.2530,6.4067,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5934,3.2670,12.2391,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5935,2.9280,13.1468,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5936,5.5312,6.7720,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5937,3.2530,5.8593,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5938,3.2670,10.4745,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5939,2.9280,10.4272,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5940,5.5312,6.6813,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5941,3.2530,5.9024,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5942,3.2670,10.1087,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5943,2.9280,10.2464,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +5944,5.5312,6.5339,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5945,3.2530,5.6679,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5946,3.2670,10.1683,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5947,2.9280,9.8335,0.0380,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5948,5.5312,6.6097,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5949,3.2530,5.8796,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5950,3.2670,9.9738,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +5951,2.9280,10.0155,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5952,5.5312,7.2937,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5953,3.2530,6.0512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5954,3.2670,10.4635,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5955,2.9280,10.3304,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5956,5.5312,6.5861,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5957,3.2530,5.7318,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5958,3.2670,10.3641,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +5959,2.9280,10.1693,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5960,5.5312,6.9704,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5961,3.2530,5.8760,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5962,3.2670,11.7885,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +5963,2.9280,11.9454,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5964,5.5312,6.1155,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5965,3.2530,5.7770,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5966,3.2670,10.5536,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5967,2.9280,10.1620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5968,5.5312,6.0695,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5969,3.2530,5.6443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5970,3.2670,10.7205,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5971,2.9280,10.5240,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5972,5.5312,6.2179,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5973,3.2530,5.8068,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5974,3.2670,10.6815,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +5975,2.9280,10.6568,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5976,5.5312,5.8759,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5977,3.2530,5.6371,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5978,3.2670,10.5457,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5979,2.9280,10.4918,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5980,5.5312,5.7204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5981,3.2530,5.5665,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5982,3.2670,10.4043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5983,2.9280,10.3512,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5984,5.5312,5.9766,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5985,3.2530,5.7889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5986,3.2670,10.7875,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5987,2.9280,10.6624,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5988,5.5312,5.7895,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5989,3.2530,5.4965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5990,3.2670,10.3310,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +5991,2.9280,10.2770,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5992,5.5312,5.8674,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5993,3.2530,5.5652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5994,3.2670,10.4345,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5995,2.9280,10.4020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5996,5.5312,5.7510,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5997,3.2530,5.5422,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +5998,3.2670,11.4448,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5999,2.9280,11.4496,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +6000,5.5312,5.8338,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6001,3.2530,5.6100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6002,3.2670,10.4562,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6003,2.9280,10.3689,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6004,5.5312,6.2405,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6005,3.2530,5.8618,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6006,3.2670,10.5070,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6007,2.9280,10.4198,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6008,5.5312,5.9852,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6009,3.2530,5.6252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6010,3.2670,10.5733,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6011,2.9280,10.4595,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6012,5.5312,5.8971,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6013,3.2530,5.6566,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6014,3.2670,10.6564,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6015,2.9280,10.6265,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6016,5.5312,5.6860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6017,3.2530,5.5995,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6018,3.2670,10.4725,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6019,2.9280,10.4853,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6020,5.5312,5.7215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6021,3.2530,5.6302,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6022,3.2670,10.5794,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6023,2.9280,10.6045,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6024,5.5312,5.6525,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6025,3.2530,5.5700,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6026,3.2670,10.4746,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6027,2.9280,10.4942,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6028,5.5312,5.7243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6029,3.2530,5.5405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6030,3.2670,10.3955,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6031,2.9280,10.4297,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6032,5.5312,5.6988,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6033,3.2530,5.5495,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6034,3.2670,10.3996,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6035,2.9280,10.3999,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6036,5.5312,5.6468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6037,3.2530,5.4999,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6038,3.2670,10.3603,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6039,2.9280,10.2580,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6040,5.5312,5.6298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6041,3.2530,5.5012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6042,3.2670,10.3177,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6043,2.9280,10.3056,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6044,5.5312,5.7496,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6045,3.2530,5.5620,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6046,3.2670,10.3754,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +6047,2.9280,10.3535,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6048,5.5312,5.7827,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6049,3.2530,5.6346,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6050,3.2670,10.5214,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +6051,2.9280,10.5183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6052,5.5312,5.9714,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6053,3.2530,5.7574,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6054,3.2670,10.4844,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6055,2.9280,10.3783,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6056,5.5312,5.8333,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6057,3.2530,5.5798,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6058,3.2670,10.4190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6059,2.9280,10.3607,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6060,5.5312,5.7770,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6061,3.2530,5.6539,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6062,3.2670,10.4535,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6063,2.9280,10.4223,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6064,5.5312,5.6262,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6065,3.2530,5.5301,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6066,3.2670,10.4833,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6067,2.9280,10.4862,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6068,5.5312,5.7571,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6069,3.2530,5.6203,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6070,3.2670,10.4374,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6071,2.9280,10.4214,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6072,5.5312,5.7191,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6073,3.2530,5.5088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6074,3.2670,10.3833,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6075,2.9280,10.2487,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6076,5.5312,5.9094,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6077,3.2530,5.6222,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6078,3.2670,10.3529,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6079,2.9280,10.3097,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6080,5.5312,6.0362,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6081,3.2530,5.6261,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6082,3.2670,10.4527,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6083,2.9280,10.4123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6084,5.5312,5.6920,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6085,3.2530,5.5763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6086,3.2670,10.4196,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6087,2.9280,10.3934,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6088,5.5312,5.7442,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6089,3.2530,5.5747,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6090,3.2670,10.4373,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6091,2.9280,10.3725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6092,5.5312,5.8532,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6093,3.2530,5.6417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6094,3.2670,10.5177,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6095,2.9280,10.5116,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6096,5.5312,5.7107,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6097,3.2530,5.6003,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6098,3.2670,10.4538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6099,2.9280,10.4486,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6100,5.5312,5.6865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6101,3.2530,5.6108,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6102,3.2670,10.4450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6103,2.9280,10.3886,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6104,5.5312,5.6457,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6105,3.2530,5.5174,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6106,3.2670,10.4480,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6107,2.9280,10.4601,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6108,5.5312,5.7185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6109,3.2530,5.5433,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6110,3.2670,10.3005,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6111,2.9280,10.2261,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6112,5.5312,5.8415,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6113,3.2530,5.5831,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6114,3.2670,10.5062,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6115,2.9280,10.4985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6116,5.5312,5.9597,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6117,3.2530,5.6628,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6118,3.2670,10.5075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6119,2.9280,10.4610,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6120,5.5312,5.7234,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6121,3.2530,5.6218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6122,3.2670,10.4982,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6123,2.9280,10.4463,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6124,5.5312,5.8177,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6125,3.2530,5.5805,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6126,3.2670,10.7279,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6127,2.9280,10.6457,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6128,5.5312,5.8852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6129,3.2530,5.6723,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6130,3.2670,10.5457,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6131,2.9280,10.5128,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6132,5.5312,5.7432,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6133,3.2530,5.6176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6134,3.2670,10.5272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6135,2.9280,10.5200,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6136,5.5312,5.7054,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6137,3.2530,5.5915,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6138,3.2670,10.4365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6139,2.9280,10.4069,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6140,5.5312,5.7670,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6141,3.2530,5.5637,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6142,3.2670,10.3908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6143,2.9280,10.3373,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6144,5.5312,5.9060,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6145,3.2530,5.7127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6146,3.2670,10.5561,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6147,2.9280,10.5173,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +6148,5.5312,5.7848,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6149,3.2530,5.5941,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6150,3.2670,10.4314,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6151,2.9280,10.4255,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6152,5.5312,5.7073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6153,3.2530,5.6537,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6154,3.2670,10.3901,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6155,2.9280,10.4697,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6156,5.5312,5.6425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6157,3.2530,5.5680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6158,3.2670,10.4394,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6159,2.9280,10.4101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6160,5.5312,5.6666,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6161,3.2530,5.5874,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6162,3.2670,10.3709,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6163,2.9280,10.3617,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6164,5.5312,5.6733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6165,3.2530,5.5320,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6166,3.2670,10.4162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6167,2.9280,10.3996,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6168,5.5312,5.6897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6169,3.2530,5.5153,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6170,3.2670,10.3353,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6171,2.9280,10.3033,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6172,5.5312,5.6587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6173,3.2530,5.4895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6174,3.2670,10.4279,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6175,2.9280,10.3217,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6176,5.5312,6.1288,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6177,3.2530,5.7281,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6178,3.2670,10.6265,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6179,2.9280,10.4877,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6180,5.5312,6.2094,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6181,3.2530,5.7565,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6182,3.2670,10.7040,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6183,2.9280,10.5625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6184,5.5312,5.8309,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6185,3.2530,5.5969,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6186,3.2670,10.4812,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6187,2.9280,10.4059,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6188,5.5312,5.8375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6189,3.2530,5.6278,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6190,3.2670,10.6040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6191,2.9280,10.5562,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6192,5.5312,5.7215,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6193,3.2530,5.6281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6194,3.2670,10.5226,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +6195,2.9280,10.4409,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6196,5.5312,5.7386,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6197,3.2530,5.6678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6198,3.2670,10.3409,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6199,2.9280,10.3691,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6200,5.5312,5.7452,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6201,3.2530,5.6186,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6202,3.2670,10.3295,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6203,2.9280,10.2985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +6204,5.5312,5.7298,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6205,3.2530,5.5586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6206,3.2670,10.3125,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6207,2.9280,10.2525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6208,5.5312,5.7599,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6209,3.2530,5.6021,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6210,3.2670,10.4793,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6211,2.9280,10.3008,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6212,5.5312,6.0368,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6213,3.2530,5.6664,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6214,3.2670,10.3846,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6215,2.9280,10.1882,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6216,5.5312,6.1344,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6217,3.2530,5.6762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6218,3.2670,10.1859,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6219,2.9280,10.1166,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6220,5.5312,6.5483,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6221,3.2530,5.8131,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6222,3.2670,9.4577,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6223,2.9280,10.0877,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6224,5.5312,5.9360,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6225,3.2530,5.6554,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6226,3.2670,10.7501,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6227,2.9280,10.5752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6228,5.5312,6.2927,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6229,3.2530,5.8200,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6230,3.2670,10.7506,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6231,2.9280,10.6545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +6232,5.5312,6.2039,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6233,3.2530,5.7585,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6234,3.2670,10.5548,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6235,2.9280,10.3989,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6236,5.5312,6.0138,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6237,3.2530,5.6927,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6238,3.2670,10.2802,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6239,2.9280,10.1323,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6240,5.5312,5.8700,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6241,3.2530,5.6089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6242,3.2670,10.4295,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6243,2.9280,10.3311,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6244,5.5312,5.9385,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6245,3.2530,5.6416,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6246,3.2670,10.7026,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6247,2.9280,10.5731,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6248,5.5312,6.3603,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6249,3.2530,5.9200,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6250,3.2670,10.2722,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6251,2.9280,10.2529,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6252,5.5312,6.3888,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6253,3.2530,5.9357,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6254,3.2670,10.2077,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6255,2.9280,10.1245,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6256,5.5312,6.1716,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6257,3.2530,5.7674,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6258,3.2670,10.1359,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6259,2.9280,9.9248,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6260,5.5312,6.2905,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6261,3.2530,5.8416,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6262,3.2670,11.2400,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6263,2.9280,10.8931,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6264,5.5312,6.2521,0.0329,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6265,3.2530,5.6935,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6266,3.2670,10.4411,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6267,2.9280,10.3404,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6268,5.5312,6.1889,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6269,3.2530,5.8760,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6270,3.2670,9.9479,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6271,2.9280,10.1965,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6272,5.5312,6.5313,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6273,3.2530,5.9186,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6274,3.2670,9.9599,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6275,2.9280,9.9956,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6276,5.5312,6.3340,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6277,3.2530,5.8393,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6278,3.2670,9.9670,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6279,2.9280,10.1680,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6280,5.5312,6.4248,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6281,3.2530,5.6405,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6282,3.2670,10.5174,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6283,2.9280,10.8910,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6284,5.5312,6.6358,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6285,3.2530,5.6602,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6286,3.2670,10.0032,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6287,2.9280,9.7592,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6288,5.5312,6.5092,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6289,3.2530,5.8220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6290,3.2670,9.8182,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6291,2.9280,9.8770,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6292,5.5312,6.8280,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6293,3.2530,5.8585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6294,3.2670,9.9830,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6295,2.9280,9.9393,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6296,5.5312,6.7418,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6297,3.2530,5.8439,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6298,3.2670,10.1108,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6299,2.9280,10.2415,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6300,5.5312,6.5522,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6301,3.2530,5.6330,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6302,3.2670,10.0707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6303,2.9280,10.0040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6304,5.5312,6.4827,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6305,3.2530,5.7763,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6306,3.2670,9.8734,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6307,2.9280,9.8979,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6308,5.5312,6.4105,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6309,3.2530,5.7427,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6310,3.2670,9.9839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6311,2.9280,9.8357,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6312,5.5312,6.2140,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6313,3.2530,5.6819,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6314,3.2670,10.3215,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6315,2.9280,10.1987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6316,5.5312,6.2531,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6317,3.2530,5.7701,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6318,3.2670,10.5219,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6319,2.9280,10.3836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6320,5.5312,5.9540,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6321,3.2530,5.6370,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6322,3.2670,10.5527,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6323,2.9280,10.5057,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6324,5.5312,5.8015,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6325,3.2530,5.6488,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6326,3.2670,10.4721,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6327,2.9280,10.4715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6328,5.5312,5.6941,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6329,3.2530,5.5483,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6330,3.2670,10.4121,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6331,2.9280,10.4133,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6332,5.5312,5.8396,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6333,3.2530,5.5888,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6334,3.2670,10.5224,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6335,2.9280,10.5155,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6336,5.5312,5.8525,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6337,3.2530,5.5791,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6338,3.2670,10.4062,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6339,2.9280,10.3616,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6340,5.5312,5.7741,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6341,3.2530,5.6363,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6342,3.2670,10.3999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6343,2.9280,10.4554,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6344,5.5312,5.7287,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6345,3.2530,5.6197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6346,3.2670,10.4605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6347,2.9280,10.3884,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6348,5.5312,5.7800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6349,3.2530,5.6201,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6350,3.2670,10.4107,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6351,2.9280,10.3692,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6352,5.5312,5.6388,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6353,3.2530,5.5303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6354,3.2670,10.3709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6355,2.9280,10.3053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6356,5.5312,5.6516,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6357,3.2530,5.4627,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6358,3.2670,10.2199,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6359,2.9280,10.1657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6360,5.5312,5.7324,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6361,3.2530,5.4873,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6362,3.2670,10.3745,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6363,2.9280,10.3369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6364,5.5312,5.8679,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6365,3.2530,5.6423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6366,3.2670,10.5075,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6367,2.9280,10.4850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6368,5.5312,5.7957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6369,3.2530,5.6069,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6370,3.2670,10.5899,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6371,2.9280,10.4946,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6372,5.5312,5.7819,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6373,3.2530,5.6543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6374,3.2670,10.4808,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6375,2.9280,10.4499,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6376,5.5312,5.8453,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6377,3.2530,5.6145,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6378,3.2670,10.4339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6379,2.9280,10.3924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6380,5.5312,5.7988,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6381,3.2530,5.6828,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6382,3.2670,10.4380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6383,2.9280,10.3648,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6384,5.5312,5.7262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6385,3.2530,5.5991,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6386,3.2670,10.3866,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6387,2.9280,10.3658,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6388,5.5312,5.8414,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6389,3.2530,5.5742,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6390,3.2670,10.5095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6391,2.9280,10.4556,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6392,5.5312,5.8029,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6393,3.2530,5.6482,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6394,3.2670,10.4727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6395,2.9280,10.4224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6396,5.5312,5.7377,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6397,3.2530,5.6494,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6398,3.2670,10.3265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6399,2.9280,10.2810,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6400,5.5312,5.9765,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6401,3.2530,5.6488,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6402,3.2670,10.4831,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6403,2.9280,10.3811,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6404,5.5312,5.8875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6405,3.2530,5.6193,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6406,3.2670,10.3085,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6407,2.9280,10.2720,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6408,5.5312,5.6796,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6409,3.2530,5.5148,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6410,3.2670,10.4120,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6411,2.9280,10.3894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6412,5.5312,5.7480,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6413,3.2530,5.5271,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6414,3.2670,10.4185,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6415,2.9280,10.3119,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6416,5.5312,5.9268,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6417,3.2530,5.5760,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6418,3.2670,10.4771,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6419,2.9280,10.3376,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6420,5.5312,6.2257,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6421,3.2530,5.7512,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6422,3.2670,10.5350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6423,2.9280,10.4876,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6424,5.5312,5.9925,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6425,3.2530,5.5977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6426,3.2670,10.4000,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6427,2.9280,10.2918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6428,5.5312,5.9279,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6429,3.2530,5.6197,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6430,3.2670,10.5161,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6431,2.9280,10.5347,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6432,5.5312,5.9149,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6433,3.2530,5.6445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6434,3.2670,10.5260,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6435,2.9280,10.4945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6436,5.5312,5.7878,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6437,3.2530,5.6742,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6438,3.2670,10.3730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6439,2.9280,10.3236,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6440,5.5312,5.7766,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6441,3.2530,5.6311,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6442,3.2670,10.3451,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6443,2.9280,10.2513,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6444,5.5312,5.9776,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6445,3.2530,5.6392,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6446,3.2670,10.4672,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6447,2.9280,10.4033,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6448,5.5312,5.6839,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6449,3.2530,5.5607,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6450,3.2670,10.3365,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6451,2.9280,10.3212,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6452,5.5312,5.5873,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6453,3.2530,5.4426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6454,3.2670,10.2409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6455,2.9280,10.1882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6456,5.5312,5.7499,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6457,3.2530,5.5388,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6458,3.2670,10.4994,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6459,2.9280,10.4042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6460,5.5312,5.7226,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6461,3.2530,5.5373,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6462,3.2670,10.3115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6463,2.9280,10.2630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6464,5.5312,5.7180,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6465,3.2530,5.4862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6466,3.2670,10.5160,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6467,2.9280,10.3827,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6468,5.5312,5.8434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6469,3.2530,5.5645,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6470,3.2670,10.4783,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6471,2.9280,10.4482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6472,5.5312,5.6989,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6473,3.2530,5.5490,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6474,3.2670,10.3235,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6475,2.9280,10.2940,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6476,5.5312,5.7316,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6477,3.2530,5.5672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6478,3.2670,10.5068,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6479,2.9280,10.2872,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6480,5.5312,46.8370,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +6481,3.2530,29.8282,0.0073,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +6482,3.2670,25.2689,0.0040,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +6483,2.9280,25.8238,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +6484,5.5312,5.7154,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +6485,3.2530,5.5148,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6486,3.2670,10.4543,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +6487,2.9280,10.4554,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +6488,5.5312,5.6506,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +6489,3.2530,5.5182,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +6490,3.2670,10.4551,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +6491,2.9280,10.4386,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +6492,5.5312,5.6814,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +6493,3.2530,5.6162,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +6494,3.2670,10.5670,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +6495,2.9280,10.6007,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +6496,5.5312,5.7037,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +6497,3.2530,5.5965,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +6498,3.2670,10.5579,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +6499,2.9280,10.5735,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +6500,5.5312,5.7102,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +6501,3.2530,5.5875,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +6502,3.2670,10.4593,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +6503,2.9280,10.4036,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +6504,5.5312,5.7157,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +6505,3.2530,5.5470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +6506,3.2670,10.5430,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +6507,2.9280,10.4597,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +6508,5.5312,5.7761,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +6509,3.2530,5.5110,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +6510,3.2670,10.4308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +6511,2.9280,10.4151,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +6512,5.5312,5.7535,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +6513,3.2530,5.6201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +6514,3.2670,10.5392,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +6515,2.9280,10.5198,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +6516,5.5312,5.6258,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +6517,3.2530,5.5416,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +6518,3.2670,10.4839,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +6519,2.9280,10.4832,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +6520,5.5312,5.7657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +6521,3.2530,5.6371,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +6522,3.2670,10.5374,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +6523,2.9280,10.5646,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +6524,5.5312,5.6255,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +6525,3.2530,5.5491,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +6526,3.2670,10.4360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +6527,2.9280,10.4115,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +6528,5.5312,5.4786,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +6529,3.2530,5.4163,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +6530,3.2670,10.2223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6531,2.9280,10.2010,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +6532,5.5312,5.6736,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +6533,3.2530,5.5418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +6534,3.2670,10.3585,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +6535,2.9280,10.3604,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +6536,5.5312,5.6040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6537,3.2530,5.4622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6538,3.2670,10.1836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +6539,2.9280,10.1553,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6540,5.5312,5.6950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +6541,3.2530,5.5429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6542,3.2670,10.3672,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +6543,2.9280,10.3678,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +6544,5.5312,5.6747,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +6545,3.2530,5.4989,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6546,3.2670,10.3607,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +6547,2.9280,10.2505,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +6548,5.5312,5.7537,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +6549,3.2530,5.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +6550,3.2670,10.4018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +6551,2.9280,10.2813,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +6552,5.5312,5.7262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +6553,3.2530,5.5513,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +6554,3.2670,10.4392,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +6555,2.9280,10.4158,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +6556,5.5312,5.7497,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6557,3.2530,5.5894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +6558,3.2670,10.4913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +6559,2.9280,10.4868,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +6560,5.5312,5.7194,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +6561,3.2530,5.5992,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6562,3.2670,10.4961,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6563,2.9280,10.4850,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6564,5.5312,5.6801,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6565,3.2530,5.5744,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +6566,3.2670,10.4455,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6567,2.9280,10.4420,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6568,5.5312,5.7313,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6569,3.2530,5.6067,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +6570,3.2670,10.4095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6571,2.9280,10.3925,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +6572,5.5312,5.7192,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +6573,3.2530,5.5508,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +6574,3.2670,10.4364,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6575,2.9280,10.4235,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6576,5.5312,5.6565,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +6577,3.2530,5.4726,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6578,3.2670,10.3932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +6579,2.9280,10.3435,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +6580,5.5312,5.7121,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +6581,3.2530,5.5457,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6582,3.2670,10.3555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +6583,2.9280,10.3604,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6584,5.5312,5.7984,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6585,3.2530,5.5777,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +6586,3.2670,10.5003,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6587,2.9280,10.4468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +6588,5.5312,5.7936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +6589,3.2530,5.5888,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6590,3.2670,10.5643,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +6591,2.9280,10.5643,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6592,5.5312,5.8454,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +6593,3.2530,5.6867,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +6594,3.2670,10.7272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +6595,2.9280,10.7421,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6596,5.5312,5.6697,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +6597,3.2530,5.6014,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +6598,3.2670,10.4671,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +6599,2.9280,10.4619,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6600,5.5312,5.6980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +6601,3.2530,5.5548,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6602,3.2670,10.4555,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +6603,2.9280,10.4757,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +6604,5.5312,5.6989,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6605,3.2530,5.5360,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6606,3.2670,10.4520,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +6607,2.9280,10.4111,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +6608,5.5312,5.6980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +6609,3.2530,5.6085,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6610,3.2670,10.4123,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6611,2.9280,10.4071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6612,5.5312,5.8691,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +6613,3.2530,5.6469,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6614,3.2670,10.5411,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6615,2.9280,10.5118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +6616,5.5312,5.7861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +6617,3.2530,5.5912,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6618,3.2670,10.4626,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6619,2.9280,10.3450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6620,5.5312,5.8899,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +6621,3.2530,5.6366,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6622,3.2670,10.4967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +6623,2.9280,10.4739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6624,5.5312,5.7396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6625,3.2530,5.6108,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6626,3.2670,10.2841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +6627,2.9280,10.2148,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6628,5.5312,6.1945,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6629,3.2530,5.8164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6630,3.2670,10.2754,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +6631,2.9280,10.1965,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +6632,5.5312,5.9950,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +6633,3.2530,5.6644,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6634,3.2670,10.4620,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +6635,2.9280,10.3934,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6636,5.5312,6.3210,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +6637,3.2530,5.9635,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6638,3.2670,10.7902,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +6639,2.9280,10.7759,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +6640,5.5312,6.9246,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6641,3.2530,5.8953,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6642,3.2670,10.5247,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +6643,2.9280,10.2950,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6644,5.5312,6.4547,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6645,3.2530,5.9427,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6646,3.2670,10.6632,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +6647,2.9280,10.2481,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +6648,5.5312,6.5223,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6649,3.2530,5.7080,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6650,3.2670,10.3820,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +6651,2.9280,10.2910,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6652,5.5312,7.2965,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6653,3.2530,6.0304,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6654,3.2670,13.7608,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6655,2.9280,15.0600,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6656,5.5312,6.5215,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6657,3.2530,5.8251,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6658,3.2670,10.7560,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6659,2.9280,10.2821,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6660,5.5312,7.6325,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6661,3.2530,6.6956,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6662,3.2670,10.6455,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6663,2.9280,10.4517,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +6664,5.5312,6.0865,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6665,3.2530,5.7180,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6666,3.2670,10.3953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6667,2.9280,10.3541,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6668,5.5312,6.3478,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6669,3.2530,5.7974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6670,3.2670,10.4616,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +6671,2.9280,10.3804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6672,5.5312,5.8438,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6673,3.2530,5.6060,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6674,3.2670,10.4056,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6675,2.9280,10.3434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6676,5.5312,5.8413,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6677,3.2530,5.6483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6678,3.2670,10.4129,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +6679,2.9280,10.3815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6680,5.5312,5.7796,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6681,3.2530,5.6118,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6682,3.2670,10.5466,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6683,2.9280,10.5152,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6684,5.5312,5.9417,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6685,3.2530,5.6991,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6686,3.2670,10.4733,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6687,2.9280,10.3695,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6688,5.5312,5.8593,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6689,3.2530,5.5454,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6690,3.2670,10.3395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6691,2.9280,10.3161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +6692,5.5312,5.7448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6693,3.2530,5.5550,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6694,3.2670,10.3384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +6695,2.9280,10.3016,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6696,5.5312,5.6677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6697,3.2530,5.4914,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6698,3.2670,10.3258,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6699,2.9280,10.2620,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6700,5.5312,5.6878,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6701,3.2530,5.5460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6702,3.2670,10.2467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6703,2.9280,10.2037,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6704,5.5312,5.7860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6705,3.2530,5.5353,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6706,3.2670,10.2175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6707,2.9280,10.1784,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6708,5.5312,5.8535,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6709,3.2530,5.5572,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6710,3.2670,10.2172,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6711,2.9280,10.1318,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6712,5.5312,5.6908,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6713,3.2530,5.4913,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6714,3.2670,10.3059,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6715,2.9280,10.1865,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6716,5.5312,5.8109,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6717,3.2530,5.5503,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6718,3.2670,10.3591,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6719,2.9280,10.3065,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +6720,5.5312,5.8348,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6721,3.2530,5.6181,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6722,3.2670,10.5585,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6723,2.9280,10.5909,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6724,5.5312,5.8954,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6725,3.2530,5.7154,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6726,3.2670,10.3495,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6727,2.9280,10.3455,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6728,5.5312,6.0736,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6729,3.2530,5.8214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6730,3.2670,10.5998,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6731,2.9280,10.4044,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6732,5.5312,6.0220,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6733,3.2530,5.6859,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6734,3.2670,10.2570,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6735,2.9280,10.1605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6736,5.5312,6.1132,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6737,3.2530,5.6825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6738,3.2670,10.3556,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6739,2.9280,10.1059,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6740,5.5312,6.0076,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6741,3.2530,5.6536,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6742,3.2670,10.3682,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6743,2.9280,10.2664,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6744,5.5312,6.0248,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6745,3.2530,5.6745,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6746,3.2670,9.9956,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6747,2.9280,10.1581,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6748,5.5312,5.9589,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6749,3.2530,5.6411,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6750,3.2670,10.2932,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6751,2.9280,10.2132,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6752,5.5312,6.3512,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6753,3.2530,5.7338,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6754,3.2670,10.3531,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6755,2.9280,10.1605,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6756,5.5312,6.4668,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6757,3.2530,5.7175,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6758,3.2670,10.3630,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6759,2.9280,10.2212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6760,5.5312,6.5242,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6761,3.2530,5.7600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6762,3.2670,10.6847,0.0623,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6763,2.9280,10.3534,0.1778,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6764,5.5312,6.9177,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6765,3.2530,5.7980,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6766,3.2670,10.3483,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +6767,2.9280,10.1448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6768,5.5312,6.2712,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6769,3.2530,5.6149,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6770,3.2670,10.0296,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +6771,2.9280,9.9515,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6772,5.5312,6.5954,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6773,3.2530,5.8120,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6774,3.2670,10.4728,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6775,2.9280,10.2383,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6776,5.5312,6.0770,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6777,3.2530,5.7839,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6778,3.2670,10.4070,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6779,2.9280,10.2596,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6780,5.5312,6.5166,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6781,3.2530,5.6537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6782,3.2670,10.3997,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6783,2.9280,9.8779,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +6784,5.5312,6.2449,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6785,3.2530,5.6276,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6786,3.2670,10.2936,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6787,2.9280,10.1187,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6788,5.5312,6.2683,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6789,3.2530,5.6352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6790,3.2670,10.1294,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6791,2.9280,9.9406,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6792,5.5312,6.5985,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6793,3.2530,5.6690,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6794,3.2670,10.1327,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6795,2.9280,10.0369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6796,5.5312,6.3255,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6797,3.2530,5.6813,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6798,3.2670,10.1048,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6799,2.9280,10.0425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6800,5.5312,6.1979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6801,3.2530,5.7063,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6802,3.2670,10.2151,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6803,2.9280,10.0198,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6804,5.5312,6.2676,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6805,3.2530,5.6939,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6806,3.2670,9.4512,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6807,2.9280,9.1682,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +6808,5.5312,6.2164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6809,3.2530,5.7059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6810,3.2670,10.2800,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6811,2.9280,10.0874,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6812,5.5312,6.1328,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6813,3.2530,5.8084,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6814,3.2670,10.6562,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6815,2.9280,10.5775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6816,5.5312,6.0458,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6817,3.2530,5.6893,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6818,3.2670,10.4168,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6819,2.9280,10.2845,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6820,5.5312,6.3285,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6821,3.2530,6.0451,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6822,3.2670,10.6647,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6823,2.9280,10.6388,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6824,5.5312,6.5103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6825,3.2530,5.6439,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6826,3.2670,10.2285,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6827,2.9280,9.9109,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6828,5.5312,6.3053,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6829,3.2530,5.6626,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6830,3.2670,9.8867,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6831,2.9280,10.0400,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6832,5.5312,6.3073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6833,3.2530,6.4301,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6834,3.2670,9.3104,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6835,2.9280,9.7265,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6836,5.5312,6.2903,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6837,3.2530,5.8895,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6838,3.2670,10.4491,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6839,2.9280,10.3622,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6840,5.5312,6.3744,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6841,3.2530,5.8391,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6842,3.2670,9.9200,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6843,2.9280,10.0535,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6844,5.5312,6.2823,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6845,3.2530,6.0111,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6846,3.2670,10.9428,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6847,2.9280,10.7747,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6848,5.5312,6.3085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6849,3.2530,5.6510,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6850,3.2670,10.3095,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6851,2.9280,10.2758,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6852,5.5312,6.4558,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6853,3.2530,5.6195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6854,3.2670,10.6320,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6855,2.9280,10.5810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6856,5.5312,6.3075,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6857,3.2530,5.7735,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6858,3.2670,10.0529,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6859,2.9280,10.0449,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6860,5.5312,6.5927,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6861,3.2530,5.6503,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6862,3.2670,10.8071,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6863,2.9280,10.7466,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6864,5.5312,6.0845,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6865,3.2530,5.7123,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6866,3.2670,10.3672,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6867,2.9280,10.2227,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +6868,5.5312,5.9284,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6869,3.2530,5.5680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6870,3.2670,10.4305,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6871,2.9280,10.3285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6872,5.5312,6.2616,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6873,3.2530,5.7268,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6874,3.2670,10.5572,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6875,2.9280,10.4987,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6876,5.5312,5.8146,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6877,3.2530,5.5764,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6878,3.2670,10.3145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6879,2.9280,10.2330,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6880,5.5312,5.8139,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6881,3.2530,5.5870,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6882,3.2670,10.4570,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6883,2.9280,10.4262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6884,5.5312,5.6865,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6885,3.2530,5.5092,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6886,3.2670,10.3018,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6887,2.9280,10.2432,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6888,5.5312,5.7065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6889,3.2530,5.5568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6890,3.2670,10.2452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6891,2.9280,10.1969,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6892,5.5312,5.8900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6893,3.2530,5.6805,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6894,3.2670,10.5860,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6895,2.9280,10.4354,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6896,5.5312,6.3691,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6897,3.2530,5.7763,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6898,3.2670,10.5782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6899,2.9280,10.5119,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6900,5.5312,6.3039,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6901,3.2530,5.8226,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6902,3.2670,10.6717,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6903,2.9280,10.5225,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6904,5.5312,6.0591,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6905,3.2530,5.7163,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6906,3.2670,10.6272,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6907,2.9280,10.5724,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6908,5.5312,5.7589,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6909,3.2530,5.5611,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6910,3.2670,10.3210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6911,2.9280,10.2927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6912,5.5312,5.7361,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6913,3.2530,5.5855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6914,3.2670,10.3183,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +6915,2.9280,10.2572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6916,5.5312,5.7799,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6917,3.2530,5.5390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6918,3.2670,10.2227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6919,2.9280,10.1505,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6920,5.5312,5.9194,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6921,3.2530,5.6445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6922,3.2670,10.4993,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6923,2.9280,10.4529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +6924,5.5312,5.6627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6925,3.2530,5.4932,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6926,3.2670,10.2913,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6927,2.9280,10.2308,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6928,5.5312,5.6615,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6929,3.2530,5.5415,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6930,3.2670,10.3445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6931,2.9280,10.3217,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6932,5.5312,5.7336,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6933,3.2530,5.5714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6934,3.2670,10.3962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6935,2.9280,10.3622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6936,5.5312,5.7394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6937,3.2530,5.5435,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6938,3.2670,10.3405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6939,2.9280,10.3100,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6940,5.5312,5.7490,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6941,3.2530,5.5727,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6942,3.2670,10.3237,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6943,2.9280,10.2778,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6944,5.5312,5.6697,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6945,3.2530,5.5271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6946,3.2670,10.2705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6947,2.9280,10.2062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6948,5.5312,5.8410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6949,3.2530,5.6241,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6950,3.2670,10.4145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6951,2.9280,10.3497,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +6952,5.5312,6.0002,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6953,3.2530,5.6265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6954,3.2670,10.2396,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6955,2.9280,10.1274,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6956,5.5312,5.9848,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6957,3.2530,5.8835,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6958,3.2670,10.1472,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6959,2.9280,10.2614,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6960,5.5312,5.8035,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6961,3.2530,5.5697,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6962,3.2670,10.2933,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6963,2.9280,10.2511,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6964,5.5312,5.7567,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6965,3.2530,5.5792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6966,3.2670,10.4213,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6967,2.9280,10.3806,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6968,5.5312,5.7782,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6969,3.2530,5.5599,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6970,3.2670,10.3796,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6971,2.9280,10.3396,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6972,5.5312,5.8132,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6973,3.2530,5.5848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6974,3.2670,10.2579,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6975,2.9280,10.2255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6976,5.5312,5.9259,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6977,3.2530,5.6126,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6978,3.2670,10.4634,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6979,2.9280,10.4203,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6980,5.5312,5.7730,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6981,3.2530,5.5179,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6982,3.2670,10.3485,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6983,2.9280,10.3181,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6984,5.5312,5.6113,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6985,3.2530,5.5017,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6986,3.2670,10.3707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6987,2.9280,10.2830,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6988,5.5312,5.6500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6989,3.2530,5.5059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6990,3.2670,10.3253,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6991,2.9280,10.2986,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6992,5.5312,5.6964,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6993,3.2530,5.5098,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6994,3.2670,10.4544,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6995,2.9280,10.4287,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6996,5.5312,5.9396,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6997,3.2530,5.6626,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +6998,3.2670,10.2908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +6999,2.9280,10.3537,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7000,5.5312,5.7795,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7001,3.2530,5.6348,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7002,3.2670,10.3138,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +7003,2.9280,10.4035,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7004,5.5312,5.8211,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7005,3.2530,5.6286,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7006,3.2670,10.4503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7007,2.9280,10.3575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +7008,5.5312,5.7812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7009,3.2530,5.5385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7010,3.2670,10.4920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7011,2.9280,10.4334,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +7012,5.5312,5.8079,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7013,3.2530,5.5715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7014,3.2670,10.4602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7015,2.9280,10.4130,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7016,5.5312,5.7720,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7017,3.2530,5.5298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7018,3.2670,10.4106,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7019,2.9280,10.3298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7020,5.5312,5.8765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7021,3.2530,5.6355,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7022,3.2670,10.5330,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7023,2.9280,10.4613,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7024,5.5312,6.0254,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7025,3.2530,5.6303,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7026,3.2670,10.4124,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7027,2.9280,10.3928,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7028,5.5312,5.9202,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7029,3.2530,5.6129,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7030,3.2670,10.4706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7031,2.9280,10.3962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7032,5.5312,5.8231,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7033,3.2530,5.5905,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7034,3.2670,10.3965,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7035,2.9280,10.3762,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7036,5.5312,5.8555,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7037,3.2530,5.6038,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7038,3.2670,10.4523,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7039,2.9280,10.3958,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7040,5.5312,5.8435,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7041,3.2530,5.5347,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7042,3.2670,10.4833,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7043,2.9280,10.3885,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7044,5.5312,5.7892,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7045,3.2530,5.5778,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7046,3.2670,10.3757,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7047,2.9280,10.3391,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7048,5.5312,5.7894,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7049,3.2530,5.6092,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7050,3.2670,10.5240,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7051,2.9280,10.5113,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7052,5.5312,5.7217,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7053,3.2530,5.5083,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7054,3.2670,10.4166,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7055,2.9280,10.3811,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7056,5.5312,5.8008,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7057,3.2530,5.5616,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7058,3.2670,10.5234,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7059,2.9280,10.5203,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7060,5.5312,5.9934,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7061,3.2530,5.6496,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7062,3.2670,10.6243,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7063,2.9280,10.6336,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7064,5.5312,5.6700,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7065,3.2530,5.5098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7066,3.2670,10.4784,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7067,2.9280,10.4957,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7068,5.5312,5.6767,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7069,3.2530,5.5516,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7070,3.2670,10.3641,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7071,2.9280,10.3575,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7072,5.5312,5.7467,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7073,3.2530,5.5278,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7074,3.2670,10.3041,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7075,2.9280,10.3047,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7076,5.5312,5.7811,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7077,3.2530,5.5813,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7078,3.2670,10.4093,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7079,2.9280,10.3771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +7080,5.5312,5.7696,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7081,3.2530,5.5568,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7082,3.2670,10.3614,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7083,2.9280,10.3178,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +7084,5.5312,5.7430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7085,3.2530,5.5299,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7086,3.2670,10.3494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7087,2.9280,10.3125,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7088,5.5312,5.8105,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7089,3.2530,5.6012,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7090,3.2670,10.3748,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7091,2.9280,10.3225,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +7092,5.5312,5.8208,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7093,3.2530,5.5525,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7094,3.2670,10.4342,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7095,2.9280,10.3761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7096,5.5312,5.7867,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7097,3.2530,5.5693,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7098,3.2670,10.4362,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7099,2.9280,10.4075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7100,5.5312,5.9176,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7101,3.2530,5.6462,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7102,3.2670,10.5402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7103,2.9280,10.5474,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7104,5.5312,5.8092,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7105,3.2530,5.6033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7106,3.2670,10.5326,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7107,2.9280,10.5514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7108,5.5312,5.8443,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7109,3.2530,5.5905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7110,3.2670,10.6423,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7111,2.9280,10.6528,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7112,5.5312,5.8285,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7113,3.2530,5.6027,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7114,3.2670,10.6070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7115,2.9280,10.6130,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7116,5.5312,5.7565,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7117,3.2530,5.5948,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7118,3.2670,10.3942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7119,2.9280,10.3953,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7120,5.5312,5.7279,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7121,3.2530,5.5188,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7122,3.2670,10.4225,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7123,2.9280,10.4398,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7124,5.5312,5.7534,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7125,3.2530,5.6186,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7126,3.2670,10.4652,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7127,2.9280,10.4703,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7128,5.5312,5.6744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7129,3.2530,5.5376,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7130,3.2670,10.4573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7131,2.9280,10.4704,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7132,5.5312,5.7352,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7133,3.2530,5.5284,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7134,3.2670,10.4338,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7135,2.9280,10.4050,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7136,5.5312,5.9633,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7137,3.2530,5.6350,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7138,3.2670,10.6218,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7139,2.9280,10.5078,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7140,5.5312,5.9561,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7141,3.2530,5.6508,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7142,3.2670,10.5022,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7143,2.9280,10.4799,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7144,5.5312,5.7535,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7145,3.2530,5.6000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7146,3.2670,10.3883,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7147,2.9280,10.3423,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7148,5.5312,5.6982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7149,3.2530,5.5223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7150,3.2670,10.2182,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7151,2.9280,10.1495,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7152,5.5312,5.7470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7153,3.2530,5.5460,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7154,3.2670,10.4993,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7155,2.9280,10.4022,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7156,5.5312,5.8036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7157,3.2530,5.6100,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7158,3.2670,10.5482,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7159,2.9280,10.5125,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7160,5.5312,5.7034,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7161,3.2530,5.5734,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7162,3.2670,10.5831,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7163,2.9280,10.5955,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7164,5.5312,5.7192,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7165,3.2530,5.5535,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7166,3.2670,10.4172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7167,2.9280,10.4164,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7168,5.5312,5.7565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7169,3.2530,5.5665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7170,3.2670,10.4565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7171,2.9280,10.4667,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7172,5.5312,5.6715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7173,3.2530,5.5942,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7174,3.2670,10.4297,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7175,2.9280,10.4099,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7176,5.5312,5.6618,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7177,3.2530,5.5638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7178,3.2670,10.3385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7179,2.9280,10.3732,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7180,5.5312,5.7906,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7181,3.2530,5.5489,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7182,3.2670,10.4640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7183,2.9280,10.3991,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7184,5.5312,5.8101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7185,3.2530,5.6692,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7186,3.2670,10.4532,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7187,2.9280,10.4545,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7188,5.5312,5.6582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7189,3.2530,5.5695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7190,3.2670,10.3856,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7191,2.9280,10.3937,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7192,5.5312,5.7359,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7193,3.2530,5.6051,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7194,3.2670,10.4099,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7195,2.9280,10.4215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7196,5.5312,5.7709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7197,3.2530,5.5930,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +7198,3.2670,10.3387,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +7199,2.9280,10.4024,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.txt b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.txt new file mode 100644 index 0000000..3381012 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.txt @@ -0,0 +1,95 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +warmup_frames=20 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=300 +max_keyframe_interval_duration=5.000 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +steady_frames_encoded=1780 +elapsed_seconds=29.995 +effective_logical_fps=60.009 +tile_frames_requested=7200 +tile_frames_encoded=7200 +failed_tile_frames=0 +avg_encode_latency_ms=12.100 +p95_encode_latency_ms=12.690 +max_encode_latency_ms=135.530 +avg_steady_encode_latency_ms=12.057 +p95_steady_encode_latency_ms=12.690 +max_steady_encode_latency_ms=135.530 +avg_tile_encode_latency_ms=8.293 +p95_tile_encode_latency_ms=10.606 +avg_max_tile_encode_latency_ms=10.630 +p95_max_tile_encode_latency_ms=10.862 +avg_steady_max_tile_encode_latency_ms=10.622 +p95_steady_max_tile_encode_latency_ms=10.862 +payload_bytes=10797730 +send_target=none +csv=benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s_logical.csv diff --git a/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s_logical.csv b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s_logical.csv new file mode 100644 index 0000000..afe228a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/reset180_inflight1_30s_logical.csv @@ -0,0 +1,1801 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,109.6549,29.1779,231707 +1,4,0,10.9774,10.4560,65901 +2,4,0,10.9787,10.4918,36886 +3,4,0,10.9370,10.4940,69404 +4,4,0,10.8186,10.3449,87864 +5,4,0,10.7039,10.2728,53700 +6,4,0,10.8309,10.3302,24415 +7,4,0,10.7956,10.2671,15407 +8,4,0,10.7646,10.2918,12151 +9,4,0,10.8441,10.3234,11449 +10,4,0,10.8210,10.2970,8599 +11,4,0,10.8405,10.2462,6107 +12,4,0,10.9205,10.3422,5132 +13,4,0,10.9003,10.2765,3880 +14,4,0,10.8889,10.2535,4001 +15,4,0,10.8644,10.2359,3860 +16,4,0,10.9907,10.3425,4045 +17,4,0,11.3280,10.5496,3955 +18,4,0,11.6530,9.9676,3721 +19,4,0,11.9281,10.2502,3748 +20,4,0,11.9475,10.2690,3386 +21,4,0,11.7617,10.3485,2761 +22,4,0,12.1978,10.2861,2750 +23,4,0,11.9502,9.9925,2836 +24,4,0,12.0120,9.9891,2977 +25,4,0,12.2432,10.2689,2960 +26,4,0,12.3160,10.6840,3010 +27,4,0,11.7019,10.1657,2978 +28,4,0,12.0550,10.3108,2889 +29,4,0,12.2265,10.3061,2914 +30,4,0,12.2720,10.6764,2847 +31,4,0,11.9807,10.4223,3111 +32,4,0,12.1964,9.9952,2714 +33,4,0,13.8989,11.8327,2843 +34,4,0,11.1687,10.1871,2633 +35,4,0,11.1672,10.4136,2659 +36,4,0,11.1493,10.4807,2696 +37,4,0,11.0687,10.4596,2728 +38,4,0,10.9136,10.2365,2772 +39,4,0,10.8856,10.2395,2740 +40,4,0,10.9028,10.3400,2809 +41,4,0,11.1208,10.4456,2679 +42,4,0,10.9312,10.3321,2865 +43,4,0,10.9640,10.3135,2612 +44,4,0,11.0850,10.4363,2626 +45,4,0,11.6700,10.4171,2693 +46,4,0,11.8901,10.2913,2708 +47,4,0,11.6230,10.4149,2765 +48,4,0,11.8486,10.0565,2645 +49,4,0,11.8745,10.0518,2733 +50,4,0,11.7204,9.8788,2667 +51,4,0,11.7673,10.0595,2647 +52,4,0,11.8215,10.1190,2659 +53,4,0,15.6382,14.0732,2757 +54,4,0,11.9593,10.4331,2656 +55,4,0,11.7943,10.2227,2594 +56,4,0,12.6095,10.6520,2603 +57,4,0,12.6630,10.1514,2605 +58,4,0,11.7116,10.4039,2610 +59,4,0,11.3742,10.1870,2641 +60,4,0,10.9907,10.2173,2637 +61,4,0,10.8184,10.2116,2691 +62,4,0,10.9073,10.3317,2620 +63,4,0,10.8887,10.3567,2614 +64,4,0,10.8433,10.3943,2666 +65,4,0,10.8702,10.3686,2613 +66,4,0,10.8766,10.3543,2624 +67,4,0,10.8316,10.3780,2612 +68,4,0,11.0486,10.4552,2687 +69,4,0,10.8956,10.4423,2622 +70,4,0,10.8928,10.4652,2623 +71,4,0,10.6700,10.2736,2647 +72,4,0,10.7235,10.3142,2645 +73,4,0,10.7626,10.3411,2643 +74,4,0,10.8517,10.3886,2635 +75,4,0,10.8042,10.3081,2718 +76,4,0,10.7838,10.2815,2602 +77,4,0,10.8879,10.2911,2605 +78,4,0,10.8143,10.1997,2612 +79,4,0,10.9559,10.2578,2607 +80,4,0,10.9122,10.3651,2630 +81,4,0,11.4041,10.7128,2617 +82,4,0,12.8941,11.2885,2661 +83,4,0,10.8695,10.2895,2606 +84,4,0,10.8477,10.2565,2609 +85,4,0,11.2451,10.6322,2612 +86,4,0,11.8866,10.1769,2632 +87,4,0,12.1500,10.6165,2606 +88,4,0,11.7766,10.2193,2610 +89,4,0,12.1021,10.8521,2652 +90,4,0,11.5354,10.3381,2594 +91,4,0,12.4222,10.6902,2609 +92,4,0,11.8461,10.3030,2598 +93,4,0,11.7439,10.2323,2613 +94,4,0,13.1872,8.1780,2618 +95,4,0,11.8640,10.3302,2604 +96,4,0,12.1582,10.1687,2677 +97,4,0,12.2675,10.2296,2620 +98,4,0,11.6530,10.0972,2594 +99,4,0,11.8160,10.1867,2594 +100,4,0,11.7679,9.9961,2598 +101,4,0,11.7804,10.5306,2609 +102,4,0,11.8518,10.4840,2616 +103,4,0,12.5304,12.2603,2630 +104,4,0,11.5077,10.2927,2606 +105,4,0,11.9060,10.1735,2604 +106,4,0,11.8393,10.3785,2609 +107,4,0,11.7834,10.4250,2610 +108,4,0,12.0654,10.2089,2652 +109,4,0,11.8268,10.2805,2600 +110,4,0,11.8008,10.0871,2640 +111,4,0,11.7152,10.0218,2594 +112,4,0,12.3328,10.1099,2594 +113,4,0,11.9453,10.0065,2600 +114,4,0,11.8612,9.9755,2599 +115,4,0,11.5884,10.3634,2607 +116,4,0,12.0361,10.0761,2603 +117,4,0,12.0937,10.1955,2623 +118,4,0,12.0856,9.9980,2600 +119,4,0,11.5451,10.3397,2610 +120,4,0,11.8956,10.1690,2594 +121,4,0,12.4522,10.1530,2594 +122,4,0,13.4811,10.4367,2603 +123,4,0,12.7267,10.0292,2602 +124,4,0,13.7985,10.0946,2619 +125,4,0,11.9639,10.1948,2600 +126,4,0,11.8396,10.2743,2600 +127,4,0,12.1359,11.5724,2594 +128,4,0,12.4718,10.8618,2594 +129,4,0,12.0233,10.2577,2599 +130,4,0,11.6856,10.6056,2607 +131,4,0,12.2001,9.9897,2605 +132,4,0,11.9940,10.3035,2596 +133,4,0,12.6193,10.7911,2594 +134,4,0,12.1667,10.4500,2594 +135,4,0,12.2543,10.4740,2594 +136,4,0,12.1278,10.1195,2594 +137,4,0,12.9010,11.0180,2594 +138,4,0,11.9316,10.4243,2604 +139,4,0,11.2330,10.3210,2594 +140,4,0,12.6903,10.8862,2594 +141,4,0,12.7371,11.0205,2599 +142,4,0,12.7889,11.0883,2594 +143,4,0,12.1448,10.0889,2594 +144,4,0,12.0345,10.2046,2594 +145,4,0,11.4222,10.4991,2604 +146,4,0,12.1794,10.7040,2594 +147,4,0,12.8762,10.0917,2594 +148,4,0,18.7347,9.9506,2594 +149,4,0,10.7772,10.3594,2601 +150,4,0,10.8855,10.4750,2601 +151,4,0,10.8807,10.2960,2594 +152,4,0,12.4640,10.1319,2606 +153,4,0,12.1105,10.5267,2594 +154,4,0,11.3395,10.3592,2594 +155,4,0,11.2659,10.3715,2594 +156,4,0,10.8368,10.2361,2594 +157,4,0,11.0247,10.2672,2594 +158,4,0,11.0105,10.2258,2594 +159,4,0,11.1100,10.4125,2594 +160,4,0,11.0385,10.4489,2594 +161,4,0,11.9361,10.2598,2594 +162,4,0,12.1738,10.6848,2594 +163,4,0,14.5654,13.1276,2598 +164,4,0,15.8924,15.0077,2594 +165,4,0,11.7835,10.3580,2594 +166,4,0,11.8064,10.2830,2594 +167,4,0,13.4587,11.9322,2594 +168,4,0,12.1742,10.2525,2594 +169,4,0,11.9131,10.7060,2594 +170,4,0,12.1794,10.4915,2594 +171,4,0,12.0550,10.6378,2594 +172,4,0,12.1340,10.2878,2594 +173,4,0,11.4848,10.6185,2594 +174,4,0,11.3795,10.4548,2594 +175,4,0,11.0064,10.4437,2594 +176,4,0,10.8981,10.3291,2594 +177,4,0,10.9375,10.3960,2594 +178,4,0,10.8723,10.4329,2594 +179,4,0,11.3428,10.7665,2594 +180,4,0,135.5301,52.6468,231707 +181,4,0,11.0023,10.5255,65901 +182,4,0,11.0031,10.5014,36886 +183,4,0,10.9831,10.5010,69404 +184,4,0,10.8943,10.4486,87864 +185,4,0,10.9645,10.4977,53700 +186,4,0,10.9143,10.3808,24415 +187,4,0,10.8569,10.3955,15407 +188,4,0,10.9202,10.3669,12151 +189,4,0,10.8541,10.3383,11449 +190,4,0,11.0156,10.4240,8599 +191,4,0,11.1690,10.5783,6107 +192,4,0,11.0906,10.3678,5132 +193,4,0,11.0030,10.3542,3880 +194,4,0,11.0800,10.4152,4001 +195,4,0,11.1535,10.3238,3860 +196,4,0,11.2015,10.5313,4045 +197,4,0,11.8404,10.4145,3955 +198,4,0,11.8788,10.3690,3721 +199,4,0,11.9408,9.8147,3748 +200,4,0,12.1038,10.4145,3386 +201,4,0,12.2999,10.3415,2761 +202,4,0,12.1088,10.1136,2750 +203,4,0,12.4354,9.4513,2836 +204,4,0,13.7342,11.8616,2977 +205,4,0,12.7661,11.1581,2960 +206,4,0,12.4215,10.8682,3010 +207,4,0,12.2884,10.3684,2978 +208,4,0,12.3245,10.0992,2889 +209,4,0,12.1113,10.5759,2914 +210,4,0,11.8060,10.4480,2847 +211,4,0,12.3358,8.0204,3111 +212,4,0,11.9465,10.4830,2714 +213,4,0,13.9357,12.6257,2843 +214,4,0,11.8766,10.4284,2633 +215,4,0,11.9304,10.2739,2659 +216,4,0,11.3760,10.4026,2696 +217,4,0,11.8515,10.9369,2728 +218,4,0,12.6915,10.8403,2772 +219,4,0,12.1979,10.5093,2740 +220,4,0,12.2297,10.5036,2809 +221,4,0,11.9934,10.3140,2679 +222,4,0,12.1464,10.6060,2865 +223,4,0,12.1585,10.5803,2612 +224,4,0,12.1117,10.3957,2626 +225,4,0,12.5059,10.3068,2693 +226,4,0,13.0482,10.0660,2708 +227,4,0,11.7145,10.5917,2765 +228,4,0,12.1152,10.7191,2645 +229,4,0,11.9781,10.6566,2733 +230,4,0,12.9254,10.5412,2667 +231,4,0,12.2725,10.3490,2647 +232,4,0,12.4102,10.8916,2659 +233,4,0,12.4563,10.2320,2757 +234,4,0,12.3386,10.5229,2656 +235,4,0,12.8168,10.2684,2594 +236,4,0,12.0688,10.4318,2603 +237,4,0,11.6802,9.0915,2605 +238,4,0,11.5528,10.1999,2610 +239,4,0,11.7538,10.0729,2641 +240,4,0,11.7030,10.1776,2637 +241,4,0,11.7434,9.7492,2691 +242,4,0,12.1286,10.2808,2620 +243,4,0,11.7589,10.4292,2614 +244,4,0,11.7470,9.9583,2666 +245,4,0,11.8597,10.2745,2613 +246,4,0,11.7994,10.0837,2624 +247,4,0,12.0236,10.0361,2612 +248,4,0,11.7350,10.0757,2687 +249,4,0,11.7880,10.3780,2622 +250,4,0,11.8116,10.0679,2623 +251,4,0,11.7842,10.0675,2647 +252,4,0,13.1354,10.4044,2645 +253,4,0,12.4577,9.3620,2643 +254,4,0,11.4972,10.1013,2635 +255,4,0,12.0772,10.3933,2718 +256,4,0,11.8786,9.9798,2602 +257,4,0,12.1940,10.1361,2605 +258,4,0,11.7583,10.1967,2612 +259,4,0,12.1030,10.1509,2607 +260,4,0,12.1946,10.1613,2630 +261,4,0,11.9458,10.3719,2617 +262,4,0,11.8709,10.3883,2661 +263,4,0,11.7890,10.4563,2606 +264,4,0,12.7001,10.8873,2609 +265,4,0,12.0266,10.1845,2612 +266,4,0,11.7757,10.5482,2632 +267,4,0,12.2997,10.2330,2606 +268,4,0,11.6743,10.3480,2610 +269,4,0,12.4532,10.9760,2652 +270,4,0,12.0207,10.0586,2594 +271,4,0,17.9449,16.0141,2609 +272,4,0,11.8292,10.3862,2598 +273,4,0,12.5001,10.8780,2613 +274,4,0,11.4879,10.3458,2618 +275,4,0,11.3810,10.5338,2604 +276,4,0,11.0455,10.4020,2677 +277,4,0,11.4425,10.4979,2620 +278,4,0,11.2758,10.4505,2594 +279,4,0,11.1947,10.3092,2594 +280,4,0,11.9711,10.3834,2598 +281,4,0,12.5638,10.0156,2609 +282,4,0,12.0573,10.2549,2616 +283,4,0,13.5272,11.9327,2630 +284,4,0,11.9997,10.5011,2606 +285,4,0,12.1280,10.4958,2604 +286,4,0,11.5123,10.1994,2609 +287,4,0,11.6615,10.2746,2610 +288,4,0,12.0620,10.0567,2652 +289,4,0,12.9111,10.4913,2600 +290,4,0,13.4575,11.7943,2640 +291,4,0,11.4988,10.3464,2594 +292,4,0,12.0737,10.3530,2594 +293,4,0,12.0430,10.1719,2600 +294,4,0,13.5407,11.6505,2599 +295,4,0,11.9908,10.6410,2607 +296,4,0,11.9020,10.0035,2603 +297,4,0,11.7736,10.4860,2623 +298,4,0,11.7100,10.2337,2600 +299,4,0,11.5636,10.2026,2610 +300,4,0,11.3312,10.2521,2594 +301,4,0,11.2247,10.5001,2594 +302,4,0,11.0231,10.4646,2603 +303,4,0,10.9836,10.4689,2602 +304,4,0,10.9787,10.4547,2619 +305,4,0,10.9651,10.3049,2600 +306,4,0,11.1825,10.4886,2600 +307,4,0,11.7423,10.3486,2594 +308,4,0,11.8625,10.1533,2594 +309,4,0,11.5387,10.1761,2599 +310,4,0,15.6592,14.1130,2607 +311,4,0,11.2472,10.4095,2605 +312,4,0,13.1711,11.6636,2596 +313,4,0,12.1310,10.1100,2594 +314,4,0,12.0175,10.4665,2594 +315,4,0,15.7887,14.0860,2594 +316,4,0,11.7767,10.4276,2594 +317,4,0,12.0887,9.9239,2594 +318,4,0,12.0855,10.1740,2604 +319,4,0,11.9232,10.4532,2594 +320,4,0,11.3081,10.4253,2594 +321,4,0,11.8766,10.6255,2599 +322,4,0,11.7414,10.4913,2594 +323,4,0,11.7686,10.0290,2594 +324,4,0,11.9977,9.7966,2594 +325,4,0,11.7694,10.5626,2604 +326,4,0,12.8878,10.3129,2594 +327,4,0,11.4462,10.3814,2594 +328,4,0,11.7930,10.2533,2594 +329,4,0,11.5350,10.4672,2601 +330,4,0,11.8997,10.4719,2601 +331,4,0,12.7428,10.7985,2594 +332,4,0,11.7552,9.9188,2606 +333,4,0,11.5785,10.2927,2594 +334,4,0,11.6220,10.4035,2594 +335,4,0,12.6111,9.9312,2594 +336,4,0,11.5551,10.3272,2594 +337,4,0,11.9070,10.0186,2594 +338,4,0,11.7785,10.2863,2594 +339,4,0,11.7076,10.4868,2594 +340,4,0,11.8548,10.2685,2594 +341,4,0,11.7640,10.4850,2594 +342,4,0,11.6037,10.3192,2594 +343,4,0,12.6136,10.9237,2598 +344,4,0,12.1667,10.7072,2594 +345,4,0,11.9167,10.2910,2594 +346,4,0,12.0181,10.4295,2594 +347,4,0,11.8507,10.4461,2594 +348,4,0,11.6229,10.4369,2594 +349,4,0,11.6656,9.9644,2594 +350,4,0,11.1380,10.1817,2594 +351,4,0,11.3448,10.1028,2594 +352,4,0,11.7675,9.8744,2594 +353,4,0,11.8447,10.2787,2594 +354,4,0,12.1523,10.2740,2594 +355,4,0,11.5569,10.2684,2594 +356,4,0,12.7387,10.6878,2594 +357,4,0,11.8208,10.1820,2594 +358,4,0,11.4031,10.0871,2594 +359,4,0,11.3878,10.2597,2594 +360,4,0,126.6744,46.3196,231707 +361,4,0,10.9680,10.4175,65901 +362,4,0,10.9485,10.4067,36886 +363,4,0,11.0555,10.5147,69404 +364,4,0,10.8742,10.3629,87864 +365,4,0,10.8663,10.2956,53700 +366,4,0,10.8214,10.2729,24415 +367,4,0,10.9044,10.3560,15407 +368,4,0,10.9470,10.4864,12151 +369,4,0,10.8848,10.3560,11449 +370,4,0,10.9748,10.3186,8599 +371,4,0,10.9786,10.3636,6107 +372,4,0,10.9983,10.3305,5132 +373,4,0,11.1775,10.5662,3880 +374,4,0,11.9104,10.4144,4001 +375,4,0,14.8618,10.3429,3860 +376,4,0,11.8793,9.8715,4045 +377,4,0,11.1592,10.3770,3955 +378,4,0,12.0292,10.3083,3721 +379,4,0,11.8824,10.0115,3748 +380,4,0,11.9971,10.5381,3386 +381,4,0,11.8116,10.2426,2761 +382,4,0,11.6325,10.6756,2750 +383,4,0,12.0363,9.8658,2836 +384,4,0,13.2168,11.3191,2977 +385,4,0,12.2246,10.3212,2960 +386,4,0,11.9673,10.0799,3010 +387,4,0,11.8614,10.0218,2978 +388,4,0,11.9028,10.0031,2889 +389,4,0,12.5515,10.3710,2914 +390,4,0,11.9114,10.1626,2847 +391,4,0,11.9169,10.1692,3111 +392,4,0,11.9296,10.1695,2714 +393,4,0,12.0492,10.4935,2843 +394,4,0,11.7455,10.9137,2633 +395,4,0,11.1251,10.4205,2659 +396,4,0,11.0473,10.2874,2696 +397,4,0,11.2277,10.2725,2728 +398,4,0,11.8180,11.0542,2772 +399,4,0,12.0243,10.2143,2740 +400,4,0,12.0848,10.2302,2809 +401,4,0,12.4429,10.3521,2679 +402,4,0,12.7655,10.3422,2865 +403,4,0,12.2316,10.3248,2612 +404,4,0,12.0336,10.3517,2626 +405,4,0,11.7171,10.0640,2693 +406,4,0,12.0300,10.3827,2708 +407,4,0,11.8724,10.2061,2765 +408,4,0,11.9101,10.2293,2645 +409,4,0,11.8510,10.3491,2733 +410,4,0,11.6040,10.3880,2667 +411,4,0,11.5722,10.3697,2647 +412,4,0,11.8525,10.3475,2659 +413,4,0,11.8138,10.0939,2757 +414,4,0,12.0215,10.1948,2656 +415,4,0,12.1319,10.1297,2594 +416,4,0,11.9543,10.0582,2603 +417,4,0,11.7787,10.2975,2605 +418,4,0,12.3628,10.2032,2610 +419,4,0,12.1864,10.3447,2641 +420,4,0,12.1861,10.3978,2637 +421,4,0,11.7620,10.2175,2691 +422,4,0,12.3657,10.1517,2620 +423,4,0,11.8087,10.2381,2614 +424,4,0,12.1069,10.2564,2666 +425,4,0,12.1710,9.9941,2613 +426,4,0,12.0014,10.3688,2624 +427,4,0,11.9202,10.1688,2612 +428,4,0,11.8081,10.3701,2687 +429,4,0,11.9246,10.3922,2622 +430,4,0,13.6480,11.6385,2623 +431,4,0,11.6795,10.3695,2647 +432,4,0,12.3722,10.2551,2645 +433,4,0,11.8069,10.2322,2643 +434,4,0,12.0931,9.5909,2635 +435,4,0,11.7748,10.0684,2718 +436,4,0,11.4247,10.5074,2602 +437,4,0,11.2323,10.2438,2605 +438,4,0,11.9502,10.0260,2612 +439,4,0,11.1713,10.3056,2607 +440,4,0,11.4027,10.0461,2630 +441,4,0,11.5620,10.5979,2617 +442,4,0,11.7912,10.2298,2661 +443,4,0,11.4752,10.3150,2606 +444,4,0,11.7195,10.1788,2609 +445,4,0,11.3812,10.4295,2612 +446,4,0,11.8577,10.2795,2632 +447,4,0,11.4955,10.5552,2606 +448,4,0,11.6690,10.3709,2610 +449,4,0,11.5900,10.4112,2652 +450,4,0,12.4944,10.5480,2594 +451,4,0,11.9637,10.3120,2609 +452,4,0,11.8614,10.4719,2598 +453,4,0,11.9096,10.5519,2613 +454,4,0,11.8823,10.4976,2618 +455,4,0,11.9520,10.6499,2604 +456,4,0,11.8430,10.4644,2677 +457,4,0,12.0571,10.2470,2620 +458,4,0,11.9014,10.3084,2594 +459,4,0,11.8925,9.9422,2594 +460,4,0,11.7036,10.1805,2598 +461,4,0,11.4410,10.1099,2609 +462,4,0,11.7164,10.5218,2616 +463,4,0,11.7359,10.1779,2630 +464,4,0,11.5155,10.6683,2606 +465,4,0,11.7892,10.2072,2604 +466,4,0,11.7363,10.1816,2609 +467,4,0,12.0801,10.4155,2610 +468,4,0,11.7270,10.3021,2652 +469,4,0,12.3597,10.5786,2600 +470,4,0,18.9763,18.8643,2640 +471,4,0,11.3225,10.5297,2594 +472,4,0,11.3759,10.5877,2594 +473,4,0,11.9587,10.5264,2600 +474,4,0,12.3537,10.1681,2599 +475,4,0,11.8122,10.2679,2607 +476,4,0,12.1850,10.2884,2603 +477,4,0,12.0197,11.6749,2623 +478,4,0,11.4905,10.4872,2600 +479,4,0,12.5121,9.5265,2610 +480,4,0,13.9018,11.3765,2594 +481,4,0,14.6867,13.1929,2594 +482,4,0,11.6077,10.5293,2603 +483,4,0,11.6290,10.0307,2602 +484,4,0,11.3251,10.2765,2619 +485,4,0,12.7913,10.1893,2600 +486,4,0,11.9527,10.1690,2600 +487,4,0,11.4191,10.5436,2594 +488,4,0,11.5105,10.2270,2594 +489,4,0,11.4291,10.4120,2599 +490,4,0,11.4581,9.2739,2607 +491,4,0,13.2333,10.2056,2605 +492,4,0,12.4588,11.3237,2596 +493,4,0,14.0341,12.5850,2594 +494,4,0,11.4443,10.3675,2594 +495,4,0,11.8571,10.1672,2594 +496,4,0,12.0240,10.2364,2594 +497,4,0,11.7776,10.1648,2594 +498,4,0,11.3211,10.2746,2604 +499,4,0,11.0291,10.2663,2594 +500,4,0,11.3341,10.4757,2594 +501,4,0,15.7995,13.6478,2599 +502,4,0,15.7069,10.3729,2594 +503,4,0,11.2715,10.6470,2594 +504,4,0,11.3050,10.3197,2594 +505,4,0,11.0598,10.2455,2604 +506,4,0,11.0658,10.3700,2594 +507,4,0,11.0259,10.4296,2594 +508,4,0,11.0140,10.4000,2594 +509,4,0,11.0960,10.3838,2601 +510,4,0,11.0374,10.4732,2601 +511,4,0,11.0374,10.4300,2594 +512,4,0,11.0467,10.3848,2606 +513,4,0,11.0808,10.4047,2594 +514,4,0,11.1619,10.3573,2594 +515,4,0,11.0108,10.4731,2594 +516,4,0,11.1211,10.4923,2594 +517,4,0,11.1557,10.4927,2594 +518,4,0,11.1620,10.4434,2594 +519,4,0,11.0196,10.3705,2594 +520,4,0,10.9906,10.4474,2594 +521,4,0,11.0816,10.4945,2594 +522,4,0,10.9900,10.3775,2594 +523,4,0,11.0748,10.5318,2598 +524,4,0,13.2147,12.5758,2594 +525,4,0,11.2669,10.2303,2594 +526,4,0,11.3069,10.3971,2594 +527,4,0,11.0719,10.4292,2594 +528,4,0,10.9531,10.3528,2594 +529,4,0,10.9380,10.3346,2594 +530,4,0,10.9184,10.3990,2594 +531,4,0,10.9760,10.4125,2594 +532,4,0,10.9865,10.3598,2594 +533,4,0,10.9107,10.3093,2594 +534,4,0,10.9115,10.3802,2594 +535,4,0,11.1040,10.4585,2594 +536,4,0,11.2365,10.4815,2594 +537,4,0,10.9867,10.4207,2594 +538,4,0,11.0931,10.5132,2594 +539,4,0,11.0171,10.4684,2594 +540,4,0,114.9546,33.2593,231707 +541,4,0,11.0502,10.6043,65901 +542,4,0,10.9338,10.4987,36886 +543,4,0,11.0595,10.5900,69404 +544,4,0,11.1333,10.6449,87864 +545,4,0,10.9780,10.4639,53700 +546,4,0,10.8329,10.4038,24415 +547,4,0,10.8559,10.3688,15407 +548,4,0,10.9485,10.3728,12151 +549,4,0,10.9696,10.5622,11449 +550,4,0,10.9428,10.4491,8599 +551,4,0,10.9027,10.4714,6107 +552,4,0,10.9642,10.4925,5132 +553,4,0,10.7696,10.3664,3880 +554,4,0,11.1625,10.5193,4001 +555,4,0,10.8252,10.3593,3860 +556,4,0,10.8764,10.4390,4045 +557,4,0,10.8858,10.3854,3955 +558,4,0,10.7315,10.2546,3721 +559,4,0,10.8388,10.2837,3748 +560,4,0,10.9506,10.4020,3386 +561,4,0,11.0113,10.4063,2761 +562,4,0,11.2635,10.6064,2750 +563,4,0,11.3691,10.6358,2836 +564,4,0,11.2016,10.5148,2977 +565,4,0,11.2390,10.5587,2960 +566,4,0,11.4000,10.7682,3010 +567,4,0,11.6023,9.9580,2978 +568,4,0,11.8412,10.1944,2889 +569,4,0,11.5660,10.1790,2914 +570,4,0,11.6400,10.2095,2847 +571,4,0,11.6089,9.8977,3111 +572,4,0,11.9422,9.9079,2714 +573,4,0,11.8915,10.4836,2843 +574,4,0,20.3620,18.9882,2633 +575,4,0,11.4210,10.1263,2659 +576,4,0,11.2302,10.5400,2696 +577,4,0,10.9792,10.3035,2728 +578,4,0,10.9347,10.3002,2772 +579,4,0,11.1011,10.3167,2740 +580,4,0,11.1948,10.6061,2809 +581,4,0,11.6722,10.1349,2679 +582,4,0,11.5764,10.4680,2865 +583,4,0,14.1046,12.5654,2612 +584,4,0,13.2603,9.6742,2626 +585,4,0,11.2664,10.3868,2693 +586,4,0,11.4383,10.6078,2708 +587,4,0,11.3007,10.3507,2765 +588,4,0,11.1008,10.3235,2645 +589,4,0,10.9528,10.3154,2733 +590,4,0,10.9301,10.2887,2667 +591,4,0,11.3288,10.6152,2647 +592,4,0,11.6101,10.3871,2659 +593,4,0,11.8643,10.4096,2757 +594,4,0,14.0030,12.0432,2656 +595,4,0,11.2182,10.4852,2594 +596,4,0,13.3455,9.5876,2603 +597,4,0,10.9335,10.2568,2605 +598,4,0,10.7639,10.1476,2610 +599,4,0,10.9272,10.4225,2641 +600,4,0,10.7908,10.3978,2637 +601,4,0,11.1509,10.5276,2691 +602,4,0,11.1047,10.6296,2620 +603,4,0,10.9393,10.4485,2614 +604,4,0,10.9044,10.3417,2666 +605,4,0,10.8201,10.3154,2613 +606,4,0,10.9034,10.4403,2624 +607,4,0,10.8455,10.4345,2612 +608,4,0,10.9420,10.4150,2687 +609,4,0,11.0754,10.3846,2622 +610,4,0,10.8328,10.2587,2623 +611,4,0,10.8233,10.2411,2647 +612,4,0,10.9433,10.3097,2645 +613,4,0,13.6770,13.0212,2643 +614,4,0,11.5579,10.3532,2635 +615,4,0,11.7222,10.7060,2718 +616,4,0,11.2668,10.4364,2602 +617,4,0,11.0333,10.4805,2605 +618,4,0,10.8943,10.3292,2612 +619,4,0,11.9901,10.5794,2607 +620,4,0,11.9337,10.2602,2630 +621,4,0,11.7758,10.2566,2617 +622,4,0,11.7957,10.1560,2661 +623,4,0,11.8495,9.9228,2606 +624,4,0,12.0946,9.5854,2609 +625,4,0,12.2493,10.8077,2612 +626,4,0,11.9687,10.0448,2632 +627,4,0,12.0617,9.9126,2606 +628,4,0,12.5621,9.6755,2610 +629,4,0,11.8507,10.1700,2652 +630,4,0,11.8522,10.2692,2594 +631,4,0,11.2515,10.4176,2609 +632,4,0,11.6022,11.0073,2598 +633,4,0,11.9516,10.5783,2613 +634,4,0,11.5700,10.8280,2618 +635,4,0,11.3067,10.7381,2604 +636,4,0,10.8888,10.4590,2677 +637,4,0,11.2214,10.5431,2620 +638,4,0,11.0132,10.3018,2594 +639,4,0,11.0514,10.4428,2594 +640,4,0,11.0531,10.3794,2598 +641,4,0,11.6162,10.2185,2609 +642,4,0,12.6507,10.1938,2616 +643,4,0,13.1829,9.8123,2630 +644,4,0,11.5977,10.2779,2606 +645,4,0,11.4610,10.0624,2604 +646,4,0,13.6356,12.3227,2609 +647,4,0,11.0132,10.2207,2610 +648,4,0,11.1295,10.5268,2652 +649,4,0,11.4629,10.2115,2600 +650,4,0,11.6857,9.9530,2640 +651,4,0,11.6454,9.9259,2594 +652,4,0,11.5696,9.9588,2594 +653,4,0,11.8572,10.0433,2600 +654,4,0,11.3480,10.2362,2599 +655,4,0,11.7850,10.0831,2607 +656,4,0,11.7003,10.1415,2603 +657,4,0,12.5698,12.3078,2623 +658,4,0,10.9848,10.3388,2600 +659,4,0,10.8043,10.3478,2610 +660,4,0,11.0692,10.3092,2594 +661,4,0,11.7296,10.1392,2594 +662,4,0,11.2997,10.6092,2603 +663,4,0,11.2462,10.4906,2602 +664,4,0,11.7384,10.2513,2619 +665,4,0,11.7050,10.4207,2600 +666,4,0,11.4305,10.3049,2600 +667,4,0,11.3670,10.4882,2594 +668,4,0,11.2505,10.5102,2594 +669,4,0,11.2652,10.6375,2599 +670,4,0,11.7754,10.5620,2607 +671,4,0,11.9185,10.3104,2605 +672,4,0,12.0298,10.1038,2596 +673,4,0,11.4934,10.6425,2594 +674,4,0,11.4179,10.4968,2594 +675,4,0,11.4977,10.8797,2594 +676,4,0,11.7574,10.3745,2594 +677,4,0,11.8095,10.5409,2594 +678,4,0,11.7018,10.2936,2604 +679,4,0,11.6532,10.4282,2594 +680,4,0,11.5202,10.1168,2594 +681,4,0,11.4813,10.2746,2599 +682,4,0,12.0466,10.7598,2594 +683,4,0,11.6446,10.1192,2594 +684,4,0,11.5925,10.2201,2594 +685,4,0,13.3657,11.6615,2604 +686,4,0,12.7747,10.1728,2594 +687,4,0,11.8503,10.0879,2594 +688,4,0,12.0709,10.0652,2594 +689,4,0,11.8136,9.9795,2601 +690,4,0,12.0264,9.9115,2601 +691,4,0,12.2648,9.7347,2594 +692,4,0,12.2713,10.1935,2606 +693,4,0,12.2266,10.1750,2594 +694,4,0,12.2766,10.2419,2594 +695,4,0,12.5674,10.5440,2594 +696,4,0,12.0347,10.1520,2594 +697,4,0,12.5299,10.1891,2594 +698,4,0,13.0934,11.3146,2594 +699,4,0,11.6790,9.6468,2594 +700,4,0,11.3747,10.5098,2594 +701,4,0,11.2738,10.4217,2594 +702,4,0,12.4731,11.9485,2594 +703,4,0,11.8428,10.3722,2598 +704,4,0,11.9732,9.9027,2594 +705,4,0,12.0845,10.7920,2594 +706,4,0,11.7321,10.5086,2594 +707,4,0,15.9291,14.0135,2594 +708,4,0,10.8448,10.3110,2594 +709,4,0,11.3139,10.2637,2594 +710,4,0,11.7635,9.9100,2594 +711,4,0,11.8808,9.9597,2594 +712,4,0,12.1547,10.4698,2594 +713,4,0,11.6971,10.2221,2594 +714,4,0,12.3892,10.1856,2594 +715,4,0,11.8283,9.8898,2594 +716,4,0,11.1457,10.1358,2594 +717,4,0,11.3729,10.4450,2594 +718,4,0,11.4579,10.9822,2594 +719,4,0,12.1819,10.1475,2594 +720,4,0,121.4765,40.0366,231707 +721,4,0,10.8472,10.3347,65901 +722,4,0,10.8466,10.3824,36886 +723,4,0,11.0232,10.6525,69404 +724,4,0,11.0450,10.5352,87864 +725,4,0,10.8469,10.3378,53700 +726,4,0,10.8279,10.3483,24415 +727,4,0,10.9457,10.3715,15407 +728,4,0,10.8080,10.2973,12151 +729,4,0,10.7693,10.2972,11449 +730,4,0,10.8997,10.4256,8599 +731,4,0,11.0998,10.6303,6107 +732,4,0,11.0010,10.4974,5132 +733,4,0,11.0261,10.5545,3880 +734,4,0,11.0487,10.2845,4001 +735,4,0,10.8452,10.3464,3860 +736,4,0,10.8231,10.3120,4045 +737,4,0,10.8660,10.3555,3955 +738,4,0,10.8385,10.2812,3721 +739,4,0,10.8039,10.2997,3748 +740,4,0,10.7133,10.2831,3386 +741,4,0,10.7130,10.2525,2761 +742,4,0,10.7121,10.2992,2750 +743,4,0,10.6924,10.2993,2836 +744,4,0,10.8187,10.3768,2977 +745,4,0,10.8443,10.3044,2960 +746,4,0,10.8408,10.2727,3010 +747,4,0,10.7885,10.3033,2978 +748,4,0,10.7020,10.2408,2889 +749,4,0,10.7208,10.2287,2914 +750,4,0,10.7577,10.2626,2847 +751,4,0,10.8895,10.3901,3111 +752,4,0,10.8268,10.2787,2714 +753,4,0,10.8090,10.2502,2843 +754,4,0,10.7656,10.2481,2633 +755,4,0,10.7575,10.2649,2659 +756,4,0,10.8152,10.2807,2696 +757,4,0,10.9010,10.3483,2728 +758,4,0,11.0288,10.4686,2772 +759,4,0,10.7837,10.2438,2740 +760,4,0,10.9979,10.4597,2809 +761,4,0,10.9485,10.4290,2679 +762,4,0,11.0797,10.4255,2865 +763,4,0,10.8966,10.2915,2612 +764,4,0,11.0897,10.4114,2626 +765,4,0,10.8696,10.3664,2693 +766,4,0,10.7669,10.2537,2708 +767,4,0,10.9044,10.3393,2765 +768,4,0,11.0089,10.3175,2645 +769,4,0,10.9270,10.3619,2733 +770,4,0,11.1382,10.5209,2667 +771,4,0,11.2829,10.5820,2647 +772,4,0,11.3453,10.5085,2659 +773,4,0,11.0715,10.3313,2757 +774,4,0,10.8747,10.2540,2656 +775,4,0,10.7670,10.3039,2594 +776,4,0,10.7185,10.2287,2603 +777,4,0,10.7931,10.2873,2605 +778,4,0,10.8253,10.3166,2610 +779,4,0,11.1859,10.5225,2641 +780,4,0,11.1130,10.4475,2637 +781,4,0,10.8552,10.3055,2691 +782,4,0,10.8605,10.3238,2620 +783,4,0,10.7787,10.2785,2614 +784,4,0,10.8728,10.2233,2666 +785,4,0,11.0143,10.4157,2613 +786,4,0,10.7724,10.3117,2624 +787,4,0,10.8158,10.2675,2612 +788,4,0,10.9410,10.4556,2687 +789,4,0,11.0322,10.4984,2622 +790,4,0,10.8898,10.4389,2623 +791,4,0,10.8751,10.3970,2647 +792,4,0,10.7580,10.2838,2645 +793,4,0,10.9113,10.3387,2643 +794,4,0,10.8295,10.3341,2635 +795,4,0,11.0510,10.4431,2718 +796,4,0,11.0414,10.4781,2602 +797,4,0,11.4455,10.6708,2605 +798,4,0,11.2669,10.4337,2612 +799,4,0,11.0307,10.4470,2607 +800,4,0,10.9070,10.3155,2630 +801,4,0,10.6899,10.2235,2617 +802,4,0,10.8049,10.3395,2661 +803,4,0,10.7935,10.2561,2606 +804,4,0,10.9377,10.3587,2609 +805,4,0,11.1852,10.5462,2612 +806,4,0,10.9740,10.4432,2632 +807,4,0,11.0182,10.5281,2606 +808,4,0,11.0562,10.4710,2610 +809,4,0,10.9377,10.3924,2652 +810,4,0,10.9305,10.4035,2594 +811,4,0,11.0331,10.4100,2609 +812,4,0,11.0907,10.3735,2598 +813,4,0,10.9720,10.4645,2613 +814,4,0,11.0090,10.5333,2618 +815,4,0,11.0714,10.5353,2604 +816,4,0,11.0230,10.4433,2677 +817,4,0,11.0721,10.5340,2620 +818,4,0,10.9645,10.4953,2594 +819,4,0,10.8514,10.4721,2594 +820,4,0,10.8423,10.4642,2598 +821,4,0,10.8615,10.4961,2609 +822,4,0,10.7845,10.3983,2616 +823,4,0,10.9078,10.4897,2630 +824,4,0,11.0242,10.4393,2606 +825,4,0,10.9859,10.5069,2604 +826,4,0,10.8231,10.4286,2609 +827,4,0,10.6735,10.2568,2610 +828,4,0,10.7325,10.3009,2652 +829,4,0,10.8514,10.3513,2600 +830,4,0,10.9676,10.4388,2640 +831,4,0,11.0255,10.4822,2594 +832,4,0,10.9283,10.4111,2594 +833,4,0,10.8544,10.4620,2600 +834,4,0,10.8390,10.3279,2599 +835,4,0,10.7825,10.3554,2607 +836,4,0,10.8990,10.3840,2603 +837,4,0,10.6852,10.2691,2623 +838,4,0,10.8885,10.3818,2600 +839,4,0,10.8400,10.3585,2610 +840,4,0,11.0312,10.4288,2594 +841,4,0,11.0660,10.5007,2594 +842,4,0,10.9292,10.4611,2603 +843,4,0,10.8900,10.4453,2602 +844,4,0,10.9646,10.4151,2619 +845,4,0,10.8910,10.3880,2600 +846,4,0,10.8970,10.4157,2600 +847,4,0,10.8186,10.3037,2594 +848,4,0,10.8063,10.2696,2594 +849,4,0,10.7441,10.2246,2599 +850,4,0,10.7621,10.2568,2607 +851,4,0,10.7808,10.3090,2605 +852,4,0,10.8380,10.3177,2596 +853,4,0,11.0215,10.5116,2594 +854,4,0,10.9371,10.3594,2594 +855,4,0,11.2905,10.5841,2594 +856,4,0,10.9736,10.3032,2594 +857,4,0,11.0746,10.4989,2594 +858,4,0,11.0802,10.3827,2604 +859,4,0,10.9502,10.3187,2594 +860,4,0,10.8764,10.2293,2594 +861,4,0,11.4772,10.7350,2599 +862,4,0,11.6331,10.0731,2594 +863,4,0,11.0031,10.3086,2594 +864,4,0,11.1312,10.3267,2594 +865,4,0,10.8630,10.2779,2604 +866,4,0,10.9705,10.3612,2594 +867,4,0,10.7612,10.2501,2594 +868,4,0,10.7731,10.2417,2594 +869,4,0,10.9218,10.4284,2601 +870,4,0,10.9705,10.3882,2601 +871,4,0,10.8897,10.4109,2594 +872,4,0,10.8125,10.2839,2606 +873,4,0,10.7202,10.2508,2594 +874,4,0,10.7112,10.2152,2594 +875,4,0,10.8035,10.2869,2594 +876,4,0,10.9098,10.3571,2594 +877,4,0,11.1322,10.4688,2594 +878,4,0,10.9597,10.4186,2594 +879,4,0,10.7767,10.2185,2594 +880,4,0,10.8223,10.2420,2594 +881,4,0,10.8262,10.2566,2594 +882,4,0,10.8569,10.2363,2594 +883,4,0,10.9292,10.2329,2598 +884,4,0,11.7640,10.2653,2594 +885,4,0,11.8372,10.0666,2594 +886,4,0,11.4755,10.2787,2594 +887,4,0,13.1363,11.1817,2594 +888,4,0,11.3890,10.3984,2594 +889,4,0,11.0859,10.3752,2594 +890,4,0,11.3972,10.6206,2594 +891,4,0,11.1012,10.4824,2594 +892,4,0,10.9260,10.3821,2594 +893,4,0,11.0269,10.3875,2594 +894,4,0,11.0478,10.2324,2594 +895,4,0,11.0852,10.4543,2594 +896,4,0,10.9413,10.4096,2594 +897,4,0,10.8990,10.4010,2594 +898,4,0,10.7856,10.3344,2594 +899,4,0,11.0862,10.4273,2594 +900,4,0,128.6587,46.1707,231707 +901,4,0,10.9556,10.4223,65901 +902,4,0,10.8135,10.3743,36886 +903,4,0,10.8870,10.3784,69404 +904,4,0,11.0183,10.5889,87864 +905,4,0,11.0070,10.6091,53700 +906,4,0,10.9695,10.5068,24415 +907,4,0,10.8509,10.4535,15407 +908,4,0,10.7621,10.3031,12151 +909,4,0,10.8171,10.2944,11449 +910,4,0,11.1322,10.6370,8599 +911,4,0,11.0653,10.4601,6107 +912,4,0,10.9020,10.4086,5132 +913,4,0,10.8914,10.3752,3880 +914,4,0,10.8464,10.3469,4001 +915,4,0,10.8410,10.2960,3860 +916,4,0,10.8823,10.4412,4045 +917,4,0,10.8179,10.3887,3955 +918,4,0,10.8826,10.4755,3721 +919,4,0,10.8082,10.4528,3748 +920,4,0,10.8250,10.3415,3386 +921,4,0,10.9230,10.4037,2761 +922,4,0,10.9551,10.4465,2750 +923,4,0,10.9347,10.4992,2836 +924,4,0,11.1223,10.5285,2977 +925,4,0,11.0778,10.4356,2960 +926,4,0,10.9597,10.4209,3010 +927,4,0,10.9763,10.4452,2978 +928,4,0,10.8450,10.3778,2889 +929,4,0,10.9865,10.3878,2914 +930,4,0,10.8681,10.3814,2847 +931,4,0,10.9340,10.4815,3111 +932,4,0,10.8780,10.3319,2714 +933,4,0,11.0039,10.5287,2843 +934,4,0,11.0121,10.5164,2633 +935,4,0,10.9153,10.4898,2659 +936,4,0,11.0344,10.4309,2696 +937,4,0,10.9353,10.4893,2728 +938,4,0,11.0154,10.4942,2772 +939,4,0,10.9901,10.5375,2740 +940,4,0,10.9102,10.4074,2809 +941,4,0,10.9918,10.4665,2679 +942,4,0,10.9130,10.4949,2865 +943,4,0,10.8380,10.3167,2612 +944,4,0,10.9970,10.4703,2626 +945,4,0,11.2356,10.5841,2693 +946,4,0,10.9594,10.4300,2708 +947,4,0,11.0476,10.5119,2765 +948,4,0,10.9198,10.4188,2645 +949,4,0,10.9565,10.3051,2733 +950,4,0,10.9468,10.3808,2667 +951,4,0,10.8963,10.3853,2647 +952,4,0,11.0107,10.4998,2659 +953,4,0,10.9384,10.4168,2757 +954,4,0,10.9362,10.3976,2656 +955,4,0,10.8997,10.4488,2594 +956,4,0,10.9007,10.4094,2603 +957,4,0,10.8965,10.4075,2605 +958,4,0,10.9922,10.4965,2610 +959,4,0,11.1128,10.3688,2641 +960,4,0,10.9901,10.4291,2637 +961,4,0,10.9967,10.4900,2691 +962,4,0,10.9649,10.4129,2620 +963,4,0,11.0226,10.4510,2614 +964,4,0,10.9177,10.3750,2666 +965,4,0,10.9446,10.4283,2613 +966,4,0,10.8888,10.3690,2624 +967,4,0,10.8480,10.3485,2612 +968,4,0,10.9111,10.4357,2687 +969,4,0,10.9265,10.4237,2622 +970,4,0,10.8312,10.3798,2623 +971,4,0,10.9001,10.3534,2647 +972,4,0,10.9025,10.5081,2645 +973,4,0,10.8256,10.4325,2643 +974,4,0,10.8285,10.3996,2635 +975,4,0,10.9502,10.4310,2718 +976,4,0,10.7690,10.3192,2602 +977,4,0,11.2880,10.3237,2605 +978,4,0,10.9505,10.3976,2612 +979,4,0,10.8567,10.3438,2607 +980,4,0,10.7937,10.2952,2630 +981,4,0,10.8436,10.2944,2617 +982,4,0,10.8912,10.2180,2661 +983,4,0,10.7889,10.1962,2606 +984,4,0,11.4596,10.7505,2609 +985,4,0,12.0505,10.0966,2612 +986,4,0,13.9253,12.3441,2632 +987,4,0,11.1667,10.3914,2606 +988,4,0,10.9436,10.4040,2610 +989,4,0,11.2832,10.3271,2652 +990,4,0,11.2404,10.3763,2594 +991,4,0,11.3328,10.3325,2609 +992,4,0,11.2644,10.3949,2598 +993,4,0,11.4177,10.5388,2613 +994,4,0,11.0969,10.5027,2618 +995,4,0,11.4462,9.9013,2604 +996,4,0,11.5102,10.2463,2677 +997,4,0,14.7742,12.5185,2620 +998,4,0,11.3357,10.1327,2594 +999,4,0,12.0766,10.1519,2594 +1000,4,0,12.0556,10.1419,2598 +1001,4,0,12.0720,9.9198,2609 +1002,4,0,13.5257,10.0177,2616 +1003,4,0,11.7575,10.0683,2630 +1004,4,0,12.2160,10.1683,2606 +1005,4,0,11.7289,10.2901,2604 +1006,4,0,11.8690,10.1340,2609 +1007,4,0,11.8455,10.0907,2610 +1008,4,0,11.8770,10.1702,2652 +1009,4,0,11.6629,9.9220,2600 +1010,4,0,11.4033,10.3635,2640 +1011,4,0,11.6907,10.1493,2594 +1012,4,0,11.7964,10.0670,2594 +1013,4,0,12.2015,10.4928,2600 +1014,4,0,11.6653,10.0585,2599 +1015,4,0,11.2914,10.3535,2607 +1016,4,0,11.0480,10.3496,2603 +1017,4,0,10.9605,10.3324,2623 +1018,4,0,11.0144,10.3643,2600 +1019,4,0,10.9652,10.3887,2610 +1020,4,0,11.0587,10.5768,2594 +1021,4,0,11.0703,10.3985,2594 +1022,4,0,11.2869,10.7133,2603 +1023,4,0,10.9673,10.3311,2602 +1024,4,0,10.9959,10.4318,2619 +1025,4,0,11.2316,10.6340,2600 +1026,4,0,11.1955,10.1732,2600 +1027,4,0,10.9985,10.4550,2594 +1028,4,0,10.8561,10.3268,2594 +1029,4,0,10.9015,10.3987,2599 +1030,4,0,10.9260,10.4693,2607 +1031,4,0,11.0948,10.5190,2605 +1032,4,0,11.0220,10.4653,2596 +1033,4,0,10.8350,10.3326,2594 +1034,4,0,10.9144,10.5041,2594 +1035,4,0,10.9181,10.4366,2594 +1036,4,0,10.8882,10.4291,2594 +1037,4,0,11.0670,10.3930,2594 +1038,4,0,11.0655,10.3711,2604 +1039,4,0,10.8793,10.3714,2594 +1040,4,0,10.9367,10.4073,2594 +1041,4,0,11.0018,10.4690,2599 +1042,4,0,11.1112,10.4395,2594 +1043,4,0,10.9514,10.4487,2594 +1044,4,0,10.8511,10.3780,2594 +1045,4,0,11.0077,10.4164,2604 +1046,4,0,10.9930,10.4146,2594 +1047,4,0,11.1124,10.6240,2594 +1048,4,0,10.8957,10.3360,2594 +1049,4,0,10.8848,10.2897,2601 +1050,4,0,11.0166,10.4121,2601 +1051,4,0,11.0079,10.5260,2594 +1052,4,0,10.7781,10.3458,2606 +1053,4,0,10.9079,10.3281,2594 +1054,4,0,10.7542,10.2219,2594 +1055,4,0,11.0720,10.4817,2594 +1056,4,0,10.9211,10.4114,2594 +1057,4,0,10.9875,10.4077,2594 +1058,4,0,10.9524,10.4059,2594 +1059,4,0,10.8931,10.3895,2594 +1060,4,0,10.8506,10.3582,2594 +1061,4,0,10.8501,10.2888,2594 +1062,4,0,11.0096,10.2480,2594 +1063,4,0,10.9808,10.4623,2598 +1064,4,0,11.2545,10.5123,2594 +1065,4,0,10.9782,10.4759,2594 +1066,4,0,10.9233,10.3871,2594 +1067,4,0,10.7459,10.2788,2594 +1068,4,0,10.7692,10.3035,2594 +1069,4,0,10.8247,10.3182,2594 +1070,4,0,10.9572,10.2212,2594 +1071,4,0,11.1707,10.6231,2594 +1072,4,0,10.9734,10.3845,2594 +1073,4,0,11.1073,10.5745,2594 +1074,4,0,10.9807,10.4602,2594 +1075,4,0,10.9346,10.4207,2594 +1076,4,0,10.9287,10.4040,2594 +1077,4,0,11.0419,10.5177,2594 +1078,4,0,10.9964,10.3390,2594 +1079,4,0,11.1993,10.5260,2594 +1080,4,0,128.2094,47.4412,231707 +1081,4,0,11.0420,10.5665,65901 +1082,4,0,10.9675,10.5522,36886 +1083,4,0,11.1335,10.6196,69404 +1084,4,0,10.8838,10.4413,87864 +1085,4,0,11.0315,10.5630,53700 +1086,4,0,10.9660,10.4878,24415 +1087,4,0,10.9228,10.4617,15407 +1088,4,0,10.8511,10.3793,12151 +1089,4,0,10.8368,10.3551,11449 +1090,4,0,11.0149,10.4975,8599 +1091,4,0,11.1109,10.5635,6107 +1092,4,0,11.0373,10.5847,5132 +1093,4,0,11.1348,10.6360,3880 +1094,4,0,11.1123,10.6532,4001 +1095,4,0,10.9399,10.4686,3860 +1096,4,0,10.8923,10.4503,4045 +1097,4,0,10.9429,10.3698,3955 +1098,4,0,10.9765,10.4683,3721 +1099,4,0,10.8450,10.4057,3748 +1100,4,0,10.9897,10.1357,3386 +1101,4,0,11.2401,10.6827,2761 +1102,4,0,11.0013,10.4362,2750 +1103,4,0,10.8725,10.3697,2836 +1104,4,0,10.9002,10.4024,2977 +1105,4,0,10.7726,10.2433,2960 +1106,4,0,10.9090,10.3166,3010 +1107,4,0,11.1019,10.5672,2978 +1108,4,0,10.9823,10.5300,2889 +1109,4,0,10.9847,10.5084,2914 +1110,4,0,10.8110,10.3530,2847 +1111,4,0,10.9976,10.3453,3111 +1112,4,0,11.2186,10.6001,2714 +1113,4,0,11.3262,10.5261,2843 +1114,4,0,11.1692,10.5807,2633 +1115,4,0,11.0144,10.4328,2659 +1116,4,0,11.0396,10.5436,2696 +1117,4,0,11.0665,10.3702,2728 +1118,4,0,11.0926,10.6005,2772 +1119,4,0,10.9898,10.3937,2740 +1120,4,0,10.9616,10.2840,2809 +1121,4,0,11.0715,10.4500,2679 +1122,4,0,11.6151,10.9413,2865 +1123,4,0,12.5098,10.8391,2612 +1124,4,0,12.2650,10.3390,2626 +1125,4,0,12.3120,10.6480,2693 +1126,4,0,12.2374,10.1703,2708 +1127,4,0,12.2239,10.3358,2765 +1128,4,0,12.2777,10.2144,2645 +1129,4,0,12.0693,10.4893,2733 +1130,4,0,11.9736,10.2048,2667 +1131,4,0,12.1363,10.3039,2647 +1132,4,0,11.8143,10.1888,2659 +1133,4,0,18.8422,16.7106,2757 +1134,4,0,11.8565,10.5725,2656 +1135,4,0,11.3370,10.7178,2594 +1136,4,0,12.2884,10.5940,2603 +1137,4,0,12.7243,10.4746,2605 +1138,4,0,11.7320,10.3455,2610 +1139,4,0,11.2240,10.5228,2641 +1140,4,0,11.7476,10.8611,2637 +1141,4,0,11.5557,10.9209,2691 +1142,4,0,11.4406,10.7580,2620 +1143,4,0,11.0672,10.4652,2614 +1144,4,0,11.0799,10.4997,2666 +1145,4,0,10.9240,10.2809,2613 +1146,4,0,11.2278,10.5621,2624 +1147,4,0,11.0749,10.4714,2612 +1148,4,0,11.0716,10.3483,2687 +1149,4,0,11.2536,10.4492,2622 +1150,4,0,11.2154,10.4706,2623 +1151,4,0,11.8153,10.1992,2647 +1152,4,0,11.8486,10.3169,2645 +1153,4,0,11.2847,10.6613,2643 +1154,4,0,12.9229,10.1654,2635 +1155,4,0,11.3485,10.5084,2718 +1156,4,0,11.9306,10.9289,2602 +1157,4,0,11.4918,10.7540,2605 +1158,4,0,11.2615,10.5876,2612 +1159,4,0,11.3478,10.7200,2607 +1160,4,0,11.3990,10.6566,2630 +1161,4,0,11.9145,10.3306,2617 +1162,4,0,12.0740,10.1833,2661 +1163,4,0,12.4393,10.1993,2606 +1164,4,0,12.5851,10.9463,2609 +1165,4,0,11.8535,10.3312,2612 +1166,4,0,11.1315,10.4605,2632 +1167,4,0,11.0023,10.4390,2606 +1168,4,0,11.0098,10.3193,2610 +1169,4,0,11.0050,10.3296,2652 +1170,4,0,11.1410,10.5358,2594 +1171,4,0,10.9845,10.4149,2609 +1172,4,0,10.9110,10.4010,2598 +1173,4,0,11.0741,10.4809,2613 +1174,4,0,10.9854,10.1877,2618 +1175,4,0,10.9348,10.2652,2604 +1176,4,0,11.0745,10.3983,2677 +1177,4,0,10.9515,10.4001,2620 +1178,4,0,11.0801,10.4543,2594 +1179,4,0,10.8742,10.3354,2594 +1180,4,0,10.8697,10.2417,2598 +1181,4,0,11.2528,10.5600,2609 +1182,4,0,11.0390,10.4848,2616 +1183,4,0,10.7714,10.3775,2630 +1184,4,0,11.0992,10.4802,2606 +1185,4,0,10.8550,10.3845,2604 +1186,4,0,10.8714,10.3869,2609 +1187,4,0,10.9128,10.3528,2610 +1188,4,0,11.2685,10.6204,2652 +1189,4,0,11.0292,10.5097,2600 +1190,4,0,10.9826,10.5340,2640 +1191,4,0,10.8956,10.4482,2594 +1192,4,0,11.0028,10.3862,2594 +1193,4,0,10.9171,10.3257,2600 +1194,4,0,10.9597,10.4021,2599 +1195,4,0,10.9760,10.4040,2607 +1196,4,0,11.0042,10.4488,2603 +1197,4,0,11.2282,10.6583,2623 +1198,4,0,11.0680,10.5159,2600 +1199,4,0,11.0654,10.6007,2610 +1200,4,0,10.9092,10.3712,2594 +1201,4,0,11.0384,10.5522,2594 +1202,4,0,10.8368,10.3752,2603 +1203,4,0,11.1174,10.5326,2602 +1204,4,0,11.2147,10.3598,2619 +1205,4,0,11.1203,10.4385,2600 +1206,4,0,10.9331,10.3953,2600 +1207,4,0,11.0590,10.3803,2594 +1208,4,0,10.9264,10.3442,2594 +1209,4,0,11.0705,10.3882,2599 +1210,4,0,10.9808,10.3521,2607 +1211,4,0,10.9624,10.4317,2605 +1212,4,0,11.0065,10.4246,2596 +1213,4,0,10.8927,10.3496,2594 +1214,4,0,11.0393,10.4040,2594 +1215,4,0,11.1785,10.5307,2594 +1216,4,0,10.8745,10.3779,2594 +1217,4,0,10.7846,10.2989,2594 +1218,4,0,10.8440,10.2852,2604 +1219,4,0,11.0827,10.4279,2594 +1220,4,0,11.0938,10.5390,2594 +1221,4,0,11.0917,10.4171,2599 +1222,4,0,10.8963,10.3947,2594 +1223,4,0,10.8743,10.3194,2594 +1224,4,0,10.8355,10.3820,2594 +1225,4,0,10.8907,10.3714,2604 +1226,4,0,11.0419,10.5101,2594 +1227,4,0,10.9370,10.2720,2594 +1228,4,0,11.2969,10.6244,2594 +1229,4,0,11.0195,10.5736,2601 +1230,4,0,11.0560,10.5505,2601 +1231,4,0,10.8645,10.4010,2594 +1232,4,0,10.8796,10.2917,2606 +1233,4,0,10.8989,10.3185,2594 +1234,4,0,11.1711,10.5224,2594 +1235,4,0,11.0559,10.4860,2594 +1236,4,0,11.0669,10.5070,2594 +1237,4,0,10.9999,10.4404,2594 +1238,4,0,10.8975,10.3237,2594 +1239,4,0,10.9704,10.4382,2594 +1240,4,0,10.9696,10.4740,2594 +1241,4,0,11.1468,10.5698,2594 +1242,4,0,10.9857,10.5462,2594 +1243,4,0,10.8556,10.4775,2598 +1244,4,0,11.1444,10.5936,2594 +1245,4,0,10.9666,10.3052,2594 +1246,4,0,11.0881,10.5282,2594 +1247,4,0,11.3287,10.5939,2594 +1248,4,0,11.1710,10.5090,2594 +1249,4,0,11.0895,10.5525,2594 +1250,4,0,11.1106,10.4800,2594 +1251,4,0,10.8759,10.3672,2594 +1252,4,0,10.8910,10.3558,2594 +1253,4,0,10.9202,10.4715,2594 +1254,4,0,10.9870,10.3462,2594 +1255,4,0,11.0331,10.5620,2594 +1256,4,0,10.9159,10.2404,2594 +1257,4,0,10.9300,10.3848,2594 +1258,4,0,11.1875,10.6028,2594 +1259,4,0,11.1194,10.4908,2594 +1260,4,0,128.4170,47.4584,231707 +1261,4,0,11.0802,10.6093,65901 +1262,4,0,11.1972,10.6647,36886 +1263,4,0,11.0555,10.5594,69404 +1264,4,0,10.9908,10.5137,87864 +1265,4,0,10.9382,10.4957,53700 +1266,4,0,10.8658,10.4365,24415 +1267,4,0,11.0028,10.5262,15407 +1268,4,0,10.6570,10.2233,12151 +1269,4,0,10.9793,10.4653,11449 +1270,4,0,10.9868,10.4647,8599 +1271,4,0,11.0675,10.5452,6107 +1272,4,0,11.0604,10.5273,5132 +1273,4,0,11.1203,10.6198,3880 +1274,4,0,10.9874,10.5164,4001 +1275,4,0,10.8827,10.4480,3860 +1276,4,0,10.8836,10.4160,4045 +1277,4,0,11.0656,10.5259,3955 +1278,4,0,10.8879,10.4222,3721 +1279,4,0,10.8450,10.3676,3748 +1280,4,0,11.1336,10.4368,3386 +1281,4,0,10.9480,10.3368,2761 +1282,4,0,11.0899,10.5976,2750 +1283,4,0,11.0013,10.4930,2836 +1284,4,0,10.8998,10.3818,2977 +1285,4,0,11.0406,10.5995,2960 +1286,4,0,10.8510,10.3582,3010 +1287,4,0,10.8116,10.3299,2978 +1288,4,0,11.0547,10.5077,2889 +1289,4,0,10.9545,10.3641,2914 +1290,4,0,11.1833,10.4922,2847 +1291,4,0,11.0985,10.4488,3111 +1292,4,0,11.0594,10.4953,2714 +1293,4,0,11.0295,10.5075,2843 +1294,4,0,11.0520,10.5225,2633 +1295,4,0,10.8978,10.3443,2659 +1296,4,0,10.8870,10.3387,2696 +1297,4,0,10.9663,10.2697,2728 +1298,4,0,11.2572,10.6542,2772 +1299,4,0,11.1061,10.5986,2740 +1300,4,0,11.1400,10.5466,2809 +1301,4,0,11.3484,10.7257,2679 +1302,4,0,11.0812,10.5012,2865 +1303,4,0,10.8997,10.4711,2612 +1304,4,0,11.1596,10.5192,2626 +1305,4,0,11.1320,10.5246,2693 +1306,4,0,11.0222,10.4952,2708 +1307,4,0,11.0566,10.4045,2765 +1308,4,0,11.0404,10.4964,2645 +1309,4,0,10.9805,10.3628,2733 +1310,4,0,11.3308,10.3034,2667 +1311,4,0,11.3389,10.3328,2647 +1312,4,0,11.3450,10.1339,2659 +1313,4,0,11.4980,10.3488,2757 +1314,4,0,11.8382,10.3268,2656 +1315,4,0,12.1605,10.4066,2594 +1316,4,0,12.2621,10.5184,2603 +1317,4,0,12.0170,10.3465,2605 +1318,4,0,12.2089,10.5607,2610 +1319,4,0,12.6224,10.1464,2641 +1320,4,0,12.6788,10.6436,2637 +1321,4,0,12.6775,10.0865,2691 +1322,4,0,12.5089,10.0637,2620 +1323,4,0,13.3805,10.3040,2614 +1324,4,0,11.7468,10.1362,2666 +1325,4,0,11.9418,10.0023,2613 +1326,4,0,12.2850,10.4417,2624 +1327,4,0,12.0760,10.6773,2612 +1328,4,0,13.0716,10.5672,2687 +1329,4,0,12.8601,11.1653,2622 +1330,4,0,19.6447,17.6102,2623 +1331,4,0,11.6925,10.5968,2647 +1332,4,0,13.3094,9.9625,2645 +1333,4,0,11.9113,10.4978,2643 +1334,4,0,12.1196,10.2730,2635 +1335,4,0,11.5721,9.9478,2718 +1336,4,0,11.9496,10.0007,2602 +1337,4,0,11.8253,9.9845,2605 +1338,4,0,11.5257,10.5245,2612 +1339,4,0,11.8101,10.2045,2607 +1340,4,0,11.6070,10.1810,2630 +1341,4,0,11.8911,10.1512,2617 +1342,4,0,12.0076,10.2109,2661 +1343,4,0,12.0266,10.3067,2606 +1344,4,0,11.8915,10.1628,2609 +1345,4,0,12.0057,9.9633,2612 +1346,4,0,13.5491,10.5564,2632 +1347,4,0,12.0020,10.4913,2606 +1348,4,0,12.0657,9.9224,2610 +1349,4,0,11.9015,10.2162,2652 +1350,4,0,11.9911,10.1764,2594 +1351,4,0,11.9690,10.1278,2609 +1352,4,0,11.9187,10.1154,2598 +1353,4,0,12.0150,9.9888,2613 +1354,4,0,11.2947,10.4815,2618 +1355,4,0,11.5850,10.9100,2604 +1356,4,0,12.1586,10.4807,2677 +1357,4,0,11.8711,10.1310,2620 +1358,4,0,12.1652,10.2105,2594 +1359,4,0,11.7734,10.1182,2594 +1360,4,0,12.5908,10.2157,2598 +1361,4,0,12.6069,10.2693,2609 +1362,4,0,11.3613,10.5627,2616 +1363,4,0,12.3845,11.2978,2630 +1364,4,0,12.0490,10.7648,2606 +1365,4,0,12.1673,8.2618,2604 +1366,4,0,11.6772,10.4247,2609 +1367,4,0,11.5497,10.0892,2610 +1368,4,0,11.8626,9.8830,2652 +1369,4,0,12.0233,10.4087,2600 +1370,4,0,11.8661,10.3968,2640 +1371,4,0,12.0103,10.1821,2594 +1372,4,0,11.7843,10.2620,2594 +1373,4,0,12.1076,9.9924,2600 +1374,4,0,11.9687,10.6996,2599 +1375,4,0,11.9265,10.3522,2607 +1376,4,0,12.0191,10.6850,2603 +1377,4,0,11.7357,9.6186,2623 +1378,4,0,11.4172,10.4859,2600 +1379,4,0,11.3527,10.5021,2610 +1380,4,0,10.9995,10.3639,2594 +1381,4,0,10.8730,10.3574,2594 +1382,4,0,10.8292,10.3183,2603 +1383,4,0,10.9534,10.3439,2602 +1384,4,0,10.9757,10.3847,2619 +1385,4,0,10.8815,10.2714,2600 +1386,4,0,11.0009,10.3608,2600 +1387,4,0,10.9151,10.3277,2594 +1388,4,0,11.0819,10.4898,2594 +1389,4,0,11.3875,10.3976,2599 +1390,4,0,11.2603,10.5062,2607 +1391,4,0,11.0802,10.3291,2605 +1392,4,0,10.9585,10.4102,2596 +1393,4,0,11.0466,10.5434,2594 +1394,4,0,10.9750,10.4996,2594 +1395,4,0,10.7577,10.2528,2594 +1396,4,0,10.8704,10.3398,2594 +1397,4,0,11.1405,10.5597,2594 +1398,4,0,10.9667,10.4833,2604 +1399,4,0,10.9633,10.4174,2594 +1400,4,0,10.8208,10.3786,2594 +1401,4,0,10.7879,10.2831,2599 +1402,4,0,11.0892,10.5205,2594 +1403,4,0,11.1893,10.5344,2594 +1404,4,0,10.8331,10.3624,2594 +1405,4,0,10.9385,10.4277,2604 +1406,4,0,10.7209,10.3040,2594 +1407,4,0,10.9362,10.3105,2594 +1408,4,0,11.1693,10.5156,2594 +1409,4,0,10.9949,10.3874,2601 +1410,4,0,11.0246,10.3891,2601 +1411,4,0,10.9720,10.4062,2594 +1412,4,0,10.9030,10.2730,2606 +1413,4,0,11.0302,10.3232,2594 +1414,4,0,11.0441,10.3523,2594 +1415,4,0,11.6946,10.4605,2594 +1416,4,0,11.8434,10.3160,2594 +1417,4,0,11.6894,10.1221,2594 +1418,4,0,11.9585,10.5562,2594 +1419,4,0,12.7112,10.1832,2594 +1420,4,0,12.0210,9.9400,2594 +1421,4,0,11.6725,10.3620,2594 +1422,4,0,12.1915,10.2070,2594 +1423,4,0,12.1179,10.4163,2598 +1424,4,0,12.0202,10.2993,2594 +1425,4,0,12.2324,10.3183,2594 +1426,4,0,12.2447,9.9777,2594 +1427,4,0,11.8369,10.1542,2594 +1428,4,0,12.4526,10.7019,2594 +1429,4,0,12.0081,10.1918,2594 +1430,4,0,11.6935,10.1385,2594 +1431,4,0,12.1200,9.9437,2594 +1432,4,0,11.9324,9.9605,2594 +1433,4,0,11.8985,10.6795,2594 +1434,4,0,11.8669,10.1683,2594 +1435,4,0,12.0218,10.3431,2594 +1436,4,0,12.2412,10.4830,2594 +1437,4,0,12.3665,10.4769,2594 +1438,4,0,14.1800,10.0978,2594 +1439,4,0,11.9022,10.3872,2594 +1440,4,0,127.7685,45.7189,231707 +1441,4,0,11.0228,10.4440,65901 +1442,4,0,10.9538,10.5078,36886 +1443,4,0,10.9931,10.5590,69404 +1444,4,0,11.0933,10.5942,87864 +1445,4,0,10.9644,10.4685,53700 +1446,4,0,10.9398,10.3915,24415 +1447,4,0,10.9467,10.3802,15407 +1448,4,0,11.0735,10.5479,12151 +1449,4,0,10.9590,10.4175,11449 +1450,4,0,11.0074,10.4600,8599 +1451,4,0,11.0995,10.5174,6107 +1452,4,0,11.1108,10.4727,5132 +1453,4,0,11.1428,10.4946,3880 +1454,4,0,11.0315,10.4100,4001 +1455,4,0,11.5097,10.8749,3860 +1456,4,0,12.3690,11.1051,4045 +1457,4,0,11.8305,10.1627,3955 +1458,4,0,12.0351,10.8692,3721 +1459,4,0,12.2297,10.5080,3748 +1460,4,0,12.5023,10.1536,3386 +1461,4,0,11.8485,10.3607,2761 +1462,4,0,11.8513,10.3102,2750 +1463,4,0,11.5745,10.3541,2836 +1464,4,0,22.9334,21.6321,2977 +1465,4,0,11.6398,10.4822,2960 +1466,4,0,11.1929,10.7389,3010 +1467,4,0,11.5202,10.8732,2978 +1468,4,0,11.9293,10.6357,2889 +1469,4,0,12.2425,10.2748,2914 +1470,4,0,11.8797,10.4630,2847 +1471,4,0,12.3990,10.4675,3111 +1472,4,0,12.2617,10.4380,2714 +1473,4,0,11.8738,10.4355,2843 +1474,4,0,11.8169,10.1378,2633 +1475,4,0,11.8872,10.4558,2659 +1476,4,0,11.8754,10.2161,2696 +1477,4,0,11.6847,10.1145,2728 +1478,4,0,12.0031,10.1723,2772 +1479,4,0,12.0418,10.2951,2740 +1480,4,0,12.2289,10.6092,2809 +1481,4,0,11.7460,10.8695,2679 +1482,4,0,13.7692,11.8408,2865 +1483,4,0,14.7725,13.1468,2612 +1484,4,0,12.1865,10.4745,2626 +1485,4,0,12.1991,10.2464,2693 +1486,4,0,12.0059,10.1683,2708 +1487,4,0,11.9734,10.0155,2765 +1488,4,0,12.5224,10.4635,2645 +1489,4,0,11.8174,10.3641,2733 +1490,4,0,14.2365,11.9454,2667 +1491,4,0,11.2926,10.5536,2647 +1492,4,0,11.5817,10.7205,2659 +1493,4,0,11.5358,10.6815,2757 +1494,4,0,11.1443,10.5457,2656 +1495,4,0,10.9965,10.4043,2594 +1496,4,0,11.2203,10.7875,2603 +1497,4,0,10.9860,10.3310,2605 +1498,4,0,11.0380,10.4345,2610 +1499,4,0,11.9991,11.4496,2641 +1500,4,0,10.9654,10.4562,2637 +1501,4,0,11.2234,10.5070,2691 +1502,4,0,11.3006,10.5733,2620 +1503,4,0,11.2222,10.6564,2614 +1504,4,0,10.9812,10.4853,2666 +1505,4,0,11.0140,10.6045,2613 +1506,4,0,10.9107,10.4942,2624 +1507,4,0,10.9135,10.4297,2612 +1508,4,0,10.8437,10.3999,2687 +1509,4,0,10.7232,10.3603,2622 +1510,4,0,10.8235,10.3177,2623 +1511,4,0,10.9142,10.3754,2647 +1512,4,0,11.0375,10.5214,2645 +1513,4,0,10.9448,10.4844,2643 +1514,4,0,10.9644,10.4190,2635 +1515,4,0,11.0551,10.4535,2718 +1516,4,0,10.9555,10.4862,2602 +1517,4,0,10.9655,10.4374,2605 +1518,4,0,10.8478,10.3833,2612 +1519,4,0,11.0937,10.3529,2607 +1520,4,0,11.2590,10.4527,2630 +1521,4,0,10.8656,10.4196,2617 +1522,4,0,10.9538,10.4373,2661 +1523,4,0,11.1147,10.5177,2606 +1524,4,0,10.9443,10.4538,2609 +1525,4,0,10.8813,10.4450,2612 +1526,4,0,10.8963,10.4601,2632 +1527,4,0,10.8158,10.3005,2606 +1528,4,0,11.0500,10.5062,2610 +1529,4,0,11.1717,10.5075,2652 +1530,4,0,10.9868,10.4982,2594 +1531,4,0,11.2818,10.7279,2609 +1532,4,0,11.1249,10.5457,2598 +1533,4,0,11.0634,10.5272,2613 +1534,4,0,10.9185,10.4365,2618 +1535,4,0,10.9208,10.3908,2604 +1536,4,0,11.3190,10.5561,2677 +1537,4,0,10.9753,10.4314,2620 +1538,4,0,11.0610,10.4697,2594 +1539,4,0,10.8889,10.4394,2594 +1540,4,0,10.8990,10.3709,2598 +1541,4,0,10.9073,10.4162,2609 +1542,4,0,10.8879,10.3353,2616 +1543,4,0,10.8507,10.4279,2630 +1544,4,0,11.3302,10.6265,2606 +1545,4,0,11.4905,10.7040,2604 +1546,4,0,11.0111,10.4812,2609 +1547,4,0,11.0301,10.6040,2610 +1548,4,0,10.9460,10.5226,2652 +1549,4,0,11.0747,10.3691,2600 +1550,4,0,11.0231,10.3295,2640 +1551,4,0,10.9583,10.3125,2594 +1552,4,0,11.1811,10.4793,2594 +1553,4,0,11.5710,10.3846,2600 +1554,4,0,11.6475,10.1859,2599 +1555,4,0,12.5586,10.0877,2607 +1556,4,0,11.4302,10.7501,2603 +1557,4,0,11.5654,10.7506,2623 +1558,4,0,11.4004,10.5548,2600 +1559,4,0,11.2286,10.2802,2610 +1560,4,0,11.1104,10.4295,2594 +1561,4,0,11.3079,10.7026,2594 +1562,4,0,11.7304,10.2722,2603 +1563,4,0,11.7845,10.2077,2602 +1564,4,0,11.6437,10.1359,2619 +1565,4,0,12.6099,11.2400,2600 +1566,4,0,11.5846,10.4411,2600 +1567,4,0,11.7838,10.1965,2594 +1568,4,0,11.9359,9.9956,2594 +1569,4,0,11.8899,10.1680,2599 +1570,4,0,12.2383,10.8910,2607 +1571,4,0,11.7600,10.0032,2605 +1572,4,0,12.0341,9.8770,2596 +1573,4,0,12.1255,9.9830,2594 +1574,4,0,12.3767,10.2415,2594 +1575,4,0,11.7791,10.0707,2594 +1576,4,0,12.0501,9.8979,2594 +1577,4,0,11.7789,9.9839,2594 +1578,4,0,11.3487,10.3215,2604 +1579,4,0,11.3597,10.5219,2594 +1580,4,0,11.2033,10.5527,2594 +1581,4,0,10.9764,10.4721,2599 +1582,4,0,10.8987,10.4133,2594 +1583,4,0,11.1484,10.5224,2594 +1584,4,0,11.0718,10.4062,2594 +1585,4,0,11.1166,10.4554,2604 +1586,4,0,10.9608,10.4605,2594 +1587,4,0,10.9467,10.4107,2594 +1588,4,0,10.9798,10.3709,2594 +1589,4,0,10.7350,10.2199,2601 +1590,4,0,10.8848,10.3745,2601 +1591,4,0,11.1918,10.5075,2594 +1592,4,0,11.0987,10.5899,2606 +1593,4,0,11.0154,10.4808,2594 +1594,4,0,11.0340,10.4339,2594 +1595,4,0,10.9765,10.4380,2594 +1596,4,0,10.9295,10.3866,2594 +1597,4,0,11.0465,10.5095,2594 +1598,4,0,11.1068,10.4727,2594 +1599,4,0,10.9562,10.3265,2594 +1600,4,0,11.1689,10.4831,2594 +1601,4,0,11.1465,10.3085,2594 +1602,4,0,10.9932,10.4120,2594 +1603,4,0,10.9568,10.4185,2598 +1604,4,0,11.1072,10.4771,2594 +1605,4,0,11.3680,10.5350,2594 +1606,4,0,11.0519,10.4000,2594 +1607,4,0,11.1309,10.5347,2594 +1608,4,0,11.1853,10.5260,2594 +1609,4,0,11.0015,10.3730,2594 +1610,4,0,10.9008,10.3451,2594 +1611,4,0,11.1350,10.4672,2594 +1612,4,0,10.8788,10.3365,2594 +1613,4,0,10.7484,10.2409,2594 +1614,4,0,11.0050,10.4994,2594 +1615,4,0,10.8920,10.3115,2594 +1616,4,0,11.1383,10.5160,2594 +1617,4,0,11.1267,10.4783,2594 +1618,4,0,10.9027,10.3235,2594 +1619,4,0,10.9895,10.5068,2594 +1620,4,0,128.0215,46.8370,231707 +1621,4,0,10.9663,10.4554,65901 +1622,4,0,10.8943,10.4551,36886 +1623,4,0,11.0154,10.6007,69404 +1624,4,0,10.9945,10.5735,87864 +1625,4,0,10.9246,10.4593,53700 +1626,4,0,11.0416,10.5430,24415 +1627,4,0,10.9821,10.4308,15407 +1628,4,0,11.0282,10.5392,12151 +1629,4,0,10.8953,10.4839,11449 +1630,4,0,10.9778,10.5646,8599 +1631,4,0,10.8417,10.4360,6107 +1632,4,0,10.6172,10.2223,5132 +1633,4,0,10.8057,10.3604,3880 +1634,4,0,10.7019,10.1836,4001 +1635,4,0,10.9132,10.3678,3860 +1636,4,0,10.8109,10.3607,4045 +1637,4,0,10.9516,10.4018,3955 +1638,4,0,10.9634,10.4392,3721 +1639,4,0,11.0630,10.4913,3748 +1640,4,0,10.9992,10.4961,3386 +1641,4,0,10.9434,10.4455,2761 +1642,4,0,10.9693,10.4095,2750 +1643,4,0,10.9497,10.4364,2836 +1644,4,0,10.8798,10.3932,2977 +1645,4,0,10.9269,10.3604,2960 +1646,4,0,10.9569,10.5003,3010 +1647,4,0,11.0483,10.5643,2978 +1648,4,0,11.1770,10.7421,2889 +1649,4,0,10.9058,10.4671,2914 +1650,4,0,10.9389,10.4757,2847 +1651,4,0,10.8929,10.4520,3111 +1652,4,0,10.9852,10.4123,2714 +1653,4,0,11.1552,10.5411,2843 +1654,4,0,10.9691,10.4626,2633 +1655,4,0,11.1456,10.4967,2659 +1656,4,0,10.9412,10.2841,2696 +1657,4,0,11.3874,10.2754,2728 +1658,4,0,11.2602,10.4620,2772 +1659,4,0,11.6231,10.7902,2740 +1660,4,0,12.5090,10.5247,2809 +1661,4,0,12.5361,10.6632,2679 +1662,4,0,11.7128,10.3820,2865 +1663,4,0,16.8165,15.0600,2612 +1664,4,0,12.2472,10.7560,2626 +1665,4,0,12.1661,10.6455,2693 +1666,4,0,11.1153,10.3953,2708 +1667,4,0,11.6677,10.4616,2765 +1668,4,0,11.0905,10.4056,2645 +1669,4,0,11.0008,10.4129,2733 +1670,4,0,11.2381,10.5466,2667 +1671,4,0,11.0585,10.4733,2647 +1672,4,0,11.0120,10.3395,2659 +1673,4,0,10.9530,10.3384,2757 +1674,4,0,10.8288,10.3258,2656 +1675,4,0,10.8500,10.2467,2594 +1676,4,0,10.9310,10.2175,2603 +1677,4,0,10.9515,10.2172,2605 +1678,4,0,10.8088,10.3059,2610 +1679,4,0,10.9687,10.3591,2641 +1680,4,0,11.1232,10.5909,2637 +1681,4,0,11.1064,10.3495,2691 +1682,4,0,11.4751,10.5998,2620 +1683,4,0,11.4800,10.2570,2614 +1684,4,0,11.5538,10.3556,2666 +1685,4,0,11.5820,10.3682,2613 +1686,4,0,11.5984,10.1581,2624 +1687,4,0,11.2963,10.2932,2612 +1688,4,0,11.8295,10.3531,2687 +1689,4,0,11.8368,10.3630,2622 +1690,4,0,12.5583,10.6847,2623 +1691,4,0,11.9115,10.3483,2647 +1692,4,0,11.4732,10.0296,2645 +1693,4,0,11.6751,10.4728,2643 +1694,4,0,11.0661,10.4070,2635 +1695,4,0,11.9970,10.3997,2718 +1696,4,0,11.5600,10.2936,2602 +1697,4,0,11.6398,10.1294,2605 +1698,4,0,11.6311,10.1327,2612 +1699,4,0,11.7012,10.1048,2607 +1700,4,0,11.6196,10.2151,2630 +1701,4,0,11.7939,9.4512,2617 +1702,4,0,11.6874,10.2800,2661 +1703,4,0,11.4152,10.6562,2606 +1704,4,0,11.2508,10.4168,2609 +1705,4,0,11.2600,10.6647,2612 +1706,4,0,11.9333,10.2285,2632 +1707,4,0,11.7558,10.0400,2606 +1708,4,0,12.4944,9.7265,2610 +1709,4,0,11.2408,10.4491,2652 +1710,4,0,12.4868,10.0535,2594 +1711,4,0,11.7258,10.9428,2609 +1712,4,0,12.0220,10.3095,2598 +1713,4,0,12.1727,10.6320,2613 +1714,4,0,11.5631,10.0529,2618 +1715,4,0,12.6109,10.8071,2604 +1716,4,0,11.1623,10.3672,2677 +1717,4,0,11.1673,10.4305,2620 +1718,4,0,11.4339,10.5572,2594 +1719,4,0,10.9608,10.3145,2594 +1720,4,0,11.0700,10.4570,2598 +1721,4,0,10.7967,10.3018,2609 +1722,4,0,10.8803,10.2452,2616 +1723,4,0,11.1342,10.5860,2630 +1724,4,0,11.6136,10.5782,2606 +1725,4,0,11.4578,10.6717,2604 +1726,4,0,11.3255,10.6272,2609 +1727,4,0,10.9764,10.3210,2610 +1728,4,0,10.9143,10.3183,2652 +1729,4,0,10.9011,10.2227,2600 +1730,4,0,11.1167,10.4993,2640 +1731,4,0,10.8948,10.2913,2594 +1732,4,0,10.8532,10.3445,2594 +1733,4,0,10.9243,10.3962,2600 +1734,4,0,10.8938,10.3405,2599 +1735,4,0,10.9112,10.3237,2607 +1736,4,0,10.7966,10.2705,2603 +1737,4,0,11.0476,10.4145,2623 +1738,4,0,11.0742,10.2396,2600 +1739,4,0,11.4162,10.2614,2610 +1740,4,0,10.9766,10.2933,2594 +1741,4,0,10.9940,10.4213,2594 +1742,4,0,10.9712,10.3796,2603 +1743,4,0,10.9920,10.2579,2602 +1744,4,0,11.0765,10.4634,2619 +1745,4,0,10.9653,10.3485,2600 +1746,4,0,10.8481,10.3707,2600 +1747,4,0,10.8529,10.3253,2594 +1748,4,0,10.9672,10.4544,2594 +1749,4,0,11.1487,10.3537,2599 +1750,4,0,11.0810,10.4035,2607 +1751,4,0,11.0239,10.4503,2605 +1752,4,0,11.0233,10.4920,2596 +1753,4,0,10.9729,10.4602,2594 +1754,4,0,10.8769,10.4106,2594 +1755,4,0,11.0580,10.5330,2594 +1756,4,0,11.2420,10.4124,2594 +1757,4,0,11.0264,10.4706,2594 +1758,4,0,10.9983,10.3965,2604 +1759,4,0,10.9262,10.4523,2594 +1760,4,0,11.0764,10.4833,2594 +1761,4,0,10.9537,10.3757,2599 +1762,4,0,11.0149,10.5240,2594 +1763,4,0,10.9017,10.4166,2594 +1764,4,0,11.0250,10.5234,2594 +1765,4,0,11.3536,10.6336,2604 +1766,4,0,10.9137,10.4957,2594 +1767,4,0,10.8758,10.3641,2594 +1768,4,0,10.9297,10.3047,2594 +1769,4,0,10.8805,10.4093,2601 +1770,4,0,10.8880,10.3614,2601 +1771,4,0,10.8691,10.3494,2594 +1772,4,0,10.9885,10.3748,2606 +1773,4,0,11.0226,10.4342,2594 +1774,4,0,10.9778,10.4362,2594 +1775,4,0,11.1440,10.5474,2594 +1776,4,0,11.1308,10.5514,2594 +1777,4,0,11.1872,10.6528,2594 +1778,4,0,11.0895,10.6130,2594 +1779,4,0,10.9973,10.3953,2594 +1780,4,0,10.9285,10.4398,2594 +1781,4,0,11.0596,10.4703,2594 +1782,4,0,10.8645,10.4704,2594 +1783,4,0,10.8734,10.4338,2598 +1784,4,0,11.1903,10.6218,2594 +1785,4,0,11.1639,10.5022,2594 +1786,4,0,10.9591,10.3883,2594 +1787,4,0,10.7738,10.2182,2594 +1788,4,0,11.0068,10.4993,2594 +1789,4,0,11.0548,10.5482,2594 +1790,4,0,11.0371,10.5955,2594 +1791,4,0,10.9220,10.4172,2594 +1792,4,0,10.9454,10.4667,2594 +1793,4,0,10.8991,10.4297,2594 +1794,4,0,10.8606,10.3732,2594 +1795,4,0,10.9221,10.4640,2594 +1796,4,0,10.8890,10.4545,2594 +1797,4,0,10.8659,10.3937,2594 +1798,4,0,10.8560,10.4215,2594 +1799,4,0,10.9390,10.4024,2594 diff --git a/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md new file mode 100644 index 0000000..09019c7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md @@ -0,0 +1,27 @@ +# Tiled 5K60 Reset180 Sustain 30s + +| Metric | Value | +|---|---:| +| frames_encoded | 1800 | +| elapsed_seconds | 29.995 | +| effective_logical_fps | 60.009 | +| avg_encode_latency_ms | 12.100 | +| p95_encode_latency_ms | 12.690 | +| max_encode_latency_ms | 135.530 | +| avg_steady_encode_latency_ms | 12.057 | +| p95_steady_encode_latency_ms | 12.690 | +| max_steady_encode_latency_ms | 135.530 | +| avg_steady_max_tile_encode_latency_ms | 10.622 | +| p95_steady_max_tile_encode_latency_ms | 10.862 | +| payload_bytes | 10797730 | +| late_logical_gt_16_67_ms | 18 | +| late_logical_gt_33_33_ms | 10 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.587 | 13.457 | 135.530 | +| 300-599 | 12.485 | 13.345 | 126.674 | +| 600-899 | 11.626 | 12.389 | 121.477 | +| 900-1199 | 11.987 | 12.237 | 128.659 | +| 1200-1499 | 12.325 | 12.678 | 128.417 | +| 1500-1799 | 11.592 | 12.126 | 128.022 | diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv new file mode 100644 index 0000000..e0801ac --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9873,29.0646,0.0239,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8235,24.9698,0.0141,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8611,25.5963,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7859,25.1103,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9873,5.7467,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8235,5.6101,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8611,10.4320,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7859,10.4680,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9873,5.7014,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8235,5.6037,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8611,10.4745,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7859,10.4854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9873,5.6905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8235,5.5890,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8611,10.4245,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7859,10.4450,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9873,5.6466,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8235,5.6460,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8611,10.3830,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7859,10.4877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9873,5.6414,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8235,5.6269,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8611,10.3764,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7859,10.4411,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9873,5.7210,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8235,5.6321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8611,10.3725,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7859,10.4613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9873,5.6143,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8235,5.5965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8611,10.4062,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7859,10.4757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9873,5.4938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8235,5.5319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8611,10.2358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7859,10.3779,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9873,5.5657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8235,5.5148,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8611,10.2536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7859,10.3034,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9873,5.5683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8235,5.5625,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8611,10.2666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7859,10.3377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9873,5.5543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8235,5.5526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8611,10.2205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7859,10.1975,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9873,5.5687,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8235,5.4865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8611,10.2056,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7859,10.2250,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9873,5.8235,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8235,5.6235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8611,10.2610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7859,10.1746,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9873,5.6439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8235,5.6311,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8611,10.2207,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7859,10.3165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9873,5.6219,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8235,5.5860,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8611,10.2154,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7859,10.2634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9873,5.5960,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8235,5.8325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8611,9.8793,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7859,10.2392,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9873,5.6924,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8235,5.5955,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8611,10.3046,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7859,10.3237,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9873,6.0453,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8235,5.6759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8611,10.6135,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7859,10.5272,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9873,5.7625,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8235,5.6772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8611,10.2663,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7859,10.2550,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9873,5.8150,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8235,5.6061,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8611,10.3498,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7859,10.2614,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9873,6.1949,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8235,5.8552,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8611,10.4456,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7859,10.1855,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9873,6.5962,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8235,5.9140,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8611,10.2662,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7859,9.8877,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9873,6.3228,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8235,6.1406,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8611,9.8740,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7859,11.3435,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9873,6.2590,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8235,5.7463,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8611,10.0190,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7859,10.0158,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9873,6.3079,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8235,5.8321,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8611,9.9767,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7859,9.9963,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9873,6.4228,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8235,5.8449,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8611,9.8663,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7859,10.2790,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9873,6.2312,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8235,5.9567,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8611,9.9468,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7859,10.1893,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9873,6.4700,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8235,5.8247,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8611,9.7453,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7859,9.8853,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9873,6.4427,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8235,5.8178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8611,9.8183,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7859,9.9390,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9873,5.8670,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8235,5.6911,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8611,10.1345,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7859,10.1703,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9873,6.3809,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8235,5.7447,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8611,9.9293,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7859,10.4215,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9873,6.2583,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8235,5.7429,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8611,10.5322,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7859,10.2796,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9873,6.3933,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8235,5.7981,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8611,9.9000,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7859,10.0515,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9873,6.5647,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8235,5.8825,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8611,9.8008,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7859,10.0542,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9873,6.3768,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8235,5.8243,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8611,10.8911,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7859,10.6518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9873,6.3942,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8235,5.8182,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8611,10.0954,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7859,10.3086,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9873,6.1055,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8235,5.6645,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8611,10.1418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7859,10.1757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9873,6.1708,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8235,5.7281,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8611,10.5254,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7859,10.1593,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9873,6.5116,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8235,6.0093,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8611,10.0652,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7859,10.3667,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9873,6.3478,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8235,5.9177,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8611,10.0104,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7859,10.2351,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9873,6.3410,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8235,5.9351,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8611,10.0206,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7859,10.2237,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9873,6.0985,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8235,5.7864,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8611,9.9273,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7859,10.0262,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9873,6.1412,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8235,5.8225,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8611,9.8804,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7859,10.0519,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9873,6.1775,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8235,5.7592,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8611,10.0695,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7859,10.1382,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9873,6.2411,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8235,5.8460,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8611,9.9676,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7859,9.9887,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9873,6.2373,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8235,5.8458,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8611,9.8678,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7859,10.0910,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9873,6.1169,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8235,5.7865,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8611,9.8619,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7859,9.9543,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9873,6.2252,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8235,5.7883,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8611,10.4168,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7859,10.1986,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9873,6.3395,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8235,5.7672,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8611,10.1254,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7859,10.5693,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9873,6.3628,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8235,5.7575,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8611,10.0559,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7859,10.5386,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9873,6.9920,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8235,6.1061,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8611,10.2161,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7859,10.4332,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9873,6.3546,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8235,5.9385,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8611,9.2426,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7859,9.8973,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9873,6.4383,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8235,5.8793,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8611,9.8045,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7859,9.9810,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9873,6.4168,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8235,5.8067,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8611,9.8566,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7859,10.0382,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9873,6.2969,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8235,5.8122,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8611,9.8101,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7859,9.9809,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9873,6.5407,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8235,5.8002,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8611,10.2126,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7859,10.2551,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9873,6.4181,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8235,5.8511,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8611,9.8507,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7859,10.0382,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9873,6.4089,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8235,5.7688,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8611,9.8710,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7859,11.2079,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9873,6.5614,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8235,5.7682,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8611,10.0312,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7859,10.1750,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9873,6.6556,0.2355,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8235,5.9407,0.0745,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8611,10.0041,0.0683,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.7859,9.9495,0.0996,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,4.9873,6.4968,0.0432,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8235,5.8641,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8611,9.8925,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.7859,10.0870,0.0186,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,4.9873,6.4464,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8235,5.8164,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8611,9.7463,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.7859,11.9966,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,4.9873,6.3658,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8235,5.8252,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8611,9.9247,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.7859,9.9912,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,4.9873,6.4080,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8235,5.7699,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8611,9.8615,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.7859,10.1320,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,4.9873,6.3419,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8235,5.7556,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8611,9.8536,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.7859,10.0383,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,4.9873,6.6933,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8235,6.0851,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8611,10.8624,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.7859,10.6293,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,4.9873,7.1551,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8235,5.8712,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8611,10.1518,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.7859,10.0332,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,4.9873,6.4531,0.0241,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8235,5.7534,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8611,10.2780,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.7859,10.2128,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,4.9873,6.3717,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8235,5.7417,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8611,10.1495,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.7859,10.2745,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,4.9873,6.2649,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8235,5.7671,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8611,9.8703,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.7859,9.9806,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,4.9873,6.2970,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8235,5.7545,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8611,10.2250,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.7859,10.0147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,4.9873,5.9310,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8235,5.6544,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8611,10.4898,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.7859,10.4539,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,4.9873,6.4153,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8235,5.7524,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8611,9.9478,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.7859,10.1228,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,4.9873,6.3932,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8235,5.8329,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8611,9.9791,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.7859,10.1947,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,4.9873,6.4026,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8235,5.8698,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8611,9.7698,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.7859,10.2736,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,4.9873,6.4105,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8235,5.8277,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8611,9.9487,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.7859,10.0493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,4.9873,6.2766,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8235,5.8080,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8611,9.8317,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7859,9.9221,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,4.9873,6.0890,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8235,5.7527,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8611,10.3009,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.7859,9.9376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,4.9873,7.1709,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8235,6.3328,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8611,10.4277,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.7859,13.0725,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,4.9873,6.5149,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8235,5.6415,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8611,10.0943,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.7859,10.3186,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,4.9873,6.3825,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8235,5.8367,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8611,10.2040,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.7859,10.2320,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,4.9873,6.2788,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8235,5.7357,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8611,9.7652,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.7859,9.8064,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,4.9873,5.8651,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8235,5.6048,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8611,10.2284,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.7859,10.2106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,4.9873,5.7388,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8235,5.5898,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8611,10.2378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.7859,10.2304,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,4.9873,5.6142,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8235,5.5259,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8611,10.2200,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.7859,10.2101,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,4.9873,5.6233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8235,5.5177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8611,10.2444,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.7859,10.2439,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,4.9873,5.5906,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8235,5.5195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8611,10.1980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.7859,10.2083,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,4.9873,5.5980,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8235,5.5504,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8611,10.2305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.7859,10.2112,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,4.9873,5.6303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8235,5.5882,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8611,10.2805,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.7859,10.1758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,4.9873,5.9060,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8235,5.6699,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8611,10.2712,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.7859,10.2305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,4.9873,5.7367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8235,5.6397,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8611,10.1935,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.7859,10.2315,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,4.9873,5.7385,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8235,5.6519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8611,10.4920,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.7859,10.2832,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,4.9873,6.2860,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8235,5.8293,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8611,9.8854,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.7859,10.2458,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,4.9873,6.3259,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8235,5.7635,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8611,9.8423,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.7859,10.0872,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,4.9873,6.2535,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8235,5.8378,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8611,8.9253,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.7859,10.2320,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,4.9873,6.3906,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8235,5.8741,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8611,9.8901,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.7859,9.9413,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,4.9873,6.3803,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8235,5.8601,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8611,9.6228,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.7859,10.0555,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,4.9873,6.2757,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8235,5.7923,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8611,9.8587,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.7859,9.9910,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,4.9873,6.8574,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8235,6.7637,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8611,10.1850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7859,10.3004,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,4.9873,5.9437,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8235,5.5781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8611,10.3421,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.7859,10.2882,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,4.9873,6.2259,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8235,5.8478,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8611,10.0698,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.7859,10.1118,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,4.9873,6.0302,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8235,5.6507,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8611,10.3597,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.7859,10.2625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,4.9873,6.1491,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8235,5.7547,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8611,10.3793,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.7859,10.3157,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,4.9873,6.1453,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8235,5.7686,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8611,10.3520,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.7859,10.3366,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,4.9873,6.0703,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8235,5.8488,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8611,10.1634,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.7859,10.3158,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,4.9873,6.1212,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8235,5.9157,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8611,9.8413,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.7859,10.0235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,4.9873,6.2708,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8235,5.8466,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8611,9.8772,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.7859,10.1815,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,4.9873,6.1900,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8235,5.8090,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8611,10.5675,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.7859,10.4590,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,4.9873,6.2646,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8235,5.9043,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8611,9.8690,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7859,10.0303,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,4.9873,6.1966,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8235,5.8055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8611,9.9187,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7859,10.0437,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,4.9873,6.3428,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8235,5.8952,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8611,9.9323,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7859,11.0580,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,4.9873,6.1737,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8235,5.8025,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8611,10.1318,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.7859,10.2503,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,4.9873,6.4033,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8235,5.8783,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8611,9.8258,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.7859,9.9790,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,4.9873,6.4080,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8235,5.7945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8611,9.8237,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.7859,10.0053,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,4.9873,6.3380,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8235,5.7673,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8611,9.9900,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.7859,10.0871,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,4.9873,6.2864,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8235,5.7682,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8611,9.8887,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.7859,10.1495,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,4.9873,6.3700,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8235,5.7530,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8611,10.4126,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.7859,10.2777,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,4.9873,6.3137,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8235,5.7857,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8611,10.0825,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.7859,10.0452,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,4.9873,6.5081,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8235,5.8565,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8611,10.1771,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.7859,10.3941,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,4.9873,6.7448,0.0546,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8235,6.1406,0.0732,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8611,9.6290,0.0151,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.7859,9.7075,0.0159,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,4.9873,6.3080,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8235,5.7756,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8611,10.2816,0.0453,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.7859,10.5293,0.0335,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,4.9873,6.3924,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8235,5.8085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8611,9.9409,0.0693,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.7859,10.3642,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,4.9873,6.3735,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8235,5.8011,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8611,9.8718,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.7859,10.4714,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,4.9873,6.2873,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8235,5.7805,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8611,9.8737,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.7859,10.0627,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,4.9873,6.5250,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8235,5.9727,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8611,9.8197,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.7859,9.9994,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,4.9873,6.2580,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8235,5.7228,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8611,9.9413,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.7859,10.0431,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,4.9873,6.5914,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8235,5.8346,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8611,9.9207,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.7859,10.3690,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,4.9873,6.3993,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8235,5.8453,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8611,9.9023,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.7859,10.0682,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,4.9873,6.3795,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8235,5.8246,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8611,9.8805,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.7859,9.9424,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,4.9873,6.4965,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8235,5.8302,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8611,9.7018,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.7859,10.8235,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,4.9873,6.2997,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8235,5.7735,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8611,10.5524,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.7859,10.3759,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,4.9873,5.9642,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8235,5.6783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8611,10.2174,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.7859,10.2290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,4.9873,5.8185,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8235,5.7025,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8611,10.1022,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.7859,10.2202,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,4.9873,6.3061,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8235,5.6990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8611,10.1133,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.7859,10.2570,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,4.9873,7.1925,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8235,5.7778,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8611,9.6521,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.7859,9.7184,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,4.9873,6.1313,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8235,5.8211,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8611,9.8400,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.7859,9.8431,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,4.9873,6.3242,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8235,5.8204,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8611,9.8661,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.7859,10.0799,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,4.9873,6.0324,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8235,5.7000,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8611,11.1861,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.7859,10.7387,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,4.9873,6.5042,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8235,6.1433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8611,10.4085,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.7859,10.2136,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,4.9873,6.6673,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8235,6.1435,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8611,9.8763,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.7859,9.9966,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9873,6.3715,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8235,5.7731,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8611,9.3730,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.7859,10.1215,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,4.9873,6.2595,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8235,5.7923,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8611,9.8688,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7859,10.0033,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,4.9873,6.6118,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8235,5.8644,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8611,9.8323,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7859,9.7389,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,4.9873,6.4253,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8235,5.9283,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8611,9.8980,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.7859,10.0807,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,4.9873,6.4198,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8235,5.7627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8611,9.8574,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.7859,10.1523,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,4.9873,6.2992,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8235,5.6397,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8611,10.0602,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.7859,10.2238,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,4.9873,6.5431,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8235,5.8499,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8611,9.8004,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.7859,10.4438,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,4.9873,6.5861,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8235,5.8464,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8611,10.3149,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.7859,10.0973,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,4.9873,6.5282,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8235,5.8042,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8611,9.9382,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.7859,9.9202,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,4.9873,5.9115,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8235,5.6825,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8611,10.6548,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.7859,10.3510,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,4.9873,6.4850,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8235,5.7570,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8611,9.9756,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.7859,10.2689,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,4.9873,6.2900,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8235,5.7656,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8611,9.8556,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.7859,9.9898,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,4.9873,6.7080,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8235,5.9225,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8611,9.2402,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.7859,9.2902,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,4.9873,6.4223,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8235,5.8399,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8611,9.8547,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.7859,10.1240,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,4.9873,6.2214,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8235,5.8810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8611,9.1644,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7859,11.0228,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,4.9873,6.3092,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8235,5.7912,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8611,9.9132,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.7859,9.9910,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,4.9873,6.4371,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8235,5.7889,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8611,10.1774,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.7859,10.2888,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,4.9873,6.3528,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8235,5.6784,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8611,10.0657,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.7859,10.2026,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,4.9873,6.5049,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8235,5.8006,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8611,10.0663,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.7859,10.0306,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,4.9873,6.4801,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8235,5.8328,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8611,9.8508,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.7859,9.9823,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,4.9873,6.3327,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8235,5.7902,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8611,9.7070,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.7859,9.7818,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,4.9873,6.3340,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8235,5.7408,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8611,10.1875,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.7859,10.1080,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,4.9873,6.6847,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8235,5.8594,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8611,9.9196,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.7859,9.9775,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,4.9873,6.3100,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8235,5.7769,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8611,10.1303,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.7859,10.0054,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,4.9873,6.3349,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8235,5.8077,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8611,9.7948,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7859,9.8455,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,4.9873,6.4105,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8235,5.8214,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8611,9.8445,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7859,11.3046,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,4.9873,6.3452,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8235,5.8697,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8611,9.8440,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7859,9.9483,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,4.9873,6.0566,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8235,5.7727,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8611,10.4314,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.7859,10.2235,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,4.9873,6.1318,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8235,6.2467,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8611,9.6060,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.7859,10.2198,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,4.9873,6.6190,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8235,5.7398,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8611,14.1075,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.7859,14.1098,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,4.9873,6.3472,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8235,5.6259,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8611,10.0224,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.7859,10.1337,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,4.9873,6.6125,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8235,5.8675,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8611,9.8430,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.7859,10.1752,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,4.9873,6.2935,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8235,5.7655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8611,9.8422,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.7859,9.9676,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,4.9873,6.5023,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8235,5.8495,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8611,9.9134,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.7859,9.9536,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,4.9873,6.2951,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8235,5.8062,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8611,9.6694,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.7859,9.7476,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,4.9873,5.8987,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8235,5.5651,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8611,10.2789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.7859,10.2484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,4.9873,5.8310,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8235,5.6168,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8611,10.3493,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.7859,10.3102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,4.9873,5.7287,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8235,5.6163,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8611,10.2075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.7859,10.2301,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,4.9873,5.8796,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8235,5.7063,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8611,10.4292,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,2.7859,10.3327,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,4.9873,44.3453,0.0180,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8235,28.3596,0.0158,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8611,25.7113,0.0056,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.7859,25.2282,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,4.9873,5.7117,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8235,5.6251,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8611,10.5521,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.7859,10.5284,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,4.9873,5.8204,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8235,5.5819,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8611,10.6288,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.7859,10.6561,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,4.9873,5.7570,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8235,5.6069,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8611,10.4541,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.7859,10.5171,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,4.9873,5.6355,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8235,5.5827,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8611,10.4520,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.7859,10.4498,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,4.9873,5.7298,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8235,5.6180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8611,10.5388,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.7859,10.5425,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,4.9873,5.6890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8235,5.5710,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8611,10.4659,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.7859,10.4785,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,4.9873,5.5674,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8235,5.5607,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8611,10.3977,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.7859,10.4073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,4.9873,5.6191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8235,5.5740,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8611,10.2763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.7859,10.3082,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,4.9873,5.5673,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8235,5.5888,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8611,10.3540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.7859,10.4147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,4.9873,5.5656,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8235,5.5540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8611,10.2073,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.7859,10.2437,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,4.9873,5.5569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8235,5.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8611,10.3700,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.7859,10.3584,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,4.9873,5.6392,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8235,5.5436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8611,10.4121,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.7859,10.4271,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,4.9873,5.7690,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8235,5.6234,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8611,10.4624,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.7859,10.4630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,4.9873,5.6095,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8235,5.5826,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8611,10.3362,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.7859,10.4378,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,4.9873,5.5859,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8235,5.6909,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8611,10.3172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.7859,10.4597,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,4.9873,5.5481,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8235,5.5419,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8611,10.2402,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.7859,10.4020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,4.9873,5.5564,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8235,5.4726,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8611,10.3049,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.7859,10.3004,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,4.9873,5.5815,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8235,5.5011,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8611,10.3972,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.7859,10.3648,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,4.9873,5.9027,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8235,5.6489,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8611,10.3534,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.7859,10.3230,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,4.9873,5.9657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8235,5.6113,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8611,10.3202,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.7859,10.2542,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,4.9873,5.6776,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8235,5.5938,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8611,10.1884,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.7859,10.2097,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,4.9873,5.5997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8235,5.5974,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8611,10.2786,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7859,10.2728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,4.9873,5.6840,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8235,5.6836,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8611,10.1258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.7859,10.2262,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,4.9873,6.0730,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8235,5.7750,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8611,10.2941,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.7859,10.2621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,4.9873,6.2657,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8235,5.9602,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8611,9.9021,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.7859,9.9802,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,4.9873,6.5092,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8235,6.2206,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8611,11.3403,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.7859,11.8937,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,4.9873,6.5089,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8235,5.7220,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8611,10.1172,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.7859,10.2574,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,4.9873,6.1805,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8235,5.9596,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8611,8.8743,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.7859,10.0853,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,4.9873,7.3922,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8235,6.5727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8611,9.0497,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.7859,8.8287,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,4.9873,6.0622,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8235,5.6643,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8611,10.5693,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.7859,10.3575,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,4.9873,6.5038,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8235,5.7089,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8611,10.1086,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.7859,10.2049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,4.9873,6.5467,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8235,5.8951,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8611,9.8257,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.7859,10.1865,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,4.9873,6.4295,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8235,6.0534,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8611,10.0034,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.7859,10.1233,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,4.9873,6.4857,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8235,5.7538,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8611,10.3612,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.7859,10.3741,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,4.9873,6.3639,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8235,5.8552,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8611,9.8422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.7859,10.2993,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9873,6.5662,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8235,5.8510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8611,9.9863,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.7859,9.9055,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,4.9873,5.8803,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8235,5.7542,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8611,10.3821,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.7859,10.3158,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,4.9873,6.0953,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8235,5.6558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8611,10.3876,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.7859,10.2786,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,4.9873,5.8874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8235,5.6450,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8611,10.3123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.7859,10.2985,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,4.9873,6.1634,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8235,5.6946,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8611,10.6410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.7859,10.4772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,4.9873,6.3670,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8235,5.9078,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8611,10.8050,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.7859,10.7205,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,4.9873,6.2155,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8235,5.8015,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8611,10.7709,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.7859,10.4770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9873,6.1533,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8235,5.7449,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8611,10.6019,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.7859,10.5976,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,4.9873,5.9794,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8235,5.6997,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8611,10.6154,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.7859,10.6291,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,4.9873,6.0162,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8235,5.6200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8611,10.5218,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.7859,10.5350,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,4.9873,5.9294,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8235,5.6328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8611,10.5245,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.7859,10.5403,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,4.9873,5.7878,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8235,5.5388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8611,10.3773,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.7859,10.3760,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,4.9873,5.8204,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8235,5.5961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8611,10.5959,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.7859,10.6013,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9873,5.9022,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8235,5.6997,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8611,10.7118,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.7859,10.7718,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,4.9873,6.3628,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8235,5.9467,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8611,10.0135,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.7859,10.7567,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9873,6.8161,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8235,6.0618,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8611,9.9281,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.7859,9.9139,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,4.9873,6.2842,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8235,5.8619,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8611,9.7034,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.7859,9.7878,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,4.9873,6.2088,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8235,5.7200,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8611,10.1130,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.7859,10.1796,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,4.9873,6.4076,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8235,5.8793,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8611,9.9846,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7859,10.1957,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,4.9873,6.2940,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8235,5.8205,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8611,9.8827,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7859,9.9723,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9873,6.6768,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8235,5.9340,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8611,10.1003,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7859,10.0299,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,4.9873,6.3029,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8235,5.8188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8611,10.2046,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7859,10.1398,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,4.9873,6.5196,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8235,5.8324,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8611,9.9876,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.7859,10.0334,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,4.9873,6.7448,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8235,5.9302,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8611,10.1296,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.7859,10.0262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,4.9873,6.4906,0.0334,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8235,5.9301,0.0413,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8611,10.3975,0.1361,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.7859,10.2174,0.1530,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,4.9873,6.7631,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8235,5.9987,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8611,10.3343,0.0444,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.7859,10.4970,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,4.9873,6.4683,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8235,5.8572,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8611,9.8726,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.7859,10.1000,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,4.9873,6.4763,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8235,5.8092,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8611,9.9915,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.7859,10.2525,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,4.9873,6.6434,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8235,5.9005,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8611,10.1621,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.7859,10.0799,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,4.9873,6.4150,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8235,5.8819,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8611,10.1363,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.7859,10.2301,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,4.9873,7.5585,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8235,6.4765,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8611,10.1655,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.7859,9.9608,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,4.9873,6.8742,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8235,5.9777,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8611,9.9906,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.7859,10.1847,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,4.9873,6.3042,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8235,5.8042,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8611,9.8065,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.7859,10.0453,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,4.9873,6.4101,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8235,5.8913,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8611,9.8524,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.7859,9.7548,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,4.9873,6.4890,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8235,5.8813,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8611,9.9616,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.7859,10.0279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,4.9873,6.3006,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8235,6.2802,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8611,9.1049,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.7859,10.5356,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,4.9873,6.1154,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8235,5.7287,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8611,10.1103,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.7859,10.1754,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,4.9873,5.9195,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8235,5.7162,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8611,10.4876,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.7859,10.2737,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,4.9873,6.7180,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8235,5.9057,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8611,10.1692,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.7859,10.2429,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,4.9873,6.6567,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8235,5.8976,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8611,9.9890,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.7859,10.2260,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,4.9873,6.4465,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8235,5.8720,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8611,10.0589,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.7859,10.1975,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,4.9873,6.4891,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8235,5.8604,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8611,9.7040,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7859,10.0258,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,4.9873,6.1596,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8235,5.7588,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8611,10.7540,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.7859,10.3092,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,4.9873,6.1308,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8235,6.1041,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8611,12.6303,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.7859,12.2494,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,4.9873,6.7228,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8235,5.9195,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8611,12.8887,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.7859,12.9117,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,4.9873,6.3325,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8235,5.7662,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8611,10.2940,0.0753,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.7859,10.3980,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,4.9873,6.4014,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8235,5.8127,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8611,10.4750,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.7859,10.4163,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,4.9873,6.5778,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8235,5.8575,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8611,9.9011,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.7859,10.0612,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,4.9873,6.4738,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8235,5.8725,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8611,9.9536,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.7859,10.0042,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,4.9873,6.5184,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8235,5.9098,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8611,9.9300,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.7859,10.1177,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,4.9873,6.3456,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8235,5.7590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8611,10.1477,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.7859,10.2308,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,4.9873,6.5077,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8235,5.8126,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8611,9.9556,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.7859,10.1608,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,4.9873,6.6144,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8235,5.8001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8611,10.1074,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.7859,10.1951,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,4.9873,6.5605,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8235,5.7804,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8611,14.3085,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.7859,13.8766,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,4.9873,6.4264,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8235,6.0527,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8611,10.8866,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.7859,10.5672,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,4.9873,6.8389,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8235,5.8651,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8611,10.0576,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.7859,10.0433,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,4.9873,6.3195,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8235,5.8211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8611,9.8793,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.7859,10.0980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,4.9873,6.4444,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8235,5.8105,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8611,13.8626,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.7859,13.4667,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,4.9873,6.4713,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8235,5.7185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8611,10.5778,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.7859,10.4826,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,4.9873,6.2709,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8235,5.8280,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8611,9.9871,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.7859,10.1064,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,4.9873,6.0359,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8235,5.7951,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8611,9.8193,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.7859,9.9588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,4.9873,6.3671,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8235,5.9233,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8611,10.7318,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.7859,10.5460,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,4.9873,6.4250,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8235,5.9982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8611,10.0260,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.7859,10.2193,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,4.9873,6.3327,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8235,5.9750,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8611,10.0606,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.7859,10.0865,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,4.9873,6.3893,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8235,5.8625,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8611,10.3199,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.7859,10.1770,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,4.9873,6.2046,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8235,5.8227,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8611,9.9606,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.7859,10.0722,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,4.9873,6.3272,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8235,5.8811,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8611,9.8842,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.7859,10.0716,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,4.9873,6.4275,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8235,5.8335,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8611,10.7958,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.7859,10.1975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,4.9873,5.9868,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8235,5.8164,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8611,9.4363,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.7859,10.0520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,4.9873,6.3408,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8235,5.8641,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8611,10.5625,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.7859,11.8619,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,4.9873,6.3779,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8235,5.7355,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8611,10.3657,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.7859,9.0832,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,4.9873,6.5773,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8235,6.0260,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8611,9.7106,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.7859,9.9419,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,4.9873,5.8438,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8235,5.5692,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8611,10.4387,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.7859,10.3459,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,4.9873,5.9030,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8235,5.6471,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8611,10.2548,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.7859,10.2556,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,4.9873,6.0590,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8235,5.7763,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8611,9.9567,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7859,10.2215,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,4.9873,6.1625,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8235,5.9466,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8611,9.8639,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.7859,9.9251,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,4.9873,6.2450,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8235,5.8693,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8611,9.9525,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.7859,9.9530,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,4.9873,6.3399,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8235,5.7972,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8611,9.9895,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.7859,9.9917,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,4.9873,6.2068,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8235,5.7691,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8611,9.9700,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.7859,10.3323,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,4.9873,6.2775,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8235,5.8066,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8611,9.8158,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.7859,10.0083,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,4.9873,6.2575,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8235,5.7549,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8611,11.2371,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.7859,11.0508,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,4.9873,6.2909,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8235,5.8350,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8611,10.5795,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.7859,10.3604,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,4.9873,6.4371,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8235,5.9035,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8611,9.7850,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.7859,10.0924,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,4.9873,6.4088,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8235,5.9043,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8611,9.5381,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.7859,10.6147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt new file mode 100644 index 0000000..43a8940 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt @@ -0,0 +1,63 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +warmup_frames=0 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=300 +elapsed_seconds=4.997 +effective_logical_fps=60.040 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=12.501 +p95_encode_latency_ms=13.222 +max_encode_latency_ms=123.935 +avg_steady_encode_latency_ms=12.501 +p95_steady_encode_latency_ms=13.222 +max_steady_encode_latency_ms=123.935 +avg_tile_encode_latency_ms=8.258 +p95_tile_encode_latency_ms=10.578 +avg_max_tile_encode_latency_ms=10.514 +p95_max_tile_encode_latency_ms=11.187 +avg_steady_max_tile_encode_latency_ms=10.514 +p95_steady_max_tile_encode_latency_ms=11.187 +payload_bytes=3903440 +send_target=none +csv=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md new file mode 100644 index 0000000..6a33fa4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md @@ -0,0 +1,24 @@ +# Tiled Deadline Analysis — m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 300 | +| avg_group_latency_ms | 12.501 | +| p95_group_latency_ms | 13.222 | +| max_group_latency_ms | 123.935 | +| effective_logical_fps | 60.040 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 300 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 95 | 31.667% | 0, 22, 23, 26, 28, 29, 31, 33, 35, 39, 49, 50, ... | +| 16.67 | 2 | 0.667% | 0, 180 | +| 20.00 | 2 | 0.667% | 0, 180 | +| 33.33 | 2 | 0.667% | 0, 180 | +| 50.00 | 2 | 0.667% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.501 | 13.222 | 123.935 | diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv new file mode 100644 index 0000000..b18ffc9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,105.0765,29.0646,231707 +1,4,0,10.9866,10.4680,65901 +2,4,0,10.9059,10.4854,36886 +3,4,0,10.9103,10.4450,69404 +4,4,0,10.9229,10.4877,87864 +5,4,0,10.9262,10.4411,53700 +6,4,0,10.9207,10.4613,24415 +7,4,0,10.8929,10.4757,15407 +8,4,0,10.8120,10.3779,12151 +9,4,0,10.8079,10.3034,11449 +10,4,0,10.8770,10.3377,8599 +11,4,0,10.7692,10.2205,6107 +12,4,0,10.7482,10.2250,5132 +13,4,0,11.1350,10.2610,3880 +14,4,0,10.9561,10.3165,4001 +15,4,0,10.9066,10.2634,3860 +16,4,0,11.2034,10.2392,4045 +17,4,0,10.9858,10.3237,3955 +18,4,0,11.3720,10.6135,3721 +19,4,0,11.1065,10.2663,3748 +20,4,0,10.9459,10.3498,3386 +21,4,0,11.0834,10.4456,2761 +22,4,0,12.2483,10.2662,2750 +23,4,0,13.2733,11.3435,2836 +24,4,0,11.9080,10.0190,2977 +25,4,0,11.8171,9.9963,2960 +26,4,0,12.2059,10.2790,3010 +27,4,0,11.8716,10.1893,2978 +28,4,0,12.2579,9.8853,2889 +29,4,0,12.2186,9.9390,2914 +30,4,0,11.1072,10.1703,2847 +31,4,0,12.0755,10.4215,3111 +32,4,0,11.7754,10.5322,2714 +33,4,0,12.0267,10.0515,2843 +34,4,0,11.8948,10.0542,2633 +35,4,0,12.5416,10.8911,2659 +36,4,0,11.5759,10.3086,2696 +37,4,0,11.2802,10.1757,2728 +38,4,0,11.3738,10.5254,2772 +39,4,0,12.1297,10.3667,2740 +40,4,0,11.9060,10.2351,2809 +41,4,0,11.8662,10.2237,2679 +42,4,0,11.7270,10.0262,2865 +43,4,0,11.6705,10.0519,2612 +44,4,0,11.7820,10.1382,2626 +45,4,0,11.6912,9.9887,2693 +46,4,0,11.8531,10.0910,2708 +47,4,0,11.7075,9.9543,2765 +48,4,0,11.5059,10.4168,2645 +49,4,0,12.1459,10.5693,2733 +50,4,0,12.2995,10.5386,2667 +51,4,0,12.0912,10.4332,2647 +52,4,0,12.2327,9.8973,2659 +53,4,0,11.9764,9.9810,2757 +54,4,0,11.9842,10.0382,2656 +55,4,0,11.8017,9.9809,2594 +56,4,0,12.3604,10.2551,2603 +57,4,0,11.9744,10.0382,2605 +58,4,0,13.1942,11.2079,2610 +59,4,0,11.9941,10.1750,2641 +60,4,0,12.1194,10.0041,442009 +61,4,0,12.0452,10.0870,52997 +62,4,0,14.1517,11.9966,26956 +63,4,0,11.8877,9.9912,26939 +64,4,0,12.0120,10.1320,22402 +65,4,0,11.9525,10.0383,15271 +66,4,0,12.7357,10.8624,12647 +67,4,0,12.4351,10.1518,10161 +68,4,0,11.6776,10.2780,9695 +69,4,0,11.8226,10.2745,5893 +70,4,0,11.8748,9.9806,5590 +71,4,0,11.8477,10.2250,5226 +72,4,0,11.3294,10.4898,5095 +73,4,0,11.9118,10.1228,5164 +74,4,0,11.7779,10.1947,4634 +75,4,0,12.2346,10.2736,5338 +76,4,0,11.9229,10.0493,2984 +77,4,0,11.8823,9.9221,2918 +78,4,0,11.3927,10.3009,3051 +79,4,0,14.8247,13.0725,3217 +80,4,0,11.9891,10.3186,3680 +81,4,0,11.7029,10.2320,3433 +82,4,0,11.7965,9.8064,3891 +83,4,0,11.0907,10.2284,2978 +84,4,0,10.9448,10.2378,2906 +85,4,0,10.8024,10.2200,2925 +86,4,0,10.8107,10.2444,3487 +87,4,0,10.8176,10.2083,2969 +88,4,0,10.8014,10.2305,2822 +89,4,0,10.8145,10.2805,3027 +90,4,0,11.1431,10.2712,2708 +91,4,0,10.9839,10.2315,2735 +92,4,0,11.1678,10.4920,2688 +93,4,0,12.0066,10.2458,2954 +94,4,0,12.0103,10.0872,3013 +95,4,0,13.2062,10.2320,2878 +96,4,0,11.9986,9.9413,3036 +97,4,0,12.1923,10.0555,2909 +98,4,0,11.8415,9.9910,2598 +99,4,0,11.5564,10.3004,2609 +100,4,0,11.3257,10.3421,2615 +101,4,0,11.8622,10.1118,2652 +102,4,0,11.3353,10.3597,2667 +103,4,0,11.3819,10.3793,2728 +104,4,0,11.4685,10.3520,2632 +105,4,0,11.5608,10.3158,2620 +106,4,0,11.5335,10.0235,2603 +107,4,0,11.9758,10.1815,2633 +108,4,0,11.2789,10.5675,2885 +109,4,0,11.8985,10.0303,2631 +110,4,0,11.6685,10.0437,2679 +111,4,0,13.0139,11.0580,2594 +112,4,0,11.6156,10.2503,2610 +113,4,0,11.8531,9.9790,2618 +114,4,0,12.0985,10.0053,2639 +115,4,0,11.9750,10.0871,2683 +116,4,0,12.0545,10.1495,2662 +117,4,0,11.6030,10.4126,2669 +118,4,0,11.9757,10.0825,2661 +119,4,0,12.0037,10.3941,2767 +120,4,0,11.6495,9.7075,412099 +121,4,0,12.2216,10.5293,58619 +122,4,0,12.3270,10.3642,48033 +123,4,0,12.4081,10.4714,38505 +124,4,0,11.9612,10.0627,33624 +125,4,0,11.9105,9.9994,18519 +126,4,0,11.8902,10.0431,15662 +127,4,0,12.2380,10.3690,11727 +128,4,0,12.0312,10.0682,10164 +129,4,0,12.0538,9.9424,8732 +130,4,0,13.7373,10.8235,8017 +131,4,0,11.7202,10.5524,5177 +132,4,0,11.1502,10.2290,3438 +133,4,0,11.1168,10.2202,3236 +134,4,0,11.7577,10.2570,3208 +135,4,0,12.8588,9.7184,3684 +136,4,0,11.7547,9.8431,3691 +137,4,0,11.8830,10.0799,3794 +138,4,0,11.8640,11.1861,3974 +139,4,0,11.4477,10.4085,3178 +140,4,0,12.1617,9.9966,3070 +141,4,0,12.6318,10.1215,3397 +142,4,0,11.8802,10.0033,2792 +143,4,0,12.0407,9.8323,2888 +144,4,0,12.0640,10.0807,2885 +145,4,0,12.1186,10.1523,3092 +146,4,0,11.8112,10.2238,2712 +147,4,0,12.4615,10.4438,2692 +148,4,0,12.1551,10.3149,2781 +149,4,0,11.9649,9.9382,2731 +150,4,0,11.3406,10.6548,2815 +151,4,0,11.9350,10.2689,2761 +152,4,0,11.8617,9.9898,3174 +153,4,0,12.2971,9.2902,2599 +154,4,0,12.1064,10.1240,2594 +155,4,0,13.4503,11.0228,2600 +156,4,0,11.8122,9.9910,2646 +157,4,0,11.8098,10.2888,2717 +158,4,0,11.7674,10.2026,2764 +159,4,0,12.0811,10.0663,2916 +160,4,0,11.9251,9.9823,2625 +161,4,0,11.9489,9.7818,2618 +162,4,0,11.9618,10.1875,2617 +163,4,0,12.2258,9.9775,2801 +164,4,0,11.8690,10.1303,2641 +165,4,0,11.9742,9.8455,2631 +166,4,0,13.3594,11.3046,2755 +167,4,0,11.9158,9.9483,2594 +168,4,0,11.1365,10.4314,2611 +169,4,0,11.8688,10.2198,2613 +170,4,0,15.6532,14.1098,2654 +171,4,0,11.6263,10.1337,2706 +172,4,0,12.3228,10.1752,2658 +173,4,0,11.8554,9.9676,2713 +174,4,0,12.0660,9.9536,2681 +175,4,0,11.8845,9.7476,2594 +176,4,0,11.0973,10.2789,2594 +177,4,0,11.0362,10.3493,2599 +178,4,0,10.9350,10.2301,2615 +179,4,0,11.1971,10.4292,2631 +180,4,0,123.9350,44.3453,231707 +181,4,0,10.9247,10.5521,65901 +182,4,0,11.1625,10.6561,36886 +183,4,0,11.0127,10.5171,69404 +184,4,0,10.8481,10.4520,87864 +185,4,0,11.0398,10.5425,53700 +186,4,0,10.8957,10.4785,24415 +187,4,0,10.8351,10.4073,15407 +188,4,0,10.8495,10.3082,12151 +189,4,0,10.9095,10.4147,11449 +190,4,0,10.7566,10.2437,8599 +191,4,0,10.7506,10.3700,6107 +192,4,0,10.9162,10.4271,5132 +193,4,0,10.9771,10.4630,3880 +194,4,0,10.8838,10.4378,4001 +195,4,0,10.9157,10.4597,3860 +196,4,0,10.8338,10.4020,4045 +197,4,0,10.7404,10.3049,3955 +198,4,0,10.8199,10.3972,3721 +199,4,0,11.1262,10.3534,3748 +200,4,0,11.0381,10.3202,3386 +201,4,0,10.8844,10.2097,2761 +202,4,0,10.8491,10.2786,2750 +203,4,0,11.0108,10.2262,2836 +204,4,0,11.0817,10.2941,2977 +205,4,0,11.7525,9.9802,2960 +206,4,0,13.6737,11.8937,3010 +207,4,0,11.7886,10.2574,2978 +208,4,0,12.7004,10.0853,2889 +209,4,0,11.7267,9.0497,2914 +210,4,0,11.3363,10.5693,2847 +211,4,0,11.8197,10.2049,3111 +212,4,0,12.2958,10.1865,2714 +213,4,0,12.0780,10.1233,2843 +214,4,0,11.8918,10.3741,2633 +215,4,0,12.2425,10.2993,2659 +216,4,0,12.1264,9.9863,2696 +217,4,0,11.1246,10.3821,2728 +218,4,0,11.1965,10.3876,2772 +219,4,0,10.9340,10.3123,2740 +220,4,0,11.3976,10.6410,2809 +221,4,0,11.6079,10.8050,2679 +222,4,0,11.5060,10.7709,2865 +223,4,0,11.3345,10.6019,2612 +224,4,0,11.2027,10.6291,2626 +225,4,0,11.2065,10.5350,2693 +226,4,0,11.1077,10.5403,2708 +227,4,0,10.9832,10.3773,2765 +228,4,0,11.0902,10.6013,2645 +229,4,0,11.2325,10.7718,2733 +230,4,0,12.7106,10.7567,2667 +231,4,0,11.7540,9.9281,2647 +232,4,0,11.7955,9.7878,2659 +233,4,0,11.7307,10.1796,2757 +234,4,0,12.1025,10.1957,2656 +235,4,0,11.8419,9.9723,2594 +236,4,0,12.1396,10.1003,2603 +237,4,0,12.0315,10.2046,2605 +238,4,0,12.0058,10.0334,2610 +239,4,0,12.0982,10.1296,2641 +240,4,0,11.7620,10.3975,442009 +241,4,0,12.1690,10.4970,52997 +242,4,0,12.0254,10.1000,26956 +243,4,0,12.1723,10.2525,26939 +244,4,0,12.0826,10.1621,22402 +245,4,0,11.8010,10.2301,15271 +246,4,0,12.1273,10.1655,12647 +247,4,0,12.5055,10.1847,10161 +248,4,0,11.9927,10.0453,9695 +249,4,0,11.7577,9.8524,5893 +250,4,0,11.9858,10.0279,5590 +251,4,0,13.1575,10.5356,5226 +252,4,0,11.3997,10.1754,5095 +253,4,0,11.2683,10.4876,5164 +254,4,0,11.7622,10.2429,4634 +255,4,0,12.2906,10.2260,5338 +256,4,0,12.1661,10.1975,2984 +257,4,0,12.2430,10.0258,2918 +258,4,0,11.5814,10.7540,3051 +259,4,0,14.0121,12.6303,3217 +260,4,0,14.5960,12.9117,3680 +261,4,0,11.8929,10.3980,3433 +262,4,0,11.9084,10.4750,3891 +263,4,0,12.1855,10.0612,2978 +264,4,0,12.0901,10.0042,2906 +265,4,0,12.0915,10.1177,2925 +266,4,0,11.6918,10.2308,3487 +267,4,0,11.9847,10.1608,2969 +268,4,0,11.9017,10.1951,2822 +269,4,0,16.0318,14.3085,3027 +270,4,0,11.6761,10.8866,2708 +271,4,0,12.3114,10.0576,2735 +272,4,0,12.0115,10.0980,2688 +273,4,0,15.4514,13.8626,2954 +274,4,0,11.9696,10.5778,3013 +275,4,0,11.8519,10.1064,2878 +276,4,0,11.6493,9.9588,3036 +277,4,0,11.6318,10.7318,2909 +278,4,0,11.9800,10.2193,2598 +279,4,0,11.8369,10.0865,2609 +280,4,0,11.8947,10.3199,2615 +281,4,0,11.7905,10.0722,2652 +282,4,0,11.8898,10.0716,2667 +283,4,0,13.2192,10.7958,2728 +284,4,0,11.9132,10.0520,2632 +285,4,0,13.3852,11.8619,2620 +286,4,0,11.4565,10.3657,2603 +287,4,0,12.1156,9.9419,2633 +288,4,0,10.9000,10.4387,2885 +289,4,0,11.2430,10.2556,2631 +290,4,0,11.6147,10.2215,2679 +291,4,0,11.7374,9.9251,2594 +292,4,0,11.7335,9.9530,2610 +293,4,0,12.0738,9.9917,2618 +294,4,0,11.9478,10.3323,2639 +295,4,0,11.8963,10.0083,2683 +296,4,0,12.8883,11.2371,2662 +297,4,0,11.7795,10.5795,2669 +298,4,0,12.0147,10.0924,2661 +299,4,0,12.9877,10.6147,2767 diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv new file mode 100644 index 0000000..4ae1a40 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.2227,38.0405,0.0450,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.9423,12.6845,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.6838,15.7453,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.4038,19.3350,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1737,23.1900,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.0888,23.4032,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.5408,17.0295,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.5060,12.8190,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.5630,12.5691,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6302,12.5140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.9267,12.4528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7165,12.4380,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8575,12.7128,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.4852,13.3500,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.4766,12.3926,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.6470,12.4743,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.7608,12.4670,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7359,12.3800,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8814,12.3860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.7692,12.4656,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,8.2270,12.6696,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,8.1417,12.7693,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,8.1758,12.8183,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,8.1145,12.7950,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,8.1636,13.0574,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.9617,12.5545,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.9434,12.7045,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.8467,12.5078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8491,12.4665,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.0080,13.3938,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.9196,12.5705,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.9708,12.5576,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,8.1402,12.6675,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9263,12.6065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9119,12.5162,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.7929,12.4712,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8392,12.6207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.0158,12.4856,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9600,12.5500,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.9055,12.4938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9097,12.4443,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0265,12.4865,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8497,12.4062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8440,12.5413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.0508,12.4778,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8512,13.0445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.8594,12.4336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9503,12.3734,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,8.0715,12.4969,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.0778,12.5213,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.9208,12.3657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.8727,12.3548,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.1241,12.3764,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,8.2836,12.4414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.0086,12.3845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.8174,12.4041,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8737,12.4102,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.9625,12.4296,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9875,12.3377,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.6898,12.3899,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7018,12.2398,0.0749,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9418,13.1104,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.8420,12.4840,0.0404,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9010,12.5808,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.7802,12.4685,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.7648,12.4225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.7222,12.4880,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.7598,12.3667,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.7996,12.6304,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.7132,12.4263,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.7957,12.4214,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8079,12.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.8135,12.4114,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.9778,12.6321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.7929,12.5055,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.7555,12.3963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8008,12.4201,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7835,13.0138,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.7512,12.3954,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.8430,12.4560,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.7616,12.4999,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7969,12.5177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.7240,12.4028,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.8814,12.4512,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.7916,12.4403,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.7616,12.4393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.8289,12.4642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.7412,12.4499,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7797,12.4920,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.8201,12.4312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8922,12.4780,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.0217,12.6458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.8841,12.4201,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,8.0116,13.0410,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,8.0021,12.3796,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8695,12.3445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8036,12.4612,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,8.1355,12.3619,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.8949,12.5884,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.9415,12.5082,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.8270,12.4358,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.9254,12.5574,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.9881,12.4388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9798,12.3886,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.8678,12.4304,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8640,12.4690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8915,12.4310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.8739,12.4325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,8.0305,12.4986,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,8.0644,13.0490,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8195,12.3781,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.8113,12.4164,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.8681,12.4182,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.9502,12.3840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.0544,12.4603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,8.0467,12.4266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.7376,12.4033,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.7717,12.3874,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.6990,12.4496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.9188,12.5169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8258,12.2545,0.0700,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,8.2809,12.5271,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.0189,12.3924,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.5961,12.6160,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.9029,12.5465,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8536,13.0555,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.6980,12.4582,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.7100,12.4159,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.9713,12.5290,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.6471,12.4694,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.6634,12.4382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.6720,12.4583,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.5888,12.5532,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.9262,12.5567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.7345,12.4361,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8178,12.5097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.7548,12.5442,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.8316,12.4662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.7352,12.3826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8712,12.5951,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.9946,12.5861,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.7138,13.0300,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8740,12.4301,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.9049,12.4334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.6874,12.5505,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.7704,12.5080,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7098,12.4554,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.7773,12.5208,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.7773,12.4694,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7259,12.5043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7557,12.4599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.8571,12.5092,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.8702,12.7216,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8006,12.4313,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.6850,12.4774,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.7614,12.4312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.7406,12.4624,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.7336,12.9828,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.8582,12.5635,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.0317,12.5696,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.9339,12.4318,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8933,12.4824,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.9289,12.4329,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8436,12.4648,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,8.0472,12.5082,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.7528,12.4667,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8142,12.3701,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.8470,12.4377,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.8517,12.5146,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.6554,12.4931,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7803,12.4334,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.7579,12.5092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.9003,12.4497,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.8320,13.0030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.8448,12.4321,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7368,12.4374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8003,12.4787,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.7471,12.4584,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8678,12.3918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.7504,12.4911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.7722,12.2468,0.0403,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8395,12.4118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.7397,23.3940,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.9607,27.1639,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.6749,34.3316,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7416,38.2405,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.6765,41.6210,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.7997,42.4541,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.7460,43.7877,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.7718,45.5088,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.8175,45.4618,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.7668,45.7214,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.9590,45.4506,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.7250,45.6407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8894,46.6405,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.7414,46.9601,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.8392,45.7705,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.8821,46.0992,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.8711,45.7230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9742,45.4760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.8468,46.7656,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8388,46.6663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7844,45.4275,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8039,46.4272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8485,46.7884,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9967,45.9711,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.7495,46.1066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.7615,46.7413,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.8260,46.8645,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.8489,46.8427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7564,45.8550,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.9631,45.8629,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8522,45.8057,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.7337,46.1340,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.8709,46.7112,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9611,45.6924,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.9782,46.5299,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.1422,45.4898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.8705,46.8995,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.8347,45.9423,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8405,46.1691,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,8.1934,46.4647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.8186,46.6845,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.7093,46.5177,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.8711,46.3361,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.7560,46.3829,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.8228,46.2718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.9221,46.0493,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.8025,46.1697,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.7500,46.1745,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.6895,46.2125,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.7157,46.1427,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.8234,46.7627,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.8656,46.1283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,8.0596,45.9581,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.9910,45.4583,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.9253,45.1145,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.6978,47.2607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.4024,47.9441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.3686,47.9788,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.8786,45.0856,0.0650,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.7440,46.0159,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.8613,45.8536,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8979,45.9298,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.9662,45.9319,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8533,46.0303,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.0231,45.8541,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8414,46.0599,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0280,45.8125,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.6900,46.1949,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.6546,46.1752,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.7232,46.0862,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.9046,45.9848,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.6891,46.8582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8287,46.4603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.7778,46.5538,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.8798,46.4351,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.1218,46.2881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.2200,46.1472,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.5516,45.7764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.2505,46.1285,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.0659,45.9494,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.8967,46.1782,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.9127,46.6600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8639,46.0153,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.8314,46.1429,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.8001,46.2073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.7763,46.2925,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.0425,45.9779,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.1165,46.6603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.7500,46.8318,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.8595,46.4047,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.9817,46.2993,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8716,46.3734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.9609,46.0904,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,8.0145,45.9078,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,8.0047,46.0700,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.7225,46.2719,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.0394,45.9133,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.7082,46.4174,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.8031,46.1403,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9467,46.0229,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8025,46.2155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7615,46.1791,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.7965,46.1162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.9066,46.7468,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.7308,46.7520,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.7267,46.4450,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.9025,46.2016,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.7253,46.3706,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.8651,46.1411,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.9165,46.0525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.7731,46.1483,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.8397,46.0514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.8226,46.1038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.7354,46.1852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.8403,46.1142,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.8706,43.5929,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.9696,41.9315,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.0103,47.7493,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt new file mode 100644 index 0000000..e2aa6a1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.853 +avg_encode_latency_ms=25.717 +p95_encode_latency_ms=46.742 +max_encode_latency_ms=47.979 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/metadata.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/metadata.txt new file mode 100644 index 0000000..b92904f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/metadata.txt @@ -0,0 +1,7 @@ +timestamp=2026-05-15_1252 +duration_seconds=5 +profile_set=quick +device_profile_requested=m1max +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.csv b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.csv new file mode 100644 index 0000000..c122a7f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.csv @@ -0,0 +1,4 @@ +profile,connection_class,device_profile,source,resolution,fps,duration_seconds,codec,bitrate_mbps,status,frames_requested,frames_submitted,frames_encoded,failed_frames,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,csv,logical_csv,log,deadline_md +m1max_wired_full_5k60_tiled_hevc,wired,m1max,synthetic-nv12-tiled,5120x2880,60,5,hevc,30,0,300,300,300,0,60.040,12.501,13.222,123.935,3903440,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md +m1max_wired_high_detail_4096_60_hevc,wired,m1max,synthetic-nv12,4096x2304,60,5,hevc,120,0,300,300,300,0,,25.717,46.742,47.979,4452432,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv,,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt, +wireless_balanced_3200_60_hevc,wireless,m1max,synthetic-nv12,3200x1800,60,5,hevc,60,0,300,300,300,0,,23.614,41.764,82.782,2756134,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv,,benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt, diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.md b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.md new file mode 100644 index 0000000..cf2f488 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.md @@ -0,0 +1,24 @@ +# Transmission Profile Matrix + +- Device profile: `m1max` +- Profile set: `quick` +- Duration per case: `5` seconds +- Codec: HEVC +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Summary table: `summary.csv` +- Encoder list: `video_encoders.txt` +- Sanitized system profile: `system_profile_sanitized.txt` + +## Interpretation + +This matrix measures sender-side encode viability only. It intentionally does not +claim receiver decode/render success. Use it to choose which capture, transport, +and bitrate profile should be tried before building OS-specific receiver decode +paths. + +## Profile intent + +- `m1max_wired_full_5k60_tiled_hevc`: best current full-resolution M1 Max path. +- `m1max_wired_high_detail_4096_60_hevc`: high-detail single-stream fallback. +- `wireless_balanced_3200_60_hevc`: first wireless default candidate. +- `m1air_*`: Air ceiling probes; results must be collected on the Air. diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/system_profile_sanitized.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/system_profile_sanitized.txt new file mode 100644 index 0000000..c973c73 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/system_profile_sanitized.txt @@ -0,0 +1,53 @@ +Hardware: + + Hardware Overview: + + Model Name: MacBook Pro + Model Identifier: MacBookPro18,4 + Model Number: Z15H000RNKH/A + Chip: Apple M1 Max + Total Number of Cores: 10 (8 performance and 2 efficiency) + Memory: 32 GB + System Firmware Version: 10151.140.19 + OS Loader Version: 10151.140.19 + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + Sidecar Display: + Resolution: 2360 x 1640 + UI Looks like: 1180 x 820 @ 60.00Hz + Framebuffer Depth: 24-Bit Color (ARGB8888) + Mirror: Off + Connection Type: AirPlay + Virtual Device: Yes + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported + diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/video_encoders.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/video_encoders.txt new file mode 100644 index 0000000..b677e32 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x138006b70>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv new file mode 100644 index 0000000..fbc5155 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.6520,82.7822,0.0253,0.0000,0,0,0.0000,0,0.0000,0,1,0,90693,0 +1,5.2717,36.7026,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,33357,0 +2,4.7018,39.5153,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,17305,0 +3,4.6953,42.2684,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26405,0 +4,4.5959,45.1962,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,41778,0 +5,4.8279,33.8064,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,23133,0 +6,4.8582,29.7404,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,8457,0 +7,4.8424,18.9347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4764,0 +8,4.9817,10.6242,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,15756,0 +9,4.9758,11.6383,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +10,5.5177,11.5365,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +11,5.6085,11.6930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +12,5.7776,11.7620,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +13,5.8000,11.3754,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4041,0 +14,5.5589,11.4269,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3899,0 +15,5.8072,11.3626,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3819,0 +16,5.8980,11.2874,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14869,0 +17,5.9202,11.6168,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,4305,0 +18,5.8180,12.0851,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +19,5.5212,11.9141,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +20,5.6857,11.8751,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +21,5.5237,11.6020,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +22,5.6013,11.5955,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +23,5.9270,11.8505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +24,5.7977,11.5949,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12365,0 +25,5.7156,11.5296,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +26,5.8133,11.3885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +27,5.7473,11.4270,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +28,5.7564,11.8048,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12458,0 +29,5.8094,11.7820,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +30,5.7202,11.4968,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +31,5.7728,11.2565,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +32,5.6478,11.4248,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11420,0 +33,5.5601,11.4853,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +34,5.7236,11.4643,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +35,5.6908,11.4449,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +36,5.6679,11.4816,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13744,0 +37,5.6813,11.7022,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +38,5.8055,11.6412,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +39,5.7347,11.5210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +40,5.7594,11.5124,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13192,0 +41,5.7449,11.5082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +42,5.6800,11.5070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +43,5.6883,11.4413,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +44,5.7443,11.7347,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12022,0 +45,5.6936,11.5356,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +46,5.5588,11.5198,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +47,5.6825,11.3664,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +48,5.5678,11.3645,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +49,5.7208,11.4470,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2537,0 +50,5.5920,11.4506,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +51,5.7055,11.4124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +52,5.7443,11.3323,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,14057,0 +53,5.6899,11.3643,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +54,5.7948,11.5333,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +55,5.6682,11.5147,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +56,5.7219,11.5094,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12868,0 +57,5.5800,11.4775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +58,5.7693,11.3626,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +59,5.7535,11.6161,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +60,5.3638,11.9101,0.0443,0.0000,0,0,0.0000,0,0.0000,0,1,0,207878,0 +61,5.7465,11.6272,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,17948,0 +62,5.5405,11.5121,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,20836,0 +63,5.3818,11.5500,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,15768,0 +64,5.6692,11.4361,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,24247,0 +65,5.6000,11.4860,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11212,0 +66,5.6860,11.4581,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7185,0 +67,5.7120,11.3924,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2282,0 +68,5.6023,11.4170,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12714,0 +69,5.5357,11.3687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +70,5.6439,11.6805,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2020,0 +71,5.6383,11.7045,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +72,5.7689,11.3446,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13454,0 +73,5.7617,11.5598,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +74,5.7300,11.5729,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,5.7016,11.4550,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +76,5.6647,11.7475,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +77,5.6765,11.4008,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +78,5.7123,11.4802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +79,5.6918,11.1638,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +80,5.8155,11.8979,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,14283,0 +81,5.8117,11.8782,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +82,5.7217,11.5458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +83,4.4650,11.6098,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +84,4.3381,11.5274,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14178,0 +85,4.3979,11.3549,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +86,4.5747,11.4598,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +87,6.2107,11.5828,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +88,6.0631,11.4808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12751,0 +89,6.1464,11.6646,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +90,5.7492,11.5599,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +91,5.6410,11.5457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +92,5.7955,11.5914,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12518,0 +93,5.9450,11.3583,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +94,5.7209,11.3770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +95,5.6843,11.5712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +96,5.6620,11.6077,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,35268,0 +97,5.6316,11.5049,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,1936,0 +98,5.7819,11.4839,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +99,5.6587,11.6244,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +100,5.8043,11.3635,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13723,0 +101,5.8132,11.6072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +102,5.7138,11.3573,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +103,5.7085,11.5219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +104,5.6779,11.5694,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13197,0 +105,5.7370,11.4216,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +106,5.6726,11.3616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1488,0 +107,5.6667,11.4120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +108,5.7244,11.7718,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12006,0 +109,5.7563,11.3452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +110,5.7938,11.3050,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +111,5.8829,11.3314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +112,5.6374,11.4160,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13796,0 +113,6.0313,11.3196,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2094,0 +114,5.8939,11.6381,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +115,5.8540,11.3896,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +116,5.9822,11.5292,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13929,0 +117,5.7722,11.4040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +118,5.7935,11.2015,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +119,6.0666,11.6236,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +120,5.7816,11.3760,0.0396,0.0000,0,0,0.0000,0,0.0000,0,1,0,205935,0 +121,5.6364,11.2975,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15333,0 +122,5.7959,11.4504,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +123,5.6953,11.2900,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12086,0 +124,5.7686,11.6791,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,18993,0 +125,5.7600,11.5463,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7924,0 +126,5.7219,11.3349,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5805,0 +127,5.8064,11.4270,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +128,5.3666,11.2389,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13229,0 +129,4.7580,11.2618,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4210,0 +130,4.6433,11.3129,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3466,0 +131,4.6457,11.5088,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +132,4.6930,11.2730,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13684,0 +133,4.6395,11.2144,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +134,4.7265,11.1392,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +135,4.5637,11.3300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +136,4.6204,11.0995,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13089,0 +137,4.5823,11.1711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +138,4.5853,11.3785,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +139,4.7027,11.3820,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +140,4.8947,12.0163,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,12838,0 +141,4.5147,11.6487,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +142,5.0070,11.4913,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +143,5.3212,11.4023,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +144,4.9067,11.6448,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +145,4.5345,11.7700,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +146,4.5225,11.6442,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +147,4.5207,11.8544,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +148,4.6064,11.8405,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12817,0 +149,5.5098,12.1436,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +150,4.6787,11.7544,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +151,4.4865,11.7216,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +152,4.6237,11.7520,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12342,0 +153,6.0933,11.4653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +154,6.5092,11.6045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +155,6.4419,11.5530,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +156,6.5273,11.9878,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +157,6.4500,11.3190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +158,6.4940,11.5899,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +159,6.2667,11.4445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +160,6.1496,11.5072,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +161,6.0918,11.4839,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1987,0 +162,6.0195,11.5222,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +163,5.9398,11.4661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +164,5.7792,11.5185,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13654,0 +165,5.9240,11.5339,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +166,5.8470,11.8972,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +167,5.9425,11.2698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +168,5.8694,11.4692,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13103,0 +169,5.7836,11.4522,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +170,6.0106,11.3543,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +171,5.9157,11.4364,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +172,5.6931,11.6958,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12883,0 +173,5.7171,11.5370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +174,5.9531,11.5615,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +175,5.8101,11.3801,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +176,5.8976,11.3770,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13481,0 +177,5.8083,11.2309,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +178,5.7567,11.4620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +179,5.7938,11.7623,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +180,5.3308,11.6093,0.0702,0.0000,0,0,0.0000,0,0.0000,0,1,0,241418,0 +181,5.7920,11.3710,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,19215,0 +182,5.7459,18.2290,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,23656,0 +183,5.6774,22.5852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +184,5.6882,24.6510,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,26245,0 +185,5.6558,26.9039,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +186,5.6348,29.0085,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5102,0 +187,5.6714,31.1015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4147,0 +188,5.7199,34.3129,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13635,0 +189,5.7790,35.2982,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +190,5.5660,36.5612,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +191,5.6713,38.0940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +192,5.7060,39.1233,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,36424,0 +193,5.8736,39.6247,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +194,5.7539,40.2382,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +195,5.6740,40.6797,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +196,5.6866,40.8469,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13653,0 +197,5.5713,41.0490,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +198,5.5953,41.0098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +199,5.7115,40.9111,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +200,5.5842,41.3148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13125,0 +201,5.5993,41.3502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +202,5.6056,41.2903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +203,5.5960,41.2593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +204,5.5498,42.0055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12858,0 +205,5.5965,41.7772,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +206,5.5372,41.5981,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +207,5.5823,41.5272,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +208,5.5421,41.5375,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13636,0 +209,5.6223,41.2939,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +210,5.3403,41.6799,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +211,5.5605,41.3442,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +212,5.6957,41.3310,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12678,0 +213,5.6828,41.1468,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +214,5.6709,41.2993,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +215,5.6607,41.2615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +216,5.6618,41.3960,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12452,0 +217,5.6166,41.4157,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +218,5.5321,41.2340,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +219,5.5567,41.0071,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +220,5.6021,41.9535,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12502,0 +221,5.5739,41.6555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +222,5.6301,41.4791,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +223,5.5618,41.4227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +224,5.5935,41.3304,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11650,0 +225,5.6385,41.1464,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +226,5.5986,41.3584,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +227,5.6813,40.8835,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +228,5.7075,41.0160,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13841,0 +229,5.6288,42.1328,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +230,5.6739,40.8299,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +231,5.6354,41.2117,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +232,5.6392,41.1683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13418,0 +233,5.6785,40.9915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +234,5.6610,41.1999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +235,5.5879,41.1897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +236,5.5328,42.0874,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13117,0 +237,5.7571,41.6782,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +238,5.9777,41.3245,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +239,5.8485,41.5926,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +240,5.6375,41.4731,0.0366,0.0000,0,0,0.0000,0,0.0000,0,1,0,202606,0 +241,5.7317,41.3911,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,18838,0 +242,5.6652,41.2917,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,22006,0 +243,5.6375,41.3697,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,16616,0 +244,5.6410,41.3779,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22139,0 +245,5.6886,40.8269,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5492,0 +246,5.7663,41.2489,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3374,0 +247,5.6655,42.5343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +248,5.8065,40.9371,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13534,0 +249,5.6947,41.3477,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +250,5.8230,41.1774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +251,5.7013,41.1434,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +252,5.8762,41.7638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12484,0 +253,5.7038,41.7300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1891,0 +254,5.6539,41.6712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +255,5.7189,41.4093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1770,0 +256,5.7698,41.2266,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,34556,0 +257,5.7200,41.3347,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +258,5.7032,41.1696,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +259,5.7805,40.9530,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +260,5.6923,41.0613,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13717,0 +261,5.6659,41.1803,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +262,5.8429,40.9460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +263,5.6924,41.0113,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +264,5.7145,41.0660,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13183,0 +265,5.6332,41.1087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +266,5.6958,41.2507,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +267,5.6380,41.4367,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +268,5.5613,42.0871,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11975,0 +269,5.8107,41.5590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +270,5.5225,42.0508,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +271,5.6410,41.4760,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +272,6.0321,41.0827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13683,0 +273,5.7636,41.3062,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +274,5.7880,41.1361,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +275,5.7781,41.1726,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +276,5.8085,41.1127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +277,5.8746,41.1356,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +278,5.7114,41.3442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +279,5.7183,41.0337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +280,5.5643,40.8370,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12510,0 +281,5.6022,40.9596,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +282,5.6901,42.1346,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +283,5.5788,40.8787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +284,5.6605,41.7987,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12528,0 +285,5.5682,41.7822,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +286,5.5723,41.4333,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +287,5.7206,41.2619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +288,5.5667,41.3562,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11401,0 +289,5.6746,41.1086,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +290,5.6050,41.1053,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +291,5.6224,40.9662,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +292,5.6433,41.3635,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,13732,0 +293,5.6224,41.3252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +294,5.6355,41.2028,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +295,5.6490,41.2650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +296,5.6086,41.2584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +297,5.5822,40.0853,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +298,5.5505,38.0157,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +299,5.7533,43.5080,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt new file mode 100644 index 0000000..2b2b60a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.608 +avg_encode_latency_ms=23.614 +p95_encode_latency_ms=41.764 +max_encode_latency_ms=82.782 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2756134 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.csv new file mode 100644 index 0000000..ec24132 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.csv @@ -0,0 +1,1801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,7.1995,85.5842,0.0323,0.0000,0,0,0.0000,0,0.0000,0,1,0,94044,0 +1,5.8987,27.5616,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,23403,0 +2,5.7190,30.3989,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,10690,0 +3,5.2566,33.7439,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15774,0 +4,4.9926,37.4066,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,30246,0 +5,5.2282,38.4839,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14721,0 +6,5.0920,39.9127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8016,0 +7,5.4075,28.9025,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4182,0 +8,5.7110,21.2565,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13829,0 +9,5.8271,12.9590,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2295,0 +10,5.7354,11.8348,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +11,5.8409,11.9915,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1921,0 +12,5.8881,12.0138,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10767,0 +13,5.7683,11.9821,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3414,0 +14,5.7343,11.9592,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3074,0 +15,5.8399,11.9701,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2826,0 +16,5.7476,12.0223,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +17,5.8295,12.0378,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4266,0 +18,5.7741,11.9448,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3073,0 +19,5.8876,12.0365,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2570,0 +20,5.9105,12.0724,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11368,0 +21,5.8534,12.0767,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2216,0 +22,5.8061,12.1593,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +23,5.9467,11.9648,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +24,5.7405,12.0030,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11220,0 +25,5.7698,11.8975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +26,5.8428,11.8951,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +27,5.1110,11.5700,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +28,4.6495,11.7237,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10905,0 +29,4.6194,11.5985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2363,0 +30,4.5251,11.8330,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +31,4.6971,11.9248,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +32,5.3802,11.9888,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9920,0 +33,5.6949,11.7029,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2969,0 +34,5.5996,11.9262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2525,0 +35,5.6217,12.1532,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +36,5.7126,11.6735,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11487,0 +37,5.7421,11.9380,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +38,5.8335,11.9165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2666,0 +39,5.8538,11.7290,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2736,0 +40,5.8711,11.8464,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10866,0 +41,5.8525,11.7250,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2100,0 +42,5.8552,11.7387,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2321,0 +43,5.7644,11.8928,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2478,0 +44,5.8264,11.8281,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10655,0 +45,5.7085,11.8632,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3774,0 +46,5.9767,11.7827,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2591,0 +47,5.7905,11.6746,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2574,0 +48,5.7133,12.1506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,12607,0 +49,5.7760,11.9135,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3732,0 +50,5.8012,12.0678,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2912,0 +51,5.9115,12.0416,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2729,0 +52,5.9347,11.8810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12265,0 +53,5.8222,12.0823,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +54,5.7570,11.8364,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2820,0 +55,5.6300,11.8609,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2971,0 +56,5.7087,11.7787,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12392,0 +57,5.7238,11.8897,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +58,5.7284,11.8307,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2461,0 +59,5.8282,11.7348,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +60,5.8696,11.3265,0.0419,0.0000,0,0,0.0000,0,0.0000,0,1,0,172064,0 +61,5.9223,11.9708,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,24597,0 +62,5.8783,11.8806,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,27587,0 +63,5.7549,11.8214,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,15557,0 +64,5.8705,11.9298,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,19581,0 +65,5.8542,11.8991,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8998,0 +66,5.8273,11.8898,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7453,0 +67,5.7667,11.9071,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2518,0 +68,5.8175,11.9398,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13437,0 +69,5.9538,11.9885,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1585,0 +70,5.9342,12.0482,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1954,0 +71,5.7742,11.9589,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2148,0 +72,5.8745,11.9964,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10455,0 +73,5.7375,11.7719,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +74,5.8483,11.7383,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +75,5.7734,11.8252,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1609,0 +76,5.7092,11.9568,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9949,0 +77,5.5995,11.8087,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3803,0 +78,5.5517,11.9024,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +79,5.5047,12.0858,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1812,0 +80,5.6622,11.8909,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11584,0 +81,5.6674,11.8424,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3299,0 +82,5.8312,11.9345,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2084,0 +83,5.6699,11.6652,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1930,0 +84,5.7939,11.8609,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +85,5.7849,11.7180,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1822,0 +86,5.8326,11.7949,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +87,5.7773,11.7815,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +88,5.6619,11.6720,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11293,0 +89,5.7082,11.5663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1706,0 +90,5.6271,11.5828,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +91,5.8228,11.8205,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1592,0 +92,5.6797,11.7553,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,10726,0 +93,5.6982,11.7534,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2506,0 +94,5.6518,11.9642,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2652,0 +95,5.3693,11.7707,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2418,0 +96,5.4928,11.6705,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,34839,0 +97,5.6018,11.7692,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4355,0 +98,5.8274,11.7656,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2518,0 +99,5.8184,11.7330,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1844,0 +100,5.7141,11.7060,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11369,0 +101,5.6478,11.7187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +102,5.5900,11.9490,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2500,0 +103,5.6880,11.7104,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2478,0 +104,5.7814,11.8361,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10884,0 +105,5.7167,11.7608,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +106,5.7859,11.7345,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +107,5.7205,11.7376,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2048,0 +108,5.6312,11.7895,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,10531,0 +109,5.5697,11.7355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +110,5.6627,11.7486,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2273,0 +111,5.7858,11.7327,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2588,0 +112,5.6970,11.8922,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12704,0 +113,5.7901,11.6932,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +114,5.7304,11.6727,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2965,0 +115,5.6651,11.8456,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3060,0 +116,5.7419,11.8707,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +117,5.6723,11.7081,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +118,5.8153,11.7795,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +119,5.6703,11.6851,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3181,0 +120,5.7485,10.4240,0.0302,0.0000,0,0,0.0000,0,0.0000,0,1,0,168651,0 +121,5.7648,11.8155,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,21641,0 +122,5.7617,11.7125,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14439,0 +123,5.6964,11.7880,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10611,0 +124,5.7967,11.7370,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15398,0 +125,5.7075,11.7026,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6980,0 +126,5.6288,11.8006,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5458,0 +127,5.7725,11.9551,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4438,0 +128,5.6567,11.5919,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10658,0 +129,5.7474,12.0313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3612,0 +130,5.6771,11.6525,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2887,0 +131,5.7651,11.5356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +132,5.6755,11.6606,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9725,0 +133,5.6084,11.5972,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +134,5.7403,11.9266,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +135,5.6386,11.6869,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1638,0 +136,5.7214,11.7617,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9715,0 +137,5.6964,11.8818,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +138,5.8010,11.9375,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1347,0 +139,5.7948,11.7370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1352,0 +140,5.8201,11.7453,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11472,0 +141,5.7629,11.8914,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1953,0 +142,5.7691,11.9298,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +143,5.8304,11.8059,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2281,0 +144,5.8110,11.7127,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,12329,0 +145,5.8010,11.6765,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3806,0 +146,5.8347,11.7027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +147,5.2904,11.9309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +148,5.4424,11.8983,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11960,0 +149,5.5598,11.6110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2445,0 +150,5.7131,12.1915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2019,0 +151,5.5827,11.4548,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2087,0 +152,5.6909,12.0433,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11434,0 +153,5.7059,11.6885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2331,0 +154,5.7373,11.7368,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +155,5.5705,11.9295,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1922,0 +156,5.7956,12.0228,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11167,0 +157,5.6987,11.9870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2905,0 +158,5.6855,11.7063,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2639,0 +159,5.6066,11.6908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2693,0 +160,5.6928,11.6128,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10103,0 +161,5.6484,11.7312,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3332,0 +162,5.7776,11.7652,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2976,0 +163,5.7970,11.8253,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2279,0 +164,5.8366,11.9338,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11887,0 +165,5.7773,11.6580,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2892,0 +166,5.8255,11.7783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2815,0 +167,5.7883,11.7717,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2979,0 +168,5.7758,11.7415,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11158,0 +169,5.8488,11.7592,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +170,5.8257,11.7646,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1932,0 +171,5.7538,11.6782,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2075,0 +172,5.7427,11.6932,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11949,0 +173,5.7505,12.0638,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3740,0 +174,5.8344,12.1299,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3077,0 +175,5.7872,11.9497,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +176,5.8167,11.9334,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12831,0 +177,5.8573,11.9443,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3821,0 +178,5.8814,11.9116,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2943,0 +179,5.7955,11.8391,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3136,0 +180,5.8146,10.6374,0.0521,0.0000,0,0,0.0000,0,0.0000,0,1,0,198907,0 +181,6.0523,11.9837,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,26668,0 +182,5.8759,14.7498,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,21630,0 +183,5.9093,19.2458,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13864,0 +184,6.0209,17.7557,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20573,0 +185,5.8800,16.3526,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7950,0 +186,5.7728,16.4834,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4250,0 +187,5.8209,16.7104,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3671,0 +188,5.8608,16.9995,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12262,0 +189,5.8504,17.4270,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3070,0 +190,5.8405,16.7224,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 +191,5.8727,16.5739,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2645,0 +192,5.7926,16.6338,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,35104,0 +193,5.6926,16.7547,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4520,0 +194,5.8723,16.9119,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2898,0 +195,5.8475,16.3080,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1445,0 +196,5.6652,16.4427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11033,0 +197,5.8134,16.5337,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +198,5.8226,16.5248,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +199,5.7189,16.4943,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1803,0 +200,5.7254,16.6630,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10604,0 +201,5.7747,16.5263,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +202,5.6746,16.6890,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +203,5.7906,12.9065,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +204,5.7395,12.7058,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11602,0 +205,5.7765,12.7646,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +206,5.7267,15.6779,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2838,0 +207,5.7031,16.5053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2298,0 +208,5.8052,15.5010,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12029,0 +209,5.8887,17.1312,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3317,0 +210,5.8891,14.6956,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2025,0 +211,5.9203,16.3879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +212,5.8523,16.7248,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,11824,0 +213,5.7741,16.4123,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2599,0 +214,5.7705,16.0563,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2304,0 +215,5.5730,13.4445,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2332,0 +216,5.5477,12.8218,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11524,0 +217,5.7683,12.3233,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3153,0 +218,5.6791,15.5360,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +219,5.7805,16.5130,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2135,0 +220,5.8104,16.3904,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11339,0 +221,5.7501,16.6204,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3368,0 +222,5.7873,16.4466,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3592,0 +223,5.7656,16.6430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3218,0 +224,5.8289,16.5583,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10602,0 +225,5.7790,16.3012,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3525,0 +226,5.9254,16.4900,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +227,5.8371,16.5291,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2666,0 +228,5.8266,16.2311,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12322,0 +229,5.8282,16.0596,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3338,0 +230,5.8530,16.6088,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +231,5.8682,16.6221,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3713,0 +232,5.8343,16.2597,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11566,0 +233,5.9163,15.6881,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3677,0 +234,5.8299,12.7090,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2461,0 +235,5.8170,13.4847,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2827,0 +236,5.8279,16.4930,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12376,0 +237,5.8077,15.0996,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4810,0 +238,5.8876,16.1625,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4284,0 +239,5.7730,16.4535,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3992,0 +240,5.7568,15.1328,0.0260,0.0000,0,0,0.0000,0,0.0000,0,1,0,172153,0 +241,5.7624,16.4226,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,29204,0 +242,5.8431,16.2053,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13995,0 +243,5.7805,16.4465,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11122,0 +244,5.8074,16.5338,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,18193,0 +245,5.8209,16.4517,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4817,0 +246,5.7701,16.3667,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3804,0 +247,5.7859,16.3487,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1816,0 +248,5.7808,16.6129,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10609,0 +249,5.8115,16.5653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +250,5.7799,17.4038,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +251,5.7795,16.5008,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +252,5.7851,16.5555,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10003,0 +253,5.7775,16.4213,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +254,5.8181,16.5539,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1635,0 +255,5.7730,16.5913,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1775,0 +256,5.8072,16.4886,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,31245,0 +257,6.0977,16.5618,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2181,0 +258,5.9558,16.0462,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +259,6.1097,16.3824,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +260,6.0300,16.5575,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9561,0 +261,5.9713,16.5972,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3097,0 +262,5.7982,16.5952,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +263,5.7868,13.6401,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1440,0 +264,5.7875,13.1988,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +265,5.7591,13.0575,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +266,5.7631,15.8455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +267,5.7483,16.1827,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +268,5.7467,14.8389,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10239,0 +269,5.8420,14.6017,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +270,5.8334,14.9179,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +271,5.9009,18.7642,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1550,0 +272,5.8675,16.6294,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11630,0 +273,5.7304,16.1016,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +274,5.7562,16.0163,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +275,5.6965,14.1170,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +276,5.6616,13.1723,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11089,0 +277,5.8439,14.3638,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +278,5.6849,14.4113,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +279,5.7757,14.6968,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +280,5.7274,15.2468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10887,0 +281,5.6159,15.1596,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1565,0 +282,5.7162,15.4537,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +283,5.8312,14.3466,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +284,5.7172,15.6010,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +285,5.8825,15.3396,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +286,5.7951,16.4410,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +287,5.8504,17.5507,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +288,5.8310,17.2885,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9496,0 +289,5.7913,16.3309,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2599,0 +290,5.8257,16.4342,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +291,5.8355,16.3804,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1592,0 +292,5.8085,16.2950,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11336,0 +293,5.8624,13.9266,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +294,5.8830,12.7204,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1926,0 +295,5.7734,13.3975,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +296,5.7580,16.1848,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10926,0 +297,5.7800,16.0358,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2383,0 +298,5.8305,15.2310,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +299,5.6778,15.9704,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +300,5.8095,14.8014,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,169699,0 +301,5.6987,16.3356,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,33845,0 +302,5.8508,15.7858,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17608,0 +303,5.8106,16.2702,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9863,0 +304,5.8147,16.5117,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21868,0 +305,5.7937,16.5778,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +306,5.6669,16.5678,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8337,0 +307,5.7230,16.2985,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5205,0 +308,5.6643,16.7020,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15959,0 +309,5.7769,16.4362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3740,0 +310,5.6308,13.3595,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +311,5.4395,12.9418,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2090,0 +312,5.5438,13.0153,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11234,0 +313,5.5987,12.7532,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +314,5.4978,12.4022,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1821,0 +315,5.6904,12.8063,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +316,5.5073,11.8790,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10495,0 +317,5.8727,12.3753,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2382,0 +318,5.7835,12.0458,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2258,0 +319,5.7281,11.6885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1974,0 +320,5.7516,11.6339,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9216,0 +321,5.7652,11.6319,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2226,0 +322,5.6684,11.5650,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +323,5.7248,11.5860,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +324,5.7335,13.5802,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10126,0 +325,5.6243,12.2942,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2683,0 +326,5.7112,12.0215,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1552,0 +327,5.6362,12.3193,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +328,5.7325,11.8978,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9900,0 +329,5.6570,11.5827,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +330,5.7702,11.6576,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2689,0 +331,5.7236,12.5120,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +332,5.7584,12.4700,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,9762,0 +333,5.6638,14.8975,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +334,5.6335,12.7636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +335,5.5226,13.1959,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +336,5.7258,12.5462,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10902,0 +337,5.6940,11.9265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +338,5.7755,11.9527,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1838,0 +339,5.7041,12.0343,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +340,5.6252,12.3615,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10935,0 +341,5.5423,12.2555,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1773,0 +342,5.6237,12.3857,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1792,0 +343,5.7718,12.5558,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1845,0 +344,5.8033,13.7204,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10869,0 +345,5.6902,12.5846,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +346,5.7411,13.2102,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +347,5.6634,14.3660,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1750,0 +348,5.7613,12.0048,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10545,0 +349,5.8068,13.5433,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2306,0 +350,5.6804,12.1307,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2112,0 +351,5.7807,12.1073,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2360,0 +352,5.7192,12.1396,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,35085,0 +353,5.6534,12.9224,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3968,0 +354,5.6192,12.8845,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2239,0 +355,5.8045,12.9527,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1900,0 +356,5.6977,12.4891,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11010,0 +357,5.6120,13.7432,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3200,0 +358,5.8848,13.6035,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2290,0 +359,5.7740,12.4294,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2348,0 +360,5.6830,10.4771,0.0176,0.0000,0,0,0.0000,0,0.0000,0,1,0,155732,0 +361,5.7599,12.3415,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,30445,0 +362,5.6729,12.1925,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,20246,0 +363,5.8238,11.8848,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11012,0 +364,5.7431,13.1058,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,16804,0 +365,5.6851,12.7683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10771,0 +366,5.5969,13.7269,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3503,0 +367,5.6916,12.8495,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3605,0 +368,5.7784,12.4507,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15801,0 +369,5.7188,13.1200,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4559,0 +370,5.8766,12.5922,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3316,0 +371,5.7003,12.3217,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +372,5.5302,12.4675,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11735,0 +373,5.6068,12.3794,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +374,5.6853,13.9356,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +375,5.8252,15.0091,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1863,0 +376,5.7675,15.3105,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11469,0 +377,5.8213,14.1677,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1782,0 +378,5.7997,14.0775,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1660,0 +379,5.9499,15.0600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +380,5.8165,15.2651,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10607,0 +381,5.7730,15.1962,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +382,5.8175,15.4135,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2208,0 +383,5.8259,13.3584,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2225,0 +384,5.9065,12.7459,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9557,0 +385,6.0758,12.7206,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2660,0 +386,5.9315,14.3029,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2127,0 +387,5.9238,14.5689,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +388,5.7255,14.6713,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11101,0 +389,5.8275,14.6973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2466,0 +390,5.7943,14.7125,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2092,0 +391,5.8310,14.6520,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +392,5.7686,14.5673,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10580,0 +393,5.7693,14.6151,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +394,5.7498,14.7335,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1552,0 +395,5.7827,13.1631,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +396,5.6880,12.9322,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11409,0 +397,5.7514,12.7739,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3104,0 +398,5.6569,14.6047,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2281,0 +399,5.7639,14.5998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2354,0 +400,5.7677,14.6151,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11823,0 +401,5.7192,14.6335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2848,0 +402,5.7193,14.6180,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1922,0 +403,5.7179,14.6188,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +404,5.7205,14.6610,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11760,0 +405,5.7814,14.5785,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2595,0 +406,5.7655,14.5551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2311,0 +407,5.7479,14.5262,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2380,0 +408,6.0018,14.8027,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11790,0 +409,5.9726,14.6156,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2649,0 +410,5.9439,14.5351,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1930,0 +411,5.9795,14.6163,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +412,6.0584,14.6293,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11437,0 +413,5.9962,13.0266,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3620,0 +414,5.9286,13.3241,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +415,6.0124,12.5584,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3030,0 +416,5.9278,14.7203,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10841,0 +417,6.0035,14.8406,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4073,0 +418,5.9788,14.6316,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3425,0 +419,5.8780,15.6508,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2719,0 +420,5.7672,14.5366,0.0230,0.0000,0,0,0.0000,0,0.0000,0,1,0,165328,0 +421,5.9344,16.5911,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,24567,0 +422,5.8115,16.5189,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,25354,0 +423,5.8364,16.4786,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +424,5.8207,16.4746,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,24007,0 +425,5.8018,16.3980,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11982,0 +426,5.8370,16.4187,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3036,0 +427,5.7952,16.3705,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1966,0 +428,5.7942,16.7056,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11960,0 +429,5.8116,16.2223,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2865,0 +430,5.8441,16.5597,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3357,0 +431,5.8209,16.3328,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2819,0 +432,5.8355,16.3320,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13255,0 +433,5.8264,16.5804,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4460,0 +434,5.8127,16.4386,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2818,0 +435,5.8258,15.9452,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2500,0 +436,5.8480,16.6828,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11758,0 +437,5.8107,16.4028,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2393,0 +438,5.7671,17.4436,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +439,5.8217,16.7715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1944,0 +440,5.8639,16.5990,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11318,0 +441,5.8048,16.2113,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2161,0 +442,5.7521,17.4262,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +443,5.7315,14.0789,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +444,5.8469,13.2960,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10781,0 +445,5.7154,13.4615,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2142,0 +446,5.7537,16.5248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1853,0 +447,5.6780,16.3600,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +448,5.8312,14.8433,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,34711,0 +449,5.8089,14.5002,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4266,0 +450,5.8442,14.8133,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2283,0 +451,5.8678,16.5440,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +452,5.8695,16.5810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +453,5.7642,16.5240,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2340,0 +454,5.7344,16.0358,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2418,0 +455,5.7974,13.5140,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2726,0 +456,5.8295,13.2270,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10730,0 +457,5.7457,13.1559,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2387,0 +458,5.6333,16.6062,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +459,5.7840,16.5076,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +460,5.7905,17.2516,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11653,0 +461,5.7712,16.4486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3344,0 +462,5.7978,16.1717,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2826,0 +463,5.7539,16.4603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3347,0 +464,5.7712,16.4590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12070,0 +465,5.7797,16.4326,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3484,0 +466,5.7961,16.5398,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2538,0 +467,5.9310,16.5078,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2864,0 +468,5.8270,16.4960,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12251,0 +469,5.7617,16.5749,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3302,0 +470,5.7948,16.3930,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3120,0 +471,5.7845,16.5290,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +472,5.8098,16.3176,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12451,0 +473,5.7555,13.6420,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +474,5.8197,13.2902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2504,0 +475,5.7919,12.8853,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2796,0 +476,5.7347,15.5377,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11951,0 +477,5.7897,15.5607,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4459,0 +478,5.8199,16.5783,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3868,0 +479,5.7444,16.2799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3996,0 +480,5.7649,14.4710,0.0197,0.0000,0,0,0.0000,0,0.0000,0,1,0,162846,0 +481,5.7803,16.6231,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,23956,0 +482,5.7860,16.6888,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17406,0 +483,5.7760,16.2424,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7151,0 +484,5.7946,16.5245,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17172,0 +485,5.7920,16.4615,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5781,0 +486,5.9330,16.2170,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4926,0 +487,5.7595,17.5406,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2965,0 +488,5.7903,16.4174,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10364,0 +489,5.7942,16.4188,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2674,0 +490,5.7593,16.4261,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +491,5.7734,16.3771,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1388,0 +492,5.7560,16.4123,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9930,0 +493,5.7747,16.5745,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3885,0 +494,5.7851,16.5842,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2442,0 +495,5.7921,16.4530,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1986,0 +496,5.8052,16.5022,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12371,0 +497,6.0135,17.2964,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3794,0 +498,6.0981,16.2615,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2568,0 +499,6.0004,16.4946,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2061,0 +500,5.9430,16.6437,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +501,5.7641,16.6195,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2693,0 +502,5.7466,16.1936,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +503,5.8211,14.0399,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2134,0 +504,5.8326,13.3241,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11564,0 +505,5.7738,12.7553,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +506,5.8105,16.6584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +507,5.7652,16.4331,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +508,5.7611,15.0086,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11141,0 +509,5.8025,14.5667,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +510,5.7592,14.7390,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2392,0 +511,5.9217,16.4052,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +512,5.8150,16.4370,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,31812,0 +513,5.8067,16.4324,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3124,0 +514,5.7897,15.8283,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2670,0 +515,5.6555,13.9618,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +516,5.5695,12.7305,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11720,0 +517,5.7352,13.3815,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +518,5.8190,16.5856,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2814,0 +519,5.6963,16.4374,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2844,0 +520,5.7590,16.2120,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11076,0 +521,5.6899,16.4420,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +522,5.8365,16.3509,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2208,0 +523,5.7397,16.5153,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2948,0 +524,5.7135,16.5007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10822,0 +525,5.7683,16.4473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3760,0 +526,5.6666,16.1793,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2540,0 +527,5.7468,16.4013,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2676,0 +528,5.6845,16.5545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13049,0 +529,5.8075,16.0798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4044,0 +530,5.7301,16.3810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2971,0 +531,5.6633,16.4025,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3011,0 +532,5.7656,16.4677,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12431,0 +533,5.7579,13.6349,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +534,5.7720,12.6942,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3056,0 +535,5.7112,12.8282,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3303,0 +536,5.6356,15.1908,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12713,0 +537,5.6921,15.4232,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2553,0 +538,5.6805,15.5765,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2668,0 +539,5.7305,15.4832,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2776,0 +540,5.7542,15.6397,0.0222,0.0000,0,0,0.0000,0,0.0000,0,1,0,171836,0 +541,5.8360,16.2855,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,24721,0 +542,5.8270,16.5820,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,27568,0 +543,5.9753,17.6605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15335,0 +544,5.8202,16.4076,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19848,0 +545,5.7987,16.4035,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8926,0 +546,5.9756,16.5188,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7892,0 +547,5.9346,16.5473,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2836,0 +548,6.1283,16.5182,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13228,0 +549,6.0487,15.1343,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +550,5.9073,13.1057,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +551,5.7927,13.5004,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +552,5.7015,13.2485,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10004,0 +553,5.7521,13.5558,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +554,5.7153,12.2019,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1856,0 +555,5.7667,13.0425,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1636,0 +556,5.7140,13.1460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9907,0 +557,5.8289,13.3685,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3784,0 +558,5.7257,13.2803,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +559,5.6493,12.2919,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +560,5.7512,12.8141,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11797,0 +561,5.6981,12.9600,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3327,0 +562,5.7411,12.8076,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1994,0 +563,5.6946,12.6593,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +564,5.8400,13.6031,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11544,0 +565,5.6835,14.1777,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +566,5.8177,13.2149,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1656,0 +567,5.6783,14.1186,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +568,5.9216,13.1790,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11313,0 +569,5.7404,12.6873,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +570,5.6710,13.3998,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +571,5.8025,13.3090,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1619,0 +572,5.7613,12.9951,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10697,0 +573,5.8149,13.4288,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +574,5.7416,12.6315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2503,0 +575,5.5001,12.0945,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2328,0 +576,5.5741,12.4203,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9795,0 +577,5.5025,12.0879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2812,0 +578,5.7512,12.5053,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2377,0 +579,5.6701,12.9214,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +580,5.7859,12.8017,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11306,0 +581,5.6944,14.7565,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2915,0 +582,5.7961,12.4252,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2347,0 +583,5.6931,12.5583,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2400,0 +584,5.6395,11.7140,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10782,0 +585,5.7050,12.2603,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +586,5.6316,11.8733,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +587,5.7196,12.1990,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2393,0 +588,5.6809,12.2050,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10428,0 +589,5.7650,12.0986,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +590,5.6723,13.5277,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2196,0 +591,5.7507,12.1225,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2453,0 +592,5.6863,12.2997,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +593,5.6750,14.6721,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3723,0 +594,5.6064,12.8793,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2591,0 +595,5.6538,12.8293,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2484,0 +596,5.7475,12.2712,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11921,0 +597,5.6900,12.6866,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +598,5.6232,11.8401,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2489,0 +599,5.5472,11.8131,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2624,0 +600,5.6480,10.4581,0.0217,0.0000,0,0,0.0000,0,0.0000,0,1,0,168755,0 +601,5.5654,12.2103,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,22184,0 +602,5.4965,13.1152,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15019,0 +603,5.7428,12.0925,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10969,0 +604,5.6603,12.3309,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15881,0 +605,5.7728,13.7987,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7974,0 +606,5.7106,12.5389,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6214,0 +607,5.8733,13.5308,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5157,0 +608,5.7606,13.1660,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,37011,0 +609,5.6645,11.9259,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4976,0 +610,5.6028,11.7543,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +611,5.5559,12.0785,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1474,0 +612,5.7880,11.7527,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10529,0 +613,5.5360,11.8532,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3089,0 +614,5.7395,14.6862,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +615,5.7708,14.4354,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +616,5.7238,14.9381,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10515,0 +617,5.7716,16.4093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +618,5.6772,15.9326,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1388,0 +619,5.7801,16.8534,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1407,0 +620,5.7943,15.3029,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10708,0 +621,5.8310,15.3661,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3988,0 +622,5.7781,15.3352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1935,0 +623,5.8518,14.6286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2048,0 +624,5.8374,13.2324,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12167,0 +625,5.7753,12.4429,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4751,0 +626,5.8339,15.0746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1931,0 +627,5.7847,15.0493,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +628,5.7878,15.3296,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11552,0 +629,5.7923,14.5785,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1999,0 +630,5.8608,14.6935,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1830,0 +631,5.8611,15.6438,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +632,5.8098,16.3824,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11674,0 +633,5.7760,16.5044,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +634,5.8041,15.9277,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1955,0 +635,5.8737,13.0160,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +636,5.8540,13.3705,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11036,0 +637,5.7819,12.7542,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2852,0 +638,5.8125,15.5603,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2803,0 +639,5.7927,15.5233,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2941,0 +640,5.7796,15.3840,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10402,0 +641,5.7455,16.3608,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3207,0 +642,5.8220,16.2772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2814,0 +643,5.7856,15.8598,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2089,0 +644,5.7767,16.1939,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11775,0 +645,5.7903,16.2868,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +646,5.8251,16.2450,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3139,0 +647,5.7688,15.0982,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +648,5.7832,17.0455,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11148,0 +649,5.6939,15.9071,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3176,0 +650,5.6511,17.4318,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2233,0 +651,5.7222,16.2462,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2304,0 +652,5.7096,16.2269,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12148,0 +653,5.6807,14.9245,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4379,0 +654,5.7323,12.8040,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3993,0 +655,5.6423,13.3454,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3605,0 +656,5.7781,15.5686,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13243,0 +657,5.6162,14.2195,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4428,0 +658,5.7611,14.3419,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3315,0 +659,5.6541,15.9717,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3344,0 +660,5.7593,12.1794,0.0231,0.0000,0,0,0.0000,0,0.0000,0,1,0,197277,0 +661,5.7444,15.7477,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,26401,0 +662,5.7668,15.1193,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20507,0 +663,5.7270,16.4227,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14102,0 +664,5.6617,16.7037,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20848,0 +665,5.7666,14.8032,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7954,0 +666,5.7549,14.6331,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4092,0 +667,5.7251,15.2095,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3550,0 +668,5.7968,12.4166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11833,0 +669,5.7845,15.3620,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2992,0 +670,5.7382,15.3952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2737,0 +671,5.7638,13.7900,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2885,0 +672,5.7423,13.4691,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10027,0 +673,5.7496,15.0423,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3277,0 +674,5.7407,15.2970,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +675,5.7534,15.1635,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +676,5.7610,14.2851,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10806,0 +677,5.7724,14.8098,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2196,0 +678,5.7467,12.8906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +679,5.6895,14.7789,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +680,5.6409,15.2849,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10319,0 +681,5.7405,14.9728,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2050,0 +682,5.7266,14.9205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +683,5.7420,13.8476,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1408,0 +684,5.8240,12.3448,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11163,0 +685,5.7473,11.7792,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2748,0 +686,5.0891,14.0970,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1976,0 +687,5.3486,13.9452,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +688,5.6803,11.7022,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11868,0 +689,5.6402,11.5704,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +690,5.7842,11.6952,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2028,0 +691,5.6946,14.3994,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +692,5.7980,13.8315,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11628,0 +693,5.6971,15.6849,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2460,0 +694,5.6522,13.1634,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1997,0 +695,5.7121,15.1521,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2151,0 +696,5.6643,12.5925,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11312,0 +697,5.6924,11.9989,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2339,0 +698,5.6953,13.8367,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +699,5.7860,14.2602,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +700,5.7710,14.2930,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11026,0 +701,5.7397,14.3362,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2513,0 +702,5.7430,14.5339,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2419,0 +703,5.7586,15.9390,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2595,0 +704,5.6900,15.6308,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,35499,0 +705,5.7984,14.7356,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4627,0 +706,5.7918,16.0415,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2694,0 +707,5.7820,16.2152,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2236,0 +708,5.8279,16.2642,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11780,0 +709,5.7828,15.8186,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2845,0 +710,5.7386,16.2027,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2851,0 +711,5.7565,13.5654,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2951,0 +712,5.7420,15.1667,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10993,0 +713,5.8046,14.9248,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2789,0 +714,5.7896,12.1674,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1974,0 +715,5.7826,12.0068,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2151,0 +716,5.7821,14.0045,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11864,0 +717,5.6949,13.5928,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4063,0 +718,5.8434,15.0179,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3320,0 +719,5.7195,13.6212,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3153,0 +720,5.7409,12.1356,0.0187,0.0000,0,0,0.0000,0,0.0000,0,1,0,169188,0 +721,5.7093,14.1282,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,29247,0 +722,5.6557,14.8333,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13908,0 +723,5.7560,14.9418,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11147,0 +724,5.7542,15.5420,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17975,0 +725,5.7698,13.9228,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4705,0 +726,5.7286,15.0561,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3483,0 +727,5.7424,13.0940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +728,5.6200,14.9600,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10258,0 +729,5.6230,14.9341,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +730,5.5608,14.0336,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1393,0 +731,5.6385,14.8325,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 +732,5.7048,15.0243,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10005,0 +733,5.6465,14.2495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1871,0 +734,5.7458,13.9464,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1727,0 +735,5.7567,14.9491,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1984,0 +736,5.7560,13.7046,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9275,0 +737,5.6807,13.5784,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2269,0 +738,5.7370,13.8238,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +739,5.6961,14.8918,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +740,5.6662,14.8916,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9605,0 +741,5.7307,13.8957,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3136,0 +742,5.7343,15.1575,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1445,0 +743,5.7553,13.8269,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1428,0 +744,5.7857,12.7010,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9662,0 +745,5.7475,13.1449,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +746,5.9001,14.0597,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +747,5.5911,14.5633,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1396,0 +748,5.7724,12.3356,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10469,0 +749,5.7038,11.5659,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3164,0 +750,5.6904,11.8918,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +751,5.7808,14.3448,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1505,0 +752,5.6737,14.5478,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10837,0 +753,5.7734,13.9516,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3631,0 +754,5.6772,13.4905,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +755,5.8345,12.5420,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +756,5.7698,12.0286,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10221,0 +757,5.6400,11.8230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +758,5.7275,14.2652,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +759,5.6064,14.6114,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +760,5.7572,14.3995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10115,0 +761,5.7621,14.9797,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +762,5.7755,16.2103,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +763,5.8365,16.0523,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +764,5.7942,14.6114,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,10054,0 +765,5.8288,15.6830,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +766,5.7509,15.6762,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1502,0 +767,5.6955,16.1555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +768,5.7691,16.3920,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,31158,0 +769,5.7577,16.2645,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +770,5.6639,17.4618,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1613,0 +771,5.7302,16.1137,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +772,5.6672,15.0382,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10101,0 +773,5.7520,14.3914,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3175,0 +774,5.7542,13.4906,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1620,0 +775,5.8848,12.3896,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1572,0 +776,5.7230,14.5793,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9826,0 +777,5.8208,14.5317,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +778,5.7389,16.4679,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +779,5.7025,16.8821,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +780,5.5859,15.5401,0.0378,0.0000,0,0,0.0000,0,0.0000,0,1,0,162525,0 +781,5.6888,13.6713,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,33561,0 +782,5.7724,13.8076,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12877,0 +783,5.6873,14.8135,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10668,0 +784,5.7650,15.1583,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21421,0 +785,5.6974,13.7453,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7594,0 +786,5.7551,15.0462,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8598,0 +787,5.7128,13.7914,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6717,0 +788,5.6664,15.1132,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16970,0 +789,5.7262,13.5793,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4469,0 +790,5.7070,12.9200,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2423,0 +791,5.6025,11.9417,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1920,0 +792,5.5287,13.9759,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11122,0 +793,5.7472,12.7114,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +794,5.6652,11.7373,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +795,5.7387,11.9911,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1565,0 +796,5.6595,12.2489,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10155,0 +797,5.7202,13.0990,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2053,0 +798,5.6538,13.9986,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +799,5.8493,13.6531,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1920,0 +800,5.7930,12.6661,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8927,0 +801,5.7027,14.9062,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +802,5.7685,12.2027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +803,5.6988,12.4679,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +804,5.6699,13.5090,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10057,0 +805,5.7438,12.6743,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2866,0 +806,5.6565,11.7419,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +807,5.7308,11.9149,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1555,0 +808,5.6658,11.9930,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10319,0 +809,5.7805,11.5947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +810,5.6984,11.7500,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1557,0 +811,5.7578,13.2873,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2826,0 +812,5.7506,12.7073,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10234,0 +813,5.8881,13.2922,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1951,0 +814,5.7848,12.9661,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +815,5.7655,12.0670,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +816,5.7218,13.2027,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11402,0 +817,5.8075,12.7382,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3730,0 +818,5.7833,12.0074,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1659,0 +819,5.8529,12.2622,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +820,5.7975,12.5863,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10999,0 +821,5.7017,12.4381,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1658,0 +822,5.8219,12.5581,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2315,0 +823,5.7222,13.4667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1615,0 +824,5.7957,12.9785,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10643,0 +825,5.7320,13.1980,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +826,5.8678,14.9996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +827,5.7837,15.2073,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1622,0 +828,5.7040,12.1453,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10799,0 +829,5.7968,12.9225,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2816,0 +830,5.5770,12.7875,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2864,0 +831,5.6400,13.2992,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2942,0 +832,5.5588,13.2737,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10705,0 +833,5.6613,12.5536,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3646,0 +834,5.7623,12.1597,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +835,5.7533,13.5978,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +836,5.8341,13.1337,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11287,0 +837,5.7462,13.0383,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2596,0 +838,5.6497,12.5944,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2273,0 +839,5.7207,13.3355,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +840,5.6591,10.6887,0.0295,0.0000,0,0,0.0000,0,0.0000,0,1,0,156325,0 +841,5.7647,12.3923,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,30726,0 +842,5.5729,11.7512,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20831,0 +843,5.7535,12.2629,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11149,0 +844,5.6893,12.0489,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15838,0 +845,5.6450,11.8999,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10420,0 +846,5.5584,11.7851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3701,0 +847,5.6468,11.9113,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3619,0 +848,5.5392,12.8092,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15706,0 +849,5.6506,13.6424,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4135,0 +850,5.6517,13.3887,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3398,0 +851,5.5738,12.5047,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2593,0 +852,5.7875,12.8983,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11707,0 +853,5.7493,13.3847,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2354,0 +854,5.7432,14.3015,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +855,5.7271,15.0035,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +856,5.6042,13.7516,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11294,0 +857,5.7359,15.0891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +858,5.7401,14.7803,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +859,5.7565,14.1486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +860,5.7553,14.1681,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10449,0 +861,5.7460,14.9740,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2215,0 +862,5.7156,14.9737,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2245,0 +863,5.7745,13.3604,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2187,0 +864,5.7182,12.0001,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,34769,0 +865,5.6487,13.5387,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4075,0 +866,5.7076,14.1627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1992,0 +867,5.6448,14.9380,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +868,5.7210,11.8985,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10981,0 +869,5.7454,11.5328,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2633,0 +870,5.7705,12.2652,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2008,0 +871,5.8096,12.3488,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +872,5.6991,14.5446,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10535,0 +873,5.7721,14.2449,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1636,0 +874,5.7925,13.6639,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +875,5.8728,14.4389,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2420,0 +876,5.7565,12.4177,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10374,0 +877,5.6750,12.3309,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3026,0 +878,5.7280,14.8710,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +879,5.6582,14.6522,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +880,5.7428,13.7480,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11955,0 +881,5.6444,14.9479,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +882,5.7297,12.9805,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2527,0 +883,5.6585,14.6810,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1849,0 +884,5.7720,15.0015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11505,0 +885,5.7556,13.5977,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +886,5.7431,14.8848,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1970,0 +887,5.7421,14.8793,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2032,0 +888,5.7633,15.0392,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11658,0 +889,5.7172,13.9452,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1926,0 +890,5.7806,14.8376,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1869,0 +891,5.7535,14.4868,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2536,0 +892,5.7424,14.6669,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11130,0 +893,5.7462,14.7685,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2926,0 +894,5.8127,12.6043,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2623,0 +895,5.7973,11.9167,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +896,5.7515,14.0002,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10585,0 +897,5.6321,13.7190,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2793,0 +898,5.8086,14.0365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2544,0 +899,5.7263,14.4177,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2234,0 +900,5.7740,12.7786,0.0274,0.0000,0,0,0.0000,0,0.0000,0,1,0,164076,0 +901,5.7653,16.0442,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23471,0 +902,5.7970,16.2551,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,26086,0 +903,5.7686,15.7811,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,18539,0 +904,5.7695,16.3589,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,24003,0 +905,5.7633,16.3569,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +906,5.9168,15.8449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2683,0 +907,5.7705,16.3987,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1802,0 +908,5.7711,17.5207,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11674,0 +909,5.7489,15.9844,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2797,0 +910,5.7624,17.0428,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3573,0 +911,5.8027,15.8063,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +912,5.7680,15.8001,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13308,0 +913,5.7764,16.4453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4564,0 +914,5.7947,16.8247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2862,0 +915,5.7529,14.9557,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2438,0 +916,5.7585,15.0921,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11883,0 +917,5.7855,16.7915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2339,0 +918,5.7660,14.9355,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1991,0 +919,5.8967,14.8663,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +920,6.0669,14.2570,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11232,0 +921,5.9851,15.6891,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2364,0 +922,5.9213,13.9112,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +923,5.7652,14.5910,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +924,5.9447,12.0699,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10853,0 +925,5.7775,14.0877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +926,5.7894,15.0848,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +927,5.7570,13.8293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2120,0 +928,5.7571,12.5140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9886,0 +929,5.7458,11.5700,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2779,0 +930,5.7625,11.6722,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +931,5.8385,14.5144,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +932,5.8072,14.8970,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11406,0 +933,5.7646,16.3530,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2402,0 +934,5.7691,13.5793,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +935,5.7478,12.5368,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2409,0 +936,5.6509,11.9674,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10705,0 +937,5.7669,12.8617,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2389,0 +938,5.7488,15.0676,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1701,0 +939,5.6137,14.6822,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1882,0 +940,5.7316,15.1424,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11607,0 +941,5.6375,15.0374,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3537,0 +942,5.7006,15.2312,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2705,0 +943,5.7583,13.7101,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2397,0 +944,5.7721,15.1167,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11966,0 +945,5.7462,14.8259,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3447,0 +946,5.7733,13.7280,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2314,0 +947,5.6950,15.2526,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2443,0 +948,5.7533,13.5265,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +949,5.7435,14.0081,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2823,0 +950,5.7550,15.0034,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2651,0 +951,5.7434,13.9597,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2768,0 +952,5.7482,14.0680,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11876,0 +953,5.8346,14.7826,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2931,0 +954,5.7996,12.7341,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +955,5.7739,12.0819,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +956,5.7884,14.1096,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11403,0 +957,5.7353,13.1913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3584,0 +958,5.8470,14.1383,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3167,0 +959,5.7577,14.2457,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3305,0 +960,5.8289,12.6068,0.0169,0.0000,0,0,0.0000,0,0.0000,0,1,0,161907,0 +961,5.7506,15.9378,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,23828,0 +962,5.8783,15.6415,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16461,0 +963,5.8153,16.2590,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6771,0 +964,5.7677,16.2464,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17373,0 +965,5.7700,16.2371,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5513,0 +966,5.7520,15.6420,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4750,0 +967,5.7503,15.0204,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3002,0 +968,5.7136,15.4244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10214,0 +969,5.7423,16.1435,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +970,5.7720,16.9150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +971,5.9132,16.5072,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +972,5.9365,16.2613,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9950,0 +973,5.7669,15.9272,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3226,0 +974,5.7750,16.4199,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +975,5.7636,16.3030,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +976,5.7645,14.5002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12114,0 +977,6.0716,16.0882,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3584,0 +978,6.0014,15.7167,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +979,5.9154,14.4504,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2035,0 +980,5.7780,15.1008,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11804,0 +981,5.7580,13.5418,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2458,0 +982,5.7633,14.6445,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +983,5.7270,14.8437,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1881,0 +984,5.7937,12.7750,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11277,0 +985,5.7725,12.2866,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2205,0 +986,5.8150,14.8423,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +987,5.7764,15.0708,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +988,5.7744,12.2538,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11293,0 +989,5.7374,11.5434,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2794,0 +990,5.7213,11.6935,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2464,0 +991,5.8068,14.7714,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +992,5.7992,14.9987,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10268,0 +993,5.7505,15.8147,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3197,0 +994,5.7805,13.6714,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2580,0 +995,5.8282,13.5074,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1888,0 +996,5.7990,12.3215,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11755,0 +997,5.7365,13.2950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2618,0 +998,5.6552,14.5322,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2386,0 +999,5.7365,13.9702,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2633,0 +1000,5.7368,14.8627,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +1001,5.7542,15.0496,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2633,0 +1002,5.7548,15.0947,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1003,5.7545,14.7940,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +1004,5.7590,14.9382,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11870,0 +1005,5.7342,14.7586,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +1006,5.7267,14.9624,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2880,0 +1007,5.6478,15.1326,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3055,0 +1008,5.7462,15.0206,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12529,0 +1009,5.7281,14.9232,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3997,0 +1010,5.7406,13.9731,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3064,0 +1011,5.7048,14.6815,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3191,0 +1012,5.7317,15.0595,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12687,0 +1013,5.7298,14.7873,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3874,0 +1014,5.6632,12.5139,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3562,0 +1015,5.7802,13.7620,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3663,0 +1016,5.7870,15.0223,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12698,0 +1017,5.5989,14.7302,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1018,5.7401,14.9336,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2588,0 +1019,5.7372,13.9138,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2810,0 +1020,5.7649,14.2951,0.0184,0.0000,0,0,0.0000,0,0.0000,0,1,0,171563,0 +1021,5.7491,14.8032,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,24740,0 +1022,5.7778,16.8011,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,27489,0 +1023,5.7465,15.6736,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15376,0 +1024,5.7280,16.5139,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,39078,0 +1025,5.7482,15.9277,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8125,0 +1026,5.7396,15.1175,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7036,0 +1027,5.7183,14.0367,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2715,0 +1028,5.7398,15.0092,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13062,0 +1029,5.7405,13.1293,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1437,0 +1030,5.8584,12.2737,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +1031,5.8656,12.5471,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1872,0 +1032,5.7265,12.1105,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9835,0 +1033,5.6582,11.8335,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1613,0 +1034,5.6182,11.8469,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +1035,5.6531,12.8429,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +1036,5.5748,12.1281,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9876,0 +1037,5.6777,14.2750,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3734,0 +1038,5.7770,12.6637,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +1039,5.7032,12.1408,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +1040,5.7494,13.0488,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11035,0 +1041,5.7129,13.2995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2519,0 +1042,5.6060,11.6790,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1897,0 +1043,5.7160,12.0518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1505,0 +1044,5.6609,12.1736,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10820,0 +1045,5.7489,11.7017,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1659,0 +1046,5.6275,12.5585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +1047,5.7505,12.0195,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1502,0 +1048,5.6401,12.0197,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10624,0 +1049,5.7768,11.6740,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1402,0 +1050,5.7650,11.6949,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +1051,5.7027,12.6015,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +1052,5.6300,12.4920,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10105,0 +1053,5.7250,12.2985,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +1054,5.7683,12.9608,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +1055,5.7077,11.9320,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1912,0 +1056,5.7626,11.7873,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9144,0 +1057,5.6978,12.4462,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2091,0 +1058,5.6369,11.9274,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +1059,5.5874,12.6090,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +1060,5.6370,12.4339,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9862,0 +1061,5.7363,12.0983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3068,0 +1062,5.6768,13.7120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +1063,5.7962,13.8555,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +1064,5.7313,12.1472,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10296,0 +1065,5.8144,12.2942,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +1066,5.7273,11.6510,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +1067,5.6520,11.6636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +1068,5.7263,11.9332,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10184,0 +1069,5.6776,11.7999,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1070,5.7217,11.8815,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +1071,5.6600,11.9945,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +1072,5.7473,12.1231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11679,0 +1073,5.7526,12.4545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3655,0 +1074,5.6703,14.5786,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +1075,5.7300,14.2393,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +1076,5.6590,11.9814,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,11451,0 +1077,5.6904,14.1963,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +1078,5.6850,12.3528,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1788,0 +1079,5.5455,11.8623,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +1080,5.6360,10.4073,0.0193,0.0000,0,0,0.0000,0,0.0000,0,1,0,168961,0 +1081,5.5685,11.9602,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,21769,0 +1082,5.4993,11.9415,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14222,0 +1083,5.7428,12.2969,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10307,0 +1084,5.6631,12.2701,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15798,0 +1085,5.7621,12.5230,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7786,0 +1086,5.7060,12.8245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6333,0 +1087,5.8185,12.4446,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4415,0 +1088,5.7725,15.0806,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10223,0 +1089,5.6739,12.1003,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3509,0 +1090,5.5983,12.8121,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +1091,5.5825,11.9002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1434,0 +1092,5.7432,11.7885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9673,0 +1093,5.6801,12.1150,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3155,0 +1094,5.7503,14.0776,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +1095,5.6661,13.9047,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +1096,5.8207,13.9290,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9729,0 +1097,5.7682,15.0373,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +1098,5.8053,15.9053,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2979,0 +1099,5.7934,16.0796,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +1100,5.6906,15.8395,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9619,0 +1101,5.7547,16.2070,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1102,5.8277,15.0309,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +1103,5.7743,14.7907,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +1104,5.7871,13.1848,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10918,0 +1105,5.7758,13.4906,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2767,0 +1106,5.7938,14.2947,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +1107,5.7656,14.8701,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +1108,5.7871,12.6839,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10987,0 +1109,5.7777,11.5444,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +1110,5.7229,12.3966,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1532,0 +1111,5.7902,14.8126,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +1112,5.7839,14.4171,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +1113,5.6696,14.4805,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +1114,5.5995,12.6070,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +1115,5.5875,11.6380,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1550,0 +1116,5.6552,11.8490,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10304,0 +1117,5.7220,12.9768,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +1118,5.7755,14.0163,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2070,0 +1119,5.8034,14.1649,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2111,0 +1120,5.6698,14.0671,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,34660,0 +1121,5.7335,14.5904,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3792,0 +1122,5.7387,14.5451,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1123,5.6478,14.5294,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +1124,5.7222,14.5859,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11049,0 +1125,5.7288,14.6051,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 +1126,5.7213,11.5926,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2088,0 +1127,5.6687,12.1879,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2019,0 +1128,5.7305,14.0011,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10335,0 +1129,5.7130,11.5648,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2035,0 +1130,5.7049,11.5663,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1963,0 +1131,5.7015,11.5793,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +1132,5.6935,11.5403,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,10284,0 +1133,5.7337,11.6577,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2582,0 +1134,5.7357,11.6342,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1887,0 +1135,5.7319,11.5913,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1136,5.7563,11.6896,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12139,0 +1137,5.6869,11.6510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3592,0 +1138,5.7071,11.6112,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2077,0 +1139,5.7165,11.5431,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2025,0 +1140,5.6763,10.1312,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,192008,0 +1141,5.6952,11.5916,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,23885,0 +1142,5.7435,11.5519,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,26448,0 +1143,5.7277,11.5486,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11979,0 +1144,5.7107,11.7809,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,26515,0 +1145,5.7230,11.5154,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9738,0 +1146,5.6132,11.5518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6124,0 +1147,5.6963,11.5668,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4604,0 +1148,5.6338,11.6013,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13129,0 +1149,5.7616,11.5850,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3766,0 +1150,5.7521,11.5557,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3282,0 +1151,5.7551,11.5671,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3060,0 +1152,5.7575,11.5682,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,10316,0 +1153,5.7605,11.5708,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3365,0 +1154,5.7109,11.5666,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +1155,5.7456,11.5510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +1156,5.7540,11.5412,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11169,0 +1157,5.7455,12.2471,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +1158,5.8290,14.7451,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +1159,5.7789,14.9955,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2211,0 +1160,5.7874,15.0525,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10683,0 +1161,5.7283,13.9805,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1816,0 +1162,5.6799,15.0596,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +1163,5.7882,13.3555,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +1164,5.8491,12.6811,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11577,0 +1165,5.7114,12.0347,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3053,0 +1166,5.8896,13.7955,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2326,0 +1167,5.8276,14.3465,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +1168,5.8005,13.4871,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12109,0 +1169,5.7204,11.5550,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3516,0 +1170,5.7841,11.7911,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2279,0 +1171,5.8869,14.5406,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2046,0 +1172,5.8219,16.1261,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11853,0 +1173,5.7632,15.9880,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2575,0 +1174,5.7733,15.9168,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2427,0 +1175,5.8449,13.6580,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +1176,5.7902,12.1131,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11692,0 +1177,5.7714,13.0676,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2805,0 +1178,5.7300,14.4643,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +1179,5.6511,14.6144,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2143,0 +1180,5.7594,13.5880,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11384,0 +1181,5.6769,14.0242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3203,0 +1182,5.7238,14.8909,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2817,0 +1183,5.7447,15.5515,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2962,0 +1184,5.7530,14.7445,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11168,0 +1185,5.7565,16.1783,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3832,0 +1186,5.7790,16.4761,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3541,0 +1187,5.7274,15.7799,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2837,0 +1188,5.7610,15.0079,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12427,0 +1189,5.7579,14.5248,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3612,0 +1190,5.7671,14.8612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3482,0 +1191,5.7818,14.7282,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3632,0 +1192,5.7578,14.9388,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11812,0 +1193,5.7429,14.5906,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3643,0 +1194,5.8229,12.0343,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2605,0 +1195,5.7660,13.2046,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2846,0 +1196,5.7398,14.8909,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12432,0 +1197,5.6569,14.1952,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4496,0 +1198,5.8062,14.9036,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4035,0 +1199,5.6587,15.0310,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4040,0 +1200,5.7316,11.8664,0.0178,0.0000,0,0,0.0000,0,0.0000,0,1,0,169935,0 +1201,5.7565,13.3284,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,28829,0 +1202,5.7488,14.9822,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13816,0 +1203,5.7371,13.2869,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11351,0 +1204,5.7553,15.1486,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18172,0 +1205,5.7475,13.7463,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +1206,5.7405,14.8278,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4007,0 +1207,5.7121,15.1156,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1923,0 +1208,5.6428,14.9930,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10211,0 +1209,5.7302,13.6730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1686,0 +1210,5.7320,12.8130,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1407,0 +1211,5.7588,13.6858,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +1212,5.6830,14.8052,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10062,0 +1213,5.7126,13.6538,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +1214,5.7380,13.4484,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1920,0 +1215,5.7473,15.1389,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +1216,5.7481,14.6322,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,34512,0 +1217,5.7655,14.9079,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3770,0 +1218,5.7464,14.6964,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1660,0 +1219,5.7455,14.8979,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1402,0 +1220,5.7233,15.0483,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10089,0 +1221,5.7415,15.1629,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3112,0 +1222,5.7330,14.9757,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +1223,5.7776,14.8853,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +1224,5.7679,12.1710,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10298,0 +1225,5.7531,12.6398,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1485,0 +1226,5.7822,14.9437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1227,5.7305,15.2855,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +1228,5.7337,12.6904,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11175,0 +1229,5.7840,11.5632,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3148,0 +1230,5.7606,12.8161,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +1231,5.8510,14.8178,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +1232,5.7787,14.7855,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11249,0 +1233,5.7387,14.9023,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +1234,5.6842,13.8979,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1440,0 +1235,5.6831,14.2790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1455,0 +1236,5.6595,13.0825,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,10297,0 +1237,5.6260,12.2227,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +1238,5.8072,14.1237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +1239,5.7593,14.9235,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1485,0 +1240,5.8024,12.6322,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10555,0 +1241,5.5439,11.8100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1527,0 +1242,4.7523,12.3922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +1243,4.5883,13.1546,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1428,0 +1244,4.5644,11.6366,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,10395,0 +1245,20.8090,11.8102,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +1246,5.2496,15.7010,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +1247,26.0465,12.0225,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +1248,8.3244,12.5805,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9460,0 +1249,20.3188,12.5008,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +1250,11.5166,12.3802,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +1251,8.9757,12.3705,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +1252,6.7493,12.2253,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,11363,0 +1253,5.7869,11.7610,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2285,0 +1254,5.2780,12.4614,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +1255,4.6459,11.6954,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +1256,4.8415,11.5612,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,10685,0 +1257,4.7843,11.5321,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +1258,4.7383,11.7213,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +1259,5.1290,12.3397,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1664,0 +1260,6.8517,11.6679,0.0548,0.0000,0,0,0.0000,0,0.0000,0,1,0,152675,0 +1261,9.0702,11.8945,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,28942,0 +1262,5.8861,11.8405,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,26210,0 +1263,19.7858,11.8997,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,17300,0 +1264,5.2373,15.2127,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,27193,0 +1265,4.8353,12.0947,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12221,0 +1266,4.8032,12.1386,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7608,0 +1267,6.4822,11.8146,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5548,0 +1268,4.8907,11.7561,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,15512,0 +1269,4.8287,11.6015,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3544,0 +1270,4.7737,11.6444,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +1271,5.2113,11.7617,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1752,0 +1272,5.5048,11.7039,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10900,0 +1273,5.8019,11.8203,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2077,0 +1274,5.7027,12.1116,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +1275,5.6582,11.9814,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1505,0 +1276,5.7002,11.7845,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10519,0 +1277,5.7233,11.7996,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +1278,5.6437,11.7536,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +1279,5.7638,12.5953,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +1280,9.1296,12.0006,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,31328,0 +1281,5.4624,11.8912,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2197,0 +1282,5.8511,11.8201,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1850,0 +1283,5.4815,11.8995,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +1284,5.4104,11.6464,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11089,0 +1285,4.9841,15.1641,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1819,0 +1286,6.1215,14.3861,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2326,0 +1287,5.8962,14.9885,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2246,0 +1288,5.9088,14.8138,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10670,0 +1289,5.7976,15.5012,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +1290,5.8458,14.0772,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1844,0 +1291,5.8572,13.4712,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2129,0 +1292,5.8522,13.1538,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,10395,0 +1293,5.3735,11.7030,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3033,0 +1294,5.7229,11.5916,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1933,0 +1295,5.8716,12.6100,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1923,0 +1296,5.7531,14.8625,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12095,0 +1297,5.7501,15.2580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3491,0 +1298,5.8503,14.1808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2235,0 +1299,5.7855,13.5348,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2138,0 +1300,5.8548,14.2687,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11763,0 +1301,5.8793,12.9389,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2317,0 +1302,5.8553,14.3710,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +1303,5.7022,14.3662,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2487,0 +1304,6.0027,14.6739,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11872,0 +1305,5.5963,14.6598,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2067,0 +1306,5.5060,14.3299,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2110,0 +1307,5.4277,17.6307,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +1308,5.7379,17.7264,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11329,0 +1309,5.7563,17.8077,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3337,0 +1310,5.7296,17.8597,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2928,0 +1311,5.9155,16.9188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3220,0 +1312,6.2065,19.8088,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11078,0 +1313,6.2560,21.7922,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3662,0 +1314,6.1372,22.2890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3351,0 +1315,6.2334,22.5330,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2662,0 +1316,6.1063,23.1573,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12243,0 +1317,6.1314,23.4410,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3304,0 +1318,6.3057,23.9010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3233,0 +1319,6.1287,24.6800,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3352,0 +1320,6.2817,19.5650,0.0709,0.0000,0,0,0.0000,0,0.0000,0,1,0,155778,0 +1321,6.1862,22.1920,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,30307,0 +1322,6.5248,22.1564,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,19906,0 +1323,6.5130,22.8845,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11495,0 +1324,6.4163,23.4707,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,16410,0 +1325,6.3649,23.9637,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12323,0 +1326,6.3040,24.5009,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3319,0 +1327,6.4667,24.8635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3411,0 +1328,6.3765,25.6360,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15452,0 +1329,6.3717,26.1760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4056,0 +1330,6.3362,26.8428,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3142,0 +1331,6.2684,27.3445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +1332,6.2553,27.7366,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11716,0 +1333,6.2700,28.1934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2141,0 +1334,6.3742,28.5993,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +1335,6.4653,29.0673,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +1336,6.3756,29.7115,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11296,0 +1337,6.4844,30.0547,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1716,0 +1338,6.3061,30.7997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +1339,6.3231,31.1280,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +1340,6.3242,31.7944,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10666,0 +1341,7.0637,31.5165,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2341,0 +1342,6.8748,32.6251,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2205,0 +1343,7.0547,32.6945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2300,0 +1344,7.0558,33.3921,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9641,0 +1345,7.0591,33.8018,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2760,0 +1346,7.0283,34.3875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +1347,7.0392,34.7650,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +1348,6.9237,35.3802,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11239,0 +1349,6.7489,35.9202,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +1350,6.5434,36.4741,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2084,0 +1351,6.3321,37.0571,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2177,0 +1352,6.3306,37.3913,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10575,0 +1353,6.2800,37.8926,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +1354,6.3602,38.2545,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +1355,6.4737,38.4563,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1638,0 +1356,6.5938,38.4922,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10373,0 +1357,6.4147,38.6823,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2917,0 +1358,6.4335,38.6975,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +1359,6.2668,38.8804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2063,0 +1360,6.4281,38.6594,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11932,0 +1361,6.2242,39.0407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3169,0 +1362,6.2865,38.8783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +1363,6.3550,38.9661,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2179,0 +1364,6.2079,39.0470,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11776,0 +1365,6.3383,38.8555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2253,0 +1366,6.2895,38.9689,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2227,0 +1367,6.2860,38.8686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2370,0 +1368,6.3158,38.9355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11850,0 +1369,6.2496,39.0675,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2144,0 +1370,6.2942,39.0457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2198,0 +1371,6.2990,39.0963,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2224,0 +1372,6.2893,39.0323,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11347,0 +1373,6.2270,38.9642,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3425,0 +1374,6.2773,38.8894,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3427,0 +1375,6.1582,38.9873,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3530,0 +1376,6.3243,38.7306,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,36276,0 +1377,6.2590,38.8697,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5051,0 +1378,6.3048,38.8163,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3756,0 +1379,5.9906,39.2434,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2898,0 +1380,6.3327,36.3605,0.3989,0.0000,0,0,0.0000,0,0.0000,0,1,0,163570,0 +1381,6.3075,36.7855,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,24594,0 +1382,6.1143,37.2580,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,25718,0 +1383,6.2498,37.4478,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,18210,0 +1384,6.0986,38.3316,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,24230,0 +1385,5.9667,38.4550,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8686,0 +1386,5.8844,38.6334,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,6467,0 +1387,5.8877,38.6379,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4426,0 +1388,5.9992,37.4795,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12197,0 +1389,5.9159,32.3843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5134,0 +1390,5.9689,27.1440,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +1391,6.0620,21.8381,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1560,0 +1392,6.1565,20.0978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12083,0 +1393,6.2284,22.3737,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3863,0 +1394,6.3440,22.7093,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2815,0 +1395,6.2992,23.2065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2223,0 +1396,6.3175,23.6544,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11903,0 +1397,6.2870,24.1820,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1926,0 +1398,6.2762,24.6158,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +1399,6.2932,23.0510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1723,0 +1400,6.2009,21.4045,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11636,0 +1401,6.2252,20.2509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +1402,6.0715,22.2446,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +1403,6.2234,22.5069,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +1404,6.1743,23.2264,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10946,0 +1405,6.1760,23.7087,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2326,0 +1406,6.1780,24.3440,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2268,0 +1407,6.2979,24.8864,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2300,0 +1408,6.2789,25.5633,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9843,0 +1409,6.2614,26.1231,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2882,0 +1410,6.1970,26.8484,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2274,0 +1411,6.2185,27.2131,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +1412,6.2856,27.6077,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11445,0 +1413,6.7465,27.6550,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2523,0 +1414,6.6750,28.4380,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2508,0 +1415,6.4031,29.0962,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2308,0 +1416,6.4839,29.4137,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10859,0 +1417,6.4067,30.0875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2222,0 +1418,6.4158,30.5210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +1419,6.4520,31.0485,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +1420,7.1385,30.9355,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11520,0 +1421,7.0422,31.8044,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3056,0 +1422,6.8340,32.2657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +1423,6.6614,32.9335,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +1424,6.5577,33.4430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12105,0 +1425,6.4633,34.0488,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3203,0 +1426,6.5013,34.3937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2151,0 +1427,6.3723,34.9959,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2176,0 +1428,6.3846,35.3054,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11738,0 +1429,6.4783,35.6385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2674,0 +1430,6.3164,36.2551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2442,0 +1431,6.3468,36.4958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2525,0 +1432,6.4460,36.9642,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11807,0 +1433,6.3790,37.4550,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2779,0 +1434,6.2984,37.9968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1953,0 +1435,6.7976,38.0446,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +1436,7.0268,38.4593,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11236,0 +1437,7.2302,38.4509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3259,0 +1438,6.8453,39.0363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +1439,6.8113,39.0012,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2981,0 +1440,6.6467,36.8219,0.0264,0.0000,0,0,0.0000,0,0.0000,0,1,0,162568,0 +1441,7.0312,36.7479,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,24015,0 +1442,6.3069,38.5049,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17891,0 +1443,6.3150,38.3204,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6800,0 +1444,6.2693,38.8174,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16681,0 +1445,6.2845,38.7968,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5849,0 +1446,6.2709,39.0080,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4322,0 +1447,6.2848,38.9520,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2567,0 +1448,6.2680,39.1146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10263,0 +1449,6.1803,39.1758,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2451,0 +1450,6.3204,38.9579,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +1451,6.2861,39.1399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +1452,6.2672,39.1131,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9909,0 +1453,6.2412,39.2155,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3229,0 +1454,6.2762,39.0622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2061,0 +1455,6.2998,39.0072,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1886,0 +1456,6.2654,38.2250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12569,0 +1457,6.4469,38.4150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4172,0 +1458,6.3161,38.4626,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2383,0 +1459,6.2888,27.4910,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1904,0 +1460,6.1239,21.5678,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11803,0 +1461,4.9996,15.0137,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +1462,4.6078,13.9236,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +1463,4.6132,12.3324,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2204,0 +1464,4.6134,11.8080,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11284,0 +1465,4.5284,11.9060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2259,0 +1466,4.5370,12.3879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +1467,4.5727,12.9864,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1951,0 +1468,4.7099,16.1815,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10899,0 +1469,5.2572,16.0109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2461,0 +1470,5.7153,15.9449,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2299,0 +1471,5.6466,14.3072,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2438,0 +1472,5.7875,11.5322,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,35137,0 +1473,5.7467,11.4510,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4164,0 +1474,6.0878,13.9687,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2765,0 +1475,6.1728,13.9070,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1841,0 +1476,5.2041,15.8742,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11672,0 +1477,5.4995,15.7207,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2562,0 +1478,5.7623,15.4207,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2510,0 +1479,5.6531,16.0560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2749,0 +1480,5.6701,16.1873,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10985,0 +1481,5.6688,17.3846,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2752,0 +1482,5.7409,18.0777,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +1483,5.7329,17.6918,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1932,0 +1484,5.7429,18.3578,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11870,0 +1485,5.7106,19.2965,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3425,0 +1486,5.7266,21.9335,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2994,0 +1487,5.7307,22.3709,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2690,0 +1488,5.8136,22.7627,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12590,0 +1489,5.5770,23.5562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3640,0 +1490,5.6637,22.5149,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +1491,5.6723,18.8498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2920,0 +1492,5.8487,21.3133,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12350,0 +1493,5.8788,20.8964,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3420,0 +1494,6.1150,19.8123,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +1495,5.7415,19.8124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3699,0 +1496,6.2160,17.8500,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12338,0 +1497,6.2021,17.8428,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3762,0 +1498,6.2028,18.0607,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2777,0 +1499,6.1706,21.8704,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3290,0 +1500,6.9277,20.6529,0.0239,0.0000,0,0,0.0000,0,0.0000,0,1,0,170988,0 +1501,6.9250,22.0300,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,24575,0 +1502,7.2817,22.2392,0.0277,0.0000,0,0,0.0000,0,0.0000,0,0,0,27675,0 +1503,7.0673,23.2508,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15460,0 +1504,7.0548,23.6706,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,19370,0 +1505,6.9883,24.4680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8795,0 +1506,6.9908,25.0193,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7276,0 +1507,7.0290,25.5861,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2666,0 +1508,6.8937,26.3577,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13554,0 +1509,6.7479,26.9684,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +1510,6.6470,27.5109,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1785,0 +1511,6.7008,27.9395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +1512,6.5533,28.6414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10162,0 +1513,6.3594,29.2940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2660,0 +1514,6.2666,29.8459,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +1515,6.3270,30.2652,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +1516,6.3074,30.9176,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10797,0 +1517,6.3615,31.3380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3370,0 +1518,6.3603,31.9020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2403,0 +1519,6.3273,32.4558,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2460,0 +1520,6.8274,32.5080,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13010,0 +1521,6.7478,33.3614,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4069,0 +1522,6.7660,33.6747,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2227,0 +1523,6.5571,34.4668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +1524,6.7962,34.5308,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11903,0 +1525,6.5204,35.4047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2516,0 +1526,6.5042,35.6999,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2122,0 +1527,6.3192,36.3330,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2049,0 +1528,7.1837,35.7406,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11326,0 +1529,6.5385,37.3315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2425,0 +1530,6.5419,37.3058,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1682,0 +1531,6.5511,38.1709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +1532,6.5477,38.6187,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11192,0 +1533,6.4184,38.8930,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2662,0 +1534,6.8567,38.5156,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2514,0 +1535,6.6112,38.9647,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2756,0 +1536,6.7505,38.6235,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,32154,0 +1537,6.5525,39.0412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1538,6.3970,39.0995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2841,0 +1539,6.4400,39.1330,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2242,0 +1540,6.6729,38.9565,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11833,0 +1541,6.7680,39.0453,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2968,0 +1542,6.5933,39.1352,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2995,0 +1543,6.6899,38.9345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3136,0 +1544,6.5469,38.9891,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11399,0 +1545,6.3225,39.3290,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2232,0 +1546,6.3102,39.0080,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2138,0 +1547,6.9770,38.4335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2345,0 +1548,6.2986,39.6124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10878,0 +1549,6.3693,39.0182,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3955,0 +1550,6.8845,38.7957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2904,0 +1551,6.7754,39.0326,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3031,0 +1552,6.5989,39.0642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13200,0 +1553,6.6825,38.8360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4460,0 +1554,6.5424,38.9761,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3143,0 +1555,6.2784,39.2255,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3047,0 +1556,6.3487,38.3462,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12552,0 +1557,6.8283,38.4252,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3070,0 +1558,6.9589,40.9162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3132,0 +1559,7.0369,37.5507,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3352,0 +1560,7.0016,36.9365,0.0245,0.0000,0,0,0.0000,0,0.0000,0,1,0,168023,0 +1561,7.0204,36.3403,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22146,0 +1562,7.4816,36.8352,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15384,0 +1563,7.2446,37.4863,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11180,0 +1564,7.0035,38.3396,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16328,0 +1565,7.0155,38.5725,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7504,0 +1566,7.0198,38.7397,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6391,0 +1567,6.9608,38.7286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5276,0 +1568,6.8948,37.8899,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13950,0 +1569,6.6580,38.4453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3400,0 +1570,6.5047,40.7602,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2758,0 +1571,6.4954,37.5151,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +1572,6.4134,39.2860,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9650,0 +1573,6.4707,38.0897,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +1574,6.1260,38.9425,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3078,0 +1575,6.0640,38.8837,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +1576,6.4903,38.7938,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10570,0 +1577,6.3764,38.5613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +1578,6.2772,38.7565,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +1579,6.4475,38.5875,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +1580,6.3636,38.7949,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10727,0 +1581,6.2715,38.8444,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2448,0 +1582,6.1139,39.0292,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1521,0 +1583,6.1578,39.0596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +1584,6.0668,39.1361,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11903,0 +1585,6.2228,38.7593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3412,0 +1586,6.3555,38.5562,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +1587,6.0441,39.0953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +1588,5.9985,39.4360,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11659,0 +1589,6.1108,38.5363,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +1590,5.9703,39.2035,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1830,0 +1591,6.2604,38.6858,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +1592,6.0380,39.1358,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11790,0 +1593,6.2551,35.7563,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2402,0 +1594,6.1807,31.2772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1947,0 +1595,5.7450,28.4890,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1971,0 +1596,5.8078,25.6803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11008,0 +1597,5.7066,23.0362,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3077,0 +1598,5.6947,20.1139,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2876,0 +1599,5.8691,18.0297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3330,0 +1600,5.7592,17.6011,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10648,0 +1601,5.9620,18.0774,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3609,0 +1602,6.1046,18.0232,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2954,0 +1603,6.2732,21.9409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +1604,6.2618,22.5520,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11782,0 +1605,6.5040,22.7103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3001,0 +1606,6.6102,23.2536,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2950,0 +1607,6.4724,23.9891,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2825,0 +1608,6.3519,24.6405,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11062,0 +1609,6.3190,25.2532,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2474,0 +1610,6.3322,25.8485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +1611,6.3362,26.4441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2518,0 +1612,6.2918,27.1182,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10672,0 +1613,6.2993,27.6028,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4092,0 +1614,6.7172,27.7227,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3005,0 +1615,6.3670,28.7969,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2990,0 +1616,6.3614,29.0676,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12799,0 +1617,6.4425,29.6522,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4215,0 +1618,6.5504,30.0580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3152,0 +1619,6.4518,30.6804,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3064,0 +1620,6.5367,28.0577,0.0359,0.0000,0,0,0.0000,0,0.0000,0,1,0,192143,0 +1621,6.6680,28.4760,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23731,0 +1622,6.3743,29.2725,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,26401,0 +1623,6.4052,29.6175,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +1624,6.4025,30.2608,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,26322,0 +1625,6.3850,30.7296,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9796,0 +1626,6.3360,31.3296,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +1627,6.3689,31.7828,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4698,0 +1628,6.3421,32.4382,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13330,0 +1629,6.3329,32.9035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3669,0 +1630,6.3415,33.3810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3306,0 +1631,6.3941,33.7880,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3092,0 +1632,6.3331,34.3997,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,35358,0 +1633,6.2872,34.8025,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4741,0 +1634,6.3230,35.1942,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2653,0 +1635,6.3814,35.5865,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +1636,6.3570,36.0821,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11316,0 +1637,6.7818,36.0097,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +1638,6.6831,36.7418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +1639,6.8467,36.8413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2301,0 +1640,6.9132,37.4690,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10695,0 +1641,6.7345,38.0937,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1947,0 +1642,6.7206,38.4032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +1643,6.8670,38.2519,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1637,0 +1644,6.6665,38.6971,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10471,0 +1645,6.3110,38.9253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2982,0 +1646,6.3368,38.8600,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1984,0 +1647,6.3306,39.0655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2049,0 +1648,6.3450,39.0983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12176,0 +1649,6.5995,38.8342,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3918,0 +1650,6.6879,38.7420,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2177,0 +1651,6.5105,38.8738,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2196,0 +1652,6.3842,39.0603,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,11899,0 +1653,6.4005,38.9245,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2389,0 +1654,6.6523,38.7178,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2224,0 +1655,6.4679,38.9675,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2540,0 +1656,6.3681,38.8437,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12014,0 +1657,6.4300,38.7312,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +1658,6.3393,38.8227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +1659,6.1822,38.9883,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2165,0 +1660,6.3606,38.7970,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11386,0 +1661,6.2673,38.9510,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3449,0 +1662,6.2662,38.9078,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3017,0 +1663,6.3263,39.0455,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3127,0 +1664,6.2523,39.0517,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11084,0 +1665,6.6030,38.6782,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3995,0 +1666,6.3689,38.9690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3517,0 +1667,6.4160,38.6732,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2739,0 +1668,6.3248,38.8963,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +1669,6.2358,38.8066,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3342,0 +1670,6.3516,325.8722,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3385,0 +1671,6.3258,309.4509,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3491,0 +1672,299.7060,14.2747,0.0129,0.0000,0,0,0.0000,0,0.0000,0,1,0,96098,0 +1673,5.8797,16.7990,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,14323,0 +1674,5.8804,19.4633,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13676,0 +1675,6.2603,21.7720,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14527,0 +1676,5.9974,24.3219,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,33547,0 +1677,5.9369,26.9340,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,19696,0 +1678,6.7329,28.7190,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12440,0 +1679,8.1111,29.1545,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6508,0 +1680,7.3007,30.3950,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16505,0 +1681,6.9467,31.9945,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6271,0 +1682,6.5927,33.9500,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4402,0 +1683,6.0200,36.5325,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3532,0 +1684,5.7130,39.3662,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10837,0 +1685,5.3663,42.5831,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +1686,5.1058,46.0331,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +1687,4.8443,49.7882,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1566,0 +1688,4.5685,53.7800,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11031,0 +1689,4.5772,57.7084,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1785,0 +1690,4.6420,61.6053,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +1691,5.3390,64.8302,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1692,4.7307,68.6895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10584,0 +1693,4.8334,72.4214,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1830,0 +1694,4.8858,76.1068,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +1695,4.9036,79.7715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1853,0 +1696,5.8242,82.5515,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9361,0 +1697,5.8687,85.2084,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2766,0 +1698,4.9578,86.4439,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1802,0 +1699,5.3078,88.8577,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1545,0 +1700,4.7263,84.0884,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10999,0 +1701,5.0677,72.7953,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2520,0 +1702,5.0848,66.3517,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +1703,5.8027,58.3476,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2038,0 +1704,5.8786,50.4026,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10402,0 +1705,5.8253,40.0790,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +1706,5.7163,33.1482,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1707,5.8858,24.2824,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +1708,5.6747,16.7762,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11528,0 +1709,5.6571,11.2707,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2968,0 +1710,5.7328,12.2373,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2415,0 +1711,5.7154,12.0627,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2724,0 +1712,5.8046,14.7093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11866,0 +1713,6.1044,14.7301,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3223,0 +1714,6.0020,14.7124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +1715,6.1248,14.9060,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2100,0 +1716,6.1466,14.7123,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11692,0 +1717,6.0050,14.7001,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3103,0 +1718,6.1643,14.6376,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2567,0 +1719,6.1409,17.4850,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2608,0 +1720,6.3131,14.9052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11795,0 +1721,6.0190,14.7969,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3149,0 +1722,6.0537,14.9632,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +1723,6.0474,14.8031,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2222,0 +1724,6.3918,15.5192,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11108,0 +1725,6.1042,20.6762,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +1726,6.1293,21.7360,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +1727,6.0928,22.2713,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3005,0 +1728,6.1553,22.5735,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,35948,0 +1729,6.2693,22.8695,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5231,0 +1730,6.1814,23.3804,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3512,0 +1731,5.9999,23.9072,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2889,0 +1732,6.0223,21.5299,0.0212,0.0000,0,0,0.0000,0,0.0000,0,1,0,165263,0 +1733,5.9777,22.0255,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,26722,0 +1734,6.1121,22.2365,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,27172,0 +1735,6.2302,22.5687,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,17509,0 +1736,6.1378,23.0403,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,23257,0 +1737,6.2079,23.3013,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11550,0 +1738,6.3626,20.8105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2317,0 +1739,6.1814,15.7473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2007,0 +1740,5.9640,14.7814,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12348,0 +1741,6.0380,14.8338,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3124,0 +1742,6.2504,13.3381,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3762,0 +1743,5.9044,11.3562,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +1744,4.8472,11.4345,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13344,0 +1745,6.2539,11.4704,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4382,0 +1746,5.9844,11.7916,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2777,0 +1747,6.5253,11.6698,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2278,0 +1748,6.3494,13.9928,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11763,0 +1749,6.6734,14.8471,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2390,0 +1750,6.3806,14.9908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2160,0 +1751,6.4024,14.8956,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +1752,6.3246,15.3422,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11115,0 +1753,6.5054,22.0635,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +1754,6.4654,22.5682,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1427,0 +1755,6.3211,20.4742,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +1756,6.0272,12.6749,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10733,0 +1757,6.0955,11.5479,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +1758,5.9929,11.5801,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +1759,5.2410,11.4755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +1760,4.5080,11.4072,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9595,0 +1761,4.5543,11.5970,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2886,0 +1762,4.4790,11.4588,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +1763,4.4462,11.6050,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1616,0 +1764,4.8750,12.0008,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11453,0 +1765,5.3076,11.5014,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +1766,5.9163,11.6341,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2370,0 +1767,6.9354,11.7802,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2444,0 +1768,6.9318,14.9289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10680,0 +1769,6.9167,14.8492,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2425,0 +1770,6.8764,14.7481,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +1771,6.6860,15.0335,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1799,0 +1772,6.8792,22.0971,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,11630,0 +1773,6.8372,22.7102,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3549,0 +1774,6.5494,23.2691,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2685,0 +1775,6.6512,23.5605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2389,0 +1776,6.4421,24.2741,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12240,0 +1777,6.4467,24.5452,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +1778,6.3720,25.1005,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +1779,6.3971,25.3757,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +1780,6.3304,26.0118,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11905,0 +1781,6.3948,26.3685,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2755,0 +1782,6.2728,26.9370,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2531,0 +1783,6.3293,27.1931,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2695,0 +1784,6.2479,27.7616,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11823,0 +1785,6.3196,28.0345,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2975,0 +1786,6.2682,28.5972,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +1787,6.3080,28.9670,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2347,0 +1788,6.4635,29.3622,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11508,0 +1789,6.2959,30.0554,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3632,0 +1790,6.2459,30.5060,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1791,6.5570,30.6425,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3322,0 +1792,6.3161,28.5457,0.0243,0.0000,0,0,0.0000,0,0.0000,0,1,0,155847,0 +1793,6.2518,28.8359,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,22284,0 +1794,6.1697,29.5549,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19499,0 +1795,6.3021,29.8262,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7476,0 +1796,6.4067,30.3371,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17118,0 +1797,6.4170,30.8175,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4129,0 +1798,6.2842,31.5636,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2607,0 +1799,6.4578,31.7300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2377,0 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.txt new file mode 100644 index 0000000..9067590 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=35 +data_rate_limit_mbps=35 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=6.086 +avg_encode_latency_ms=18.873 +p95_encode_latency_ms=38.897 +max_encode_latency_ms=325.872 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=15713060 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.csv diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.csv new file mode 100644 index 0000000..0cfcadd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.csv @@ -0,0 +1,1801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,12.3287,20.1457,0.0230,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.3086,6.1765,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,17631,0 +2,3.1975,8.1855,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7835,0 +3,3.4477,6.1121,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11038,0 +4,3.7914,6.2181,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,22313,0 +5,3.7044,6.1154,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,10072,0 +6,3.7389,6.2291,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3764,0 +7,4.0960,6.2728,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2926,0 +8,4.0495,6.2260,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8658,0 +9,4.0482,6.1412,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +10,4.5506,6.1865,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1027,0 +11,4.5679,6.2044,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1231,0 +12,4.5816,6.2475,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6834,0 +13,3.7631,6.3013,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +14,3.3239,6.2425,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2143,0 +15,3.0490,6.1653,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1918,0 +16,2.9855,6.2289,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8770,0 +17,3.2828,6.1547,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3123,0 +18,3.4985,6.1065,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2323,0 +19,3.7485,6.1695,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +20,3.7123,6.1273,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8392,0 +21,4.0461,6.7679,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1616,0 +22,4.3266,6.4244,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +23,4.2056,6.3094,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +24,4.2387,6.4357,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8114,0 +25,4.1938,6.3492,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1272,0 +26,4.1772,6.2908,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +27,4.6892,6.3013,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1276,0 +28,4.7115,6.3304,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7171,0 +29,4.7277,6.3927,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +30,4.7248,6.3283,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2059,0 +31,4.9075,6.3491,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +32,4.9783,6.3894,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,7320,0 +33,4.9467,6.4270,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2572,0 +34,5.0187,6.3823,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2161,0 +35,5.1089,6.4549,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +36,5.3833,6.5392,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,8740,0 +37,5.4997,6.4995,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2189,0 +38,5.1409,6.3998,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2162,0 +39,4.8903,6.3350,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2190,0 +40,5.3032,6.4219,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8061,0 +41,5.1425,6.3972,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1779,0 +42,5.1449,6.3277,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1591,0 +43,5.1787,6.3931,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +44,5.3128,6.4460,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7092,0 +45,5.3130,6.6472,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1607,0 +46,5.3603,6.4439,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +47,5.2904,6.3907,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2194,0 +48,5.1775,6.2976,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,9298,0 +49,5.2533,6.3582,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3672,0 +50,5.2460,6.3855,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3016,0 +51,5.2655,6.3742,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3102,0 +52,5.7076,6.3859,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9204,0 +53,5.6857,6.4353,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3157,0 +54,5.5122,6.4720,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3242,0 +55,5.2201,6.4020,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3363,0 +56,5.6636,6.4341,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9417,0 +57,5.4250,6.4543,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2788,0 +58,5.3712,6.4928,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2281,0 +59,5.3685,6.3739,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2307,0 +60,5.5944,5.6071,0.0416,0.0000,0,0,0.0000,0,0.0000,0,1,0,119347,0 +61,5.3708,6.4183,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,17507,0 +62,5.2022,6.4215,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,18445,0 +63,5.3351,6.4757,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,10951,0 +64,5.3575,6.5196,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,13056,0 +65,5.3727,6.4180,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4940,0 +66,5.2916,6.6092,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4325,0 +67,5.3541,6.3499,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3017,0 +68,5.3398,6.3522,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8535,0 +69,5.3807,6.3612,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +70,5.3416,6.2931,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +71,5.3284,6.3738,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +72,5.5982,6.4078,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7700,0 +73,5.6114,6.3772,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,849,0 +74,5.3770,6.3883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +75,5.2172,6.3556,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +76,5.6881,6.3552,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6112,0 +77,5.5981,6.3950,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1006,0 +78,5.7243,6.3976,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +79,5.6532,6.3900,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +80,5.5278,6.2835,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8295,0 +81,5.7337,6.3275,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +82,5.6183,6.3193,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +83,5.3137,6.3793,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,892,0 +84,5.3228,6.3966,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8262,0 +85,5.5838,6.3537,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +86,5.6215,6.3892,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +87,5.5908,6.3467,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +88,5.3492,6.3771,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8112,0 +89,5.3483,6.3915,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +90,5.3116,6.4220,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +91,5.3422,6.3383,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +92,5.1930,6.3509,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6409,0 +93,5.2859,6.4512,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +94,5.3338,6.5137,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +95,5.6074,6.3995,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +96,5.8353,6.3962,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,22093,0 +97,5.6804,6.4174,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +98,5.6247,6.3945,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,956,0 +99,5.4053,6.4952,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,866,0 +100,5.2988,6.6433,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +101,5.1922,6.5942,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +102,5.2640,6.6135,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +103,5.2879,6.3744,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,811,0 +104,5.3975,6.4901,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7541,0 +105,5.3071,6.4600,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +106,5.2766,6.3565,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +107,5.3183,6.3457,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,776,0 +108,5.3888,6.3376,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6471,0 +109,5.3600,6.3579,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +110,5.4188,6.4486,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +111,5.3621,6.3988,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +112,5.3441,6.3548,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8107,0 +113,5.3582,6.3720,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2356,0 +114,5.3430,6.3829,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2016,0 +115,5.2899,6.5109,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +116,5.3579,6.4853,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8274,0 +117,5.3531,6.4125,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1106,0 +118,5.3403,6.6450,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1260,0 +119,5.3291,6.3685,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1337,0 +120,5.3295,5.5508,0.0249,0.0000,0,0,0.0000,0,0.0000,0,1,0,106449,0 +121,5.3495,6.4737,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16881,0 +122,5.2056,6.3605,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6844,0 +123,5.2741,6.4673,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7578,0 +124,5.3135,6.5597,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12162,0 +125,5.2703,6.3909,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3375,0 +126,5.3231,6.4625,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3537,0 +127,5.3943,6.3931,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2965,0 +128,5.3382,6.3806,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7851,0 +129,5.3993,6.3381,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2008,0 +130,5.3418,6.3664,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1697,0 +131,5.3599,6.3859,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1407,0 +132,5.2183,6.4827,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7427,0 +133,4.5797,6.3114,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1942,0 +134,4.6647,6.2216,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +135,4.5624,6.2359,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +136,4.5831,6.2588,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7519,0 +137,4.5812,6.2620,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +138,4.9335,6.2426,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1912,0 +139,4.8205,6.2673,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +140,5.1608,6.3429,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6107,0 +141,5.0863,6.3735,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +142,5.3660,6.4100,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +143,5.3513,6.3788,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,915,0 +144,5.3658,6.3915,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8408,0 +145,5.3464,6.4120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2660,0 +146,5.3451,6.3782,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +147,5.3808,6.3284,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +148,5.2165,6.3699,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8358,0 +149,5.3703,6.3700,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1264,0 +150,5.3209,6.3942,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +151,5.3053,6.3817,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +152,5.1971,6.4848,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8301,0 +153,5.2995,6.4555,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +154,5.2685,6.4300,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +155,5.3139,6.4230,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1225,0 +156,5.3488,6.3733,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6931,0 +157,5.1980,6.3918,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1239,0 +158,5.3215,6.4417,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2155,0 +159,5.2881,6.5130,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2458,0 +160,5.2405,6.5071,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7408,0 +161,4.9127,6.5281,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2658,0 +162,5.1643,6.4571,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2107,0 +163,4.9668,6.6433,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +164,4.8447,6.4324,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8647,0 +165,4.9365,6.4221,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2550,0 +166,4.8391,6.4963,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2461,0 +167,5.1941,6.4113,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2421,0 +168,4.8117,6.3921,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +169,4.9960,6.3433,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +170,4.9914,6.3942,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +171,5.2334,6.4601,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +172,5.2011,6.4859,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +173,5.2488,6.5161,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +174,5.2382,6.5016,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2833,0 +175,5.3047,6.4949,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2425,0 +176,5.1891,6.4164,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9394,0 +177,5.3190,6.4958,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3632,0 +178,5.0388,6.5003,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2916,0 +179,5.1373,6.4603,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +180,5.0404,5.6073,0.0493,0.0000,0,0,0.0000,0,0.0000,0,1,0,122025,0 +181,4.8495,6.4837,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,17516,0 +182,5.0200,7.4033,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,20923,0 +183,4.8805,9.3226,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,6642,0 +184,4.6407,7.3672,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14311,0 +185,4.6987,8.5112,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,7021,0 +186,4.6910,6.8588,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3945,0 +187,4.7255,7.6239,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2941,0 +188,4.7351,7.4109,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9496,0 +189,4.7239,6.9406,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1585,0 +190,4.7152,6.8713,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +191,5.2810,7.3805,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1890,0 +192,5.1421,7.2696,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,22686,0 +193,5.3349,7.2934,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2882,0 +194,5.2237,7.4225,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +195,5.3036,7.2782,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +196,5.1563,8.7681,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8460,0 +197,5.2125,7.9543,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +198,4.9644,9.2464,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1231,0 +199,5.0999,6.7289,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +200,5.0602,7.1725,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7666,0 +201,5.1821,6.4885,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,998,0 +202,5.0475,7.2138,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1328,0 +203,4.9400,7.3133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +204,5.0637,7.2488,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6769,0 +205,4.8237,7.7959,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +206,4.8275,6.7098,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +207,4.7879,7.3843,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +208,4.9432,7.3529,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8571,0 +209,4.8739,7.4898,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2875,0 +210,5.0131,7.4746,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +211,4.9304,8.7020,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +212,4.8347,7.0931,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8350,0 +213,4.6707,7.7822,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1921,0 +214,4.8425,6.6017,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1803,0 +215,5.3558,7.2529,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +216,5.2095,8.5710,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8411,0 +217,5.3347,8.5810,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +218,5.3510,8.0737,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1274,0 +219,5.3297,7.9798,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +220,4.8920,7.9959,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7281,0 +221,5.0609,8.7853,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +222,4.9095,7.3479,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2918,0 +223,4.8738,9.3399,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3033,0 +224,5.2297,9.2211,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8201,0 +225,5.3086,8.9350,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3534,0 +226,5.2692,8.7902,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3096,0 +227,5.0498,8.7130,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2905,0 +228,5.1005,8.6791,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9366,0 +229,5.2813,8.7280,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3171,0 +230,5.2048,8.8123,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3009,0 +231,5.1034,8.7637,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2972,0 +232,4.9537,8.8579,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8681,0 +233,5.3424,8.7479,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2331,0 +234,5.2175,8.7273,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +235,5.3528,9.3136,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2326,0 +236,5.2508,8.7302,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7631,0 +237,5.3024,8.6655,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2313,0 +238,5.4085,8.7500,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4181,0 +239,5.3657,8.8498,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3232,0 +240,5.3127,6.9887,0.0285,0.0000,0,0,0.0000,0,0.0000,0,1,0,96632,0 +241,5.3627,8.7825,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,19281,0 +242,5.2340,7.0352,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9757,0 +243,5.1365,7.6609,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8198,0 +244,5.0859,9.6098,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,11824,0 +245,5.1869,9.1686,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3210,0 +246,5.2409,8.8760,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2047,0 +247,5.3116,8.7006,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1181,0 +248,5.3216,8.7794,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +249,5.3239,8.7314,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +250,5.3493,9.2891,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +251,5.2859,8.7077,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +252,5.1936,8.7482,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6510,0 +253,5.3463,8.7454,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +254,5.3289,8.8707,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +255,5.2533,8.7425,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1025,0 +256,5.2138,8.7460,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,19836,0 +257,5.3533,8.8293,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +258,5.3015,8.6967,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +259,5.0509,8.8229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +260,4.9827,9.2620,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7367,0 +261,5.1851,8.7355,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +262,5.0224,8.6831,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +263,5.3383,8.7427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +264,5.2942,8.8023,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7497,0 +265,5.1710,8.8829,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +266,5.2905,9.5775,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1903,0 +267,4.9655,8.7106,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +268,4.9614,8.6996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6185,0 +269,5.3057,8.7716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,776,0 +270,5.2112,8.7381,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,970,0 +271,5.3115,8.6702,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +272,5.1202,7.5414,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7955,0 +273,5.2507,8.8318,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +274,5.1581,7.4616,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +275,5.3305,8.0950,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +276,5.3211,8.0181,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8295,0 +277,5.3732,8.1018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +278,5.3500,7.6389,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +279,5.2881,9.3001,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +280,5.3666,9.0853,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8130,0 +281,5.3450,9.0394,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +282,5.3770,8.7419,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +283,5.3797,8.9124,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +284,5.3378,8.7630,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +285,5.2675,8.7000,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +286,5.2149,8.8598,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1186,0 +287,5.3838,8.8917,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1152,0 +288,5.3883,8.8705,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6807,0 +289,5.3416,8.7813,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +290,5.3537,8.7264,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1187,0 +291,5.3118,8.6997,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1134,0 +292,5.3320,9.1998,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,8650,0 +293,5.3647,8.9096,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +294,5.4031,8.9247,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1265,0 +295,5.3506,8.8827,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2126,0 +296,5.5031,8.7634,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7754,0 +297,5.2750,8.8894,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1194,0 +298,5.3194,8.7184,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +299,5.3407,8.8493,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +300,5.3607,7.4816,0.0357,0.0000,0,0,0.0000,0,0.0000,0,1,0,115353,0 +301,5.5132,8.9232,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,14072,0 +302,5.2553,7.2349,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,20529,0 +303,5.3679,7.8528,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6194,0 +304,5.3213,9.4089,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,13690,0 +305,5.5105,9.0476,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5425,0 +306,5.3477,9.1130,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5060,0 +307,5.3871,8.8793,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3903,0 +308,5.2722,8.7128,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9886,0 +309,5.3623,8.7493,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +310,5.3414,8.7338,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +311,5.3852,8.8817,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1130,0 +312,5.3703,8.8604,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8270,0 +313,5.3569,8.7261,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +314,5.3455,8.7990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +315,5.2311,8.6595,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +316,5.3722,8.8296,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6534,0 +317,5.2825,9.2227,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +318,5.2382,8.6615,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +319,5.3457,8.6875,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1189,0 +320,5.2725,8.6750,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6957,0 +321,5.3147,8.6893,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +322,5.2172,8.7105,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +323,5.3851,8.8095,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,979,0 +324,5.3376,9.2783,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7622,0 +325,5.3507,8.8785,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1860,0 +326,5.3602,8.8000,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +327,5.5650,8.7693,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +328,5.3617,8.8737,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7483,0 +329,5.4464,8.9061,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +330,5.3900,8.7520,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +331,5.3736,8.8865,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +332,5.2369,7.2639,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6174,0 +333,5.2563,7.0630,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +334,5.2661,9.4861,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +335,5.3173,8.9721,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +336,5.3520,8.8506,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8064,0 +337,5.3175,9.2038,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2299,0 +338,5.2016,8.8200,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +339,5.3115,8.8371,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1622,0 +340,5.4641,8.9231,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8268,0 +341,5.3743,8.6838,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +342,5.3449,8.8832,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1560,0 +343,5.3615,8.7284,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2200,0 +344,5.3498,8.7372,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9532,0 +345,5.3332,8.6759,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1091,0 +346,5.3696,9.2138,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1463,0 +347,5.3756,8.7012,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +348,5.4297,8.9534,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7026,0 +349,5.2668,8.9144,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1682,0 +350,5.3180,8.7260,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3087,0 +351,5.3161,8.8712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2429,0 +352,5.6056,8.9028,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,23257,0 +353,5.6182,9.2758,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3346,0 +354,5.8017,9.3795,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2848,0 +355,5.6715,8.8812,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +356,5.5941,9.3246,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8754,0 +357,5.3340,8.8465,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2867,0 +358,5.5738,8.8886,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +359,5.4186,8.7879,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2951,0 +360,5.2907,7.0055,0.0244,0.0000,0,0,0.0000,0,0.0000,0,1,0,104405,0 +361,5.4227,8.8539,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,16483,0 +362,5.2188,7.7646,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12052,0 +363,5.5317,7.5075,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7574,0 +364,5.2713,7.6643,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11292,0 +365,5.5970,8.0719,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3420,0 +366,5.3500,8.1612,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4634,0 +367,5.7638,8.4685,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +368,5.6995,9.4521,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,8747,0 +369,5.5857,9.0060,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2084,0 +370,5.3279,8.7326,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +371,5.5744,8.7058,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +372,5.3664,8.7200,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8761,0 +373,5.3363,8.8560,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +374,5.3385,8.7331,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1398,0 +375,5.5866,9.2481,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +376,5.2983,8.6960,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8231,0 +377,5.3505,8.8063,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +378,5.3288,8.7614,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +379,5.6398,9.3806,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +380,5.3845,8.8631,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6537,0 +381,5.3561,8.9134,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +382,5.3401,8.8523,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1202,0 +383,5.3655,8.7807,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1078,0 +384,5.3673,9.3219,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6826,0 +385,5.3093,8.7913,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1291,0 +386,5.3725,8.8746,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +387,5.4828,8.7847,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +388,5.3484,8.8384,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7464,0 +389,5.3948,8.7531,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1889,0 +390,5.3573,8.9521,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,778,0 +391,5.3892,8.7880,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +392,5.2420,7.2245,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7599,0 +393,5.5095,7.1127,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +394,5.2565,11.2173,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +395,5.3531,9.0045,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +396,5.3877,9.2770,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6795,0 +397,5.3342,9.0129,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +398,5.3542,8.8289,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +399,5.5754,8.8615,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +400,5.2387,9.0262,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,8168,0 +401,5.1678,7.5878,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1731,0 +402,5.0748,8.0311,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +403,5.2025,7.6990,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2103,0 +404,5.1272,7.8511,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8268,0 +405,5.2179,7.6210,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1046,0 +406,5.1673,7.6210,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +407,5.3132,7.7518,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2049,0 +408,5.0143,7.4017,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8169,0 +409,5.2152,7.6115,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +410,5.0066,6.9806,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,860,0 +411,5.1960,7.7344,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +412,5.1177,7.1662,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7665,0 +413,5.0089,7.3975,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +414,5.1276,7.2131,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2242,0 +415,4.9908,7.4068,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2311,0 +416,5.3178,7.3200,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7657,0 +417,5.2058,7.8839,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2990,0 +418,5.2534,8.9489,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +419,5.1783,6.6861,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2588,0 +420,5.0989,7.5529,0.0348,0.0000,0,0,0.0000,0,0.0000,0,1,0,103412,0 +421,5.2170,6.9687,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,12411,0 +422,5.1830,6.9656,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15187,0 +423,5.2631,6.9360,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,10840,0 +424,5.2752,7.1221,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,15854,0 +425,5.3356,6.9484,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4876,0 +426,5.0297,7.4480,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3945,0 +427,5.1513,7.1402,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3983,0 +428,4.7341,7.3083,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9952,0 +429,5.1167,7.1333,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3852,0 +430,5.0411,7.4305,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4666,0 +431,4.9046,7.8599,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1202,0 +432,5.0093,8.7923,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,8594,0 +433,4.8918,7.7754,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3455,0 +434,5.0771,8.2815,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +435,4.9271,6.8158,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +436,5.3442,7.3097,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8587,0 +437,4.9110,7.2440,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +438,5.1697,6.9037,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +439,5.0829,7.3107,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +440,4.9411,7.4680,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8393,0 +441,5.1485,7.4417,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +442,4.9280,7.2283,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1212,0 +443,5.2925,7.3382,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1234,0 +444,5.1951,7.8407,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7178,0 +445,5.2166,8.4021,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1518,0 +446,5.2008,7.5126,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2286,0 +447,5.3404,7.4902,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2003,0 +448,5.0158,7.7702,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,22850,0 +449,4.9268,7.5418,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3327,0 +450,5.0452,7.0711,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +451,4.9624,7.3919,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1872,0 +452,5.1902,8.6796,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8713,0 +453,4.9185,7.3153,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2067,0 +454,5.1241,7.4322,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2233,0 +455,5.1855,7.4992,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2393,0 +456,5.2577,9.3499,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,8052,0 +457,5.2955,9.1560,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1952,0 +458,5.1276,9.0385,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +459,5.4308,9.0447,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +460,4.7892,8.9028,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7023,0 +461,4.7358,7.6236,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +462,5.1975,7.4398,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2852,0 +463,4.9469,7.8688,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2459,0 +464,5.2784,7.8328,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9362,0 +465,5.2592,9.2312,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3880,0 +466,5.0987,8.9113,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2676,0 +467,5.2388,8.6788,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2682,0 +468,5.3684,8.7455,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9020,0 +469,5.2923,8.7235,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2889,0 +470,5.3456,9.2822,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2885,0 +471,5.4078,9.3669,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3085,0 +472,5.3955,8.8430,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9435,0 +473,5.4517,8.8201,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2841,0 +474,5.3367,9.2572,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2114,0 +475,5.3864,8.8460,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2358,0 +476,5.5741,8.7055,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7935,0 +477,5.3840,8.7548,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +478,5.4106,8.8941,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4290,0 +479,5.4229,8.7055,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4065,0 +480,5.3454,7.0214,0.0193,0.0000,0,0,0.0000,0,0.0000,0,1,0,104824,0 +481,5.4492,8.7289,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,16496,0 +482,5.2545,7.2397,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,11562,0 +483,5.3370,7.7375,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7547,0 +484,5.3336,9.6962,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,10623,0 +485,5.2438,9.0190,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2485,0 +486,5.2387,9.0729,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2239,0 +487,5.2493,9.2570,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +488,5.4379,8.9803,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8296,0 +489,5.3146,8.8543,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +490,5.3825,8.6988,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1251,0 +491,5.4069,8.7294,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1314,0 +492,5.4265,8.7275,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6541,0 +493,5.3482,8.8374,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1255,0 +494,5.3992,8.7552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2278,0 +495,5.4038,8.7477,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,939,0 +496,5.2615,8.8574,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8264,0 +497,5.3923,9.2442,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +498,5.3310,8.6846,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,978,0 +499,5.4607,8.8990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +500,5.4281,8.8473,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8377,0 +501,5.4975,9.2958,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +502,5.4761,8.8881,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +503,5.4988,8.8175,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +504,5.4310,8.7450,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8202,0 +505,5.3211,8.8350,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +506,5.4416,8.9194,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +507,5.4835,8.9354,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +508,5.5087,8.7875,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6556,0 +509,5.4527,8.8341,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,927,0 +510,5.3644,8.9467,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1197,0 +511,5.4238,9.3902,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1110,0 +512,5.1796,7.7989,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,20107,0 +513,5.0882,7.6883,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +514,5.2130,9.4577,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1022,0 +515,5.4073,9.1315,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +516,5.3250,9.1180,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7457,0 +517,5.3420,8.8847,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +518,5.2375,8.7220,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +519,5.4036,9.5706,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +520,5.3822,8.7858,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7639,0 +521,5.3748,8.7786,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,968,0 +522,5.4116,8.9078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2024,0 +523,5.3583,8.7411,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +524,5.3907,8.7269,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6578,0 +525,5.2686,8.7108,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +526,5.3823,8.7777,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1118,0 +527,5.3476,8.7242,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1890,0 +528,5.4276,8.7293,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8942,0 +529,5.3729,8.8850,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1875,0 +530,5.3935,8.7200,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1187,0 +531,5.4198,8.7745,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1159,0 +532,5.4057,8.7310,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8405,0 +533,5.4239,8.6677,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1194,0 +534,5.4082,8.7558,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1213,0 +535,5.3821,8.8860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2023,0 +536,5.3862,8.7829,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8235,0 +537,5.4173,8.7194,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +538,5.4063,9.3181,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +539,5.3797,8.7065,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,975,0 +540,5.3351,7.5655,0.0372,0.0000,0,0,0.0000,0,0.0000,0,1,0,119464,0 +541,5.3728,8.4827,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17139,0 +542,5.2763,7.2272,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,18231,0 +543,5.3055,7.1728,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,10869,0 +544,5.2693,9.4963,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,12398,0 +545,5.4323,9.2705,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5236,0 +546,4.8557,9.0586,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3980,0 +547,4.7337,9.2384,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2915,0 +548,5.1143,8.6835,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8537,0 +549,5.0409,8.6741,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +550,5.1588,8.7707,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +551,5.3139,9.2339,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +552,5.1869,8.7184,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7729,0 +553,5.1325,9.2332,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +554,5.1750,8.7116,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,852,0 +555,5.3493,8.7323,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +556,5.2704,8.7048,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6094,0 +557,5.3412,8.7052,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +558,5.3545,8.6935,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +559,5.3871,8.8727,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +560,5.4023,8.8500,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8293,0 +561,5.4060,8.7438,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1682,0 +562,5.4015,8.8412,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +563,5.3730,8.7255,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +564,5.3598,8.6516,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8298,0 +565,5.3399,8.6846,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1063,0 +566,5.3469,8.7413,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,915,0 +567,5.4783,8.7598,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,968,0 +568,5.3265,8.9038,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8175,0 +569,5.3260,9.2205,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +570,5.3257,8.7791,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +571,5.4262,8.8350,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +572,5.2778,7.8970,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6531,0 +573,5.2979,7.6896,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,948,0 +574,5.3193,7.6988,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1303,0 +575,5.3630,8.0749,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1269,0 +576,5.2962,8.0614,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6978,0 +577,5.2446,8.0304,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +578,5.2835,7.9992,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +579,5.3780,9.4318,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,942,0 +580,5.4611,9.1087,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7513,0 +581,5.2480,9.2657,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +582,5.2743,8.8726,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,876,0 +583,5.2848,8.8707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +584,5.3245,8.8781,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7609,0 +585,5.2683,8.7142,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +586,5.4777,8.7222,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +587,5.4228,9.2649,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +588,5.4727,8.7915,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6803,0 +589,5.6178,8.7104,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,882,0 +590,5.7255,8.7639,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1079,0 +591,5.7890,8.8138,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2202,0 +592,5.6464,8.7131,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8293,0 +593,5.4612,8.7550,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2509,0 +594,5.6445,8.7568,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1109,0 +595,5.4104,8.7091,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1105,0 +596,5.3405,8.7227,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8289,0 +597,5.4144,8.6655,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +598,5.6436,8.8299,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +599,5.8384,8.7435,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +600,5.7114,7.1980,0.0304,0.0000,0,0,0.0000,0,0.0000,0,1,0,105817,0 +601,5.6783,8.8188,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,16662,0 +602,5.3195,7.0035,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7721,0 +603,5.3042,8.0255,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6576,0 +604,5.3246,9.5516,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,11439,0 +605,5.4174,9.0418,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3329,0 +606,5.2742,9.0648,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3895,0 +607,5.0745,9.2483,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3013,0 +608,5.4040,8.8746,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,23247,0 +609,5.3939,8.7449,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3315,0 +610,5.2397,8.7092,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +611,5.2816,8.7280,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1384,0 +612,5.2553,8.7061,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8054,0 +613,5.1526,8.7300,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +614,5.2394,8.7329,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +615,5.4167,8.7158,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,919,0 +616,5.3162,8.7130,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7681,0 +617,5.4084,8.7088,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +618,5.4110,8.7279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +619,5.4085,8.8762,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 +620,5.3053,8.8901,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6585,0 +621,5.4153,9.3380,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +622,5.4429,9.3198,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2027,0 +623,5.2772,8.7842,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1254,0 +624,5.4119,8.7085,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8855,0 +625,5.3907,8.7645,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2656,0 +626,5.3891,8.9042,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1427,0 +627,5.4175,8.7378,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +628,5.4905,8.8567,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +629,5.4913,8.8979,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +630,5.4327,8.8086,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +631,5.4429,8.7789,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +632,5.2804,7.5466,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8421,0 +633,5.2677,7.6728,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +634,5.1765,8.0756,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +635,5.4234,8.0972,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +636,5.4036,8.0197,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7043,0 +637,5.3434,8.1382,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1274,0 +638,5.3150,8.3816,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +639,5.3846,9.3634,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +640,5.2837,7.7598,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7625,0 +641,5.2325,7.9168,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2450,0 +642,5.2045,6.9270,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2200,0 +643,5.1591,7.7608,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1912,0 +644,5.0113,7.5532,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +645,4.9065,7.6862,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2617,0 +646,5.0556,6.8480,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2011,0 +647,5.0105,7.2421,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +648,5.1618,6.9933,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,8010,0 +649,5.0301,7.6134,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1755,0 +650,4.9454,8.3972,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +651,5.2113,7.1208,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +652,4.9988,7.8567,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7327,0 +653,5.2155,7.4309,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +654,5.1522,7.8458,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3392,0 +655,4.9817,8.8948,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2720,0 +656,4.8168,7.9193,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9649,0 +657,5.0545,9.1429,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4125,0 +658,4.9427,6.9479,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3428,0 +659,5.1234,7.4850,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3166,0 +660,5.0346,6.1280,0.0341,0.0000,0,0,0.0000,0,0.0000,0,1,0,121713,0 +661,5.3536,7.0450,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,17220,0 +662,5.1983,7.5051,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21760,0 +663,4.9916,7.2682,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5989,0 +664,4.8235,7.3333,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14699,0 +665,4.7351,7.4711,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,6930,0 +666,4.7623,7.7338,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4114,0 +667,4.6980,8.9385,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3068,0 +668,4.6476,7.6848,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9414,0 +669,4.7285,9.1194,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +670,4.6925,7.1718,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2025,0 +671,4.9856,6.9402,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1606,0 +672,5.0042,7.5302,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7258,0 +673,5.1400,7.4198,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2268,0 +674,5.0778,7.5431,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +675,5.1720,7.3136,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +676,5.0626,7.4774,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8463,0 +677,5.1700,7.4891,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +678,5.0731,7.7455,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +679,4.9833,8.7951,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1485,0 +680,5.1975,6.7656,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7646,0 +681,5.1707,8.8990,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1194,0 +682,5.3066,6.7809,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +683,5.3033,6.9976,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +684,5.3600,7.4712,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6776,0 +685,5.2072,6.7138,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1255,0 +686,5.3298,7.2185,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +687,5.2065,7.9466,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +688,5.3937,7.4429,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8643,0 +689,4.9914,7.5122,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3294,0 +690,4.9621,7.5774,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2158,0 +691,5.0679,7.6242,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2092,0 +692,4.9322,8.9462,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8440,0 +693,5.0338,6.8400,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2177,0 +694,4.9924,7.9402,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2145,0 +695,5.0904,6.8729,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2301,0 +696,5.2876,7.8329,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8500,0 +697,4.8442,8.1285,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1986,0 +698,5.0273,7.8197,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +699,4.9911,9.4029,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1724,0 +700,4.9299,8.3707,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7528,0 +701,4.6404,7.8952,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +702,4.6260,8.3285,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3080,0 +703,4.6310,7.4826,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2969,0 +704,5.2076,9.2950,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,24327,0 +705,5.1888,9.1161,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3745,0 +706,5.2771,8.8420,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2768,0 +707,5.1653,9.0330,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2737,0 +708,5.4324,8.7199,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9278,0 +709,5.3939,8.7404,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2914,0 +710,5.2662,8.6645,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3048,0 +711,5.3567,8.6611,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3048,0 +712,5.4850,8.7357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8588,0 +713,5.4449,8.7747,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2283,0 +714,5.4690,8.7459,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2203,0 +715,5.4779,8.7827,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2355,0 +716,5.4403,8.7128,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7679,0 +717,5.4406,8.7354,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2298,0 +718,5.4597,8.6973,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4167,0 +719,5.3990,8.7590,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3243,0 +720,5.4234,7.0597,0.0195,0.0000,0,0,0.0000,0,0.0000,0,1,0,96478,0 +721,5.5115,8.9225,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,19297,0 +722,5.2474,7.8252,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9913,0 +723,5.3410,7.7718,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8114,0 +724,5.2048,9.4590,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,12132,0 +725,5.1821,9.2519,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3297,0 +726,5.0912,9.0649,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2077,0 +727,5.1928,8.8305,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +728,5.1259,8.7248,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8376,0 +729,5.3403,8.7073,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +730,5.2589,8.6648,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +731,5.4358,8.7196,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1018,0 +732,5.3739,8.7005,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6385,0 +733,5.4067,8.8362,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +734,5.3759,8.8575,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1342,0 +735,5.2836,8.6771,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,974,0 +736,5.4246,8.7399,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6866,0 +737,5.5045,9.2361,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +738,5.4085,8.8318,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +739,5.3533,8.7168,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +740,5.4445,8.7369,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7409,0 +741,5.4250,8.6905,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1966,0 +742,5.4719,9.2661,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +743,5.2555,9.1877,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +744,5.3208,8.7159,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7506,0 +745,5.3704,8.8247,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +746,5.3614,8.7392,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +747,5.2967,8.7735,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +748,5.3458,8.7013,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6070,0 +749,5.2682,8.7444,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +750,5.3250,8.7331,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +751,5.3266,8.6971,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +752,5.1428,7.0462,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,8165,0 +753,5.1974,7.9062,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +754,5.1885,9.1608,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1871,0 +755,5.3451,9.2398,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +756,5.2043,8.8183,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8276,0 +757,5.3005,8.8909,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1956,0 +758,5.3075,8.7703,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1485,0 +759,5.3442,8.8200,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2224,0 +760,5.3631,8.9125,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9566,0 +761,5.3663,8.8188,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +762,5.2889,8.7345,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +763,5.1760,8.6898,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,991,0 +764,5.3622,8.7104,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6483,0 +765,5.3418,8.7147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +766,5.3126,8.7310,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1682,0 +767,5.2930,8.6724,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +768,5.3172,8.7167,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,20909,0 +769,5.2473,8.7430,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1606,0 +770,5.1456,8.7663,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1352,0 +771,5.2232,8.8701,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1277,0 +772,5.2240,8.7313,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8679,0 +773,5.2793,8.6841,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2815,0 +774,5.4428,8.8437,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +775,5.6592,8.8124,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +776,5.2592,8.7531,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7963,0 +777,5.2110,8.7545,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1408,0 +778,5.3811,8.8833,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +779,5.6729,8.7545,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +780,5.7788,7.0717,0.0306,0.0000,0,0,0.0000,0,0.0000,0,1,0,108426,0 +781,5.8053,8.8330,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,12207,0 +782,5.4655,7.8280,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,18858,0 +783,5.2832,7.9670,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +784,5.2957,7.5770,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15343,0 +785,5.5897,7.6352,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5903,0 +786,5.4655,8.2372,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5807,0 +787,5.4460,8.0843,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4672,0 +788,5.4297,9.3311,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,10466,0 +789,5.4861,9.0154,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2743,0 +790,5.4367,9.0227,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +791,5.4634,8.7335,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,976,0 +792,5.4620,8.8956,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8231,0 +793,5.5006,8.9243,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +794,5.3985,8.7992,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +795,5.4368,8.8102,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +796,5.3732,8.8457,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6610,0 +797,5.3177,8.9694,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +798,5.3209,8.8806,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1505,0 +799,5.3852,8.6914,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1314,0 +800,5.4731,8.7015,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +801,5.5445,8.7654,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +802,5.2360,8.6945,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1229,0 +803,5.4639,8.8971,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1179,0 +804,5.5894,9.3487,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7637,0 +805,5.4510,8.7657,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +806,5.4519,8.8461,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +807,5.4506,8.9470,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +808,5.4155,8.7139,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7622,0 +809,5.4643,8.7411,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +810,5.3507,8.7643,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,970,0 +811,5.4726,8.7608,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1898,0 +812,5.1849,6.8583,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6532,0 +813,5.2728,7.6900,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +814,5.2843,9.3785,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +815,5.4528,9.0011,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +816,5.4771,9.2433,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8930,0 +817,5.3816,8.7781,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +818,5.4222,8.7153,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1190,0 +819,5.3273,8.9016,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +820,5.5130,8.7913,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8256,0 +821,5.4972,8.7379,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1203,0 +822,5.5020,8.7472,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1140,0 +823,5.4842,8.7334,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +824,5.4700,8.6975,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8281,0 +825,5.4875,8.8364,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +826,5.5596,8.8583,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +827,5.4257,8.7000,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,971,0 +828,5.4260,8.7285,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +829,5.4455,8.7844,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1030,0 +830,5.4206,8.7231,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1656,0 +831,5.4825,8.8450,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +832,5.4641,8.8839,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7356,0 +833,5.4190,8.7378,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2528,0 +834,5.4867,8.8210,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1845,0 +835,5.3740,8.6775,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1819,0 +836,5.5338,8.7142,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +837,5.5644,8.8406,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +838,5.4286,8.8395,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1875,0 +839,5.4863,8.7224,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2027,0 +840,5.5040,7.0607,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,104421,0 +841,5.5125,8.8924,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,16516,0 +842,5.2145,8.0665,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11307,0 +843,5.2959,7.8318,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7824,0 +844,5.3640,7.0303,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11249,0 +845,5.4971,8.0461,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3397,0 +846,5.5498,8.1310,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4705,0 +847,5.4680,8.3562,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +848,5.4835,7.8486,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8546,0 +849,5.8522,9.3151,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +850,5.3577,9.1728,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +851,5.5207,8.9715,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1566,0 +852,5.3662,8.9236,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8754,0 +853,5.4624,8.9181,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +854,5.4169,8.8155,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1244,0 +855,5.3417,8.7055,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1166,0 +856,5.5012,8.8092,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8228,0 +857,5.4236,8.6590,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +858,5.4307,8.6894,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +859,5.4822,8.7468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +860,5.5007,9.2597,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6480,0 +861,5.5013,8.9010,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +862,5.4918,8.7825,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1251,0 +863,5.4185,8.8289,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1148,0 +864,5.3116,9.2643,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,22145,0 +865,5.4312,8.7803,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +866,5.4127,8.8775,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1022,0 +867,5.0983,8.7268,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +868,5.2225,8.7051,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7840,0 +869,5.2483,8.7453,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1895,0 +870,5.0099,8.7521,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +871,5.4037,8.9087,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +872,4.9085,8.0247,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7617,0 +873,5.3033,7.0774,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,940,0 +874,5.2320,7.8870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +875,5.2713,9.3325,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1424,0 +876,5.4005,8.9402,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6863,0 +877,5.2933,8.7800,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,976,0 +878,5.2960,8.8015,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1584,0 +879,5.1652,8.8373,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1167,0 +880,4.7711,8.9580,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8449,0 +881,4.6075,7.8303,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +882,4.6876,7.9445,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1238,0 +883,4.6599,7.4464,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1239,0 +884,4.4923,7.0901,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8277,0 +885,4.6220,6.9429,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1378,0 +886,4.6333,7.8335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +887,4.6203,7.8282,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +888,4.6808,8.2984,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8670,0 +889,4.6443,7.7177,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1186,0 +890,4.5927,7.0074,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1200,0 +891,4.6322,8.1814,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1185,0 +892,5.0508,6.9452,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7217,0 +893,4.9996,7.7563,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +894,4.8873,7.1584,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2481,0 +895,5.0103,7.6502,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2616,0 +896,4.9836,7.3718,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7562,0 +897,5.1529,7.6270,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2704,0 +898,5.0252,7.7880,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2022,0 +899,18.3641,6.6224,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +900,7.4502,5.3513,0.0118,0.0000,0,0,0.0000,0,0.0000,0,1,0,102632,0 +901,3.2779,7.7834,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12444,0 +902,3.4733,6.8906,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,15615,0 +903,3.8155,6.4149,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10643,0 +904,3.8081,6.5976,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,15271,0 +905,3.9381,6.3830,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5038,0 +906,3.8272,6.3877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4390,0 +907,4.1342,6.5131,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3705,0 +908,4.1353,6.4650,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,10034,0 +909,4.1308,6.5061,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3572,0 +910,4.1534,6.6801,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,5112,0 +911,4.6004,7.1145,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +912,4.6413,7.2337,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8816,0 +913,4.6345,7.4008,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3344,0 +914,4.6333,7.6740,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2048,0 +915,4.6256,9.0632,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +916,4.6299,7.9510,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8678,0 +917,4.7064,8.4015,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1696,0 +918,4.6903,7.2980,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1445,0 +919,4.7302,7.5976,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +920,4.7430,7.2197,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8305,0 +921,4.7839,7.2664,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +922,4.7779,7.4610,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1231,0 +923,4.7790,7.4130,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +924,4.7168,7.5874,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7225,0 +925,4.7420,7.9089,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +926,4.9984,7.8560,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +927,4.9570,8.2253,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2174,0 +928,5.0675,8.8805,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7419,0 +929,4.9178,7.7656,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2597,0 +930,5.0726,8.1010,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2227,0 +931,4.9716,6.9182,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1906,0 +932,5.3372,7.3805,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8698,0 +933,5.3000,7.3386,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2231,0 +934,5.2306,7.6256,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2320,0 +935,5.0905,7.6567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2298,0 +936,4.9596,8.0128,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7935,0 +937,5.1032,8.0640,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +938,5.1063,11.1125,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1566,0 +939,5.3552,9.0428,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1380,0 +940,5.2631,9.0184,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6832,0 +941,5.0765,7.5728,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +942,5.0628,9.0532,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2517,0 +943,4.8965,7.3110,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2130,0 +944,5.4161,8.0942,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9005,0 +945,5.3758,8.0576,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3551,0 +946,5.4314,8.1397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2669,0 +947,5.4760,8.3113,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +948,5.4603,8.0540,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9022,0 +949,5.3704,9.0374,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2752,0 +950,5.4925,9.3010,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2696,0 +951,5.4953,9.2390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2864,0 +952,5.3145,8.7739,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9168,0 +953,5.3395,8.8715,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2708,0 +954,5.3566,8.8898,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2067,0 +955,5.4494,8.9463,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +956,5.5658,8.7687,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7695,0 +957,5.4164,8.7922,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2103,0 +958,5.5040,8.7853,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3350,0 +959,5.4659,8.8697,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3114,0 +960,5.4922,7.1130,0.0189,0.0000,0,0,0.0000,0,0.0000,0,1,0,104169,0 +961,5.5200,8.8310,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,16591,0 +962,5.2475,7.0307,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11511,0 +963,5.1877,8.1510,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7355,0 +964,5.1507,9.3245,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,10689,0 +965,5.1317,9.2691,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2618,0 +966,5.0907,9.2066,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1764,0 +967,5.1341,8.8763,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1246,0 +968,5.4992,8.7118,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8249,0 +969,5.4512,8.6948,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +970,5.4478,8.7858,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +971,5.2825,8.7333,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1142,0 +972,5.2847,8.8523,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6252,0 +973,5.4528,11.1502,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1352,0 +974,5.2102,8.7446,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2288,0 +975,5.4714,8.8557,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1135,0 +976,5.4898,8.7980,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8306,0 +977,5.4607,8.7619,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +978,5.5326,8.9512,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +979,5.5476,8.8791,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +980,5.4553,8.7741,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8288,0 +981,5.6268,8.7717,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1015,0 +982,5.3958,8.8303,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +983,5.2347,8.7277,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +984,5.5969,8.7496,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8176,0 +985,5.4088,8.7921,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +986,5.5273,8.7241,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +987,5.4208,8.8922,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +988,5.5306,8.7426,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6353,0 +989,5.4470,9.3145,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +990,5.4681,8.8174,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1095,0 +991,5.4672,8.8013,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1065,0 +992,5.0962,7.5806,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6921,0 +993,5.2464,7.8253,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +994,5.1662,8.5234,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,985,0 +995,5.4267,8.0094,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +996,5.3734,8.1265,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +997,5.3965,8.0476,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2002,0 +998,5.5120,8.1628,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +999,5.2880,9.3752,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1000,5.3530,9.1619,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7571,0 +1001,5.5358,8.8023,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +1002,5.3194,8.8326,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1003,5.5317,8.8255,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +1004,5.5176,8.8716,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6758,0 +1005,5.5146,8.7943,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1006,5.4925,8.6985,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +1007,5.5118,8.9319,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1148,0 +1008,5.4615,8.7758,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8125,0 +1009,5.4653,8.9510,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +1010,5.3315,8.7497,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1042,0 +1011,5.3226,8.7542,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1192,0 +1012,5.3985,8.7814,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8427,0 +1013,5.4486,9.2837,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +1014,5.4380,8.7553,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +1015,5.4140,8.7097,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1266,0 +1016,5.4987,8.9132,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8190,0 +1017,5.5291,8.9410,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1089,0 +1018,5.4809,8.7195,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +1019,5.5199,8.7790,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +1020,5.4808,7.2296,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,119673,0 +1021,5.4321,8.9248,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,17565,0 +1022,5.2116,6.8635,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,18354,0 +1023,5.3029,7.7989,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,10785,0 +1024,4.7444,9.4333,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,24570,0 +1025,5.0771,9.0040,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5168,0 +1026,4.8832,8.9665,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4166,0 +1027,4.7942,8.7484,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3077,0 +1028,4.7665,9.2233,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8525,0 +1029,5.0108,8.9365,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1030,5.2743,8.8377,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1031,5.2045,8.7215,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1032,5.2924,9.2905,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7776,0 +1033,5.1854,8.7322,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1034,5.2710,8.7377,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1035,5.3039,8.7539,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1036,5.3854,8.7223,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6099,0 +1037,5.3102,8.8100,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +1038,5.1781,8.7761,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1812,0 +1039,5.4931,8.7212,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +1040,5.3446,8.7771,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1041,5.5242,8.7422,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1532,0 +1042,5.4665,8.7515,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +1043,5.5159,8.8561,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,941,0 +1044,5.5195,8.7398,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8261,0 +1045,5.5069,11.1896,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +1046,5.3055,8.9431,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,901,0 +1047,5.4710,9.3185,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +1048,5.4640,8.8137,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8196,0 +1049,5.3998,8.7750,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,852,0 +1050,5.5473,8.8640,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +1051,5.6285,8.8220,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +1052,5.2443,8.0645,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6435,0 +1053,5.3119,7.7972,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +1054,5.2620,10.0397,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1259,0 +1055,5.4867,7.7918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1056,5.5113,9.2995,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7013,0 +1057,5.2490,9.3131,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +1058,5.4331,9.0245,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1110,0 +1059,5.3299,9.3381,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,963,0 +1060,5.4537,8.7683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7553,0 +1061,5.5357,8.9333,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +1062,5.4544,8.7997,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1063,5.5347,8.7795,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1064,5.4667,9.2883,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7560,0 +1065,5.4230,8.7242,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +1066,5.4994,8.8319,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +1067,5.3195,8.8204,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +1068,5.4720,8.8279,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6477,0 +1069,5.4761,8.7869,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1070,5.3645,8.7938,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1058,0 +1071,5.3845,8.7645,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +1072,5.4953,9.2758,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8023,0 +1073,5.3886,8.8935,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1074,5.4785,8.9091,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1123,0 +1075,5.4249,9.2896,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1029,0 +1076,5.5388,9.3081,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8322,0 +1077,5.4021,8.9548,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1038,0 +1078,5.5813,8.7608,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1079,5.5412,8.9350,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1238,0 +1080,5.4591,7.1706,0.0224,0.0000,0,0,0.0000,0,0.0000,0,1,0,104886,0 +1081,5.5610,8.8480,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,16477,0 +1082,5.1761,8.0249,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6501,0 +1083,5.2940,8.9667,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,7454,0 +1084,5.1873,9.1590,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,11545,0 +1085,5.3741,9.3657,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3354,0 +1086,5.5073,8.8919,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4108,0 +1087,5.4930,8.7698,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2978,0 +1088,5.3161,8.7172,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7962,0 +1089,5.5286,8.7882,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +1090,5.5105,8.8794,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +1091,5.3550,8.9288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +1092,5.4163,8.7804,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7533,0 +1093,5.5110,8.9466,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,979,0 +1094,5.4549,8.7041,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1862,0 +1095,5.3538,8.7514,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,776,0 +1096,5.4873,8.8655,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7598,0 +1097,5.4835,8.7683,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,996,0 +1098,5.4834,8.7780,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +1099,5.4705,8.7352,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1100,5.5006,8.7761,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6953,0 +1101,5.5375,8.8785,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1102,5.5027,8.7191,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +1103,5.4787,8.8012,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +1104,5.3959,8.8633,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8617,0 +1105,5.5214,8.9116,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3606,0 +1106,5.4990,8.7645,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +1107,5.4128,8.8549,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +1108,5.4160,8.7417,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8431,0 +1109,5.5360,8.9078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +1110,5.4240,8.8232,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +1111,5.4255,8.7413,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2204,0 +1112,5.0670,7.4462,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,8429,0 +1113,5.2427,7.8318,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +1114,5.2715,9.0963,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +1115,5.5364,12.0597,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +1116,5.5186,8.9210,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7485,0 +1117,5.2992,9.3785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1976,0 +1118,5.2780,8.8085,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3301,0 +1119,5.3341,11.0661,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +1120,5.2978,8.2484,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,24932,0 +1121,5.0695,7.2544,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4047,0 +1122,5.2756,7.6426,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3330,0 +1123,5.1931,7.6590,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2939,0 +1124,5.2803,7.7735,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9285,0 +1125,5.1290,7.5316,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2954,0 +1126,5.2798,8.0298,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2975,0 +1127,5.2408,7.8801,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3132,0 +1128,5.3507,7.7366,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8612,0 +1129,5.2526,7.0918,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2384,0 +1130,5.2090,7.7210,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +1131,5.3009,7.4490,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2372,0 +1132,5.2591,7.6818,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7613,0 +1133,5.3469,7.5512,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2468,0 +1134,5.2274,7.5781,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4408,0 +1135,5.3283,7.4504,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3462,0 +1136,5.2251,7.9888,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,10691,0 +1137,5.3070,7.8040,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5292,0 +1138,5.2084,8.2617,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3874,0 +1139,5.2484,7.7145,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3952,0 +1140,5.2637,7.2841,0.0194,0.0000,0,0,0.0000,0,0.0000,0,1,0,122798,0 +1141,5.1509,7.4931,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,18408,0 +1142,5.1294,7.4167,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,21275,0 +1143,4.9923,7.2326,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7234,0 +1144,4.7923,7.1091,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,14243,0 +1145,4.7238,7.4291,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6686,0 +1146,4.8429,7.7225,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4064,0 +1147,4.7842,7.6775,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2816,0 +1148,4.7550,7.6384,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9260,0 +1149,4.7510,8.1028,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +1150,4.7475,7.8772,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1151,4.7246,8.9535,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +1152,4.6862,7.9952,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7347,0 +1153,4.7352,8.1085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2354,0 +1154,4.7207,7.3730,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +1155,5.2141,7.4757,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1426,0 +1156,4.9983,7.1523,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8412,0 +1157,5.0418,7.4634,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +1158,4.8176,7.7824,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +1159,4.7920,7.9832,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +1160,4.7835,7.5994,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7693,0 +1161,4.6903,7.6705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1071,0 +1162,5.0041,7.6771,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1016,0 +1163,4.9537,8.7701,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +1164,5.0315,7.8875,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6743,0 +1165,5.0124,7.9266,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1174,0 +1166,5.1033,7.0515,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +1167,5.0397,7.4767,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +1168,5.2037,7.0923,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8460,0 +1169,5.1255,7.3889,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3245,0 +1170,4.9740,7.5390,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2035,0 +1171,5.0762,7.6943,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2084,0 +1172,4.9748,7.4923,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8502,0 +1173,5.0857,7.6722,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2126,0 +1174,4.9798,7.6773,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2119,0 +1175,5.0621,7.9744,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2321,0 +1176,4.9330,8.7042,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8486,0 +1177,5.0643,8.7141,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +1178,5.1065,8.7838,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +1179,4.9830,8.9173,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1727,0 +1180,5.1196,8.9056,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1181,4.8660,8.2714,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1816,0 +1182,5.2997,7.7065,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2976,0 +1183,5.2359,8.0397,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2695,0 +1184,5.5388,7.9985,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8274,0 +1185,5.4695,9.1865,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3350,0 +1186,5.6516,9.0380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2897,0 +1187,5.5745,8.8249,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2775,0 +1188,5.5854,8.8044,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9296,0 +1189,5.3911,8.7448,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2926,0 +1190,5.4302,8.7683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3109,0 +1191,5.5515,9.3268,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3159,0 +1192,5.4028,8.7411,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8603,0 +1193,5.5542,8.7453,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2449,0 +1194,5.5042,11.1434,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1991,0 +1195,5.3212,8.7156,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2139,0 +1196,5.4192,8.7621,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7552,0 +1197,5.3989,8.8508,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +1198,5.3112,8.6815,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3993,0 +1199,5.5973,8.7401,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3005,0 +1200,5.4251,7.5030,0.0199,0.0000,0,0,0.0000,0,0.0000,0,1,0,97110,0 +1201,5.3655,8.8032,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,20562,0 +1202,5.2460,8.0422,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,11627,0 +1203,4.9268,7.2175,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,8574,0 +1204,4.1000,6.3900,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,12208,0 +1205,3.2917,6.3357,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3485,0 +1206,3.1272,6.1603,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2500,0 +1207,3.0773,6.1200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +1208,3.0609,6.1215,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8344,0 +1209,3.0445,6.1002,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1051,0 +1210,2.9923,7.2422,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +1211,3.5195,6.9864,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1048,0 +1212,3.7968,6.8657,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6413,0 +1213,3.8297,6.7951,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +1214,3.7242,7.0229,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +1215,4.1353,8.0100,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,982,0 +1216,4.1086,7.7285,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22024,0 +1217,4.5650,7.8450,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2255,0 +1218,4.6355,8.1209,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1219,4.6214,7.7854,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,852,0 +1220,4.6451,7.8468,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7588,0 +1221,4.8196,9.1377,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1951,0 +1222,4.9832,8.1143,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1223,4.7020,7.8388,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +1224,4.6484,7.6738,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7702,0 +1225,4.6472,10.0146,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1226,4.8220,7.9843,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +1227,4.9710,8.6988,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +1228,5.0893,9.1668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6802,0 +1229,5.2558,8.7966,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +1230,5.1204,9.1898,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1040,0 +1231,5.2467,8.7183,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,954,0 +1232,5.2202,7.6750,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8381,0 +1233,5.2092,8.4488,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3926,0 +1234,5.1830,9.1430,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1045,0 +1235,5.5172,9.0158,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1723,0 +1236,5.4627,8.8528,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8354,0 +1237,5.3829,9.5901,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2255,0 +1238,5.3528,8.8010,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +1239,5.2234,8.9268,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +1240,5.1539,9.0021,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,8425,0 +1241,5.3733,9.3614,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +1242,5.2216,8.8133,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +1243,5.0356,8.9551,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +1244,4.2258,7.6694,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8039,0 +1245,4.1326,8.0362,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +1246,4.1454,7.9315,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2906,0 +1247,4.1428,7.6542,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2229,0 +1248,4.6043,9.8220,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7919,0 +1249,4.6294,7.6782,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2636,0 +1250,4.7234,8.6016,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +1251,4.6306,8.8746,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1252,0 +1252,4.9342,8.8010,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8411,0 +1253,5.2202,8.8171,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3159,0 +1254,5.2406,8.8116,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2381,0 +1255,5.3112,8.7859,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3118,0 +1256,5.3839,8.9443,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7687,0 +1257,5.3885,8.7792,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +1258,5.3643,8.7538,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2569,0 +1259,5.5420,8.7662,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2484,0 +1260,5.4552,7.2914,0.0200,0.0000,0,0,0.0000,0,0.0000,0,1,0,115559,0 +1261,5.3565,8.8274,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,14568,0 +1262,5.2570,7.1678,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,20519,0 +1263,5.2785,7.9203,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6297,0 +1264,5.1912,8.9754,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13859,0 +1265,5.2518,9.0445,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5229,0 +1266,5.2035,8.9843,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4916,0 +1267,4.7643,9.0494,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3858,0 +1268,5.1263,8.6944,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9934,0 +1269,5.3247,8.7478,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1802,0 +1270,5.1868,8.8327,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +1271,5.5490,8.7150,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +1272,5.4830,8.7166,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8341,0 +1273,5.3255,8.8424,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1096,0 +1274,5.4292,8.8196,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +1275,5.5809,8.7394,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1276,5.5181,8.7705,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6486,0 +1277,5.5853,8.9603,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +1278,5.3877,8.7003,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1164,0 +1279,5.5518,8.7654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1131,0 +1280,5.3243,8.8972,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,20146,0 +1281,5.2158,8.6619,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +1282,5.4980,8.8765,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,973,0 +1283,5.5136,8.7602,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1284,5.4924,9.2649,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7466,0 +1285,5.4442,8.7350,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1878,0 +1286,5.5421,10.9483,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1287,5.3968,8.9469,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,892,0 +1288,5.5208,8.8358,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7673,0 +1289,5.4950,8.7585,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +1290,5.3556,8.8163,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1291,5.5956,8.9615,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1292,5.2076,7.8984,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6671,0 +1293,5.2561,7.8407,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1294,5.3183,12.0307,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1295,5.3695,8.5489,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1296,5.4283,7.9573,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8133,0 +1297,5.2660,8.9196,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3291,0 +1298,5.3357,8.9638,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1171,0 +1299,5.3467,8.8867,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1933,0 +1300,5.6433,9.0223,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8297,0 +1301,5.5330,8.9444,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1131,0 +1302,5.4433,8.9045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1964,0 +1303,5.3628,8.8883,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1304,5.5542,8.7123,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8270,0 +1305,5.4397,8.7415,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1130,0 +1306,5.7133,8.7850,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +1307,5.4796,8.9166,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1012,0 +1308,5.5636,8.7657,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1309,5.6511,8.7755,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1016,0 +1310,5.6740,8.8790,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +1311,5.5475,8.9128,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +1312,5.6242,9.3069,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6997,0 +1313,5.3722,8.7251,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2093,0 +1314,5.6714,8.7589,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1592,0 +1315,5.6600,8.9039,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1316,5.6404,8.9573,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8330,0 +1317,5.5419,8.9672,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2053,0 +1318,5.5982,9.2728,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2118,0 +1319,5.6049,8.7562,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1847,0 +1320,5.6310,7.5109,0.0201,0.0000,0,0,0.0000,0,0.0000,0,1,0,104539,0 +1321,5.2080,8.8715,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16174,0 +1322,5.2029,7.5872,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12007,0 +1323,5.1702,8.1724,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7946,0 +1324,5.2364,9.3420,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,12055,0 +1325,5.5856,9.0350,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3408,0 +1326,5.6508,9.3111,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4703,0 +1327,5.3591,8.8449,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +1328,5.5937,8.8422,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8910,0 +1329,5.4468,8.7151,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2251,0 +1330,5.4044,8.8495,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +1331,5.5028,8.7241,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +1332,5.3889,8.8807,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8700,0 +1333,5.6280,8.7062,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +1334,5.6126,8.8697,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +1335,5.5552,9.2807,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1122,0 +1336,5.5037,8.7688,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8210,0 +1337,5.5773,9.2629,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1338,5.5320,8.7394,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +1339,5.4675,8.8159,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1340,5.4725,8.8359,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6405,0 +1341,5.5967,8.7327,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1342,5.6043,8.7677,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +1343,5.5848,9.2986,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1246,0 +1344,5.4773,8.6813,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6926,0 +1345,5.2320,8.7172,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1458,0 +1346,5.4016,8.7503,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1347,5.3963,9.2901,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +1348,5.5662,8.7304,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7508,0 +1349,5.6317,8.7881,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +1350,5.3305,6.7161,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +1351,4.7661,8.2086,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1352,4.7235,6.8650,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,7534,0 +1353,4.6925,6.9093,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +1354,4.6922,6.4481,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1973,0 +1355,5.1845,8.3690,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +1356,4.8696,7.6876,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6115,0 +1357,5.1790,7.6093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +1358,5.1156,7.6212,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +1359,5.2629,9.2174,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,915,0 +1360,4.8688,8.5092,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8068,0 +1361,4.0767,6.6049,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2422,0 +1362,3.5113,6.3597,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1956,0 +1363,3.6604,6.6400,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1028,0 +1364,3.1435,6.3490,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8331,0 +1365,3.1668,7.2530,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +1366,3.2976,6.6130,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +1367,3.3464,6.3484,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +1368,3.1696,6.5723,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8298,0 +1369,17.3781,6.5254,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +1370,7.8680,6.3857,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1371,3.2210,6.4110,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +1372,3.1174,6.7447,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,6932,0 +1373,3.1909,7.1320,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1046,0 +1374,3.2618,6.6125,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1912,0 +1375,3.3130,6.3787,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1795,0 +1376,3.3947,6.3324,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,23528,0 +1377,3.3240,6.3071,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2616,0 +1378,3.4242,6.2350,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +1379,3.3169,6.3132,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +1380,3.3403,5.6106,0.0132,0.0000,0,0,0.0000,0,0.0000,0,1,0,103025,0 +1381,3.1437,6.4016,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,12449,0 +1382,3.4167,6.4242,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15864,0 +1383,3.3714,6.4711,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,10413,0 +1384,3.4838,6.7029,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15422,0 +1385,3.3733,6.7870,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4358,0 +1386,3.4676,6.6072,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4065,0 +1387,3.3787,6.3352,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3962,0 +1388,3.4259,6.6840,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9955,0 +1389,3.4022,7.3626,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3556,0 +1390,3.4428,6.7469,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4494,0 +1391,3.3902,7.0417,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +1392,3.5663,6.4943,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8675,0 +1393,4.6508,6.4844,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3465,0 +1394,3.4603,7.4205,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +1395,3.4898,7.0003,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +1396,3.4854,6.5827,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8553,0 +1397,4.4253,8.0245,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +1398,3.6282,6.9340,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +1399,3.8573,6.6928,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1344,0 +1400,3.4169,7.6163,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8221,0 +1401,3.4268,6.2898,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +1402,3.3277,6.2697,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +1403,3.3950,6.6500,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1204,0 +1404,3.5352,6.9056,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7147,0 +1405,3.5200,6.7999,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +1406,3.5428,6.5441,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2137,0 +1407,3.6241,6.4617,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1878,0 +1408,3.2607,6.4873,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7223,0 +1409,4.6203,7.2666,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2583,0 +1410,3.4454,6.9858,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2225,0 +1411,3.6349,6.4944,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +1412,3.7615,6.3456,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8654,0 +1413,3.4845,6.7546,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2026,0 +1414,3.4456,6.2850,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2055,0 +1415,3.1547,6.6104,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +1416,3.2605,6.4732,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7840,0 +1417,3.3628,6.3351,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +1418,3.4940,6.2117,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +1419,3.8738,6.4757,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +1420,3.8282,7.3955,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,6867,0 +1421,3.7868,6.4388,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1526,0 +1422,4.1443,6.5484,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2596,0 +1423,4.2270,6.7850,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +1424,4.2110,6.5706,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9095,0 +1425,4.1616,7.7028,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3753,0 +1426,4.2559,7.4315,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2818,0 +1427,4.3668,7.0530,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2662,0 +1428,4.3475,6.8857,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,8958,0 +1429,4.6941,7.1252,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2766,0 +1430,4.6426,7.8825,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +1431,4.6828,7.7712,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2928,0 +1432,4.7252,7.6917,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +1433,4.7092,7.7950,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2370,0 +1434,4.7588,8.0859,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +1435,4.7282,8.1947,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1883,0 +1436,4.6972,8.8824,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,7629,0 +1437,4.6820,7.6767,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1887,0 +1438,4.7340,8.1535,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3128,0 +1439,4.9994,7.2678,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2867,0 +1440,5.1308,6.7491,0.0259,0.0000,0,0,0.0000,0,0.0000,0,1,0,107061,0 +1441,5.0740,8.8218,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,16834,0 +1442,5.0965,6.8625,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,11648,0 +1443,4.1895,6.3435,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7104,0 +1444,3.5417,6.3474,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10547,0 +1445,3.8598,6.4878,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2178,0 +1446,3.6078,6.4380,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1701,0 +1447,3.7287,6.5117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1076,0 +1448,3.7910,7.1375,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8152,0 +1449,3.8123,6.9687,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +1450,4.0960,6.4835,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1451,4.1109,6.9692,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +1452,3.8187,7.3416,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,6310,0 +1453,3.8087,6.6589,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1194,0 +1454,3.8969,6.3705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2404,0 +1455,4.1261,6.5100,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +1456,4.1403,6.4637,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8228,0 +1457,4.1440,6.6177,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +1458,3.8300,6.4924,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,901,0 +1459,3.9596,6.3660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1460,3.7842,7.5301,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8364,0 +1461,4.1581,7.0362,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1071,0 +1462,4.2337,6.4329,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1463,4.7122,6.6751,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1464,4.4802,7.5530,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8207,0 +1465,4.6935,6.6100,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1466,4.6457,7.8298,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1467,4.6802,8.0483,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1468,4.7280,7.6315,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6376,0 +1469,5.0838,7.8892,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +1470,4.6287,6.6312,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1213,0 +1471,4.6884,6.3556,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1014,0 +1472,4.5668,6.3039,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,22311,0 +1473,4.5876,6.2820,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2298,0 +1474,4.6294,6.9165,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,985,0 +1475,4.5736,7.0207,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1476,4.6852,7.1393,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,7514,0 +1477,5.0070,7.4811,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1902,0 +1478,4.9868,8.1114,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1479,4.8605,8.7441,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1609,0 +1480,4.8331,9.0190,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7553,0 +1481,4.9185,7.8468,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1482,4.9859,9.1755,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1483,4.6474,7.6445,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +1484,4.4635,6.1947,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6448,0 +1485,4.4905,6.1841,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1486,4.5603,6.1918,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1187,0 +1487,4.5435,6.1910,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +1488,4.5713,7.5912,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8252,0 +1489,4.5725,7.5662,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2612,0 +1490,4.5961,7.5384,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1491,5.0090,7.6247,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1275,0 +1492,4.9253,8.8187,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8269,0 +1493,5.2956,8.8471,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1636,0 +1494,5.4552,9.2265,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +1495,5.1835,8.8570,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2097,0 +1496,5.4410,9.1892,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8374,0 +1497,5.2499,9.3082,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +1498,5.2473,8.7931,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +1499,5.2459,8.8075,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +1500,5.2399,7.1749,0.0195,0.0000,0,0,0.0000,0,0.0000,0,1,0,119486,0 +1501,5.3957,8.7689,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,17509,0 +1502,5.1291,8.1699,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,18271,0 +1503,5.1651,7.9813,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,10416,0 +1504,5.2092,8.2373,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12765,0 +1505,5.4510,9.3905,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4970,0 +1506,5.6822,9.2000,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4211,0 +1507,5.5985,9.1438,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3013,0 +1508,5.5973,8.9209,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8557,0 +1509,5.3360,8.9273,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +1510,5.3069,8.8439,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +1511,5.4520,8.8536,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1512,5.4799,8.7204,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7732,0 +1513,5.2715,8.7273,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1514,5.4851,8.7436,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +1515,5.6379,9.3036,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1516,5.5143,8.7874,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6178,0 +1517,5.3668,8.7442,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1518,5.3518,8.7556,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2110,0 +1519,5.3655,8.7671,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +1520,5.3018,8.8888,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8377,0 +1521,5.3501,8.7428,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1711,0 +1522,5.2211,8.6955,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +1523,5.3537,8.7057,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1524,5.3499,9.3664,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8268,0 +1525,5.5030,8.7413,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1526,5.6213,8.7012,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +1527,5.4341,8.9802,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +1528,5.4458,8.7996,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8193,0 +1529,5.5364,8.8043,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1530,5.5775,8.7965,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +1531,5.5144,8.1617,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1532,5.2013,7.0307,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,6440,0 +1533,5.2981,8.1278,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +1534,5.2188,9.3852,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1535,5.6102,9.0417,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +1536,5.4996,9.1497,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,20172,0 +1537,5.2705,8.8558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +1538,5.2765,9.1907,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1539,5.3012,8.7820,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +1540,5.3075,8.7048,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,7508,0 +1541,5.6468,8.8963,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2024,0 +1542,5.4987,8.8540,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1018,0 +1543,5.5533,8.8372,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +1544,5.1666,6.7834,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7612,0 +1545,5.3046,8.0429,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1546,4.7332,7.9941,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +1547,5.0548,8.3746,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1022,0 +1548,5.2160,8.0568,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6979,0 +1549,5.0718,8.1055,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,919,0 +1550,5.2063,8.8343,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1551,5.2672,8.7460,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1071,0 +1552,5.2387,8.6864,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8179,0 +1553,5.2185,8.6905,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +1554,5.3185,8.9345,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1231,0 +1555,5.3436,8.9161,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +1556,5.3730,9.3752,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8361,0 +1557,5.3102,8.7890,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1266,0 +1558,5.3615,8.7719,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1312,0 +1559,5.3649,9.3198,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1790,0 +1560,5.4894,7.4030,0.0190,0.0000,0,0,0.0000,0,0.0000,0,1,0,105662,0 +1561,5.5989,8.8000,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,16235,0 +1562,5.2318,7.7766,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6309,0 +1563,5.3326,8.1547,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7783,0 +1564,5.2765,7.4213,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,11619,0 +1565,5.5626,8.4087,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3193,0 +1566,5.6164,8.0638,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3578,0 +1567,5.5496,9.3227,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +1568,5.5269,9.3102,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7927,0 +1569,5.4433,9.2732,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2397,0 +1570,5.4303,8.7063,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1869,0 +1571,5.5396,8.6914,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +1572,5.4127,8.6989,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7511,0 +1573,5.1203,9.2623,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +1574,5.3533,8.6873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +1575,5.5772,8.8428,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1576,5.4832,8.6989,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7639,0 +1577,5.6444,8.6817,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1578,5.5241,8.7375,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1579,5.6455,8.7005,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +1580,5.4607,8.8679,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,6759,0 +1581,5.5260,8.7989,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +1582,5.4842,8.7302,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1221,0 +1583,5.4937,9.2875,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1584,5.4883,8.8195,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7536,0 +1585,5.3380,9.0920,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2769,0 +1586,5.3262,8.9287,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +1587,5.3392,9.2941,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1393,0 +1588,5.6304,8.9024,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8259,0 +1589,5.5410,8.8620,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1099,0 +1590,5.5721,8.9127,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1100,0 +1591,5.6227,8.7628,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1293,0 +1592,5.1700,8.1601,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8404,0 +1593,5.2620,7.5446,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1594,5.3109,9.3440,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1065,0 +1595,5.5974,9.0808,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1596,5.6119,9.2385,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7100,0 +1597,5.3261,8.8715,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +1598,5.2671,8.7363,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +1599,5.3166,9.0839,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2601,0 +1600,5.6847,8.8526,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7567,0 +1601,5.3300,8.9871,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2709,0 +1602,5.3787,8.8994,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2345,0 +1603,5.6026,10.3165,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2291,0 +1604,5.1955,8.0814,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8705,0 +1605,5.1366,8.3664,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2489,0 +1606,5.1945,9.2569,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2410,0 +1607,5.6117,8.8978,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2690,0 +1608,5.6146,8.9277,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8265,0 +1609,5.3292,11.1165,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2192,0 +1610,5.2767,8.7470,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1795,0 +1611,5.3294,8.7627,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1612,5.2324,8.7506,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7268,0 +1613,5.3586,8.8342,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1869,0 +1614,5.2254,8.8613,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3461,0 +1615,5.3732,8.7778,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1616,5.3477,8.7104,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9861,0 +1617,5.3691,8.7529,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4187,0 +1618,5.5369,8.9028,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3319,0 +1619,5.5413,8.8576,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3300,0 +1620,5.4333,7.5486,0.0208,0.0000,0,0,0.0000,0,0.0000,0,1,0,122134,0 +1621,5.5781,8.1548,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,18152,0 +1622,5.2244,7.4711,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,21783,0 +1623,5.2980,8.0230,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6635,0 +1624,5.2698,9.2348,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14157,0 +1625,5.6067,9.3163,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6641,0 +1626,5.7262,8.9955,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4204,0 +1627,5.5644,8.9068,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +1628,5.6558,8.8685,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9161,0 +1629,5.5293,8.7852,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +1630,5.3842,8.7505,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2103,0 +1631,5.3576,8.7944,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +1632,5.2458,8.9304,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,22433,0 +1633,5.3853,8.7679,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2842,0 +1634,5.3762,8.7643,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1635,5.4495,9.0624,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +1636,5.3679,8.7568,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8507,0 +1637,5.3590,8.9002,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1435,0 +1638,5.1433,8.9742,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1263,0 +1639,4.6315,7.3963,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +1640,4.6450,7.7090,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7698,0 +1641,4.6304,7.0655,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1014,0 +1642,4.6565,7.2255,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +1643,4.6353,7.2754,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +1644,4.6524,8.2202,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6785,0 +1645,4.9052,8.2668,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1240,0 +1646,5.0187,8.8747,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2314,0 +1647,5.0998,7.2215,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1605,0 +1648,5.1382,8.1323,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8649,0 +1649,5.0070,7.3332,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3237,0 +1650,5.1895,9.0670,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +1651,5.1055,7.9765,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2026,0 +1652,5.0200,7.3936,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8495,0 +1653,5.1345,7.4578,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2141,0 +1654,5.0089,7.4512,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2126,0 +1655,5.1378,7.8807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +1656,5.0768,7.7911,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8587,0 +1657,5.0426,7.5629,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2150,0 +1658,4.9472,7.6549,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +1659,5.0961,7.9403,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +1660,5.0554,9.3440,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,7780,0 +1661,4.8979,7.4387,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +1662,5.2860,8.6191,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3278,0 +1663,4.7011,7.5234,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3022,0 +1664,4.7672,7.7367,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8610,0 +1665,4.9895,7.6138,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3701,0 +1666,5.1546,7.9479,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2981,0 +1667,5.0291,7.2221,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2885,0 +1668,4.2445,6.2266,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9282,0 +1669,3.5592,6.6063,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3013,0 +1670,3.8434,6.4813,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2964,0 +1671,3.8472,6.8535,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3117,0 +1672,3.7967,7.3686,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8723,0 +1673,3.9027,6.4765,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +1674,4.1602,6.8386,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1983,0 +1675,4.2089,6.6866,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +1676,4.4901,7.7110,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7582,0 +1677,4.7419,7.4945,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2073,0 +1678,4.4885,7.5512,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4050,0 +1679,4.6198,7.2060,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +1680,4.7352,7.3363,0.0282,0.0000,0,0,0.0000,0,0.0000,0,1,0,96684,0 +1681,4.6875,8.0809,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,19693,0 +1682,4.6758,8.3926,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9750,0 +1683,4.7033,7.9762,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8435,0 +1684,4.7038,8.4893,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11552,0 +1685,4.6731,8.6099,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3071,0 +1686,5.0380,8.1365,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2393,0 +1687,4.7228,8.7802,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1090,0 +1688,5.0802,8.0714,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8261,0 +1689,4.9657,7.6380,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,936,0 +1690,5.1125,7.3042,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1691,5.1627,8.2996,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1692,5.3388,7.6563,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6412,0 +1693,5.2632,7.7558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +1694,5.3817,7.5491,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +1695,5.2732,7.8135,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +1696,5.3040,7.9908,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6945,0 +1697,5.2509,8.7707,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +1698,4.8952,6.8414,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +1699,5.0550,7.6868,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +1700,4.9182,7.8044,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7362,0 +1701,4.9915,7.0571,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +1702,4.8779,8.1122,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1703,5.2506,9.2667,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1704,5.3270,9.1677,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7474,0 +1705,5.2493,8.9898,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1706,5.2501,8.8497,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1707,5.3573,9.4163,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +1708,5.3860,9.2953,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6066,0 +1709,5.2850,8.9938,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1710,5.3420,9.0277,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +1711,5.3692,8.8491,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +1712,5.2528,7.5969,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7915,0 +1713,5.3088,8.0370,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2522,0 +1714,5.3420,7.7590,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1871,0 +1715,5.6202,8.2127,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +1716,5.6873,8.0938,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8281,0 +1717,5.3387,8.1435,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +1718,5.2902,7.7470,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +1719,5.2923,9.3368,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +1720,5.4576,9.4565,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8153,0 +1721,5.5247,8.8193,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +1722,5.4462,8.8411,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +1723,5.1955,8.4076,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +1724,4.9737,8.0261,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6808,0 +1725,4.8852,8.0839,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,981,0 +1726,5.2213,7.8565,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +1727,5.1503,7.8874,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +1728,5.3192,9.3872,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,22706,0 +1729,5.5060,9.3086,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2576,0 +1730,5.6738,9.1296,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +1731,5.5917,9.1011,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +1732,5.6341,8.9042,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7782,0 +1733,5.3446,8.7364,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3174,0 +1734,5.2096,8.7324,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +1735,5.4062,8.7818,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +1736,5.3580,8.9703,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8326,0 +1737,5.3187,8.9400,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1119,0 +1738,5.3590,11.0115,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +1739,5.4940,8.8119,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +1740,5.5454,7.3373,0.0205,0.0000,0,0,0.0000,0,0.0000,0,1,0,115416,0 +1741,5.2470,8.7393,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,13974,0 +1742,5.2061,8.0104,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,21244,0 +1743,5.2381,8.0627,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6034,0 +1744,5.1942,9.1350,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,13815,0 +1745,5.5525,9.1395,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4965,0 +1746,5.6980,9.5841,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4796,0 +1747,5.3928,8.8124,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3911,0 +1748,5.3848,8.7829,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9857,0 +1749,5.3631,8.8110,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +1750,5.3747,8.7660,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +1751,5.3005,8.9083,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +1752,5.3641,8.7646,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8417,0 +1753,5.4271,8.9653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +1754,5.3465,8.9213,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +1755,5.6104,8.9300,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +1756,5.3643,8.7750,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6474,0 +1757,5.3939,8.8221,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1758,5.3908,8.9437,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1176,0 +1759,5.4930,11.1355,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1135,0 +1760,5.3845,8.7665,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6890,0 +1761,5.3878,8.7669,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1428,0 +1762,5.6223,8.7154,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +1763,5.6109,8.8782,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,990,0 +1764,5.6617,8.8028,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7546,0 +1765,5.3633,8.9341,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +1766,5.3852,8.7770,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1767,5.3561,8.7660,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +1768,5.3403,8.7396,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7478,0 +1769,5.4165,8.7693,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +1770,5.5164,8.7836,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1963,0 +1771,5.3877,8.7397,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +1772,5.2443,7.4830,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6137,0 +1773,5.3161,8.1360,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1774,5.3192,10.4983,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1049,0 +1775,5.6202,9.3959,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,949,0 +1776,5.3477,9.1979,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8108,0 +1777,5.3359,9.1263,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +1778,5.3901,8.9789,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1251,0 +1779,5.2986,8.9712,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1063,0 +1780,5.7054,8.9071,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8261,0 +1781,5.7760,11.1259,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1113,0 +1782,5.3446,8.7611,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1230,0 +1783,5.1411,8.8124,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +1784,5.1041,7.6707,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8235,0 +1785,5.0165,8.0665,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1254,0 +1786,5.0931,8.8398,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1016,0 +1787,5.5463,9.1675,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +1788,5.4980,8.9267,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6677,0 +1789,5.2993,8.7668,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1790,5.3493,8.7946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1532,0 +1791,5.3811,8.8069,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +1792,5.2736,8.7881,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,20362,0 +1793,5.4275,8.8335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +1794,5.4064,8.7748,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1380,0 +1795,5.4420,8.8172,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1796,5.3434,8.6991,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8350,0 +1797,5.2758,8.8780,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2375,0 +1798,5.5985,8.7416,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +1799,5.4865,8.8062,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.txt new file mode 100644 index 0000000..2d23765 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.159 +avg_encode_latency_ms=8.145 +p95_encode_latency_ms=9.296 +max_encode_latency_ms=20.146 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=10396029 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.csv diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.csv new file mode 100644 index 0000000..cf8ee9f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.csv @@ -0,0 +1,1801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.5359,27.0850,0.0439,0.0000,0,0,0.0000,0,0.0000,0,1,0,134758,0 +1,7.8887,12.8203,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,22508,0 +2,7.1699,17.2320,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13876,0 +3,6.8525,21.9938,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,19348,0 +4,7.5682,16.4878,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,33309,0 +5,7.5636,12.8432,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26815,0 +6,7.6625,12.6123,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12881,0 +7,8.1434,12.6898,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7322,0 +8,7.8641,12.6812,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,20788,0 +9,8.1980,12.6227,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3174,0 +10,7.9452,12.6301,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3302,0 +11,8.0919,12.6325,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +12,7.8207,12.7228,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14181,0 +13,8.0672,12.6810,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2505,0 +14,7.8578,12.7447,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3770,0 +15,8.2391,12.6906,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3284,0 +16,8.1760,12.8470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16013,0 +17,8.6200,12.6815,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4859,0 +18,8.2354,12.7250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3363,0 +19,7.9309,12.8053,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2952,0 +20,7.9830,12.8608,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15104,0 +21,8.0606,12.7151,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +22,7.5372,12.7253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2154,0 +23,8.1524,12.7944,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2225,0 +24,7.7573,12.7848,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14872,0 +25,7.8053,12.7452,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +26,8.3606,12.6692,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +27,7.7721,12.6908,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +28,7.1647,12.7320,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14406,0 +29,6.6154,12.7968,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1750,0 +30,6.6025,12.7672,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2576,0 +31,6.5165,12.7469,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2327,0 +32,6.6327,12.6535,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12691,0 +33,6.6822,12.7835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3100,0 +34,6.7230,12.7653,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +35,6.6414,12.6703,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +36,6.5973,12.6616,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14461,0 +37,6.5320,12.6917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3668,0 +38,7.5051,12.5548,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +39,7.4843,12.5647,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +40,7.6350,12.5474,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13916,0 +41,7.8155,12.5966,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +42,7.7333,12.5632,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3390,0 +43,7.7062,12.6510,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +44,7.8860,12.6304,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13669,0 +45,7.9065,12.6220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +46,7.8794,12.7282,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2593,0 +47,7.9938,13.0036,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +48,8.0919,13.0664,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,15794,0 +49,7.7598,12.8011,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3345,0 +50,7.6134,12.7336,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3625,0 +51,7.7320,12.7382,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2492,0 +52,7.6068,12.6365,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16278,0 +53,7.8406,12.6040,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2342,0 +54,7.7387,12.6237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +55,7.7545,12.6497,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2295,0 +56,7.8550,12.7025,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16161,0 +57,8.0152,12.6726,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +58,7.5430,12.6100,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1992,0 +59,8.0230,12.6375,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +60,7.9394,10.3316,0.0513,0.0000,0,0,0.0000,0,0.0000,0,1,0,246938,0 +61,7.6700,12.6065,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,28131,0 +62,7.7840,12.6041,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,42163,0 +63,7.7085,12.6022,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,21132,0 +64,7.7554,12.6722,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,28780,0 +65,7.6976,12.6550,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14151,0 +66,7.8370,12.5940,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10320,0 +67,7.7354,12.5690,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2492,0 +68,7.6027,12.6898,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18182,0 +69,7.9497,12.6499,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +70,7.8174,12.7134,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +71,7.9821,12.7094,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +72,8.5184,12.7188,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14248,0 +73,8.3606,12.7081,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +74,8.8383,12.6578,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1853,0 +75,8.1770,12.6855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +76,8.7323,12.7403,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13978,0 +77,8.2235,12.9344,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2614,0 +78,8.6583,12.8543,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3974,0 +79,7.6050,12.7266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +80,8.5717,12.9057,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,16281,0 +81,7.6792,12.8265,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4891,0 +82,7.6946,12.8682,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2288,0 +83,7.8361,12.7065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +84,7.9732,12.8108,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15813,0 +85,7.9630,12.8230,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2407,0 +86,8.2415,12.8019,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2456,0 +87,8.1452,12.9108,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +88,7.7025,13.4117,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15714,0 +89,7.9863,12.7205,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +90,8.1937,12.6867,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +91,8.3795,12.7117,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +92,8.0165,12.6821,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15318,0 +93,8.2820,12.6760,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +94,7.9112,12.6313,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +95,8.1690,12.6683,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3392,0 +96,7.7950,12.6693,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,50716,0 +97,8.0699,12.6587,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5978,0 +98,7.7170,12.6528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3641,0 +99,8.4214,12.7083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2600,0 +100,7.9470,12.7782,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16503,0 +101,8.2528,12.7154,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3661,0 +102,7.8690,12.7573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3530,0 +103,8.2530,12.7580,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3436,0 +104,7.9889,12.6783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15452,0 +105,8.4894,12.7830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +106,8.3919,12.8653,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2625,0 +107,8.4838,12.8053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +108,8.8215,12.9682,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14987,0 +109,8.0200,12.7660,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3255,0 +110,8.4276,12.6755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4550,0 +111,7.6948,12.6651,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3121,0 +112,8.1179,12.7664,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17786,0 +113,8.3315,12.7961,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5592,0 +114,8.5516,13.0011,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3578,0 +115,10.1376,12.7559,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4149,0 +116,8.1345,12.6508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +117,8.1811,12.6706,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4132,0 +118,8.1006,12.6811,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3812,0 +119,8.5183,12.6630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +120,8.1050,10.4026,0.0340,0.0000,0,0,0.0000,0,0.0000,0,1,0,228422,0 +121,8.6060,12.8148,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,37811,0 +122,7.8907,12.6335,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,24401,0 +123,8.0177,12.6460,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14293,0 +124,8.0705,12.7800,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22506,0 +125,8.4549,12.6974,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8358,0 +126,7.9659,12.7059,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8909,0 +127,8.4518,12.7076,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5960,0 +128,8.2006,12.7001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +129,8.7405,12.7995,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4192,0 +130,7.5922,12.6606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +131,8.0545,13.2073,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +132,8.2009,12.7076,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,13439,0 +133,8.0441,12.8650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4061,0 +134,8.2300,12.9684,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1871,0 +135,8.2749,12.7580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +136,8.6867,12.8675,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14410,0 +137,8.3459,12.9120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1518,0 +138,8.0406,12.8086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +139,7.7368,12.6546,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +140,7.9868,12.6520,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13205,0 +141,7.9085,12.6323,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +142,7.7820,12.6356,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2327,0 +143,7.8117,12.6696,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +144,7.8148,12.7965,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16320,0 +145,8.3940,12.7379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3628,0 +146,8.0965,12.7132,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +147,8.3428,12.7188,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1906,0 +148,8.2046,12.6586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16348,0 +149,8.4037,12.6550,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +150,8.1538,12.7623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2148,0 +151,8.0909,12.7115,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1920,0 +152,8.1903,12.7355,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15607,0 +153,8.4539,12.6643,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +154,8.0213,12.7831,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +155,8.4100,12.7858,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2750,0 +156,8.1157,12.8095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14546,0 +157,8.1263,12.9305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1881,0 +158,7.7548,12.6834,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2799,0 +159,8.1542,12.6305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +160,8.0174,12.6484,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13297,0 +161,8.2240,12.6435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3932,0 +162,8.6992,12.6497,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +163,8.0894,12.6706,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2626,0 +164,8.2118,12.6933,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16434,0 +165,7.9402,12.7205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3287,0 +166,8.0542,12.6442,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4223,0 +167,7.8110,12.6980,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3973,0 +168,8.2295,12.6952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15197,0 +169,7.8223,12.7195,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3150,0 +170,7.9451,12.7292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2183,0 +171,7.6638,12.6873,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +172,8.2388,12.7973,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14425,0 +173,8.0464,12.8708,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2570,0 +174,9.6797,12.8038,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5311,0 +175,8.1582,12.8052,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4089,0 +176,7.9888,12.6369,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17231,0 +177,7.6693,12.6905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4980,0 +178,7.9207,12.6628,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3586,0 +179,7.8165,12.9376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +180,8.1824,10.5557,0.0334,0.0000,0,0,0.0000,0,0.0000,0,1,0,275542,0 +181,7.9258,12.7362,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,52035,0 +182,7.9160,16.7827,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,45619,0 +183,8.2688,16.8320,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22993,0 +184,8.2710,16.6735,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,32232,0 +185,8.5587,16.9574,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12138,0 +186,8.2652,16.8863,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +187,8.5192,16.7715,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5883,0 +188,7.4912,17.4211,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17978,0 +189,7.9194,16.8585,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2865,0 +190,7.6827,16.9747,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4772,0 +191,7.1948,16.1002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3914,0 +192,7.9597,14.2952,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,50573,0 +193,7.9625,16.5975,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +194,8.1174,16.7465,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3478,0 +195,8.9655,16.6948,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +196,8.8793,16.6783,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15808,0 +197,8.4771,17.2039,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2392,0 +198,8.2327,17.0610,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2335,0 +199,7.9039,16.8774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2504,0 +200,7.7293,16.8440,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14755,0 +201,8.2226,16.8040,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2158,0 +202,8.5088,17.0448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1890,0 +203,8.0412,16.9852,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +204,7.9629,16.8930,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,14431,0 +205,8.1556,17.0181,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2686,0 +206,8.1285,16.8215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3250,0 +207,8.2291,16.6891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1992,0 +208,8.5359,16.8660,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16935,0 +209,7.9120,17.1273,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5211,0 +210,8.3601,16.8354,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +211,7.9647,17.0652,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2509,0 +212,8.1201,17.0015,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16247,0 +213,8.5262,16.7938,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +214,8.4843,17.0878,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2430,0 +215,7.9627,17.1690,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2608,0 +216,8.1956,16.9059,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16323,0 +217,8.8131,16.7905,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2181,0 +218,8.9080,16.9305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2314,0 +219,9.4768,17.1185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2479,0 +220,7.8524,19.2267,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15792,0 +221,8.6422,16.7489,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2860,0 +222,8.4001,18.0119,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4511,0 +223,8.7532,16.7453,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +224,7.8430,17.8238,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15566,0 +225,8.4505,16.7330,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5841,0 +226,8.0273,17.4506,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4688,0 +227,8.0339,16.9565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3481,0 +228,7.5998,17.3017,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17038,0 +229,8.1430,16.8433,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4163,0 +230,8.6090,17.3828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3950,0 +231,8.5954,17.0512,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4322,0 +232,8.3953,16.8326,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16075,0 +233,8.6950,17.0197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +234,8.2755,17.1834,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3117,0 +235,9.2329,16.8060,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3413,0 +236,8.9223,17.6111,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15550,0 +237,8.4910,17.0248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3923,0 +238,7.9743,17.1824,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6308,0 +239,8.2657,16.9896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5170,0 +240,8.0253,14.1654,0.0285,0.0000,0,0,0.0000,0,0.0000,0,1,0,206878,0 +241,8.2528,17.0900,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,42191,0 +242,8.0885,17.0105,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +243,8.2798,17.0949,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16471,0 +244,8.1163,17.0963,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,26185,0 +245,8.3334,17.0067,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7259,0 +246,8.1367,17.0555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4665,0 +247,8.4853,16.9086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +248,8.2017,17.0511,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,14458,0 +249,8.1273,16.9806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +250,7.6853,17.0829,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +251,7.6438,16.7359,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +252,7.8199,16.7395,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,14118,0 +253,7.6903,16.8050,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1995,0 +254,7.8143,16.6615,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3209,0 +255,8.3735,16.6377,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2697,0 +256,8.6807,16.6820,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,45318,0 +257,8.2286,16.7140,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2887,0 +258,9.0762,16.7320,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2211,0 +259,8.0745,17.7365,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +260,8.4644,16.9852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13198,0 +261,7.5904,17.9972,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3976,0 +262,7.7763,17.0002,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1636,0 +263,7.7955,17.1202,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1635,0 +264,7.8155,16.7005,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14313,0 +265,7.9206,16.8257,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +266,7.6898,16.6100,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1540,0 +267,7.7437,16.5843,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +268,7.7803,16.6613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14232,0 +269,7.5732,16.8837,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +270,7.8032,16.7774,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2040,0 +271,8.7342,16.8314,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +272,8.2980,17.0629,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16160,0 +273,8.4462,16.8674,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5110,0 +274,7.8943,17.2095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1972,0 +275,8.2250,16.6773,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +276,7.5082,17.2790,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15450,0 +277,8.2253,16.7544,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +278,7.7780,17.3632,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +279,8.6606,16.7702,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +280,8.4241,17.2638,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15934,0 +281,8.1197,16.8129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +282,8.7345,16.7591,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1616,0 +283,9.2408,17.1860,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +284,9.0916,17.1656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15323,0 +285,8.6993,16.8886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1784,0 +286,8.7687,16.9342,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3672,0 +287,7.8611,17.4254,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +288,8.1394,17.1343,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14578,0 +289,8.1309,17.1915,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4300,0 +290,8.5530,16.7728,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2510,0 +291,9.0753,16.7322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +292,8.1053,17.2422,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15856,0 +293,8.5276,16.8125,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3608,0 +294,8.0456,17.4290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4132,0 +295,7.7958,16.8671,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2161,0 +296,7.8516,16.6833,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14839,0 +297,7.6469,16.6293,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +298,7.5200,16.6639,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1860,0 +299,7.8212,16.6139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +300,7.6844,13.5415,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,242922,0 +301,7.9163,16.9780,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,41927,0 +302,7.4454,17.0003,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,39880,0 +303,7.9328,16.7056,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11373,0 +304,8.5350,16.8912,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,28520,0 +305,7.4971,17.4709,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10371,0 +306,7.7179,16.8352,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8950,0 +307,8.2603,16.9967,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6626,0 +308,8.2995,16.7397,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21309,0 +309,8.5047,16.9948,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3546,0 +310,7.9879,17.1068,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2947,0 +311,8.1161,16.6708,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2972,0 +312,8.1575,17.2904,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15344,0 +313,8.1009,16.9151,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2395,0 +314,8.3108,17.1278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +315,8.1713,17.1388,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2477,0 +316,9.4053,16.7169,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14675,0 +317,8.3296,18.0973,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2321,0 +318,8.4771,16.9616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3112,0 +319,8.3965,17.0578,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2849,0 +320,8.4652,16.7800,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12720,0 +321,9.7320,16.7237,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2848,0 +322,8.5866,17.9318,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2401,0 +323,8.5655,16.8513,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +324,7.7298,17.6176,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +325,8.1145,17.0132,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3923,0 +326,8.0626,17.1651,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +327,7.9763,17.1323,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +328,7.8680,16.9185,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13537,0 +329,8.5461,16.9823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +330,8.4560,17.2095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1594,0 +331,8.5313,16.8212,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +332,8.4573,17.0600,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14256,0 +333,8.3010,16.8612,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2034,0 +334,8.1679,17.2149,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2998,0 +335,7.9146,17.0579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1939,0 +336,8.0858,16.9831,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16075,0 +337,8.3895,16.8821,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5028,0 +338,7.9108,16.9382,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +339,8.4589,16.8392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +340,7.9701,17.0639,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16018,0 +341,8.4623,16.7443,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1867,0 +342,7.9008,17.2219,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1933,0 +343,8.0975,16.9807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1999,0 +344,8.6236,17.2055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15800,0 +345,8.7671,16.8222,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +346,8.4137,17.4569,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1620,0 +347,8.2366,17.2360,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +348,8.3984,16.7562,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14974,0 +349,7.8001,17.2480,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +350,8.1949,16.9989,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2425,0 +351,8.1855,17.0917,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +352,7.8877,16.6980,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,49966,0 +353,8.5576,16.7289,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5402,0 +354,7.7438,17.2196,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +355,8.4157,16.9355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2154,0 +356,8.5433,17.1904,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16215,0 +357,7.7860,17.0917,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3869,0 +358,8.1788,16.9384,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3673,0 +359,7.8821,17.0563,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3166,0 +360,8.0659,13.9001,0.0242,0.0000,0,0,0.0000,0,0.0000,0,1,0,223143,0 +361,7.9553,16.7079,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,43052,0 +362,8.5105,16.7790,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,28457,0 +363,8.1016,17.0749,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +364,7.9836,16.7346,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,23867,0 +365,8.0373,16.7039,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11201,0 +366,8.1994,17.2167,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12029,0 +367,8.0699,17.0526,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3964,0 +368,9.9930,16.9088,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21017,0 +369,7.7475,19.9689,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5317,0 +370,9.4430,17.0678,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3870,0 +371,7.9939,20.1127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3678,0 +372,8.6439,17.1444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15880,0 +373,8.3123,18.2190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +374,9.4801,16.8902,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +375,8.0353,18.7865,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +376,9.4395,16.8499,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15525,0 +377,7.5243,19.5520,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +378,8.9481,16.9305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +379,7.9600,19.0371,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +380,8.8333,16.8389,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14988,0 +381,8.3509,17.9331,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2038,0 +382,9.1005,16.7551,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3107,0 +383,7.8569,18.2991,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2699,0 +384,9.8318,16.7802,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +385,7.5035,20.1612,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3279,0 +386,7.8536,17.2237,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2441,0 +387,7.7985,17.9347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +388,7.8694,16.7992,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,15490,0 +389,7.9128,16.6855,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +390,7.7186,16.8054,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2363,0 +391,7.9295,16.7416,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +392,7.9088,233.5270,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,14535,0 +393,8.6356,16.0800,0.0204,0.0000,0,0,0.0000,0,0.0000,0,1,0,122591,0 +394,8.3494,22.4599,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12991,0 +395,8.4038,25.6498,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15496,0 +396,10.3571,26.9313,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,33816,0 +397,11.2935,27.1045,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,32418,0 +398,9.8285,28.9025,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,25951,0 +399,8.7618,31.7433,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,14505,0 +400,7.9767,35.4240,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,24878,0 +401,7.3965,39.7400,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8605,0 +402,7.0348,44.3863,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6618,0 +403,6.6534,49.5110,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5260,0 +404,6.5750,54.5775,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15224,0 +405,6.6340,59.6216,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2462,0 +406,6.5705,64.6863,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2264,0 +407,6.5632,69.7746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2202,0 +408,6.4247,75.1117,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14299,0 +409,6.5020,77.8490,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +410,7.0308,77.1753,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +411,7.0388,77.2444,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +412,7.2139,77.0222,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13950,0 +413,7.4279,76.8952,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1792,0 +414,7.3154,77.0249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2109,0 +415,7.4038,76.7858,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +416,7.7110,76.4151,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12043,0 +417,7.4504,76.7218,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2446,0 +418,7.4353,76.8563,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1822,0 +419,7.4329,76.8854,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +420,7.4085,76.9255,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13412,0 +421,8.0058,76.3235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3811,0 +422,7.3007,76.9755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +423,7.4321,76.9915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +424,7.5671,76.6159,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14346,0 +425,7.3718,76.8558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +426,7.3716,76.9129,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +427,7.2900,77.0070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +428,7.3370,76.9564,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13283,0 +429,7.3845,76.8952,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +430,7.3005,77.0643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +431,7.6683,71.8880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1664,0 +432,7.9920,64.9937,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16168,0 +433,7.7752,61.7536,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +434,7.8948,56.4012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +435,7.7088,52.4261,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1670,0 +436,7.7898,47.5103,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15973,0 +437,7.7719,43.1270,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1675,0 +438,7.6385,39.7493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1697,0 +439,7.6465,35.1299,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1658,0 +440,7.8054,30.9769,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15817,0 +441,7.8260,30.4764,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1607,0 +442,7.6953,29.9635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +443,7.7973,29.2239,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +444,7.7830,28.7179,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14724,0 +445,7.8325,28.0910,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +446,7.7953,27.4908,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +447,7.9139,26.7660,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3930,0 +448,7.9241,26.2955,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,51740,0 +449,7.8207,25.7054,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7679,0 +450,7.8900,25.0968,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3603,0 +451,7.7449,24.6869,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +452,7.7360,23.9907,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16005,0 +453,8.3630,17.7103,0.0495,0.0000,0,0,0.0000,0,0.0000,0,1,0,238445,0 +454,12.2937,12.8680,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,38626,0 +455,8.9369,12.8317,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,41460,0 +456,7.7726,13.0106,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,49092,0 +457,7.7499,14.8484,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,24374,0 +458,8.2792,14.4412,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13008,0 +459,7.8357,14.7044,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8508,0 +460,8.1165,14.5057,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18886,0 +461,7.8637,16.4699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6546,0 +462,7.8535,16.6665,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6900,0 +463,7.9428,16.6182,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +464,8.4558,16.7214,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17039,0 +465,7.7977,17.0963,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +466,7.7665,16.8051,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2840,0 +467,7.7948,16.6912,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2951,0 +468,8.0655,16.9518,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16095,0 +469,7.7640,16.9525,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3068,0 +470,7.6714,18.4703,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +471,8.1797,16.7700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2913,0 +472,7.8663,18.4175,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16399,0 +473,8.6876,16.8741,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +474,8.0895,18.1660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2216,0 +475,8.1355,16.8600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2332,0 +476,8.0280,17.0790,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15618,0 +477,8.2889,16.7997,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2513,0 +478,8.4338,16.7124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4236,0 +479,7.9365,16.7576,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3618,0 +480,7.8648,16.9557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15182,0 +481,7.8896,16.8122,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4847,0 +482,8.1996,16.7274,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3624,0 +483,7.8578,16.7829,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2839,0 +484,7.5989,16.8901,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16757,0 +485,8.4693,16.7007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3765,0 +486,8.5531,17.0821,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3737,0 +487,8.5918,16.7907,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3741,0 +488,8.5295,16.8878,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15516,0 +489,8.3304,16.9494,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2704,0 +490,8.1059,16.9984,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2689,0 +491,7.8879,16.8798,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2806,0 +492,8.0134,16.7280,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14999,0 +493,7.8819,17.2211,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3594,0 +494,7.5928,17.0437,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5544,0 +495,7.9298,16.9726,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4387,0 +496,7.7110,17.1369,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19059,0 +497,8.3700,16.6463,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6312,0 +498,7.8063,17.1942,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +499,7.8572,16.8641,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4423,0 +500,7.9632,17.0661,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17854,0 +501,7.7708,16.9503,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4904,0 +502,8.0395,16.9012,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4656,0 +503,8.3329,17.1153,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5152,0 +504,8.0237,17.1338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18175,0 +505,7.8115,16.8667,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3727,0 +506,7.8388,16.9147,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3911,0 +507,7.9476,16.7772,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4220,0 +508,7.6372,16.6716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17261,0 +509,7.8751,16.7636,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4769,0 +510,7.9038,16.7231,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6979,0 +511,8.3044,16.8173,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6087,0 +512,8.1766,16.9050,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,50390,0 +513,8.6964,13.9621,0.0423,0.0000,0,0,0.0000,0,0.0000,0,1,0,152052,0 +514,8.6972,16.9462,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,34758,0 +515,8.7359,16.8577,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14675,0 +516,8.6617,16.8721,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,27904,0 +517,8.8225,16.9078,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10827,0 +518,8.1515,17.3561,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8556,0 +519,7.9600,16.9121,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6832,0 +520,8.0303,16.8195,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19744,0 +521,8.6395,16.8910,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +522,8.7627,16.9076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2419,0 +523,8.4595,17.9892,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2290,0 +524,8.7973,16.7665,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13794,0 +525,8.2978,18.0115,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3229,0 +526,8.2662,17.0877,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3960,0 +527,8.3101,17.1181,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2315,0 +528,8.1062,16.8225,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12205,0 +529,8.1929,17.0035,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5380,0 +530,8.3487,17.0900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2079,0 +531,8.4331,16.7259,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2184,0 +532,8.1742,16.8441,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15298,0 +533,7.9139,16.8166,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2252,0 +534,8.4793,16.7508,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2557,0 +535,7.9333,17.2774,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2042,0 +536,8.1575,17.0030,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15480,0 +537,7.8024,17.3507,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1686,0 +538,8.5605,16.8502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1784,0 +539,7.9923,17.6965,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1878,0 +540,8.2956,16.8457,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14773,0 +541,8.0655,17.0456,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2098,0 +542,8.1374,17.0432,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3339,0 +543,8.4191,16.8649,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3023,0 +544,8.0121,16.7810,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13368,0 +545,7.9775,16.7447,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3818,0 +546,8.2020,16.6441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2683,0 +547,8.0084,16.9534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1783,0 +548,8.3219,16.7790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15748,0 +549,8.1694,17.1466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2938,0 +550,7.7186,17.1525,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2678,0 +551,8.4201,16.7605,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2841,0 +552,7.9727,17.4955,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14651,0 +553,8.0525,17.0074,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +554,7.9950,17.1588,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2074,0 +555,8.6140,16.7810,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2063,0 +556,8.7310,16.8944,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14379,0 +557,8.6280,16.9334,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2484,0 +558,8.7748,17.0732,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3590,0 +559,8.1918,17.2767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2343,0 +560,8.8781,16.9840,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,16506,0 +561,8.8426,17.1449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4525,0 +562,8.7505,17.0065,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2479,0 +563,7.9570,17.4941,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2755,0 +564,7.9937,16.8380,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16398,0 +565,7.6327,17.0309,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3099,0 +566,8.1060,16.9646,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3043,0 +567,7.8430,17.1677,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3061,0 +568,8.5674,17.0674,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16528,0 +569,8.5806,17.0873,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2403,0 +570,8.5131,17.0688,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3049,0 +571,8.2766,16.9363,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2757,0 +572,8.6260,17.0553,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15729,0 +573,8.3163,15.8477,0.0414,0.0000,0,0,0.0000,0,0.0000,0,1,0,246650,0 +574,8.7506,16.7336,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,47008,0 +575,8.1547,17.2854,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,37344,0 +576,8.9025,16.8182,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,34667,0 +577,8.7104,17.1694,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15824,0 +578,8.3422,16.7841,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10789,0 +579,8.1521,17.9506,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3190,0 +580,8.3489,16.8392,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19153,0 +581,8.4015,17.5193,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +582,8.6224,16.8667,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2651,0 +583,8.3021,17.1726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2295,0 +584,8.7315,16.7499,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +585,7.5775,17.7806,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +586,7.8590,16.6934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +587,8.0969,16.8137,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2060,0 +588,8.6341,16.7485,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14032,0 +589,7.9298,17.1636,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2635,0 +590,8.0092,16.6948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4205,0 +591,8.1248,16.5871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1799,0 +592,8.0726,16.7941,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16814,0 +593,8.3554,16.5921,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4930,0 +594,7.9476,16.6473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2516,0 +595,8.5117,16.6772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +596,8.7824,16.7965,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16122,0 +597,7.6980,17.3611,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2748,0 +598,7.8004,18.5045,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2339,0 +599,8.5065,16.7725,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2255,0 +600,8.7505,16.9336,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16057,0 +601,8.2909,17.0027,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1970,0 +602,8.2958,16.9593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +603,7.9905,17.0352,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2122,0 +604,8.7543,16.6961,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15505,0 +605,8.0324,17.4767,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2714,0 +606,8.4993,16.7256,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +607,8.1510,18.1588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3579,0 +608,8.4966,16.8125,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,50982,0 +609,7.9435,18.1287,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6612,0 +610,7.8563,17.0553,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3604,0 +611,7.9757,16.8586,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2631,0 +612,8.3950,16.6925,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16535,0 +613,8.7082,16.8146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3659,0 +614,8.7795,16.8165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3574,0 +615,8.5846,16.8080,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3689,0 +616,8.6684,16.9219,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15528,0 +617,7.9777,17.1927,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2654,0 +618,8.6486,16.7204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2685,0 +619,8.1842,17.2629,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2813,0 +620,8.2482,16.9509,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15028,0 +621,8.0549,16.9930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3088,0 +622,8.8975,16.8472,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4946,0 +623,8.2103,17.7018,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3988,0 +624,9.0240,16.6811,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18201,0 +625,7.7035,18.2245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5714,0 +626,7.7902,17.0342,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3783,0 +627,7.8184,17.1480,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3966,0 +628,7.7774,17.1640,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,17580,0 +629,8.0338,16.8540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4282,0 +630,8.7051,16.9466,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3964,0 +631,8.9121,16.9314,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4090,0 +632,9.0331,16.7897,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17659,0 +633,8.9259,14.0389,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,180404,0 +634,8.5785,16.9193,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,25372,0 +635,8.6748,16.9397,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18850,0 +636,8.0485,17.3162,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,26803,0 +637,8.4901,16.8270,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14093,0 +638,8.2227,17.1421,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,14905,0 +639,8.2190,17.0065,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9492,0 +640,8.2566,16.8919,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20411,0 +641,8.6072,16.8633,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7253,0 +642,8.0983,17.1103,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3873,0 +643,8.2256,16.7746,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +644,8.9575,17.0290,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14512,0 +645,8.7386,17.0752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3232,0 +646,8.7477,16.9450,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +647,8.1515,17.3387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1994,0 +648,8.8400,16.7399,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14482,0 +649,8.0603,17.6435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +650,8.3498,16.7690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1696,0 +651,7.9178,17.2451,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2246,0 +652,8.0481,16.7808,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14454,0 +653,8.7112,16.9270,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2149,0 +654,8.0165,17.3675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3177,0 +655,8.3322,16.8758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1963,0 +656,8.0540,17.2488,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16595,0 +657,8.0600,16.7727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5577,0 +658,8.3049,16.9478,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2203,0 +659,8.6958,16.8407,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2178,0 +660,8.0260,17.1683,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15896,0 +661,8.6841,16.7686,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2317,0 +662,8.0979,17.5873,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +663,8.0020,17.0029,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2251,0 +664,7.9381,16.7443,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15860,0 +665,8.3462,16.8247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1869,0 +666,7.9314,17.0106,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1757,0 +667,8.0470,16.9488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +668,7.9575,19.3318,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15100,0 +669,8.5572,16.8500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2234,0 +670,8.0051,19.4601,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3485,0 +671,8.3992,16.9806,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3167,0 +672,7.8323,17.9715,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13922,0 +673,8.3472,16.6726,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4264,0 +674,7.9480,17.1680,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +675,8.5207,16.7067,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2223,0 +676,8.0929,17.1680,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +677,8.6134,16.7390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3004,0 +678,7.9774,17.3655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2888,0 +679,7.9930,16.7515,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2869,0 +680,8.3332,16.8631,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15090,0 +681,8.5859,16.8742,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2174,0 +682,7.9577,17.0051,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2172,0 +683,8.1483,17.0406,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2273,0 +684,7.9495,17.1128,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,14675,0 +685,8.2245,17.0706,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2610,0 +686,7.7597,17.7297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3871,0 +687,8.1058,16.7620,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2995,0 +688,7.8705,17.2004,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17212,0 +689,7.8542,16.7247,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4584,0 +690,8.4315,17.0175,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3157,0 +691,8.1714,16.8802,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3029,0 +692,8.0840,16.6648,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16791,0 +693,8.6145,13.7503,0.0318,0.0000,0,0,0.0000,0,0.0000,0,1,0,268628,0 +694,8.5050,16.8100,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,44328,0 +695,8.3531,17.0868,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,36096,0 +696,7.9665,16.9960,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,30951,0 +697,8.4074,16.7904,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16041,0 +698,7.9547,17.0977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9336,0 +699,8.7150,16.8206,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5716,0 +700,8.5240,17.1327,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17430,0 +701,8.7080,16.8891,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2922,0 +702,8.0070,17.5062,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4189,0 +703,8.4611,16.7807,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3544,0 +704,8.7391,17.0517,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,50750,0 +705,8.0244,17.1334,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6385,0 +706,8.2042,16.8561,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3213,0 +707,8.5207,16.9421,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +708,8.1112,17.2664,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15467,0 +709,8.2633,16.7378,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +710,7.8497,17.1336,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +711,8.3978,16.8857,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +712,8.4849,16.8118,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14810,0 +713,8.4576,16.7340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +714,8.5256,16.9121,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +715,7.8490,17.0686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +716,8.0912,16.9304,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14697,0 +717,7.9238,16.8738,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2555,0 +718,8.6310,16.9370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3720,0 +719,8.5808,16.9657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2255,0 +720,7.5691,19.4395,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17190,0 +721,7.7523,16.7260,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5383,0 +722,7.6396,18.2785,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2462,0 +723,7.9291,16.7317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2647,0 +724,7.6252,17.1333,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16215,0 +725,7.8130,16.8698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2879,0 +726,7.6323,16.8031,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +727,8.3334,16.9228,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2839,0 +728,8.2192,17.0105,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16429,0 +729,8.1496,16.7818,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2104,0 +730,8.3036,16.9083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +731,8.4303,17.1545,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2421,0 +732,8.2084,16.8661,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15571,0 +733,8.2229,16.7637,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2663,0 +734,8.6965,17.2873,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4038,0 +735,8.6192,17.1771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3731,0 +736,8.2827,16.8178,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14987,0 +737,8.0202,16.6934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4931,0 +738,8.5278,16.7436,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3852,0 +739,8.5227,16.8264,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3065,0 +740,8.4998,16.7148,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16823,0 +741,8.2263,16.7565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4162,0 +742,8.7470,16.7286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4116,0 +743,8.1698,17.2943,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4135,0 +744,8.1560,17.1401,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16047,0 +745,7.9860,17.1655,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3098,0 +746,7.9706,16.8824,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3359,0 +747,7.9186,16.9390,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3563,0 +748,7.6419,16.7682,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15647,0 +749,7.9052,16.6525,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3996,0 +750,7.8029,16.8951,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5892,0 +751,7.7673,16.6941,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4346,0 +752,8.0917,17.0216,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19071,0 +753,7.6434,14.0732,0.0198,0.0000,0,0,0.0000,0,0.0000,0,1,0,152330,0 +754,7.9512,16.7856,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,27504,0 +755,8.4852,16.8754,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27883,0 +756,7.8955,17.0060,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,36547,0 +757,8.5571,16.7082,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17053,0 +758,7.8706,17.3853,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9995,0 +759,7.7684,17.0919,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7299,0 +760,7.6749,17.1435,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21100,0 +761,7.8547,16.6707,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4171,0 +762,7.9515,17.1622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1906,0 +763,7.6410,17.0466,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +764,8.1474,16.9673,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15155,0 +765,7.9760,17.0638,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +766,7.6764,16.8572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3589,0 +767,7.7937,16.8660,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2929,0 +768,7.7017,18.3375,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45417,0 +769,8.0644,16.6404,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3496,0 +770,7.8347,17.9888,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2485,0 +771,7.9545,16.6661,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +772,8.1138,16.7828,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15604,0 +773,7.8517,16.9212,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2902,0 +774,8.0203,17.1151,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2840,0 +775,7.6746,17.0796,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2741,0 +776,7.7567,16.9430,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14936,0 +777,7.9841,16.7020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2098,0 +778,7.8310,16.8015,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2088,0 +779,7.7942,17.0056,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2202,0 +780,7.8422,16.7404,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,14723,0 +781,7.7199,16.7836,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2848,0 +782,7.6266,16.7950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4003,0 +783,7.8543,16.7350,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2663,0 +784,7.7539,16.7792,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17070,0 +785,7.7947,16.6819,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5135,0 +786,7.5710,16.8571,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2901,0 +787,7.6490,16.7711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2990,0 +788,7.9150,16.8749,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16633,0 +789,7.9616,16.6532,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +790,7.9552,16.5815,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +791,7.7523,16.7435,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3114,0 +792,7.7968,16.5643,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,16720,0 +793,7.6975,16.7778,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2457,0 +794,7.7963,16.7643,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2456,0 +795,7.8394,16.7543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2540,0 +796,7.5669,16.6743,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15849,0 +797,7.7371,16.6995,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2940,0 +798,7.5722,16.7957,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4345,0 +799,7.7404,17.0355,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4110,0 +800,8.4006,16.9863,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15395,0 +801,7.9092,17.0610,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5004,0 +802,7.8828,16.7293,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4509,0 +803,8.1025,16.7903,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3415,0 +804,7.8545,16.7685,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17283,0 +805,7.7367,16.6744,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4093,0 +806,7.8024,16.7368,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4296,0 +807,7.7746,16.8490,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4340,0 +808,7.5949,16.7372,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16194,0 +809,7.9807,16.8545,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2907,0 +810,7.9393,16.8954,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3139,0 +811,8.6713,16.8379,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3845,0 +812,8.6403,17.0045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16044,0 +813,7.9630,15.6669,0.0626,0.0000,0,0,0.0000,0,0.0000,0,1,0,254242,0 +814,8.7277,16.9440,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,43518,0 +815,8.1660,17.5813,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21483,0 +816,8.5175,16.7623,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,35433,0 +817,7.9792,17.2509,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12295,0 +818,8.0929,16.7591,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9832,0 +819,7.6114,17.0164,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7369,0 +820,7.9712,16.8210,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21103,0 +821,8.6453,16.7190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4511,0 +822,7.9159,16.9999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2530,0 +823,8.4706,16.7970,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2029,0 +824,7.9915,17.3725,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14931,0 +825,8.4582,16.8594,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +826,8.7812,16.8396,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +827,8.8536,16.7762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +828,8.8589,17.1184,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13990,0 +829,8.4968,17.0440,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1788,0 +830,8.3422,16.9916,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2547,0 +831,7.9967,17.0493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +832,7.9462,16.6889,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12552,0 +833,7.7853,16.7870,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2936,0 +834,7.8164,16.6436,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2028,0 +835,7.6770,16.7948,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +836,7.7069,16.7322,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13613,0 +837,7.8172,16.9831,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3766,0 +838,7.5328,16.8577,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +839,7.7869,16.6924,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +840,7.7744,16.6907,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,14337,0 +841,7.8205,16.6350,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +842,8.0264,16.8925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +843,7.6615,217.1761,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +844,8.6044,15.8617,0.0502,0.0000,0,0,0.0000,0,0.0000,0,1,0,178444,0 +845,8.6323,21.9387,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,32030,0 +846,8.3955,24.9110,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19351,0 +847,8.9804,27.3718,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20423,0 +848,11.3611,27.2640,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,48000,0 +849,9.8439,28.9109,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,40367,0 +850,8.8901,31.5961,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21019,0 +851,8.0103,35.2549,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13205,0 +852,7.2404,39.7632,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,22970,0 +853,7.0606,44.3962,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6606,0 +854,6.6176,49.5513,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5674,0 +855,6.6039,54.7156,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4662,0 +856,10.0037,56.6818,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15415,0 +857,7.0488,61.3485,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +858,7.9095,64.4375,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2183,0 +859,7.7547,69.4898,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +860,11.8973,67.9322,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +861,8.0549,71.4601,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +862,22.1175,60.2655,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +863,18.2598,47.2724,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2630,0 +864,10.0212,77.2465,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,49808,0 +865,13.1445,69.3371,0.2934,0.0000,0,0,0.0000,0,0.0000,0,0,0,5204,0 +866,10.6859,58.6837,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2344,0 +867,98.8068,13.6773,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +868,223.7244,13.7212,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15376,0 +869,18.8841,13.3881,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2733,0 +870,8.8256,15.7615,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2232,0 +871,14.5834,13.5740,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2229,0 +872,13.0792,14.3322,0.0267,0.0000,0,0,0.0000,0,0.0000,0,0,0,14739,0 +873,9.7069,15.6463,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +874,13.2310,13.1657,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +875,11.8243,13.3960,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1921,0 +876,12.8504,19.0175,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14633,0 +877,28.9429,13.7881,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2461,0 +878,14.7193,13.6016,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4351,0 +879,13.0324,13.1000,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2151,0 +880,31.2682,13.9832,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,16483,0 +881,17.9497,13.2569,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4751,0 +882,10.8483,13.5476,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3061,0 +883,7.3629,18.8514,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2652,0 +884,9.3954,22.0145,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,16135,0 +885,11.7165,19.6885,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3015,0 +886,15.0087,20.1212,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2482,0 +887,36.4288,17.4041,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +888,17.2165,13.5000,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,16584,0 +889,10.1225,14.2917,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2342,0 +890,11.5885,13.3862,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2387,0 +891,8.4514,16.1812,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2529,0 +892,8.3852,18.8345,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,15671,0 +893,9.5510,20.4245,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +894,8.9345,22.6855,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3951,0 +895,9.8752,23.8159,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3880,0 +896,8.1640,26.8717,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,14746,0 +897,7.5106,30.6934,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,4321,0 +898,7.5728,34.3524,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4031,0 +899,7.2890,38.3192,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3153,0 +900,7.8949,41.9132,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,16996,0 +901,10.8788,42.6914,0.0738,0.0000,0,0,0.0000,0,0.0000,0,0,0,3915,0 +902,7.8978,45.7056,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3957,0 +903,7.0232,50.1455,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,4529,0 +904,6.8416,52.3058,0.0563,0.0000,0,0,0.0000,0,0.0000,0,1,0,222769,0 +905,7.0075,56.8993,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,43512,0 +906,7.9265,60.4243,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,29657,0 +907,9.0903,62.3529,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16002,0 +908,7.7575,66.4643,0.1337,0.0000,0,0,0.0000,0,0.0000,0,0,0,22628,0 +909,7.8799,69.1607,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,10411,0 +910,6.6107,73.8382,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,11199,0 +911,7.9141,76.4565,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3383,0 +912,7.2022,76.7285,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,21371,0 +913,7.3117,76.5387,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5208,0 +914,8.6121,75.6491,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3761,0 +915,9.1769,73.5171,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3835,0 +916,7.1691,76.8499,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16072,0 +917,7.4997,76.6135,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3469,0 +918,8.7208,75.2589,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2765,0 +919,7.0362,76.9349,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2266,0 +920,7.1077,76.9005,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15422,0 +921,7.1898,76.7486,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2059,0 +922,8.9639,74.8938,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2026,0 +923,7.2357,76.5775,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +924,9.5305,74.4816,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14781,0 +925,6.8391,77.2862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2035,0 +926,6.7044,77.3007,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3116,0 +927,7.0925,77.0671,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2719,0 +928,7.6812,76.5378,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13328,0 +929,7.3129,76.9455,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3256,0 +930,7.2598,76.9270,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2802,0 +931,7.3883,77.7883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +932,7.7388,78.1831,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,15218,0 +933,9.3866,75.0922,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3125,0 +934,10.2153,73.6764,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2343,0 +935,9.6358,75.0601,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2383,0 +936,15.8876,68.4891,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,14671,0 +937,22.1665,56.4432,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +938,8.7640,58.9918,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2017,0 +939,8.3127,62.6655,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +940,7.0750,66.3607,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,14162,0 +941,7.7240,69.9584,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2272,0 +942,11.3078,69.7758,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3085,0 +943,7.6315,73.3856,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2106,0 +944,13.1828,75.0533,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,16480,0 +945,14.1508,73.4445,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4276,0 +946,9.2269,80.5640,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2375,0 +947,7.6270,75.7963,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2389,0 +948,6.9850,81.5004,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,16125,0 +949,6.7881,78.3670,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2606,0 +950,22.6886,63.4395,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2260,0 +951,31.7539,42.2596,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2498,0 +952,19.3168,34.4993,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,16118,0 +953,11.6814,31.2853,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2045,0 +954,7.9899,34.3060,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2080,0 +955,10.7450,34.6048,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2191,0 +956,10.3605,34.9143,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,15468,0 +957,8.6406,37.3090,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2478,0 +958,8.6537,40.1155,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4116,0 +959,7.2552,44.3274,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4204,0 +960,12.3045,43.5741,0.1049,0.0000,0,0,0.0000,0,0.0000,0,0,0,51738,0 +961,8.5248,45.9936,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,6656,0 +962,6.5419,50.9126,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,3730,0 +963,7.5114,55.1204,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2987,0 +964,6.6929,54.1292,0.1214,0.0000,0,0,0.0000,0,0.0000,0,1,0,237908,0 +965,7.5741,47.2183,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,37332,0 +966,7.5530,43.2809,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,38419,0 +967,8.2687,37.8283,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,25481,0 +968,7.5240,35.3434,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,33228,0 +969,7.7538,29.4265,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12328,0 +970,7.7598,25.4291,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,8099,0 +971,7.7100,21.1600,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6034,0 +972,7.7522,16.7387,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17166,0 +973,7.6848,13.1737,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5024,0 +974,7.6620,13.1612,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4155,0 +975,7.6924,12.9233,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +976,7.6597,12.7315,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16465,0 +977,7.8048,12.8604,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5363,0 +978,7.8469,12.7540,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2642,0 +979,7.6842,12.9123,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2921,0 +980,7.7686,12.7426,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15881,0 +981,7.6594,12.7482,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2765,0 +982,7.6441,12.7845,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +983,7.8128,12.8703,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2274,0 +984,7.6422,12.7494,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15710,0 +985,7.7377,12.8411,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +986,7.6709,12.8100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +987,6.9455,12.8522,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +988,6.7362,12.7691,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,14973,0 +989,7.4286,13.0030,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2017,0 +990,7.6715,12.8954,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3143,0 +991,7.6195,12.8851,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2819,0 +992,7.9416,13.2461,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +993,6.7988,12.8202,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3792,0 +994,6.6848,12.9160,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2782,0 +995,7.3080,13.0229,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +996,6.6614,12.9235,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15878,0 +997,6.7997,13.0552,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2862,0 +998,6.8064,12.8534,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3069,0 +999,7.4785,12.8186,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2972,0 +1000,7.8645,13.1196,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,14889,0 +1001,7.9486,13.4041,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2340,0 +1002,7.6877,12.7336,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +1003,7.7108,12.7763,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1004,7.9787,13.1000,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14508,0 +1005,6.9202,13.1140,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2815,0 +1006,6.7468,12.8780,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4063,0 +1007,7.5894,13.3540,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2607,0 +1008,7.8357,12.9563,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,16988,0 +1009,7.7795,12.7318,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5147,0 +1010,7.6746,13.3870,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2861,0 +1011,7.8260,12.7815,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2884,0 +1012,7.6688,13.0005,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,16593,0 +1013,7.8133,12.8423,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3346,0 +1014,7.7437,12.8670,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3136,0 +1015,7.8421,12.9458,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3251,0 +1016,7.8134,12.7585,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16719,0 +1017,7.7668,12.9469,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2521,0 +1018,7.8452,12.8560,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2585,0 +1019,7.5290,13.1890,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2839,0 +1020,7.6445,13.7383,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15827,0 +1021,7.7660,12.7575,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3545,0 +1022,7.6424,12.7030,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4690,0 +1023,7.6950,12.7136,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4216,0 +1024,7.7582,10.8472,0.0260,0.0000,0,0,0.0000,0,0.0000,0,1,0,236750,0 +1025,7.7966,13.0840,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,35827,0 +1026,7.7561,12.8865,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,24627,0 +1027,7.6723,12.8292,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10395,0 +1028,7.3081,13.2275,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22997,0 +1029,7.3957,13.2312,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5425,0 +1030,7.9498,12.9592,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4195,0 +1031,7.7217,12.8394,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2579,0 +1032,7.6663,13.0060,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13755,0 +1033,7.6924,12.7468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +1034,7.7157,12.9798,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +1035,7.7183,13.3902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1036,7.6666,12.9314,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,13785,0 +1037,7.7296,12.7864,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2153,0 +1038,7.7242,12.8009,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3168,0 +1039,7.7527,12.7344,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1888,0 +1040,7.6552,12.7932,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,12189,0 +1041,7.6929,12.7612,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5334,0 +1042,7.7328,13.0395,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +1043,7.7498,13.8229,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1803,0 +1044,7.7518,12.8223,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14861,0 +1045,7.6936,12.8225,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +1046,7.6973,13.3378,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3485,0 +1047,7.7547,15.5575,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2019,0 +1048,7.8054,13.3728,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,14827,0 +1049,7.6768,13.2898,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +1050,7.8027,13.1464,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +1051,7.8630,15.5756,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +1052,7.9043,15.2415,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,14166,0 +1053,7.8376,14.0780,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +1054,7.7526,13.3779,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2593,0 +1055,7.8564,12.7841,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2363,0 +1056,7.7242,12.8346,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13048,0 +1057,7.8542,13.0792,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3123,0 +1058,7.7713,12.9110,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2295,0 +1059,7.8033,12.8823,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +1060,7.9084,13.9831,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,15457,0 +1061,7.7097,13.2507,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3517,0 +1062,7.6955,12.7192,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2679,0 +1063,7.6993,12.7819,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +1064,7.7107,13.2109,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,14554,0 +1065,7.9464,13.1788,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1903,0 +1066,7.7694,12.9604,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2112,0 +1067,7.7200,12.9971,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2073,0 +1068,7.8610,13.2835,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,14398,0 +1069,7.6990,12.9451,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2477,0 +1070,7.6981,13.0029,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3158,0 +1071,7.7070,13.2587,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2355,0 +1072,7.7603,13.4230,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16144,0 +1073,7.6463,14.2450,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5081,0 +1074,8.0622,12.9608,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2539,0 +1075,7.7490,12.7543,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2530,0 +1076,7.6925,12.9919,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15939,0 +1077,7.6695,14.1272,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2853,0 +1078,7.6422,14.4645,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2904,0 +1079,7.8440,12.8290,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2977,0 +1080,7.7013,13.2072,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16123,0 +1081,7.9421,13.3637,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2718,0 +1082,7.8460,14.3799,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2552,0 +1083,7.6954,13.6468,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2714,0 +1084,7.7289,10.6342,0.0259,0.0000,0,0,0.0000,0,0.0000,0,1,0,246938,0 +1085,7.7097,12.9401,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,28131,0 +1086,7.7562,12.8543,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,42163,0 +1087,7.6847,13.7611,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,21132,0 +1088,7.6736,14.1170,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,28780,0 +1089,7.6977,14.0780,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,14151,0 +1090,7.7500,12.7188,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10320,0 +1091,7.6534,12.6959,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2492,0 +1092,7.6223,14.2332,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18182,0 +1093,7.6591,14.0915,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +1094,7.8441,14.4066,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +1095,7.8641,14.4837,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +1096,7.8312,13.0601,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,14248,0 +1097,7.7139,12.7338,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +1098,7.6718,14.0800,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1853,0 +1099,7.6982,16.7514,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +1100,7.8599,16.0292,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13978,0 +1101,7.7043,16.3143,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2614,0 +1102,7.8706,16.9889,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3974,0 +1103,7.7168,16.9260,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +1104,7.6542,15.0904,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16281,0 +1105,7.8647,12.9189,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4891,0 +1106,7.2251,12.9169,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2288,0 +1107,6.6637,13.2608,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +1108,7.7816,13.6673,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15813,0 +1109,7.8264,13.3591,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2407,0 +1110,7.7179,14.6163,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2456,0 +1111,8.0997,14.4517,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +1112,7.7339,14.3087,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,15714,0 +1113,7.9385,14.2639,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +1114,7.7962,12.9690,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +1115,7.6571,13.0304,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +1116,7.8116,12.8419,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15318,0 +1117,7.7744,14.2232,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +1118,7.7464,14.4747,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3399,0 +1119,7.6209,15.7567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3392,0 +1120,7.7663,16.2562,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,50716,0 +1121,7.9598,15.0415,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5978,0 +1122,7.6184,12.7698,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3641,0 +1123,7.6762,16.0264,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2600,0 +1124,7.6655,16.5685,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,16503,0 +1125,7.7491,16.4421,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3661,0 +1126,7.8320,16.3048,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3530,0 +1127,8.0938,16.8227,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3436,0 +1128,7.6485,13.5961,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15452,0 +1129,7.7745,15.7548,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +1130,7.7573,14.3559,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2625,0 +1131,7.7977,16.3207,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +1132,7.7948,16.3931,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14987,0 +1133,7.7103,15.9078,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3255,0 +1134,8.1370,14.5705,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4550,0 +1135,7.8503,14.0843,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3121,0 +1136,7.6655,16.5312,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,17786,0 +1137,7.8408,16.6594,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5592,0 +1138,7.8607,15.9113,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3578,0 +1139,7.6256,16.8142,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4149,0 +1140,7.7877,16.1832,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +1141,7.6969,16.3642,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4132,0 +1142,7.5378,15.0633,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3812,0 +1143,7.4793,14.1536,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4416,0 +1144,7.6272,10.6422,0.0231,0.0000,0,0,0.0000,0,0.0000,0,1,0,228422,0 +1145,7.7661,13.3850,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,37811,0 +1146,7.6869,13.0363,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,24401,0 +1147,7.9143,13.4157,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14293,0 +1148,7.7853,13.2716,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,22506,0 +1149,7.7925,13.2543,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,8358,0 +1150,7.7922,12.9955,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8909,0 +1151,7.6501,13.3521,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,5960,0 +1152,7.9320,13.1509,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +1153,7.7918,13.5269,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4192,0 +1154,7.8636,13.0960,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +1155,7.7810,14.1357,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +1156,8.0090,13.3214,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13439,0 +1157,7.7175,13.6095,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4061,0 +1158,7.6716,13.2573,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1871,0 +1159,7.7839,12.9700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1160,7.8411,13.0307,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,14410,0 +1161,7.7406,13.0522,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1518,0 +1162,7.9575,13.0848,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +1163,7.7646,12.8745,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +1164,7.7791,12.8207,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,13205,0 +1165,7.7484,12.9703,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +1166,7.7009,12.8862,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2327,0 +1167,7.6798,13.5776,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +1168,7.7105,12.9944,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16320,0 +1169,7.8126,13.3163,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3628,0 +1170,7.8095,13.4138,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +1171,7.7915,13.4288,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1906,0 +1172,7.7661,12.8151,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,16348,0 +1173,7.1902,12.8883,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +1174,6.6865,12.9485,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2148,0 +1175,7.5771,13.2361,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1920,0 +1176,7.7017,13.2554,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15607,0 +1177,7.9105,13.3971,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +1178,7.7016,13.6888,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +1179,7.7967,13.1207,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2750,0 +1180,7.6708,13.2128,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,14546,0 +1181,7.8520,13.2244,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1881,0 +1182,7.7825,13.4756,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2799,0 +1183,7.7471,12.9647,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +1184,7.7986,13.3186,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13297,0 +1185,7.8897,13.3887,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3932,0 +1186,7.7877,12.9069,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +1187,7.7546,12.8363,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2626,0 +1188,7.7169,12.8787,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,16434,0 +1189,7.8596,12.7990,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3287,0 +1190,7.7119,12.8692,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4223,0 +1191,7.7042,12.9954,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3973,0 +1192,7.7863,12.8088,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,15197,0 +1193,7.7128,13.8011,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3150,0 +1194,8.7558,13.0433,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2183,0 +1195,10.6475,13.5013,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1196,12.7260,13.2523,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,14425,0 +1197,9.1632,13.4092,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2570,0 +1198,7.3058,13.0995,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5311,0 +1199,8.3120,13.1169,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4089,0 +1200,12.0218,13.6626,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,17231,0 +1201,17.2151,15.5303,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4980,0 +1202,23.8820,14.3495,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,3586,0 +1203,9.0367,14.6779,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3747,0 +1204,8.6651,15.2456,0.0575,0.0000,0,0,0.0000,0,0.0000,0,1,0,275542,0 +1205,7.5265,18.1634,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,52035,0 +1206,7.4471,12.9569,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,45619,0 +1207,7.5853,12.9606,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,22993,0 +1208,7.7756,12.9968,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,32232,0 +1209,7.8322,12.8640,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12138,0 +1210,7.6065,12.8387,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +1211,7.6383,12.8336,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5883,0 +1212,7.7393,12.8816,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17978,0 +1213,7.7562,13.0545,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2865,0 +1214,7.6085,12.8264,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4772,0 +1215,7.7153,12.7819,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3914,0 +1216,7.6693,12.7941,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,50573,0 +1217,7.6790,12.8313,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +1218,7.9380,13.0126,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3478,0 +1219,7.7353,14.0192,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1623,0 +1220,7.8990,17.0715,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,15808,0 +1221,7.7857,16.6796,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2392,0 +1222,7.8771,16.5704,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2335,0 +1223,7.7908,16.3382,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2504,0 +1224,7.8201,16.6165,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14755,0 +1225,7.8470,16.8927,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2158,0 +1226,7.8151,16.9233,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1890,0 +1227,7.7655,15.9889,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +1228,7.8178,14.4269,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14431,0 +1229,7.7648,13.3963,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2686,0 +1230,7.8580,14.6025,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3250,0 +1231,7.8565,14.3576,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1992,0 +1232,7.7412,14.3516,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16935,0 +1233,7.8609,14.2904,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5211,0 +1234,7.6713,13.9421,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2312,0 +1235,7.8505,14.4991,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2509,0 +1236,7.7855,13.7308,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16247,0 +1237,7.8275,14.9246,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +1238,7.7442,14.9308,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2430,0 +1239,7.7186,14.3268,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2608,0 +1240,7.7759,14.1333,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16323,0 +1241,7.7406,14.3867,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2181,0 +1242,7.7737,14.2084,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2314,0 +1243,7.8364,14.7364,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2479,0 +1244,7.8667,15.4352,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15792,0 +1245,7.7587,13.7647,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2860,0 +1246,7.8040,14.6710,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4511,0 +1247,7.9793,14.2660,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +1248,7.7397,14.2907,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15566,0 +1249,7.9608,14.1414,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5841,0 +1250,7.6802,14.4987,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4688,0 +1251,7.7814,14.2010,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3481,0 +1252,7.8381,13.2871,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,17038,0 +1253,7.6662,14.8414,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4163,0 +1254,7.9913,16.8861,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3950,0 +1255,7.7097,16.1215,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4322,0 +1256,7.8138,16.8040,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,16075,0 +1257,7.8594,17.0774,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1258,7.7155,15.9398,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3117,0 +1259,8.0369,16.6582,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3413,0 +1260,7.9717,16.5445,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15550,0 +1261,7.7517,17.3890,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3923,0 +1262,7.7457,15.6140,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6308,0 +1263,7.8097,16.8583,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5170,0 +1264,7.8516,13.3624,0.0976,0.0000,0,0,0.0000,0,0.0000,0,1,0,206878,0 +1265,7.9229,14.7628,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,42191,0 +1266,7.6245,14.6714,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +1267,7.7076,16.0518,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16471,0 +1268,7.6199,14.2744,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,26185,0 +1269,7.6665,14.4763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7259,0 +1270,7.6455,12.7814,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4665,0 +1271,7.7783,14.1719,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +1272,7.8959,14.4131,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14458,0 +1273,7.7743,14.4569,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1274,7.7763,14.8893,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +1275,7.6393,16.2033,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +1276,7.6980,15.9110,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14118,0 +1277,7.6904,14.4756,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1995,0 +1278,7.7563,13.6442,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3209,0 +1279,7.6687,13.9007,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2697,0 +1280,7.6357,12.7416,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,45318,0 +1281,7.6860,12.7543,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2887,0 +1282,7.7130,14.4327,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2211,0 +1283,7.6665,14.4769,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +1284,7.6495,14.4784,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13198,0 +1285,7.6985,13.4909,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3976,0 +1286,7.6757,14.1646,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1636,0 +1287,7.6530,13.8327,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1635,0 +1288,7.6351,13.3346,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14313,0 +1289,7.7230,13.4146,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +1290,7.7011,14.5896,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1540,0 +1291,7.7209,14.3875,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +1292,7.6795,14.4936,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14232,0 +1293,7.7721,14.4138,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +1294,7.7560,13.1523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2040,0 +1295,7.6519,13.5773,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +1296,7.7491,13.3527,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16160,0 +1297,7.5782,14.3996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5110,0 +1298,7.7178,13.8918,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1972,0 +1299,7.5730,14.1702,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +1300,7.7440,14.2290,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15450,0 +1301,7.6308,13.9565,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1721,0 +1302,7.7049,14.2453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +1303,7.6115,14.4712,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +1304,7.6910,14.5470,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15934,0 +1305,7.5993,12.7014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +1306,7.6269,13.8027,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1616,0 +1307,7.6680,14.3852,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +1308,7.6808,14.3616,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15323,0 +1309,7.6785,13.2869,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1784,0 +1310,7.6152,12.7705,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3672,0 +1311,7.5898,12.8567,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +1312,7.5400,12.7031,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14578,0 +1313,7.5508,12.8732,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4300,0 +1314,7.7274,13.1225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2510,0 +1315,7.5819,14.1280,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +1316,7.6360,14.1518,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15856,0 +1317,7.6515,14.4081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3608,0 +1318,7.6102,14.4108,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4132,0 +1319,7.6469,14.4882,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2161,0 +1320,7.6691,14.6281,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,14839,0 +1321,7.6933,14.5554,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +1322,7.7145,14.4980,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1860,0 +1323,7.5647,14.4308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +1324,7.6477,11.3576,0.0448,0.0000,0,0,0.0000,0,0.0000,0,1,0,242922,0 +1325,7.7618,13.5679,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,41927,0 +1326,7.6271,13.1086,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,39880,0 +1327,7.7088,14.4480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11373,0 +1328,7.6128,14.1911,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,28520,0 +1329,7.6880,14.6351,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10371,0 +1330,7.7273,13.6776,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8950,0 +1331,7.6327,14.2416,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6626,0 +1332,7.6678,14.6641,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21309,0 +1333,7.6632,14.4362,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3546,0 +1334,7.6754,14.1324,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2947,0 +1335,7.5817,14.0995,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2972,0 +1336,7.6424,14.1550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15344,0 +1337,7.6175,14.4537,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2395,0 +1338,7.6369,12.8436,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +1339,7.6323,13.4669,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2477,0 +1340,7.6016,12.6932,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,14675,0 +1341,7.5728,12.7545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2321,0 +1342,7.7404,13.4549,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3112,0 +1343,7.6803,13.0562,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2849,0 +1344,7.6482,13.3911,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12720,0 +1345,7.6541,13.1193,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2848,0 +1346,7.5988,16.5541,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2401,0 +1347,7.6254,12.8133,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +1348,7.5559,12.6993,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +1349,7.5811,12.7445,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3923,0 +1350,7.5646,12.9686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +1351,7.6590,13.3599,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +1352,7.6647,12.8103,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13537,0 +1353,7.5585,12.8118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1617,0 +1354,7.6088,13.4985,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1594,0 +1355,7.6615,13.8083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +1356,7.5932,12.8465,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14256,0 +1357,7.5586,14.3875,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2034,0 +1358,7.6125,14.4083,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2998,0 +1359,7.6186,14.3613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1939,0 +1360,7.6497,14.4807,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16075,0 +1361,7.6363,14.2522,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5028,0 +1362,7.5950,13.9912,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +1363,7.5991,14.4562,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +1364,7.7042,14.5628,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16018,0 +1365,7.6483,14.5084,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1867,0 +1366,7.5995,14.5539,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1933,0 +1367,7.6231,14.2881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1999,0 +1368,7.6027,14.6085,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15800,0 +1369,7.6321,14.3141,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +1370,7.7940,14.2771,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1620,0 +1371,7.6433,14.2225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +1372,7.7415,14.3371,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14974,0 +1373,7.9783,15.0361,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +1374,7.9149,16.4155,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2425,0 +1375,7.6566,14.7816,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +1376,7.7687,14.3626,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,49966,0 +1377,7.7264,14.3535,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5402,0 +1378,7.7443,14.5080,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1379,7.6812,14.5003,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2154,0 +1380,7.7526,14.1688,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16215,0 +1381,7.6284,13.9287,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3869,0 +1382,7.5672,13.5599,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3673,0 +1383,7.5607,13.3118,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3166,0 +1384,7.7290,10.7058,0.0222,0.0000,0,0,0.0000,0,0.0000,0,1,0,223143,0 +1385,7.6738,12.9553,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,43052,0 +1386,7.7520,12.7531,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,28457,0 +1387,7.7731,12.7980,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,15639,0 +1388,7.6131,12.7148,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,23867,0 +1389,7.8138,13.9637,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11201,0 +1390,7.6788,13.9052,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12029,0 +1391,7.7051,13.0435,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3964,0 +1392,7.6018,13.0802,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21017,0 +1393,7.7681,13.0829,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5317,0 +1394,7.6427,13.0349,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3870,0 +1395,7.7306,13.3654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3678,0 +1396,7.6483,13.2052,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15880,0 +1397,7.7592,13.2739,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +1398,18.3984,14.7985,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +1399,14.8354,13.0434,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +1400,6.7466,17.5817,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15525,0 +1401,6.4394,20.8749,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +1402,7.5780,13.8469,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +1403,7.6705,13.0877,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2078,0 +1404,7.5884,12.9347,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,14988,0 +1405,7.6395,13.1350,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2038,0 +1406,7.6374,13.0408,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3107,0 +1407,7.6476,13.0919,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2699,0 +1408,7.6124,13.2591,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13113,0 +1409,7.6379,13.0765,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3279,0 +1410,7.5868,13.4592,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2441,0 +1411,7.6480,13.7395,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +1412,7.6070,13.8082,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15490,0 +1413,7.6459,13.9034,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3058,0 +1414,7.6082,13.6654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2363,0 +1415,7.6340,13.3432,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2413,0 +1416,7.6504,12.9796,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,14535,0 +1417,7.6769,13.0829,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2088,0 +1418,7.6006,13.0383,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2520,0 +1419,7.6500,13.8222,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1924,0 +1420,7.6067,13.0243,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14188,0 +1421,7.5894,13.0653,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2449,0 +1422,7.6341,13.0375,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3660,0 +1423,7.6216,13.3517,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2023,0 +1424,7.6318,13.7263,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16517,0 +1425,7.6145,13.9443,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4470,0 +1426,7.6231,13.2562,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2757,0 +1427,7.5801,12.9770,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2394,0 +1428,7.6519,13.1865,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16121,0 +1429,7.6525,13.0618,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2738,0 +1430,7.5468,13.1358,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2644,0 +1431,7.6112,13.2659,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2646,0 +1432,7.6418,13.1867,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16279,0 +1433,7.6240,12.7338,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2192,0 +1434,7.5857,12.7323,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2168,0 +1435,7.5664,12.7055,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2273,0 +1436,7.5409,12.7263,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15459,0 +1437,7.6161,12.6885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2642,0 +1438,7.6556,12.7428,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3718,0 +1439,7.5387,12.7860,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3302,0 +1440,7.5994,12.8072,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14438,0 +1441,7.5757,12.7812,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3887,0 +1442,7.5552,12.7373,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3333,0 +1443,7.5442,12.7257,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2807,0 +1444,7.5456,10.5200,0.0241,0.0000,0,0,0.0000,0,0.0000,0,1,0,235254,0 +1445,7.5454,12.7381,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,34759,0 +1446,7.6003,12.7766,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,35643,0 +1447,7.5382,12.7530,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,25399,0 +1448,7.5895,12.6949,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,33779,0 +1449,7.5913,12.6960,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12666,0 +1450,7.5309,12.6722,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9026,0 +1451,7.5678,12.6274,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6164,0 +1452,7.5757,12.7295,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16803,0 +1453,7.7150,12.7171,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4891,0 +1454,7.5614,12.6586,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4373,0 +1455,7.5369,12.6536,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1788,0 +1456,7.5320,12.6912,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16660,0 +1457,7.5693,12.6470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5164,0 +1458,7.5338,12.6800,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2509,0 +1459,7.5219,16.1877,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2908,0 +1460,7.5958,16.2244,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15842,0 +1461,7.7199,16.2032,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2797,0 +1462,7.6698,16.2592,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2570,0 +1463,7.6332,16.2147,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2227,0 +1464,7.5639,16.2271,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15795,0 +1465,7.7510,16.2280,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +1466,7.6667,16.2290,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +1467,7.6395,14.7781,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +1468,7.8394,15.0427,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15041,0 +1469,7.6271,12.9970,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2174,0 +1470,7.7026,14.5160,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3277,0 +1471,7.6381,14.5248,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3030,0 +1472,7.6834,13.9950,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,50645,0 +1473,7.5915,14.1743,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5939,0 +1474,7.8013,12.7690,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1475,7.6546,13.3358,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +1476,7.6099,12.7060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16175,0 +1477,7.5433,12.6717,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2986,0 +1478,7.5906,12.7182,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3080,0 +1479,7.5347,12.6933,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3536,0 +1480,7.5551,12.7119,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15342,0 +1481,7.5460,12.7033,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +1482,7.6826,14.0246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2283,0 +1483,7.6149,14.6024,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2427,0 +1484,7.6303,14.0803,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14724,0 +1485,7.5310,14.5758,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2931,0 +1486,7.6185,14.5719,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4577,0 +1487,7.6674,14.5808,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2810,0 +1488,7.7070,12.7683,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,17191,0 +1489,7.5554,13.4205,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4886,0 +1490,7.6366,13.0044,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +1491,7.5274,12.6945,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3258,0 +1492,7.6647,12.7018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16885,0 +1493,7.5542,12.6765,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3671,0 +1494,7.6156,12.6858,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3476,0 +1495,7.2499,12.6717,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3663,0 +1496,7.5329,12.7036,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17146,0 +1497,7.5098,12.7003,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2836,0 +1498,7.6594,14.1550,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3027,0 +1499,7.6343,12.6803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3187,0 +1500,7.4982,12.6676,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16219,0 +1501,7.5942,12.6829,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3456,0 +1502,7.5116,12.6392,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5136,0 +1503,7.6142,12.7549,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4514,0 +1504,7.5493,10.4795,0.0244,0.0000,0,0,0.0000,0,0.0000,0,1,0,235908,0 +1505,7.6504,12.7220,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,35863,0 +1506,7.5463,12.6909,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,24858,0 +1507,7.6125,12.6940,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10469,0 +1508,7.4961,12.6733,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22801,0 +1509,7.5837,12.6925,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4978,0 +1510,7.5161,12.7327,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4662,0 +1511,7.5712,12.7111,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2591,0 +1512,7.5423,12.7082,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13871,0 +1513,7.5877,12.6385,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +1514,7.5154,12.6717,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1761,0 +1515,7.5099,12.6643,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1516,7.4945,12.6878,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13384,0 +1517,7.5479,12.7148,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +1518,7.5500,12.7208,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3287,0 +1519,7.5637,14.4144,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2398,0 +1520,7.6242,16.0002,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12184,0 +1521,7.6282,16.2074,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5338,0 +1522,7.6318,16.2480,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1795,0 +1523,7.6043,16.2124,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +1524,7.5839,16.2307,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,15337,0 +1525,7.6262,16.6433,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +1526,7.5715,15.8048,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1779,0 +1527,7.6672,13.3952,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +1528,7.6151,13.5825,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15614,0 +1529,7.5352,13.3601,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +1530,7.5850,14.6941,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1959,0 +1531,7.6203,14.4375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +1532,7.6188,14.3563,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14515,0 +1533,7.6690,14.5519,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +1534,7.9583,13.6834,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2915,0 +1535,7.7018,14.0103,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2466,0 +1536,7.6807,13.6280,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,45189,0 +1537,7.6572,14.4272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3203,0 +1538,7.6529,14.6082,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +1539,7.6355,14.5796,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +1540,7.6457,14.7397,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15614,0 +1541,7.6920,14.5567,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3530,0 +1542,7.9607,14.0044,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2500,0 +1543,7.6374,14.2588,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2418,0 +1544,7.6373,14.5894,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14739,0 +1545,7.6528,14.5317,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +1546,7.6217,14.5779,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2215,0 +1547,7.6603,14.5473,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2274,0 +1548,7.6236,13.8735,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14375,0 +1549,7.6490,14.1767,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2672,0 +1550,7.6552,14.5615,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3547,0 +1551,7.6650,12.9957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2510,0 +1552,7.5240,12.7420,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,16726,0 +1553,7.6379,14.5590,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4694,0 +1554,7.6352,14.5964,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2706,0 +1555,7.6195,14.3489,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2613,0 +1556,7.6230,14.3540,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16364,0 +1557,7.6257,14.4354,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2930,0 +1558,7.6834,14.6439,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2778,0 +1559,7.6047,14.5722,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3108,0 +1560,7.8494,14.3850,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16514,0 +1561,7.6844,13.9175,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2585,0 +1562,7.6007,14.5431,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2580,0 +1563,7.8275,14.5040,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2661,0 +1564,7.6329,11.7099,0.0254,0.0000,0,0,0.0000,0,0.0000,0,1,0,246844,0 +1565,7.6792,13.2620,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,28244,0 +1566,7.6130,13.2659,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,42193,0 +1567,7.6647,14.3351,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21961,0 +1568,7.5962,14.2803,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,29227,0 +1569,7.6184,14.4288,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13351,0 +1570,7.6572,13.5564,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,10039,0 +1571,7.9443,14.4217,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2683,0 +1572,7.7467,14.4631,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,18200,0 +1573,7.7733,14.3610,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1892,0 +1574,7.6219,13.9608,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2301,0 +1575,7.6197,14.5395,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2343,0 +1576,7.6647,14.6070,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14212,0 +1577,7.6622,14.6044,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1889,0 +1578,7.6540,14.6370,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1722,0 +1579,7.6119,12.8560,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1792,0 +1580,7.5697,12.6650,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13831,0 +1581,7.6325,12.7592,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2930,0 +1582,7.8232,14.3367,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4378,0 +1583,7.7384,14.6748,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1881,0 +1584,7.6798,14.5545,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16301,0 +1585,8.0023,14.4477,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5333,0 +1586,7.6638,13.9754,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2119,0 +1587,7.6294,13.1297,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2289,0 +1588,7.6857,13.2630,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15707,0 +1589,7.5872,13.0850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2491,0 +1590,7.6464,13.9183,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2658,0 +1591,7.6342,14.4157,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +1592,7.6521,14.5318,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15630,0 +1593,7.5958,13.6261,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1594,7.9491,13.1124,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1755,0 +1595,7.6146,14.1626,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1850,0 +1596,7.6613,13.7524,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14926,0 +1597,7.7002,14.6162,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2059,0 +1598,7.6770,14.4424,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3474,0 +1599,7.6292,14.5313,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3266,0 +1600,7.6478,13.8969,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13910,0 +1601,7.5979,14.5926,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4067,0 +1602,7.6541,14.4102,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3312,0 +1603,7.6214,14.6535,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2307,0 +1604,7.6644,14.4572,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16254,0 +1605,7.6243,14.6179,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3542,0 +1606,7.6360,14.3996,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1607,7.6406,14.5523,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3327,0 +1608,7.7088,14.5391,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15166,0 +1609,7.6582,14.3599,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2541,0 +1610,7.7799,14.3337,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2469,0 +1611,7.6545,14.5510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2428,0 +1612,7.5795,14.3288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14703,0 +1613,7.5870,13.6506,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2667,0 +1614,7.6012,14.5944,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4550,0 +1615,7.5976,14.4560,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3027,0 +1616,7.6072,14.1952,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17378,0 +1617,7.6042,14.3473,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5300,0 +1618,7.7301,12.6921,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3258,0 +1619,7.5316,14.3424,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3426,0 +1620,7.6278,14.5131,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16907,0 +1621,7.6526,13.8342,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3608,0 +1622,7.6176,13.6152,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3401,0 +1623,7.5847,13.7377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4372,0 +1624,7.6667,11.1342,0.0233,0.0000,0,0,0.0000,0,0.0000,0,1,0,227348,0 +1625,7.6928,13.1375,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,36355,0 +1626,7.6795,13.1306,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21324,0 +1627,7.7231,13.3357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15205,0 +1628,7.6517,13.1025,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22637,0 +1629,7.7190,13.1152,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7613,0 +1630,7.5902,13.1362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9144,0 +1631,7.6210,13.4020,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6602,0 +1632,7.6078,13.6240,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,50350,0 +1633,7.6247,13.1808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6274,0 +1634,7.6317,12.7846,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1635,7.5903,12.8090,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +1636,7.6408,13.1702,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14607,0 +1637,7.5999,13.4039,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3991,0 +1638,7.7322,13.0556,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2604,0 +1639,7.6012,12.9783,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2042,0 +1640,7.6881,12.7626,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14756,0 +1641,7.6059,12.7570,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +1642,7.7024,12.9029,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +1643,7.6768,13.2611,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +1644,7.6768,13.4659,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14705,0 +1645,7.6725,13.3791,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +1646,7.6747,13.5451,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4990,0 +1647,7.6930,13.5723,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +1648,7.6576,13.1227,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16801,0 +1649,7.6323,13.1870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4929,0 +1650,7.5304,13.2732,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +1651,7.6805,13.3296,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1992,0 +1652,7.6510,13.1632,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,16123,0 +1653,7.6539,13.0925,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2192,0 +1654,7.6049,13.0973,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2130,0 +1655,7.6705,13.3440,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +1656,7.6108,13.8276,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,16472,0 +1657,7.6734,13.6671,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1856,0 +1658,7.6528,13.6660,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2305,0 +1659,7.6536,13.2021,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2017,0 +1660,7.6100,13.2758,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15514,0 +1661,7.6495,13.2671,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2326,0 +1662,7.4911,12.7732,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4059,0 +1663,7.6065,13.3265,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3637,0 +1664,7.6650,13.3070,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,14503,0 +1665,7.6625,13.2670,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5007,0 +1666,7.6506,13.3820,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3997,0 +1667,7.6291,13.4443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2605,0 +1668,7.6609,13.5476,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16290,0 +1669,7.6310,13.9918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3807,0 +1670,7.7830,14.0875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3875,0 +1671,7.6461,13.1731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4466,0 +1672,7.6674,13.7797,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15749,0 +1673,7.6185,13.1422,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2870,0 +1674,7.6757,13.7080,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2881,0 +1675,7.6970,13.0025,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3226,0 +1676,7.6627,13.1860,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15434,0 +1677,7.6441,13.0476,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3858,0 +1678,7.6346,13.0676,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6117,0 +1679,7.6887,13.1522,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4094,0 +1680,7.6407,13.1833,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,18909,0 +1681,7.6578,13.9370,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6729,0 +1682,7.7180,13.5898,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4222,0 +1683,7.6317,12.7772,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4314,0 +1684,7.5346,10.5191,0.0346,0.0000,0,0,0.0000,0,0.0000,0,1,0,274246,0 +1685,7.6243,13.5335,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,51555,0 +1686,7.6350,13.5700,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,45922,0 +1687,7.6271,13.8646,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,23025,0 +1688,7.6200,14.6628,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,32131,0 +1689,7.7141,14.3184,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12274,0 +1690,7.6728,14.3772,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8365,0 +1691,7.6738,14.6315,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6651,0 +1692,7.6845,14.6692,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,18302,0 +1693,7.6583,14.5182,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2956,0 +1694,7.7880,14.5794,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4793,0 +1695,7.6278,13.1548,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4240,0 +1696,7.5784,14.4143,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14474,0 +1697,7.6121,14.5717,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4287,0 +1698,7.6597,14.6301,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2824,0 +1699,7.6321,14.5037,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1569,0 +1700,7.5559,12.7074,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15303,0 +1701,7.5931,12.7393,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2237,0 +1702,7.7995,14.6552,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2239,0 +1703,7.7334,14.2400,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +1704,7.6158,14.3857,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14671,0 +1705,7.6140,14.1496,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1669,0 +1706,7.5825,13.1024,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1845,0 +1707,6.7267,12.7582,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1998,0 +1708,6.6690,12.9686,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14401,0 +1709,6.6923,14.5174,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2574,0 +1710,7.4858,14.5472,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3034,0 +1711,7.7062,14.3726,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2149,0 +1712,7.6007,14.2777,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16562,0 +1713,7.6270,14.5617,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4895,0 +1714,7.6863,14.5058,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2464,0 +1715,7.7055,14.1740,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2429,0 +1716,7.6367,13.8745,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16083,0 +1717,7.7197,14.3689,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2578,0 +1718,7.7017,14.5001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2363,0 +1719,7.7002,14.5572,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2574,0 +1720,7.5715,13.3087,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16107,0 +1721,7.5251,12.7025,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2169,0 +1722,7.5424,14.6482,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2263,0 +1723,7.6420,14.5164,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2563,0 +1724,7.6324,14.2183,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15508,0 +1725,7.7103,14.6759,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2986,0 +1726,7.6573,14.3995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3583,0 +1727,7.6371,13.9017,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3511,0 +1728,7.6189,14.1898,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,51187,0 +1729,7.5716,14.2883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6347,0 +1730,7.7357,12.7863,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3322,0 +1731,7.5405,14.4160,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2672,0 +1732,7.7183,14.3978,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16682,0 +1733,7.6435,14.4846,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3603,0 +1734,7.6512,14.5064,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3406,0 +1735,7.5953,14.2791,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3583,0 +1736,7.6022,14.3415,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15874,0 +1737,7.5874,14.5655,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2517,0 +1738,7.7536,14.3439,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2568,0 +1739,7.6392,14.5640,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2658,0 +1740,7.7226,14.4875,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15255,0 +1741,7.6087,14.5587,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3075,0 +1742,7.7797,14.5336,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4599,0 +1743,7.7270,14.5329,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3443,0 +1744,7.7343,11.5878,0.0414,0.0000,0,0,0.0000,0,0.0000,0,1,0,208120,0 +1745,7.6785,13.6952,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,41943,0 +1746,7.7910,13.4031,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,27981,0 +1747,7.5727,14.4766,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16564,0 +1748,7.6492,14.1725,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,26593,0 +1749,7.6339,14.5061,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7251,0 +1750,7.7460,14.4960,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4820,0 +1751,7.6785,14.5769,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2590,0 +1752,7.6919,14.6747,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14559,0 +1753,7.6903,14.5413,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +1754,7.7996,14.1944,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1569,0 +1755,7.5945,14.3487,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +1756,7.6715,13.8049,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,14063,0 +1757,7.5812,14.5816,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +1758,7.6518,14.5364,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3000,0 +1759,7.6134,14.3484,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2521,0 +1760,7.7668,12.7163,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +1761,7.6157,12.7541,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2938,0 +1762,7.7046,14.1956,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2073,0 +1763,7.6387,14.0720,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1606,0 +1764,7.6085,14.0917,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13312,0 +1765,7.6173,13.9618,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3920,0 +1766,7.6299,13.7041,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1539,0 +1767,7.6858,13.4032,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +1768,7.6189,13.6609,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13327,0 +1769,7.6315,14.6233,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1482,0 +1770,7.6575,14.4791,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3914,0 +1771,7.6723,14.1054,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +1772,7.5240,14.3430,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13148,0 +1773,7.8059,13.6568,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1607,0 +1774,7.5999,13.0580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +1775,7.6174,13.2997,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +1776,7.5812,13.1352,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15342,0 +1777,7.6412,14.3757,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4865,0 +1778,7.5989,14.5308,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +1779,7.5853,14.3879,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +1780,7.6321,14.5901,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15043,0 +1781,7.6551,14.5930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +1782,7.6405,14.6026,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +1783,7.5977,14.0751,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2165,0 +1784,7.6672,14.4816,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14862,0 +1785,7.6923,14.5509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1485,0 +1786,7.6086,14.5410,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1552,0 +1787,7.6142,14.4196,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1545,0 +1788,7.6314,14.5874,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,14326,0 +1789,7.6590,14.3955,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1613,0 +1790,7.6818,14.5948,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2149,0 +1791,7.5990,14.4342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2065,0 +1792,7.6265,13.9587,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,44546,0 +1793,7.6820,14.0693,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3018,0 +1794,7.6045,14.3976,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2305,0 +1795,7.6664,14.4901,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +1796,7.6273,14.2047,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15668,0 +1797,7.6616,14.6248,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5062,0 +1798,7.6698,14.4755,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3248,0 +1799,7.7073,14.6528,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2260,0 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.txt new file mode 100644 index 0000000..2921efd --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=45 +data_rate_limit_mbps=45 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=8.269 +avg_encode_latency_ms=18.727 +p95_encode_latency_ms=54.584 +max_encode_latency_ms=233.527 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=21461969 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.csv diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.csv new file mode 100644 index 0000000..35b0090 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.csv @@ -0,0 +1,7201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1946,18.4410,0.0207,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.1340,16.0155,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,3.0552,16.9397,0.0178,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.9733,16.5584,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.1946,6.0195,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +5,3.1340,11.3644,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +6,3.0552,16.8487,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +7,2.9733,22.3318,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +8,5.1946,5.9698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +9,3.1340,11.3653,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +10,3.0552,16.7997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +11,2.9733,22.3307,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +12,5.1946,6.0349,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +13,3.1340,11.4289,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +14,3.0552,16.8117,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +15,2.9733,22.3189,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +16,5.1946,6.0989,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +17,3.1340,11.4066,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +18,3.0552,16.8937,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +19,2.9733,22.3766,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +20,5.1946,6.2296,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +21,3.1340,11.4812,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +22,3.0552,16.8027,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +23,2.9733,22.3200,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +24,5.1946,6.1625,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +25,3.1340,11.3744,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +26,3.0552,16.7494,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +27,2.9733,22.2176,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +28,5.1946,6.1526,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +29,3.1340,11.3991,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +30,3.0552,16.8637,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +31,2.9733,22.3840,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +32,5.1946,6.1099,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +33,3.1340,11.3975,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +34,3.0552,16.7533,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +35,2.9733,22.1981,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +36,5.1946,6.1733,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +37,3.1340,11.4891,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +38,3.0552,16.8607,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +39,2.9733,22.3553,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +40,5.1946,6.4418,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +41,3.1340,11.5597,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +42,3.0552,16.8472,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +43,2.9733,22.3568,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +44,5.1946,6.3637,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +45,3.1340,11.5369,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +46,3.0552,16.8320,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +47,2.9733,22.1247,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +48,5.1946,6.5312,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +49,3.1340,11.4493,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +50,3.0552,16.6702,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +51,2.9733,22.0851,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +52,5.1946,6.1885,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +53,3.1340,11.3328,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +54,3.0552,16.6614,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +55,2.9733,21.9771,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +56,5.1946,6.1515,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +57,3.1340,11.3954,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.0552,16.7902,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +59,2.9733,22.2620,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +60,5.1946,6.0127,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +61,3.1340,11.3486,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +62,3.0552,16.7649,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +63,2.9733,22.2188,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +64,5.1946,6.0068,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +65,3.1340,11.3546,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +66,3.0552,16.7760,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +67,2.9733,22.2710,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +68,5.1946,5.9844,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +69,3.1340,11.3527,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +70,3.0552,16.7752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +71,2.9733,22.3272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +72,5.1946,5.9794,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +73,3.1340,11.3539,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +74,3.0552,16.7777,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +75,2.9733,22.3303,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +76,5.1946,5.9845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +77,3.1340,11.3267,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +78,3.0552,16.7760,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +79,2.9733,22.2810,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +80,5.1946,5.9873,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +81,3.1340,11.3386,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +82,3.0552,16.8488,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +83,2.9733,22.3557,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +84,5.1946,6.0724,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +85,3.1340,11.5173,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +86,3.0552,16.7893,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +87,2.9733,22.3448,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +88,5.1946,6.1056,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +89,3.1340,11.3375,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +90,3.0552,16.7844,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +91,2.9733,22.4058,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +92,5.1946,5.9775,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +93,3.1340,11.4433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +94,3.0552,16.9623,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +95,2.9733,22.4532,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +96,5.1946,6.0419,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +97,3.1340,11.4117,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +98,3.0552,16.8381,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +99,2.9733,22.3927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +100,5.1946,6.0946,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.1340,11.4095,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +102,3.0552,16.8960,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +103,2.9733,22.4142,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +104,5.1946,6.0600,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +105,3.1340,11.4260,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +106,3.0552,16.8390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +107,2.9733,22.3305,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +108,5.1946,6.0698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +109,3.1340,11.3548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +110,3.0552,16.8435,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +111,2.9733,22.3439,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +112,5.1946,6.2357,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +113,3.1340,11.4164,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +114,3.0552,16.7070,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +115,2.9733,22.1022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +116,5.1946,6.1928,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +117,3.1340,11.5668,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +118,3.0552,16.9745,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +119,2.9733,22.3651,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +120,5.1946,6.4772,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +121,3.1340,11.5755,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +122,3.0552,16.8292,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +123,2.9733,22.3992,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +124,5.1946,6.4194,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +125,3.1340,11.3695,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +126,3.0552,16.7791,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +127,2.9733,22.0674,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +128,5.1946,6.2353,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +129,3.1340,11.5050,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +130,3.0552,16.7413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +131,2.9733,22.3769,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +132,5.1946,6.3667,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +133,3.1340,11.3150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +134,3.0552,16.7490,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +135,2.9733,22.1670,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +136,5.1946,6.3535,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +137,3.1340,10.6186,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +138,3.0552,15.3861,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +139,2.9733,20.7595,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +140,5.1946,6.5810,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +141,3.1340,11.7876,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +142,3.0552,17.0158,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +143,2.9733,22.4228,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +144,5.1946,6.5444,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +145,3.1340,11.4782,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +146,3.0552,16.8890,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +147,2.9733,22.2731,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +148,5.1946,6.4045,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +149,3.1340,11.4367,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +150,3.0552,16.5731,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +151,2.9733,21.8217,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +152,5.1946,6.3794,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +153,3.1340,11.4245,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +154,3.0552,16.7697,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +155,2.9733,22.1590,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +156,5.1946,6.4719,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +157,3.1340,11.4526,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +158,3.0552,16.7537,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +159,2.9733,21.8220,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +160,5.1946,6.4162,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +161,3.1340,11.5546,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +162,3.0552,16.8730,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +163,2.9733,22.3199,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +164,5.1946,6.4978,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +165,3.1340,11.4844,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +166,3.0552,16.8621,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +167,2.9733,22.1492,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +168,5.1946,6.3756,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +169,3.1340,11.5087,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +170,3.0552,16.8454,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +171,2.9733,22.2330,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +172,5.1946,6.4114,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +173,3.1340,11.4695,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +174,3.0552,16.7596,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +175,2.9733,22.0523,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +176,5.1946,6.4154,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +177,3.1340,11.5414,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +178,3.0552,17.5369,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +179,2.9733,21.5149,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +180,5.1946,6.4455,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +181,3.1340,11.6084,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +182,3.0552,16.9835,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +183,2.9733,22.4097,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +184,5.1946,6.4851,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +185,3.1340,11.3260,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +186,3.0552,16.4353,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +187,2.9733,21.8923,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +188,5.1946,6.2939,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +189,3.1340,11.4655,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +190,3.0552,16.8012,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +191,2.9733,22.1765,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +192,5.1946,6.5663,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +193,3.1340,11.5906,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +194,3.0552,16.9031,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +195,2.9733,22.3024,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +196,5.1946,6.5131,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +197,3.1340,11.4680,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +198,3.0552,16.2208,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +199,2.9733,21.2280,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +200,5.1946,6.2850,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +201,3.1340,11.5152,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +202,3.0552,16.8048,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +203,2.9733,22.3223,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +204,5.1946,6.3653,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +205,3.1340,11.4471,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +206,3.0552,16.8193,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +207,2.9733,22.2093,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +208,5.1946,6.3783,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +209,3.1340,11.5570,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +210,3.0552,16.8605,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +211,2.9733,22.2649,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +212,5.1946,6.4368,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +213,3.1340,11.5693,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +214,3.0552,16.8835,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +215,2.9733,22.4177,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +216,5.1946,6.5295,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +217,3.1340,11.5932,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +218,3.0552,16.9092,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +219,2.9733,22.0132,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +220,5.1946,6.4790,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +221,3.1340,11.4606,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +222,3.0552,16.6259,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +223,2.9733,22.0821,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +224,5.1946,6.4387,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +225,3.1340,11.4493,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +226,3.0552,16.7992,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +227,2.9733,22.0598,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +228,5.1946,6.4168,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +229,3.1340,11.5772,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +230,3.0552,16.9013,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +231,2.9733,22.3778,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +232,5.1946,7.0426,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +233,3.1340,11.5953,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +234,3.0552,16.8810,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +235,2.9733,22.5046,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +236,5.1946,6.5168,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +237,3.1340,11.5079,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +238,3.0552,16.6495,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +239,2.9733,21.8055,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +240,5.1946,5.7354,0.1221,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +241,3.1340,9.8707,0.0511,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +242,3.0552,14.4377,0.0920,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +243,2.9733,18.8382,0.0333,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +244,5.1946,6.5072,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +245,3.1340,11.5140,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +246,3.0552,16.8431,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +247,2.9733,22.2911,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +248,5.1946,6.4501,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +249,3.1340,11.4802,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +250,3.0552,16.6288,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +251,2.9733,21.8628,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +252,5.1946,6.4565,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +253,3.1340,11.4731,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +254,3.0552,16.7591,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +255,2.9733,22.1928,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +256,5.1946,6.3625,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +257,3.1340,11.4917,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +258,3.0552,16.8164,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +259,2.9733,22.2568,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +260,5.1946,6.4732,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +261,3.1340,11.5613,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +262,3.0552,16.8751,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +263,2.9733,22.2760,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +264,5.1946,6.3834,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +265,3.1340,11.4420,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +266,3.0552,16.8561,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +267,2.9733,22.1896,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +268,5.1946,6.4350,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +269,3.1340,11.4970,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +270,3.0552,16.8126,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +271,2.9733,22.0925,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +272,5.1946,6.4586,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +273,3.1340,11.5867,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +274,3.0552,16.8416,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +275,2.9733,22.3053,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +276,5.1946,6.4117,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +277,3.1340,11.4260,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,3.0552,16.7328,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +279,2.9733,22.0983,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +280,5.1946,6.4288,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +281,3.1340,11.5058,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +282,3.0552,16.9362,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +283,2.9733,22.4027,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +284,5.1946,7.5823,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +285,3.1340,12.4725,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +286,3.0552,16.7834,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +287,2.9733,21.9974,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +288,5.1946,6.6081,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +289,3.1340,11.5834,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +290,3.0552,16.8261,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +291,2.9733,22.4181,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +292,5.1946,6.3609,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +293,3.1340,9.9930,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +294,3.0552,15.0648,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +295,2.9733,20.4280,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +296,5.1946,6.3937,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +297,3.1340,11.4739,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +298,3.0552,16.6437,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +299,2.9733,21.5683,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +300,5.1946,6.3830,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +301,3.1340,12.1736,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +302,3.0552,16.9038,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +303,2.9733,22.2028,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +304,5.1946,6.1182,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +305,3.1340,11.4045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +306,3.0552,13.2194,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +307,2.9733,18.4960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +308,5.1946,6.1200,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +309,3.1340,11.5361,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +310,3.0552,16.9095,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +311,2.9733,22.3506,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +312,5.1946,6.0436,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +313,3.1340,11.3707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +314,3.0552,16.7992,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +315,2.9733,22.3239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +316,5.1946,6.0726,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +317,3.1340,11.4170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +318,3.0552,16.7961,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +319,2.9733,22.2297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +320,5.1946,6.0805,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +321,3.1340,11.4222,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +322,3.0552,16.7765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +323,2.9733,22.2848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +324,5.1946,6.0723,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +325,3.1340,11.3962,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +326,3.0552,16.8490,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +327,2.9733,22.4078,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +328,5.1946,6.2334,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +329,3.1340,11.4345,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +330,3.0552,16.7703,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +331,2.9733,22.3637,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +332,5.1946,6.4124,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +333,3.1340,11.5939,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +334,3.0552,17.0758,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +335,2.9733,22.5250,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +336,5.1946,6.4294,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +337,3.1340,11.4457,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +338,3.0552,16.7171,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +339,2.9733,21.9900,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +340,5.1946,6.4892,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +341,3.1340,11.5761,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +342,3.0552,16.9175,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +343,2.9733,22.2359,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +344,5.1946,6.5027,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +345,3.1340,11.5387,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +346,3.0552,16.7400,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +347,2.9733,22.1840,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +348,5.1946,6.6474,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +349,3.1340,11.3758,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +350,3.0552,16.3770,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +351,2.9733,21.4466,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +352,5.1946,6.6592,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +353,3.1340,11.5760,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +354,3.0552,16.7749,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +355,2.9733,22.0620,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +356,5.1946,6.3631,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +357,3.1340,11.5100,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +358,3.0552,16.9086,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +359,2.9733,22.3392,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +360,5.1946,6.4866,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +361,3.1340,11.6044,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +362,3.0552,16.7648,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +363,2.9733,22.0092,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +364,5.1946,6.7901,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +365,3.1340,11.5998,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +366,3.0552,16.6194,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +367,2.9733,21.8813,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +368,5.1946,6.5566,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +369,3.1340,11.4714,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +370,3.0552,16.7595,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +371,2.9733,22.0103,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +372,5.1946,6.4610,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +373,3.1340,11.4569,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +374,3.0552,16.6629,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.9733,22.2249,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +376,5.1946,6.4547,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +377,3.1340,11.4476,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +378,3.0552,16.9319,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +379,2.9733,22.4901,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +380,5.1946,6.7064,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +381,3.1340,11.6336,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +382,3.0552,17.0550,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +383,2.9733,22.3374,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +384,5.1946,6.6219,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +385,3.1340,11.5276,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +386,3.0552,16.7252,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +387,2.9733,22.1023,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +388,5.1946,6.4433,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +389,3.1340,11.5209,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +390,3.0552,16.9067,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +391,2.9733,22.1569,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +392,5.1946,6.7054,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +393,3.1340,11.5273,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +394,3.0552,16.8623,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +395,2.9733,22.0542,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +396,5.1946,6.3374,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +397,3.1340,11.4129,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +398,3.0552,16.6215,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +399,2.9733,21.9550,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +400,5.1946,6.2757,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +401,3.1340,11.4690,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +402,3.0552,16.8914,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +403,2.9733,22.3726,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +404,5.1946,6.0836,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +405,3.1340,11.3927,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +406,3.0552,16.8719,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +407,2.9733,22.2808,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +408,5.1946,6.2000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +409,3.1340,11.4680,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +410,3.0552,16.7771,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +411,2.9733,22.2302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +412,5.1946,6.3880,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +413,3.1340,11.4425,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +414,3.0552,16.8255,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +415,2.9733,22.2600,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +416,5.1946,6.3778,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +417,3.1340,11.4271,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +418,3.0552,16.8040,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +419,2.9733,22.2348,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +420,5.1946,6.5274,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +421,3.1340,11.5335,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +422,3.0552,16.8370,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +423,2.9733,22.2535,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +424,5.1946,6.5806,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +425,3.1340,11.4000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +426,3.0552,16.7027,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +427,2.9733,22.0534,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +428,5.1946,6.4890,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +429,3.1340,11.5803,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +430,3.0552,16.8367,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +431,2.9733,22.1082,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +432,5.1946,6.6065,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +433,3.1340,11.5063,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +434,3.0552,16.5371,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +435,2.9733,21.8768,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +436,5.1946,6.4355,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +437,3.1340,11.4568,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +438,3.0552,16.7850,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +439,2.9733,22.1086,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +440,5.1946,6.4091,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +441,3.1340,11.5120,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +442,3.0552,16.8741,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +443,2.9733,22.2402,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +444,5.1946,6.4414,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +445,3.1340,11.6999,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +446,3.0552,16.8903,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +447,2.9733,22.2588,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +448,5.1946,6.5358,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +449,3.1340,11.5136,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +450,3.0552,16.7203,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +451,2.9733,22.0183,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +452,5.1946,6.5955,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +453,3.1340,11.5400,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +454,3.0552,16.6909,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +455,2.9733,22.1000,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +456,5.1946,6.4563,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +457,3.1340,11.4684,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +458,3.0552,16.8133,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +459,2.9733,22.1368,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +460,5.1946,6.4307,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +461,3.1340,11.6181,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +462,3.0552,16.8693,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +463,2.9733,22.2305,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +464,5.1946,6.4563,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +465,3.1340,11.4571,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +466,3.0552,16.7863,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +467,2.9733,22.0527,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +468,5.1946,6.4443,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +469,3.1340,11.5015,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +470,3.0552,16.6301,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +471,2.9733,21.9779,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +472,5.1946,6.5336,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +473,3.1340,11.5783,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +474,3.0552,16.7439,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +475,2.9733,22.1444,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +476,5.1946,6.5095,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +477,3.1340,11.5766,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +478,3.0552,16.8761,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +479,2.9733,22.2823,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +480,5.1946,5.7134,0.0781,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +481,3.1340,9.9331,0.0643,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +482,3.0552,14.1895,0.0508,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +483,2.9733,18.5946,0.0159,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +484,5.1946,6.5245,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +485,3.1340,11.5865,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +486,3.0552,16.7460,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +487,2.9733,22.2642,0.0290,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +488,5.1946,6.5274,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +489,3.1340,11.5488,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +490,3.0552,16.8225,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +491,2.9733,22.2464,0.0345,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +492,5.1946,6.4468,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +493,3.1340,11.4972,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +494,3.0552,16.8063,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +495,2.9733,22.1295,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +496,5.1946,6.4747,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +497,3.1340,11.4518,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +498,3.0552,16.6750,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +499,2.9733,21.9414,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +500,5.1946,6.4384,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +501,3.1340,11.5063,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +502,3.0552,16.8116,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +503,2.9733,22.0989,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +504,5.1946,6.2253,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +505,3.1340,11.4557,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +506,3.0552,16.7883,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +507,2.9733,22.3480,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +508,5.1946,6.4662,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +509,3.1340,11.5946,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +510,3.0552,16.9820,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +511,2.9733,22.5764,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +512,5.1946,6.6695,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +513,3.1340,11.5400,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +514,3.0552,16.7470,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +515,2.9733,22.0865,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +516,5.1946,6.6363,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +517,3.1340,11.4407,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +518,3.0552,16.8773,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +519,2.9733,22.1954,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +520,5.1946,6.4262,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +521,3.1340,11.4838,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +522,3.0552,16.8628,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +523,2.9733,22.2321,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +524,5.1946,6.6485,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +525,3.1340,11.4319,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +526,3.0552,16.5641,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +527,2.9733,21.7481,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +528,5.1946,6.3735,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +529,3.1340,11.4796,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +530,3.0552,16.7787,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +531,2.9733,22.2238,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +532,5.1946,6.5773,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +533,3.1340,11.5652,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +534,3.0552,16.7926,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.9733,22.0053,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +536,5.1946,6.5557,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +537,3.1340,11.3638,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +538,3.0552,16.6993,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +539,2.9733,22.0686,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +540,5.1946,6.4757,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +541,3.1340,11.5431,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +542,3.0552,16.7805,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +543,2.9733,22.0573,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +544,5.1946,6.5700,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +545,3.1340,11.5363,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +546,3.0552,16.8720,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +547,2.9733,22.2748,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +548,5.1946,6.5523,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +549,3.1340,11.5010,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +550,3.0552,16.7277,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +551,2.9733,21.8605,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +552,5.1946,6.5418,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +553,3.1340,11.5115,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +554,3.0552,16.6304,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +555,2.9733,22.1152,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +556,5.1946,6.5175,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +557,3.1340,11.4998,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +558,3.0552,17.0070,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +559,2.9733,22.3455,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +560,5.1946,6.5114,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +561,3.1340,11.6062,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +562,3.0552,16.7841,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +563,2.9733,22.1564,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +564,5.1946,6.7575,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +565,3.1340,11.4800,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +566,3.0552,16.7124,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +567,2.9733,22.3008,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +568,5.1946,6.6360,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +569,3.1340,11.6807,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +570,3.0552,17.0582,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +571,2.9733,22.1433,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +572,5.1946,6.5209,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +573,3.1340,11.5102,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +574,3.0552,16.7153,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +575,2.9733,22.1270,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +576,5.1946,6.4929,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +577,3.1340,11.5648,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +578,3.0552,16.7770,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +579,2.9733,22.1872,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +580,5.1946,6.5332,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +581,3.1340,11.5453,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +582,3.0552,16.8154,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +583,2.9733,22.1372,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +584,5.1946,6.5980,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +585,3.1340,11.6251,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +586,3.0552,16.9446,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +587,2.9733,22.4278,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +588,5.1946,6.5347,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +589,3.1340,11.4965,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +590,3.0552,16.7524,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +591,2.9733,21.9054,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +592,5.1946,6.7154,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +593,3.1340,11.5995,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +594,3.0552,16.7297,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +595,2.9733,22.2238,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +596,5.1946,6.6803,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +597,3.1340,11.5157,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +598,3.0552,16.6565,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +599,2.9733,21.9102,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +600,5.1946,6.7134,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +601,3.1340,11.7344,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +602,3.0552,16.9857,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +603,2.9733,22.3427,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +604,5.1946,6.7125,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +605,3.1340,11.4229,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +606,3.0552,16.8128,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +607,2.9733,22.1423,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +608,5.1946,6.3883,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +609,3.1340,11.5262,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +610,3.0552,16.7660,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +611,2.9733,22.2395,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +612,5.1946,6.5458,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +613,3.1340,11.5472,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +614,3.0552,16.6885,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +615,2.9733,22.1230,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +616,5.1946,6.6088,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +617,3.1340,11.5243,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +618,3.0552,16.9286,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +619,2.9733,22.1009,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +620,5.1946,6.5511,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +621,3.1340,11.5131,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +622,3.0552,16.6046,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +623,2.9733,22.0662,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +624,5.1946,6.4213,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +625,3.1340,11.4295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +626,3.0552,16.7811,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +627,2.9733,22.2222,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +628,5.1946,6.7466,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +629,3.1340,11.5460,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +630,3.0552,16.7093,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +631,2.9733,21.9874,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +632,5.1946,6.5123,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +633,3.1340,11.6633,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +634,3.0552,16.8596,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +635,2.9733,22.2057,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +636,5.1946,6.5318,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +637,3.1340,11.4759,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +638,3.0552,16.6898,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.9733,21.9876,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +640,5.1946,6.7110,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +641,3.1340,11.4827,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +642,3.0552,16.6022,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +643,2.9733,21.9730,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +644,5.1946,6.4700,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +645,3.1340,11.5303,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +646,3.0552,16.7789,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +647,2.9733,22.1480,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +648,5.1946,6.4867,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +649,3.1340,11.5705,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +650,3.0552,16.8170,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +651,2.9733,22.2225,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +652,5.1946,6.5516,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +653,3.1340,11.5900,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +654,3.0552,16.8735,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +655,2.9733,22.1889,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +656,5.1946,6.3929,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +657,3.1340,11.5135,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +658,3.0552,16.8401,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +659,2.9733,22.1329,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +660,5.1946,6.5195,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +661,3.1340,11.6080,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +662,3.0552,16.8707,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +663,2.9733,22.4334,0.0216,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +664,5.1946,6.7287,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +665,3.1340,11.5298,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +666,3.0552,16.7293,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +667,2.9733,22.0282,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +668,5.1946,6.5982,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +669,3.1340,11.6886,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +670,3.0552,16.9089,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +671,2.9733,22.2826,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +672,5.1946,6.5951,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +673,3.1340,11.4570,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +674,3.0552,16.8196,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +675,2.9733,22.3080,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +676,5.1946,6.4866,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +677,3.1340,11.5887,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +678,3.0552,16.8332,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +679,2.9733,22.2026,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +680,5.1946,6.6604,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +681,3.1340,11.6237,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +682,3.0552,16.7618,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +683,2.9733,22.1547,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +684,5.1946,6.5831,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +685,3.1340,11.5074,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +686,3.0552,16.7440,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +687,2.9733,21.9523,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +688,5.1946,6.7095,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +689,3.1340,11.5820,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +690,3.0552,16.7694,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +691,2.9733,22.1459,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +692,5.1946,6.6652,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +693,3.1340,11.5583,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +694,3.0552,16.8451,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +695,2.9733,22.1475,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +696,5.1946,6.4986,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +697,3.1340,11.4305,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +698,3.0552,16.7461,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +699,2.9733,22.1369,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +700,5.1946,6.4083,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,3.1340,11.4625,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +702,3.0552,16.7495,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +703,2.9733,22.2578,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +704,5.1946,6.7856,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +705,3.1340,11.6265,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +706,3.0552,16.6971,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +707,2.9733,21.9162,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +708,5.1946,6.7508,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +709,3.1340,11.6552,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +710,3.0552,16.8178,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +711,2.9733,22.1915,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +712,5.1946,6.4374,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +713,3.1340,11.4346,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +714,3.0552,16.8077,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +715,2.9733,22.2506,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +716,5.1946,6.4941,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +717,3.1340,11.6984,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +718,3.0552,17.0242,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +719,2.9733,22.4358,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,5.1946,18.5718,0.0319,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,3.1340,16.8292,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,3.0552,16.3435,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.9733,16.8730,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.1946,6.0166,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +725,3.1340,11.4252,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +726,3.0552,16.8569,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +727,2.9733,22.3548,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +728,5.1946,6.0300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +729,3.1340,11.4083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +730,3.0552,16.8693,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +731,2.9733,22.3679,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +732,5.1946,6.0550,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +733,3.1340,11.4040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +734,3.0552,16.8636,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +735,2.9733,22.3443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +736,5.1946,6.0250,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +737,3.1340,11.3893,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +738,3.0552,16.8528,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +739,2.9733,22.3191,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +740,5.1946,6.1238,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +741,3.1340,11.4665,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +742,3.0552,16.8050,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +743,2.9733,22.3378,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +744,5.1946,6.1257,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +745,3.1340,11.3991,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +746,3.0552,16.8453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +747,2.9733,22.3878,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +748,5.1946,6.1220,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +749,3.1340,11.4375,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +750,3.0552,16.8808,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +751,2.9733,22.2867,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +752,5.1946,6.1721,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +753,3.1340,11.5093,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +754,3.0552,16.7702,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +755,2.9733,22.1925,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +756,5.1946,6.1781,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +757,3.1340,11.4446,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +758,3.0552,16.7152,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +759,2.9733,22.1603,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +760,5.1946,6.4029,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +761,3.1340,11.4311,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +762,3.0552,16.7390,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +763,2.9733,22.1581,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +764,5.1946,6.5021,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +765,3.1340,11.6509,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +766,3.0552,16.9925,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +767,2.9733,22.4352,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +768,5.1946,6.5594,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +769,3.1340,11.5648,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +770,3.0552,16.9154,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +771,2.9733,22.0920,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +772,5.1946,6.3143,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +773,3.1340,11.4773,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +774,3.0552,16.8243,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +775,2.9733,22.2008,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +776,5.1946,6.4824,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +777,3.1340,11.3731,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +778,3.0552,16.6025,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +779,2.9733,21.9538,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +780,5.1946,6.3695,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +781,3.1340,11.5260,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +782,3.0552,16.8986,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +783,2.9733,22.3300,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +784,5.1946,6.4570,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +785,3.1340,11.7003,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +786,3.0552,17.0025,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +787,2.9733,22.5280,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +788,5.1946,6.6733,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +789,3.1340,11.4224,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +790,3.0552,16.4264,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +791,2.9733,21.6347,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +792,5.1946,6.3062,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +793,3.1340,11.4223,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +794,3.0552,16.7060,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +795,2.9733,22.1000,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +796,5.1946,6.4960,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +797,3.1340,11.5433,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +798,3.0552,16.8698,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +799,2.9733,22.3888,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +800,5.1946,6.4015,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +801,3.1340,11.4593,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +802,3.0552,16.7140,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +803,2.9733,22.1660,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +804,5.1946,6.5936,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +805,3.1340,11.6187,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +806,3.0552,16.9440,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +807,2.9733,22.5073,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +808,5.1946,6.3910,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +809,3.1340,11.4518,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +810,3.0552,16.9506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +811,2.9733,22.2545,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +812,5.1946,6.5261,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +813,3.1340,11.5481,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +814,3.0552,16.8430,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +815,2.9733,22.2200,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +816,5.1946,6.4575,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +817,3.1340,11.5087,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +818,3.0552,16.8101,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +819,2.9733,22.2437,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +820,5.1946,6.5453,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,3.1340,11.6103,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +822,3.0552,17.4410,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +823,2.9733,21.4644,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +824,5.1946,6.5560,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +825,3.1340,11.6368,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +826,3.0552,16.9801,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +827,2.9733,22.4097,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +828,5.1946,6.5290,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +829,3.1340,11.5465,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +830,3.0552,16.8562,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +831,2.9733,22.1612,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +832,5.1946,6.4171,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +833,3.1340,11.4841,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +834,3.0552,16.7066,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +835,2.9733,22.1416,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +836,5.1946,6.3795,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +837,3.1340,11.5686,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +838,3.0552,16.8289,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +839,2.9733,22.3039,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +840,5.1946,6.4184,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +841,3.1340,11.4966,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +842,3.0552,16.1812,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +843,2.9733,21.0764,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +844,5.1946,6.4542,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +845,3.1340,11.5074,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +846,3.0552,16.7679,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +847,2.9733,22.1785,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +848,5.1946,6.3910,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +849,3.1340,11.5781,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +850,3.0552,17.0672,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +851,2.9733,22.4369,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +852,5.1946,6.6940,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +853,3.1340,11.6476,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +854,3.0552,16.7349,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +855,2.9733,22.1204,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +856,5.1946,6.6568,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +857,3.1340,11.4867,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +858,3.0552,16.7285,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +859,2.9733,21.9845,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +860,5.1946,7.6625,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +861,3.1340,11.3239,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +862,3.0552,16.4492,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +863,2.9733,21.7293,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +864,5.1946,6.4148,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +865,3.1340,11.5180,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +866,3.0552,16.7835,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +867,2.9733,22.2928,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +868,5.1946,6.4410,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +869,3.1340,11.4672,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +870,3.0552,16.6988,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +871,2.9733,22.0783,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +872,5.1946,6.3907,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +873,3.1340,11.6173,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +874,3.0552,17.0129,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +875,2.9733,22.3996,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +876,5.1946,6.5820,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +877,3.1340,11.5788,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +878,3.0552,16.8751,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +879,2.9733,22.4972,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +880,5.1946,6.4151,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +881,3.1340,11.3579,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +882,3.0552,16.6084,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +883,2.9733,21.8870,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +884,5.1946,6.4943,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +885,3.1340,11.5267,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +886,3.0552,16.8195,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +887,2.9733,22.2810,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +888,5.1946,6.5122,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +889,3.1340,11.4025,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +890,3.0552,16.1234,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +891,2.9733,21.2786,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +892,5.1946,6.5860,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +893,3.1340,11.5743,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +894,3.0552,16.9126,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +895,2.9733,22.3691,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +896,5.1946,6.5626,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +897,3.1340,11.4805,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +898,3.0552,16.8060,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +899,2.9733,22.0754,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +900,5.1946,6.4678,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +901,3.1340,11.5288,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +902,3.0552,16.9161,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +903,2.9733,22.3120,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +904,5.1946,6.5136,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +905,3.1340,11.4330,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +906,3.0552,16.7368,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +907,2.9733,21.9617,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +908,5.1946,6.4900,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +909,3.1340,10.9931,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +910,3.0552,16.0012,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +911,2.9733,21.2104,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +912,5.1946,6.4907,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +913,3.1340,11.5761,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +914,3.0552,16.9583,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +915,2.9733,22.3009,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +916,5.1946,6.9062,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +917,3.1340,11.5154,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +918,3.0552,16.7725,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +919,2.9733,22.0912,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +920,5.1946,6.3561,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +921,3.1340,11.5490,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +922,3.0552,16.8419,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +923,2.9733,22.1798,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +924,5.1946,6.2722,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +925,3.1340,11.5080,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +926,3.0552,16.6422,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +927,2.9733,22.0138,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +928,5.1946,7.2203,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +929,3.1340,11.5126,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +930,3.0552,16.6532,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +931,2.9733,21.9575,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +932,5.1946,6.4497,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +933,3.1340,11.5566,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +934,3.0552,16.8592,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +935,2.9733,22.3750,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +936,5.1946,6.4790,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +937,3.1340,11.4621,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +938,3.0552,16.8964,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +939,2.9733,22.1575,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +940,5.1946,6.3875,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +941,3.1340,11.5185,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +942,3.0552,16.8110,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +943,2.9733,22.2342,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +944,5.1946,6.4603,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +945,3.1340,11.4782,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +946,3.0552,16.7678,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +947,2.9733,22.0722,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +948,5.1946,7.0934,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +949,3.1340,11.4698,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +950,3.0552,16.6683,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +951,2.9733,21.8764,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +952,5.1946,6.5499,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +953,3.1340,11.5131,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +954,3.0552,16.6627,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +955,2.9733,22.1052,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +956,5.1946,6.4364,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +957,3.1340,11.5348,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +958,3.0552,16.8104,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +959,2.9733,22.2662,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +960,5.1946,5.6386,0.1232,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +961,3.1340,9.8267,0.0327,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +962,3.0552,14.0998,0.1025,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +963,2.9733,18.4967,0.0440,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +964,5.1946,6.2665,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +965,3.1340,11.4048,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +966,3.0552,16.6842,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +967,2.9733,22.1690,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +968,5.1946,6.3041,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +969,3.1340,11.4982,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +970,3.0552,16.9531,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +971,2.9733,22.4371,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +972,5.1946,6.3267,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +973,3.1340,11.5524,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +974,3.0552,16.9111,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +975,2.9733,22.3596,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +976,5.1946,6.3740,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +977,3.1340,11.6041,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +978,3.0552,16.9041,0.0345,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +979,2.9733,22.3570,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +980,5.1946,6.7154,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +981,3.1340,11.5652,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +982,3.0552,16.6767,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +983,2.9733,22.0350,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +984,5.1946,6.6716,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +985,3.1340,11.6873,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +986,3.0552,16.8833,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +987,2.9733,22.2465,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +988,5.1946,6.4942,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +989,3.1340,11.5412,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +990,3.0552,16.6477,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +991,2.9733,21.9538,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +992,5.1946,6.4682,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +993,3.1340,11.4887,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +994,3.0552,16.8466,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +995,2.9733,22.1475,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +996,5.1946,6.5646,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +997,3.1340,11.5988,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +998,3.0552,16.8298,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +999,2.9733,22.1705,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +1000,5.1946,6.3955,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +1001,3.1340,11.5876,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +1002,3.0552,16.7919,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +1003,2.9733,22.0800,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1004,5.1946,6.5544,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1005,3.1340,11.5457,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +1006,3.0552,16.7080,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +1007,2.9733,22.0334,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +1008,5.1946,6.4678,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1009,3.1340,11.4814,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +1010,3.0552,16.8005,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +1011,2.9733,22.2030,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +1012,5.1946,6.4989,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +1013,3.1340,11.5585,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +1014,3.0552,16.8483,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +1015,2.9733,22.1728,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +1016,5.1946,6.3409,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1017,3.1340,11.3826,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +1018,3.0552,16.7405,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +1019,2.9733,22.1231,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +1020,5.1946,6.3600,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1021,3.1340,11.5551,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +1022,3.0552,16.8354,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +1023,2.9733,22.1353,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +1024,5.1946,6.7092,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1025,3.1340,11.4470,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1026,3.0552,16.4891,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1027,2.9733,21.8825,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1028,5.1946,6.5263,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1029,3.1340,11.4827,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1030,3.0552,16.7373,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1031,2.9733,22.0705,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1032,5.1946,6.2545,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +1033,3.1340,11.4135,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +1034,3.0552,16.6370,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1035,2.9733,22.2161,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1036,5.1946,6.3855,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1037,3.1340,11.5177,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +1038,3.0552,16.9277,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1039,2.9733,22.3505,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1040,5.1946,6.4873,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1041,3.1340,11.5201,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1042,3.0552,16.7659,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1043,2.9733,22.0765,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +1044,5.1946,6.7045,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1045,3.1340,11.4770,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1046,3.0552,16.6803,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1047,2.9733,22.2002,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +1048,5.1946,6.6064,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1049,3.1340,11.6132,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1050,3.0552,16.8744,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +1051,2.9733,22.1837,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +1052,5.1946,6.4548,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1053,3.1340,11.6518,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +1054,3.0552,16.9024,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +1055,2.9733,22.3268,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1056,5.1946,6.5065,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1057,3.1340,11.4718,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1058,3.0552,16.8047,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +1059,2.9733,22.3625,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1060,5.1946,6.6517,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1061,3.1340,11.5490,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1062,3.0552,16.9394,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +1063,2.9733,22.2589,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1064,5.1946,6.7475,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1065,3.1340,11.5092,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1066,3.0552,16.6558,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +1067,2.9733,21.9193,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1068,5.1946,6.5970,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1069,3.1340,11.4250,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1070,3.0552,16.6061,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1071,2.9733,21.7883,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1072,5.1946,6.6929,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1073,3.1340,11.6413,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1074,3.0552,16.8395,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1075,2.9733,22.2700,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1076,5.1946,6.5857,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1077,3.1340,11.5370,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1078,3.0552,16.8069,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1079,2.9733,22.1290,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +1080,5.1946,6.4961,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1081,3.1340,11.5086,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1082,3.0552,16.7916,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1083,2.9733,22.1989,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1084,5.1946,6.6357,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1085,3.1340,11.5752,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1086,3.0552,16.8083,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1087,2.9733,22.1459,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1088,5.1946,6.5931,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1089,3.1340,11.5137,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1090,3.0552,16.7522,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1091,2.9733,22.0285,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1092,5.1946,6.6287,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1093,3.1340,11.5215,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1094,3.0552,16.7210,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.9733,22.1096,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1096,5.1946,6.4985,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1097,3.1340,11.5053,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1098,3.0552,16.7743,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +1099,2.9733,22.2458,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +1100,5.1946,6.5111,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1101,3.1340,11.4950,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1102,3.0552,16.8840,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1103,2.9733,22.1990,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1104,5.1946,6.4861,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1105,3.1340,11.5525,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1106,3.0552,16.8115,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1107,2.9733,22.1409,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1108,5.1946,6.4559,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1109,3.1340,11.4193,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1110,3.0552,16.6883,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +1111,2.9733,21.9644,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1112,5.1946,6.5763,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1113,3.1340,11.5181,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1114,3.0552,16.6763,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1115,2.9733,22.0667,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1116,5.1946,6.4123,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1117,3.1340,11.5307,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1118,3.0552,16.7944,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1119,2.9733,22.2840,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1120,5.1946,6.4283,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1121,3.1340,11.4567,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1122,3.0552,16.9740,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1123,2.9733,22.3733,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1124,5.1946,6.4176,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1125,3.1340,11.5825,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1126,3.0552,16.9581,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1127,2.9733,22.4007,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1128,5.1946,6.3209,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1129,3.1340,11.4600,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1130,3.0552,16.9845,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1131,2.9733,22.3157,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1132,5.1946,6.8074,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1133,3.1340,11.5240,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1134,3.0552,16.6094,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1135,2.9733,22.0027,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1136,5.1946,6.6940,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1137,3.1340,11.4274,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1138,3.0552,16.1865,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1139,2.9733,21.3255,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1140,5.1946,6.4881,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1141,3.1340,11.5191,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1142,3.0552,16.8618,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1143,2.9733,22.3112,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1144,5.1946,6.3929,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1145,3.1340,11.4725,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1146,3.0552,16.8530,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1147,2.9733,22.2796,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1148,5.1946,6.3029,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1149,3.1340,11.4332,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1150,3.0552,16.8027,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1151,2.9733,22.2082,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1152,5.1946,6.4721,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1153,3.1340,11.5050,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1154,3.0552,16.8176,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1155,2.9733,22.2493,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1156,5.1946,6.5950,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1157,3.1340,11.6773,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1158,3.0552,17.0150,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1159,2.9733,22.5557,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1160,5.1946,6.7242,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1161,3.1340,11.5456,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1162,3.0552,16.7470,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1163,2.9733,22.1693,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1164,5.1946,6.6825,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1165,3.1340,11.4393,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1166,3.0552,16.6320,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1167,2.9733,21.9416,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1168,5.1946,6.3800,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1169,3.1340,11.4791,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1170,3.0552,16.8439,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1171,2.9733,22.2329,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1172,5.1946,6.3649,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1173,3.1340,11.5130,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1174,3.0552,16.8708,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1175,2.9733,22.2930,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1176,5.1946,6.3347,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1177,3.1340,11.5183,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1178,3.0552,16.7482,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1179,2.9733,22.4508,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1180,5.1946,6.9088,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1181,3.1340,11.4869,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1182,3.0552,16.6060,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1183,2.9733,22.0480,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1184,5.1946,6.5342,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1185,3.1340,11.4035,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1186,3.0552,16.5912,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1187,2.9733,21.8029,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1188,5.1946,6.2570,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1189,3.1340,11.4169,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1190,3.0552,16.7845,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1191,2.9733,22.2603,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1192,5.1946,6.3923,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1193,3.1340,11.5133,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1194,3.0552,16.8852,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1195,2.9733,22.2657,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1196,5.1946,6.6130,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1197,3.1340,11.5574,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1198,3.0552,16.8460,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +1199,2.9733,22.2456,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1200,5.1946,5.6327,0.1029,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +1201,3.1340,9.9102,0.0658,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +1202,3.0552,14.1895,0.0297,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +1203,2.9733,18.8043,0.0762,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +1204,5.1946,6.5603,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +1205,3.1340,11.6340,0.0207,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +1206,3.0552,17.0296,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +1207,2.9733,22.5212,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +1208,5.1946,6.6908,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +1209,3.1340,11.5152,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +1210,3.0552,16.6602,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +1211,2.9733,21.7270,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +1212,5.1946,6.5273,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +1213,3.1340,11.5593,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +1214,3.0552,16.8558,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +1215,2.9733,22.3606,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +1216,5.1946,6.4929,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +1217,3.1340,11.5008,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +1218,3.0552,16.8784,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +1219,2.9733,22.3447,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +1220,5.1946,6.4649,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +1221,3.1340,11.5281,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +1222,3.0552,17.2043,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +1223,2.9733,22.6055,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +1224,5.1946,6.7066,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +1225,3.1340,11.4314,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1226,3.0552,16.7381,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +1227,2.9733,21.9418,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +1228,5.1946,6.6718,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +1229,3.1340,11.5030,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +1230,3.0552,16.6419,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +1231,2.9733,21.9670,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +1232,5.1946,6.5039,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +1233,3.1340,11.6744,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +1234,3.0552,16.9055,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +1235,2.9733,22.4566,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +1236,5.1946,6.7851,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +1237,3.1340,11.5742,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +1238,3.0552,16.8004,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +1239,2.9733,22.0757,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +1240,5.1946,6.9061,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +1241,3.1340,11.4614,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +1242,3.0552,16.5226,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +1243,2.9733,21.9500,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +1244,5.1946,6.7364,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1245,3.1340,11.3810,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +1246,3.0552,16.6381,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1247,2.9733,21.8549,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +1248,5.1946,6.4267,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1249,3.1340,11.5267,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +1250,3.0552,16.8639,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1251,2.9733,22.2872,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +1252,5.1946,6.6880,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +1253,3.1340,11.5206,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +1254,3.0552,16.7052,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.9733,22.0173,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1256,5.1946,6.5034,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1257,3.1340,11.4205,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +1258,3.0552,16.4819,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1259,2.9733,21.8071,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1260,5.1946,6.7495,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1261,3.1340,11.5444,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +1262,3.0552,16.7920,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1263,2.9733,22.3305,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +1264,5.1946,6.8051,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1265,3.1340,11.3842,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1266,3.0552,16.3660,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1267,2.9733,21.7774,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +1268,5.1946,6.7725,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1269,3.1340,11.5874,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1270,3.0552,17.0239,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +1271,2.9733,22.5637,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +1272,5.1946,6.5999,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +1273,3.1340,11.4057,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +1274,3.0552,16.8561,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +1275,2.9733,22.1412,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +1276,5.1946,6.5035,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1277,3.1340,11.6538,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +1278,3.0552,16.8478,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +1279,2.9733,22.1895,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1280,5.1946,7.5570,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1281,3.1340,11.5813,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1282,3.0552,16.7545,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1283,2.9733,22.1973,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1284,5.1946,6.8146,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1285,3.1340,11.5920,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1286,3.0552,17.1167,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +1287,2.9733,21.8992,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1288,5.1946,6.7952,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1289,3.1340,11.6991,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1290,3.0552,16.8178,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1291,2.9733,22.1998,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1292,5.1946,6.5356,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1293,3.1340,11.4834,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +1294,3.0552,16.7870,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1295,2.9733,22.1731,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +1296,5.1946,6.5275,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1297,3.1340,11.5690,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1298,3.0552,16.9563,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1299,2.9733,22.2973,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +1300,5.1946,6.5512,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1301,3.1340,11.5549,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1302,3.0552,16.8598,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1303,2.9733,22.1629,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +1304,5.1946,6.4343,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1305,3.1340,11.4613,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1306,3.0552,16.7824,0.0173,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1307,2.9733,21.9225,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1308,5.1946,6.5495,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1309,3.1340,11.5555,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1310,3.0552,16.7807,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1311,2.9733,22.1985,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1312,5.1946,6.7121,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1313,3.1340,11.5890,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1314,3.0552,16.9431,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1315,2.9733,22.4064,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1316,5.1946,6.5274,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1317,3.1340,11.6088,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1318,3.0552,16.9218,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1319,2.9733,22.3510,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1320,5.1946,6.6465,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1321,3.1340,11.4782,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1322,3.0552,16.7130,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1323,2.9733,22.0903,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +1324,5.1946,6.3639,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1325,3.1340,11.5597,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1326,3.0552,16.8642,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +1327,2.9733,22.2715,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1328,5.1946,6.8085,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1329,3.1340,11.5827,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1330,3.0552,16.7126,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +1331,2.9733,21.9648,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +1332,5.1946,6.5269,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1333,3.1340,11.4685,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1334,3.0552,16.6349,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1335,2.9733,22.1122,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1336,5.1946,6.8494,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1337,3.1340,11.5663,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1338,3.0552,16.6339,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1339,2.9733,21.9710,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1340,5.1946,6.7893,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1341,3.1340,11.4228,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1342,3.0552,16.7685,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1343,2.9733,22.1500,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1344,5.1946,6.5488,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1345,3.1340,11.5733,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1346,3.0552,16.8859,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1347,2.9733,22.1086,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1348,5.1946,6.5118,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1349,3.1340,11.4332,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1350,3.0552,16.7917,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1351,2.9733,22.2066,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1352,5.1946,6.6770,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1353,3.1340,11.6071,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1354,3.0552,16.8062,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1355,2.9733,22.0803,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1356,5.1946,6.4991,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1357,3.1340,11.4157,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1358,3.0552,16.7637,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.9733,22.1573,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +1360,5.1946,6.3865,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1361,3.1340,11.5014,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1362,3.0552,16.8296,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +1363,2.9733,22.2321,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1364,5.1946,6.5405,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1365,3.1340,11.4951,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1366,3.0552,16.8417,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1367,2.9733,22.1977,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1368,5.1946,6.6013,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1369,3.1340,11.5280,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1370,3.0552,16.7592,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1371,2.9733,22.0977,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1372,5.1946,6.4705,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1373,3.1340,11.5741,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1374,3.0552,16.7521,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +1375,2.9733,22.0506,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1376,5.1946,6.4025,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1377,3.1340,11.4386,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1378,3.0552,16.6887,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1379,2.9733,22.0714,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1380,5.1946,6.4860,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1381,3.1340,11.5201,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1382,3.0552,16.7750,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1383,2.9733,22.1027,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1384,5.1946,6.5772,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1385,3.1340,11.6105,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1386,3.0552,17.0257,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1387,2.9733,22.5571,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1388,5.1946,6.6778,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1389,3.1340,11.4299,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1390,3.0552,16.7730,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1391,2.9733,21.9853,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1392,5.1946,6.6390,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1393,3.1340,11.5581,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1394,3.0552,16.7624,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1395,2.9733,22.0075,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1396,5.1946,6.4944,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1397,3.1340,11.5026,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1398,3.0552,16.7284,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1399,2.9733,22.1574,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1400,5.1946,6.5700,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1401,3.1340,11.5071,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1402,3.0552,16.5078,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1403,2.9733,21.7665,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1404,5.1946,6.5684,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1405,3.1340,11.5609,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1406,3.0552,16.7589,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1407,2.9733,22.2835,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1408,5.1946,6.4854,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1409,3.1340,11.4216,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1410,3.0552,16.7117,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1411,2.9733,22.1575,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1412,5.1946,6.6066,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1413,3.1340,11.5415,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1414,3.0552,16.7348,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1415,2.9733,22.0045,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1416,5.1946,6.7100,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1417,3.1340,11.6189,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1418,3.0552,16.5903,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1419,2.9733,21.7787,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1420,5.1946,6.6593,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1421,3.1340,11.4158,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1422,3.0552,16.4393,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1423,2.9733,21.6425,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1424,5.1946,6.5791,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1425,3.1340,11.3965,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1426,3.0552,16.4610,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1427,2.9733,21.8239,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1428,5.1946,6.4723,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1429,3.1340,11.4679,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1430,3.0552,16.8359,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1431,2.9733,22.0931,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1432,5.1946,6.4189,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1433,3.1340,11.5098,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1434,3.0552,16.7761,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1435,2.9733,22.0302,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1436,5.1946,6.5794,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1437,3.1340,11.6259,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1438,3.0552,17.0160,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1439,2.9733,22.4822,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1440,5.1946,20.0635,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1441,3.1340,17.6404,0.0084,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1442,3.0552,16.6307,0.0048,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1443,2.9733,17.1649,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1444,5.1946,5.9823,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +1445,3.1340,11.3673,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +1446,3.0552,16.8118,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +1447,2.9733,22.3176,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +1448,5.1946,6.0164,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +1449,3.1340,11.3637,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +1450,3.0552,16.8522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +1451,2.9733,22.3463,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +1452,5.1946,6.1235,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +1453,3.1340,11.4040,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +1454,3.0552,16.8579,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +1455,2.9733,22.3835,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +1456,5.1946,6.1016,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +1457,3.1340,11.4548,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +1458,3.0552,16.8823,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +1459,2.9733,22.4232,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +1460,5.1946,6.1231,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +1461,3.1340,11.4343,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +1462,3.0552,16.8443,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +1463,2.9733,22.3627,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +1464,5.1946,6.2104,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +1465,3.1340,11.4680,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +1466,3.0552,16.7966,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +1467,2.9733,22.3031,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +1468,5.1946,6.2115,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +1469,3.1340,11.5148,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +1470,3.0552,16.8627,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +1471,2.9733,22.3487,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +1472,5.1946,6.1790,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +1473,3.1340,11.4431,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +1474,3.0552,16.7997,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +1475,2.9733,22.1861,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +1476,5.1946,6.4414,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +1477,3.1340,11.5009,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +1478,3.0552,16.7817,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +1479,2.9733,22.2882,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +1480,5.1946,6.3986,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +1481,3.1340,11.5237,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +1482,3.0552,16.8036,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +1483,2.9733,22.1531,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +1484,5.1946,6.4760,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +1485,3.1340,11.5598,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +1486,3.0552,16.8650,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1487,2.9733,22.3081,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1488,5.1946,6.5621,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +1489,3.1340,11.5518,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +1490,3.0552,16.8098,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1491,2.9733,22.5462,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +1492,5.1946,6.4713,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +1493,3.1340,11.4957,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +1494,3.0552,16.6126,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1495,2.9733,21.7850,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +1496,5.1946,6.4278,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +1497,3.1340,11.4687,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +1498,3.0552,16.7222,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +1499,2.9733,22.2574,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1500,5.1946,6.4656,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1501,3.1340,11.4540,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +1502,3.0552,16.6412,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1503,2.9733,21.4082,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1504,5.1946,6.4500,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1505,3.1340,11.5739,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +1506,3.0552,17.0170,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +1507,2.9733,22.5253,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +1508,5.1946,6.4478,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1509,3.1340,11.4221,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +1510,3.0552,16.7433,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1511,2.9733,22.1057,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +1512,5.1946,6.3935,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +1513,3.1340,11.6530,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1514,3.0552,16.9647,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +1515,2.9733,22.3331,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1516,5.1946,6.4330,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1517,3.1340,11.5265,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +1518,3.0552,16.7961,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1519,2.9733,22.2724,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +1520,5.1946,6.5077,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +1521,3.1340,11.5300,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +1522,3.0552,16.7282,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +1523,2.9733,22.2150,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1524,5.1946,6.5255,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +1525,3.1340,11.4766,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +1526,3.0552,16.7909,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1527,2.9733,22.3211,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1528,5.1946,6.3620,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1529,3.1340,11.5604,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1530,3.0552,16.9544,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1531,2.9733,22.3892,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1532,5.1946,6.3424,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +1533,3.1340,11.5045,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1534,3.0552,16.8912,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1535,2.9733,22.2462,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1536,5.1946,6.4003,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +1537,3.1340,11.4707,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1538,3.0552,16.7397,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1539,2.9733,22.2771,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +1540,5.1946,6.5170,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1541,3.1340,11.5403,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1542,3.0552,16.3679,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +1543,2.9733,21.1973,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +1544,5.1946,6.4432,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +1545,3.1340,11.5575,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1546,3.0552,16.8820,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1547,2.9733,22.2913,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1548,5.1946,6.4854,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +1549,3.1340,11.5707,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1550,3.0552,16.8621,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +1551,2.9733,22.1656,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1552,5.1946,6.3907,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +1553,3.1340,11.5426,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1554,3.0552,16.8090,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1555,2.9733,22.1613,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1556,5.1946,6.4793,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1557,3.1340,11.6090,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1558,3.0552,16.9006,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1559,2.9733,22.3765,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1560,5.1946,6.5753,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1561,3.1340,11.2003,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1562,3.0552,16.5415,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1563,2.9733,21.3733,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1564,5.1946,6.4387,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1565,3.1340,11.4922,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1566,3.0552,16.6680,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +1567,2.9733,22.0478,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +1568,5.1946,6.4004,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1569,3.1340,11.4869,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1570,3.0552,16.9255,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1571,2.9733,22.3050,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +1572,5.1946,6.3915,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1573,3.1340,11.5575,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1574,3.0552,16.8851,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1575,2.9733,22.2599,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +1576,5.1946,6.8221,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1577,3.1340,11.6210,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1578,3.0552,17.0223,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1579,2.9733,22.8168,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1580,5.1946,6.6232,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1581,3.1340,11.5280,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1582,3.0552,16.6861,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1583,2.9733,21.9403,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1584,5.1946,6.5140,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1585,3.1340,11.5277,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1586,3.0552,16.6932,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1587,2.9733,22.1852,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1588,5.1946,6.3105,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1589,3.1340,11.4655,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1590,3.0552,16.8540,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1591,2.9733,22.2618,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1592,5.1946,6.3996,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1593,3.1340,11.5378,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1594,3.0552,16.8840,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1595,2.9733,22.3096,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1596,5.1946,6.6963,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1597,3.1340,11.5198,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1598,3.0552,16.8645,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1599,2.9733,22.5040,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1600,5.1946,6.5213,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1601,3.1340,11.5297,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1602,3.0552,16.7066,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1603,2.9733,21.8086,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1604,5.1946,6.4341,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1605,3.1340,11.5735,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1606,3.0552,16.8681,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1607,2.9733,22.3927,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1608,5.1946,6.4405,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1609,3.1340,11.4550,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1610,3.0552,16.7965,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +1611,2.9733,22.1928,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1612,5.1946,6.5390,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1613,3.1340,11.5796,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1614,3.0552,16.7475,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1615,2.9733,22.1513,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1616,5.1946,6.5492,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1617,3.1340,11.5694,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1618,3.0552,16.7854,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1619,2.9733,22.2693,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1620,5.1946,7.0185,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1621,3.1340,11.4906,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1622,3.0552,16.6993,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1623,2.9733,22.0987,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1624,5.1946,6.4454,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1625,3.1340,11.5304,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1626,3.0552,16.8405,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1627,2.9733,22.3312,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1628,5.1946,6.3473,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1629,3.1340,10.9417,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1630,3.0552,16.0994,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1631,2.9733,21.0432,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1632,5.1946,6.3434,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1633,3.1340,11.5440,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1634,3.0552,16.8203,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1635,2.9733,22.3889,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1636,5.1946,6.4268,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1637,3.1340,11.4072,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1638,3.0552,16.9174,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +1639,2.9733,22.3285,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1640,5.1946,6.4486,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1641,3.1340,11.4753,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1642,3.0552,16.7480,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +1643,2.9733,22.0097,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1644,5.1946,6.5925,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1645,3.1340,11.6077,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1646,3.0552,16.9329,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1647,2.9733,22.3337,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1648,5.1946,6.7383,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1649,3.1340,11.4262,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1650,3.0552,16.5441,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1651,2.9733,21.7354,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +1652,5.1946,6.7077,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1653,3.1340,11.5767,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1654,3.0552,16.5926,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +1655,2.9733,21.9074,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1656,5.1946,6.6102,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1657,3.1340,11.4890,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1658,3.0552,16.7325,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1659,2.9733,22.0905,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +1660,5.1946,6.4828,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1661,3.1340,11.4729,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1662,3.0552,16.7708,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1663,2.9733,22.1795,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1664,5.1946,6.6247,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1665,3.1340,11.6237,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1666,3.0552,16.7793,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1667,2.9733,22.1743,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1668,5.1946,6.4865,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1669,3.1340,11.5273,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1670,3.0552,16.7515,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1671,2.9733,22.0080,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1672,5.1946,6.6275,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1673,3.1340,11.5366,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1674,3.0552,16.6672,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1675,2.9733,21.8716,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1676,5.1946,6.5758,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1677,3.1340,11.4784,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1678,3.0552,16.7242,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1679,2.9733,22.0079,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1680,5.1946,5.4960,0.0298,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +1681,3.1340,9.7902,0.0237,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +1682,3.0552,14.2866,0.0449,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +1683,2.9733,18.6728,0.0114,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +1684,5.1946,6.5128,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +1685,3.1340,11.5917,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +1686,3.0552,16.9181,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +1687,2.9733,22.3382,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +1688,5.1946,6.5637,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +1689,3.1340,11.5221,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +1690,3.0552,16.8660,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +1691,2.9733,22.2452,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +1692,5.1946,6.6344,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +1693,3.1340,11.5791,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +1694,3.0552,16.8404,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +1695,2.9733,22.1417,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +1696,5.1946,6.4545,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +1697,3.1340,11.6025,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +1698,3.0552,16.9833,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +1699,2.9733,22.3280,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +1700,5.1946,6.5890,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +1701,3.1340,11.5706,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +1702,3.0552,16.8475,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +1703,2.9733,22.1258,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +1704,5.1946,6.4951,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +1705,3.1340,11.5832,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1706,3.0552,16.7736,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +1707,2.9733,22.3649,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +1708,5.1946,6.5200,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +1709,3.1340,11.5896,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +1710,3.0552,16.8322,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +1711,2.9733,22.3853,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +1712,5.1946,6.6675,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +1713,3.1340,11.6064,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +1714,3.0552,16.7977,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +1715,2.9733,22.0501,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +1716,5.1946,6.5581,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +1717,3.1340,11.3923,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +1718,3.0552,16.6183,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +1719,2.9733,21.9312,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +1720,5.1946,6.4310,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +1721,3.1340,11.5842,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +1722,3.0552,16.8954,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +1723,2.9733,22.2550,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +1724,5.1946,6.5644,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1725,3.1340,11.7813,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +1726,3.0552,16.9373,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +1727,2.9733,22.3151,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +1728,5.1946,6.5697,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1729,3.1340,11.5367,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +1730,3.0552,16.6893,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +1731,2.9733,21.8337,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +1732,5.1946,6.7367,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +1733,3.1340,11.5429,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +1734,3.0552,16.7342,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +1735,2.9733,22.2007,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +1736,5.1946,6.5201,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1737,3.1340,11.3558,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +1738,3.0552,16.7138,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +1739,2.9733,22.0835,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +1740,5.1946,6.4779,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1741,3.1340,11.5351,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +1742,3.0552,16.8802,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +1743,2.9733,22.1971,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +1744,5.1946,6.5085,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1745,3.1340,11.5962,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1746,3.0552,16.8130,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1747,2.9733,22.1913,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1748,5.1946,6.6754,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1749,3.1340,11.6623,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1750,3.0552,16.6425,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1751,2.9733,22.0587,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1752,5.1946,6.6233,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +1753,3.1340,11.5401,0.0334,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +1754,3.0552,16.6365,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1755,2.9733,22.0887,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1756,5.1946,6.5202,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1757,3.1340,11.5378,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +1758,3.0552,16.8521,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1759,2.9733,22.3087,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1760,5.1946,6.4705,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1761,3.1340,11.5771,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1762,3.0552,16.9052,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1763,2.9733,22.3412,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +1764,5.1946,6.6602,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1765,3.1340,11.5761,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1766,3.0552,16.9100,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1767,2.9733,22.1355,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +1768,5.1946,6.4182,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +1769,3.1340,11.5208,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1770,3.0552,16.9000,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +1771,2.9733,22.1970,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +1772,5.1946,6.5990,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1773,3.1340,11.4826,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +1774,3.0552,16.6146,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +1775,2.9733,22.0340,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1776,5.1946,6.5246,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1777,3.1340,11.4946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1778,3.0552,16.7226,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +1779,2.9733,22.0302,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1780,5.1946,6.5339,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1781,3.1340,12.3402,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1782,3.0552,16.8912,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +1783,2.9733,22.1637,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1784,5.1946,6.5142,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1785,3.1340,11.5638,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1786,3.0552,16.8330,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +1787,2.9733,22.2067,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1788,5.1946,6.4848,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1789,3.1340,11.5739,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1790,3.0552,16.8530,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1791,2.9733,22.1485,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +1792,5.1946,6.5400,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1793,3.1340,11.5057,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1794,3.0552,16.6055,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1795,2.9733,21.9903,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1796,5.1946,6.5235,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1797,3.1340,11.6142,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1798,3.0552,16.8134,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1799,2.9733,22.2289,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +1800,5.1946,6.4943,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1801,3.1340,11.5548,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1802,3.0552,16.8894,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1803,2.9733,22.2293,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1804,5.1946,6.6074,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1805,3.1340,11.5092,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1806,3.0552,16.8915,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1807,2.9733,22.3283,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1808,5.1946,6.5413,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1809,3.1340,11.5675,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1810,3.0552,16.8770,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1811,2.9733,22.2523,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1812,5.1946,6.5414,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1813,3.1340,11.5812,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1814,3.0552,16.8287,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1815,2.9733,22.1903,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1816,5.1946,6.4829,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1817,3.1340,11.5081,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1818,3.0552,16.9261,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +1819,2.9733,22.4268,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +1820,5.1946,6.7477,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1821,3.1340,11.6409,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1822,3.0552,16.8218,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1823,2.9733,22.3140,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1824,5.1946,6.7279,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1825,3.1340,11.4552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1826,3.0552,16.8514,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1827,2.9733,22.1267,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1828,5.1946,6.4753,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1829,3.1340,11.4946,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1830,3.0552,16.8607,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +1831,2.9733,22.2362,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1832,5.1946,6.6334,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1833,3.1340,11.4879,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1834,3.0552,16.6171,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1835,2.9733,21.9006,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1836,5.1946,6.5299,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1837,3.1340,11.6972,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1838,3.0552,16.9188,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1839,2.9733,22.3557,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1840,5.1946,6.7144,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1841,3.1340,11.6564,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1842,3.0552,16.7657,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1843,2.9733,22.1895,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1844,5.1946,6.4901,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1845,3.1340,11.4999,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1846,3.0552,16.7630,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1847,2.9733,22.0512,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1848,5.1946,6.4894,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1849,3.1340,11.4323,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1850,3.0552,16.7682,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1851,2.9733,22.1608,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1852,5.1946,6.5072,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1853,3.1340,11.4023,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1854,3.0552,16.7171,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1855,2.9733,22.1801,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1856,5.1946,6.5410,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1857,3.1340,11.5163,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1858,3.0552,16.6998,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1859,2.9733,21.9222,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1860,5.1946,6.7532,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1861,3.1340,11.5688,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1862,3.0552,16.6891,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1863,2.9733,22.1478,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1864,5.1946,6.5898,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1865,3.1340,11.4520,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1866,3.0552,16.7695,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1867,2.9733,22.0820,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1868,5.1946,6.4005,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1869,3.1340,11.6042,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1870,3.0552,16.9472,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1871,2.9733,22.3171,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1872,5.1946,6.7352,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1873,3.1340,11.5854,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1874,3.0552,16.9373,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1875,2.9733,22.3709,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +1876,5.1946,6.6367,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1877,3.1340,11.5390,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1878,3.0552,16.7550,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1879,2.9733,22.0784,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1880,5.1946,6.7290,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1881,3.1340,11.5220,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1882,3.0552,16.7955,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1883,2.9733,22.2669,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +1884,5.1946,6.6282,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1885,3.1340,11.4977,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1886,3.0552,16.7298,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1887,2.9733,21.6771,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1888,5.1946,6.5246,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1889,3.1340,11.6327,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1890,3.0552,16.8440,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1891,2.9733,22.2641,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1892,5.1946,6.6527,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1893,3.1340,11.4635,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1894,3.0552,16.8646,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1895,2.9733,22.1960,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1896,5.1946,6.5339,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1897,3.1340,11.6680,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1898,3.0552,16.9474,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1899,2.9733,22.3414,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1900,5.1946,6.6260,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1901,3.1340,11.5811,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1902,3.0552,16.7575,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1903,2.9733,22.2335,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1904,5.1946,6.9904,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1905,3.1340,11.5500,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1906,3.0552,16.6813,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1907,2.9733,22.1349,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1908,5.1946,6.7082,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1909,3.1340,11.6832,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1910,3.0552,16.9045,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1911,2.9733,22.2835,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1912,5.1946,6.4934,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1913,3.1340,11.4292,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1914,3.0552,16.7329,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1915,2.9733,22.1188,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1916,5.1946,6.5758,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1917,3.1340,11.5313,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1918,3.0552,16.8458,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +1919,2.9733,22.1344,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1920,5.1946,5.8160,0.0500,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +1921,3.1340,9.9300,0.0328,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +1922,3.0552,14.1243,0.0120,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +1923,2.9733,18.6471,0.0355,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +1924,5.1946,6.5813,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +1925,3.1340,11.5345,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +1926,3.0552,16.8365,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +1927,2.9733,22.3389,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +1928,5.1946,6.5075,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +1929,3.1340,11.6032,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +1930,3.0552,16.9637,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +1931,2.9733,22.2781,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +1932,5.1946,6.4525,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +1933,3.1340,11.5144,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +1934,3.0552,16.9995,0.0304,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +1935,2.9733,22.3956,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +1936,5.1946,6.4248,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +1937,3.1340,11.5495,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +1938,3.0552,16.8336,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +1939,2.9733,22.0790,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +1940,5.1946,6.4658,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +1941,3.1340,11.5715,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +1942,3.0552,16.8614,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +1943,2.9733,22.3875,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +1944,5.1946,6.7089,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +1945,3.1340,11.4997,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1946,3.0552,16.6491,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +1947,2.9733,21.8400,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +1948,5.1946,6.5465,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +1949,3.1340,11.7360,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +1950,3.0552,16.9611,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +1951,2.9733,22.3364,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +1952,5.1946,6.5841,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +1953,3.1340,11.3733,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +1954,3.0552,16.7452,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +1955,2.9733,22.0718,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +1956,5.1946,6.4086,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +1957,3.1340,11.5765,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +1958,3.0552,16.8302,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +1959,2.9733,22.2048,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +1960,5.1946,6.5832,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +1961,3.1340,11.6123,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +1962,3.0552,16.9803,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +1963,2.9733,22.4302,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +1964,5.1946,6.7675,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1965,3.1340,11.5489,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +1966,3.0552,16.6165,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1967,2.9733,21.9183,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +1968,5.1946,6.8230,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +1969,3.1340,11.5342,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +1970,3.0552,16.7810,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1971,2.9733,22.2488,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +1972,5.1946,6.4698,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +1973,3.1340,11.5078,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +1974,3.0552,16.9262,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1975,2.9733,22.1870,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1976,5.1946,6.4720,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +1977,3.1340,11.5619,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +1978,3.0552,17.0640,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1979,2.9733,22.4283,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1980,5.1946,6.5831,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +1981,3.1340,11.5665,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +1982,3.0552,16.9202,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1983,2.9733,22.3800,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +1984,5.1946,6.6999,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1985,3.1340,11.5547,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1986,3.0552,16.8176,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1987,2.9733,22.1984,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +1988,5.1946,6.7393,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1989,3.1340,11.6104,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1990,3.0552,16.6536,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +1991,2.9733,22.0830,0.0218,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +1992,5.1946,6.7289,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +1993,3.1340,11.4406,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +1994,3.0552,16.6036,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +1995,2.9733,21.7730,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +1996,5.1946,6.8089,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1997,3.1340,11.5759,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +1998,3.0552,16.8499,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +1999,2.9733,22.2093,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2000,5.1946,6.7131,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +2001,3.1340,11.4707,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2002,3.0552,16.8218,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +2003,2.9733,22.2021,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2004,5.1946,6.5420,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +2005,3.1340,11.5202,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2006,3.0552,16.8308,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +2007,2.9733,22.3642,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2008,5.1946,6.8502,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2009,3.1340,11.5961,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2010,3.0552,16.7518,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2011,2.9733,22.1699,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2012,5.1946,6.6472,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2013,3.1340,11.5030,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +2014,3.0552,16.7072,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2015,2.9733,22.0234,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +2016,5.1946,6.7914,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2017,3.1340,11.5733,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2018,3.0552,16.7374,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2019,2.9733,22.0933,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +2020,5.1946,6.3768,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2021,3.1340,11.4369,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2022,3.0552,16.7352,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2023,2.9733,22.1272,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +2024,5.1946,6.5109,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2025,3.1340,11.5688,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2026,3.0552,16.9037,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2027,2.9733,22.2056,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2028,5.1946,6.5343,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2029,3.1340,11.4759,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2030,3.0552,16.8010,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2031,2.9733,22.1755,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2032,5.1946,6.6651,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2033,3.1340,11.5194,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2034,3.0552,16.7205,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +2035,2.9733,22.0805,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2036,5.1946,6.6594,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2037,3.1340,11.5977,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2038,3.0552,16.8880,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2039,2.9733,22.4175,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2040,5.1946,6.5745,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2041,3.1340,11.5879,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2042,3.0552,16.8261,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2043,2.9733,22.3173,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +2044,5.1946,6.4597,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2045,3.1340,11.6206,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2046,3.0552,16.9866,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2047,2.9733,22.3586,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2048,5.1946,6.4718,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2049,3.1340,11.3441,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2050,3.0552,16.7527,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +2051,2.9733,22.0433,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +2052,5.1946,6.3707,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2053,3.1340,11.5348,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2054,3.0552,16.8368,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2055,2.9733,22.1831,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2056,5.1946,6.4840,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2057,3.1340,11.5232,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2058,3.0552,16.8080,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2059,2.9733,22.3773,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2060,5.1946,6.6713,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2061,3.1340,11.4170,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2062,3.0552,16.6090,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2063,2.9733,21.9315,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2064,5.1946,6.7497,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2065,3.1340,11.5847,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2066,3.0552,16.8648,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2067,2.9733,22.4132,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2068,5.1946,6.4092,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2069,3.1340,11.3734,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2070,3.0552,16.8311,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2071,2.9733,22.1553,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2072,5.1946,6.3707,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2073,3.1340,11.6088,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2074,3.0552,16.8662,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2075,2.9733,22.2021,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2076,5.1946,6.6742,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2077,3.1340,11.6014,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2078,3.0552,16.9077,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +2079,2.9733,22.3794,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +2080,5.1946,6.6827,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2081,3.1340,11.4935,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2082,3.0552,16.4412,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +2083,2.9733,21.6993,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +2084,5.1946,6.7718,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2085,3.1340,11.6073,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2086,3.0552,16.8178,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2087,2.9733,22.2989,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2088,5.1946,6.6033,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2089,3.1340,11.4358,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2090,3.0552,16.7291,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2091,2.9733,22.1322,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2092,5.1946,6.5503,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2093,3.1340,11.5361,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2094,3.0552,16.9050,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +2095,2.9733,22.1642,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2096,5.1946,6.6196,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2097,3.1340,11.6496,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2098,3.0552,16.8472,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2099,2.9733,22.2258,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2100,5.1946,6.4870,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2101,3.1340,11.5748,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2102,3.0552,16.6693,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2103,2.9733,22.0813,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2104,5.1946,6.7109,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2105,3.1340,11.5765,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2106,3.0552,16.7254,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2107,2.9733,22.1831,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +2108,5.1946,6.5062,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2109,3.1340,11.5215,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2110,3.0552,16.7779,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2111,2.9733,22.2250,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2112,5.1946,6.5029,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2113,3.1340,11.6567,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2114,3.0552,16.8263,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2115,2.9733,22.0807,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2116,5.1946,6.5352,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2117,3.1340,11.5085,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2118,3.0552,16.7884,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2119,2.9733,22.2648,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2120,5.1946,6.4888,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2121,3.1340,11.5599,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2122,3.0552,16.7922,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2123,2.9733,22.0347,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +2124,5.1946,6.6463,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2125,3.1340,11.5965,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2126,3.0552,16.7704,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2127,2.9733,22.1563,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2128,5.1946,6.5205,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2129,3.1340,11.5505,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2130,3.0552,16.9048,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2131,2.9733,22.4215,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2132,5.1946,6.5488,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2133,3.1340,11.4555,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2134,3.0552,16.7775,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2135,2.9733,21.9961,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2136,5.1946,6.3704,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2137,3.1340,11.3391,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2138,3.0552,16.6469,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +2139,2.9733,22.0266,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2140,5.1946,6.2264,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2141,3.1340,11.5685,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2142,3.0552,16.9263,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2143,2.9733,22.4017,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2144,5.1946,6.4363,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2145,3.1340,11.4749,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2146,3.0552,16.7685,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2147,2.9733,22.1725,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2148,5.1946,6.5164,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2149,3.1340,11.5558,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2150,3.0552,16.8778,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2151,2.9733,21.2701,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2152,5.1946,6.4582,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2153,3.1340,11.6571,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2154,3.0552,16.9998,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2155,2.9733,22.4846,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2156,5.1946,6.5195,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2157,3.1340,11.5141,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2158,3.0552,16.9381,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2159,2.9733,22.3388,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2160,5.1946,18.5077,0.0114,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2161,3.1340,16.5916,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2162,3.0552,16.0926,0.0054,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2163,2.9733,16.3170,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2164,5.1946,6.0302,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +2165,3.1340,11.3746,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +2166,3.0552,16.8403,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +2167,2.9733,22.3470,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +2168,5.1946,6.0394,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +2169,3.1340,11.3510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +2170,3.0552,16.7912,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +2171,2.9733,22.4245,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +2172,5.1946,6.1233,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +2173,3.1340,11.4787,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +2174,3.0552,16.8440,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +2175,2.9733,22.4155,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +2176,5.1946,6.1461,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +2177,3.1340,11.4247,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +2178,3.0552,16.8744,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +2179,2.9733,22.4005,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +2180,5.1946,6.2113,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +2181,3.1340,11.5030,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +2182,3.0552,16.9386,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +2183,2.9733,22.3805,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +2184,5.1946,6.2157,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +2185,3.1340,11.4758,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +2186,3.0552,16.8049,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +2187,2.9733,22.3429,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +2188,5.1946,6.2293,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +2189,3.1340,11.4321,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +2190,3.0552,16.8514,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +2191,2.9733,22.2991,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +2192,5.1946,6.1787,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +2193,3.1340,11.4173,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +2194,3.0552,16.8065,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +2195,2.9733,22.0997,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +2196,5.1946,6.3937,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +2197,3.1340,11.4817,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +2198,3.0552,16.9125,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +2199,2.9733,22.3113,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +2200,5.1946,6.3834,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +2201,3.1340,11.4915,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +2202,3.0552,16.8239,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +2203,2.9733,22.3362,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +2204,5.1946,6.5193,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +2205,3.1340,12.1059,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +2206,3.0552,16.8188,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2207,2.9733,22.1775,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +2208,5.1946,6.5214,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +2209,3.1340,11.4387,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +2210,3.0552,16.8223,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2211,2.9733,22.1267,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +2212,5.1946,6.4864,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +2213,3.1340,11.5127,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +2214,3.0552,16.7898,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2215,2.9733,22.1860,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +2216,5.1946,6.4791,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +2217,3.1340,11.4851,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +2218,3.0552,16.8732,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +2219,2.9733,22.1857,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2220,5.1946,6.5193,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +2221,3.1340,11.5903,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +2222,3.0552,16.7243,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2223,2.9733,21.5815,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2224,5.1946,6.5488,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +2225,3.1340,11.6082,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2226,3.0552,16.8847,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +2227,2.9733,22.3055,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +2228,5.1946,6.7176,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +2229,3.1340,11.5015,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +2230,3.0552,16.8425,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2231,2.9733,22.1784,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +2232,5.1946,6.3520,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +2233,3.1340,11.5151,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +2234,3.0552,16.9630,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +2235,2.9733,22.4605,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +2236,5.1946,6.4173,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2237,3.1340,11.6255,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +2238,3.0552,16.8927,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2239,2.9733,22.3415,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +2240,5.1946,6.4010,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +2241,3.1340,10.8768,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +2242,3.0552,15.9797,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +2243,2.9733,21.1817,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2244,5.1946,6.5117,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +2245,3.1340,11.5213,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +2246,3.0552,16.8092,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +2247,2.9733,22.4593,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2248,5.1946,6.4699,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2249,3.1340,11.5075,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2250,3.0552,16.7288,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2251,2.9733,22.0416,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2252,5.1946,6.4480,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +2253,3.1340,11.5645,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2254,3.0552,17.0205,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2255,2.9733,22.4542,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2256,5.1946,6.5110,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +2257,3.1340,11.5843,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2258,3.0552,16.8089,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2259,2.9733,23.4907,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +2260,5.1946,6.8646,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2261,3.1340,11.5552,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2262,3.0552,16.6587,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2263,2.9733,21.9344,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +2264,5.1946,6.4793,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +2265,3.1340,11.4798,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2266,3.0552,16.7493,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2267,2.9733,22.1554,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2268,5.1946,6.5526,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +2269,3.1340,11.6379,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2270,3.0552,16.9138,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +2271,2.9733,22.1148,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2272,5.1946,6.5273,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +2273,3.1340,11.5918,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2274,3.0552,16.8017,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2275,2.9733,21.9288,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2276,5.1946,6.6342,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +2277,3.1340,11.5449,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2278,3.0552,16.8403,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +2279,2.9733,22.0925,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2280,5.1946,6.3802,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2281,3.1340,11.5747,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2282,3.0552,16.8278,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2283,2.9733,22.1936,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2284,5.1946,6.5037,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2285,3.1340,11.3996,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2286,3.0552,16.6013,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +2287,2.9733,21.9275,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +2288,5.1946,6.3309,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2289,3.1340,11.5376,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2290,3.0552,16.7461,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2291,2.9733,21.1794,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +2292,5.1946,6.3546,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2293,3.1340,11.5044,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2294,3.0552,16.6844,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2295,2.9733,22.1027,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +2296,5.1946,6.4606,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2297,3.1340,11.5152,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2298,3.0552,16.8398,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2299,2.9733,22.2820,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2300,5.1946,6.3041,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2301,3.1340,11.5623,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2302,3.0552,16.8964,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +2303,2.9733,22.1448,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2304,5.1946,6.4701,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2305,3.1340,11.5111,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2306,3.0552,16.7661,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2307,2.9733,22.1174,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2308,5.1946,6.5695,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2309,3.1340,11.4966,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2310,3.0552,16.8194,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2311,2.9733,22.2290,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2312,5.1946,6.8299,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2313,3.1340,11.6146,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2314,3.0552,16.6436,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2315,2.9733,21.8257,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2316,5.1946,6.4943,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2317,3.1340,11.4595,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2318,3.0552,16.8684,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2319,2.9733,22.1382,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2320,5.1946,6.3301,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2321,3.1340,11.5851,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2322,3.0552,16.9149,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +2323,2.9733,22.3135,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2324,5.1946,6.6527,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2325,3.1340,11.4737,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2326,3.0552,16.6446,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2327,2.9733,21.9127,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2328,5.1946,6.3992,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2329,3.1340,11.2828,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2330,3.0552,16.4086,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +2331,2.9733,21.5720,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2332,5.1946,6.2199,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2333,3.1340,11.3975,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2334,3.0552,16.7168,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2335,2.9733,22.2222,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2336,5.1946,6.1513,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2337,3.1340,11.4632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2338,3.0552,16.9891,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2339,2.9733,22.4168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2340,5.1946,6.1220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2341,3.1340,11.4057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2342,3.0552,16.8295,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2343,2.9733,22.2723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2344,5.1946,6.0355,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2345,3.1340,11.3865,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2346,3.0552,16.7528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2347,2.9733,22.2309,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +2348,5.1946,6.1578,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2349,3.1340,11.3803,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2350,3.0552,16.7196,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2351,2.9733,22.2108,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +2352,5.1946,6.2315,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2353,3.1340,11.4195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2354,3.0552,16.7790,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2355,2.9733,22.1073,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2356,5.1946,6.1615,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2357,3.1340,11.3685,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2358,3.0552,16.8100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +2359,2.9733,22.3110,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2360,5.1946,6.4345,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2361,3.1340,11.5397,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2362,3.0552,16.7807,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +2363,2.9733,22.1567,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2364,5.1946,6.4080,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2365,3.1340,11.5353,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2366,3.0552,16.7607,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2367,2.9733,22.2629,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2368,5.1946,6.5033,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2369,3.1340,11.4844,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2370,3.0552,16.8543,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2371,2.9733,22.2386,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +2372,5.1946,6.5981,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2373,3.1340,11.6104,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2374,3.0552,16.8256,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +2375,2.9733,22.0636,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2376,5.1946,6.7312,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2377,3.1340,11.4344,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2378,3.0552,16.5675,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2379,2.9733,21.9922,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +2380,5.1946,6.3830,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2381,3.1340,11.5439,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2382,3.0552,16.8193,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2383,2.9733,22.0784,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2384,5.1946,6.4181,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2385,3.1340,11.4964,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2386,3.0552,16.7252,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2387,2.9733,22.2468,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2388,5.1946,6.6062,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2389,3.1340,11.6669,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2390,3.0552,17.0602,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2391,2.9733,22.5892,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2392,5.1946,6.7181,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2393,3.1340,11.6258,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2394,3.0552,16.8825,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2395,2.9733,22.2608,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2396,5.1946,6.7340,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2397,3.1340,11.3999,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2398,3.0552,16.7478,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2399,2.9733,21.8974,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2400,5.1946,5.7432,0.0566,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +2401,3.1340,9.8825,0.0335,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +2402,3.0552,14.2570,0.0725,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +2403,2.9733,18.6129,0.0162,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +2404,5.1946,6.5124,0.0224,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +2405,3.1340,11.6170,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +2406,3.0552,16.9037,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +2407,2.9733,22.1740,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +2408,5.1946,6.6470,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +2409,3.1340,11.4410,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +2410,3.0552,16.6732,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +2411,2.9733,21.9466,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +2412,5.1946,6.6104,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +2413,3.1340,11.4917,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +2414,3.0552,16.7022,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +2415,2.9733,21.8965,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +2416,5.1946,6.5140,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +2417,3.1340,11.5192,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +2418,3.0552,16.6088,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +2419,2.9733,22.0139,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +2420,5.1946,6.5765,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +2421,3.1340,11.4090,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +2422,3.0552,16.3735,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +2423,2.9733,21.4305,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +2424,5.1946,6.4832,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +2425,3.1340,11.4707,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2426,3.0552,16.7702,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +2427,2.9733,22.3415,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +2428,5.1946,6.3364,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +2429,3.1340,11.3912,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +2430,3.0552,16.7940,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +2431,2.9733,22.1080,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +2432,5.1946,6.4563,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +2433,3.1340,11.5594,0.0573,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +2434,3.0552,16.8668,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +2435,2.9733,22.1133,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +2436,5.1946,6.7304,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +2437,3.1340,11.5405,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +2438,3.0552,16.6947,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +2439,2.9733,21.9740,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +2440,5.1946,6.5995,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +2441,3.1340,11.5535,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +2442,3.0552,16.7835,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +2443,2.9733,21.6687,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +2444,5.1946,6.6731,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +2445,3.1340,11.5750,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +2446,3.0552,16.7874,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +2447,2.9733,22.3386,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +2448,5.1946,6.4646,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +2449,3.1340,11.4408,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +2450,3.0552,16.6719,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +2451,2.9733,22.0106,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +2452,5.1946,6.4365,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +2453,3.1340,11.4830,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +2454,3.0552,16.9052,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +2455,2.9733,22.2324,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +2456,5.1946,6.5765,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2457,3.1340,11.5714,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +2458,3.0552,16.7057,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +2459,2.9733,22.0655,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +2460,5.1946,6.5882,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +2461,3.1340,11.5729,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +2462,3.0552,16.8103,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +2463,2.9733,22.1277,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +2464,5.1946,6.6048,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2465,3.1340,11.5573,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +2466,3.0552,16.7437,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2467,2.9733,22.1744,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2468,5.1946,6.4099,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2469,3.1340,11.5109,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +2470,3.0552,16.8133,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2471,2.9733,22.2084,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2472,5.1946,6.5260,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +2473,3.1340,11.5736,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +2474,3.0552,16.8017,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2475,2.9733,22.1190,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2476,5.1946,6.5520,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2477,3.1340,11.6371,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +2478,3.0552,16.8371,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2479,2.9733,22.1420,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +2480,5.1946,6.5350,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +2481,3.1340,11.5758,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2482,3.0552,16.8512,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +2483,2.9733,22.2165,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +2484,5.1946,6.6183,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +2485,3.1340,11.5285,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2486,3.0552,16.8137,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +2487,2.9733,22.0352,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +2488,5.1946,6.4780,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2489,3.1340,11.5952,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2490,3.0552,16.7462,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +2491,2.9733,22.1444,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +2492,5.1946,6.4643,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2493,3.1340,11.5498,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +2494,3.0552,16.7123,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +2495,2.9733,22.1879,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2496,5.1946,6.5242,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2497,3.1340,11.4291,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2498,3.0552,16.8372,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +2499,2.9733,22.1314,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2500,5.1946,6.4855,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2501,3.1340,11.5604,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2502,3.0552,16.8456,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +2503,2.9733,22.1582,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2504,5.1946,6.5524,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2505,3.1340,11.6055,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2506,3.0552,16.7795,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +2507,2.9733,22.1498,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2508,5.1946,6.5104,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2509,3.1340,11.5384,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2510,3.0552,16.9480,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2511,2.9733,22.2047,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +2512,5.1946,6.5142,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2513,3.1340,11.4672,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2514,3.0552,16.5941,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2515,2.9733,21.9905,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2516,5.1946,6.3430,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2517,3.1340,11.3411,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2518,3.0552,16.9090,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2519,2.9733,22.1619,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +2520,5.1946,6.4996,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2521,3.1340,11.5268,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2522,3.0552,16.7728,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2523,2.9733,22.0712,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2524,5.1946,6.6417,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2525,3.1340,11.4380,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2526,3.0552,16.5250,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2527,2.9733,21.7409,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2528,5.1946,6.2994,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2529,3.1340,11.3970,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2530,3.0552,16.6060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2531,2.9733,21.9025,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2532,5.1946,6.4523,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2533,3.1340,11.5673,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2534,3.0552,16.8115,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +2535,2.9733,22.3764,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2536,5.1946,6.4530,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2537,3.1340,11.4104,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2538,3.0552,16.8533,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +2539,2.9733,22.3439,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +2540,5.1946,6.6813,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2541,3.1340,11.4890,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2542,3.0552,16.6570,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +2543,2.9733,21.9014,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2544,5.1946,6.5977,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2545,3.1340,11.5557,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2546,3.0552,16.7870,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2547,2.9733,22.1453,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +2548,5.1946,6.4826,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2549,3.1340,11.5075,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2550,3.0552,16.5660,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +2551,2.9733,21.5256,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2552,5.1946,6.5650,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2553,3.1340,11.5670,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2554,3.0552,16.8324,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2555,2.9733,22.1704,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2556,5.1946,6.5207,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2557,3.1340,11.4392,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2558,3.0552,16.7965,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2559,2.9733,22.1410,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2560,5.1946,6.5862,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2561,3.1340,11.5104,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2562,3.0552,16.8002,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2563,2.9733,22.1117,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2564,5.1946,6.4909,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2565,3.1340,11.5360,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2566,3.0552,16.7381,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2567,2.9733,22.0870,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2568,5.1946,6.4584,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2569,3.1340,11.4236,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2570,3.0552,16.5778,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2571,2.9733,21.8309,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2572,5.1946,6.7281,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2573,3.1340,11.5500,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2574,3.0552,16.7093,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2575,2.9733,22.1739,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +2576,5.1946,6.5500,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2577,3.1340,11.4477,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2578,3.0552,16.7991,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2579,2.9733,22.0922,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2580,5.1946,6.4660,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2581,3.1340,11.5205,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2582,3.0552,16.8318,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2583,2.9733,22.1867,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2584,5.1946,6.5049,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2585,3.1340,11.5880,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2586,3.0552,16.7994,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2587,2.9733,22.1289,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2588,5.1946,6.6825,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2589,3.1340,11.6226,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2590,3.0552,16.7659,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +2591,2.9733,22.1748,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2592,5.1946,6.5526,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2593,3.1340,11.5322,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2594,3.0552,16.7749,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2595,2.9733,22.2898,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2596,5.1946,6.4495,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2597,3.1340,11.5191,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2598,3.0552,16.8755,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2599,2.9733,22.3519,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2600,5.1946,6.5000,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2601,3.1340,11.5060,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2602,3.0552,16.8016,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2603,2.9733,22.1445,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2604,5.1946,6.4603,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2605,3.1340,11.6337,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2606,3.0552,16.9104,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2607,2.9733,22.3004,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2608,5.1946,6.3762,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2609,3.1340,11.5184,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2610,3.0552,16.7772,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2611,2.9733,22.0540,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2612,5.1946,6.4983,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2613,3.1340,11.4300,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2614,3.0552,16.6363,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2615,2.9733,22.0128,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2616,5.1946,6.5431,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2617,3.1340,11.4963,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2618,3.0552,16.7797,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2619,2.9733,22.1926,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2620,5.1946,6.5888,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2621,3.1340,11.4582,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2622,3.0552,16.7107,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2623,2.9733,21.9950,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2624,5.1946,6.4928,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2625,3.1340,11.6049,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2626,3.0552,16.8942,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2627,2.9733,22.2390,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2628,5.1946,6.4410,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2629,3.1340,11.5126,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2630,3.0552,16.7617,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2631,2.9733,22.1995,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2632,5.1946,6.7819,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2633,3.1340,11.5358,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2634,3.0552,16.7150,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2635,2.9733,22.1345,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2636,5.1946,6.5545,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2637,3.1340,11.5947,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2638,3.0552,16.8065,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +2639,2.9733,22.1109,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2640,5.1946,5.7148,0.0364,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +2641,3.1340,10.0028,0.0370,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +2642,3.0552,14.3806,0.0437,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +2643,2.9733,18.9066,0.0868,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +2644,5.1946,6.6598,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +2645,3.1340,11.5996,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +2646,3.0552,16.8672,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +2647,2.9733,22.3007,0.0283,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +2648,5.1946,6.5342,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +2649,3.1340,11.5075,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +2650,3.0552,16.6894,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +2651,2.9733,21.7988,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +2652,5.1946,6.6570,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +2653,3.1340,11.5662,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +2654,3.0552,16.7834,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +2655,2.9733,22.2441,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +2656,5.1946,6.4839,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +2657,3.1340,11.3805,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +2658,3.0552,16.7109,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +2659,2.9733,22.0560,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +2660,5.1946,6.4483,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +2661,3.1340,11.4963,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +2662,3.0552,16.8251,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +2663,2.9733,22.1382,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +2664,5.1946,6.5691,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +2665,3.1340,11.5902,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2666,3.0552,16.8033,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +2667,2.9733,22.1499,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +2668,5.1946,6.5425,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +2669,3.1340,11.5813,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +2670,3.0552,16.9014,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +2671,2.9733,22.3956,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +2672,5.1946,6.6298,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +2673,3.1340,11.5288,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +2674,3.0552,16.7295,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +2675,2.9733,22.1420,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +2676,5.1946,6.4463,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +2677,3.1340,11.4904,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +2678,3.0552,16.8318,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +2679,2.9733,22.3103,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +2680,5.1946,6.4894,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +2681,3.1340,11.5335,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +2682,3.0552,16.7644,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +2683,2.9733,22.1101,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +2684,5.1946,6.3866,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +2685,3.1340,11.3764,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +2686,3.0552,16.7443,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +2687,2.9733,22.1363,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +2688,5.1946,6.2908,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +2689,3.1340,11.5881,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +2690,3.0552,16.8321,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +2691,2.9733,22.1863,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +2692,5.1946,6.5178,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +2693,3.1340,11.4832,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +2694,3.0552,16.6256,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +2695,2.9733,21.9980,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2696,5.1946,6.5510,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +2697,3.1340,11.5464,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +2698,3.0552,16.8494,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2699,2.9733,22.1675,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2700,5.1946,6.4521,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +2701,3.1340,11.5004,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +2702,3.0552,16.8049,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2703,2.9733,22.1070,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +2704,5.1946,6.5258,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2705,3.1340,11.5618,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +2706,3.0552,16.8068,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2707,2.9733,22.1865,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +2708,5.1946,6.4775,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2709,3.1340,11.5383,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +2710,3.0552,16.7454,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +2711,2.9733,22.0993,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +2712,5.1946,6.6748,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +2713,3.1340,11.5838,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +2714,3.0552,16.6854,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +2715,2.9733,22.1215,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +2716,5.1946,6.5379,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2717,3.1340,11.5443,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +2718,3.0552,16.8560,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +2719,2.9733,22.2851,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2720,5.1946,6.4721,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +2721,3.1340,11.6132,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2722,3.0552,16.8416,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +2723,2.9733,22.1679,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2724,5.1946,6.5415,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +2725,3.1340,11.5330,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2726,3.0552,16.8373,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +2727,2.9733,22.2890,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2728,5.1946,6.3735,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +2729,3.1340,11.5202,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2730,3.0552,16.7732,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2731,2.9733,22.0290,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2732,5.1946,6.5920,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2733,3.1340,11.5537,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +2734,3.0552,16.5459,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2735,2.9733,21.9049,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +2736,5.1946,6.5833,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2737,3.1340,11.6606,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2738,3.0552,16.8696,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2739,2.9733,22.4119,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +2740,5.1946,6.4817,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2741,3.1340,11.6127,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2742,3.0552,16.8452,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2743,2.9733,22.1488,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +2744,5.1946,6.5071,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2745,3.1340,11.4563,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2746,3.0552,16.8804,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2747,2.9733,22.2978,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2748,5.1946,6.3960,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2749,3.1340,11.5339,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2750,3.0552,16.8629,0.0400,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2751,2.9733,22.1950,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2752,5.1946,6.6437,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2753,3.1340,11.5852,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2754,3.0552,16.8443,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +2755,2.9733,22.2115,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2756,5.1946,6.5365,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2757,3.1340,11.5681,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2758,3.0552,16.9837,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2759,2.9733,22.4190,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2760,5.1946,6.7089,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2761,3.1340,11.5230,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2762,3.0552,16.8630,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2763,2.9733,22.1868,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +2764,5.1946,6.4273,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2765,3.1340,11.3257,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2766,3.0552,16.7076,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +2767,2.9733,22.2112,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2768,5.1946,6.4931,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2769,3.1340,11.4847,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2770,3.0552,16.8128,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +2771,2.9733,22.0778,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +2772,5.1946,6.6780,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2773,3.1340,11.5646,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2774,3.0552,16.7323,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2775,2.9733,22.0590,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2776,5.1946,6.6367,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2777,3.1340,11.4213,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2778,3.0552,16.5246,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2779,2.9733,21.9583,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2780,5.1946,6.7027,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2781,3.1340,11.5564,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2782,3.0552,16.6940,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2783,2.9733,22.1175,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2784,5.1946,6.5132,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2785,3.1340,11.4160,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2786,3.0552,16.7696,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2787,2.9733,22.1915,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2788,5.1946,6.4736,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2789,3.1340,11.5370,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2790,3.0552,16.8650,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2791,2.9733,22.2220,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2792,5.1946,6.7571,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2793,3.1340,11.5237,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2794,3.0552,16.7043,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2795,2.9733,22.1258,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2796,5.1946,6.6121,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2797,3.1340,11.5913,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2798,3.0552,16.8051,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +2799,2.9733,22.0310,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +2800,5.1946,6.3519,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2801,3.1340,11.5653,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2802,3.0552,16.6774,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +2803,2.9733,22.0802,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +2804,5.1946,6.2479,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2805,3.1340,11.3858,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2806,3.0552,16.7429,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2807,2.9733,22.0418,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2808,5.1946,6.3754,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2809,3.1340,11.4915,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2810,3.0552,16.7597,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2811,2.9733,22.1060,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2812,5.1946,6.3197,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2813,3.1340,11.5633,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2814,3.0552,16.8373,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +2815,2.9733,22.4198,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2816,5.1946,6.4535,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2817,3.1340,11.4489,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2818,3.0552,16.5291,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2819,2.9733,21.7199,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2820,5.1946,6.5412,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2821,3.1340,11.5905,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2822,3.0552,16.8509,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2823,2.9733,22.4125,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2824,5.1946,6.4293,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2825,3.1340,11.4464,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2826,3.0552,16.7623,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2827,2.9733,22.0465,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +2828,5.1946,6.4366,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2829,3.1340,11.5770,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2830,3.0552,16.8619,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2831,2.9733,22.2667,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2832,5.1946,6.5878,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2833,3.1340,11.5887,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2834,3.0552,16.8870,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2835,2.9733,22.1685,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2836,5.1946,6.4202,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2837,3.1340,11.5008,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2838,3.0552,16.8392,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2839,2.9733,22.0002,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2840,5.1946,6.3720,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2841,3.1340,11.4582,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2842,3.0552,16.7705,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +2843,2.9733,22.2295,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +2844,5.1946,6.3743,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2845,3.1340,11.4455,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2846,3.0552,16.7947,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2847,2.9733,22.0791,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2848,5.1946,6.3800,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2849,3.1340,11.5915,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2850,3.0552,16.8726,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2851,2.9733,22.3600,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2852,5.1946,6.6132,0.0266,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2853,3.1340,11.4772,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2854,3.0552,16.7493,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2855,2.9733,21.9245,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2856,5.1946,6.2443,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2857,3.1340,11.4699,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2858,3.0552,16.8698,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +2859,2.9733,22.3304,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2860,5.1946,6.4820,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2861,3.1340,11.6087,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2862,3.0552,16.9071,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2863,2.9733,22.4295,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2864,5.1946,6.4798,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2865,3.1340,11.4795,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2866,3.0552,16.8392,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2867,2.9733,22.1530,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2868,5.1946,6.4892,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2869,3.1340,11.6014,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2870,3.0552,16.9305,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2871,2.9733,22.2603,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2872,5.1946,6.3850,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2873,3.1340,11.4838,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2874,3.0552,16.8865,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2875,2.9733,22.2890,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2876,5.1946,6.4898,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2877,3.1340,11.5275,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2878,3.0552,16.7962,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2879,2.9733,22.1481,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2880,5.1946,19.4461,0.0117,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2881,3.1340,17.5622,0.0083,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2882,3.0552,16.4526,0.0064,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2883,2.9733,16.8898,0.0105,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2884,5.1946,5.9742,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +2885,3.1340,11.3732,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +2886,3.0552,16.8320,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +2887,2.9733,22.3241,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +2888,5.1946,6.0753,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +2889,3.1340,11.3159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +2890,3.0552,16.7978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +2891,2.9733,22.3267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +2892,5.1946,6.1488,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +2893,3.1340,11.4824,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +2894,3.0552,16.9703,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +2895,2.9733,22.5715,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +2896,5.1946,6.1983,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +2897,3.1340,11.4440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +2898,3.0552,16.9135,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +2899,2.9733,22.3803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +2900,5.1946,6.1836,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +2901,3.1340,11.4410,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +2902,3.0552,16.8225,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +2903,2.9733,22.3894,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +2904,5.1946,6.1828,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +2905,3.1340,11.4384,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +2906,3.0552,16.8139,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +2907,2.9733,22.2832,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +2908,5.1946,6.1990,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +2909,3.1340,11.4785,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +2910,3.0552,16.9647,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +2911,2.9733,22.4793,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +2912,5.1946,6.2025,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +2913,3.1340,11.4503,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +2914,3.0552,16.7834,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +2915,2.9733,22.2725,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +2916,5.1946,6.3348,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +2917,3.1340,11.4916,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +2918,3.0552,16.7551,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +2919,2.9733,22.0198,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +2920,5.1946,6.3270,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +2921,3.1340,11.4533,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +2922,3.0552,16.7224,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +2923,2.9733,22.2185,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +2924,5.1946,6.4344,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +2925,3.1340,11.4489,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +2926,3.0552,16.8845,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +2927,2.9733,22.2777,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +2928,5.1946,6.3418,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +2929,3.1340,11.4977,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +2930,3.0552,16.7809,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2931,2.9733,22.1142,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +2932,5.1946,6.4742,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +2933,3.1340,11.5098,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +2934,3.0552,16.8281,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2935,2.9733,22.3785,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +2936,5.1946,6.5596,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +2937,3.1340,11.5973,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +2938,3.0552,16.3799,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +2939,2.9733,20.7918,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2940,5.1946,6.5010,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +2941,3.1340,11.6162,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +2942,3.0552,16.9770,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2943,2.9733,22.4882,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2944,5.1946,6.5615,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +2945,3.1340,11.4675,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +2946,3.0552,16.7445,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +2947,2.9733,22.0171,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +2948,5.1946,6.4661,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +2949,3.1340,11.6653,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +2950,3.0552,16.8414,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2951,2.9733,22.1580,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +2952,5.1946,6.2477,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +2953,3.1340,11.5179,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +2954,3.0552,16.8718,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +2955,2.9733,22.3738,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +2956,5.1946,6.2792,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2957,3.1340,11.4287,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +2958,3.0552,16.8278,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2959,2.9733,22.0870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +2960,5.1946,6.3636,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +2961,3.1340,11.4920,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +2962,3.0552,16.6667,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +2963,2.9733,22.2375,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +2964,5.1946,6.5330,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +2965,3.1340,11.4586,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +2966,3.0552,16.9447,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +2967,2.9733,22.4863,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2968,5.1946,6.4245,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2969,3.1340,11.5249,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2970,3.0552,16.8535,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2971,2.9733,22.0748,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2972,5.1946,6.5965,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +2973,3.1340,11.6323,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2974,3.0552,16.9249,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2975,2.9733,22.4310,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2976,5.1946,6.6355,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +2977,3.1340,11.5235,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2978,3.0552,16.4787,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2979,2.9733,21.5849,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +2980,5.1946,6.5729,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2981,3.1340,11.5256,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2982,3.0552,16.6484,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +2983,2.9733,21.9308,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +2984,5.1946,6.5620,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +2985,3.1340,11.4929,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2986,3.0552,16.7759,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2987,2.9733,22.1021,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2988,5.1946,6.6258,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +2989,3.1340,11.6073,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2990,3.0552,16.8032,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +2991,2.9733,22.1101,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2992,5.1946,6.5162,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +2993,3.1340,11.5325,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2994,3.0552,16.7431,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +2995,2.9733,22.0263,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2996,5.1946,6.5626,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +2997,3.1340,11.5091,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2998,3.0552,16.7875,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +2999,2.9733,22.0887,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3000,5.1946,6.6658,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3001,3.1340,11.5214,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3002,3.0552,16.6750,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3003,2.9733,21.8900,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3004,5.1946,6.5294,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3005,3.1340,11.5169,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3006,3.0552,16.7327,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +3007,2.9733,22.0860,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +3008,5.1946,6.3057,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3009,3.1340,11.4526,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3010,3.0552,16.8635,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3011,2.9733,22.2945,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +3012,5.1946,6.5208,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3013,3.1340,11.6735,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3014,3.0552,16.8707,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3015,2.9733,22.2351,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +3016,5.1946,6.5904,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3017,3.1340,11.4676,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3018,3.0552,16.5066,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3019,2.9733,21.6388,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3020,5.1946,6.4661,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3021,3.1340,11.5403,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3022,3.0552,16.7897,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +3023,2.9733,22.3779,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3024,5.1946,6.4621,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3025,3.1340,11.5809,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3026,3.0552,16.8565,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3027,2.9733,22.2449,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3028,5.1946,6.4970,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3029,3.1340,11.5650,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3030,3.0552,17.1233,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3031,2.9733,22.5950,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3032,5.1946,6.7503,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3033,3.1340,11.4868,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3034,3.0552,16.8523,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3035,2.9733,22.1282,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3036,5.1946,6.6018,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3037,3.1340,11.4214,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3038,3.0552,16.6567,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3039,2.9733,21.9524,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3040,5.1946,6.4787,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3041,3.1340,11.4455,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3042,3.0552,16.8646,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +3043,2.9733,22.1846,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3044,5.1946,6.5452,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3045,3.1340,11.5218,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3046,3.0552,15.9467,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3047,2.9733,20.6253,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3048,5.1946,6.4647,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3049,3.1340,11.5708,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3050,3.0552,16.8169,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +3051,2.9733,22.1790,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3052,5.1946,6.4736,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3053,3.1340,11.4340,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3054,3.0552,16.8063,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3055,2.9733,22.0587,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3056,5.1946,6.4049,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3057,3.1340,11.5222,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3058,3.0552,16.8573,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3059,2.9733,22.2804,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3060,5.1946,6.6687,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3061,3.1340,11.5815,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3062,3.0552,16.8139,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3063,2.9733,22.1369,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3064,5.1946,6.5540,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3065,3.1340,11.4661,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3066,3.0552,16.6970,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3067,2.9733,22.0862,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +3068,5.1946,6.6656,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3069,3.1340,11.5198,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3070,3.0552,16.3351,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3071,2.9733,21.7693,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +3072,5.1946,6.4457,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3073,3.1340,11.3935,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3074,3.0552,16.6876,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3075,2.9733,22.0399,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3076,5.1946,6.5080,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3077,3.1340,11.4495,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3078,3.0552,16.8266,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +3079,2.9733,22.1542,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3080,5.1946,6.5190,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3081,3.1340,11.4987,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3082,3.0552,16.7998,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +3083,2.9733,22.2524,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3084,5.1946,6.6208,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3085,3.1340,11.5754,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3086,3.0552,16.8073,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3087,2.9733,22.2595,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3088,5.1946,6.6851,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3089,3.1340,11.4956,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3090,3.0552,16.6673,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3091,2.9733,22.1976,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +3092,5.1946,6.5704,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3093,3.1340,11.5183,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3094,3.0552,16.8033,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +3095,2.9733,22.2174,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3096,5.1946,6.5132,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3097,3.1340,11.5561,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3098,3.0552,16.8583,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3099,2.9733,22.1743,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +3100,5.1946,6.5561,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3101,3.1340,11.5405,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3102,3.0552,16.9001,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +3103,2.9733,22.2438,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3104,5.1946,6.5313,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3105,3.1340,11.5037,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3106,3.0552,16.6727,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3107,2.9733,21.9827,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3108,5.1946,6.7287,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3109,3.1340,11.5634,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3110,3.0552,16.7439,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3111,2.9733,22.1205,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3112,5.1946,6.5747,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3113,3.1340,11.4650,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3114,3.0552,16.7823,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3115,2.9733,22.1565,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3116,5.1946,6.5267,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3117,3.1340,11.5554,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3118,3.0552,16.9588,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3119,2.9733,22.3140,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3120,5.1946,5.7585,0.0316,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +3121,3.1340,9.6908,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +3122,3.0552,14.2915,0.0348,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +3123,2.9733,18.6264,0.0568,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +3124,5.1946,6.6970,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +3125,3.1340,11.3780,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +3126,3.0552,16.4573,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +3127,2.9733,21.3135,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +3128,5.1946,6.3639,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +3129,3.1340,11.5777,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +3130,3.0552,16.8113,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +3131,2.9733,22.3186,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +3132,5.1946,6.3546,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +3133,3.1340,11.4214,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +3134,3.0552,16.8192,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +3135,2.9733,22.3049,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +3136,5.1946,6.3989,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +3137,3.1340,11.5835,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +3138,3.0552,16.9409,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +3139,2.9733,22.3424,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +3140,5.1946,6.7689,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +3141,3.1340,11.5478,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +3142,3.0552,16.6706,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +3143,2.9733,21.9160,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +3144,5.1946,6.7503,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +3145,3.1340,11.4893,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3146,3.0552,16.3195,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +3147,2.9733,21.3488,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +3148,5.1946,6.4130,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +3149,3.1340,11.4370,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +3150,3.0552,16.6753,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +3151,2.9733,22.0582,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +3152,5.1946,6.3845,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +3153,3.1340,11.4392,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +3154,3.0552,16.8310,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +3155,2.9733,22.3003,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +3156,5.1946,6.3558,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +3157,3.1340,11.4807,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +3158,3.0552,16.8594,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +3159,2.9733,22.3063,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +3160,5.1946,6.4280,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +3161,3.1340,11.5126,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +3162,3.0552,16.8015,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +3163,2.9733,22.2182,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3164,5.1946,6.6427,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +3165,3.1340,11.5931,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +3166,3.0552,16.6439,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +3167,2.9733,21.9277,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +3168,5.1946,6.7858,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +3169,3.1340,11.6275,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +3170,3.0552,16.6408,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +3171,2.9733,22.0274,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +3172,5.1946,6.5841,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +3173,3.1340,11.4297,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +3174,3.0552,16.5109,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +3175,2.9733,21.7648,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +3176,5.1946,6.4490,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3177,3.1340,11.5560,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +3178,3.0552,16.8367,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +3179,2.9733,22.2288,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +3180,5.1946,6.3425,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3181,3.1340,11.4434,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +3182,3.0552,16.9033,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +3183,2.9733,22.4068,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +3184,5.1946,6.3440,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3185,3.1340,11.4781,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +3186,3.0552,16.7810,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3187,2.9733,22.3357,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3188,5.1946,6.7760,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3189,3.1340,11.5271,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +3190,3.0552,16.6228,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3191,2.9733,21.9468,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3192,5.1946,6.7321,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +3193,3.1340,11.4899,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +3194,3.0552,16.7499,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3195,2.9733,21.8822,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3196,5.1946,6.6490,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3197,3.1340,11.9828,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +3198,3.0552,17.0670,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3199,2.9733,22.5556,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +3200,5.1946,6.5587,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3201,3.1340,11.5631,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +3202,3.0552,16.9916,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +3203,2.9733,22.4106,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +3204,5.1946,6.3179,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +3205,3.1340,11.4737,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3206,3.0552,16.9345,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +3207,2.9733,22.2817,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +3208,5.1946,6.4272,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +3209,3.1340,11.6781,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3210,3.0552,16.9559,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +3211,2.9733,22.4867,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +3212,5.1946,6.5954,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3213,3.1340,11.6454,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +3214,3.0552,16.6403,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +3215,2.9733,21.0763,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3216,5.1946,6.5150,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3217,3.1340,11.7803,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3218,3.0552,16.8956,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +3219,2.9733,22.3360,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3220,5.1946,6.4567,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3221,3.1340,11.3945,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3222,3.0552,16.4093,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +3223,2.9733,21.8222,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3224,5.1946,6.3742,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3225,3.1340,11.4898,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3226,3.0552,16.8760,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +3227,2.9733,22.2204,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3228,5.1946,6.3847,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3229,3.1340,11.5215,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3230,3.0552,16.8450,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3231,2.9733,22.4225,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3232,5.1946,6.7935,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3233,3.1340,11.6240,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3234,3.0552,16.6377,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3235,2.9733,21.7521,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3236,5.1946,6.8214,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3237,3.1340,11.6317,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3238,3.0552,16.5170,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3239,2.9733,21.9290,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +3240,5.1946,6.7482,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3241,3.1340,11.4419,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3242,3.0552,16.7882,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3243,2.9733,21.9029,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3244,5.1946,6.5297,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3245,3.1340,11.6112,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3246,3.0552,16.8632,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3247,2.9733,22.1918,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3248,5.1946,6.6410,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3249,3.1340,11.5866,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3250,3.0552,16.9129,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3251,2.9733,22.2320,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3252,5.1946,6.5297,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3253,3.1340,11.5571,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3254,3.0552,16.7174,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +3255,2.9733,22.1903,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3256,5.1946,6.6063,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3257,3.1340,11.5924,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3258,3.0552,16.8207,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +3259,2.9733,22.4434,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +3260,5.1946,6.4983,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3261,3.1340,11.5736,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3262,3.0552,16.8715,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +3263,2.9733,22.2316,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3264,5.1946,6.5254,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3265,3.1340,11.8437,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3266,3.0552,16.8770,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3267,2.9733,22.2080,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +3268,5.1946,6.8835,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3269,3.1340,11.4810,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3270,3.0552,16.7168,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +3271,2.9733,21.9812,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3272,5.1946,6.4845,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3273,3.1340,11.5382,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3274,3.0552,16.8704,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +3275,2.9733,22.1369,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3276,5.1946,6.7252,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3277,3.1340,11.5722,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3278,3.0552,16.7803,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3279,2.9733,22.1451,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3280,5.1946,6.5502,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3281,3.1340,11.4586,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3282,3.0552,16.5470,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3283,2.9733,21.9245,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3284,5.1946,6.7568,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3285,3.1340,11.5542,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3286,3.0552,16.0706,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3287,2.9733,21.4650,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3288,5.1946,6.6472,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3289,3.1340,11.4418,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3290,3.0552,16.8127,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3291,2.9733,22.2802,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3292,5.1946,6.5373,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3293,3.1340,11.5242,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3294,3.0552,16.8185,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3295,2.9733,22.1998,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +3296,5.1946,6.6291,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3297,3.1340,11.6701,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3298,3.0552,16.8683,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3299,2.9733,22.3139,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3300,5.1946,6.4807,0.0261,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3301,3.1340,11.5892,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3302,3.0552,16.9477,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +3303,2.9733,22.3131,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3304,5.1946,6.4794,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3305,3.1340,11.5938,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3306,3.0552,16.7123,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3307,2.9733,22.2057,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3308,5.1946,6.5745,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3309,3.1340,11.5363,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3310,3.0552,17.0080,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +3311,2.9733,22.4630,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3312,5.1946,6.6371,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3313,3.1340,11.6572,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3314,3.0552,17.1097,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +3315,2.9733,22.4232,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3316,5.1946,6.5697,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3317,3.1340,11.6205,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3318,3.0552,16.9587,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3319,2.9733,22.2616,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3320,5.1946,6.4056,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3321,3.1340,11.5256,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3322,3.0552,16.8329,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3323,2.9733,22.0328,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3324,5.1946,6.7192,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3325,3.1340,11.5109,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3326,3.0552,16.7051,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3327,2.9733,22.1106,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3328,5.1946,6.5219,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3329,3.1340,11.4113,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3330,3.0552,16.5955,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3331,2.9733,22.0604,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3332,5.1946,6.4981,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3333,3.1340,11.5154,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3334,3.0552,16.7246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3335,2.9733,22.1976,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3336,5.1946,6.5922,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3337,3.1340,11.4479,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3338,3.0552,16.9052,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3339,2.9733,22.3705,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3340,5.1946,6.5855,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3341,3.1340,11.4908,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3342,3.0552,16.8369,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3343,2.9733,22.1875,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3344,5.1946,6.5495,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3345,3.1340,11.5147,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3346,3.0552,16.6252,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3347,2.9733,21.9541,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3348,5.1946,6.4985,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3349,3.1340,11.4038,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3350,3.0552,16.6377,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3351,2.9733,22.0476,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3352,5.1946,6.5401,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3353,3.1340,11.5820,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3354,3.0552,16.8563,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3355,2.9733,22.2874,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3356,5.1946,6.5383,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3357,3.1340,11.4126,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3358,3.0552,16.8159,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +3359,2.9733,22.1670,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3360,5.1946,5.7811,0.0467,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +3361,3.1340,9.8229,0.0447,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +3362,3.0552,14.1037,0.0433,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +3363,2.9733,18.6217,0.0165,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +3364,5.1946,6.5274,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +3365,3.1340,11.6199,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +3366,3.0552,16.8819,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +3367,2.9733,22.4501,0.0423,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +3368,5.1946,6.5474,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +3369,3.1340,11.4382,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +3370,3.0552,16.8420,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +3371,2.9733,22.1899,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +3372,5.1946,6.5218,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +3373,3.1340,11.5799,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +3374,3.0552,16.9701,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +3375,2.9733,22.2194,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +3376,5.1946,6.5033,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +3377,3.1340,11.7145,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +3378,3.0552,16.9139,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +3379,2.9733,22.3326,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +3380,5.1946,6.6555,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +3381,3.1340,11.4605,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +3382,3.0552,16.6896,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +3383,2.9733,21.9652,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +3384,5.1946,6.7548,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +3385,3.1340,11.5980,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3386,3.0552,16.7933,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +3387,2.9733,22.2943,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +3388,5.1946,6.6010,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +3389,3.1340,11.5545,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +3390,3.0552,16.8323,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +3391,2.9733,21.9502,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +3392,5.1946,6.5545,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +3393,3.1340,11.6022,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +3394,3.0552,16.9514,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +3395,2.9733,22.3972,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +3396,5.1946,6.5390,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +3397,3.1340,11.5051,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +3398,3.0552,16.8121,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +3399,2.9733,22.2123,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +3400,5.1946,6.5315,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +3401,3.1340,11.5210,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +3402,3.0552,16.8436,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +3403,2.9733,21.9946,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +3404,5.1946,6.5458,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +3405,3.1340,11.6596,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +3406,3.0552,16.7619,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +3407,2.9733,22.1667,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +3408,5.1946,6.5752,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +3409,3.1340,11.4827,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +3410,3.0552,16.7790,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +3411,2.9733,22.2433,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +3412,5.1946,6.6158,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +3413,3.1340,11.6809,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +3414,3.0552,16.9456,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +3415,2.9733,22.3691,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3416,5.1946,6.6050,0.0275,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3417,3.1340,11.4147,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +3418,3.0552,16.7991,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +3419,2.9733,22.1833,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +3420,5.1946,6.5106,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3421,3.1340,11.6092,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +3422,3.0552,16.8678,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +3423,2.9733,22.1253,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +3424,5.1946,6.7976,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3425,3.1340,11.5524,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +3426,3.0552,16.7049,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +3427,2.9733,22.1437,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +3428,5.1946,6.6355,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3429,3.1340,11.6672,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +3430,3.0552,16.9177,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +3431,2.9733,22.5116,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +3432,5.1946,6.6920,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +3433,3.1340,11.5547,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +3434,3.0552,16.7130,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +3435,2.9733,22.2011,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +3436,5.1946,6.6068,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3437,3.1340,11.4504,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +3438,3.0552,16.8162,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +3439,2.9733,22.2394,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3440,5.1946,6.5363,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3441,3.1340,11.5350,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +3442,3.0552,16.8675,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +3443,2.9733,22.2100,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3444,5.1946,6.5585,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +3445,3.1340,11.6220,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3446,3.0552,16.8608,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +3447,2.9733,22.4337,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3448,5.1946,6.6503,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +3449,3.1340,11.5298,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3450,3.0552,16.7235,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3451,2.9733,21.9274,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +3452,5.1946,6.6860,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3453,3.1340,11.5453,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +3454,3.0552,16.6580,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3455,2.9733,22.1185,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +3456,5.1946,6.6225,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3457,3.1340,11.5349,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3458,3.0552,16.9409,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3459,2.9733,22.4735,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +3460,5.1946,6.5002,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3461,3.1340,11.5183,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3462,3.0552,16.7770,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3463,2.9733,22.0000,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +3464,5.1946,6.1655,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3465,3.1340,11.3259,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3466,3.0552,16.7410,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3467,2.9733,22.2086,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3468,5.1946,6.3241,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3469,3.1340,11.4624,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3470,3.0552,16.6810,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3471,2.9733,22.0709,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3472,5.1946,6.4195,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3473,3.1340,11.4277,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3474,3.0552,16.8511,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +3475,2.9733,22.3295,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3476,5.1946,6.4189,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3477,3.1340,11.7094,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3478,3.0552,16.9478,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +3479,2.9733,22.3547,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3480,5.1946,6.2527,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3481,3.1340,11.4768,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3482,3.0552,16.6257,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +3483,2.9733,22.1220,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +3484,5.1946,6.4019,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3485,3.1340,11.4892,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3486,3.0552,16.8137,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +3487,2.9733,22.2568,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +3488,5.1946,6.4145,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3489,3.1340,11.5419,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3490,3.0552,16.7486,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +3491,2.9733,22.0138,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +3492,5.1946,6.4981,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3493,3.1340,11.5690,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3494,3.0552,16.8087,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3495,2.9733,22.2880,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3496,5.1946,6.3912,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3497,3.1340,11.4399,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3498,3.0552,16.7214,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3499,2.9733,22.0786,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3500,5.1946,6.5255,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3501,3.1340,11.6140,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3502,3.0552,16.8862,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3503,2.9733,22.3092,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3504,5.1946,6.5760,0.0380,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3505,3.1340,11.6471,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3506,3.0552,16.9303,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3507,2.9733,22.5530,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3508,5.1946,6.5427,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3509,3.1340,11.5152,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3510,3.0552,16.7464,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +3511,2.9733,22.0694,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3512,5.1946,6.5011,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3513,3.1340,11.4619,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3514,3.0552,16.8183,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3515,2.9733,22.1020,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3516,5.1946,6.4712,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3517,3.1340,11.5200,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3518,3.0552,16.8603,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +3519,2.9733,21.9789,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +3520,5.1946,6.3620,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3521,3.1340,11.4592,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3522,3.0552,16.7557,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +3523,2.9733,22.2439,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +3524,5.1946,6.9120,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3525,3.1340,11.5011,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3526,3.0552,16.5944,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3527,2.9733,21.7778,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3528,5.1946,6.5212,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3529,3.1340,11.5776,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3530,3.0552,16.8038,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +3531,2.9733,22.1578,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3532,5.1946,6.4404,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3533,3.1340,11.4792,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3534,3.0552,16.7695,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +3535,2.9733,22.1555,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3536,5.1946,6.4884,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3537,3.1340,11.0012,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3538,3.0552,16.2284,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3539,2.9733,21.3718,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +3540,5.1946,6.5988,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3541,3.1340,11.5833,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3542,3.0552,16.8887,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3543,2.9733,22.2555,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +3544,5.1946,6.4607,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3545,3.1340,11.4395,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3546,3.0552,16.8985,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3547,2.9733,22.3646,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +3548,5.1946,6.4042,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3549,3.1340,11.5229,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3550,3.0552,16.7967,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3551,2.9733,22.1580,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3552,5.1946,6.3997,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3553,3.1340,11.4720,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3554,3.0552,16.7928,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3555,2.9733,22.2050,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3556,5.1946,6.4599,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3557,3.1340,10.8423,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3558,3.0552,16.3702,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3559,2.9733,20.9165,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3560,5.1946,6.5484,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3561,3.1340,11.6108,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3562,3.0552,16.9712,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3563,2.9733,22.4787,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +3564,5.1946,6.5321,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3565,3.1340,11.4761,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3566,3.0552,16.8741,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3567,2.9733,22.2207,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3568,5.1946,6.3720,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3569,3.1340,11.5445,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3570,3.0552,16.9162,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +3571,2.9733,22.3818,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3572,5.1946,6.4670,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3573,3.1340,11.4603,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3574,3.0552,16.7045,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3575,2.9733,22.3300,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +3576,5.1946,6.4541,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3577,3.1340,11.4353,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3578,3.0552,16.5532,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +3579,2.9733,21.8188,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3580,5.1946,7.0492,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3581,3.1340,11.4995,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3582,3.0552,16.6735,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3583,2.9733,22.1242,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3584,5.1946,6.4658,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3585,3.1340,11.5150,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3586,3.0552,16.7827,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3587,2.9733,21.9758,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3588,5.1946,6.4289,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3589,3.1340,11.5358,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3590,3.0552,16.8006,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3591,2.9733,22.2140,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3592,5.1946,7.5752,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3593,3.1340,11.5510,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3594,3.0552,16.9153,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3595,2.9733,23.3057,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3596,5.1946,6.4760,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3597,3.1340,11.5612,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3598,3.0552,16.7505,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3599,2.9733,21.6809,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3600,5.1946,19.8204,0.0101,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +3601,3.1340,17.7912,0.0114,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +3602,3.0552,17.3323,0.0064,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3603,2.9733,16.8493,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +3604,5.1946,6.1262,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +3605,3.1340,11.4560,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +3606,3.0552,16.9761,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +3607,2.9733,22.5033,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +3608,5.1946,6.0819,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +3609,3.1340,11.3570,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +3610,3.0552,16.9128,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +3611,2.9733,22.4389,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +3612,5.1946,6.0645,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +3613,3.1340,11.4940,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +3614,3.0552,16.9655,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +3615,2.9733,22.4810,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +3616,5.1946,6.1940,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +3617,3.1340,11.5253,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +3618,3.0552,16.9400,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +3619,2.9733,22.3435,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +3620,5.1946,6.1743,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +3621,3.1340,11.4711,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +3622,3.0552,16.8729,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +3623,2.9733,22.4255,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +3624,5.1946,6.1423,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +3625,3.1340,11.4028,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +3626,3.0552,16.8271,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +3627,2.9733,22.2840,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +3628,5.1946,6.2435,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +3629,3.1340,11.4740,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +3630,3.0552,16.9205,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +3631,2.9733,22.3032,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +3632,5.1946,6.1419,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +3633,3.1340,11.4457,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +3634,3.0552,16.9270,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +3635,2.9733,22.3372,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +3636,5.1946,6.3351,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +3637,3.1340,11.4502,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +3638,3.0552,16.7919,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +3639,2.9733,22.1017,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +3640,5.1946,6.6470,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +3641,3.1340,11.6194,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +3642,3.0552,16.9569,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +3643,2.9733,22.6016,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +3644,5.1946,6.4286,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +3645,3.1340,11.3567,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +3646,3.0552,16.6590,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3647,2.9733,22.0018,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +3648,5.1946,6.4458,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +3649,3.1340,11.5467,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +3650,3.0552,16.7527,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3651,2.9733,22.0683,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +3652,5.1946,6.5642,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +3653,3.1340,11.6481,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +3654,3.0552,16.8050,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +3655,2.9733,22.1859,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +3656,5.1946,6.6100,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +3657,3.1340,11.4635,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +3658,3.0552,16.4982,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +3659,2.9733,21.7475,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3660,5.1946,6.7436,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +3661,3.1340,11.6109,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +3662,3.0552,16.6677,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3663,2.9733,21.9144,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +3664,5.1946,6.5657,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +3665,3.1340,11.5585,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +3666,3.0552,16.7209,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +3667,2.9733,22.0593,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +3668,5.1946,6.5046,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +3669,3.1340,11.5150,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +3670,3.0552,16.7331,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3671,2.9733,22.1016,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +3672,5.1946,6.3844,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +3673,3.1340,11.4993,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +3674,3.0552,16.8267,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +3675,2.9733,22.1677,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +3676,5.1946,6.5733,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3677,3.1340,11.4862,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +3678,3.0552,16.7533,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +3679,2.9733,22.0547,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +3680,5.1946,6.7950,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +3681,3.1340,11.5205,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +3682,3.0552,16.6066,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +3683,2.9733,21.8415,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3684,5.1946,6.2978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +3685,3.1340,11.4145,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +3686,3.0552,16.8302,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +3687,2.9733,22.1106,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3688,5.1946,6.4875,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +3689,3.1340,11.7651,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3690,3.0552,16.9135,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3691,2.9733,22.3598,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3692,5.1946,6.4291,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +3693,3.1340,11.4576,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3694,3.0552,16.7395,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3695,2.9733,22.0396,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +3696,5.1946,6.4656,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +3697,3.1340,11.4689,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3698,3.0552,16.6687,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +3699,2.9733,21.9908,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +3700,5.1946,6.5810,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +3701,3.1340,11.5507,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3702,3.0552,16.7611,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +3703,2.9733,22.3022,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +3704,5.1946,6.4497,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +3705,3.1340,11.5012,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3706,3.0552,16.8508,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3707,2.9733,22.2218,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +3708,5.1946,6.4560,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +3709,3.1340,11.8375,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3710,3.0552,16.9112,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +3711,2.9733,22.4173,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3712,5.1946,6.5312,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +3713,3.1340,11.5580,0.0298,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3714,3.0552,16.8202,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +3715,2.9733,22.2153,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3716,5.1946,6.5264,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +3717,3.1340,11.4748,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3718,3.0552,16.5564,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +3719,2.9733,21.8404,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +3720,5.1946,6.5877,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3721,3.1340,11.5205,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3722,3.0552,16.6992,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3723,2.9733,22.1569,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +3724,5.1946,6.4959,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3725,3.1340,11.5032,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3726,3.0552,16.8251,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +3727,2.9733,22.2559,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +3728,5.1946,6.4673,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3729,3.1340,11.5105,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3730,3.0552,16.8919,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3731,2.9733,22.2718,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +3732,5.1946,6.5467,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3733,3.1340,11.3402,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3734,3.0552,16.5355,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3735,2.9733,21.7658,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +3736,5.1946,6.4974,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3737,3.1340,11.6217,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3738,3.0552,16.8716,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3739,2.9733,22.1987,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3740,5.1946,6.4753,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3741,3.1340,11.6032,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3742,3.0552,16.7676,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +3743,2.9733,22.0864,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3744,5.1946,6.5021,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3745,3.1340,11.4744,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3746,3.0552,16.7655,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3747,2.9733,22.1226,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3748,5.1946,6.4845,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3749,3.1340,11.5888,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3750,3.0552,16.9259,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +3751,2.9733,22.4692,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3752,5.1946,6.4474,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3753,3.1340,11.3900,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3754,3.0552,16.7817,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3755,2.9733,22.0650,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3756,5.1946,6.4855,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3757,3.1340,11.6546,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3758,3.0552,16.9014,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +3759,2.9733,22.3381,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3760,5.1946,6.6380,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3761,3.1340,11.5413,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3762,3.0552,16.5535,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +3763,2.9733,21.9033,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +3764,5.1946,6.5433,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3765,3.1340,11.5201,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3766,3.0552,16.9018,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +3767,2.9733,21.8077,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3768,5.1946,6.5403,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3769,3.1340,11.4922,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3770,3.0552,16.6867,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +3771,2.9733,22.1626,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3772,5.1946,6.5010,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3773,3.1340,11.4936,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3774,3.0552,16.7616,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3775,2.9733,22.0620,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3776,5.1946,6.4088,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3777,3.1340,11.5025,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3778,3.0552,16.7728,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3779,2.9733,22.0832,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3780,5.1946,6.4916,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3781,3.1340,11.5595,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3782,3.0552,16.6954,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3783,2.9733,22.0053,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3784,5.1946,6.5417,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3785,3.1340,11.4415,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3786,3.0552,16.6588,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3787,2.9733,22.0012,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +3788,5.1946,6.5169,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3789,3.1340,11.5295,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3790,3.0552,16.7355,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3791,2.9733,22.1151,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +3792,5.1946,6.4134,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3793,3.1340,11.4527,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3794,3.0552,16.8237,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3795,2.9733,22.2580,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3796,5.1946,6.4403,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3797,3.1340,11.4748,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3798,3.0552,16.8201,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +3799,2.9733,22.1131,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3800,5.1946,6.3925,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3801,3.1340,11.5391,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3802,3.0552,16.7962,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +3803,2.9733,22.1389,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3804,5.1946,6.5807,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3805,3.1340,11.5728,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3806,3.0552,16.7425,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +3807,2.9733,22.1909,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +3808,5.1946,6.5994,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3809,3.1340,11.5928,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3810,3.0552,16.7380,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +3811,2.9733,22.0621,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +3812,5.1946,6.4354,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3813,3.1340,11.4592,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3814,3.0552,16.8326,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +3815,2.9733,22.2593,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3816,5.1946,6.4809,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3817,3.1340,11.5003,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3818,3.0552,16.8250,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3819,2.9733,22.1683,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +3820,5.1946,6.4812,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3821,3.1340,11.5202,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3822,3.0552,16.7134,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +3823,2.9733,22.0928,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3824,5.1946,6.6260,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3825,3.1340,11.5430,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3826,3.0552,16.7074,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3827,2.9733,22.1450,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3828,5.1946,6.5756,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3829,3.1340,11.5363,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3830,3.0552,16.7255,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +3831,2.9733,22.1260,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3832,5.1946,6.5046,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3833,3.1340,11.4820,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3834,3.0552,16.7900,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +3835,2.9733,22.1753,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +3836,5.1946,6.4778,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3837,3.1340,11.5452,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3838,3.0552,16.8060,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +3839,2.9733,22.0970,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +3840,5.1946,5.5218,0.0253,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +3841,3.1340,9.7308,0.0168,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +3842,3.0552,14.3570,0.0595,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +3843,2.9733,18.6530,0.0156,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +3844,5.1946,6.2822,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +3845,3.1340,11.4523,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +3846,3.0552,16.6923,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +3847,2.9733,22.0192,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +3848,5.1946,6.2464,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +3849,3.1340,11.5217,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +3850,3.0552,17.0705,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +3851,2.9733,22.4507,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +3852,5.1946,6.7586,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +3853,3.1340,11.5148,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +3854,3.0552,16.6692,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +3855,2.9733,22.3710,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +3856,5.1946,6.5966,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +3857,3.1340,11.5406,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +3858,3.0552,16.6713,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +3859,2.9733,21.8428,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +3860,5.1946,6.5300,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +3861,3.1340,11.5394,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +3862,3.0552,16.8418,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +3863,2.9733,22.4142,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +3864,5.1946,6.6318,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +3865,3.1340,11.6760,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +3866,3.0552,16.9676,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +3867,2.9733,22.5040,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +3868,5.1946,6.8752,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +3869,3.1340,11.6232,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +3870,3.0552,16.8326,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +3871,2.9733,22.1636,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +3872,5.1946,6.6860,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +3873,3.1340,11.4910,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +3874,3.0552,16.8395,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +3875,2.9733,22.2220,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +3876,5.1946,6.5150,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +3877,3.1340,11.6322,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +3878,3.0552,16.7179,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +3879,2.9733,21.9627,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +3880,5.1946,6.5000,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +3881,3.1340,11.5307,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +3882,3.0552,16.8340,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +3883,2.9733,22.3779,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +3884,5.1946,6.6516,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +3885,3.1340,11.6031,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +3886,3.0552,16.7205,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +3887,2.9733,22.1745,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +3888,5.1946,6.8490,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +3889,3.1340,11.6403,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +3890,3.0552,16.7213,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +3891,2.9733,22.1722,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +3892,5.1946,6.6771,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +3893,3.1340,11.3894,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +3894,3.0552,16.6379,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +3895,2.9733,21.9912,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +3896,5.1946,6.6057,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +3897,3.1340,11.4843,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +3898,3.0552,16.9208,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +3899,2.9733,22.1542,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +3900,5.1946,6.5995,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3901,3.1340,11.5204,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +3902,3.0552,16.8241,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +3903,2.9733,22.2023,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +3904,5.1946,6.4712,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3905,3.1340,11.5907,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +3906,3.0552,16.9345,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +3907,2.9733,22.2568,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +3908,5.1946,6.7600,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +3909,3.1340,11.5523,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +3910,3.0552,16.7602,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3911,2.9733,22.1337,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +3912,5.1946,6.5515,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +3913,3.1340,11.5653,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +3914,3.0552,16.9069,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3915,2.9733,22.1730,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3916,5.1946,6.6247,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +3917,3.1340,11.5328,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +3918,3.0552,16.8365,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3919,2.9733,22.1430,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +3920,5.1946,6.6538,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +3921,3.1340,11.4593,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +3922,3.0552,16.7731,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +3923,2.9733,22.0835,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +3924,5.1946,6.3297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +3925,3.1340,11.5400,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +3926,3.0552,16.9812,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +3927,2.9733,22.3904,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +3928,5.1946,6.8795,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +3929,3.1340,11.5259,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +3930,3.0552,16.6662,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +3931,2.9733,21.8812,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +3932,5.1946,6.6683,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3933,3.1340,11.4535,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +3934,3.0552,16.6852,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +3935,2.9733,21.7804,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3936,5.1946,6.7918,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3937,3.1340,11.5489,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3938,3.0552,16.5482,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +3939,2.9733,21.9608,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3940,5.1946,6.6568,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3941,3.1340,11.4305,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3942,3.0552,16.7526,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +3943,2.9733,22.2013,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3944,5.1946,6.5195,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3945,3.1340,11.5365,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3946,3.0552,16.9069,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +3947,2.9733,22.1706,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +3948,5.1946,6.5846,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3949,3.1340,11.6531,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3950,3.0552,16.9201,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +3951,2.9733,22.4109,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +3952,5.1946,6.5778,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3953,3.1340,11.6378,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3954,3.0552,16.8191,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3955,2.9733,22.0727,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +3956,5.1946,6.6803,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3957,3.1340,11.6215,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3958,3.0552,16.7387,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +3959,2.9733,22.1417,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +3960,5.1946,6.4700,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3961,3.1340,11.5539,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3962,3.0552,16.9473,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +3963,2.9733,22.3609,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +3964,5.1946,6.5119,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3965,3.1340,11.5648,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3966,3.0552,16.8848,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +3967,2.9733,22.2285,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3968,5.1946,6.5139,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3969,3.1340,11.4981,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3970,3.0552,16.7559,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +3971,2.9733,22.0583,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3972,5.1946,6.4973,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3973,3.1340,11.4521,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3974,3.0552,16.7967,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +3975,2.9733,22.0165,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +3976,5.1946,6.6210,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3977,3.1340,11.5101,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3978,3.0552,16.6487,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +3979,2.9733,22.0207,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +3980,5.1946,6.5150,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3981,3.1340,11.5486,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3982,3.0552,16.8815,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +3983,2.9733,22.4703,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3984,5.1946,6.4956,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3985,3.1340,11.5188,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3986,3.0552,16.7595,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +3987,2.9733,22.1057,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +3988,5.1946,6.4998,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3989,3.1340,11.5050,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3990,3.0552,16.8962,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +3991,2.9733,22.3111,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3992,5.1946,6.4169,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3993,3.1340,11.2834,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3994,3.0552,16.3335,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +3995,2.9733,21.6743,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3996,5.1946,6.6435,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3997,3.1340,11.5150,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +3998,3.0552,16.7139,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +3999,2.9733,22.0830,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4000,5.1946,6.5719,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4001,3.1340,11.5686,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4002,3.0552,16.8525,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4003,2.9733,22.3940,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4004,5.1946,6.6179,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4005,3.1340,11.6760,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4006,3.0552,16.9310,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4007,2.9733,22.3965,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4008,5.1946,6.4211,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4009,3.1340,11.4579,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4010,3.0552,16.7578,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4011,2.9733,22.0340,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4012,5.1946,6.3010,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4013,3.1340,11.5061,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4014,3.0552,16.8584,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4015,2.9733,22.2742,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +4016,5.1946,6.5914,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4017,3.1340,11.5301,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4018,3.0552,16.7403,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4019,2.9733,23.4697,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4020,5.1946,6.5084,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4021,3.1340,11.6014,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4022,3.0552,16.9778,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4023,2.9733,22.3195,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4024,5.1946,6.5485,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4025,3.1340,11.5500,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4026,3.0552,16.8035,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4027,2.9733,22.2469,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4028,5.1946,6.4690,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4029,3.1340,11.4782,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4030,3.0552,16.9135,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +4031,2.9733,22.3164,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4032,5.1946,6.4733,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4033,3.1340,11.5330,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4034,3.0552,17.0579,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4035,2.9733,22.3623,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4036,5.1946,6.6445,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4037,3.1340,11.4903,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4038,3.0552,16.9948,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4039,2.9733,22.2859,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4040,5.1946,6.5113,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4041,3.1340,11.6439,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4042,3.0552,17.0192,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4043,2.9733,22.3086,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4044,5.1946,6.5050,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4045,3.1340,11.5482,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4046,3.0552,16.7695,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4047,2.9733,22.1763,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4048,5.1946,6.5716,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4049,3.1340,11.6051,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4050,3.0552,16.9865,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4051,2.9733,22.2017,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4052,5.1946,6.5564,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4053,3.1340,11.5460,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4054,3.0552,17.0487,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4055,2.9733,22.3490,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4056,5.1946,6.5582,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4057,3.1340,11.4386,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4058,3.0552,16.7713,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4059,2.9733,22.0596,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4060,5.1946,6.3810,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4061,3.1340,11.5684,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4062,3.0552,16.7462,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4063,2.9733,22.0477,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4064,5.1946,6.7023,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4065,3.1340,11.5314,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4066,3.0552,16.7805,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4067,2.9733,22.1720,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4068,5.1946,6.6468,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4069,3.1340,11.5541,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4070,3.0552,16.9410,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4071,2.9733,22.2268,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4072,5.1946,6.7437,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4073,3.1340,11.5778,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4074,3.0552,16.8888,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4075,2.9733,22.2177,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4076,5.1946,6.6187,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4077,3.1340,11.4965,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4078,3.0552,16.7168,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +4079,2.9733,22.0935,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4080,5.1946,5.8040,0.0347,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +4081,3.1340,9.8731,0.0326,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +4082,3.0552,14.1931,0.0437,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +4083,2.9733,18.5626,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +4084,5.1946,6.8033,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +4085,3.1340,11.5930,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +4086,3.0552,16.7710,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +4087,2.9733,22.3296,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +4088,5.1946,6.4874,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +4089,3.1340,11.4552,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +4090,3.0552,16.8032,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +4091,2.9733,22.1649,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +4092,5.1946,6.4308,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +4093,3.1340,11.5825,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +4094,3.0552,16.9683,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +4095,2.9733,22.3661,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +4096,5.1946,6.5382,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +4097,3.1340,11.6075,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +4098,3.0552,16.8096,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +4099,2.9733,22.2265,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +4100,5.1946,6.6514,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +4101,3.1340,11.6186,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +4102,3.0552,16.8275,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +4103,2.9733,22.1270,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +4104,5.1946,6.6784,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +4105,3.1340,11.6090,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4106,3.0552,16.7707,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +4107,2.9733,22.1522,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +4108,5.1946,6.4882,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +4109,3.1340,11.4323,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +4110,3.0552,16.7455,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +4111,2.9733,22.1462,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +4112,5.1946,6.6128,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +4113,3.1340,11.5705,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +4114,3.0552,16.8950,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +4115,2.9733,22.1426,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +4116,5.1946,6.5468,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +4117,3.1340,11.5881,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +4118,3.0552,16.9363,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +4119,2.9733,22.2854,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +4120,5.1946,6.4193,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +4121,3.1340,11.5054,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +4122,3.0552,16.7692,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +4123,2.9733,22.0502,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +4124,5.1946,6.6955,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +4125,3.1340,11.5690,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +4126,3.0552,16.7033,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +4127,2.9733,22.1000,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +4128,5.1946,6.4980,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +4129,3.1340,11.1269,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +4130,3.0552,15.8695,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4131,2.9733,21.1054,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +4132,5.1946,6.4459,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +4133,3.1340,11.5801,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +4134,3.0552,16.8326,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +4135,2.9733,22.2289,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4136,5.1946,6.3175,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4137,3.1340,11.4921,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +4138,3.0552,16.8030,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4139,2.9733,22.2375,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4140,5.1946,6.3166,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4141,3.1340,11.5204,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +4142,3.0552,16.7245,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4143,2.9733,22.1502,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +4144,5.1946,6.3578,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4145,3.1340,11.4643,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +4146,3.0552,16.7924,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4147,2.9733,22.2431,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +4148,5.1946,6.4039,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4149,3.1340,11.4826,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +4150,3.0552,16.7808,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +4151,2.9733,21.1595,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +4152,5.1946,6.5854,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +4153,3.1340,11.7022,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +4154,3.0552,16.9449,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +4155,2.9733,22.3951,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +4156,5.1946,6.4354,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4157,3.1340,11.4348,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +4158,3.0552,16.8132,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +4159,2.9733,22.1755,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4160,5.1946,6.4807,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4161,3.1340,11.4858,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +4162,3.0552,16.6837,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +4163,2.9733,21.9658,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4164,5.1946,6.4448,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +4165,3.1340,11.4656,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4166,3.0552,16.7579,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +4167,2.9733,22.2293,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4168,5.1946,6.3956,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +4169,3.1340,11.4998,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4170,3.0552,17.2188,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4171,2.9733,21.9552,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4172,5.1946,6.4355,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4173,3.1340,11.6477,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +4174,3.0552,16.9350,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4175,2.9733,22.4892,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +4176,5.1946,6.5179,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4177,3.1340,11.5470,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4178,3.0552,16.7530,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4179,2.9733,22.0252,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +4180,5.1946,6.5469,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4181,3.1340,11.5431,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4182,3.0552,16.7188,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4183,2.9733,22.0443,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +4184,5.1946,6.3015,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4185,3.1340,11.5377,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4186,3.0552,16.8480,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4187,2.9733,22.4359,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4188,5.1946,7.4592,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4189,3.1340,11.5658,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4190,3.0552,16.8042,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4191,2.9733,21.8968,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4192,5.1946,6.5805,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4193,3.1340,11.6077,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4194,3.0552,16.7837,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +4195,2.9733,22.3689,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4196,5.1946,6.4771,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4197,3.1340,11.4521,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4198,3.0552,16.7856,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4199,2.9733,22.0658,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4200,5.1946,6.3725,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4201,3.1340,11.5428,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4202,3.0552,16.9045,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4203,2.9733,22.3795,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +4204,5.1946,7.0314,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4205,3.1340,11.5474,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4206,3.0552,16.8165,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4207,2.9733,22.2461,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4208,5.1946,6.5951,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4209,3.1340,11.4907,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4210,3.0552,16.5583,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +4211,2.9733,21.6820,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +4212,5.1946,6.4539,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4213,3.1340,11.6041,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4214,3.0552,16.8266,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4215,2.9733,22.3792,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4216,5.1946,6.4465,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4217,3.1340,11.4374,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4218,3.0552,16.7141,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4219,2.9733,22.0102,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4220,5.1946,6.3771,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4221,3.1340,11.4825,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4222,3.0552,16.9002,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4223,2.9733,22.3183,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4224,5.1946,6.4843,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4225,3.1340,11.5956,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4226,3.0552,16.9655,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4227,2.9733,22.3793,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4228,5.1946,6.6071,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4229,3.1340,11.4990,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4230,3.0552,16.7901,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4231,2.9733,22.0992,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4232,5.1946,6.6168,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4233,3.1340,11.4857,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4234,3.0552,16.7423,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4235,2.9733,22.1258,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4236,5.1946,6.4489,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4237,3.1340,11.4836,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4238,3.0552,16.6732,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +4239,2.9733,21.2800,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +4240,5.1946,6.4250,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4241,3.1340,11.5964,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4242,3.0552,16.8885,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +4243,2.9733,22.2572,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +4244,5.1946,6.5560,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4245,3.1340,11.5471,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4246,3.0552,16.9035,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4247,2.9733,22.3300,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4248,5.1946,6.3361,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4249,3.1340,11.5058,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4250,3.0552,16.5795,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4251,2.9733,21.8426,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4252,5.1946,6.3936,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4253,3.1340,11.5252,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4254,3.0552,16.8070,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +4255,2.9733,22.3544,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4256,5.1946,6.5267,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4257,3.1340,11.3811,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4258,3.0552,15.7216,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4259,2.9733,20.6469,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4260,5.1946,6.3413,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4261,3.1340,11.6468,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4262,3.0552,16.7451,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4263,2.9733,22.2208,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4264,5.1946,6.2704,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4265,3.1340,11.4219,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4266,3.0552,16.7797,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4267,2.9733,22.1483,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +4268,5.1946,6.1825,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4269,3.1340,11.4461,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4270,3.0552,16.7081,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4271,2.9733,22.0458,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4272,5.1946,6.4252,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4273,3.1340,11.4916,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4274,3.0552,16.8155,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4275,2.9733,22.3225,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4276,5.1946,6.4158,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4277,3.1340,11.4480,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4278,3.0552,16.8230,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4279,2.9733,22.1040,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4280,5.1946,6.4674,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4281,3.1340,11.9647,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4282,3.0552,16.8461,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4283,2.9733,22.2814,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +4284,5.1946,6.5069,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4285,3.1340,11.5678,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4286,3.0552,16.9145,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4287,2.9733,22.2032,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4288,5.1946,6.5310,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4289,3.1340,11.5305,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4290,3.0552,16.7606,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +4291,2.9733,22.0435,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4292,5.1946,6.4806,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4293,3.1340,11.4737,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4294,3.0552,16.7579,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4295,2.9733,22.1880,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +4296,5.1946,6.5075,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4297,3.1340,11.5456,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4298,3.0552,16.7782,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +4299,2.9733,21.9986,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4300,5.1946,6.2913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4301,3.1340,11.4365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4302,3.0552,16.7020,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4303,2.9733,22.2530,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4304,5.1946,6.8446,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4305,3.1340,11.4782,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4306,3.0552,16.8145,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4307,2.9733,22.1192,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4308,5.1946,6.3004,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4309,3.1340,11.5639,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4310,3.0552,16.9093,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4311,2.9733,22.2565,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4312,5.1946,6.4294,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4313,3.1340,11.6812,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4314,3.0552,16.9834,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4315,2.9733,22.4878,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4316,5.1946,6.6920,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4317,3.1340,11.5793,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4318,3.0552,16.7516,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4319,2.9733,22.0207,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4320,5.1946,19.5444,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +4321,3.1340,16.8007,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +4322,3.0552,16.5942,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +4323,2.9733,16.4878,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4324,5.1946,6.0504,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +4325,3.1340,11.4039,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +4326,3.0552,16.8300,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +4327,2.9733,22.4897,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +4328,5.1946,6.0957,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +4329,3.1340,11.3887,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +4330,3.0552,16.7943,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +4331,2.9733,22.3069,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +4332,5.1946,6.0447,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +4333,3.1340,11.3872,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +4334,3.0552,16.8681,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +4335,2.9733,22.3950,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +4336,5.1946,6.1428,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +4337,3.1340,11.4245,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +4338,3.0552,16.8233,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +4339,2.9733,22.2826,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +4340,5.1946,6.1539,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +4341,3.1340,11.3970,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +4342,3.0552,16.7748,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +4343,2.9733,22.2709,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +4344,5.1946,6.2020,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +4345,3.1340,11.3660,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +4346,3.0552,16.6956,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +4347,2.9733,22.0907,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +4348,5.1946,6.2622,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +4349,3.1340,11.4260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +4350,3.0552,16.7935,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +4351,2.9733,22.2608,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +4352,5.1946,6.2539,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +4353,3.1340,11.5343,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +4354,3.0552,16.8708,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +4355,2.9733,22.2525,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +4356,5.1946,6.5108,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +4357,3.1340,11.4998,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +4358,3.0552,16.6218,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +4359,2.9733,22.0273,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +4360,5.1946,6.5176,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +4361,3.1340,11.6254,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +4362,3.0552,16.8219,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +4363,2.9733,22.3655,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +4364,5.1946,6.6466,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +4365,3.1340,11.4395,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +4366,3.0552,16.7180,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4367,2.9733,21.9470,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +4368,5.1946,6.4278,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +4369,3.1340,11.5902,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +4370,3.0552,16.9629,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4371,2.9733,22.4192,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +4372,5.1946,6.4698,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +4373,3.1340,11.4522,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +4374,3.0552,16.7207,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4375,2.9733,22.1603,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +4376,5.1946,6.4835,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +4377,3.1340,11.5489,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +4378,3.0552,16.8878,0.0355,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +4379,2.9733,22.0809,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4380,5.1946,6.7307,0.0244,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +4381,3.1340,11.5174,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +4382,3.0552,16.5802,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4383,2.9733,21.8700,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +4384,5.1946,6.5490,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +4385,3.1340,11.5310,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +4386,3.0552,16.8109,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +4387,2.9733,22.2464,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +4388,5.1946,6.6159,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +4389,3.1340,11.4543,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +4390,3.0552,16.7733,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4391,2.9733,21.9380,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +4392,5.1946,6.4878,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +4393,3.1340,11.4911,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +4394,3.0552,16.8451,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +4395,2.9733,22.2342,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +4396,5.1946,6.5002,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4397,3.1340,11.4485,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +4398,3.0552,16.7402,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +4399,2.9733,22.0168,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +4400,5.1946,6.5198,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +4401,3.1340,11.6150,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +4402,3.0552,16.7730,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +4403,2.9733,22.0399,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4404,5.1946,6.5669,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +4405,3.1340,11.5438,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +4406,3.0552,16.8354,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +4407,2.9733,22.1532,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4408,5.1946,6.4842,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +4409,3.1340,11.6468,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4410,3.0552,16.7835,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4411,2.9733,22.1819,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4412,5.1946,6.3812,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +4413,3.1340,11.3734,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4414,3.0552,16.8051,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4415,2.9733,22.1302,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +4416,5.1946,6.2766,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +4417,3.1340,11.5276,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4418,3.0552,16.9275,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +4419,2.9733,22.2803,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +4420,5.1946,6.5277,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +4421,3.1340,11.4710,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4422,3.0552,16.5962,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +4423,2.9733,22.0306,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +4424,5.1946,6.6069,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +4425,3.1340,11.4332,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4426,3.0552,16.5686,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4427,2.9733,21.7243,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +4428,5.1946,6.5800,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +4429,3.1340,11.8114,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4430,3.0552,16.9966,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +4431,2.9733,22.4013,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4432,5.1946,6.5649,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +4433,3.1340,11.3628,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4434,3.0552,16.6052,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +4435,2.9733,21.9311,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4436,5.1946,6.5005,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +4437,3.1340,11.5375,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4438,3.0552,16.7887,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +4439,2.9733,22.1393,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4440,5.1946,6.6829,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4441,3.1340,11.5831,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4442,3.0552,16.6561,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4443,2.9733,21.8824,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +4444,5.1946,6.5895,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4445,3.1340,11.4811,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4446,3.0552,16.6378,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +4447,2.9733,22.0083,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +4448,5.1946,6.6338,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4449,3.1340,11.5401,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4450,3.0552,16.5780,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4451,2.9733,22.0250,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +4452,5.1946,6.4866,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4453,3.1340,11.4060,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4454,3.0552,16.7258,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4455,2.9733,22.0337,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +4456,5.1946,6.5137,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4457,3.1340,11.5509,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4458,3.0552,16.8872,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4459,2.9733,22.1655,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4460,5.1946,6.6536,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4461,3.1340,11.5838,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4462,3.0552,16.8280,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +4463,2.9733,22.1853,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4464,5.1946,6.5296,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4465,3.1340,11.5780,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4466,3.0552,16.7944,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4467,2.9733,22.1794,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4468,5.1946,6.6262,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4469,3.1340,11.5047,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4470,3.0552,16.5978,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4471,2.9733,21.9242,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4472,5.1946,6.5458,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4473,3.1340,11.4145,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4474,3.0552,16.7322,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4475,2.9733,22.1193,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4476,5.1946,6.4842,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4477,3.1340,11.4786,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4478,3.0552,16.8340,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +4479,2.9733,22.2033,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4480,5.1946,6.4548,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4481,3.1340,11.3457,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4482,3.0552,16.6593,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +4483,2.9733,21.9638,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +4484,5.1946,6.6016,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4485,3.1340,11.5415,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4486,3.0552,16.7703,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4487,2.9733,21.9566,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4488,5.1946,6.5451,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4489,3.1340,11.5642,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4490,3.0552,16.6998,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +4491,2.9733,22.2025,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4492,5.1946,6.4849,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4493,3.1340,11.4669,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4494,3.0552,16.7121,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4495,2.9733,22.0482,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4496,5.1946,6.4927,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4497,3.1340,11.4917,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4498,3.0552,16.8320,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4499,2.9733,22.1820,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4500,5.1946,6.4829,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4501,3.1340,11.5570,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4502,3.0552,16.7867,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4503,2.9733,21.9629,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4504,5.1946,6.3039,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4505,3.1340,11.5725,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4506,3.0552,16.9364,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4507,2.9733,22.4876,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +4508,5.1946,6.5479,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4509,3.1340,11.4855,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4510,3.0552,16.6344,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4511,2.9733,21.9477,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +4512,5.1946,6.5427,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4513,3.1340,11.4880,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4514,3.0552,16.7698,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4515,2.9733,22.0753,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4516,5.1946,6.4408,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4517,3.1340,11.7477,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4518,3.0552,16.6770,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +4519,2.9733,22.1458,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4520,5.1946,6.5510,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4521,3.1340,11.5783,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4522,3.0552,16.8662,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +4523,2.9733,22.1328,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4524,5.1946,6.5170,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4525,3.1340,11.4670,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4526,3.0552,16.8082,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +4527,2.9733,22.1199,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4528,5.1946,6.5946,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4529,3.1340,11.6367,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4530,3.0552,16.8531,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +4531,2.9733,22.3782,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +4532,5.1946,6.6111,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4533,3.1340,11.5379,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4534,3.0552,16.7275,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +4535,2.9733,22.2268,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4536,5.1946,6.8053,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4537,3.1340,11.5664,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4538,3.0552,16.6880,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4539,2.9733,21.9082,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +4540,5.1946,6.6836,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4541,3.1340,11.4137,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4542,3.0552,16.7614,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +4543,2.9733,22.1146,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4544,5.1946,6.4506,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4545,3.1340,11.5753,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4546,3.0552,16.9126,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4547,2.9733,22.3622,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4548,5.1946,6.6752,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4549,3.1340,11.5635,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4550,3.0552,16.7768,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4551,2.9733,22.1247,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4552,5.1946,6.7469,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4553,3.1340,11.6106,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4554,3.0552,16.8108,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4555,2.9733,22.2779,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +4556,5.1946,6.7076,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4557,3.1340,11.5715,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4558,3.0552,16.7012,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +4559,2.9733,22.1169,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4560,5.1946,5.7602,0.0360,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +4561,3.1340,9.7935,0.0490,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +4562,3.0552,14.2814,0.0361,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +4563,2.9733,22.2499,0.0160,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +4564,5.1946,6.4183,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +4565,3.1340,11.4545,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +4566,3.0552,16.4847,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +4567,2.9733,21.5418,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +4568,5.1946,6.3791,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +4569,3.1340,11.6998,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +4570,3.0552,17.0670,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +4571,2.9733,22.4064,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +4572,5.1946,6.3799,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +4573,3.1340,11.4919,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +4574,3.0552,16.7742,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +4575,2.9733,22.0308,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +4576,5.1946,6.6203,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +4577,3.1340,11.4641,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +4578,3.0552,16.6164,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +4579,2.9733,21.9945,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +4580,5.1946,6.4500,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +4581,3.1340,11.5056,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +4582,3.0552,16.7727,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +4583,2.9733,22.2518,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +4584,5.1946,6.4398,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +4585,3.1340,11.4842,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4586,3.0552,16.9590,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +4587,2.9733,22.3092,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +4588,5.1946,6.4935,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +4589,3.1340,11.6893,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +4590,3.0552,16.9782,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +4591,2.9733,22.4055,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +4592,5.1946,6.4454,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +4593,3.1340,11.5271,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +4594,3.0552,16.8946,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +4595,2.9733,22.2357,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +4596,5.1946,6.5338,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +4597,3.1340,11.5625,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +4598,3.0552,16.6910,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +4599,2.9733,22.1337,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +4600,5.1946,6.5001,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +4601,3.1340,11.5174,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +4602,3.0552,16.8953,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +4603,2.9733,22.4127,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +4604,5.1946,6.4881,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +4605,3.1340,11.5430,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +4606,3.0552,16.8695,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +4607,2.9733,22.1995,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +4608,5.1946,6.5685,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +4609,3.1340,11.5997,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +4610,3.0552,17.0041,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +4611,2.9733,22.5039,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +4612,5.1946,6.4467,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +4613,3.1340,11.4852,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +4614,3.0552,16.7745,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +4615,2.9733,22.0808,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +4616,5.1946,6.6993,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4617,3.1340,11.5325,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +4618,3.0552,16.7686,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +4619,2.9733,22.0952,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +4620,5.1946,6.5153,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4621,3.1340,11.3977,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +4622,3.0552,16.6393,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +4623,2.9733,21.9958,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +4624,5.1946,6.7140,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4625,3.1340,11.5607,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +4626,3.0552,16.9230,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +4627,2.9733,22.2651,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +4628,5.1946,6.4937,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4629,3.1340,11.4448,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +4630,3.0552,16.8740,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4631,2.9733,22.3347,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4632,5.1946,6.4337,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +4633,3.1340,11.6128,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +4634,3.0552,16.9221,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4635,2.9733,22.1909,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4636,5.1946,6.7139,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4637,3.1340,11.7196,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +4638,3.0552,16.9065,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4639,2.9733,22.4199,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +4640,5.1946,6.6898,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4641,3.1340,11.4947,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +4642,3.0552,16.7037,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +4643,2.9733,22.0264,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +4644,5.1946,6.6697,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +4645,3.1340,11.5399,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4646,3.0552,16.7282,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +4647,2.9733,22.1784,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +4648,5.1946,6.5320,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +4649,3.1340,11.5575,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4650,3.0552,16.7970,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +4651,2.9733,22.2130,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +4652,5.1946,6.5075,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4653,3.1340,11.6098,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +4654,3.0552,16.8564,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +4655,2.9733,22.1006,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4656,5.1946,6.5267,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4657,3.1340,11.6652,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4658,3.0552,16.9083,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +4659,2.9733,22.2661,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4660,5.1946,6.5500,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4661,3.1340,11.5352,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4662,3.0552,16.7718,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +4663,2.9733,22.0079,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4664,5.1946,6.7613,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4665,3.1340,11.5967,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4666,3.0552,16.7360,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +4667,2.9733,22.1606,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4668,5.1946,6.5737,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4669,3.1340,11.5538,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4670,3.0552,16.8704,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4671,2.9733,22.2259,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +4672,5.1946,6.6193,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4673,3.1340,11.5140,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4674,3.0552,16.7405,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4675,2.9733,22.1409,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4676,5.1946,6.4800,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4677,3.1340,11.4122,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4678,3.0552,16.8519,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +4679,2.9733,22.2077,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +4680,5.1946,6.4472,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4681,3.1340,11.5652,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4682,3.0552,16.6242,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4683,2.9733,21.8862,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4684,5.1946,6.6579,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4685,3.1340,11.5239,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4686,3.0552,16.6790,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +4687,2.9733,22.1428,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4688,5.1946,6.4649,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4689,3.1340,11.4569,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4690,3.0552,16.8042,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +4691,2.9733,22.1622,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4692,5.1946,6.5062,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4693,3.1340,11.7087,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4694,3.0552,16.8935,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +4695,2.9733,22.4626,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4696,5.1946,6.4540,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4697,3.1340,11.3485,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4698,3.0552,16.8373,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +4699,2.9733,22.2407,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +4700,5.1946,6.2990,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4701,3.1340,11.5166,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4702,3.0552,16.9419,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +4703,2.9733,22.3072,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4704,5.1946,6.6287,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4705,3.1340,11.6727,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4706,3.0552,16.8670,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4707,2.9733,22.3714,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +4708,5.1946,6.6460,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4709,3.1340,11.4970,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4710,3.0552,16.6818,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +4711,2.9733,21.9295,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4712,5.1946,6.5593,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4713,3.1340,11.5696,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4714,3.0552,16.8581,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +4715,2.9733,22.3122,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4716,5.1946,6.6322,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4717,3.1340,11.5088,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4718,3.0552,16.8772,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4719,2.9733,22.3363,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4720,5.1946,6.6291,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4721,3.1340,11.6835,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4722,3.0552,16.9837,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4723,2.9733,22.2437,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4724,5.1946,6.5930,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4725,3.1340,11.6230,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4726,3.0552,16.8580,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4727,2.9733,22.2567,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +4728,5.1946,6.6728,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4729,3.1340,11.6560,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4730,3.0552,16.8230,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +4731,2.9733,22.1122,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4732,5.1946,6.6550,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4733,3.1340,11.5545,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4734,3.0552,16.7358,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4735,2.9733,22.1045,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +4736,5.1946,6.4671,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4737,3.1340,11.5085,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4738,3.0552,16.9243,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +4739,2.9733,22.4334,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4740,5.1946,6.4636,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4741,3.1340,11.5464,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4742,3.0552,16.8788,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +4743,2.9733,22.1239,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4744,5.1946,6.4790,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4745,3.1340,11.6674,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4746,3.0552,16.8608,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +4747,2.9733,22.3310,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4748,5.1946,6.5621,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4749,3.1340,11.5892,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4750,3.0552,16.8814,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +4751,2.9733,22.2166,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4752,5.1946,6.6818,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4753,3.1340,11.6877,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4754,3.0552,16.8609,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +4755,2.9733,22.3373,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4756,5.1946,6.5590,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4757,3.1340,11.5340,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4758,3.0552,16.8992,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4759,2.9733,22.4805,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4760,5.1946,6.4430,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4761,3.1340,11.5109,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4762,3.0552,16.7100,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4763,2.9733,22.1418,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +4764,5.1946,6.5447,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4765,3.1340,11.4998,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4766,3.0552,16.9405,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4767,2.9733,22.3687,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4768,5.1946,6.4686,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4769,3.1340,11.4359,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4770,3.0552,16.7468,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4771,2.9733,22.0172,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4772,5.1946,6.6586,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4773,3.1340,11.5595,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4774,3.0552,16.7426,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +4775,2.9733,22.1526,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4776,5.1946,6.6135,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4777,3.1340,11.5405,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4778,3.0552,16.9191,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +4779,2.9733,22.1956,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4780,5.1946,6.7589,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4781,3.1340,11.5642,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4782,3.0552,16.7326,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4783,2.9733,22.2816,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4784,5.1946,6.5458,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4785,3.1340,11.4542,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4786,3.0552,16.8675,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4787,2.9733,22.1303,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4788,5.1946,6.4826,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4789,3.1340,11.5292,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4790,3.0552,16.7736,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4791,2.9733,21.9720,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4792,5.1946,6.2502,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4793,3.1340,11.4518,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4794,3.0552,16.7940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4795,2.9733,22.2955,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4796,5.1946,6.3360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4797,3.1340,11.2120,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4798,3.0552,16.2614,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +4799,2.9733,21.5955,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4800,5.1946,5.6705,0.0444,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +4801,3.1340,9.7477,0.0227,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +4802,3.0552,14.2863,0.0435,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +4803,2.9733,18.8411,0.0135,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +4804,5.1946,6.5132,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +4805,3.1340,11.5754,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +4806,3.0552,16.9113,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +4807,2.9733,22.4272,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +4808,5.1946,6.4342,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +4809,3.1340,11.0627,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +4810,3.0552,15.9877,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +4811,2.9733,21.3503,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +4812,5.1946,6.5063,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +4813,3.1340,11.5513,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +4814,3.0552,16.8581,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +4815,2.9733,22.3186,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +4816,5.1946,6.4819,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +4817,3.1340,11.3632,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +4818,3.0552,16.7933,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +4819,2.9733,22.1576,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +4820,5.1946,6.5537,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +4821,3.1340,11.6901,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +4822,3.0552,16.9671,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +4823,2.9733,22.3699,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +4824,5.1946,7.3222,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +4825,3.1340,11.6331,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +4826,3.0552,16.9364,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +4827,2.9733,22.6765,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +4828,5.1946,6.5275,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +4829,3.1340,11.5349,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +4830,3.0552,16.7551,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +4831,2.9733,21.9803,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +4832,5.1946,6.5689,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +4833,3.1340,11.5031,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +4834,3.0552,16.6798,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +4835,2.9733,22.1491,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +4836,5.1946,6.4750,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +4837,3.1340,11.4667,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +4838,3.0552,16.7910,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +4839,2.9733,22.1940,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +4840,5.1946,6.5371,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +4841,3.1340,11.6554,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +4842,3.0552,17.0069,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +4843,2.9733,22.4237,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +4844,5.1946,6.4536,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +4845,3.1340,11.4212,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +4846,3.0552,16.7743,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +4847,2.9733,22.2267,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +4848,5.1946,6.2351,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +4849,3.1340,11.4936,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +4850,3.0552,16.7755,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +4851,2.9733,22.1960,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +4852,5.1946,6.4549,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +4853,3.1340,11.4358,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +4854,3.0552,16.7397,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +4855,2.9733,22.1073,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4856,5.1946,6.4196,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +4857,3.1340,11.4033,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +4858,3.0552,16.6490,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +4859,2.9733,21.9426,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +4860,5.1946,6.4943,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4861,3.1340,11.8252,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +4862,3.0552,16.7391,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +4863,2.9733,22.1815,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +4864,5.1946,6.4608,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4865,3.1340,11.5026,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +4866,3.0552,16.9059,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +4867,2.9733,22.3924,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +4868,5.1946,6.5590,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +4869,3.1340,11.4872,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +4870,3.0552,16.8113,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +4871,2.9733,22.1840,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +4872,5.1946,6.3772,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +4873,3.1340,11.4835,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +4874,3.0552,16.7760,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +4875,2.9733,22.2440,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +4876,5.1946,6.4068,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +4877,3.1340,11.5010,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +4878,3.0552,17.1179,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +4879,2.9733,22.0400,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4880,5.1946,6.4384,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +4881,3.1340,11.7937,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +4882,3.0552,17.0149,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +4883,2.9733,22.4772,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4884,5.1946,6.6664,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +4885,3.1340,11.4998,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +4886,3.0552,16.8227,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +4887,2.9733,22.1883,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4888,5.1946,6.4435,0.0349,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +4889,3.1340,11.5702,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +4890,3.0552,16.7420,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4891,2.9733,22.0335,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +4892,5.1946,6.4015,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4893,3.1340,11.5022,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +4894,3.0552,16.7636,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4895,2.9733,22.2443,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +4896,5.1946,6.5753,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4897,3.1340,11.6483,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4898,3.0552,16.2652,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4899,2.9733,21.3884,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +4900,5.1946,6.5331,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4901,3.1340,11.6123,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4902,3.0552,16.9092,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4903,2.9733,22.3736,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +4904,5.1946,6.6371,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4905,3.1340,11.4527,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4906,3.0552,16.7775,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +4907,2.9733,22.0709,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +4908,5.1946,6.3251,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4909,3.1340,11.5531,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4910,3.0552,16.8037,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +4911,2.9733,22.2434,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4912,5.1946,6.4192,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4913,3.1340,11.5545,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4914,3.0552,16.7667,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +4915,2.9733,22.2556,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +4916,5.1946,6.4599,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4917,3.1340,11.5060,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4918,3.0552,16.4837,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +4919,2.9733,21.0542,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +4920,5.1946,6.5033,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4921,3.1340,11.6410,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4922,3.0552,16.9577,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +4923,2.9733,22.4786,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +4924,5.1946,6.2810,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4925,3.1340,11.3863,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4926,3.0552,16.7883,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +4927,2.9733,22.1285,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +4928,5.1946,6.3098,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4929,3.1340,11.6532,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4930,3.0552,16.9093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +4931,2.9733,22.1822,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +4932,5.1946,6.3259,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4933,3.1340,11.5213,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4934,3.0552,16.8831,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4935,2.9733,22.3594,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4936,5.1946,6.3653,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4937,3.1340,11.4243,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4938,3.0552,16.6833,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4939,2.9733,21.6764,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4940,5.1946,6.4269,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4941,3.1340,11.6325,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4942,3.0552,16.8995,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4943,2.9733,22.2444,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4944,5.1946,6.5735,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4945,3.1340,11.4491,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4946,3.0552,16.8281,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4947,2.9733,22.1202,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4948,5.1946,6.2828,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4949,3.1340,11.5076,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4950,3.0552,16.7810,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +4951,2.9733,22.2390,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +4952,5.1946,6.4896,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4953,3.1340,11.5579,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4954,3.0552,16.8141,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4955,2.9733,22.1828,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +4956,5.1946,6.5054,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4957,3.1340,11.1595,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4958,3.0552,16.2617,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +4959,2.9733,21.5112,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +4960,5.1946,6.1824,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4961,3.1340,11.4639,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4962,3.0552,16.7137,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +4963,2.9733,22.3433,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +4964,5.1946,6.3595,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4965,3.1340,11.6107,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4966,3.0552,16.9303,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +4967,2.9733,22.2313,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4968,5.1946,6.2395,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4969,3.1340,11.4912,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4970,3.0552,16.7444,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +4971,2.9733,22.1337,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4972,5.1946,6.4887,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4973,3.1340,11.5924,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4974,3.0552,16.9428,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +4975,2.9733,22.2680,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +4976,5.1946,6.4966,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4977,3.1340,11.3750,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4978,3.0552,16.5491,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4979,2.9733,21.8885,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +4980,5.1946,6.7016,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4981,3.1340,11.4844,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4982,3.0552,16.4692,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4983,2.9733,21.8828,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +4984,5.1946,6.7362,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4985,3.1340,11.4894,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4986,3.0552,16.5539,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4987,2.9733,21.7474,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +4988,5.1946,6.4315,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4989,3.1340,11.4549,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4990,3.0552,16.7421,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4991,2.9733,22.1010,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4992,5.1946,6.4878,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4993,3.1340,11.5357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4994,3.0552,16.8613,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4995,2.9733,22.1725,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4996,5.1946,6.5823,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4997,3.1340,11.5153,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +4998,3.0552,16.7501,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +4999,2.9733,22.2132,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5000,5.1946,6.6777,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5001,3.1340,11.5146,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5002,3.0552,16.6196,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5003,2.9733,21.8607,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +5004,5.1946,6.4919,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5005,3.1340,11.4508,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5006,3.0552,16.7411,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5007,2.9733,22.1518,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5008,5.1946,6.4677,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5009,3.1340,11.4687,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5010,3.0552,16.8169,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +5011,2.9733,22.1328,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5012,5.1946,6.4893,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5013,3.1340,11.4992,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5014,3.0552,16.7298,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5015,2.9733,21.9997,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5016,5.1946,6.1867,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5017,3.1340,11.5056,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5018,3.0552,16.9559,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +5019,2.9733,22.2547,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5020,5.1946,6.5782,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5021,3.1340,11.4792,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5022,3.0552,16.7252,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5023,2.9733,22.0639,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5024,5.1946,6.5908,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5025,3.1340,11.4887,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5026,3.0552,16.8133,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5027,2.9733,22.0731,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5028,5.1946,6.4755,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5029,3.1340,11.5280,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5030,3.0552,16.8104,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5031,2.9733,22.2615,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5032,5.1946,6.4780,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5033,3.1340,11.5548,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5034,3.0552,16.9133,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5035,2.9733,22.3175,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5036,5.1946,6.7618,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5037,3.1340,11.5528,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5038,3.0552,16.8983,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5039,2.9733,22.1975,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5040,5.1946,18.7372,0.0158,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +5041,3.1340,16.2400,0.0074,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +5042,3.0552,15.6637,0.0049,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +5043,2.9733,15.6862,0.0122,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +5044,5.1946,6.1558,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +5045,3.1340,11.4245,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +5046,3.0552,16.8788,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +5047,2.9733,22.5345,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +5048,5.1946,6.0621,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +5049,3.1340,11.3605,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +5050,3.0552,16.8190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +5051,2.9733,22.3940,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +5052,5.1946,6.0015,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +5053,3.1340,11.4033,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +5054,3.0552,16.8875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +5055,2.9733,22.3751,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +5056,5.1946,6.0805,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +5057,3.1340,11.4245,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +5058,3.0552,16.7854,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +5059,2.9733,22.3202,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +5060,5.1946,6.0694,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +5061,3.1340,11.3794,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +5062,3.0552,16.7902,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +5063,2.9733,22.3334,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +5064,5.1946,6.1583,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +5065,3.1340,11.4073,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +5066,3.0552,16.8303,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +5067,2.9733,22.2766,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +5068,5.1946,6.1598,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +5069,3.1340,11.3886,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +5070,3.0552,16.7562,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +5071,2.9733,22.2354,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +5072,5.1946,6.2371,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +5073,3.1340,11.5051,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +5074,3.0552,16.7894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +5075,2.9733,22.2840,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +5076,5.1946,6.5014,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +5077,3.1340,11.6215,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +5078,3.0552,16.9935,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +5079,2.9733,22.4904,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +5080,5.1946,6.7287,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +5081,3.1340,11.5382,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +5082,3.0552,16.6698,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +5083,2.9733,22.1119,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +5084,5.1946,6.5429,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +5085,3.1340,11.5330,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +5086,3.0552,16.8025,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5087,2.9733,22.1943,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +5088,5.1946,6.4997,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +5089,3.1340,11.5000,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +5090,3.0552,16.8062,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5091,2.9733,22.1698,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +5092,5.1946,6.5401,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +5093,3.1340,11.5320,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +5094,3.0552,16.8196,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5095,2.9733,22.6343,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +5096,5.1946,6.4873,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +5097,3.1340,11.4494,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +5098,3.0552,16.6918,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +5099,2.9733,22.0587,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5100,5.1946,6.7637,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +5101,3.1340,11.4558,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +5102,3.0552,16.5550,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5103,2.9733,22.0000,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5104,5.1946,6.5118,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +5105,3.1340,11.5300,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +5106,3.0552,16.7263,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +5107,2.9733,21.9515,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +5108,5.1946,6.8239,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +5109,3.1340,11.6223,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +5110,3.0552,16.7703,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5111,2.9733,22.3296,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +5112,5.1946,6.5477,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +5113,3.1340,11.4595,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +5114,3.0552,16.7928,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +5115,2.9733,22.1165,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +5116,5.1946,6.5370,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5117,3.1340,11.5497,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +5118,3.0552,16.9255,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +5119,2.9733,22.2911,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +5120,5.1946,6.5380,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +5121,3.1340,11.5165,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +5122,3.0552,16.7715,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +5123,2.9733,22.1376,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5124,5.1946,6.6430,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +5125,3.1340,11.4307,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +5126,3.0552,16.7499,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +5127,2.9733,21.8167,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5128,5.1946,6.6336,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +5129,3.1340,11.5003,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5130,3.0552,16.4319,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5131,2.9733,21.6502,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5132,5.1946,6.5563,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +5133,3.1340,11.5549,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5134,3.0552,16.8126,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5135,2.9733,22.0880,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5136,5.1946,6.5013,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +5137,3.1340,11.5077,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5138,3.0552,16.7923,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5139,2.9733,22.1038,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +5140,5.1946,6.4192,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +5141,3.1340,11.5102,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5142,3.0552,16.8900,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +5143,2.9733,22.2810,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +5144,5.1946,6.3393,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +5145,3.1340,11.4655,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5146,3.0552,16.9661,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5147,2.9733,22.3500,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +5148,5.1946,6.7431,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +5149,3.1340,11.5654,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5150,3.0552,16.5479,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +5151,2.9733,21.8564,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5152,5.1946,6.5489,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +5153,3.1340,11.4482,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5154,3.0552,16.6683,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +5155,2.9733,22.0486,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5156,5.1946,6.3738,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +5157,3.1340,11.5924,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5158,3.0552,16.9100,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +5159,2.9733,22.3183,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5160,5.1946,6.4573,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5161,3.1340,11.5668,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5162,3.0552,17.0108,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5163,2.9733,22.3765,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5164,5.1946,6.4611,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5165,3.1340,11.4762,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5166,3.0552,16.7786,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +5167,2.9733,22.1023,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +5168,5.1946,6.2419,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5169,3.1340,11.3975,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5170,3.0552,16.8873,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5171,2.9733,22.5328,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +5172,5.1946,6.5459,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5173,3.1340,11.4502,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5174,3.0552,16.5948,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5175,2.9733,21.7892,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +5176,5.1946,6.5065,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5177,3.1340,11.7427,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5178,3.0552,16.8006,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5179,2.9733,22.2102,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5180,5.1946,6.5100,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5181,3.1340,11.4612,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5182,3.0552,16.8837,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +5183,2.9733,22.3013,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5184,5.1946,6.5362,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5185,3.1340,11.4258,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5186,3.0552,16.7144,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5187,2.9733,22.0408,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5188,5.1946,6.2925,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5189,3.1340,11.5028,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5190,3.0552,16.8368,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5191,2.9733,22.3897,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5192,5.1946,6.8455,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5193,3.1340,11.6219,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5194,3.0552,16.7551,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5195,2.9733,21.9484,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5196,5.1946,6.7257,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5197,3.1340,11.6728,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5198,3.0552,16.8489,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +5199,2.9733,22.3136,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5200,5.1946,6.4969,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5201,3.1340,11.4787,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5202,3.0552,16.8672,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +5203,2.9733,22.2746,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5204,5.1946,6.2750,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5205,3.1340,11.5187,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5206,3.0552,16.8487,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5207,2.9733,22.1557,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5208,5.1946,6.4205,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5209,3.1340,11.5651,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5210,3.0552,16.8876,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +5211,2.9733,22.3594,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5212,5.1946,6.4759,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5213,3.1340,11.6937,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5214,3.0552,17.1235,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5215,2.9733,22.5031,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5216,5.1946,6.5604,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5217,3.1340,11.6675,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5218,3.0552,16.8775,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5219,2.9733,22.2665,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5220,5.1946,6.5546,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5221,3.1340,11.4217,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5222,3.0552,16.7036,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5223,2.9733,22.0217,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5224,5.1946,6.2861,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5225,3.1340,11.4963,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5226,3.0552,16.8450,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5227,2.9733,22.1093,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +5228,5.1946,6.3527,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5229,3.1340,11.5073,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5230,3.0552,16.7605,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5231,2.9733,22.2499,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +5232,5.1946,6.4310,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5233,3.1340,11.5003,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5234,3.0552,16.8592,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5235,2.9733,22.5269,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5236,5.1946,6.9744,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5237,3.1340,11.6068,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5238,3.0552,16.6674,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +5239,2.9733,22.0713,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5240,5.1946,6.6542,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5241,3.1340,11.4054,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5242,3.0552,16.7633,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +5243,2.9733,21.8900,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5244,5.1946,6.5256,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5245,3.1340,11.4767,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5246,3.0552,16.8596,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +5247,2.9733,22.1423,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5248,5.1946,6.5935,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5249,3.1340,11.6730,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5250,3.0552,16.8422,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5251,2.9733,22.2041,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +5252,5.1946,6.5089,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5253,3.1340,11.4168,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5254,3.0552,16.6920,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +5255,2.9733,22.0506,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5256,5.1946,6.8167,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5257,3.1340,11.5405,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5258,3.0552,16.6674,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5259,2.9733,21.9605,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +5260,5.1946,6.5916,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5261,3.1340,11.5441,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5262,3.0552,16.8771,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +5263,2.9733,22.2442,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5264,5.1946,6.4686,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5265,3.1340,11.5195,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5266,3.0552,16.8398,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5267,2.9733,22.1170,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5268,5.1946,6.7432,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5269,3.1340,11.5039,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5270,3.0552,16.8423,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5271,2.9733,22.2921,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5272,5.1946,6.5857,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5273,3.1340,11.4594,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5274,3.0552,16.6973,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5275,2.9733,21.9469,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5276,5.1946,6.6354,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5277,3.1340,11.5593,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5278,3.0552,16.7326,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5279,2.9733,22.1545,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +5280,5.1946,5.7740,0.0394,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +5281,3.1340,9.7330,0.0382,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +5282,3.0552,14.0893,0.0370,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +5283,2.9733,18.5362,0.0176,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +5284,5.1946,6.7172,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +5285,3.1340,11.6580,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +5286,3.0552,16.9846,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +5287,2.9733,22.1620,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +5288,5.1946,6.7214,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +5289,3.1340,11.6393,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +5290,3.0552,16.8349,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +5291,2.9733,22.2719,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +5292,5.1946,6.4660,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +5293,3.1340,11.5230,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +5294,3.0552,16.8452,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +5295,2.9733,22.4758,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +5296,5.1946,6.7410,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +5297,3.1340,11.6935,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +5298,3.0552,17.0161,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +5299,2.9733,22.4680,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +5300,5.1946,6.5977,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +5301,3.1340,11.3979,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +5302,3.0552,16.7687,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +5303,2.9733,22.1502,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +5304,5.1946,6.4624,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +5305,3.1340,11.6432,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +5306,3.0552,16.8878,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +5307,2.9733,22.1794,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +5308,5.1946,6.7047,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +5309,3.1340,11.6285,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +5310,3.0552,16.7598,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +5311,2.9733,22.1367,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +5312,5.1946,6.5710,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +5313,3.1340,11.4130,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +5314,3.0552,16.6127,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +5315,2.9733,22.2432,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +5316,5.1946,6.8785,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +5317,3.1340,11.5567,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +5318,3.0552,16.6326,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +5319,2.9733,22.0832,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +5320,5.1946,6.5857,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +5321,3.1340,11.5207,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +5322,3.0552,16.8828,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +5323,2.9733,22.2420,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5324,5.1946,6.4776,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +5325,3.1340,11.5405,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +5326,3.0552,16.8988,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +5327,2.9733,22.1974,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +5328,5.1946,6.6098,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +5329,3.1340,11.6141,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +5330,3.0552,16.8470,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +5331,2.9733,22.3029,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +5332,5.1946,6.4410,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +5333,3.1340,11.6203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +5334,3.0552,16.8778,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +5335,2.9733,22.1475,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +5336,5.1946,6.3826,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +5337,3.1340,11.4446,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +5338,3.0552,16.7961,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +5339,2.9733,22.2034,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +5340,5.1946,6.4198,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +5341,3.1340,11.5304,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +5342,3.0552,16.7616,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +5343,2.9733,22.1200,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +5344,5.1946,6.4728,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5345,3.1340,11.5340,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +5346,3.0552,16.8523,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5347,2.9733,22.1285,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5348,5.1946,6.5034,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5349,3.1340,11.4467,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +5350,3.0552,16.6745,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5351,2.9733,22.2416,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5352,5.1946,6.4395,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +5353,3.1340,11.4470,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +5354,3.0552,16.6914,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5355,2.9733,22.0586,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5356,5.1946,6.4730,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +5357,3.1340,11.4863,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +5358,3.0552,16.7074,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +5359,2.9733,22.3218,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +5360,5.1946,6.7234,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +5361,3.1340,11.6179,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +5362,3.0552,17.0307,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +5363,2.9733,22.5265,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +5364,5.1946,6.8210,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +5365,3.1340,11.7526,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5366,3.0552,17.0100,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +5367,2.9733,22.4191,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +5368,5.1946,6.6995,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +5369,3.1340,11.3790,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5370,3.0552,16.5995,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +5371,2.9733,21.7910,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +5372,5.1946,6.5845,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5373,3.1340,11.6017,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +5374,3.0552,16.9029,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +5375,2.9733,22.3091,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5376,5.1946,6.5740,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5377,3.1340,11.5344,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5378,3.0552,16.8347,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +5379,2.9733,22.4503,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5380,5.1946,6.6762,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5381,3.1340,11.5499,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5382,3.0552,16.8568,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +5383,2.9733,22.2945,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5384,5.1946,6.6751,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5385,3.1340,11.6133,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5386,3.0552,16.6528,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +5387,2.9733,22.1456,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5388,5.1946,6.6755,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5389,3.1340,11.5285,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5390,3.0552,16.8953,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5391,2.9733,22.2697,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +5392,5.1946,6.5695,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5393,3.1340,11.4704,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5394,3.0552,16.7447,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5395,2.9733,21.9341,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5396,5.1946,6.6969,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5397,3.1340,11.4544,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5398,3.0552,16.8390,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +5399,2.9733,22.2386,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +5400,5.1946,6.4517,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5401,3.1340,11.4502,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5402,3.0552,16.7551,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5403,2.9733,21.9476,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5404,5.1946,6.7663,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5405,3.1340,11.5154,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5406,3.0552,16.6188,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +5407,2.9733,22.0972,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5408,5.1946,6.5533,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5409,3.1340,11.5126,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5410,3.0552,16.8329,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +5411,2.9733,22.2855,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5412,5.1946,6.5715,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5413,3.1340,11.6713,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5414,3.0552,16.8563,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +5415,2.9733,22.1649,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5416,5.1946,6.4365,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5417,3.1340,11.3553,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5418,3.0552,16.7703,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +5419,2.9733,22.2475,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +5420,5.1946,6.3841,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5421,3.1340,11.5916,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5422,3.0552,16.8302,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +5423,2.9733,22.2060,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5424,5.1946,6.6439,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5425,3.1340,11.5348,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5426,3.0552,16.7546,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5427,2.9733,22.1379,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +5428,5.1946,6.5803,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5429,3.1340,11.5349,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5430,3.0552,16.8177,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +5431,2.9733,22.0065,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5432,5.1946,6.7601,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5433,3.1340,11.6590,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5434,3.0552,16.9245,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +5435,2.9733,22.2720,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5436,5.1946,6.5235,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5437,3.1340,11.3799,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5438,3.0552,16.7274,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5439,2.9733,21.9988,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5440,5.1946,6.3710,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5441,3.1340,11.5488,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5442,3.0552,16.8998,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5443,2.9733,22.3609,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5444,5.1946,6.7912,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5445,3.1340,11.5356,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5446,3.0552,16.6278,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5447,2.9733,21.8463,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +5448,5.1946,6.6293,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5449,3.1340,11.5190,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5450,3.0552,16.4480,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5451,2.9733,21.7476,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5452,5.1946,6.5720,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5453,3.1340,11.4917,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5454,3.0552,16.7559,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5455,2.9733,22.2261,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +5456,5.1946,6.4334,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5457,3.1340,11.4900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5458,3.0552,16.8453,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +5459,2.9733,22.1393,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5460,5.1946,6.4627,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5461,3.1340,11.6048,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5462,3.0552,17.0694,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +5463,2.9733,22.4602,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5464,5.1946,6.8624,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5465,3.1340,11.6440,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5466,3.0552,16.9042,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5467,2.9733,22.7301,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5468,5.1946,6.5969,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5469,3.1340,11.5979,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5470,3.0552,16.8722,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +5471,2.9733,22.0792,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5472,5.1946,6.4616,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5473,3.1340,11.5441,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5474,3.0552,16.7518,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +5475,2.9733,22.2864,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5476,5.1946,6.4484,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5477,3.1340,11.5129,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5478,3.0552,16.8365,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5479,2.9733,22.1713,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5480,5.1946,6.4510,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5481,3.1340,11.6504,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5482,3.0552,16.9846,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5483,2.9733,22.5208,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5484,5.1946,6.6254,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5485,3.1340,11.5334,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5486,3.0552,16.8115,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5487,2.9733,22.0896,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5488,5.1946,6.5049,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5489,3.1340,11.5655,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5490,3.0552,16.8371,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5491,2.9733,22.1010,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5492,5.1946,6.3991,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5493,3.1340,11.4690,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5494,3.0552,16.7237,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5495,2.9733,22.2515,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5496,5.1946,6.4575,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5497,3.1340,11.4681,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5498,3.0552,16.7795,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5499,2.9733,22.0829,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5500,5.1946,6.5655,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5501,3.1340,11.6980,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5502,3.0552,16.9808,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5503,2.9733,22.4170,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5504,5.1946,6.5138,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5505,3.1340,11.5338,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5506,3.0552,16.7371,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5507,2.9733,21.9778,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5508,5.1946,6.1839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5509,3.1340,11.5230,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5510,3.0552,16.8315,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5511,2.9733,22.3035,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5512,5.1946,6.5656,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5513,3.1340,11.4762,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5514,3.0552,16.7424,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5515,2.9733,22.0912,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5516,5.1946,6.4736,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5517,3.1340,11.3204,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5518,3.0552,15.6298,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +5519,2.9733,19.5254,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5520,5.1946,5.5395,0.0572,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +5521,3.1340,9.6798,0.0217,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +5522,3.0552,14.0476,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +5523,2.9733,18.5026,0.0471,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +5524,5.1946,6.3058,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +5525,3.1340,11.4268,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +5526,3.0552,16.7978,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +5527,2.9733,22.2728,0.0233,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +5528,5.1946,6.2814,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +5529,3.1340,11.3788,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +5530,3.0552,16.7165,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +5531,2.9733,22.2983,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +5532,5.1946,6.4022,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +5533,3.1340,11.7285,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +5534,3.0552,16.9834,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +5535,2.9733,22.3988,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +5536,5.1946,6.5457,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +5537,3.1340,11.5523,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +5538,3.0552,16.8788,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +5539,2.9733,22.2948,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +5540,5.1946,6.5534,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +5541,3.1340,11.5479,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +5542,3.0552,16.7533,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +5543,2.9733,21.9934,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +5544,5.1946,6.4680,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +5545,3.1340,11.5359,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +5546,3.0552,16.8791,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +5547,2.9733,22.4020,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +5548,5.1946,6.4892,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +5549,3.1340,11.4696,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +5550,3.0552,16.7336,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +5551,2.9733,22.0251,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +5552,5.1946,6.5279,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +5553,3.1340,11.5303,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +5554,3.0552,16.8573,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +5555,2.9733,22.3173,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +5556,5.1946,6.6467,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +5557,3.1340,11.5041,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +5558,3.0552,16.7620,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +5559,2.9733,22.0815,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +5560,5.1946,6.8980,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +5561,3.1340,11.6403,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +5562,3.0552,16.9069,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +5563,2.9733,22.3305,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +5564,5.1946,6.5109,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +5565,3.1340,11.4258,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +5566,3.0552,16.6818,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +5567,2.9733,22.0517,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +5568,5.1946,6.4550,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +5569,3.1340,11.4710,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +5570,3.0552,15.9913,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +5571,2.9733,21.3676,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +5572,5.1946,6.4138,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +5573,3.1340,11.5136,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +5574,3.0552,16.7422,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +5575,2.9733,22.3056,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5576,5.1946,6.4768,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +5577,3.1340,11.5602,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +5578,3.0552,16.9309,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +5579,2.9733,22.3202,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +5580,5.1946,6.3119,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +5581,3.1340,11.4536,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +5582,3.0552,16.6047,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +5583,2.9733,21.9231,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +5584,5.1946,6.4831,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5585,3.1340,11.4379,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +5586,3.0552,16.6430,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +5587,2.9733,22.0503,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +5588,5.1946,6.3976,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +5589,3.1340,11.1280,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +5590,3.0552,16.1621,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +5591,2.9733,21.4193,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +5592,5.1946,6.4629,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +5593,3.1340,11.5624,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +5594,3.0552,16.8698,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +5595,2.9733,22.2868,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +5596,5.1946,6.4377,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +5597,3.1340,11.3855,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +5598,3.0552,16.7518,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +5599,2.9733,22.0859,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5600,5.1946,6.3150,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +5601,3.1340,11.3782,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +5602,3.0552,16.6440,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +5603,2.9733,22.0385,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5604,5.1946,6.3523,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +5605,3.1340,11.4795,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5606,3.0552,16.7647,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +5607,2.9733,22.3175,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5608,5.1946,6.7281,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +5609,3.1340,11.3428,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5610,3.0552,16.4056,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +5611,2.9733,21.5716,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +5612,5.1946,6.4256,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5613,3.1340,11.7264,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +5614,3.0552,16.8792,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5615,2.9733,22.4253,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +5616,5.1946,6.6086,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5617,3.1340,11.5822,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5618,3.0552,16.7903,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5619,2.9733,21.9423,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +5620,5.1946,6.3745,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5621,3.1340,11.6135,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5622,3.0552,16.7957,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5623,2.9733,22.0720,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +5624,5.1946,6.2275,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5625,3.1340,11.4286,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5626,3.0552,16.6578,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5627,2.9733,22.7302,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5628,5.1946,6.3716,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5629,3.1340,11.5022,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5630,3.0552,16.7538,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5631,2.9733,21.9743,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5632,5.1946,6.2077,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5633,3.1340,11.5493,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5634,3.0552,16.6305,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +5635,2.9733,22.1951,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5636,5.1946,6.5390,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5637,3.1340,11.5898,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5638,3.0552,16.9202,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +5639,2.9733,22.3689,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5640,5.1946,6.7738,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5641,3.1340,11.5852,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5642,3.0552,16.8465,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +5643,2.9733,22.0660,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +5644,5.1946,6.6387,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5645,3.1340,11.5090,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5646,3.0552,16.7475,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +5647,2.9733,21.9189,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +5648,5.1946,6.5232,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5649,3.1340,11.4705,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5650,3.0552,16.7346,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +5651,2.9733,22.0261,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +5652,5.1946,6.6290,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5653,3.1340,11.4864,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5654,3.0552,16.5884,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5655,2.9733,21.9497,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5656,5.1946,6.4945,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5657,3.1340,11.4798,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5658,3.0552,16.7621,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5659,2.9733,22.1813,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5660,5.1946,6.4939,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5661,3.1340,11.4914,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5662,3.0552,16.7335,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5663,2.9733,22.2089,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5664,5.1946,6.5308,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5665,3.1340,11.4565,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5666,3.0552,16.7959,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5667,2.9733,22.1453,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5668,5.1946,6.3816,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5669,3.1340,11.5648,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5670,3.0552,16.7471,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +5671,2.9733,21.9951,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5672,5.1946,6.4797,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5673,3.1340,11.5288,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5674,3.0552,16.7897,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5675,2.9733,22.1193,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5676,5.1946,6.4612,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5677,3.1340,11.5498,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5678,3.0552,16.7950,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +5679,2.9733,22.2548,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +5680,5.1946,6.2559,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5681,3.1340,11.4936,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5682,3.0552,16.8493,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +5683,2.9733,22.3605,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +5684,5.1946,6.5793,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5685,3.1340,11.6057,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5686,3.0552,16.8394,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5687,2.9733,22.1633,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5688,5.1946,6.4177,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5689,3.1340,11.4202,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5690,3.0552,16.8387,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +5691,2.9733,21.9683,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5692,5.1946,6.4275,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5693,3.1340,11.5049,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5694,3.0552,16.7997,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +5695,2.9733,22.2895,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5696,5.1946,6.4326,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5697,3.1340,11.4365,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5698,3.0552,16.4600,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5699,2.9733,21.6659,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +5700,5.1946,6.5145,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5701,3.1340,11.5645,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5702,3.0552,16.8590,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5703,2.9733,22.3267,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +5704,5.1946,6.4966,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5705,3.1340,11.5896,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5706,3.0552,16.8925,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5707,2.9733,22.2325,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +5708,5.1946,6.3531,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5709,3.1340,11.5366,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5710,3.0552,16.7695,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5711,2.9733,22.0679,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5712,5.1946,6.6087,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5713,3.1340,11.4282,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5714,3.0552,16.5793,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5715,2.9733,21.9342,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5716,5.1946,6.4499,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5717,3.1340,11.4690,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5718,3.0552,16.3358,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5719,2.9733,21.5591,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5720,5.1946,6.4039,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5721,3.1340,11.4934,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5722,3.0552,16.7331,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5723,2.9733,22.2392,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +5724,5.1946,6.5946,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5725,3.1340,11.4730,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5726,3.0552,16.8641,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +5727,2.9733,22.1363,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5728,5.1946,6.4439,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5729,3.1340,11.4983,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5730,3.0552,16.7994,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +5731,2.9733,22.1280,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +5732,5.1946,6.6455,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5733,3.1340,11.4738,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5734,3.0552,16.6211,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5735,2.9733,22.0870,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +5736,5.1946,6.5364,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5737,3.1340,11.3743,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5738,3.0552,16.2316,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +5739,2.9733,21.4028,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5740,5.1946,6.6804,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5741,3.1340,11.4590,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5742,3.0552,16.4192,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5743,2.9733,21.7589,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5744,5.1946,6.5822,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5745,3.1340,11.4605,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5746,3.0552,16.7183,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5747,2.9733,22.0930,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5748,5.1946,6.5071,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5749,3.1340,11.5319,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5750,3.0552,16.8094,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5751,2.9733,22.1144,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5752,5.1946,6.3855,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5753,3.1340,11.5345,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5754,3.0552,16.7308,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5755,2.9733,22.0848,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +5756,5.1946,6.5421,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5757,3.1340,11.5900,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5758,3.0552,16.7412,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5759,2.9733,22.0746,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5760,5.1946,19.3312,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +5761,3.1340,17.0359,0.0080,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +5762,3.0552,16.6313,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +5763,2.9733,16.7407,0.0097,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +5764,5.1946,6.0648,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +5765,3.1340,11.3926,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +5766,3.0552,16.8650,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +5767,2.9733,22.4994,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +5768,5.1946,6.0515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +5769,3.1340,11.3329,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +5770,3.0552,16.8460,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +5771,2.9733,22.3989,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +5772,5.1946,6.0426,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +5773,3.1340,11.4092,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +5774,3.0552,16.8693,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +5775,2.9733,22.3481,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +5776,5.1946,6.1917,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +5777,3.1340,11.4774,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +5778,3.0552,16.8489,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +5779,2.9733,22.3897,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +5780,5.1946,6.1422,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +5781,3.1340,11.4426,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +5782,3.0552,16.8818,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +5783,2.9733,22.4343,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +5784,5.1946,6.1886,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +5785,3.1340,11.4883,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +5786,3.0552,16.8835,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +5787,2.9733,22.4407,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +5788,5.1946,6.1747,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +5789,3.1340,11.4362,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +5790,3.0552,16.8297,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +5791,2.9733,22.2868,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +5792,5.1946,6.2939,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +5793,3.1340,11.7050,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +5794,3.0552,16.9545,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +5795,2.9733,22.2284,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +5796,5.1946,6.5135,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +5797,3.1340,11.4903,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +5798,3.0552,16.5853,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +5799,2.9733,22.1121,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +5800,5.1946,6.6019,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +5801,3.1340,11.5651,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +5802,3.0552,16.6776,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +5803,2.9733,21.8888,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +5804,5.1946,6.5377,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +5805,3.1340,11.5070,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +5806,3.0552,16.7569,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5807,2.9733,22.1577,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +5808,5.1946,6.4419,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +5809,3.1340,11.5383,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +5810,3.0552,16.8192,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5811,2.9733,22.1185,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +5812,5.1946,6.6297,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +5813,3.1340,11.4741,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +5814,3.0552,16.6107,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +5815,2.9733,21.9174,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +5816,5.1946,6.7242,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +5817,3.1340,11.5425,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +5818,3.0552,16.7126,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +5819,2.9733,22.0014,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5820,5.1946,6.5312,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +5821,3.1340,11.5084,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +5822,3.0552,16.6648,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5823,2.9733,22.0776,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +5824,5.1946,6.4902,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +5825,3.1340,11.5365,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +5826,3.0552,16.8399,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +5827,2.9733,22.1753,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +5828,5.1946,6.4967,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +5829,3.1340,11.4224,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +5830,3.0552,16.6860,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +5831,2.9733,22.0320,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +5832,5.1946,6.3711,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +5833,3.1340,11.5140,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +5834,3.0552,16.8087,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +5835,2.9733,22.1600,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +5836,5.1946,6.4945,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5837,3.1340,11.5872,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +5838,3.0552,16.8501,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +5839,2.9733,22.1807,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +5840,5.1946,6.8228,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +5841,3.1340,11.4893,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +5842,3.0552,16.5642,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +5843,2.9733,21.8790,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5844,5.1946,6.3838,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +5845,3.1340,11.5772,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +5846,3.0552,16.9992,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +5847,2.9733,22.3875,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5848,5.1946,6.4062,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +5849,3.1340,11.6129,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5850,3.0552,16.8769,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5851,2.9733,22.3405,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5852,5.1946,6.4003,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +5853,3.1340,11.3920,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5854,3.0552,16.7733,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5855,2.9733,22.2780,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +5856,5.1946,6.5046,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +5857,3.1340,11.5440,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5858,3.0552,16.8395,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +5859,2.9733,22.2220,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +5860,5.1946,6.5116,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +5861,3.1340,11.5699,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5862,3.0552,16.7767,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +5863,2.9733,22.0934,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +5864,5.1946,6.5055,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +5865,3.1340,11.5219,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5866,3.0552,16.7841,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5867,2.9733,21.5284,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +5868,5.1946,6.5098,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +5869,3.1340,11.6112,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5870,3.0552,16.8381,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +5871,2.9733,22.2446,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +5872,5.1946,6.5311,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +5873,3.1340,11.3935,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5874,3.0552,16.7078,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +5875,2.9733,22.0576,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5876,5.1946,6.4900,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +5877,3.1340,11.5710,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5878,3.0552,16.8361,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +5879,2.9733,22.1250,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +5880,5.1946,6.5889,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5881,3.1340,11.5252,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5882,3.0552,16.7203,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5883,2.9733,22.0935,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +5884,5.1946,6.5976,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5885,3.1340,11.4683,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5886,3.0552,16.6218,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +5887,2.9733,22.0264,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +5888,5.1946,6.6188,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5889,3.1340,11.5620,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5890,3.0552,16.7537,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5891,2.9733,22.2837,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +5892,5.1946,6.4936,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5893,3.1340,11.4085,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5894,3.0552,16.6645,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5895,2.9733,22.0790,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +5896,5.1946,6.4516,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5897,3.1340,11.4470,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5898,3.0552,16.7379,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5899,2.9733,22.0724,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5900,5.1946,6.4769,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5901,3.1340,11.5533,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5902,3.0552,16.7907,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +5903,2.9733,22.1872,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5904,5.1946,6.6432,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5905,3.1340,11.6278,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5906,3.0552,16.7758,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5907,2.9733,22.1642,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5908,5.1946,6.5926,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5909,3.1340,11.5276,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5910,3.0552,16.8034,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +5911,2.9733,22.2942,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5912,5.1946,6.4502,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5913,3.1340,11.5055,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5914,3.0552,16.9322,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5915,2.9733,22.3474,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +5916,5.1946,6.4553,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5917,3.1340,11.5541,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5918,3.0552,16.8690,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +5919,2.9733,22.2011,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +5920,5.1946,6.4955,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5921,3.1340,11.4873,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5922,3.0552,16.8903,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +5923,2.9733,22.1880,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +5924,5.1946,6.4125,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5925,3.1340,11.4354,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5926,3.0552,16.6818,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +5927,2.9733,21.9283,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5928,5.1946,6.6673,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5929,3.1340,11.5419,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5930,3.0552,16.6792,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +5931,2.9733,22.0975,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5932,5.1946,6.5019,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5933,3.1340,11.5272,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5934,3.0552,16.8485,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +5935,2.9733,22.3796,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5936,5.1946,6.4595,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5937,3.1340,11.4433,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5938,3.0552,16.6852,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5939,2.9733,22.2116,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +5940,5.1946,6.6133,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5941,3.1340,11.4093,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5942,3.0552,16.8742,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5943,2.9733,22.3011,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +5944,5.1946,6.3798,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5945,3.1340,11.4561,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5946,3.0552,16.6943,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5947,2.9733,21.9938,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +5948,5.1946,6.6257,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5949,3.1340,11.4977,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5950,3.0552,16.7015,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5951,2.9733,22.0371,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +5952,5.1946,6.4182,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5953,3.1340,11.2634,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5954,3.0552,16.3760,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5955,2.9733,21.6732,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5956,5.1946,6.4592,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5957,3.1340,11.4493,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5958,3.0552,16.6581,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +5959,2.9733,22.0695,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5960,5.1946,6.4576,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5961,3.1340,11.3839,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5962,3.0552,16.7540,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +5963,2.9733,22.2407,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5964,5.1946,6.4155,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5965,3.1340,11.4754,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5966,3.0552,16.8337,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +5967,2.9733,22.1236,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +5968,5.1946,6.5359,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5969,3.1340,11.5424,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5970,3.0552,16.7567,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +5971,2.9733,22.1092,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +5972,5.1946,6.6149,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5973,3.1340,11.4805,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5974,3.0552,16.6503,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +5975,2.9733,22.0174,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +5976,5.1946,6.7432,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5977,3.1340,11.5932,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5978,3.0552,16.7685,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +5979,2.9733,22.2225,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +5980,5.1946,6.5325,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5981,3.1340,11.4309,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5982,3.0552,16.7698,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +5983,2.9733,22.1208,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5984,5.1946,6.4380,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5985,3.1340,11.5080,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5986,3.0552,16.7991,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5987,2.9733,22.1672,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5988,5.1946,6.4705,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5989,3.1340,11.5535,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5990,3.0552,16.7286,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +5991,2.9733,22.0816,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +5992,5.1946,6.6647,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5993,3.1340,11.7304,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5994,3.0552,16.7220,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +5995,2.9733,22.1126,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +5996,5.1946,6.7122,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5997,3.1340,11.5809,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +5998,3.0552,16.7236,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +5999,2.9733,22.1030,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6000,5.1946,5.5470,0.0225,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +6001,3.1340,9.6912,0.0199,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +6002,3.0552,14.2155,0.0427,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +6003,2.9733,18.5822,0.0164,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +6004,5.1946,6.5586,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +6005,3.1340,11.5435,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +6006,3.0552,16.8439,0.0277,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +6007,2.9733,22.2596,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +6008,5.1946,6.7093,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +6009,3.1340,11.6108,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +6010,3.0552,16.7408,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +6011,2.9733,22.0911,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +6012,5.1946,6.4631,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +6013,3.1340,11.4525,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +6014,3.0552,16.7440,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +6015,2.9733,22.0786,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +6016,5.1946,6.4677,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +6017,3.1340,11.5582,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +6018,3.0552,16.9885,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +6019,2.9733,22.3920,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +6020,5.1946,6.4832,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +6021,3.1340,11.5189,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +6022,3.0552,16.8576,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +6023,2.9733,22.0849,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +6024,5.1946,6.3697,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +6025,3.1340,11.6076,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6026,3.0552,16.7814,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +6027,2.9733,22.0540,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +6028,5.1946,6.6851,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +6029,3.1340,11.5692,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +6030,3.0552,16.7181,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +6031,2.9733,22.2052,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +6032,5.1946,6.5518,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +6033,3.1340,11.5335,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +6034,3.0552,16.8478,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +6035,2.9733,22.2263,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +6036,5.1946,6.5374,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +6037,3.1340,11.5649,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +6038,3.0552,16.7770,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +6039,2.9733,22.1080,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +6040,5.1946,6.6741,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +6041,3.1340,11.5092,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +6042,3.0552,16.8411,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +6043,2.9733,22.2438,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6044,5.1946,6.6797,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +6045,3.1340,11.5808,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +6046,3.0552,16.8054,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +6047,2.9733,22.0127,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +6048,5.1946,6.7085,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +6049,3.1340,11.5697,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +6050,3.0552,16.6953,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +6051,2.9733,22.0603,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +6052,5.1946,6.5236,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +6053,3.1340,11.5292,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +6054,3.0552,16.7934,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +6055,2.9733,22.2255,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +6056,5.1946,6.5667,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6057,3.1340,11.5085,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +6058,3.0552,16.8850,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +6059,2.9733,22.3087,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +6060,5.1946,6.5379,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6061,3.1340,11.4294,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +6062,3.0552,16.8642,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +6063,2.9733,22.2965,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +6064,5.1946,6.5418,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6065,3.1340,11.5064,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +6066,3.0552,16.8260,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6067,2.9733,22.0895,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6068,5.1946,6.6214,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6069,3.1340,11.5427,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +6070,3.0552,16.6686,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6071,2.9733,22.0586,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6072,5.1946,6.5184,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +6073,3.1340,11.5184,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +6074,3.0552,16.8564,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6075,2.9733,22.1907,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6076,5.1946,6.7540,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6077,3.1340,11.5538,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +6078,3.0552,16.7507,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6079,2.9733,22.0606,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +6080,5.1946,6.5256,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6081,3.1340,11.4459,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +6082,3.0552,16.8514,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +6083,2.9733,22.2883,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +6084,5.1946,6.4540,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +6085,3.1340,11.4507,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6086,3.0552,16.9240,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +6087,2.9733,22.1895,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +6088,5.1946,6.5673,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +6089,3.1340,11.7435,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6090,3.0552,16.8210,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +6091,2.9733,22.3879,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +6092,5.1946,6.7430,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6093,3.1340,11.7335,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +6094,3.0552,16.7986,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +6095,2.9733,22.0805,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6096,5.1946,6.6917,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6097,3.1340,11.5791,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6098,3.0552,16.7504,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +6099,2.9733,22.1639,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6100,5.1946,6.5184,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6101,3.1340,11.5692,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6102,3.0552,16.8460,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +6103,2.9733,22.2697,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6104,5.1946,6.5408,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6105,3.1340,11.5394,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6106,3.0552,16.8649,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +6107,2.9733,22.1703,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6108,5.1946,6.4876,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6109,3.1340,11.6007,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6110,3.0552,16.8661,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6111,2.9733,22.2968,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6112,5.1946,6.4188,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6113,3.1340,11.5160,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6114,3.0552,16.8729,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6115,2.9733,22.0329,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6116,5.1946,6.4401,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6117,3.1340,11.5543,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6118,3.0552,16.9442,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6119,2.9733,22.4342,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +6120,5.1946,6.4886,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6121,3.1340,11.5985,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6122,3.0552,16.9917,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6123,2.9733,22.3858,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6124,5.1946,6.5027,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6125,3.1340,11.7332,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6126,3.0552,16.8650,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6127,2.9733,22.3847,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6128,5.1946,6.4726,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6129,3.1340,11.6304,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6130,3.0552,16.8967,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6131,2.9733,22.5162,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6132,5.1946,6.3870,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6133,3.1340,11.4949,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6134,3.0552,16.8399,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +6135,2.9733,22.2757,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6136,5.1946,6.4219,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6137,3.1340,11.5157,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6138,3.0552,16.7675,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +6139,2.9733,22.2957,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +6140,5.1946,6.5431,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6141,3.1340,11.5580,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6142,3.0552,16.8358,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +6143,2.9733,21.0900,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6144,5.1946,6.5956,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6145,3.1340,11.5823,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6146,3.0552,16.8254,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6147,2.9733,22.3224,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +6148,5.1946,6.5210,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6149,3.1340,11.5005,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6150,3.0552,16.7959,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +6151,2.9733,22.1300,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6152,5.1946,6.4361,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6153,3.1340,11.6557,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6154,3.0552,16.9788,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +6155,2.9733,22.4045,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6156,5.1946,6.4818,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6157,3.1340,11.5507,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6158,3.0552,16.8740,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6159,2.9733,22.6514,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6160,5.1946,6.6232,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6161,3.1340,11.5773,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6162,3.0552,16.7263,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6163,2.9733,21.9025,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6164,5.1946,6.5237,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6165,3.1340,11.5915,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6166,3.0552,16.9052,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6167,2.9733,22.3661,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6168,5.1946,6.4560,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6169,3.1340,11.4978,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6170,3.0552,16.7566,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6171,2.9733,21.9897,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6172,5.1946,6.3644,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6173,3.1340,11.5217,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6174,3.0552,16.9147,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6175,2.9733,22.4632,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +6176,5.1946,6.5545,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6177,3.1340,11.5453,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6178,3.0552,16.8087,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6179,2.9733,22.1875,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6180,5.1946,6.4441,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6181,3.1340,11.5665,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6182,3.0552,16.6640,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +6183,2.9733,21.8558,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6184,5.1946,6.2556,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6185,3.1340,11.4320,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6186,3.0552,16.8593,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6187,2.9733,22.3995,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6188,5.1946,6.4087,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6189,3.1340,11.4505,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6190,3.0552,16.8665,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +6191,2.9733,22.1781,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6192,5.1946,6.4742,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6193,3.1340,11.8413,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6194,3.0552,17.0033,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6195,2.9733,22.3940,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6196,5.1946,6.6569,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6197,3.1340,11.4764,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6198,3.0552,16.7832,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6199,2.9733,22.1168,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6200,5.1946,6.5588,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6201,3.1340,11.4505,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6202,3.0552,16.6558,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6203,2.9733,22.0122,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6204,5.1946,6.5152,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6205,3.1340,11.5167,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6206,3.0552,16.7434,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6207,2.9733,22.1932,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6208,5.1946,6.4754,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6209,3.1340,11.5148,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6210,3.0552,16.7893,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6211,2.9733,22.0428,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6212,5.1946,6.4263,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6213,3.1340,12.2190,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6214,3.0552,16.9105,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6215,2.9733,22.3407,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6216,5.1946,6.4735,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6217,3.1340,11.4783,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6218,3.0552,16.8635,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6219,2.9733,22.2430,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6220,5.1946,6.4559,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6221,3.1340,11.5588,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6222,3.0552,16.6887,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6223,2.9733,22.0005,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6224,5.1946,6.4677,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6225,3.1340,11.5628,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6226,3.0552,16.8430,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6227,2.9733,22.3636,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6228,5.1946,6.5083,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6229,3.1340,10.7753,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6230,3.0552,15.6145,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6231,2.9733,20.8277,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6232,5.1946,6.4698,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6233,3.1340,11.6966,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6234,3.0552,16.9882,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6235,2.9733,22.3898,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6236,5.1946,6.5820,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6237,3.1340,11.4796,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6238,3.0552,16.7671,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +6239,2.9733,22.1300,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6240,5.1946,5.8839,0.0359,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +6241,3.1340,9.8944,0.0406,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +6242,3.0552,14.2157,0.0190,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +6243,2.9733,18.6103,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +6244,5.1946,6.4710,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +6245,3.1340,11.6003,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +6246,3.0552,16.8980,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +6247,2.9733,22.4098,0.0356,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +6248,5.1946,6.6388,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +6249,3.1340,11.4327,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +6250,3.0552,16.8435,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +6251,2.9733,22.0919,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +6252,5.1946,6.3483,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +6253,3.1340,11.5770,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +6254,3.0552,16.8824,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +6255,2.9733,22.2685,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +6256,5.1946,6.3711,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +6257,3.1340,11.5079,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +6258,3.0552,16.8127,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +6259,2.9733,22.3224,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +6260,5.1946,6.5940,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +6261,3.1340,11.4953,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +6262,3.0552,17.1339,0.0258,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +6263,2.9733,21.8862,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +6264,5.1946,6.5315,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +6265,3.1340,11.6049,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6266,3.0552,16.9047,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +6267,2.9733,22.3503,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +6268,5.1946,6.5357,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +6269,3.1340,11.4448,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +6270,3.0552,16.8959,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +6271,2.9733,22.2475,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +6272,5.1946,6.4026,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +6273,3.1340,11.5055,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +6274,3.0552,16.8261,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +6275,2.9733,22.2965,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +6276,5.1946,6.4493,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +6277,3.1340,11.5742,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +6278,3.0552,16.8675,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +6279,2.9733,22.5135,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +6280,5.1946,6.6799,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +6281,3.1340,11.4715,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +6282,3.0552,16.7819,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +6283,2.9733,21.9106,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +6284,5.1946,6.4486,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +6285,3.1340,11.5286,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +6286,3.0552,16.7521,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +6287,2.9733,22.3030,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +6288,5.1946,6.3647,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +6289,3.1340,11.4709,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +6290,3.0552,16.9107,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +6291,2.9733,22.1601,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +6292,5.1946,6.4295,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +6293,3.1340,11.5892,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +6294,3.0552,16.8666,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +6295,2.9733,22.1965,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6296,5.1946,6.3801,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6297,3.1340,11.4745,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +6298,3.0552,16.7854,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +6299,2.9733,22.1807,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6300,5.1946,6.4332,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6301,3.1340,11.6259,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +6302,3.0552,16.7365,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +6303,2.9733,22.0390,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +6304,5.1946,6.8022,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6305,3.1340,11.6124,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +6306,3.0552,16.6406,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +6307,2.9733,22.0144,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +6308,5.1946,6.6006,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6309,3.1340,11.5081,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +6310,3.0552,16.6551,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +6311,2.9733,21.8910,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +6312,5.1946,6.4921,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +6313,3.1340,11.5225,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +6314,3.0552,16.8648,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +6315,2.9733,22.2203,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +6316,5.1946,6.6976,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6317,3.1340,11.4826,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +6318,3.0552,16.6458,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +6319,2.9733,21.9582,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6320,5.1946,6.5074,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6321,3.1340,11.5085,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +6322,3.0552,16.7797,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +6323,2.9733,22.1155,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6324,5.1946,6.5607,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +6325,3.1340,11.5390,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6326,3.0552,16.5982,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +6327,2.9733,21.9572,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6328,5.1946,6.4838,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +6329,3.1340,11.5665,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6330,3.0552,16.5180,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +6331,2.9733,21.9247,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +6332,5.1946,6.4597,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6333,3.1340,11.5414,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +6334,3.0552,16.7718,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6335,2.9733,22.1025,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +6336,5.1946,6.5227,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6337,3.1340,11.6082,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6338,3.0552,16.7700,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6339,2.9733,22.0972,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +6340,5.1946,6.4537,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6341,3.1340,11.4340,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6342,3.0552,16.5443,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6343,2.9733,21.9293,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +6344,5.1946,6.3076,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6345,3.1340,11.3953,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6346,3.0552,16.7804,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +6347,2.9733,22.2035,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6348,5.1946,6.5754,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6349,3.1340,11.5504,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6350,3.0552,16.7434,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6351,2.9733,22.1840,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6352,5.1946,6.5985,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6353,3.1340,11.5368,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6354,3.0552,16.6496,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +6355,2.9733,21.8540,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6356,5.1946,6.4727,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6357,3.1340,11.5576,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6358,3.0552,16.8971,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +6359,2.9733,22.3045,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6360,5.1946,6.3530,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6361,3.1340,11.5441,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6362,3.0552,16.8915,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +6363,2.9733,22.2838,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +6364,5.1946,6.4878,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6365,3.1340,11.7116,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6366,3.0552,17.0132,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +6367,2.9733,22.5000,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +6368,5.1946,6.8630,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6369,3.1340,11.5912,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6370,3.0552,16.6315,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +6371,2.9733,21.8084,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +6372,5.1946,6.7452,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6373,3.1340,11.5854,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6374,3.0552,16.7724,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6375,2.9733,22.1501,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6376,5.1946,6.6100,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6377,3.1340,11.5643,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6378,3.0552,16.8695,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6379,2.9733,22.1238,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6380,5.1946,6.6164,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6381,3.1340,11.5887,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6382,3.0552,16.8826,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6383,2.9733,22.2773,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6384,5.1946,6.7517,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6385,3.1340,11.7865,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6386,3.0552,16.9512,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6387,2.9733,22.2937,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6388,5.1946,6.4090,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6389,3.1340,11.5034,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6390,3.0552,16.8040,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +6391,2.9733,22.0143,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6392,5.1946,6.8835,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6393,3.1340,11.4616,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6394,3.0552,16.4522,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6395,2.9733,21.7870,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6396,5.1946,6.5340,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6397,3.1340,11.5506,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6398,3.0552,16.7721,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +6399,2.9733,22.1072,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +6400,5.1946,6.5819,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6401,3.1340,11.5612,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6402,3.0552,16.9103,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +6403,2.9733,22.2244,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +6404,5.1946,6.6528,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6405,3.1340,11.4964,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6406,3.0552,16.8119,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6407,2.9733,22.1590,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6408,5.1946,6.5565,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6409,3.1340,11.5793,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6410,3.0552,16.7936,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +6411,2.9733,22.0791,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6412,5.1946,6.6464,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6413,3.1340,11.5372,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6414,3.0552,16.7280,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +6415,2.9733,22.0440,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6416,5.1946,6.6360,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6417,3.1340,11.4639,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6418,3.0552,16.6685,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6419,2.9733,21.9447,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +6420,5.1946,6.5939,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6421,3.1340,11.6297,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6422,3.0552,16.8901,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6423,2.9733,22.3490,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +6424,5.1946,6.5336,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6425,3.1340,11.4342,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6426,3.0552,16.6837,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6427,2.9733,22.1349,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +6428,5.1946,6.5093,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6429,3.1340,11.5101,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6430,3.0552,16.8261,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6431,2.9733,22.1097,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6432,5.1946,6.6391,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6433,3.1340,11.5734,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6434,3.0552,16.7671,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6435,2.9733,22.1380,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6436,5.1946,6.6100,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6437,3.1340,11.5533,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6438,3.0552,16.7885,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6439,2.9733,22.1543,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6440,5.1946,6.5961,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6441,3.1340,11.5461,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6442,3.0552,16.6879,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6443,2.9733,22.0633,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +6444,5.1946,6.5255,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6445,3.1340,11.5208,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6446,3.0552,16.8735,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6447,2.9733,22.2591,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6448,5.1946,6.4322,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6449,3.1340,11.4839,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6450,3.0552,16.9194,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +6451,2.9733,22.2680,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6452,5.1946,6.4108,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6453,3.1340,11.6265,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6454,3.0552,16.9395,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6455,2.9733,22.2755,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +6456,5.1946,6.4284,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6457,3.1340,11.5549,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6458,3.0552,16.8628,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +6459,2.9733,22.2370,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6460,5.1946,6.6884,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6461,3.1340,11.6317,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6462,3.0552,16.8409,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6463,2.9733,22.2458,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6464,5.1946,6.4937,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6465,3.1340,11.5385,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6466,3.0552,16.7901,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6467,2.9733,22.1977,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6468,5.1946,6.5561,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6469,3.1340,11.6896,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6470,3.0552,16.9683,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6471,2.9733,22.3169,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6472,5.1946,6.5096,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6473,3.1340,11.4870,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6474,3.0552,16.8477,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6475,2.9733,22.2621,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6476,5.1946,6.5133,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6477,3.1340,11.5097,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6478,3.0552,16.8786,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6479,2.9733,22.1590,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6480,5.1946,20.3762,0.0126,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +6481,3.1340,17.2698,0.0084,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +6482,3.0552,17.3931,0.0052,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +6483,2.9733,16.4034,0.0094,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +6484,5.1946,5.9790,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,15967,0 +6485,3.1340,11.3146,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,14199,0 +6486,3.0552,16.8225,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,17643,0 +6487,2.9733,22.3747,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,14303,0 +6488,5.1946,6.0312,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6175,0 +6489,3.1340,11.3879,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5501,0 +6490,3.0552,16.8230,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8663,0 +6491,2.9733,22.2948,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6869,0 +6492,5.1946,6.0517,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12054,0 +6493,3.1340,11.4142,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,15189,0 +6494,3.0552,16.8485,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14797,0 +6495,2.9733,22.3330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11135,0 +6496,5.1946,6.1905,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19327,0 +6497,3.1340,11.3923,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15140,0 +6498,3.0552,16.8558,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16878,0 +6499,2.9733,22.3742,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17362,0 +6500,5.1946,6.1080,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10956,0 +6501,3.1340,11.4138,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9351,0 +6502,3.0552,16.8665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9754,0 +6503,2.9733,22.3137,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,17542,0 +6504,5.1946,6.2136,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5031,0 +6505,3.1340,11.4260,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4635,0 +6506,3.0552,16.7955,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6836,0 +6507,2.9733,22.1395,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5769,0 +6508,5.1946,6.2919,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3913,0 +6509,3.1340,11.5156,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2919,0 +6510,3.0552,16.8799,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3234,0 +6511,2.9733,22.4463,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,3051,0 +6512,5.1946,6.3777,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3192,0 +6513,3.1340,11.6234,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2362,0 +6514,3.0552,17.0213,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2230,0 +6515,2.9733,22.4989,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +6516,5.1946,6.6445,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +6517,3.1340,11.5610,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2416,0 +6518,3.0552,16.9194,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2408,0 +6519,2.9733,22.3240,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +6520,5.1946,6.6188,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +6521,3.1340,11.5734,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +6522,3.0552,16.8514,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +6523,2.9733,22.1868,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2369,0 +6524,5.1946,6.3778,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +6525,3.1340,11.5147,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +6526,3.0552,16.7375,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6527,2.9733,22.0497,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +6528,5.1946,6.4671,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +6529,3.1340,11.4738,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +6530,3.0552,16.7706,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6531,2.9733,22.1442,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +6532,5.1946,6.4771,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1127,0 +6533,3.1340,11.4762,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,972,0 +6534,3.0552,16.5618,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +6535,2.9733,22.0628,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +6536,5.1946,6.7470,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +6537,3.1340,11.5817,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +6538,3.0552,16.8775,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +6539,2.9733,22.2003,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6540,5.1946,6.5664,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +6541,3.1340,11.4573,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +6542,3.0552,16.8538,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6543,2.9733,22.0713,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +6544,5.1946,6.4163,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +6545,3.1340,11.5030,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +6546,3.0552,16.8600,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,896,0 +6547,2.9733,22.2274,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +6548,5.1946,6.6839,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +6549,3.1340,11.5341,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +6550,3.0552,16.6908,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6551,2.9733,22.0980,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1103,0 +6552,5.1946,6.7291,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +6553,3.1340,11.4655,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +6554,3.0552,16.6157,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +6555,2.9733,21.7784,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +6556,5.1946,6.6231,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6557,3.1340,11.5206,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,678,0 +6558,3.0552,16.7215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +6559,2.9733,22.1697,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +6560,5.1946,6.6692,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +6561,3.1340,11.5393,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,665,0 +6562,3.0552,16.7931,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1157,0 +6563,2.9733,22.2836,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6564,5.1946,6.4885,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +6565,3.1340,11.4974,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +6566,3.0552,16.8606,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +6567,2.9733,22.1670,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6568,5.1946,6.6069,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +6569,3.1340,11.6270,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6570,3.0552,16.8123,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6571,2.9733,22.0994,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6572,5.1946,6.3190,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,645,0 +6573,3.1340,11.3798,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6574,3.0552,16.6949,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6575,2.9733,22.0278,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +6576,5.1946,6.5904,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +6577,3.1340,11.6545,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6578,3.0552,16.8719,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +6579,2.9733,22.4158,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +6580,5.1946,6.5855,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +6581,3.1340,11.4487,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6582,3.0552,16.6835,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +6583,2.9733,21.9602,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +6584,5.1946,6.5156,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,649,0 +6585,3.1340,11.5058,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6586,3.0552,16.9310,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6587,2.9733,22.4090,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +6588,5.1946,6.4879,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,662,0 +6589,3.1340,11.6819,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6590,3.0552,16.7178,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +6591,2.9733,22.0715,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6592,5.1946,6.4538,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,624,0 +6593,3.1340,11.5298,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6594,3.0552,16.8172,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +6595,2.9733,22.0807,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6596,5.1946,6.5812,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +6597,3.1340,11.4507,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6598,3.0552,16.6390,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +6599,2.9733,21.8740,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6600,5.1946,6.5197,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6601,3.1340,11.4981,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6602,3.0552,16.6887,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6603,2.9733,22.0670,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +6604,5.1946,6.7676,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6605,3.1340,11.5111,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6606,3.0552,16.7277,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +6607,2.9733,21.9552,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +6608,5.1946,6.5067,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6609,3.1340,11.4129,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6610,3.0552,16.7312,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6611,2.9733,22.0289,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +6612,5.1946,6.5347,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6613,3.1340,11.6363,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6614,3.0552,16.7841,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6615,2.9733,22.1483,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +6616,5.1946,7.0184,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6617,3.1340,11.5643,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6618,3.0552,16.8921,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6619,2.9733,22.1506,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6620,5.1946,6.6414,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6621,3.1340,11.5678,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6622,3.0552,16.5053,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +6623,2.9733,21.7533,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6624,5.1946,6.7212,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6625,3.1340,11.4948,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6626,3.0552,16.5414,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6627,2.9733,21.8963,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6628,5.1946,6.6203,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6629,3.1340,11.4603,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6630,3.0552,16.7242,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6631,2.9733,21.9934,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6632,5.1946,6.4577,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6633,3.1340,11.5094,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6634,3.0552,16.8312,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6635,2.9733,22.1609,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6636,5.1946,6.4981,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6637,3.1340,11.5693,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6638,3.0552,16.7573,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +6639,2.9733,22.1457,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6640,5.1946,6.5185,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6641,3.1340,11.6336,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6642,3.0552,16.8873,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +6643,2.9733,22.2805,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +6644,5.1946,6.6438,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6645,3.1340,11.6177,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6646,3.0552,16.6940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +6647,2.9733,22.1047,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6648,5.1946,6.5654,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6649,3.1340,11.4878,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6650,3.0552,16.8163,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +6651,2.9733,22.2012,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6652,5.1946,6.5061,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6653,3.1340,11.5008,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6654,3.0552,16.8647,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6655,2.9733,22.2061,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6656,5.1946,6.5403,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6657,3.1340,11.5878,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6658,3.0552,16.9265,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6659,2.9733,22.2057,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6660,5.1946,6.4637,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6661,3.1340,11.5012,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6662,3.0552,16.5752,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6663,2.9733,21.9361,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6664,5.1946,6.5714,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6665,3.1340,11.4280,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6666,3.0552,16.7009,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6667,2.9733,22.0077,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +6668,5.1946,6.5580,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6669,3.1340,11.5045,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6670,3.0552,16.6263,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6671,2.9733,21.9098,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +6672,5.1946,6.6050,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6673,3.1340,11.5413,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6674,3.0552,16.8019,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6675,2.9733,22.2016,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6676,5.1946,6.4318,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6677,3.1340,11.4483,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6678,3.0552,16.8756,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +6679,2.9733,22.2190,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6680,5.1946,6.2885,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6681,3.1340,11.5142,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6682,3.0552,16.9034,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +6683,2.9733,22.3777,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6684,5.1946,6.5116,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6685,3.1340,11.6482,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6686,3.0552,16.9035,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +6687,2.9733,22.3785,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6688,5.1946,6.4132,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6689,3.1340,11.4253,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6690,3.0552,14.2525,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +6691,2.9733,19.4657,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +6692,5.1946,6.6034,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6693,3.1340,11.6053,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6694,3.0552,16.9170,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,950,0 +6695,2.9733,22.2986,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6696,5.1946,6.5367,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6697,3.1340,11.4916,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6698,3.0552,16.8127,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6699,2.9733,22.1187,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +6700,5.1946,6.4120,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6701,3.1340,11.5298,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6702,3.0552,16.9944,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +6703,2.9733,22.3734,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6704,5.1946,6.4908,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6705,3.1340,11.6829,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6706,3.0552,16.9634,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6707,2.9733,22.5062,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6708,5.1946,6.8533,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6709,3.1340,11.6252,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6710,3.0552,16.3741,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6711,2.9733,21.6415,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6712,5.1946,6.7032,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6713,3.1340,11.6000,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6714,3.0552,16.6932,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +6715,2.9733,22.2399,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +6716,5.1946,6.6836,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6717,3.1340,11.5002,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6718,3.0552,16.6876,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +6719,2.9733,22.0465,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6720,5.1946,5.6836,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +6721,3.1340,9.8935,0.0330,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +6722,3.0552,14.3113,0.0361,0.0000,0,0,0.0000,0,0.0000,0,1,0,118482,0 +6723,2.9733,18.5731,0.0146,0.0000,0,0,0.0000,0,0.0000,0,1,0,121308,0 +6724,5.1946,6.6917,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +6725,3.1340,11.6316,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +6726,3.0552,17.0225,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,18283,0 +6727,2.9733,22.3724,0.0311,0.0000,0,0,0.0000,0,0.0000,0,0,0,16957,0 +6728,5.1946,6.6048,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +6729,3.1340,11.4537,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +6730,3.0552,16.5965,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,13242,0 +6731,2.9733,21.8643,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,5603,0 +6732,5.1946,6.5225,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +6733,3.1340,11.6240,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +6734,3.0552,16.8859,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,8492,0 +6735,2.9733,22.1755,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5499,0 +6736,5.1946,6.4597,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +6737,3.1340,11.5030,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +6738,3.0552,16.8996,0.0156,0.0000,0,0,0.0000,0,0.0000,0,0,0,7279,0 +6739,2.9733,22.1984,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4910,0 +6740,5.1946,6.3858,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +6741,3.1340,11.5727,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +6742,3.0552,16.8812,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +6743,2.9733,22.2620,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4608,0 +6744,5.1946,6.5237,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +6745,3.1340,11.5575,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6746,3.0552,16.7762,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +6747,2.9733,22.3325,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4126,0 +6748,5.1946,6.5503,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +6749,3.1340,11.5908,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +6750,3.0552,16.9328,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2261,0 +6751,2.9733,22.3331,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,3675,0 +6752,5.1946,6.7092,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +6753,3.1340,11.6890,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +6754,3.0552,16.7802,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1787,0 +6755,2.9733,22.0233,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,3610,0 +6756,5.1946,6.7105,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +6757,3.1340,11.4565,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +6758,3.0552,16.6474,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2146,0 +6759,2.9733,21.8047,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1060,0 +6760,5.1946,6.4565,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +6761,3.1340,11.5283,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +6762,3.0552,16.7795,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +6763,2.9733,22.1498,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +6764,5.1946,6.6735,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +6765,3.1340,11.5718,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +6766,3.0552,16.7236,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1979,0 +6767,2.9733,22.1015,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +6768,5.1946,6.5784,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +6769,3.1340,11.5351,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +6770,3.0552,16.6578,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1429,0 +6771,2.9733,22.0080,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +6772,5.1946,6.7619,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +6773,3.1340,11.5914,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +6774,3.0552,16.8263,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1219,0 +6775,2.9733,22.3387,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +6776,5.1946,6.5533,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +6777,3.1340,11.3837,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +6778,3.0552,16.7411,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1074,0 +6779,2.9733,22.0383,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +6780,5.1946,6.2604,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6781,3.1340,11.4140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +6782,3.0552,16.7584,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +6783,2.9733,22.1111,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1693,0 +6784,5.1946,6.3262,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6785,3.1340,11.5545,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +6786,3.0552,16.8350,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +6787,2.9733,22.2855,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +6788,5.1946,6.5782,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +6789,3.1340,11.4406,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +6790,3.0552,16.5847,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6791,2.9733,21.8208,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6792,5.1946,6.4092,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +6793,3.1340,11.5080,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +6794,3.0552,16.7693,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6795,2.9733,22.3180,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6796,5.1946,6.4289,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +6797,3.1340,11.4207,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +6798,3.0552,16.7468,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6799,2.9733,22.0216,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +6800,5.1946,6.3514,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +6801,3.1340,11.5515,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +6802,3.0552,16.8189,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +6803,2.9733,22.2817,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +6804,5.1946,6.8761,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +6805,3.1340,11.5415,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +6806,3.0552,16.9412,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +6807,2.9733,22.3401,0.0420,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +6808,5.1946,6.5238,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +6809,3.1340,11.3363,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +6810,3.0552,16.5770,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1059,0 +6811,2.9733,21.8675,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1253,0 +6812,5.1946,6.4612,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6813,3.1340,11.5863,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +6814,3.0552,16.7604,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +6815,2.9733,22.2817,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6816,5.1946,6.5820,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6817,3.1340,11.4710,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6818,3.0552,17.1745,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,928,0 +6819,2.9733,21.8209,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6820,5.1946,6.3800,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6821,3.1340,12.1738,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6822,3.0552,16.8371,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,902,0 +6823,2.9733,22.3053,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6824,5.1946,6.4756,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6825,3.1340,11.4756,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6826,3.0552,16.7282,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1292,0 +6827,2.9733,22.0375,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6828,5.1946,6.6436,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6829,3.1340,11.4330,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6830,3.0552,16.6677,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6831,2.9733,22.0995,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,789,0 +6832,5.1946,6.3150,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6833,3.1340,11.3767,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6834,3.0552,16.7500,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6835,2.9733,22.1699,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6836,5.1946,6.4247,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6837,3.1340,11.4617,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6838,3.0552,16.3676,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +6839,2.9733,20.7465,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,983,0 +6840,5.1946,6.5078,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6841,3.1340,11.5846,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6842,3.0552,16.8757,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6843,2.9733,22.4035,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6844,5.1946,6.6360,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6845,3.1340,11.2201,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6846,3.0552,16.5143,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +6847,2.9733,21.9454,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6848,5.1946,6.2696,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6849,3.1340,11.4704,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6850,3.0552,16.7286,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +6851,2.9733,21.9850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6852,5.1946,6.3604,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6853,3.1340,11.4790,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6854,3.0552,16.7357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +6855,2.9733,22.1793,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +6856,5.1946,6.3765,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6857,3.1340,11.4729,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6858,3.0552,16.5643,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +6859,2.9733,20.9445,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +6860,5.1946,6.4416,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6861,3.1340,11.5776,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6862,3.0552,16.8510,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +6863,2.9733,22.3974,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6864,5.1946,6.5906,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6865,3.1340,11.4553,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6866,3.0552,16.8169,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +6867,2.9733,22.1189,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +6868,5.1946,6.4660,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6869,3.1340,11.5639,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6870,3.0552,16.8231,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1008,0 +6871,2.9733,22.1365,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6872,5.1946,6.4246,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6873,3.1340,11.5020,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6874,3.0552,16.7743,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +6875,2.9733,22.1737,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6876,5.1946,6.5760,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6877,3.1340,11.5430,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6878,3.0552,16.5678,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6879,2.9733,21.2692,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6880,5.1946,6.4835,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6881,3.1340,11.5264,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6882,3.0552,16.8054,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6883,2.9733,22.2758,0.0197,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6884,5.1946,6.4587,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6885,3.1340,11.4327,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6886,3.0552,16.7784,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6887,2.9733,22.1150,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +6888,5.1946,6.3596,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6889,3.1340,11.5245,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6890,3.0552,16.8325,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +6891,2.9733,22.2743,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +6892,5.1946,6.5014,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6893,3.1340,11.4609,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6894,3.0552,16.6850,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6895,2.9733,22.1435,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +6896,5.1946,6.6054,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6897,3.1340,11.5149,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6898,3.0552,16.8543,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +6899,2.9733,21.9339,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6900,5.1946,6.6135,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6901,3.1340,11.6565,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6902,3.0552,16.8118,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +6903,2.9733,22.1438,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6904,5.1946,6.4498,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6905,3.1340,11.4488,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6906,3.0552,16.7609,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +6907,2.9733,22.1181,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6908,5.1946,6.4173,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6909,3.1340,11.5430,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6910,3.0552,16.8090,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +6911,2.9733,22.1468,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6912,5.1946,6.3000,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6913,3.1340,11.5578,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6914,3.0552,16.8643,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +6915,2.9733,22.2908,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +6916,5.1946,6.7910,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6917,3.1340,11.5646,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6918,3.0552,16.8133,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6919,2.9733,22.0290,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +6920,5.1946,6.5298,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6921,3.1340,11.5611,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6922,3.0552,16.7560,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6923,2.9733,22.1410,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,699,0 +6924,5.1946,6.4126,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6925,3.1340,11.4667,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6926,3.0552,16.7878,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6927,2.9733,22.0514,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6928,5.1946,6.4477,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6929,3.1340,11.5570,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6930,3.0552,16.8910,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6931,2.9733,22.3786,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6932,5.1946,7.1564,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6933,3.1340,11.4473,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6934,3.0552,16.7053,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +6935,2.9733,22.0433,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6936,5.1946,6.5210,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6937,3.1340,11.5489,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6938,3.0552,16.7203,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +6939,2.9733,21.9720,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6940,5.1946,6.5438,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6941,3.1340,11.4954,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6942,3.0552,16.7139,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +6943,2.9733,22.2308,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6944,5.1946,6.6011,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6945,3.1340,11.6855,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6946,3.0552,16.9343,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +6947,2.9733,21.5896,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6948,5.1946,6.3825,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6949,3.1340,12.0929,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6950,3.0552,16.6188,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6951,2.9733,21.9724,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6952,5.1946,6.3151,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6953,3.1340,11.5554,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6954,3.0552,16.9463,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6955,2.9733,22.4352,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6956,5.1946,6.5151,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6957,3.1340,11.6139,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +6958,3.0552,16.8829,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +6959,2.9733,22.2042,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +6960,5.1946,5.6783,0.0654,0.0000,0,0,0.0000,0,0.0000,0,1,0,105482,0 +6961,3.1340,9.8558,0.0290,0.0000,0,0,0.0000,0,0.0000,0,1,0,71919,0 +6962,3.0552,14.0848,0.0083,0.0000,0,0,0.0000,0,0.0000,0,1,0,100728,0 +6963,2.9733,18.7041,0.0162,0.0000,0,0,0.0000,0,0.0000,0,1,0,109587,0 +6964,5.1946,6.4981,0.0254,0.0000,0,0,0.0000,0,0.0000,0,0,0,15863,0 +6965,3.1340,11.5894,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,9553,0 +6966,3.0552,17.0342,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,14021,0 +6967,2.9733,22.2380,0.0193,0.0000,0,0,0.0000,0,0.0000,0,0,0,22860,0 +6968,5.1946,6.3373,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,9106,0 +6969,3.1340,11.5470,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,3310,0 +6970,3.0552,16.8224,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,16824,0 +6971,2.9733,22.2483,0.0252,0.0000,0,0,0.0000,0,0.0000,0,0,0,20305,0 +6972,5.1946,6.7010,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,7345,0 +6973,3.1340,11.4986,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +6974,3.0552,16.6628,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,15486,0 +6975,2.9733,21.9963,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,8839,0 +6976,5.1946,6.4675,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5064,0 +6977,3.1340,11.5304,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +6978,3.0552,16.8675,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,12230,0 +6979,2.9733,22.1944,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,7342,0 +6980,5.1946,6.4649,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4261,0 +6981,3.1340,11.5867,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +6982,3.0552,16.9418,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,8041,0 +6983,2.9733,22.3042,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +6984,5.1946,6.5925,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3916,0 +6985,3.1340,11.4896,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +6986,3.0552,16.7551,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,7441,0 +6987,2.9733,21.8725,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +6988,5.1946,6.3550,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2949,0 +6989,3.1340,11.5360,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +6990,3.0552,16.7436,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4682,0 +6991,2.9733,22.0403,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +6992,5.1946,6.5354,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +6993,3.1340,11.5025,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1587,0 +6994,3.0552,16.7187,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,3830,0 +6995,2.9733,22.1346,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +6996,5.1946,6.5727,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +6997,3.1340,11.4455,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +6998,3.0552,16.6086,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3348,0 +6999,2.9733,21.6838,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,2325,0 +7000,5.1946,6.6416,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +7001,3.1340,11.5491,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1431,0 +7002,3.0552,16.8183,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,3249,0 +7003,2.9733,22.1664,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1876,0 +7004,5.1946,6.3235,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +7005,3.1340,11.3230,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +7006,3.0552,16.7859,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +7007,2.9733,22.1127,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2376,0 +7008,5.1946,6.4862,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +7009,3.1340,11.6442,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +7010,3.0552,16.8881,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +7011,2.9733,22.2452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +7012,5.1946,6.7406,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +7013,3.1340,11.5113,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1218,0 +7014,3.0552,16.6724,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +7015,2.9733,21.9458,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7016,5.1946,6.4974,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +7017,3.1340,11.4137,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1111,0 +7018,3.0552,16.5749,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +7019,2.9733,21.8770,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +7020,5.1946,6.3785,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +7021,3.1340,11.5425,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1116,0 +7022,3.0552,16.8602,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +7023,2.9733,22.3517,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +7024,5.1946,6.3178,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +7025,3.1340,11.4231,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +7026,3.0552,16.8126,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +7027,2.9733,22.2213,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1349,0 +7028,5.1946,6.3312,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +7029,3.1340,11.5917,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +7030,3.0552,16.9661,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +7031,2.9733,22.3487,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1172,0 +7032,5.1946,6.4403,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,634,0 +7033,3.1340,11.5448,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,874,0 +7034,3.0552,16.8406,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +7035,2.9733,22.2160,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1733,0 +7036,5.1946,6.6154,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +7037,3.1340,11.6653,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,816,0 +7038,3.0552,16.8089,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1177,0 +7039,2.9733,22.1970,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7040,5.1946,6.5932,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,681,0 +7041,3.1340,11.5165,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +7042,3.0552,16.7724,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +7043,2.9733,22.2342,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7044,5.1946,6.4336,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +7045,3.1340,11.4923,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +7046,3.0552,16.7922,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +7047,2.9733,22.1107,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7048,5.1946,6.3769,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,602,0 +7049,3.1340,11.6335,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +7050,3.0552,16.9399,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +7051,2.9733,22.4219,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +7052,5.1946,6.4833,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7053,3.1340,11.5471,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,614,0 +7054,3.0552,16.7842,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7055,2.9733,22.1852,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +7056,5.1946,6.4174,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7057,3.1340,11.7201,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7058,3.0552,16.9145,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7059,2.9733,22.1873,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,853,0 +7060,5.1946,6.5361,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7061,3.1340,11.6387,0.0393,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7062,3.0552,16.7989,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7063,2.9733,22.1783,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +7064,5.1946,6.6159,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7065,3.1340,11.5000,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7066,3.0552,16.7535,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +7067,2.9733,22.0534,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +7068,5.1946,6.5715,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7069,3.1340,11.4756,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7070,3.0552,16.6915,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7071,2.9733,21.9911,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7072,5.1946,6.6666,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7073,3.1340,11.3827,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7074,3.0552,16.7370,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +7075,2.9733,22.0735,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +7076,5.1946,6.4820,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7077,3.1340,11.6073,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7078,3.0552,16.7975,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +7079,2.9733,22.1448,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +7080,5.1946,6.6797,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7081,3.1340,11.6041,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7082,3.0552,16.5843,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +7083,2.9733,22.0140,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +7084,5.1946,6.4946,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7085,3.1340,11.5217,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7086,3.0552,16.7946,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +7087,2.9733,22.1362,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +7088,5.1946,6.4332,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7089,3.1340,11.5474,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7090,3.0552,16.9600,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1139,0 +7091,2.9733,22.3279,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +7092,5.1946,6.5240,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7093,3.1340,11.4517,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7094,3.0552,16.8251,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7095,2.9733,22.1740,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7096,5.1946,6.4090,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7097,3.1340,11.4435,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7098,3.0552,16.6930,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7099,2.9733,21.9735,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7100,5.1946,6.4302,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7101,3.1340,11.5211,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7102,3.0552,16.6795,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7103,2.9733,22.1264,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7104,5.1946,6.4643,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7105,3.1340,11.4484,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7106,3.0552,16.5003,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7107,2.9733,21.6300,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7108,5.1946,6.4749,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7109,3.1340,11.5427,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7110,3.0552,16.8322,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +7111,2.9733,22.1808,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +7112,5.1946,6.5215,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7113,3.1340,11.3964,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7114,3.0552,16.7656,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7115,2.9733,22.0675,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +7116,5.1946,6.4018,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7117,3.1340,11.4548,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7118,3.0552,16.6791,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +7119,2.9733,21.9161,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,812,0 +7120,5.1946,6.4381,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7121,3.1340,11.5147,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7122,3.0552,16.7082,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +7123,2.9733,22.0366,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +7124,5.1946,6.4834,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7125,3.1340,11.5370,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7126,3.0552,17.0652,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +7127,2.9733,22.2875,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7128,5.1946,6.4804,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7129,3.1340,11.5518,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7130,3.0552,16.9296,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +7131,2.9733,22.2093,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7132,5.1946,6.4752,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7133,3.1340,11.4494,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7134,3.0552,16.8649,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 +7135,2.9733,22.2134,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +7136,5.1946,6.3859,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7137,3.1340,11.5503,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7138,3.0552,16.8446,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7139,2.9733,22.0742,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +7140,5.1946,6.5443,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7141,3.1340,11.5582,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7142,3.0552,16.7582,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7143,2.9733,22.1075,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +7144,5.1946,6.5768,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7145,3.1340,11.3799,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7146,3.0552,16.1693,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7147,2.9733,21.4854,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +7148,5.1946,6.6098,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7149,3.1340,11.5828,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7150,3.0552,16.7537,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7151,2.9733,22.1028,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7152,5.1946,6.5522,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7153,3.1340,11.5121,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7154,3.0552,16.7764,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7155,2.9733,22.0484,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7156,5.1946,6.3432,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7157,3.1340,11.4523,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7158,3.0552,16.7950,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7159,2.9733,22.1368,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +7160,5.1946,6.2846,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7161,3.1340,11.4474,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7162,3.0552,16.8100,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,706,0 +7163,2.9733,22.2197,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +7164,5.1946,6.3665,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7165,3.1340,11.5187,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7166,3.0552,16.8448,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +7167,2.9733,22.4785,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +7168,5.1946,6.6764,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7169,3.1340,11.6053,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7170,3.0552,16.6980,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +7171,2.9733,21.9804,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +7172,5.1946,6.6510,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7173,3.1340,11.4340,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7174,3.0552,16.5941,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7175,2.9733,21.8053,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +7176,5.1946,6.2405,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7177,3.1340,11.4409,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7178,3.0552,16.7989,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +7179,2.9733,22.3162,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7180,5.1946,6.4825,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7181,3.1340,11.5185,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7182,3.0552,16.8714,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7183,2.9733,22.2813,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7184,5.1946,6.4636,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7185,3.1340,11.5532,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7186,3.0552,16.8527,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7187,2.9733,22.2920,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7188,5.1946,6.5557,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7189,3.1340,11.5955,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7190,3.0552,16.8761,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7191,2.9733,22.3373,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7192,5.1946,6.4167,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7193,3.1340,11.4083,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7194,3.0552,16.8483,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7195,2.9733,22.3492,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +7196,5.1946,6.4097,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7197,3.1340,11.7079,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +7198,3.0552,17.1455,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +7199,2.9733,22.6190,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.txt new file mode 100644 index 0000000..da88fef --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.txt @@ -0,0 +1,95 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +warmup_frames=0 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +steady_frames_encoded=1800 +elapsed_seconds=43.270 +effective_logical_fps=41.599 +tile_frames_requested=7200 +tile_frames_encoded=7200 +failed_tile_frames=0 +avg_encode_latency_ms=23.626 +p95_encode_latency_ms=23.718 +max_encode_latency_ms=72.096 +avg_steady_encode_latency_ms=23.626 +p95_steady_encode_latency_ms=23.718 +max_steady_encode_latency_ms=72.096 +avg_tile_encode_latency_ms=14.232 +p95_tile_encode_latency_ms=22.319 +avg_max_tile_encode_latency_ms=22.094 +p95_max_tile_encode_latency_ms=22.435 +avg_steady_max_tile_encode_latency_ms=22.094 +p95_steady_max_tile_encode_latency_ms=22.435 +payload_bytes=22221830 +send_target=none +csv=benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.csv +logical_csv=/Users/gabrieljang/development/iBridge/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_deadline.md b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_deadline.md new file mode 100644 index 0000000..f4cbe27 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_deadline.md @@ -0,0 +1,29 @@ +# Tiled Deadline Analysis — m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 1800 | +| avg_group_latency_ms | 23.626 | +| p95_group_latency_ms | 23.718 | +| max_group_latency_ms | 72.096 | +| effective_logical_fps | 41.599 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 1800 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 1800 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 16.67 | 1800 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 20.00 | 1783 | 99.056% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 33.33 | 10 | 0.556% | 0, 180, 360, 540, 720, 900, 1080, 1260, 1440, 1620 | +| 50.00 | 10 | 0.556% | 0, 180, 360, 540, 720, 900, 1080, 1260, 1440, 1620 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 23.600 | 23.714 | 68.912 | +| 300-599 | 23.707 | 23.739 | 71.789 | +| 600-899 | 23.532 | 23.691 | 70.631 | +| 900-1199 | 23.715 | 23.746 | 72.096 | +| 1200-1499 | 23.669 | 23.730 | 70.027 | +| 1500-1799 | 23.535 | 23.679 | 71.727 | diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv new file mode 100644 index 0000000..2bb8b55 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv @@ -0,0 +1,1801 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,68.3359,18.4410,231707 +1,4,0,22.6908,22.3318,62112 +2,4,0,22.7484,22.3307,27208 +3,4,0,22.8469,22.3189,53175 +4,4,0,22.9528,22.3766,68707 +5,4,0,22.9855,22.3200,47603 +6,4,0,22.9394,22.2176,22271 +7,4,0,22.9747,22.3840,13117 +8,4,0,22.8992,22.1981,10647 +9,4,0,23.0698,22.3553,10459 +10,4,0,23.3720,22.3568,7184 +11,4,0,23.2977,22.1247,4855 +12,4,0,23.3291,22.0851,4875 +13,4,0,22.8731,21.9771,3530 +14,4,0,22.8360,22.2620,3376 +15,4,0,22.6779,22.2188,3178 +16,4,0,22.6562,22.2710,3312 +17,4,0,22.6909,22.3272,3471 +18,4,0,22.7160,22.3303,3311 +19,4,0,22.6633,22.2810,3626 +20,4,0,22.6979,22.3557,3188 +21,4,0,22.8442,22.3448,2677 +22,4,0,22.8105,22.4058,2641 +23,4,0,22.8425,22.4532,2690 +24,4,0,22.9167,22.3927,2811 +25,4,0,22.9164,22.4142,2794 +26,4,0,22.8493,22.3305,3040 +27,4,0,22.9605,22.3439,2793 +28,4,0,22.9411,22.1022,2654 +29,4,0,23.1088,22.3651,2652 +30,4,0,23.3241,22.3992,2634 +31,4,0,23.3085,22.0674,2886 +32,4,0,23.2475,22.3769,2679 +33,4,0,23.1368,22.1670,2822 +34,4,0,23.4004,20.7595,2588 +35,4,0,23.4708,22.4228,2620 +36,4,0,23.3687,22.2731,2625 +37,4,0,23.2159,21.8217,2626 +38,4,0,23.2168,22.1590,2706 +39,4,0,23.4028,21.8220,2651 +40,4,0,23.3865,22.3199,2707 +41,4,0,23.4288,22.1492,2645 +42,4,0,23.2235,22.2330,2800 +43,4,0,23.1555,22.0523,2597 +44,4,0,23.2474,21.5149,2592 +45,4,0,23.4913,22.4097,2616 +46,4,0,23.3458,21.8923,2627 +47,4,0,23.2051,22.1765,2687 +48,4,0,23.6062,22.3024,2604 +49,4,0,23.4676,21.2280,2710 +50,4,0,23.2500,22.3223,2718 +51,4,0,23.2306,22.2093,2689 +52,4,0,23.2407,22.2649,2720 +53,4,0,23.5602,22.4177,2894 +54,4,0,23.4688,22.0132,2697 +55,4,0,23.3665,22.0821,2590 +56,4,0,23.3000,22.0598,2588 +57,4,0,23.3130,22.3778,2601 +58,4,0,23.8011,22.5046,2624 +59,4,0,23.3875,21.8055,2644 +60,4,0,19.9653,18.8382,417191 +61,4,0,23.5826,22.2911,60656 +62,4,0,23.3332,21.8628,31261 +63,4,0,23.2917,22.1928,24789 +64,4,0,23.2461,22.2568,19060 +65,4,0,23.3475,22.2760,12359 +66,4,0,23.2877,22.1896,11326 +67,4,0,23.2628,22.0925,10328 +68,4,0,23.3915,22.3053,8730 +69,4,0,23.2930,22.0983,6333 +70,4,0,23.3860,22.4027,4953 +71,4,0,23.6422,21.9974,5172 +72,4,0,23.8159,22.4181,4877 +73,4,0,23.1913,20.4280,5011 +74,4,0,23.0755,21.5683,4370 +75,4,0,23.2102,22.2028,5262 +76,4,0,22.9360,18.4960,2967 +77,4,0,22.8111,22.3506,2985 +78,4,0,22.8539,22.3239,2915 +79,4,0,22.8095,22.2297,2961 +80,4,0,22.8382,22.2848,3305 +81,4,0,23.0036,22.4078,3070 +82,4,0,23.1123,22.3637,3635 +83,4,0,23.4502,22.5250,2842 +84,4,0,23.2678,21.9900,2821 +85,4,0,23.2952,22.2359,2801 +86,4,0,23.4351,22.1840,3189 +87,4,0,23.7135,21.4466,2687 +88,4,0,23.4157,22.0620,2610 +89,4,0,23.3522,22.3392,2913 +90,4,0,23.3879,22.0092,2615 +91,4,0,23.6367,21.8813,2694 +92,4,0,23.3450,22.0103,2640 +93,4,0,23.3154,22.2249,2840 +94,4,0,23.5172,22.4901,2694 +95,4,0,23.7299,22.3374,2620 +96,4,0,23.5772,22.1023,2765 +97,4,0,23.3374,22.1569,2901 +98,4,0,23.4458,22.0542,2590 +99,4,0,23.0306,21.9550,2588 +100,4,0,23.1460,22.3726,2588 +101,4,0,22.9225,22.2808,2611 +102,4,0,23.0465,22.2302,2603 +103,4,0,23.2073,22.2600,2618 +104,4,0,23.3296,22.2348,2610 +105,4,0,23.3843,22.2535,2613 +106,4,0,23.4568,22.0534,2609 +107,4,0,23.3062,22.1082,2633 +108,4,0,23.4705,21.8768,2740 +109,4,0,23.3520,22.1086,2594 +110,4,0,23.2765,22.2402,2592 +111,4,0,23.4695,22.2588,2588 +112,4,0,23.2664,22.0183,2588 +113,4,0,23.4285,22.1000,2597 +114,4,0,23.3458,22.1368,2601 +115,4,0,23.2775,22.2305,2603 +116,4,0,23.3221,22.0527,2596 +117,4,0,23.3331,21.9779,2588 +118,4,0,23.4454,22.1444,2588 +119,4,0,23.4735,22.2823,2692 +120,4,0,19.7865,18.5946,387716 +121,4,0,23.5411,22.2642,62297 +122,4,0,23.4785,22.2464,49545 +123,4,0,23.3962,22.1295,35123 +124,4,0,23.2689,21.9414,26443 +125,4,0,23.0354,22.0989,15991 +126,4,0,23.1098,22.3480,14686 +127,4,0,23.5495,22.5764,11023 +128,4,0,23.6541,22.0865,8724 +129,4,0,23.5815,22.1954,8800 +130,4,0,23.3310,22.2321,7747 +131,4,0,23.4572,21.7481,5729 +132,4,0,23.3548,22.2238,3839 +133,4,0,23.4963,22.0053,3555 +134,4,0,23.4552,22.0686,3440 +135,4,0,23.3087,22.0573,3815 +136,4,0,23.3917,22.2748,3896 +137,4,0,23.4937,21.8605,4306 +138,4,0,23.4329,22.1152,4561 +139,4,0,23.4428,22.3455,3322 +140,4,0,23.4240,22.1564,3204 +141,4,0,23.7797,22.3008,3743 +142,4,0,23.5485,22.1433,2783 +143,4,0,23.3441,22.1270,2820 +144,4,0,23.4789,22.1872,2746 +145,4,0,23.4120,22.1372,3274 +146,4,0,23.7831,22.4278,2650 +147,4,0,23.3364,21.9054,2599 +148,4,0,23.6618,22.2238,2830 +149,4,0,23.6316,21.9102,2696 +150,4,0,23.7206,22.3427,2783 +151,4,0,23.4536,22.1423,2742 +152,4,0,23.3095,22.2395,3358 +153,4,0,23.5734,22.1230,2588 +154,4,0,23.5132,22.1009,2588 +155,4,0,23.4722,22.0662,2588 +156,4,0,23.4350,22.2222,2588 +157,4,0,23.5656,21.9874,2668 +158,4,0,23.4298,22.2057,2605 +159,4,0,23.3120,21.9876,2766 +160,4,0,23.5617,21.9730,2681 +161,4,0,23.3484,22.1480,2608 +162,4,0,23.2814,22.2225,2602 +163,4,0,23.4993,22.1889,2763 +164,4,0,23.1999,22.1329,2636 +165,4,0,23.5119,22.4334,2631 +166,4,0,23.6301,22.0282,2681 +167,4,0,23.5920,22.2826,2588 +168,4,0,23.6575,22.3080,2588 +169,4,0,23.3284,22.2026,2598 +170,4,0,23.5939,22.1547,2629 +171,4,0,23.5744,21.9523,2658 +172,4,0,23.5192,22.1459,2616 +173,4,0,23.5104,22.1475,2651 +174,4,0,23.3129,22.1369,2674 +175,4,0,23.4392,22.2578,2588 +176,4,0,23.5553,21.9162,2588 +177,4,0,23.5629,22.1915,2588 +178,4,0,23.3062,22.2506,2609 +179,4,0,23.5562,22.4358,2600 +180,4,0,68.9117,18.5718,231707 +181,4,0,22.7170,22.3548,62112 +182,4,0,22.7768,22.3679,27208 +183,4,0,22.7839,22.3443,53175 +184,4,0,22.8250,22.3191,68707 +185,4,0,22.9786,22.3378,47603 +186,4,0,22.9943,22.3878,22271 +187,4,0,22.9965,22.2867,13117 +188,4,0,22.9233,22.1925,10647 +189,4,0,23.0689,22.1603,10459 +190,4,0,23.2829,22.1581,7184 +191,4,0,23.4365,22.4352,4855 +192,4,0,23.5140,22.0920,4875 +193,4,0,23.1808,22.2008,3530 +194,4,0,23.3143,21.9538,3376 +195,4,0,23.2480,22.3300,3178 +196,4,0,23.4765,22.5280,3312 +197,4,0,23.3625,21.6347,3471 +198,4,0,23.2537,22.1000,3311 +199,4,0,23.4123,22.3888,3626 +200,4,0,23.4423,22.1660,3188 +201,4,0,23.5163,22.5073,2677 +202,4,0,23.3279,22.2545,2641 +203,4,0,23.4538,22.2200,2690 +204,4,0,23.3498,22.2437,2811 +205,4,0,23.4758,21.4644,2794 +206,4,0,23.4811,22.4097,3040 +207,4,0,23.3790,22.1612,2793 +208,4,0,23.1247,22.1416,2654 +209,4,0,23.3022,22.3039,2652 +210,4,0,23.4046,21.0764,2634 +211,4,0,23.3188,22.1785,2886 +212,4,0,23.5517,22.4369,2679 +213,4,0,23.5413,22.1204,2822 +214,4,0,23.4296,21.9845,2588 +215,4,0,24.4574,21.7293,2620 +216,4,0,23.3903,22.2928,2625 +217,4,0,23.3195,22.0783,2626 +218,4,0,23.3299,22.3996,2706 +219,4,0,23.6972,22.4972,2651 +220,4,0,23.2595,21.8870,2707 +221,4,0,23.3490,22.2810,2645 +222,4,0,23.4105,21.2786,2800 +223,4,0,23.4712,22.3691,2597 +224,4,0,23.4660,22.0754,2592 +225,4,0,23.3182,22.3120,2616 +226,4,0,23.3325,21.9617,2627 +227,4,0,23.4794,21.2104,2687 +228,4,0,23.5478,22.3009,2604 +229,4,0,23.3943,22.0912,2710 +230,4,0,23.0657,22.1798,2718 +231,4,0,23.2200,22.0138,2689 +232,4,0,24.1484,21.9575,2720 +233,4,0,23.3442,22.3750,2894 +234,4,0,23.3540,22.1575,2697 +235,4,0,23.2643,22.2342,2590 +236,4,0,23.2735,22.0722,2588 +237,4,0,23.9423,21.8764,2601 +238,4,0,23.4480,22.1052,2624 +239,4,0,23.4704,22.2662,2644 +240,4,0,19.6265,18.4967,417191 +241,4,0,23.1977,22.1690,60656 +242,4,0,23.3377,22.4371,31261 +243,4,0,23.2341,22.3596,24789 +244,4,0,23.4028,22.3570,19060 +245,4,0,23.6012,22.0350,12359 +246,4,0,23.5215,22.2465,11326 +247,4,0,23.4182,21.9538,10328 +248,4,0,23.3292,22.1475,8730 +249,4,0,23.3747,22.1705,6333 +250,4,0,23.3386,22.0800,4953 +251,4,0,23.3144,22.0334,5172 +252,4,0,23.3648,22.2030,4877 +253,4,0,23.4035,22.1728,5011 +254,4,0,23.2497,22.1231,4370 +255,4,0,23.2434,22.1353,5262 +256,4,0,23.4904,21.8825,2967 +257,4,0,23.2802,22.0705,2985 +258,4,0,23.1930,22.2161,2915 +259,4,0,23.3270,22.3505,2961 +260,4,0,23.3166,22.0765,3305 +261,4,0,23.5170,22.2002,3070 +262,4,0,23.4189,22.1837,3635 +263,4,0,23.3605,22.3268,2842 +264,4,0,23.7306,22.3625,2821 +265,4,0,23.5678,22.2589,2801 +266,4,0,23.6555,21.9193,3189 +267,4,0,23.5815,21.7883,2687 +268,4,0,23.6834,22.2700,2610 +269,4,0,23.5112,22.1290,2913 +270,4,0,23.4291,22.1989,2615 +271,4,0,23.5360,22.1459,2694 +272,4,0,23.4303,22.0285,2640 +273,4,0,23.4950,22.1096,2840 +274,4,0,23.4643,22.2458,2694 +275,4,0,23.3633,22.1990,2620 +276,4,0,23.4491,22.1409,2765 +277,4,0,23.2720,21.9644,2901 +278,4,0,23.3894,22.0667,2590 +279,4,0,23.2542,22.2840,2588 +280,4,0,23.4104,22.3733,2588 +281,4,0,23.4564,22.4007,2611 +282,4,0,23.2845,22.3157,2603 +283,4,0,23.7611,22.0027,2618 +284,4,0,23.6156,21.3255,2610 +285,4,0,23.3680,22.3112,2613 +286,4,0,23.2134,22.2796,2609 +287,4,0,23.1527,22.2082,2633 +288,4,0,23.3079,22.2493,2740 +289,4,0,23.5075,22.5557,2594 +290,4,0,23.8541,22.1693,2592 +291,4,0,23.3564,21.9416,2588 +292,4,0,23.2085,22.2329,2588 +293,4,0,23.2656,22.2930,2597 +294,4,0,23.6260,22.4508,2601 +295,4,0,23.7877,22.0480,2603 +296,4,0,23.1910,21.8029,2596 +297,4,0,23.1194,22.2603,2588 +298,4,0,23.3505,22.2657,2588 +299,4,0,23.5313,22.2456,2692 +300,4,0,19.8250,18.8043,387716 +301,4,0,23.5995,22.5212,62297 +302,4,0,23.3898,21.7270,49545 +303,4,0,23.4843,22.3606,35123 +304,4,0,23.3682,22.3447,26443 +305,4,0,23.6288,22.6055,15991 +306,4,0,23.5981,21.9418,14686 +307,4,0,23.4231,21.9670,11023 +308,4,0,23.5727,22.4566,8724 +309,4,0,23.8776,22.0757,8800 +310,4,0,23.8292,21.9500,7747 +311,4,0,23.6552,21.8549,5729 +312,4,0,23.5063,22.2872,3839 +313,4,0,23.6562,22.0173,3555 +314,4,0,23.3340,21.8071,3440 +315,4,0,23.7349,22.3305,3815 +316,4,0,23.8322,21.7774,3896 +317,4,0,23.8632,22.5637,4306 +318,4,0,23.6725,22.1412,4561 +319,4,0,23.4168,22.1895,3322 +320,4,0,23.7047,22.1973,3204 +321,4,0,23.7211,21.8992,3743 +322,4,0,23.5658,22.1998,2783 +323,4,0,23.4884,22.1731,2820 +324,4,0,23.3595,22.2973,2746 +325,4,0,23.5704,22.1629,3274 +326,4,0,23.2243,21.9225,2650 +327,4,0,23.5056,22.1985,2599 +328,4,0,23.7182,22.4064,2830 +329,4,0,23.5224,22.3510,2696 +330,4,0,23.4820,22.0903,2783 +331,4,0,23.4021,22.2715,2742 +332,4,0,23.7223,21.9648,3358 +333,4,0,23.6301,22.1122,2588 +334,4,0,23.7523,21.9710,2588 +335,4,0,23.5122,22.1500,2588 +336,4,0,23.4660,22.1086,2588 +337,4,0,23.4401,22.2066,2668 +338,4,0,23.5664,22.0803,2605 +339,4,0,23.3027,22.1573,2766 +340,4,0,23.4208,22.2321,2681 +341,4,0,23.4948,22.1977,2608 +342,4,0,23.3891,22.0977,2602 +343,4,0,23.2841,22.0506,2763 +344,4,0,23.2121,22.0714,2636 +345,4,0,23.4537,22.1027,2631 +346,4,0,23.6985,22.5571,2681 +347,4,0,23.6399,21.9853,2588 +348,4,0,23.4140,22.0075,2588 +349,4,0,23.4245,22.1574,2598 +350,4,0,23.4345,21.7665,2629 +351,4,0,23.4481,22.2835,2658 +352,4,0,23.4540,22.1575,2616 +353,4,0,23.4672,22.0045,2651 +354,4,0,23.5730,21.7787,2674 +355,4,0,23.4696,21.6425,2588 +356,4,0,23.5024,21.8239,2588 +357,4,0,23.3362,22.0931,2588 +358,4,0,23.2481,22.0302,2609 +359,4,0,23.6867,22.4822,2600 +360,4,0,71.7890,20.0635,231707 +361,4,0,22.7095,22.3176,62112 +362,4,0,22.8195,22.3463,27208 +363,4,0,22.9286,22.3835,53175 +364,4,0,22.9619,22.4232,68707 +365,4,0,22.9732,22.3627,47603 +366,4,0,23.0545,22.3031,22271 +367,4,0,23.1140,22.3487,13117 +368,4,0,23.0701,22.1861,10647 +369,4,0,23.2874,22.2882,10459 +370,4,0,23.2961,22.1531,7184 +371,4,0,23.3349,22.3081,4855 +372,4,0,23.8872,22.5462,4875 +373,4,0,23.2320,21.7850,3530 +374,4,0,23.3059,22.2574,3376 +375,4,0,23.4520,21.4082,3178 +376,4,0,23.4082,22.5253,3312 +377,4,0,23.3498,22.1057,3471 +378,4,0,23.1536,22.3331,3311 +379,4,0,23.3730,22.2724,3626 +380,4,0,23.4977,22.2150,3188 +381,4,0,23.4031,22.3211,2677 +382,4,0,23.4453,22.3892,2641 +383,4,0,23.1978,22.2462,2690 +384,4,0,23.4672,22.2771,2811 +385,4,0,23.4909,21.1973,2794 +386,4,0,23.4394,22.2913,3040 +387,4,0,23.4556,22.1656,2793 +388,4,0,23.2202,22.1613,2654 +389,4,0,23.4000,22.3765,2652 +390,4,0,23.5728,21.3733,2634 +391,4,0,23.2603,22.0478,2886 +392,4,0,23.3349,22.3050,2679 +393,4,0,23.2641,22.2599,2822 +394,4,0,23.8361,22.8168,2588 +395,4,0,23.4533,21.9403,2620 +396,4,0,23.4058,22.1852,2625 +397,4,0,23.1708,22.2618,2626 +398,4,0,23.2704,22.3096,2706 +399,4,0,23.5997,22.5040,2651 +400,4,0,23.3201,21.8086,2707 +401,4,0,23.3422,22.3927,2645 +402,4,0,23.4644,22.1928,2800 +403,4,0,23.4752,22.1513,2597 +404,4,0,23.6362,22.2693,2592 +405,4,0,23.8410,22.0987,2616 +406,4,0,23.3662,22.3312,2627 +407,4,0,23.3085,21.0432,2687 +408,4,0,23.3152,22.3889,2604 +409,4,0,23.3892,22.3285,2710 +410,4,0,23.2675,22.0097,2718 +411,4,0,23.5844,22.3337,2689 +412,4,0,23.6526,21.7354,2720 +413,4,0,23.4992,21.9074,2894 +414,4,0,23.4178,22.0905,2697 +415,4,0,23.4300,22.1795,2590 +416,4,0,23.4947,22.1743,2588 +417,4,0,23.2689,22.0080,2601 +418,4,0,23.4733,21.8716,2624 +419,4,0,23.2941,22.0079,2644 +420,4,0,19.4944,18.6728,417191 +421,4,0,23.5020,22.3382,60656 +422,4,0,23.5113,22.2452,31261 +423,4,0,23.4379,22.1417,24789 +424,4,0,23.3920,22.3280,19060 +425,4,0,23.7179,22.1258,12359 +426,4,0,23.3887,22.3649,11326 +427,4,0,23.6465,22.3853,10328 +428,4,0,23.6691,22.0501,8730 +429,4,0,23.6340,21.9312,6333 +430,4,0,23.3012,22.2550,4953 +431,4,0,23.6330,22.3151,5172 +432,4,0,23.3470,21.8337,4877 +433,4,0,23.6797,22.2007,5011 +434,4,0,23.3823,22.0835,4370 +435,4,0,23.4020,22.1971,5262 +436,4,0,23.4333,22.1913,2967 +437,4,0,23.6232,22.0587,2985 +438,4,0,23.5313,22.0887,2915 +439,4,0,23.3770,22.3087,2961 +440,4,0,23.4157,22.3412,3305 +441,4,0,23.5764,22.1355,3070 +442,4,0,23.1951,22.1970,3635 +443,4,0,23.3135,22.0340,2842 +444,4,0,23.4110,22.0302,2821 +445,4,0,23.4156,22.1637,2801 +446,4,0,23.4423,22.2067,3189 +447,4,0,23.3553,22.1485,2687 +448,4,0,23.3945,21.9903,2610 +449,4,0,23.4433,22.2289,2913 +450,4,0,23.5366,22.2293,2615 +451,4,0,23.5479,22.3283,2694 +452,4,0,23.3788,22.2523,2640 +453,4,0,23.4559,22.1903,2840 +454,4,0,23.5610,22.4268,2694 +455,4,0,23.6565,22.3140,2620 +456,4,0,23.5680,22.1267,2765 +457,4,0,23.4808,22.2362,2901 +458,4,0,23.5488,21.9006,2590 +459,4,0,23.4029,22.3557,2588 +460,4,0,23.5911,22.1895,2588 +461,4,0,23.3443,22.0512,2611 +462,4,0,23.3651,22.1608,2603 +463,4,0,23.4996,22.1801,2618 +464,4,0,23.3432,21.9222,2610 +465,4,0,23.6176,22.1478,2613 +466,4,0,23.3574,22.0820,2609 +467,4,0,23.2510,22.3171,2633 +468,4,0,23.5689,22.3709,2740 +469,4,0,23.4368,22.0784,2594 +470,4,0,23.6845,22.2669,2592 +471,4,0,23.5395,21.6771,2588 +472,4,0,23.5101,22.2641,2588 +473,4,0,23.5616,22.1960,2597 +474,4,0,23.4571,22.3414,2601 +475,4,0,23.5316,22.2335,2603 +476,4,0,23.9653,22.1349,2596 +477,4,0,23.6803,22.2835,2588 +478,4,0,23.4263,22.1188,2588 +479,4,0,23.4010,22.1344,2692 +480,4,0,19.9227,18.6471,387716 +481,4,0,23.6262,22.3389,62297 +482,4,0,23.3767,22.2781,49545 +483,4,0,23.5328,22.3956,35123 +484,4,0,23.1776,22.0790,26443 +485,4,0,23.4780,22.3875,15991 +486,4,0,23.6385,21.8400,14686 +487,4,0,23.6837,22.3364,11023 +488,4,0,23.3987,22.0718,8724 +489,4,0,23.2642,22.2048,8800 +490,4,0,23.7139,22.4302,7747 +491,4,0,23.8877,21.9183,5729 +492,4,0,23.6732,22.2488,3839 +493,4,0,23.3365,22.1870,3555 +494,4,0,23.4752,22.4283,3440 +495,4,0,23.6822,22.3800,3815 +496,4,0,23.5600,22.1984,3896 +497,4,0,23.7386,22.0830,4306 +498,4,0,23.6330,21.7730,4561 +499,4,0,23.6955,22.2093,3322 +500,4,0,23.6692,22.2021,3204 +501,4,0,23.6365,22.3642,3743 +502,4,0,23.6829,22.1699,2783 +503,4,0,23.4604,22.0234,2820 +504,4,0,23.5484,22.0933,2746 +505,4,0,23.2451,22.1272,3274 +506,4,0,23.3755,22.2056,2650 +507,4,0,23.4384,22.1755,2599 +508,4,0,23.5280,22.0805,2830 +509,4,0,23.5878,22.4175,2696 +510,4,0,23.5933,22.3173,2783 +511,4,0,23.3813,22.3586,2742 +512,4,0,23.3005,22.0433,3358 +513,4,0,23.2038,22.1831,2588 +514,4,0,23.3851,22.3773,2588 +515,4,0,23.8044,21.9315,2588 +516,4,0,23.7333,22.4132,2588 +517,4,0,23.2391,22.1553,2668 +518,4,0,23.2164,22.2021,2605 +519,4,0,23.6902,22.3794,2766 +520,4,0,23.7685,21.6993,2681 +521,4,0,23.7071,22.2989,2608 +522,4,0,23.4513,22.1322,2602 +523,4,0,23.4356,22.1642,2763 +524,4,0,23.4871,22.2258,2636 +525,4,0,23.3967,22.0813,2631 +526,4,0,23.5505,22.1831,2681 +527,4,0,23.4350,22.2250,2588 +528,4,0,23.3992,22.0807,2588 +529,4,0,23.6373,22.2648,2598 +530,4,0,23.2963,22.0347,2629 +531,4,0,23.5095,22.1563,2658 +532,4,0,23.4105,22.4215,2616 +533,4,0,23.2959,21.9961,2651 +534,4,0,23.1066,22.0266,2674 +535,4,0,23.0390,22.4017,2588 +536,4,0,23.2365,22.1725,2588 +537,4,0,23.4670,21.2701,2588 +538,4,0,23.5062,22.4846,2609 +539,4,0,23.6998,22.3388,2600 +540,4,0,67.7814,18.5077,231707 +541,4,0,22.7696,22.3470,62112 +542,4,0,22.9088,22.4245,27208 +543,4,0,22.9858,22.4155,53175 +544,4,0,22.9822,22.4005,68707 +545,4,0,23.1237,22.3805,47603 +546,4,0,23.0596,22.3429,22271 +547,4,0,22.9977,22.2991,13117 +548,4,0,22.9267,22.0997,10647 +549,4,0,23.2591,22.3113,10459 +550,4,0,23.3910,22.3362,7184 +551,4,0,23.4750,22.1775,4855 +552,4,0,23.4218,22.1267,4875 +553,4,0,23.3828,22.1860,3530 +554,4,0,23.3898,22.1857,3376 +555,4,0,23.4573,21.5815,3178 +556,4,0,23.5686,22.3055,3312 +557,4,0,23.4727,22.1784,3471 +558,4,0,23.3736,22.4605,3311 +559,4,0,23.3726,22.3415,3626 +560,4,0,23.4162,21.1817,3188 +561,4,0,23.5284,22.4593,2677 +562,4,0,23.2838,22.0416,2641 +563,4,0,23.3317,22.4542,2690 +564,4,0,24.7232,23.4907,2811 +565,4,0,23.6988,21.9344,2794 +566,4,0,23.3845,22.1554,3040 +567,4,0,23.4982,22.1148,2793 +568,4,0,23.4225,21.9288,2654 +569,4,0,23.4415,22.0925,2652 +570,4,0,23.2255,22.1936,2634 +571,4,0,23.3238,21.9275,2886 +572,4,0,23.0990,21.1794,2679 +573,4,0,23.2182,22.1027,2822 +574,4,0,23.3532,22.2820,2588 +575,4,0,23.1371,22.1448,2620 +576,4,0,23.3500,22.1174,2625 +577,4,0,23.5856,22.2290,2626 +578,4,0,23.5978,21.8257,2706 +579,4,0,23.4022,22.1382,2651 +580,4,0,23.3210,22.3135,2707 +581,4,0,23.4712,21.9127,2645 +582,4,0,23.1269,21.5720,2800 +583,4,0,23.0164,22.2222,2597 +584,4,0,22.9932,22.4168,2592 +585,4,0,22.8384,22.2723,2616 +586,4,0,22.8157,22.2309,2627 +587,4,0,22.9395,22.2108,2687 +588,4,0,23.0005,22.1073,2604 +589,4,0,23.1291,22.3110,2710 +590,4,0,23.3513,22.1567,2718 +591,4,0,23.3798,22.2629,2689 +592,4,0,23.4408,22.2386,2720 +593,4,0,23.4558,22.0636,2894 +594,4,0,23.5003,21.9922,2697 +595,4,0,23.1447,22.0784,2590 +596,4,0,23.2948,22.2468,2588 +597,4,0,23.5809,22.5892,2601 +598,4,0,23.6782,22.2608,2624 +599,4,0,23.7151,21.8974,2644 +600,4,0,19.9568,18.6129,417191 +601,4,0,23.4106,22.1740,60656 +602,4,0,23.5388,21.9466,31261 +603,4,0,23.3686,21.8965,24789 +604,4,0,23.3993,22.0139,19060 +605,4,0,23.4382,21.4305,12359 +606,4,0,23.4742,22.3415,11326 +607,4,0,23.1759,22.1080,10328 +608,4,0,23.3208,22.1133,8730 +609,4,0,23.6217,21.9740,6333 +610,4,0,23.6025,21.6687,4953 +611,4,0,23.6235,22.3386,5172 +612,4,0,23.3536,22.0106,4877 +613,4,0,23.4542,22.2324,5011 +614,4,0,23.5344,22.0655,4370 +615,4,0,23.5436,22.1277,5262 +616,4,0,23.5086,22.1744,2967 +617,4,0,23.3938,22.2084,2985 +618,4,0,23.3508,22.1190,2915 +619,4,0,23.4273,22.1420,2961 +620,4,0,23.3818,22.2165,3305 +621,4,0,23.5117,22.0352,3070 +622,4,0,23.3519,22.1444,3635 +623,4,0,23.4007,22.1879,2842 +624,4,0,23.4282,22.1314,2821 +625,4,0,23.3695,22.1582,2801 +626,4,0,23.4306,22.1498,3189 +627,4,0,23.4528,22.2047,2687 +628,4,0,23.3376,21.9905,2610 +629,4,0,23.2977,22.1619,2913 +630,4,0,23.3670,22.0712,2615 +631,4,0,23.2845,21.7409,2694 +632,4,0,23.1128,21.9025,2640 +633,4,0,23.3804,22.3764,2840 +634,4,0,23.5053,22.3439,2694 +635,4,0,23.4747,21.9014,2620 +636,4,0,23.4462,22.1453,2765 +637,4,0,23.4103,21.5256,2901 +638,4,0,23.5016,22.1704,2590 +639,4,0,23.4013,22.1410,2588 +640,4,0,23.3696,22.1117,2588 +641,4,0,23.3357,22.0870,2611 +642,4,0,23.3537,21.8309,2603 +643,4,0,23.6154,22.1739,2618 +644,4,0,23.4081,22.0922,2610 +645,4,0,23.3815,22.1867,2613 +646,4,0,23.3933,22.1289,2609 +647,4,0,23.6700,22.1748,2633 +648,4,0,23.4175,22.2898,2740 +649,4,0,23.4068,22.3519,2594 +650,4,0,23.3903,22.1445,2592 +651,4,0,23.5675,22.3004,2588 +652,4,0,23.2726,22.0540,2588 +653,4,0,23.2862,22.0128,2597 +654,4,0,23.4157,22.1926,2601 +655,4,0,23.4905,21.9950,2603 +656,4,0,23.5184,22.2390,2596 +657,4,0,23.4352,22.1995,2588 +658,4,0,23.7221,22.1345,2588 +659,4,0,23.3917,22.1109,2692 +660,4,0,19.9730,18.9066,387716 +661,4,0,23.6904,22.3007,62297 +662,4,0,23.3478,21.7988,49545 +663,4,0,23.6980,22.2441,35123 +664,4,0,23.3760,22.0560,26443 +665,4,0,23.3428,22.1382,15991 +666,4,0,23.4910,22.1499,14686 +667,4,0,23.5490,22.3956,11023 +668,4,0,23.5475,22.1420,8724 +669,4,0,23.3733,22.3103,8800 +670,4,0,23.3838,22.1101,7747 +671,4,0,23.3005,22.1363,5729 +672,4,0,23.2851,22.1863,3839 +673,4,0,23.3476,21.9980,3555 +674,4,0,23.3066,22.1675,3440 +675,4,0,23.3664,22.1070,3815 +676,4,0,23.3735,22.1865,3896 +677,4,0,23.3332,22.0993,4306 +678,4,0,23.5008,22.1215,4561 +679,4,0,23.4097,22.2851,3322 +680,4,0,23.3546,22.1679,3204 +681,4,0,23.4761,22.2890,3743 +682,4,0,23.2065,22.0290,2783 +683,4,0,23.4872,21.9049,2820 +684,4,0,23.4665,22.4119,2746 +685,4,0,23.4233,22.1488,3274 +686,4,0,23.4198,22.2978,2650 +687,4,0,23.2628,22.1950,2599 +688,4,0,23.5023,22.2115,2830 +689,4,0,23.4604,22.4190,2696 +690,4,0,23.6591,22.1868,2783 +691,4,0,23.3361,22.2112,2742 +692,4,0,23.3179,22.0778,3358 +693,4,0,23.5071,22.0590,2588 +694,4,0,23.5147,21.9583,2588 +695,4,0,23.5695,22.1175,2588 +696,4,0,23.3465,22.1915,2588 +697,4,0,23.4593,22.2220,2668 +698,4,0,23.6857,22.1258,2605 +699,4,0,23.3867,22.0310,2766 +700,4,0,23.0753,22.0802,2681 +701,4,0,23.0775,22.0418,2608 +702,4,0,23.1745,22.1060,2602 +703,4,0,23.5285,22.4198,2763 +704,4,0,23.3416,21.7199,2636 +705,4,0,23.4677,22.4125,2631 +706,4,0,23.2678,22.0465,2681 +707,4,0,23.3110,22.2667,2588 +708,4,0,23.5015,22.1685,2588 +709,4,0,23.2152,22.0002,2598 +710,4,0,23.2662,22.2295,2629 +711,4,0,23.1794,22.0791,2658 +712,4,0,23.4018,22.3600,2616 +713,4,0,23.3024,21.9245,2651 +714,4,0,23.1686,22.3304,2674 +715,4,0,23.3998,22.4295,2588 +716,4,0,23.4323,22.1530,2588 +717,4,0,23.3562,22.2603,2588 +718,4,0,23.2801,22.2890,2609 +719,4,0,23.4985,22.1481,2600 +720,4,0,70.6308,19.4461,231707 +721,4,0,22.7138,22.3241,62112 +722,4,0,22.8341,22.3267,27208 +723,4,0,23.0985,22.5715,53175 +724,4,0,22.9905,22.3803,68707 +725,4,0,22.9881,22.3894,47603 +726,4,0,22.9690,22.2832,22271 +727,4,0,23.2008,22.4793,13117 +728,4,0,23.0175,22.2725,10647 +729,4,0,23.1262,22.0198,10459 +730,4,0,23.3204,22.2185,7184 +731,4,0,23.3801,22.2777,4855 +732,4,0,23.1610,22.1142,4875 +733,4,0,23.3917,22.3785,3530 +734,4,0,23.4561,20.7918,3376 +735,4,0,23.5405,22.4882,3178 +736,4,0,23.4265,22.0171,3312 +737,4,0,23.1474,22.1580,3471 +738,4,0,23.1872,22.3738,3311 +739,4,0,23.2322,22.0870,3626 +740,4,0,23.2734,22.2375,3188 +741,4,0,23.5418,22.4863,2677 +742,4,0,23.3192,22.0748,2641 +743,4,0,23.5037,22.4310,2690 +744,4,0,23.4959,21.5849,2811 +745,4,0,23.3282,21.9308,2794 +746,4,0,23.3404,22.1021,3040 +747,4,0,23.4127,22.1101,2793 +748,4,0,23.3899,22.0263,2654 +749,4,0,23.5135,22.0887,2652 +750,4,0,23.5783,21.8900,2634 +751,4,0,23.3147,22.0860,2886 +752,4,0,23.3051,22.2945,2679 +753,4,0,23.4005,22.2351,2822 +754,4,0,23.3961,21.6388,2588 +755,4,0,23.3503,22.3779,2620 +756,4,0,23.3572,22.2449,2625 +757,4,0,23.6086,22.5950,2626 +758,4,0,23.8142,22.1282,2706 +759,4,0,23.4111,21.9524,2651 +760,4,0,23.4573,22.1846,2707 +761,4,0,23.3795,20.6253,2645 +762,4,0,23.3867,22.1790,2800 +763,4,0,23.3787,22.0587,2597 +764,4,0,23.2945,22.2804,2592 +765,4,0,23.5401,22.1369,2616 +766,4,0,23.5636,22.0862,2627 +767,4,0,23.5472,21.7693,2687 +768,4,0,23.4788,22.0399,2604 +769,4,0,23.4060,22.1542,2710 +770,4,0,23.4628,22.2524,2718 +771,4,0,23.6228,22.2595,2689 +772,4,0,23.4900,22.1976,2720 +773,4,0,23.4824,22.2174,2894 +774,4,0,23.4460,22.1743,2697 +775,4,0,23.5685,22.2438,2590 +776,4,0,23.3783,21.9827,2588 +777,4,0,23.5619,22.1205,2601 +778,4,0,23.5319,22.1565,2624 +779,4,0,23.5940,22.3140,2644 +780,4,0,20.0019,18.6264,417191 +781,4,0,23.5921,21.3135,60656 +782,4,0,23.2612,22.3186,31261 +783,4,0,23.2300,22.3049,24789 +784,4,0,23.3820,22.3424,19060 +785,4,0,23.6303,21.9160,12359 +786,4,0,23.5636,21.3488,11326 +787,4,0,23.1795,22.0582,10328 +788,4,0,23.2125,22.3003,8730 +789,4,0,23.2392,22.3063,6333 +790,4,0,23.2907,22.2182,4953 +791,4,0,23.6697,21.9277,5172 +792,4,0,23.7178,22.0274,4877 +793,4,0,23.4282,21.7648,5011 +794,4,0,23.1833,22.2288,4370 +795,4,0,23.3762,22.4068,5262 +796,4,0,23.3665,22.3357,2967 +797,4,0,23.8000,21.9468,2985 +798,4,0,23.5483,21.8822,2915 +799,4,0,23.6014,22.5556,2961 +800,4,0,23.4002,22.4106,3305 +801,4,0,23.2468,22.2817,3070 +802,4,0,23.5408,22.4867,3635 +803,4,0,23.5675,21.0763,2842 +804,4,0,23.3279,22.3360,2821 +805,4,0,23.2763,21.8222,2801 +806,4,0,23.1655,22.2204,3189 +807,4,0,23.4125,22.4225,2687 +808,4,0,23.8783,21.7521,2610 +809,4,0,23.7103,21.9290,2913 +810,4,0,23.6520,21.9029,2615 +811,4,0,23.4464,22.1918,2694 +812,4,0,23.5178,22.2320,2640 +813,4,0,23.4630,22.1903,2840 +814,4,0,23.5730,22.4434,2694 +815,4,0,23.4587,22.2316,2620 +816,4,0,23.4941,22.2080,2765 +817,4,0,23.7117,21.9812,2901 +818,4,0,23.3053,22.1369,2590 +819,4,0,23.6370,22.1451,2588 +820,4,0,23.6022,21.9245,2588 +821,4,0,23.6720,21.4650,2611 +822,4,0,23.5521,22.2802,2603 +823,4,0,23.3782,22.1998,2618 +824,4,0,23.5307,22.3139,2610 +825,4,0,23.4574,22.3131,2613 +826,4,0,23.4335,22.2057,2609 +827,4,0,23.5274,22.4630,2633 +828,4,0,23.7074,22.4232,2740 +829,4,0,23.6075,22.2616,2594 +830,4,0,23.2991,22.0328,2592 +831,4,0,23.5353,22.1106,2588 +832,4,0,23.4627,22.0604,2588 +833,4,0,23.4375,22.1976,2597 +834,4,0,23.5683,22.3705,2601 +835,4,0,23.4335,22.1875,2603 +836,4,0,23.4163,21.9541,2596 +837,4,0,23.4381,22.0476,2588 +838,4,0,23.4672,22.2874,2588 +839,4,0,23.4821,22.1670,2692 +840,4,0,19.9578,18.6217,387716 +841,4,0,23.5604,22.4501,62297 +842,4,0,23.4372,22.1899,49545 +843,4,0,23.3577,22.2194,35123 +844,4,0,23.6127,22.3326,26443 +845,4,0,23.5038,21.9652,15991 +846,4,0,23.7372,22.2943,14686 +847,4,0,23.5521,21.9502,11023 +848,4,0,23.4916,22.3972,8724 +849,4,0,23.4979,22.2123,8800 +850,4,0,23.3021,21.9946,7747 +851,4,0,23.4093,22.1667,5729 +852,4,0,23.5092,22.2433,3839 +853,4,0,23.6622,22.3691,3555 +854,4,0,23.5591,22.1833,3440 +855,4,0,23.3310,22.1253,3815 +856,4,0,23.4639,22.1437,3896 +857,4,0,23.7734,22.5116,4306 +858,4,0,23.5995,22.2011,4561 +859,4,0,23.5173,22.2394,3322 +860,4,0,23.4596,22.2100,3204 +861,4,0,23.7054,22.4337,3743 +862,4,0,23.3630,21.9274,2783 +863,4,0,23.5168,22.1185,2820 +864,4,0,23.4722,22.4735,2746 +865,4,0,23.2402,22.0000,3274 +866,4,0,23.0064,22.2086,2650 +867,4,0,23.2345,22.0709,2599 +868,4,0,23.2413,22.3295,2830 +869,4,0,23.3521,22.3547,2696 +870,4,0,23.1551,22.1220,2783 +871,4,0,23.3367,22.2568,2742 +872,4,0,23.3036,22.0138,3358 +873,4,0,23.3669,22.2880,2588 +874,4,0,23.2778,22.0786,2588 +875,4,0,23.3705,22.3092,2588 +876,4,0,23.7784,22.5530,2588 +877,4,0,23.4495,22.0694,2668 +878,4,0,23.3846,22.1020,2605 +879,4,0,23.3083,21.9789,2766 +880,4,0,23.3414,22.2439,2681 +881,4,0,23.6752,21.7778,2608 +882,4,0,23.3059,22.1578,2602 +883,4,0,23.2394,22.1555,2763 +884,4,0,23.4903,21.3718,2636 +885,4,0,23.3845,22.2555,2631 +886,4,0,23.4125,22.3646,2681 +887,4,0,23.2367,22.1580,2588 +888,4,0,23.2740,22.2050,2588 +889,4,0,23.4688,20.9165,2598 +890,4,0,23.5164,22.4787,2629 +891,4,0,23.4442,22.2207,2658 +892,4,0,23.2848,22.3818,2616 +893,4,0,23.5968,22.3300,2651 +894,4,0,23.4740,21.8188,2674 +895,4,0,23.4537,22.1242,2588 +896,4,0,23.2580,21.9758,2588 +897,4,0,23.1986,22.2140,2588 +898,4,0,24.3764,23.3057,2609 +899,4,0,23.5420,21.6809,2600 +900,4,0,72.0963,19.8204,231707 +901,4,0,22.9195,22.5033,62112 +902,4,0,22.9387,22.4389,27208 +903,4,0,22.9715,22.4810,53175 +904,4,0,22.9824,22.3435,68707 +905,4,0,23.0227,22.4255,47603 +906,4,0,22.9461,22.2840,22271 +907,4,0,23.0633,22.3032,13117 +908,4,0,23.0688,22.3372,10647 +909,4,0,23.1932,22.1017,10459 +910,4,0,23.8255,22.6016,7184 +911,4,0,23.3025,22.0018,4855 +912,4,0,23.3305,22.0683,4875 +913,4,0,23.5412,22.1859,3530 +914,4,0,23.6348,21.7475,3376 +915,4,0,23.6546,21.9144,3178 +916,4,0,23.3172,22.0593,3312 +917,4,0,23.3077,22.1016,3471 +918,4,0,23.3175,22.1677,3311 +919,4,0,23.3397,22.0547,3626 +920,4,0,23.4886,21.8415,3188 +921,4,0,23.3034,22.1106,2677 +922,4,0,23.3857,22.3598,2641 +923,4,0,23.3335,22.0396,2690 +924,4,0,23.3351,21.9908,2811 +925,4,0,23.5397,22.3022,2794 +926,4,0,23.3968,22.2218,3040 +927,4,0,23.4227,22.4173,2793 +928,4,0,23.5015,22.2153,2654 +929,4,0,23.3104,21.8404,2652 +930,4,0,23.4201,22.1569,2634 +931,4,0,23.4213,22.2559,2886 +932,4,0,23.5411,22.2718,2679 +933,4,0,23.4712,21.7658,2822 +934,4,0,23.2857,22.1987,2588 +935,4,0,23.3431,22.0864,2620 +936,4,0,23.3574,22.1226,2625 +937,4,0,23.5503,22.4692,2626 +938,4,0,23.3118,22.0650,2706 +939,4,0,23.3946,22.3381,2651 +940,4,0,23.5043,21.9033,2707 +941,4,0,23.4707,21.8077,2645 +942,4,0,23.5179,22.1626,2800 +943,4,0,23.2990,22.0620,2597 +944,4,0,23.2434,22.0832,2592 +945,4,0,23.2546,22.0053,2616 +946,4,0,23.3595,22.0012,2627 +947,4,0,23.4035,22.1151,2687 +948,4,0,23.3379,22.2580,2604 +949,4,0,23.3017,22.1131,2710 +950,4,0,23.2774,22.1389,2718 +951,4,0,23.5557,22.1909,2689 +952,4,0,23.4189,22.0621,2720 +953,4,0,23.2733,22.2593,2894 +954,4,0,23.3740,22.1683,2697 +955,4,0,23.3251,22.0928,2590 +956,4,0,23.6070,22.1450,2588 +957,4,0,23.4760,22.1260,2601 +958,4,0,23.3735,22.1753,2624 +959,4,0,23.2670,22.0970,2644 +960,4,0,19.6556,18.6530,417191 +961,4,0,23.1094,22.0192,60656 +962,4,0,23.3098,22.4507,31261 +963,4,0,24.0342,22.3710,24789 +964,4,0,23.3553,21.8428,19060 +965,4,0,23.4298,22.4142,12359 +966,4,0,23.8110,22.5040,11326 +967,4,0,23.9722,22.1636,10328 +968,4,0,23.6071,22.2220,8730 +969,4,0,23.2628,21.9627,6333 +970,4,0,23.4353,22.3779,4953 +971,4,0,23.8626,22.1745,5172 +972,4,0,23.8520,22.1722,4877 +973,4,0,23.6658,21.9912,5011 +974,4,0,23.4471,22.1542,4370 +975,4,0,23.5193,22.2023,5262 +976,4,0,23.3204,22.2568,2967 +977,4,0,23.6185,22.1337,2985 +978,4,0,23.4268,22.1730,2915 +979,4,0,23.6713,22.1430,2961 +980,4,0,23.3389,22.0835,3305 +981,4,0,23.4291,22.3904,3070 +982,4,0,23.6138,21.8812,3635 +983,4,0,23.4738,21.7804,2842 +984,4,0,23.7440,21.9608,2821 +985,4,0,23.5819,22.2013,2801 +986,4,0,23.3724,22.1706,3189 +987,4,0,23.5447,22.4109,2687 +988,4,0,23.4454,22.0727,2610 +989,4,0,23.5498,22.1417,2913 +990,4,0,23.4201,22.3609,2615 +991,4,0,23.4687,22.2285,2694 +992,4,0,23.3651,22.0583,2640 +993,4,0,23.2777,22.0165,2840 +994,4,0,23.4300,22.0207,2694 +995,4,0,23.4433,22.4703,2620 +996,4,0,23.3742,22.1057,2765 +997,4,0,23.4756,22.3111,2901 +998,4,0,23.2258,21.6743,2590 +999,4,0,23.5008,22.0830,2588 +1000,4,0,23.4612,22.3940,2588 +1001,4,0,23.7888,22.3965,2611 +1002,4,0,23.1161,22.0340,2603 +1003,4,0,23.0699,22.2742,2618 +1004,4,0,24.7935,23.4697,2610 +1005,4,0,23.4058,22.3195,2613 +1006,4,0,23.3749,22.2469,2609 +1007,4,0,23.3037,22.3164,2633 +1008,4,0,23.5718,22.3623,2740 +1009,4,0,23.6375,22.2859,2594 +1010,4,0,23.3463,22.3086,2592 +1011,4,0,23.4217,22.1763,2588 +1012,4,0,23.5417,22.2017,2588 +1013,4,0,23.5778,22.3490,2597 +1014,4,0,23.4492,22.0596,2601 +1015,4,0,23.2933,22.0477,2603 +1016,4,0,23.5489,22.1720,2596 +1017,4,0,23.5415,22.2268,2588 +1018,4,0,23.6902,22.2177,2588 +1019,4,0,23.5712,22.0935,2692 +1020,4,0,19.7659,18.5626,387716 +1021,4,0,23.8367,22.3296,62297 +1022,4,0,23.4252,22.1649,49545 +1023,4,0,23.3863,22.3661,35123 +1024,4,0,23.5018,22.2265,26443 +1025,4,0,23.5253,22.1270,15991 +1026,4,0,23.5596,22.1522,14686 +1027,4,0,23.4335,22.1462,11023 +1028,4,0,23.4529,22.1426,8724 +1029,4,0,23.6320,22.2854,8800 +1030,4,0,23.3207,22.0502,7747 +1031,4,0,23.5763,22.1000,5729 +1032,4,0,23.4238,21.1054,3839 +1033,4,0,23.4295,22.2289,3555 +1034,4,0,23.3207,22.2375,3440 +1035,4,0,23.1751,22.1502,3815 +1036,4,0,23.2220,22.2431,3896 +1037,4,0,23.3116,21.1595,4306 +1038,4,0,23.4973,22.3951,4561 +1039,4,0,23.2772,22.1755,3322 +1040,4,0,23.2483,21.9658,3204 +1041,4,0,23.3350,22.2293,3743 +1042,4,0,23.3304,21.9552,2783 +1043,4,0,23.5210,22.4892,2820 +1044,4,0,23.3451,22.0252,2746 +1045,4,0,23.3041,22.0443,3274 +1046,4,0,23.3653,22.4359,2650 +1047,4,0,24.4140,21.8968,2599 +1048,4,0,23.5239,22.3689,2830 +1049,4,0,23.2643,22.0658,2696 +1050,4,0,23.2782,22.3795,2783 +1051,4,0,23.5074,22.2461,2742 +1052,4,0,23.3124,21.6820,3358 +1053,4,0,23.4342,22.3792,2588 +1054,4,0,23.2560,22.0102,2588 +1055,4,0,23.2783,22.3183,2588 +1056,4,0,23.6006,22.3793,2588 +1057,4,0,23.5956,22.0992,2668 +1058,4,0,23.4582,22.1258,2605 +1059,4,0,23.3281,21.2800,2766 +1060,4,0,23.2934,22.2572,2681 +1061,4,0,23.6002,22.3300,2608 +1062,4,0,23.1613,21.8426,2602 +1063,4,0,23.3885,22.3544,2763 +1064,4,0,23.3972,20.6469,2636 +1065,4,0,23.2474,22.2208,2631 +1066,4,0,23.2425,22.1483,2681 +1067,4,0,23.1204,22.0458,2588 +1068,4,0,23.3341,22.3225,2588 +1069,4,0,23.3397,22.1040,2598 +1070,4,0,23.3870,22.2814,2629 +1071,4,0,23.4814,22.2032,2658 +1072,4,0,23.3402,22.0435,2616 +1073,4,0,23.3955,22.1880,2651 +1074,4,0,23.2672,21.9986,2674 +1075,4,0,23.2868,22.2530,2588 +1076,4,0,23.7252,22.1192,2588 +1077,4,0,23.1826,22.2565,2588 +1078,4,0,23.6005,22.4878,2609 +1079,4,0,24.0798,22.0207,2600 +1080,4,0,69.7095,19.5444,231707 +1081,4,0,22.9428,22.4897,62112 +1082,4,0,22.8551,22.3069,27208 +1083,4,0,22.8969,22.3950,53175 +1084,4,0,22.9709,22.2826,68707 +1085,4,0,22.9100,22.2709,47603 +1086,4,0,22.9459,22.0907,22271 +1087,4,0,23.1630,22.2608,13117 +1088,4,0,23.1708,22.2525,10647 +1089,4,0,23.5283,22.0273,10459 +1090,4,0,23.6341,22.3655,7184 +1091,4,0,23.4936,21.9470,4855 +1092,4,0,23.4157,22.4192,4875 +1093,4,0,23.4125,22.1603,3530 +1094,4,0,23.3643,22.0809,3376 +1095,4,0,23.4931,21.8700,3178 +1096,4,0,23.4648,22.2464,3312 +1097,4,0,23.4932,21.9380,3471 +1098,4,0,23.5215,22.2342,3311 +1099,4,0,23.3246,22.0168,3626 +1100,4,0,23.3341,22.0399,3188 +1101,4,0,23.4723,22.1532,2677 +1102,4,0,23.4029,22.1819,2641 +1103,4,0,23.1877,22.1302,2690 +1104,4,0,23.1449,22.2803,2811 +1105,4,0,23.3819,22.0306,2794 +1106,4,0,23.4983,21.7243,3040 +1107,4,0,23.6796,22.4013,2793 +1108,4,0,23.5578,21.9311,2654 +1109,4,0,23.3715,22.1393,2652 +1110,4,0,23.5020,21.8824,2634 +1111,4,0,23.4677,22.0083,2886 +1112,4,0,23.5970,22.0250,2679 +1113,4,0,23.2859,22.0337,2822 +1114,4,0,23.3922,22.1655,2588 +1115,4,0,23.5043,22.1853,2620 +1116,4,0,23.4183,22.1794,2625 +1117,4,0,23.5453,21.9242,2626 +1118,4,0,23.4576,22.1193,2706 +1119,4,0,23.4450,22.2033,2651 +1120,4,0,23.3071,21.9638,2707 +1121,4,0,23.2720,21.9566,2645 +1122,4,0,23.4157,22.2025,2800 +1123,4,0,23.3414,22.0482,2597 +1124,4,0,23.4165,22.1820,2592 +1125,4,0,23.2657,21.9629,2616 +1126,4,0,23.2700,22.4876,2627 +1127,4,0,23.3872,21.9477,2687 +1128,4,0,23.4042,22.0753,2604 +1129,4,0,23.3896,22.1458,2710 +1130,4,0,23.4652,22.1328,2718 +1131,4,0,23.3886,22.1199,2689 +1132,4,0,23.5792,22.3782,2720 +1133,4,0,23.6528,22.2268,2894 +1134,4,0,23.7133,21.9082,2697 +1135,4,0,23.6069,22.1146,2590 +1136,4,0,23.4803,22.3622,2588 +1137,4,0,23.5660,22.1247,2601 +1138,4,0,23.6407,22.2779,2624 +1139,4,0,23.5683,22.1169,2644 +1140,4,0,23.5133,22.2499,417191 +1141,4,0,23.1685,21.5418,60656 +1142,4,0,23.4378,22.4064,31261 +1143,4,0,23.1604,22.0308,24789 +1144,4,0,23.4629,21.9945,19060 +1145,4,0,23.3350,22.2518,12359 +1146,4,0,23.3227,22.3092,11326 +1147,4,0,23.4490,22.4055,10328 +1148,4,0,23.2459,22.2357,8730 +1149,4,0,23.3672,22.1337,6333 +1150,4,0,23.4202,22.4127,4953 +1151,4,0,23.4366,22.1995,5172 +1152,4,0,23.6256,22.5039,4877 +1153,4,0,23.3558,22.0808,5011 +1154,4,0,23.5110,22.0952,4370 +1155,4,0,23.4971,21.9958,5262 +1156,4,0,23.7252,22.2651,2967 +1157,4,0,23.3738,22.3347,2985 +1158,4,0,23.3562,22.1909,2915 +1159,4,0,23.8251,22.4199,2961 +1160,4,0,23.5346,22.0264,3305 +1161,4,0,23.6525,22.1784,3070 +1162,4,0,23.4318,22.2130,3635 +1163,4,0,23.3743,22.1006,2842 +1164,4,0,23.5550,22.2661,2821 +1165,4,0,23.3394,22.0079,2801 +1166,4,0,23.6070,22.1606,3189 +1167,4,0,23.5500,22.2259,2687 +1168,4,0,23.3998,22.1409,2610 +1169,4,0,23.4417,22.2077,2913 +1170,4,0,23.2518,21.8862,2615 +1171,4,0,23.5573,22.1428,2694 +1172,4,0,23.2884,22.1622,2640 +1173,4,0,23.4844,22.4626,2840 +1174,4,0,23.3411,22.2407,2694 +1175,4,0,23.1883,22.3072,2620 +1176,4,0,23.5822,22.3714,2765 +1177,4,0,23.5813,21.9295,2901 +1178,4,0,23.5542,22.3122,2590 +1179,4,0,23.5815,22.3363,2588 +1180,4,0,23.5456,22.2437,2588 +1181,4,0,23.4907,22.2567,2611 +1182,4,0,23.5170,22.1122,2603 +1183,4,0,23.4697,22.1045,2618 +1184,4,0,23.3965,22.4334,2610 +1185,4,0,23.3193,22.1239,2613 +1186,4,0,23.3873,22.3310,2609 +1187,4,0,23.5083,22.2166,2633 +1188,4,0,23.5458,22.3373,2740 +1189,4,0,23.5556,22.4805,2594 +1190,4,0,23.4325,22.1418,2592 +1191,4,0,23.4792,22.3687,2588 +1192,4,0,23.2997,22.0172,2588 +1193,4,0,23.5521,22.1526,2597 +1194,4,0,23.5987,22.1956,2601 +1195,4,0,23.8197,22.2816,2603 +1196,4,0,23.4153,22.1303,2596 +1197,4,0,23.1906,21.9720,2588 +1198,4,0,23.1842,22.2955,2588 +1199,4,0,23.3225,21.5955,2692 +1200,4,0,19.8092,18.8411,387716 +1201,4,0,23.5258,22.4272,62297 +1202,4,0,23.5246,21.3503,49545 +1203,4,0,23.3964,22.3186,35123 +1204,4,0,23.3522,22.1576,26443 +1205,4,0,23.4443,22.3699,15991 +1206,4,0,23.9595,22.6765,14686 +1207,4,0,23.3691,21.9803,11023 +1208,4,0,23.4585,22.1491,8724 +1209,4,0,23.4420,22.1940,8800 +1210,4,0,23.4953,22.4237,7747 +1211,4,0,23.4367,22.2267,5729 +1212,4,0,23.1869,22.1960,3839 +1213,4,0,23.2912,22.1073,3555 +1214,4,0,23.2145,21.9426,3440 +1215,4,0,23.3703,22.1815,3815 +1216,4,0,23.4479,22.3924,3896 +1217,4,0,23.4394,22.1840,4306 +1218,4,0,23.2706,22.2440,4561 +1219,4,0,23.3197,22.0400,3322 +1220,4,0,23.3750,22.4772,3204 +1221,4,0,23.5665,22.1883,3743 +1222,4,0,23.2878,22.0335,2783 +1223,4,0,23.2983,22.2443,2820 +1224,4,0,23.5000,21.3884,2746 +1225,4,0,23.5005,22.3736,3274 +1226,4,0,23.4282,22.0709,2650 +1227,4,0,23.1929,22.2434,2599 +1228,4,0,23.4352,22.2556,2830 +1229,4,0,23.3908,21.0542,2696 +1230,4,0,23.4740,22.4786,2783 +1231,4,0,23.1605,22.1285,2742 +1232,4,0,23.2859,22.1822,3358 +1233,4,0,23.2627,22.3594,2588 +1234,4,0,23.3124,21.6764,2588 +1235,4,0,23.3477,22.2444,2588 +1236,4,0,23.3748,22.1202,2588 +1237,4,0,23.2270,22.2390,2668 +1238,4,0,23.4634,22.1828,2605 +1239,4,0,23.4459,21.5112,2766 +1240,4,0,23.2724,22.3433,2681 +1241,4,0,23.2175,22.2313,2608 +1242,4,0,23.1404,22.1337,2602 +1243,4,0,23.5545,22.2680,2763 +1244,4,0,23.5319,21.8885,2636 +1245,4,0,23.5610,21.8828,2631 +1246,4,0,23.4738,21.7474,2681 +1247,4,0,23.2748,22.1010,2588 +1248,4,0,23.4140,22.1725,2588 +1249,4,0,23.5371,22.2132,2598 +1250,4,0,23.5095,21.8607,2629 +1251,4,0,23.4410,22.1518,2658 +1252,4,0,23.3667,22.1328,2616 +1253,4,0,23.3373,21.9997,2651 +1254,4,0,23.1013,22.2547,2674 +1255,4,0,23.5780,22.0639,2588 +1256,4,0,23.3343,22.0731,2588 +1257,4,0,23.3065,22.2615,2588 +1258,4,0,23.4418,22.3175,2609 +1259,4,0,23.7962,22.1975,2600 +1260,4,0,66.6260,18.7372,231707 +1261,4,0,22.9805,22.5345,62112 +1262,4,0,22.8072,22.3940,27208 +1263,4,0,22.8168,22.3751,53175 +1264,4,0,22.8548,22.3202,68707 +1265,4,0,22.8417,22.3334,47603 +1266,4,0,22.9291,22.2766,22271 +1267,4,0,23.0249,22.2354,13117 +1268,4,0,23.1424,22.2840,10647 +1269,4,0,23.5410,22.4904,10459 +1270,4,0,23.5906,22.1119,7184 +1271,4,0,23.4785,22.1943,4855 +1272,4,0,23.4273,22.1698,4875 +1273,4,0,23.9714,22.6343,3530 +1274,4,0,23.3949,22.0587,3376 +1275,4,0,23.6850,22.0000,3178 +1276,4,0,23.4359,21.9515,3312 +1277,4,0,23.8323,22.3296,3471 +1278,4,0,23.4091,22.1165,3311 +1279,4,0,23.5268,22.2911,3626 +1280,4,0,23.3938,22.1376,3188 +1281,4,0,23.5181,21.8167,2677 +1282,4,0,23.4350,21.6502,2641 +1283,4,0,23.3847,22.0880,2690 +1284,4,0,23.2847,22.1038,2811 +1285,4,0,23.3393,22.2810,2794 +1286,4,0,23.4307,22.3500,3040 +1287,4,0,23.6082,21.8564,2793 +1288,4,0,23.3618,22.0486,2654 +1289,4,0,23.2458,22.3183,2652 +1290,4,0,23.4376,22.3765,2634 +1291,4,0,23.1919,22.1023,2886 +1292,4,0,23.4131,22.5328,2679 +1293,4,0,23.3895,21.7892,2822 +1294,4,0,23.2589,22.2102,2588 +1295,4,0,23.3533,22.3013,2620 +1296,4,0,23.1896,22.0408,2625 +1297,4,0,23.2727,22.3897,2626 +1298,4,0,23.7347,21.9484,2706 +1299,4,0,23.5875,22.3136,2651 +1300,4,0,23.2225,22.2746,2707 +1301,4,0,23.0383,22.1557,2645 +1302,4,0,23.2667,22.3594,2800 +1303,4,0,23.4360,22.5031,2597 +1304,4,0,23.4788,22.2665,2592 +1305,4,0,23.3380,22.0217,2616 +1306,4,0,23.0117,22.1093,2627 +1307,4,0,23.2477,22.2499,2687 +1308,4,0,23.5553,22.5269,2604 +1309,4,0,23.8889,22.0713,2710 +1310,4,0,23.6227,21.8900,2718 +1311,4,0,23.3202,22.1423,2689 +1312,4,0,23.4424,22.2041,2720 +1313,4,0,23.4216,22.0506,2894 +1314,4,0,23.7100,21.9605,2697 +1315,4,0,23.5083,22.2442,2590 +1316,4,0,23.3295,22.1170,2588 +1317,4,0,23.4575,22.2921,2601 +1318,4,0,23.4062,21.9469,2624 +1319,4,0,23.5178,22.1545,2644 +1320,4,0,19.8810,18.5362,417191 +1321,4,0,23.6625,22.1620,60656 +1322,4,0,23.6091,22.2719,31261 +1323,4,0,23.7024,22.4758,24789 +1324,4,0,23.7393,22.4680,19060 +1325,4,0,23.5356,22.1502,12359 +1326,4,0,23.3379,22.1794,11326 +1327,4,0,23.6239,22.1367,10328 +1328,4,0,23.8431,22.2432,8730 +1329,4,0,23.8202,22.0832,6333 +1330,4,0,23.5482,22.2420,4953 +1331,4,0,23.3875,22.1974,5172 +1332,4,0,23.5372,22.3029,4877 +1333,4,0,23.3908,22.1475,5011 +1334,4,0,23.2988,22.2034,4370 +1335,4,0,23.3548,22.1200,5262 +1336,4,0,23.3384,22.1285,2967 +1337,4,0,23.5803,22.2416,2985 +1338,4,0,23.2508,22.0586,2915 +1339,4,0,23.4128,22.3218,2961 +1340,4,0,23.9311,22.5265,3305 +1341,4,0,23.8946,22.4191,3070 +1342,4,0,23.4700,21.7910,3635 +1343,4,0,23.2955,22.3091,2842 +1344,4,0,23.6735,22.4503,2821 +1345,4,0,23.5556,22.2945,2801 +1346,4,0,23.5460,22.1456,3189 +1347,4,0,23.5425,22.2697,2687 +1348,4,0,23.4759,21.9341,2610 +1349,4,0,23.5888,22.2386,2913 +1350,4,0,23.1989,21.9476,2615 +1351,4,0,23.6296,22.0972,2694 +1352,4,0,23.5201,22.2855,2640 +1353,4,0,23.4598,22.1649,2840 +1354,4,0,23.3631,22.2475,2694 +1355,4,0,23.1827,22.2060,2620 +1356,4,0,23.6038,22.1379,2765 +1357,4,0,23.4563,22.0065,2901 +1358,4,0,23.7499,22.2720,2590 +1359,4,0,23.3510,21.9988,2588 +1360,4,0,23.3945,22.3609,2588 +1361,4,0,23.6656,21.8463,2611 +1362,4,0,23.5474,21.7476,2603 +1363,4,0,23.2720,22.2261,2618 +1364,4,0,23.3600,22.1393,2610 +1365,4,0,23.4945,22.4602,2613 +1366,4,0,23.8653,22.7301,2609 +1367,4,0,23.3769,22.0792,2633 +1368,4,0,23.3797,22.2864,2740 +1369,4,0,23.3355,22.1713,2594 +1370,4,0,23.4885,22.5208,2592 +1371,4,0,23.5323,22.0896,2588 +1372,4,0,23.4307,22.1010,2588 +1373,4,0,23.3289,22.2515,2597 +1374,4,0,23.3522,22.0829,2601 +1375,4,0,23.5529,22.4170,2603 +1376,4,0,23.3192,21.9778,2596 +1377,4,0,23.0960,22.3035,2588 +1378,4,0,23.4357,22.0912,2588 +1379,4,0,23.3793,19.5254,2692 +1380,4,0,19.5873,18.5026,387716 +1381,4,0,23.1780,22.2728,62297 +1382,4,0,23.3022,22.2983,49545 +1383,4,0,23.3457,22.3988,35123 +1384,4,0,23.4232,22.2948,26443 +1385,4,0,23.3392,21.9934,15991 +1386,4,0,23.4010,22.4020,14686 +1387,4,0,23.4485,22.0251,11023 +1388,4,0,23.4106,22.3173,8724 +1389,4,0,23.4983,22.0815,8800 +1390,4,0,23.6926,22.3305,7747 +1391,4,0,23.3184,22.0517,5729 +1392,4,0,23.4677,21.3676,3839 +1393,4,0,23.3852,22.3056,3555 +1394,4,0,23.3715,22.3202,3440 +1395,4,0,23.2454,21.9231,3815 +1396,4,0,23.3039,22.0503,3896 +1397,4,0,23.3027,21.4193,4306 +1398,4,0,23.3835,22.2868,4561 +1399,4,0,23.2986,22.0859,3322 +1400,4,0,23.2324,22.0385,3204 +1401,4,0,23.4292,22.3175,3743 +1402,4,0,23.6666,21.5716,2783 +1403,4,0,23.4462,22.4253,2820 +1404,4,0,23.4752,21.9423,2746 +1405,4,0,23.0538,22.0720,3274 +1406,4,0,23.7298,22.7302,2650 +1407,4,0,23.1507,21.9743,2599 +1408,4,0,23.2264,22.1951,2830 +1409,4,0,23.5847,22.3689,2696 +1410,4,0,23.6852,22.0660,2783 +1411,4,0,23.5272,21.9189,2742 +1412,4,0,23.2519,22.0261,3358 +1413,4,0,23.4304,21.9497,2588 +1414,4,0,23.4004,22.1813,2588 +1415,4,0,23.4311,22.2089,2588 +1416,4,0,23.3869,22.1453,2588 +1417,4,0,23.1678,21.9951,2668 +1418,4,0,23.3086,22.1193,2605 +1419,4,0,23.1815,22.2548,2766 +1420,4,0,23.1828,22.3605,2681 +1421,4,0,23.5061,22.1633,2608 +1422,4,0,23.2035,21.9683,2602 +1423,4,0,23.2957,22.2895,2763 +1424,4,0,23.2655,21.6659,2636 +1425,4,0,23.4853,22.3267,2631 +1426,4,0,23.4617,22.2325,2681 +1427,4,0,23.2492,22.0679,2588 +1428,4,0,23.4956,21.9342,2588 +1429,4,0,23.3640,21.5591,2598 +1430,4,0,23.3700,22.2392,2629 +1431,4,0,23.4913,22.1363,2658 +1432,4,0,23.3655,22.1280,2616 +1433,4,0,23.5576,22.0870,2651 +1434,4,0,23.4668,21.4028,2674 +1435,4,0,23.6010,21.7589,2588 +1436,4,0,23.3200,22.0930,2588 +1437,4,0,23.3211,22.1144,2588 +1438,4,0,23.3343,22.0848,2609 +1439,4,0,23.5273,22.0746,2600 +1440,4,0,70.0267,19.3312,231707 +1441,4,0,22.9130,22.4994,62112 +1442,4,0,22.8798,22.3989,27208 +1443,4,0,22.8432,22.3481,53175 +1444,4,0,23.0521,22.3897,68707 +1445,4,0,22.9690,22.4343,47603 +1446,4,0,23.1529,22.4407,22271 +1447,4,0,23.0938,22.2868,13117 +1448,4,0,23.3271,22.2284,10647 +1449,4,0,23.6867,22.1121,10459 +1450,4,0,23.5290,21.8888,7184 +1451,4,0,23.4448,22.1577,4855 +1452,4,0,23.3755,22.1185,4875 +1453,4,0,23.4594,21.9174,3530 +1454,4,0,23.5975,22.0014,3376 +1455,4,0,23.3941,22.0776,3178 +1456,4,0,23.4049,22.1753,3312 +1457,4,0,23.2924,22.0320,3471 +1458,4,0,23.3408,22.1600,3311 +1459,4,0,23.4666,22.1807,3626 +1460,4,0,23.5843,21.8790,3188 +1461,4,0,23.3701,22.3875,2677 +1462,4,0,23.3018,22.3405,2641 +1463,4,0,23.4803,22.2780,2690 +1464,4,0,23.3615,22.2220,2811 +1465,4,0,23.4422,22.0934,2794 +1466,4,0,23.3941,21.5284,3040 +1467,4,0,23.4626,22.2446,2793 +1468,4,0,23.4492,22.0576,2654 +1469,4,0,23.3857,22.1250,2652 +1470,4,0,23.4612,22.0935,2634 +1471,4,0,23.5161,22.0264,2886 +1472,4,0,23.5694,22.2837,2679 +1473,4,0,23.3675,22.0790,2822 +1474,4,0,23.3403,22.0724,2588 +1475,4,0,23.4711,22.1872,2620 +1476,4,0,23.5784,22.1642,2625 +1477,4,0,23.4840,22.2942,2626 +1478,4,0,23.3998,22.3474,2706 +1479,4,0,23.3973,22.2011,2651 +1480,4,0,23.5005,22.1880,2707 +1481,4,0,23.2500,21.9283,2645 +1482,4,0,23.4884,22.0975,2800 +1483,4,0,23.3775,22.3796,2597 +1484,4,0,23.4718,22.2116,2592 +1485,4,0,23.5502,22.3011,2616 +1486,4,0,23.2226,21.9938,2627 +1487,4,0,23.4626,22.0371,2687 +1488,4,0,23.3693,21.6732,2604 +1489,4,0,23.3276,22.0695,2710 +1490,4,0,23.3597,22.2407,2718 +1491,4,0,23.3523,22.1236,2689 +1492,4,0,23.4470,22.1092,2720 +1493,4,0,23.6033,22.0174,2894 +1494,4,0,23.6974,22.2225,2697 +1495,4,0,23.3865,22.1208,2590 +1496,4,0,23.3920,22.1672,2588 +1497,4,0,23.4181,22.0816,2601 +1498,4,0,23.6557,22.1126,2624 +1499,4,0,23.4936,22.1030,2644 +1500,4,0,19.6803,18.5822,417191 +1501,4,0,23.6680,22.2596,60656 +1502,4,0,23.5449,22.0911,31261 +1503,4,0,23.3302,22.0786,24789 +1504,4,0,23.4269,22.3920,19060 +1505,4,0,23.3699,22.0849,12359 +1506,4,0,23.0895,22.0540,11326 +1507,4,0,23.5890,22.2052,10328 +1508,4,0,23.5299,22.2263,8730 +1509,4,0,23.3713,22.1080,6333 +1510,4,0,23.3940,22.2438,4953 +1511,4,0,23.5041,22.0127,5172 +1512,4,0,23.5183,22.0603,4877 +1513,4,0,23.3652,22.2255,5011 +1514,4,0,23.5730,22.3087,4370 +1515,4,0,23.4056,22.2965,5262 +1516,4,0,23.3633,22.0895,2967 +1517,4,0,23.5271,22.0586,2985 +1518,4,0,23.3950,22.1907,2915 +1519,4,0,23.5555,22.0606,2961 +1520,4,0,23.3802,22.2883,3305 +1521,4,0,23.4172,22.1895,3070 +1522,4,0,23.5809,22.3879,3635 +1523,4,0,23.5690,22.0805,2842 +1524,4,0,23.5967,22.1639,2821 +1525,4,0,23.4778,22.2697,2801 +1526,4,0,23.4439,22.1703,3189 +1527,4,0,23.5658,22.2968,2687 +1528,4,0,23.3030,22.0329,2610 +1529,4,0,23.3886,22.4342,2913 +1530,4,0,23.4592,22.3858,2615 +1531,4,0,23.4247,22.3847,2694 +1532,4,0,23.5752,22.5162,2640 +1533,4,0,23.2130,22.2757,2840 +1534,4,0,23.4052,22.2957,2694 +1535,4,0,23.4320,21.0900,2620 +1536,4,0,23.8343,22.3224,2765 +1537,4,0,23.4217,22.1300,2901 +1538,4,0,23.3195,22.4045,2590 +1539,4,0,23.7422,22.6514,2588 +1540,4,0,23.6050,21.9025,2588 +1541,4,0,23.4587,22.3661,2611 +1542,4,0,23.2037,21.9897,2603 +1543,4,0,23.3802,22.4632,2618 +1544,4,0,23.4781,22.1875,2610 +1545,4,0,23.2228,21.8558,2613 +1546,4,0,23.2401,22.3995,2609 +1547,4,0,23.3099,22.1781,2633 +1548,4,0,23.4149,22.3940,2740 +1549,4,0,23.4088,22.1168,2594 +1550,4,0,23.5472,22.0122,2592 +1551,4,0,23.4515,22.1932,2588 +1552,4,0,23.3535,22.0428,2588 +1553,4,0,23.3930,22.3407,2597 +1554,4,0,23.3941,22.2430,2601 +1555,4,0,23.3172,22.0005,2603 +1556,4,0,23.4597,22.3636,2596 +1557,4,0,23.3692,20.8277,2588 +1558,4,0,23.4194,22.3898,2588 +1559,4,0,23.5036,22.1300,2692 +1560,4,0,20.0463,18.6103,387716 +1561,4,0,23.5150,22.4098,62297 +1562,4,0,23.4680,22.0919,49545 +1563,4,0,23.1756,22.2685,35123 +1564,4,0,23.3553,22.3224,26443 +1565,4,0,23.4305,21.8862,15991 +1566,4,0,23.3988,22.3503,14686 +1567,4,0,23.4983,22.2475,11023 +1568,4,0,23.2297,22.2965,8724 +1569,4,0,23.6446,22.5135,8800 +1570,4,0,23.5880,21.9106,7747 +1571,4,0,23.3862,22.3030,5729 +1572,4,0,23.1881,22.1601,3839 +1573,4,0,23.3545,22.1965,3555 +1574,4,0,23.2463,22.1807,3440 +1575,4,0,23.4223,22.0390,3815 +1576,4,0,23.6691,22.0144,3896 +1577,4,0,23.4706,21.8910,4306 +1578,4,0,23.4843,22.2203,4561 +1579,4,0,23.6024,21.9582,3322 +1580,4,0,23.3281,22.1155,3204 +1581,4,0,23.5464,21.9572,3743 +1582,4,0,23.4172,21.9247,2783 +1583,4,0,23.3337,22.1025,2820 +1584,4,0,23.4588,22.0972,2746 +1585,4,0,23.2488,21.9293,3274 +1586,4,0,23.2971,22.2035,2650 +1587,4,0,23.5362,22.1840,2599 +1588,4,0,23.4787,21.8540,2830 +1589,4,0,23.4334,22.3045,2696 +1590,4,0,23.1629,22.2838,2783 +1591,4,0,23.5395,22.5000,2742 +1592,4,0,23.7795,21.8084,3358 +1593,4,0,23.5447,22.1501,2588 +1594,4,0,23.4150,22.1238,2588 +1595,4,0,23.6035,22.2773,2588 +1596,4,0,23.7177,22.2937,2588 +1597,4,0,23.3185,22.0143,2668 +1598,4,0,23.7823,21.7870,2605 +1599,4,0,23.5037,22.1072,2766 +1600,4,0,23.5376,22.2244,2681 +1601,4,0,23.5951,22.1590,2608 +1602,4,0,23.3577,22.0791,2602 +1603,4,0,23.4694,22.0440,2763 +1604,4,0,23.4656,21.9447,2636 +1605,4,0,23.4949,22.3490,2631 +1606,4,0,23.4627,22.1349,2681 +1607,4,0,23.3912,22.1097,2588 +1608,4,0,23.5546,22.1380,2588 +1609,4,0,23.5089,22.1543,2598 +1610,4,0,23.4747,22.0633,2629 +1611,4,0,23.3212,22.2591,2658 +1612,4,0,23.3017,22.2680,2616 +1613,4,0,23.3745,22.2755,2651 +1614,4,0,23.2989,22.2370,2674 +1615,4,0,23.6003,22.2458,2588 +1616,4,0,23.4383,22.1977,2588 +1617,4,0,23.5401,22.3169,2588 +1618,4,0,23.4699,22.2621,2609 +1619,4,0,23.4575,22.1590,2600 +1620,4,0,71.7273,20.3762,231707 +1621,4,0,22.8016,22.3747,62112 +1622,4,0,22.7666,22.2948,27208 +1623,4,0,22.9152,22.3330,53175 +1624,4,0,23.0268,22.3742,68707 +1625,4,0,22.9927,22.3137,47603 +1626,4,0,22.8940,22.1395,22271 +1627,4,0,23.2894,22.4463,13117 +1628,4,0,23.4274,22.4989,10647 +1629,4,0,23.5600,22.3240,10459 +1630,4,0,23.5545,22.1868,7184 +1631,4,0,23.2821,22.0497,4855 +1632,4,0,23.3807,22.1442,4875 +1633,4,0,23.6652,22.0628,3530 +1634,4,0,23.6600,22.2003,3376 +1635,4,0,23.3579,22.0713,3178 +1636,4,0,23.2218,22.2274,3312 +1637,4,0,23.5802,22.0980,3471 +1638,4,0,23.8205,21.7784,3311 +1639,4,0,23.5541,22.1697,3626 +1640,4,0,23.5590,22.2836,3188 +1641,4,0,23.4025,22.1670,2677 +1642,4,0,23.4143,22.0994,2641 +1643,4,0,23.0924,22.0278,2690 +1644,4,0,23.5593,22.4158,2811 +1645,4,0,23.5390,21.9602,2794 +1646,4,0,23.4913,22.4090,3040 +1647,4,0,23.5660,22.0715,2793 +1648,4,0,23.3627,22.0807,2654 +1649,4,0,23.4296,21.8740,2652 +1650,4,0,23.4500,22.0670,2634 +1651,4,0,23.6813,21.9552,2886 +1652,4,0,23.3317,22.0289,2679 +1653,4,0,23.4388,22.1483,2822 +1654,4,0,23.4118,22.1506,2588 +1655,4,0,23.5162,21.7533,2620 +1656,4,0,23.6329,21.8963,2625 +1657,4,0,23.4077,21.9934,2626 +1658,4,0,23.3504,22.1609,2706 +1659,4,0,23.4345,22.1457,2651 +1660,4,0,23.4705,22.2805,2707 +1661,4,0,23.4806,22.1047,2645 +1662,4,0,23.4795,22.2012,2800 +1663,4,0,23.4526,22.2061,2597 +1664,4,0,23.6179,22.2057,2592 +1665,4,0,23.2685,21.9361,2616 +1666,4,0,23.5493,22.0077,2627 +1667,4,0,23.5109,21.9098,2687 +1668,4,0,23.4937,22.2016,2604 +1669,4,0,23.2972,22.2190,2710 +1670,4,0,23.2860,22.3777,2718 +1671,4,0,23.4537,22.3785,2689 +1672,4,0,23.4829,19.4657,2720 +1673,4,0,23.6585,22.2986,2894 +1674,4,0,23.4274,22.1187,2697 +1675,4,0,23.3856,22.3734,2590 +1676,4,0,23.5629,22.5062,2588 +1677,4,0,23.8162,21.6415,2601 +1678,4,0,23.6200,22.2399,2624 +1679,4,0,23.6287,22.0465,2644 +1680,4,0,19.6278,18.5731,417191 +1681,4,0,23.7070,22.3724,60656 +1682,4,0,23.4988,21.8643,31261 +1683,4,0,23.4099,22.1755,24789 +1684,4,0,23.5180,22.1984,19060 +1685,4,0,23.2495,22.2620,12359 +1686,4,0,23.4803,22.3325,11326 +1687,4,0,23.5750,22.3331,10328 +1688,4,0,23.7140,22.0233,8730 +1689,4,0,23.5340,21.8047,6333 +1690,4,0,23.3248,22.1498,4953 +1691,4,0,23.4899,22.1015,5172 +1692,4,0,23.5955,22.0080,4877 +1693,4,0,23.7649,22.3387,5011 +1694,4,0,23.2600,22.0383,4370 +1695,4,0,23.1879,22.1111,5262 +1696,4,0,23.2867,22.2855,2967 +1697,4,0,23.6494,21.8208,2985 +1698,4,0,23.2431,22.3180,2915 +1699,4,0,23.2467,22.0216,2961 +1700,4,0,23.2564,22.2817,3305 +1701,4,0,23.6787,22.3401,3070 +1702,4,0,23.3140,21.8675,3635 +1703,4,0,23.4920,22.2817,2842 +1704,4,0,23.5206,21.8209,2821 +1705,4,0,23.3073,22.3053,2801 +1706,4,0,23.4157,22.0375,3189 +1707,4,0,23.5603,22.0995,2687 +1708,4,0,23.2703,22.1699,2610 +1709,4,0,23.4824,20.7465,2913 +1710,4,0,23.4706,22.4035,2615 +1711,4,0,23.4686,21.9454,2694 +1712,4,0,23.0596,21.9850,2640 +1713,4,0,23.1993,22.1793,2840 +1714,4,0,23.2472,20.9445,2694 +1715,4,0,23.4425,22.3974,2620 +1716,4,0,23.4196,22.1189,2765 +1717,4,0,23.3057,22.1365,2901 +1718,4,0,23.3657,22.1737,2590 +1719,4,0,23.5251,21.2692,2588 +1720,4,0,23.3533,22.2758,2588 +1721,4,0,23.3396,22.1150,2611 +1722,4,0,23.2670,22.2743,2603 +1723,4,0,23.4413,22.1435,2618 +1724,4,0,23.4788,21.9339,2610 +1725,4,0,23.5285,22.1438,2613 +1726,4,0,23.3331,22.1181,2609 +1727,4,0,23.1245,22.1468,2633 +1728,4,0,23.2068,22.2908,2740 +1729,4,0,23.7542,22.0290,2594 +1730,4,0,23.4328,22.1410,2592 +1731,4,0,23.2674,22.0514,2588 +1732,4,0,23.3664,22.3786,2588 +1733,4,0,23.3625,22.0433,2597 +1734,4,0,23.4193,21.9720,2601 +1735,4,0,23.4503,22.2308,2603 +1736,4,0,23.4745,21.5896,2596 +1737,4,0,23.0896,21.9724,2588 +1738,4,0,23.4039,22.4352,2588 +1739,4,0,23.3275,22.2042,2692 +1740,4,0,19.6885,18.7041,387716 +1741,4,0,23.5489,22.2380,62297 +1742,4,0,23.3573,22.2483,49545 +1743,4,0,23.5772,21.9963,35123 +1744,4,0,23.3818,22.1944,26443 +1745,4,0,23.5322,22.3042,15991 +1746,4,0,23.5057,21.8725,14686 +1747,4,0,23.2263,22.0403,11023 +1748,4,0,23.4738,22.1346,8724 +1749,4,0,23.4646,21.6838,8800 +1750,4,0,23.5069,22.1664,7747 +1751,4,0,23.1993,22.1127,5729 +1752,4,0,23.2989,22.2452,3839 +1753,4,0,23.6582,21.9458,3555 +1754,4,0,23.3675,21.8770,3440 +1755,4,0,23.3503,22.3517,3815 +1756,4,0,23.2552,22.2213,3896 +1757,4,0,23.2163,22.3487,4306 +1758,4,0,23.3430,22.2160,4561 +1759,4,0,23.6901,22.1970,3322 +1760,4,0,23.5512,22.2342,3204 +1761,4,0,23.3090,22.1107,3743 +1762,4,0,23.3708,22.4219,2783 +1763,4,0,23.4380,22.1852,2820 +1764,4,0,23.2270,22.1873,2746 +1765,4,0,23.4412,22.1783,3274 +1766,4,0,23.3513,22.0534,2650 +1767,4,0,23.5246,21.9911,2599 +1768,4,0,23.5206,22.0735,2830 +1769,4,0,23.4005,22.1448,2696 +1770,4,0,23.5281,22.0140,2783 +1771,4,0,23.3959,22.1362,2742 +1772,4,0,23.4039,22.3279,3358 +1773,4,0,23.3837,22.1740,2588 +1774,4,0,23.2127,21.9735,2588 +1775,4,0,23.3703,22.1264,2588 +1776,4,0,23.3747,21.6300,2588 +1777,4,0,23.4533,22.1808,2668 +1778,4,0,23.4323,22.0675,2605 +1779,4,0,23.1594,21.9161,2766 +1780,4,0,23.2438,22.0366,2681 +1781,4,0,23.3591,22.2875,2608 +1782,4,0,23.4110,22.2093,2602 +1783,4,0,23.3415,22.2134,2763 +1784,4,0,23.2607,22.0742,2636 +1785,4,0,23.4163,22.1075,2631 +1786,4,0,23.5434,21.4854,2681 +1787,4,0,23.4777,22.1028,2588 +1788,4,0,23.3663,22.0484,2588 +1789,4,0,23.1183,22.1368,2598 +1790,4,0,23.1679,22.2197,2629 +1791,4,0,23.4260,22.4785,2658 +1792,4,0,23.7226,21.9804,2616 +1793,4,0,23.3314,21.8053,2651 +1794,4,0,23.1593,22.3162,2674 +1795,4,0,23.2980,22.2813,2588 +1796,4,0,23.4123,22.2920,2588 +1797,4,0,23.4492,22.3373,2588 +1798,4,0,23.3925,22.3492,2609 +1799,4,0,23.5854,22.6190,2600 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/metadata.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/metadata.txt new file mode 100644 index 0000000..ba36485 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/metadata.txt @@ -0,0 +1,7 @@ +timestamp=2026-05-15_1306 +duration_seconds=30 +profile_set=air +device_profile_requested=m1air +hostname=Gabrielui-MacBookAir.local +pwd=/Users/gabrieljang/development/iBridge +Darwin Gabrielui-MacBookAir.local 23.5.0 Darwin Kernel Version 23.5.0: Wed May 1 20:16:51 PDT 2024; root:xnu-10063.121.3~5/RELEASE_ARM64_T8103 arm64 diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.csv b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.csv new file mode 100644 index 0000000..895cd07 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.csv @@ -0,0 +1,5 @@ +profile,connection_class,device_profile,source,resolution,fps,duration_seconds,codec,bitrate_mbps,status,frames_requested,frames_submitted,frames_encoded,failed_frames,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,csv,logical_csv,log,deadline_md +m1air_baseline_1440p60_hevc,any,m1air,synthetic-nv12,2560x1440,60,30,hevc,25,0,1800,1800,1800,0,,8.145,9.296,20.146,10396029,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.csv,,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_baseline_1440p60_hevc_synthetic_nv12_2560x1440_60fps_25mbps.txt, +m1air_balanced_3200_60_hevc,any,m1air,synthetic-nv12,3200x1800,60,30,hevc,35,0,1800,1800,1800,0,,18.873,38.897,325.872,15713060,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.csv,,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_35mbps.txt, +m1air_wired_4k60_hevc,wired,m1air,synthetic-nv12,3840x2160,60,30,hevc,45,0,1800,1800,1800,0,,18.727,54.584,233.527,21461969,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.csv,,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_4k60_hevc_synthetic_nv12_3840x2160_60fps_45mbps.txt, +m1air_wired_full_5k60_tiled_probe_hevc,wired,m1air,synthetic-nv12-tiled,5120x2880,60,30,hevc,25,0,1800,1800,1800,0,41.599,23.626,23.718,72.096,22221830,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.csv,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_logical.csv,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps.txt,benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_deadline.md diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.md b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.md new file mode 100644 index 0000000..1d24de1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.md @@ -0,0 +1,24 @@ +# Transmission Profile Matrix + +- Device profile: `m1air` +- Profile set: `air` +- Duration per case: `30` seconds +- Codec: HEVC +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Summary table: `summary.csv` +- Encoder list: `video_encoders.txt` +- Sanitized system profile: `system_profile_sanitized.txt` + +## Interpretation + +This matrix measures sender-side encode viability only. It intentionally does not +claim receiver decode/render success. Use it to choose which capture, transport, +and bitrate profile should be tried before building OS-specific receiver decode +paths. + +## Profile intent + +- `m1max_wired_full_5k60_tiled_hevc`: best current full-resolution M1 Max path. +- `m1max_wired_high_detail_4096_60_hevc`: high-detail single-stream fallback. +- `wireless_balanced_3200_60_hevc`: first wireless default candidate. +- `m1air_*`: Air ceiling probes; results must be collected on the Air. diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/system_profile_sanitized.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/system_profile_sanitized.txt new file mode 100644 index 0000000..71f59eb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/system_profile_sanitized.txt @@ -0,0 +1,34 @@ +Hardware: + + Hardware Overview: + + Model Name: MacBook Air + Model Identifier: MacBookAir10,1 + Model Number: MGN63KH/A + Chip: Apple M1 + Total Number of Cores: 8 (4 performance and 4 efficiency) + Memory: 8 GB + System Firmware Version: 10151.121.1 + OS Loader Version: 10151.121.1 + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1: + + Chipset Model: Apple M1 + Type: GPU + Bus: Built-In + Total Number of Cores: 7 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-In Retina LCD + Resolution: 2560 x 1600 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: Yes + Connection Type: Internal + diff --git a/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/video_encoders.txt b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/video_encoders.txt new file mode 100644 index 0000000..ceb99c1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/video_encoders.txt @@ -0,0 +1,212 @@ +video_encoder_list=Optional(<__NSArrayM 0x149623c50>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/aggregate.md b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/aggregate.md new file mode 100644 index 0000000..e946bc8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/aggregate.md @@ -0,0 +1,8 @@ +# Single Stream Stability Aggregate + +| Resolution | Runs | Avg of avg ms | Best p95 ms | Median p95 ms | Worst p95 ms | Worst max ms | Pass p95 <=16.67 | +|---|---:|---:|---:|---:|---:|---:|---:| +| 4096x2304 | 3 | 12.693 | 13.047 | 13.050 | 13.059 | 33.193 | 3/3 | +| 3840x2160 | 3 | 11.366 | 11.629 | 11.669 | 11.791 | 31.615 | 3/3 | +| 3200x1800 | 3 | 11.360 | 11.249 | 11.250 | 11.274 | 77.592 | 3/3 | +| 2560x1440 | 3 | 10.354 | 10.543 | 10.636 | 10.647 | 26.347 | 3/3 | diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/metadata.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/metadata.txt new file mode 100644 index 0000000..8c15e7e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/metadata.txt @@ -0,0 +1,11 @@ +timestamp=2026-05-15_1307 +duration_seconds=5 +repeats=3 +cooldown_seconds=3 +bitrate_mbps=120 +prioritize_speed=unset +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +hostname=Gabriels-MacBook-Pro.local +hw_model=MacBookPro18,4 +cpu=Apple M1 Max +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.csv new file mode 100644 index 0000000..6f7acd2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8762,26.3190,0.0173,0.0000,0,0,0.0000,0,0.0000,0,1,0,33817,0 +1,3.3227,10.3552,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,25534,0 +2,3.0323,15.9180,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,10002,0 +3,3.2373,10.2125,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16503,0 +4,3.4450,10.1686,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19938,0 +5,3.4394,10.0102,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,14647,0 +6,3.5321,10.2626,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3937,0 +7,3.7220,10.1144,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +8,3.7502,10.1753,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16896,0 +9,3.6911,10.0705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +10,3.9566,10.3041,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +11,4.0590,10.2212,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +12,4.1318,10.3538,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12345,0 +13,4.1425,10.2436,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +14,4.4852,10.1418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +15,4.2117,10.2640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +16,4.1567,10.1977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8294,0 +17,4.7826,10.3367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +18,4.9946,10.3925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,4.7271,10.2000,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +20,4.9643,10.2969,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8785,0 +21,4.6622,10.5434,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +22,4.6263,10.4044,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +23,4.4787,10.3155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +24,4.3465,10.2466,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7826,0 +25,4.6133,10.2223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +26,4.3557,10.3284,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +27,4.8428,10.5645,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +28,4.8259,10.5193,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7904,0 +29,5.0276,10.4354,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +30,4.5545,10.4632,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +31,4.4842,10.4479,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +32,4.4904,10.2991,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6935,0 +33,4.6148,10.2034,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +34,4.6933,10.1989,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +35,4.8975,10.2820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +36,4.9752,10.3927,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9122,0 +37,4.6425,10.2910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +38,4.6423,10.3262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +39,4.6262,10.2933,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +40,4.8709,10.3165,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +41,4.8975,10.4488,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +42,4.8505,10.8997,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +43,4.7442,10.6801,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +44,4.9046,10.5480,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7613,0 +45,4.9095,10.2552,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +46,4.7767,10.4416,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +47,4.8907,10.3828,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +48,4.5113,10.4179,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8555,0 +49,3.8022,10.4235,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,956,0 +50,4.6201,10.1891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +51,4.0620,10.0807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +52,4.4989,10.0624,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,8915,0 +53,4.6046,10.1910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +54,4.5515,10.3208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +55,4.4595,9.9663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +56,4.7344,10.4078,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8871,0 +57,4.7391,10.3453,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +58,4.7298,10.2509,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +59,5.1784,10.4109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +60,4.7546,9.0211,0.0258,0.0000,0,0,0.0000,0,0.0000,0,1,0,63552,0 +61,4.1738,10.1781,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +62,3.0101,10.1736,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +63,2.8663,10.0179,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +64,2.8628,10.1185,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7442,0 +65,2.9880,10.2461,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +66,3.8606,10.1923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1051,0 +67,5.5355,10.1274,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +68,5.1147,10.1444,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9150,0 +69,5.0846,10.1075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +70,5.1940,10.2055,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +71,5.1360,10.2584,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +72,5.0578,10.1896,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +73,5.4428,10.3337,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +74,5.0910,10.2264,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +75,4.9452,10.2272,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +76,5.3270,10.4086,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7636,0 +77,4.8761,10.2505,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +78,4.9032,10.4089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +79,4.9878,10.3209,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +80,4.8844,10.4149,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +81,4.7743,10.2706,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +82,5.0150,10.1162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +83,4.9611,10.3722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +84,4.8104,10.3760,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8913,0 +85,4.8383,10.5453,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +86,4.7998,10.2568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +87,4.7324,10.2915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +88,4.8066,10.2077,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8784,0 +89,4.7179,10.3407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +90,4.8444,10.5488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +91,4.9250,10.1774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +92,4.7816,10.1058,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7929,0 +93,4.4830,10.1948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +94,4.6683,10.0955,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +95,4.6480,10.3815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +96,4.7858,10.4166,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,22496,0 +97,4.6834,10.1598,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1454,0 +98,4.6896,10.1636,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1027,0 +99,4.5432,10.1981,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +100,4.9231,10.2043,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9136,0 +101,4.6304,10.1971,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +102,4.5416,10.0095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +103,4.8681,10.1455,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +104,4.9142,10.3200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +105,4.8838,10.2543,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +106,4.9238,10.4811,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +107,4.8832,10.4104,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,973,0 +108,4.7756,10.4015,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7646,0 +109,3.8127,10.4899,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,981,0 +110,4.7097,10.1995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1247,0 +111,4.5771,10.2371,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +112,4.4203,10.0929,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8815,0 +113,4.6184,10.1465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +114,4.5867,10.1794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1242,0 +115,4.5790,10.1691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +116,4.7860,10.3733,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9088,0 +117,5.2259,10.2929,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +118,4.7571,10.1206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1129,0 +119,4.8588,10.3163,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1083,0 +120,4.7499,9.1613,0.0256,0.0000,0,0,0.0000,0,0.0000,0,1,0,46040,0 +121,4.7433,10.3559,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +122,4.5570,11.1224,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1192,0 +123,3.7864,10.2606,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +124,2.9307,10.1205,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7937,0 +125,3.3668,10.0932,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +126,3.1378,10.0064,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +127,4.4608,10.0302,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1137,0 +128,2.9434,10.0164,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7082,0 +129,2.8905,10.0123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +130,3.2003,9.9538,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +131,3.1839,10.4055,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,860,0 +132,3.1314,10.1765,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +133,5.6324,10.3900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +134,5.2676,10.2249,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +135,5.0415,10.1698,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +136,5.1552,10.2763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8296,0 +137,5.0412,10.2238,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +138,5.1113,10.0714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +139,5.1196,10.2815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +140,5.3063,10.3120,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7598,0 +141,5.0792,10.2781,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +142,5.1017,10.2157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +143,5.1291,10.4470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +144,4.8210,10.1867,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8561,0 +145,5.2640,10.3757,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1884,0 +146,5.1869,10.3757,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,778,0 +147,5.3855,10.2511,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +148,5.3164,10.3080,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8882,0 +149,4.6300,10.5788,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +150,5.0168,10.4933,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +151,4.6593,10.2241,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +152,4.7792,10.4090,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8777,0 +153,4.8289,10.3350,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +154,4.8609,10.3677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +155,4.7769,10.4041,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +156,4.8025,10.3363,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7905,0 +157,4.8948,10.3213,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +158,4.7124,10.2940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +159,4.7695,10.3275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +160,4.8905,10.2803,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7175,0 +161,4.8460,10.4635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1144,0 +162,3.6552,10.5429,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +163,4.7333,10.1305,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +164,4.4315,10.0866,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9082,0 +165,2.8970,10.0010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +166,2.8216,10.0013,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +167,4.9368,10.0985,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +168,5.1128,10.1159,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +169,5.0013,10.1204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +170,4.9462,10.1101,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +171,5.0825,10.2707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +172,5.0060,10.2840,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7617,0 +173,4.9897,10.3254,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +174,4.9814,10.1762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +175,5.0745,10.2538,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +176,5.0331,10.5287,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8703,0 +177,5.1781,10.1980,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1134,0 +178,5.1931,10.3329,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +179,5.0008,10.1914,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +180,4.7957,9.0208,0.0195,0.0000,0,0,0.0000,0,0.0000,0,1,0,58913,0 +181,5.1244,10.4203,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +182,4.4463,10.8278,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,939,0 +183,4.5488,10.5226,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +184,4.4043,10.4889,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9249,0 +185,3.5067,10.2890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +186,4.0220,10.5359,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +187,5.0760,10.1721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +188,4.9061,10.3521,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7923,0 +189,4.6474,10.0627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +190,4.7693,10.2539,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +191,4.8805,10.1932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +192,4.8622,10.2653,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,22302,0 +193,4.9123,10.2453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +194,4.7833,10.1620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +195,4.8089,10.3305,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +196,4.8419,10.4223,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9753,0 +197,5.0423,10.1908,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1078,0 +198,4.8764,10.0724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +199,5.0050,10.1638,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +200,5.0473,10.2463,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8311,0 +201,4.8047,10.1286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +202,4.8578,10.2431,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +203,4.8457,10.1830,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +204,4.7762,10.1737,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7698,0 +205,5.0009,10.3784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +206,4.6515,10.2291,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +207,4.8092,10.1877,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +208,4.6361,10.1593,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8863,0 +209,4.6463,10.1911,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1944,0 +210,4.6905,10.3721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,913,0 +211,4.8160,10.6143,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +212,4.8036,10.4420,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8943,0 +213,4.6655,10.1969,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +214,4.6749,10.2848,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +215,4.8841,10.1220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +216,4.6503,10.1740,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8783,0 +217,4.8392,10.2443,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +218,4.9320,10.1175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +219,4.7987,10.2709,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +220,4.8835,10.2222,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7938,0 +221,4.7590,10.3300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +222,4.9066,10.2979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,941,0 +223,4.8345,10.1261,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +224,4.8823,10.5211,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7346,0 +225,4.7138,10.3165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1550,0 +226,4.8000,10.4685,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +227,5.0374,10.3245,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +228,4.6598,10.3551,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9207,0 +229,4.2785,10.1837,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +230,4.4837,10.2225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,885,0 +231,4.5124,10.0418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,955,0 +232,4.4801,10.0940,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8418,0 +233,4.5773,10.1267,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +234,5.1772,10.1448,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +235,5.1952,10.1593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +236,4.9318,10.2591,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7746,0 +237,4.7424,10.2525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1035,0 +238,5.1515,10.8801,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +239,4.9523,10.2637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1036,0 +240,4.8267,9.1248,0.0232,0.0000,0,0,0.0000,0,0.0000,0,1,0,44247,0 +241,4.8377,10.3403,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2188,0 +242,4.0691,10.5333,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +243,4.2720,10.0529,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +244,4.3992,10.1090,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8876,0 +245,4.4775,10.0664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +246,4.4797,10.1157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +247,4.5413,10.2568,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +248,4.5514,10.2068,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8751,0 +249,4.5338,10.0872,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +250,4.2507,10.0918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +251,4.5025,10.1684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +252,4.5167,10.0569,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7900,0 +253,4.4884,10.1406,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +254,4.5150,10.1039,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +255,4.6141,10.0759,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +256,4.5869,10.2253,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,21866,0 +257,4.7282,10.1814,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +258,4.8580,10.3902,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +259,4.9671,10.1868,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +260,4.8853,10.3699,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9152,0 +261,5.3364,10.3641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +262,5.3672,10.3953,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +263,5.3281,10.6203,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +264,5.2922,10.4204,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +265,5.3371,10.3829,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,5.1802,10.2234,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +267,4.9251,10.2184,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +268,4.8750,10.2565,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,4.7863,10.3122,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +270,5.1535,10.4224,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +271,5.0073,10.1043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +272,5.3147,10.2458,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8498,0 +273,5.1975,10.2997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +274,4.7915,10.2032,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +275,4.7971,10.1611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1169,0 +276,4.9489,10.4803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8900,0 +277,5.1309,10.2825,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +278,4.7706,10.0754,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +279,5.2973,10.4036,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +280,4.8850,10.7223,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8786,0 +281,3.9118,10.1256,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +282,4.5471,10.1585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +283,4.5614,10.1137,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +284,4.8595,10.3303,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7934,0 +285,4.9233,10.4223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +286,4.8265,10.3366,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +287,4.9422,10.2943,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +288,4.7819,10.2125,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7023,0 +289,4.8855,10.4132,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +290,4.9133,10.0957,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +291,4.7028,10.4935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +292,4.8882,10.2706,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9194,0 +293,4.7979,10.3795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +294,4.7568,10.4598,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +295,4.7683,10.2277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +296,4.8309,10.4354,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8375,0 +297,3.2716,10.2988,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +298,4.9961,10.0726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +299,4.4949,10.0262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.txt new file mode 100644 index 0000000..40be581 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=2560x1440 +started_at=2026-05-15 13:08:20 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.654 +avg_encode_latency_ms=10.330 +p95_encode_latency_ms=10.543 +max_encode_latency_ms=26.319 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1170749 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:08:25 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.csv new file mode 100644 index 0000000..4fda9b8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.4084,77.5918,0.0355,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,5.3551,32.1491,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.8223,34.8708,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.8601,37.3899,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.5869,40.2638,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.8069,33.2513,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.7952,22.7094,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.2708,13.2764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.2458,10.8831,0.0505,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.1658,10.7335,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.2479,10.9721,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.0008,10.8968,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,4.7722,11.0181,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,4.3382,10.8270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,4.3679,10.5588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,4.5269,10.9040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,4.8887,10.8667,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.2309,10.8920,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.7044,10.9221,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.6586,10.6937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.6150,10.7805,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.5942,10.7220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.5837,10.7553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.7745,10.7127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.5668,10.7415,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.7452,10.6115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.6765,10.7446,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.5504,10.7924,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.5441,11.1351,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.8424,10.7782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,5.6624,10.8985,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.6281,10.6911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.6662,11.0126,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.1310,10.9263,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.5777,10.6663,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.7358,10.5207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.5639,10.8683,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.6327,10.8622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.7290,10.7061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.5755,10.5585,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,5.5984,10.6243,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.5929,10.5751,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6802,10.7039,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.5557,10.5602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.6666,10.8603,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.5399,10.7843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.8955,10.8897,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.6359,10.6550,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.6428,10.7083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.6161,10.8003,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.7071,10.6188,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.5528,10.6249,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.5533,10.6436,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.5380,10.6811,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.6222,10.4494,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.6909,10.6139,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.6120,10.5913,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.4854,10.8922,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.7619,10.8171,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.6370,10.7582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.7510,11.1221,0.0666,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.6733,10.7556,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.6102,10.6215,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.5392,10.5744,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.6023,10.7620,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,5.4656,10.7559,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,5.6465,10.5883,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,5.6581,10.5797,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,5.4684,10.5867,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,5.4809,10.9138,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,5.6559,11.5170,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,6.0183,11.0014,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.6127,11.0127,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.6017,10.8463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.6867,10.9460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.6974,10.7547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.6570,11.1330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.5962,10.7243,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.6898,10.5750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,4.6684,11.0288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.6320,10.7119,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.6268,10.8590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.6344,10.7528,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.6589,10.8633,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.6198,10.7390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.6170,10.5777,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.6100,10.5338,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.6731,10.6001,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.9283,10.6203,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.9863,10.5327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.7843,10.7995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.5979,10.4892,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.6828,11.0003,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.6128,10.7295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.7158,10.7930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.6102,10.5718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.6242,10.7964,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.7725,10.8022,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.6713,11.0083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,6.0177,10.5950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.8791,10.8038,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.8575,10.6834,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,6.0145,10.6520,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.6781,11.0192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,6.0310,10.8825,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.9324,10.9332,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.7351,10.7033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.6219,10.7121,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.7463,10.9683,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.9632,10.5463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.6950,10.6949,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.6948,10.7927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.5538,10.6918,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.7107,10.6206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.6499,10.6360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.6532,10.7964,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.6775,10.6747,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.6443,10.6565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.7178,10.6435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.8068,10.6430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.8201,10.3746,0.0432,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.7202,10.6710,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.5798,10.7089,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.7252,10.6390,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.6334,11.2725,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.6748,10.6406,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.5695,10.6839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.5758,10.6289,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.6447,10.7317,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.6886,10.8570,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.7654,10.9138,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.7140,11.0437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.9900,10.7985,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,6.0905,10.7078,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,6.1457,10.6734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,6.0398,10.8402,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,6.0581,10.8731,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,6.0766,10.8338,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.8100,10.8063,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,6.5773,11.2688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,6.5228,11.3016,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,6.4127,11.0293,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.9014,10.9085,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.6962,10.8761,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.6447,10.9953,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.7791,10.8564,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.6821,10.9197,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,6.1108,10.8655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.9508,10.9147,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,6.0146,10.7103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.7140,10.6644,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.5965,10.9522,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.6071,10.5259,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.5591,10.5288,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,5.5976,10.5922,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.5454,10.6334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.7875,11.1210,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.6573,10.7375,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.6361,10.8748,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.6067,10.6603,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.5975,10.8252,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.6245,10.7299,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.5710,10.5552,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.7410,10.8323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.6364,10.7490,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.5307,10.6833,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.6169,10.6952,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.6248,10.6337,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.5749,10.7186,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.5565,10.5704,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.5479,10.6223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.7303,10.7857,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.6614,11.0967,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.6336,10.7177,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.6051,10.7120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.5976,10.7357,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.6837,10.5979,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.5488,10.6918,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.5838,10.7867,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.5401,10.7357,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,4.7498,10.9163,0.0300,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,5.6268,10.5755,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.6684,10.7436,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.6086,10.6706,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.6392,10.5928,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.6026,10.5567,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.6535,10.6914,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.6415,10.6341,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.6333,10.9412,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.5694,10.6985,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.8264,11.1870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.5889,10.9042,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.6467,10.8534,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,5.5956,10.6267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.6199,10.7238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.6579,10.7463,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.5314,10.7497,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.7960,10.6903,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.5942,10.5941,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.5710,10.6920,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.5946,10.6289,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.5653,10.8640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.5503,10.6222,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.6120,10.7709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.5665,10.9978,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.4729,10.7165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.5694,10.5295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.5910,10.7094,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,5.6672,10.5295,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,5.6820,10.4555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.6464,11.3725,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,4.8014,10.8677,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,4.4277,10.8171,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,4.3899,11.1535,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,4.4416,10.9001,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,4.3430,10.9494,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,4.4255,10.8642,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.0513,10.8206,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.7547,10.8978,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.6523,10.5837,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.9794,10.8862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,6.0287,10.5339,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.7599,10.5070,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.6049,10.5411,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.7812,10.5137,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.9669,10.6687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.5929,10.7338,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.8323,11.0068,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.9088,10.7030,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.8240,10.7745,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.7805,10.7406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.6018,10.5803,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.6050,10.8084,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.7716,10.7108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.9683,10.7441,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.8708,11.4186,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.7083,11.6017,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.9265,11.3793,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.8241,10.8262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,5.6735,10.8687,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,5.6913,10.4635,0.0224,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,5.7016,10.6457,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,5.6355,10.7950,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,5.6300,10.6444,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,5.6982,10.6842,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.6184,10.7231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.7110,10.4288,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,5.1657,10.9239,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,5.8018,10.6845,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,6.1384,10.7258,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,6.1132,10.7480,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,4.3874,10.5375,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.8142,10.9946,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,5.9908,10.6720,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.3518,10.7174,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,6.0168,10.7870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,6.0347,10.7650,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,6.2427,10.6036,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,6.0517,10.5829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,6.2725,10.7662,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,6.2343,10.7027,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,6.2434,10.6730,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,6.1399,10.7065,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,6.2579,10.7086,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,6.1469,10.9066,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,6.3220,10.7167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,6.2814,10.6888,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,6.3090,10.7058,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,6.8972,11.1428,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,6.5922,11.0972,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,6.7167,11.0440,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,6.5863,11.1157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,6.0121,10.9249,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.6856,10.6538,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.8154,10.7538,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.5743,10.6026,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.5747,10.6077,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.5488,10.5052,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.8926,10.7401,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,5.8374,10.6375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.5443,10.6741,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,5.6709,10.6058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,5.6942,10.5988,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.7076,10.6389,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.8869,10.9674,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.9363,10.6536,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,6.1278,10.6841,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.7937,10.8043,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.6554,10.8112,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.7080,10.7438,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.6697,10.6464,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.6974,10.5060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.5533,10.7223,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.5944,10.7766,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.6610,10.6139,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.7226,11.0118,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.8359,11.2095,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.7932,11.2972,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.8793,10.9343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.6757,10.7725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.txt new file mode 100644 index 0000000..4592220 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=3200x1800 +started_at=2026-05-15 13:08:12 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.658 +avg_encode_latency_ms=11.455 +p95_encode_latency_ms=11.274 +max_encode_latency_ms=77.592 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:08:17 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.csv new file mode 100644 index 0000000..4ef422f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.3485,31.1000,0.0409,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.7800,11.4355,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.5315,14.4987,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.3044,18.0208,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.5441,14.4009,0.0273,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.7481,11.6855,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.5530,11.4735,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.8795,11.4204,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.6965,11.4685,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.5924,11.5245,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,6.6175,11.4223,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,6.6939,11.3347,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,6.4442,11.3963,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,6.8551,11.8468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,6.9843,11.2301,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.5972,11.2386,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.4100,11.2210,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,7.1145,11.1613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.5397,11.2120,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.5694,11.4059,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.3294,11.3190,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.2888,11.2440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.3536,11.2589,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.2225,11.2190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.5700,11.1606,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.3603,11.1061,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.5132,11.1613,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.4525,11.1115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.5491,11.3027,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.4920,11.6500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.4746,11.1098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.5930,11.0725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.4527,11.2046,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.4682,11.0766,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.5279,11.2925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.4357,11.1635,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.5519,11.2392,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.2880,11.1557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.3474,11.1662,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.3959,11.1450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,7.3759,11.1674,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,7.4372,11.0873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,7.4566,11.1077,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,7.6037,11.0912,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,7.5745,11.1022,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.4389,11.6194,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.5963,11.2127,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.4348,11.2122,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.4267,11.1547,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.5332,11.1637,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.4713,11.1197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.5784,11.1122,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.4599,11.1719,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.3884,11.1316,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.5967,11.1382,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.3872,11.0790,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.3401,11.0747,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.3211,11.0898,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.1776,11.0903,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,7.2534,11.1366,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,7.2926,10.8665,0.0817,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,7.3205,11.5695,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.3452,11.1535,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,7.3825,11.0676,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,6.9257,11.2194,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.4170,11.1543,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.3611,11.0785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,7.3512,11.1595,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.2838,11.0809,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,7.4895,11.2185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.4362,11.0233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.6437,11.1500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.3990,11.1511,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,7.2218,11.1164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.5322,11.1749,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.1318,11.1086,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,7.4807,11.0419,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,7.5157,11.6313,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,7.5491,11.1763,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,7.5416,11.4235,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.2617,11.1997,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.2970,11.1623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.3040,11.1127,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.2160,11.0426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.4618,11.0403,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.4065,11.1260,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.3718,11.1512,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.4818,11.2038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.4643,11.2245,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.4839,11.1861,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.3701,11.1830,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,7.4785,11.2122,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,7.5043,11.1390,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,7.4452,11.7570,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.6045,11.2230,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.4480,11.1590,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.3930,11.1283,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.3373,11.1175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,7.5056,11.1878,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,7.5403,11.4633,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.4369,11.2052,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,6.3412,11.2123,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,6.3685,11.1202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.0475,11.0476,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.4123,11.0994,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,6.7587,11.1077,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,6.4452,11.1875,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.3962,11.1450,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.3815,11.1265,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.4067,11.6202,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.4490,10.9985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.3822,11.0476,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.3938,11.0727,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.2562,11.0442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.2135,11.0204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.2762,11.0180,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.3064,11.2798,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,6.5247,11.2219,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,6.4184,11.0697,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,6.4803,11.1674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,6.8115,10.9635,0.0569,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,6.8545,11.2145,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,6.7820,11.1163,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.1260,11.0938,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.2833,11.1018,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.2403,11.6197,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.2984,11.0585,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.2668,11.1143,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.5539,11.4202,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.1986,11.3015,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.2038,11.4705,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.3533,11.4378,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.2193,11.3335,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.1777,11.3498,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.4345,11.2758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.2578,11.0760,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.3570,11.2169,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.2453,11.1112,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.1910,11.0831,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.3127,11.2248,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,6.4268,11.1714,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,6.7623,11.8641,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,6.7920,11.2242,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,6.8968,11.2712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.2451,11.2067,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.1287,11.2245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.4367,11.1337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.3164,11.2151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.3345,11.2096,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.2213,11.2091,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.4140,11.2430,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.5224,11.2096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.4475,11.1327,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.5124,11.1444,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.5055,11.1227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.5093,11.1534,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.4720,11.1259,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.5173,11.6393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.5561,11.1448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.4172,11.1131,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.3384,11.2380,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.3952,11.1780,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.3744,11.1453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.5104,11.1144,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.4351,11.1450,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,6.9376,11.1152,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.6041,11.1372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.4416,11.1709,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.4865,11.1214,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.4126,11.1531,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.5541,11.0933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.4935,11.0923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.2301,11.3574,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.3343,12.0391,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.5344,11.1651,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.3800,11.1287,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.4415,11.1598,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.2701,11.0605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.4392,11.1647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.3919,11.1190,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.4445,10.9150,0.0328,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.3948,11.1107,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.2872,11.0855,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.3831,11.1240,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.3717,11.1492,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.4452,11.1013,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.4342,11.1097,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.2895,11.0339,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.1930,11.0920,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.2979,11.6096,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.3851,11.0957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.4584,11.1080,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.4262,11.0738,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.2905,11.0937,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.2025,11.1182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.1872,11.0888,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,7.3358,11.1780,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,7.3062,11.0396,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,7.2791,11.0776,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.5502,11.4431,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,6.5329,11.3313,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,6.2761,11.1888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,6.3845,11.2226,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.0945,11.1322,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.0491,11.1675,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.0407,11.7399,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,6.8781,11.1797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.2360,11.2172,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.5043,11.2240,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.4199,11.1758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.5452,11.1822,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.7397,11.2046,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.5755,11.1053,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.4555,11.1530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.8239,11.1150,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.4047,11.1042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.4570,11.1589,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.4460,11.1930,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.3324,11.0471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.3500,11.1534,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.4029,11.1199,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.5359,11.6288,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.3911,11.0957,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.4246,11.2483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.4308,11.2622,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.3475,11.5723,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,7.3585,11.6263,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.2147,11.3018,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.0513,11.2054,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.3522,11.2098,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.3386,11.2241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.3907,11.1846,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.0095,11.1913,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.5425,11.1258,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.2808,11.0286,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.4089,11.0710,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.4213,11.1225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.3154,11.6369,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.4031,11.0455,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.4717,11.0910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.3156,10.9282,0.0293,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.2755,11.0742,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.4272,11.1186,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.3486,11.0854,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.3480,11.1566,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.3398,11.0910,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.4163,11.1173,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,7.3500,11.1195,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.4251,11.0879,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.4603,11.0533,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.4810,11.0927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.5889,11.1285,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.3922,11.1109,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.3690,11.5295,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.2933,11.0889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.2868,11.0066,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,7.1806,11.1114,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.3940,11.0271,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.3035,11.0415,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.6003,11.3634,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.2854,11.2468,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.2954,11.2248,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.3352,11.1602,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.3359,11.1750,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.4897,11.1356,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.3462,11.0546,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,6.3937,11.1407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,6.3350,11.1795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,6.3682,11.1310,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.1180,11.7118,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,6.9494,11.1382,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.0025,11.1357,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.5108,11.1715,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.4818,11.1033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.4843,11.3102,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,7.4854,11.1170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.5968,11.1196,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.4582,11.1019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.4453,11.1342,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.3476,11.0436,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.2818,11.0795,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.2693,11.0577,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.2376,11.0543,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.1972,11.1705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.3469,11.1356,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.4610,11.5942,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.4575,11.1398,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.7587,11.4432,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.4989,11.2578,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.4138,11.1491,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.6438,11.1609,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.1616,11.0724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.3640,11.2275,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,7.2660,11.0403,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.3771,11.1296,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,7.2513,11.1530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,7.4941,10.9967,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.3494,11.0824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.3855,11.0969,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.2799,10.9774,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.txt new file mode 100644 index 0000000..4240050 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=3840x2160 +started_at=2026-05-15 13:08:04 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.291 +avg_encode_latency_ms=11.306 +p95_encode_latency_ms=11.629 +max_encode_latency_ms=31.100 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:08:09 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.csv new file mode 100644 index 0000000..8ab47d1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0982,32.7748,0.0359,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.7092,12.4905,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.3691,16.0042,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.0897,20.0980,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.0907,23.0203,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.4408,15.5760,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.1144,12.5831,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.5085,12.4928,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6691,12.4512,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6144,12.4941,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.6715,12.4635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7673,12.4893,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8600,12.4527,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8243,13.0564,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.7751,12.4207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8720,12.3775,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.6159,12.4495,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8788,12.5216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8453,12.5073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8970,12.4746,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9115,12.4537,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8587,12.5073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.7129,12.4622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.8230,12.5123,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.8188,12.4507,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,8.3709,12.5186,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.9762,12.4568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,8.0760,12.5830,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,8.0552,12.4703,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.6317,13.0768,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.7980,12.3837,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.9260,12.6956,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8946,12.5404,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.3924,13.5611,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.4271,12.4814,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.4906,12.5198,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8714,12.4567,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.7315,12.3948,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9225,12.5191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.8589,12.4863,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9786,12.5564,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0742,12.5972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,8.1212,12.5292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,8.0938,12.4586,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.2172,12.5236,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.3045,13.0899,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.5137,12.5448,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,8.1861,12.5172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,8.0900,12.5645,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.9521,12.6915,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8764,12.4736,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.9185,12.3973,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.4869,12.4663,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.3058,12.4770,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.9577,12.3986,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,8.0255,12.4382,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,8.1727,12.4877,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.9010,12.6783,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8412,12.4813,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,8.2678,12.5275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.9812,12.3004,0.0809,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9802,13.1408,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9132,12.5363,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.7436,12.5260,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,8.0499,12.5273,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.8061,12.3906,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8779,12.5253,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.9403,12.4757,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,8.0752,12.5106,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.0732,12.4982,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,8.0609,12.4977,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8783,12.4526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.9992,12.5085,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8570,12.4625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.8556,12.3817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8167,12.3379,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,8.0090,12.5377,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.9864,12.9764,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,8.0401,12.5013,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9645,12.4767,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.0926,12.4562,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.8053,12.4199,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.0497,12.5087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.8148,12.5370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.9394,12.5122,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.7736,12.4053,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.1185,12.4305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.2120,12.3952,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,8.1697,12.4615,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.7107,12.5928,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8358,12.5690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.7496,12.5089,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7587,12.5895,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8838,13.0915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8062,12.4351,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.0034,12.6615,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8142,12.4533,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.7065,12.3697,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.7878,12.3395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.7897,12.3555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9612,12.3962,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,8.1165,12.3555,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,8.1418,12.4602,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9759,12.4137,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.8955,12.4483,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,8.0902,12.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,8.0449,12.4605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,8.0068,12.4838,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.9441,12.4179,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.6882,12.9442,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.9589,12.3495,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.9540,12.3390,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.6990,12.3690,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8294,12.5705,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.2770,12.8834,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,8.0562,12.9426,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.6335,12.6537,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.6075,12.6900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.9015,12.7651,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8141,12.6097,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8293,12.3072,0.0680,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7912,12.4805,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.7690,12.5344,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.0671,12.5995,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8785,12.5194,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.7445,13.1963,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.5866,12.5813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.5224,12.5690,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.6585,12.6113,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.6808,12.5101,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.9228,12.5192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.9448,12.5774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.8265,12.5588,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.7556,12.4409,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.8582,12.5287,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8999,12.4912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,8.0482,12.5353,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.8936,12.4629,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,8.1785,12.4768,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.2185,12.4106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.1575,12.4159,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,8.2381,13.0597,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,8.1354,12.3930,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.1997,13.7734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,8.2620,12.4445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,8.1412,12.3405,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,8.2028,12.5048,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,8.1613,12.4973,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8917,12.4905,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7196,12.5508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7458,12.4606,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.2280,12.5077,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.1193,12.4605,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.1344,12.4922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8666,12.3517,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.5689,12.4473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,8.0161,12.4705,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,8.0088,12.9859,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.0293,12.4982,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.2287,12.4721,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.1057,12.4936,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.2071,12.4312,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,8.0499,12.5864,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.9955,12.3881,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.9189,12.4607,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.8716,12.5280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8993,12.3980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.8063,12.4403,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.8600,12.4510,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.8967,12.3855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8020,12.3795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8636,12.4408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8419,12.4289,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7752,13.0008,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,8.0815,12.4455,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.8375,12.4740,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,8.0819,12.8016,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.0474,12.6895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8897,12.4357,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8405,12.4556,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8926,12.3130,0.0393,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.9315,12.4927,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9078,12.5544,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,8.1899,12.3349,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.5203,12.4249,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.2447,12.3651,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.4559,12.4670,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.6884,12.3440,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.3773,12.4795,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.8541,13.0592,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,8.0159,12.5464,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.1907,12.4737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0980,12.4278,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.8079,12.4090,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8033,12.3861,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8723,12.5633,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.9497,12.4557,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,8.1956,12.4083,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,8.2336,12.3562,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,8.2314,12.3688,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9032,12.3241,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,8.4045,12.3950,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,8.3186,12.4173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,8.3972,12.4406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,8.2447,12.4612,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,8.1180,13.0424,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,8.0508,12.4265,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.8156,12.4273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.9029,12.4797,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.6100,12.5989,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7968,12.5214,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.7640,12.3879,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8512,12.4131,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.8405,12.4070,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9899,12.4485,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9040,12.4215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.7106,12.5473,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.4070,12.5734,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.2050,12.3712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.1494,12.3898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.6993,12.4169,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.5516,12.9238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.7375,12.2918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.7530,12.8186,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9143,12.3905,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0848,12.3775,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.7612,12.4090,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.9285,12.4060,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9939,12.4578,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.8580,12.4511,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9391,12.4128,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.0378,12.5686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,8.0427,12.5200,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.7121,12.4472,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.1551,12.6537,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.2658,12.5996,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8003,12.8241,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.9418,13.4345,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,10.5620,12.9531,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.7277,12.8250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.4842,12.3820,0.0363,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.5870,12.4957,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.8228,12.5776,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.6780,12.5537,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.1483,12.4748,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.9247,12.5843,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.1015,12.3975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.9706,12.5235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.8933,12.6145,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.8902,12.5083,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.9562,12.5270,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.7276,12.4806,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.0520,12.6679,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.8793,13.0118,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.1017,12.4307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9450,12.4527,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,8.0463,12.4702,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.1474,12.3543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.0802,12.4870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8992,12.4315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.9276,12.4957,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.8478,12.4726,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.9519,12.3813,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,8.0798,12.5443,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,8.0925,12.3900,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.0693,12.5139,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.1487,12.4218,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,8.1702,12.5285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.2460,12.4901,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.0754,13.1578,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.1426,12.5440,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.8253,12.5366,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.9769,12.4580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9487,12.4613,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.7904,12.3582,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,8.0061,12.5740,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8383,12.4900,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.9866,12.4250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.8448,12.4104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.9546,12.4599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.8753,12.4262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9720,12.5184,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8770,12.3812,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.9170,12.6140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.1526,12.4420,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.1285,13.0540,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,8.1097,12.5140,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,8.2468,12.4005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.2607,12.6340,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.8485,12.6659,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.5694,12.6880,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.3352,12.5910,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.6363,12.4949,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9140,12.4463,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.6973,12.3807,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.1583,12.5103,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.8597,12.4259,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.0658,12.5060,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.9060,12.7121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.1221,12.6952,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.txt new file mode 100644 index 0000000..7891f7a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=4096x2304 +started_at=2026-05-15 13:07:56 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.900 +avg_encode_latency_ms=12.682 +p95_encode_latency_ms=13.059 +max_encode_latency_ms=32.775 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:08:01 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.csv new file mode 100644 index 0000000..8b03ed6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8135,26.3468,0.0213,0.0000,0,0,0.0000,0,0.0000,0,1,0,33817,0 +1,3.1051,10.0593,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,25534,0 +2,3.0385,15.9570,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,10002,0 +3,3.3545,10.1310,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16503,0 +4,3.3391,10.0155,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,19938,0 +5,3.7050,10.2255,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14647,0 +6,3.6862,10.1818,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3937,0 +7,3.7165,10.1242,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +8,3.8684,10.2786,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16896,0 +9,4.1232,10.0400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +10,4.2107,10.4145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +11,4.1933,10.3388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +12,4.2287,10.3884,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12345,0 +13,4.3342,10.3978,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +14,4.2888,10.2470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +15,4.3098,10.3524,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +16,4.5239,10.3769,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8294,0 +17,4.4221,10.2815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +18,4.8453,10.2676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,4.7473,10.5129,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +20,4.1730,10.5358,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8785,0 +21,4.5872,10.2737,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +22,4.4927,10.3027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +23,4.9161,10.4098,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +24,4.9388,10.5196,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7826,0 +25,4.7919,10.4933,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +26,3.5749,10.5200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +27,3.4869,10.2396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +28,3.5357,10.0067,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7904,0 +29,3.4941,10.1599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +30,5.1443,10.1393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +31,4.8620,10.2367,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +32,4.7040,10.1533,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6935,0 +33,4.8728,10.2084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +34,4.6185,10.2602,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +35,4.6851,10.2121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +36,4.7043,10.4712,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9122,0 +37,4.8345,10.2998,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +38,5.1584,10.4616,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +39,4.9437,10.4220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +40,5.2679,10.4351,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +41,4.9518,10.4774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +42,4.9373,10.4865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +43,4.8353,10.4337,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +44,4.8779,10.4409,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7613,0 +45,5.1937,10.6162,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +46,4.9446,10.3803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +47,4.9205,10.2408,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +48,5.0214,10.4972,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8555,0 +49,5.3415,10.4856,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,956,0 +50,5.1669,10.4311,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +51,5.2059,10.3453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +52,5.2031,10.4726,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8915,0 +53,4.7805,10.4362,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +54,3.6885,10.2949,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +55,4.8453,10.1306,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +56,5.0483,10.1856,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8871,0 +57,5.1358,10.1736,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +58,5.3117,10.1900,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +59,5.3042,10.2115,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +60,5.4356,9.0220,0.0252,0.0000,0,0,0.0000,0,0.0000,0,1,0,63552,0 +61,5.5005,10.2930,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +62,5.1680,10.2355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +63,5.3530,10.2676,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +64,5.2043,10.3978,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7442,0 +65,5.2883,10.2664,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +66,4.9161,10.3702,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1051,0 +67,4.8073,10.3793,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +68,4.7076,10.3670,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9150,0 +69,5.3576,10.2907,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +70,4.9691,10.4191,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +71,4.9066,10.2081,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +72,5.3509,10.3341,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +73,5.3383,10.3598,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +74,5.6291,10.2868,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +75,5.5470,10.4509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +76,5.4948,10.1948,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7636,0 +77,5.4077,10.3616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +78,5.4556,10.1906,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +79,5.4821,10.2655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +80,5.3027,10.4413,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +81,5.4663,10.4299,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +82,5.2586,10.4754,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +83,5.4371,10.3391,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +84,5.5028,10.2915,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8913,0 +85,5.2831,10.6883,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +86,3.4801,10.5612,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +87,3.0499,10.1496,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +88,2.8974,9.9663,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8784,0 +89,2.8946,9.9557,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +90,3.2837,10.1833,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +91,5.8312,10.1879,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +92,5.5174,10.5149,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7929,0 +93,5.0926,10.2785,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +94,5.1922,10.2384,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +95,5.1178,10.2232,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +96,5.1614,10.2285,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,22496,0 +97,5.3028,10.4099,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1454,0 +98,5.2468,10.2798,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1027,0 +99,5.0202,10.2809,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +100,5.1646,10.4030,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9136,0 +101,5.1420,10.3900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +102,5.3432,10.2820,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +103,5.3807,10.3950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +104,5.3361,10.2636,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +105,5.4694,10.2927,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +106,5.4073,10.5520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +107,5.3687,10.2553,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,973,0 +108,5.5922,10.1857,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7646,0 +109,5.3289,10.3256,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,981,0 +110,5.3853,10.2621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1247,0 +111,5.2795,10.4247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +112,5.0675,10.5423,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8815,0 +113,5.1548,10.5753,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +114,5.2341,10.3391,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1242,0 +115,5.0241,10.2319,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +116,4.9124,10.5722,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9088,0 +117,4.7985,10.3609,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +118,4.8987,10.2903,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1129,0 +119,4.9132,10.2740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1083,0 +120,4.7933,9.0789,0.0153,0.0000,0,0,0.0000,0,0.0000,0,1,0,46040,0 +121,4.3653,10.6802,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +122,5.3157,10.1952,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1192,0 +123,5.2464,10.3307,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +124,5.0471,10.2514,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7937,0 +125,4.7744,10.2892,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +126,4.7724,10.2561,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +127,4.6201,10.2541,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1137,0 +128,5.2115,10.3552,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7082,0 +129,5.3805,10.2423,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +130,5.2523,10.4115,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +131,5.4533,10.4014,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,860,0 +132,5.6915,10.2704,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +133,5.5253,10.2898,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +134,5.3344,10.4142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +135,5.4647,10.4303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +136,5.6492,10.3754,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8296,0 +137,5.3757,10.3144,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +138,5.5098,10.2267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +139,5.4362,10.3620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +140,5.4454,10.2673,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7598,0 +141,5.5658,10.3319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +142,5.4863,10.3957,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +143,5.3449,10.3107,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +144,5.3330,10.4070,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8561,0 +145,5.4772,10.5749,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1884,0 +146,5.0526,11.0025,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,778,0 +147,3.8872,10.4851,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +148,3.9492,10.3559,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8882,0 +149,3.5002,10.2792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +150,4.5635,10.2953,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +151,4.9902,10.1645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +152,4.2072,10.3598,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8777,0 +153,5.0997,10.2329,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +154,4.2270,10.3955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +155,5.0985,10.3262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +156,5.3103,10.3494,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7905,0 +157,5.0260,10.2831,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +158,5.2640,10.3247,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +159,5.2320,10.2794,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +160,4.8498,10.2932,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7175,0 +161,4.8302,10.3231,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1144,0 +162,4.8242,10.2565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +163,4.9709,10.5231,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +164,5.0232,10.5050,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,9082,0 +165,5.2006,10.7967,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +166,5.0706,10.9403,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +167,3.3570,10.5635,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +168,3.1329,10.1962,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +169,2.9344,10.0138,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +170,2.9531,10.0646,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +171,5.2062,10.3511,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +172,5.1037,10.3160,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7617,0 +173,5.2038,10.2571,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +174,5.2043,10.2273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +175,5.2680,10.2549,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +176,5.0777,10.3370,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8703,0 +177,5.1756,10.1638,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1134,0 +178,5.4426,10.5405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +179,5.3845,10.3158,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +180,5.4031,9.2376,0.0255,0.0000,0,0,0.0000,0,0.0000,0,1,0,58913,0 +181,5.5860,10.4690,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +182,4.9837,10.3064,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,939,0 +183,5.0640,10.8405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +184,4.9656,10.2702,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9249,0 +185,4.8624,10.2477,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +186,4.9525,10.4618,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +187,4.9306,10.2039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +188,4.6334,10.2525,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7923,0 +189,4.9421,10.2091,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +190,5.1386,10.2637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +191,4.9565,10.3873,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +192,4.9102,10.3499,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,22302,0 +193,4.7923,10.3864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +194,4.8850,10.2297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +195,4.9266,10.2384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +196,4.8664,10.2700,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,9753,0 +197,4.7743,10.6356,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1078,0 +198,4.5138,10.2597,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +199,4.8949,10.2655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +200,4.8268,10.4317,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8311,0 +201,4.6885,10.2547,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +202,4.9515,10.5905,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +203,5.0302,10.2296,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +204,4.8934,10.3058,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7698,0 +205,4.7708,10.7832,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +206,3.9580,10.8664,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +207,4.4649,10.4491,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +208,4.5061,10.5066,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8863,0 +209,4.6357,10.3827,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1944,0 +210,4.3451,10.7709,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,913,0 +211,4.5949,10.4965,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +212,4.4327,10.7025,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8943,0 +213,4.3509,10.3970,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +214,3.4392,10.1101,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +215,4.5440,10.3232,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +216,4.5675,10.1393,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8783,0 +217,4.8417,10.3230,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +218,4.7422,10.4202,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +219,4.8561,10.4100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +220,4.7812,10.3339,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7938,0 +221,4.7407,10.1377,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +222,4.2097,10.2815,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,941,0 +223,4.9643,10.3601,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +224,4.8578,10.3574,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7346,0 +225,5.0468,10.2838,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1550,0 +226,5.0997,10.3726,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +227,5.2660,10.2485,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +228,4.8881,10.2071,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,9207,0 +229,4.8752,10.1712,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +230,4.8723,10.2653,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,885,0 +231,4.7932,10.3326,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,955,0 +232,4.4133,10.6484,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,8418,0 +233,3.7470,10.6472,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +234,2.9985,10.0307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +235,3.2856,10.1167,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +236,3.0225,10.0470,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7746,0 +237,5.5187,10.1428,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1035,0 +238,5.0905,10.1880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +239,5.1861,10.1563,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1036,0 +240,5.0682,8.8920,0.0286,0.0000,0,0,0.0000,0,0.0000,0,1,0,44247,0 +241,5.1315,10.2769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2188,0 +242,5.1180,10.2636,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +243,5.1883,10.1790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +244,5.3197,10.1870,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8876,0 +245,5.0792,10.2677,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +246,5.5452,10.2948,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +247,5.7053,10.2146,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +248,5.4167,10.3633,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8751,0 +249,5.5852,10.2790,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +250,4.8506,10.3161,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +251,5.0110,10.5560,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +252,4.7598,10.2305,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7900,0 +253,4.8562,10.2042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +254,4.8727,10.3489,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +255,4.7466,10.1230,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +256,5.0672,10.2953,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,21866,0 +257,4.7630,10.1795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +258,4.8401,10.2242,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +259,5.1256,10.3264,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +260,5.1219,10.4113,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9152,0 +261,4.8583,10.1914,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +262,4.7683,10.2935,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +263,5.1905,10.3407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +264,4.8589,10.2652,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +265,5.1760,10.3948,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,3.3061,10.5125,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +267,4.5187,10.2759,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +268,4.5013,10.1575,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,4.4720,10.1950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +270,4.8429,10.2979,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +271,4.5544,10.2000,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +272,4.5783,10.4321,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8498,0 +273,4.6411,10.2967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +274,4.7501,10.4268,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +275,5.1460,10.2882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1169,0 +276,4.9436,10.2849,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8900,0 +277,5.0793,10.4276,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +278,4.7952,10.2347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +279,4.9140,10.3534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +280,5.0185,10.4452,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8786,0 +281,4.9071,10.2800,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +282,5.4400,10.3588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +283,5.2950,10.3343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +284,5.4390,10.5073,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7934,0 +285,5.4772,10.3270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +286,5.4466,10.5520,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +287,5.4953,10.3280,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +288,5.4936,10.2861,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7023,0 +289,4.5447,10.7117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +290,5.3153,10.4663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +291,5.1399,10.2894,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +292,4.7288,10.4722,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9194,0 +293,4.7104,10.6175,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +294,4.1743,10.4559,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +295,4.3995,10.4032,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +296,4.2317,10.0695,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8375,0 +297,4.7524,10.1874,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +298,4.5694,10.1180,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +299,4.6669,10.1352,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.txt new file mode 100644 index 0000000..681f7af --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=2560x1440 +started_at=2026-05-15 13:08:53 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.837 +avg_encode_latency_ms=10.389 +p95_encode_latency_ms=10.636 +max_encode_latency_ms=26.347 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1170749 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:08:58 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.csv new file mode 100644 index 0000000..5916f91 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.5542,71.9509,0.0303,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,5.1673,31.9178,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.8947,34.5781,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.9444,37.1287,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.7000,37.7361,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.8234,27.6280,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,5.1205,16.7623,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.1742,10.7510,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.2180,11.0729,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.2170,10.9042,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.2256,10.6540,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.1649,10.7487,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.6630,11.0685,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,5.6234,10.7694,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.7195,10.8317,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.6274,10.8626,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.7442,10.9582,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.8226,10.7209,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.7581,10.6555,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.6978,10.6585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.6892,10.6244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.6178,10.7685,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.7824,10.7187,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.6547,10.8262,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.6853,10.7979,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.6168,10.7951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,6.1595,10.7200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,6.1029,10.5337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.7693,11.0110,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.7214,10.8037,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,6.0150,10.7107,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.7877,10.8569,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.7641,10.6704,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.6910,11.0745,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.6993,10.8587,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,4.9835,11.2376,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.6092,11.0490,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.7933,10.7057,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,6.0404,10.5534,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,4.5615,10.8485,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,4.4105,10.7072,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,4.3360,10.4458,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6063,10.4401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.2700,10.7603,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,6.2060,10.9769,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,6.1892,10.7982,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,6.3744,10.8203,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,6.1247,10.6595,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,6.2088,10.7374,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,6.0555,10.7735,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,6.0635,10.6334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.7244,10.9223,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.9886,10.7906,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.6944,10.9666,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.6373,10.6155,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.9117,11.7280,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,4.7062,10.8863,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,4.4992,10.8115,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,4.4235,10.6079,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,4.6398,10.5050,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,4.7793,11.1375,0.0543,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,4.3169,10.8033,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,4.4577,10.9443,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.7428,11.0782,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.7055,11.0264,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,6.3005,10.7717,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,6.2353,10.9552,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,6.2953,10.6295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,6.3008,10.8718,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,6.1265,10.8074,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,6.1113,10.6625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,6.2843,10.6033,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.6665,11.1648,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.6792,10.7245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.6245,10.7282,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.6258,10.5321,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.6170,11.1633,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.8137,10.8483,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.9954,10.7202,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.9745,10.7359,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.8979,10.8574,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.9585,10.7386,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.8273,10.7655,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.9820,10.7867,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.8675,10.7000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,6.1788,10.5938,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.8914,10.8446,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.9530,10.5587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,6.0841,10.7049,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.7131,10.9753,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.6260,10.7857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.9884,10.8068,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,6.0786,10.9775,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.9002,11.3107,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.8857,10.6489,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.7773,11.1805,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.7172,11.1349,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.7664,11.1950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.8156,10.7362,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,5.6900,10.9230,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.5631,10.9141,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.6357,10.7110,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.4527,10.7960,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.6200,10.6801,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.6665,10.8620,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.6559,10.7923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,4.8255,10.8423,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.6541,10.7410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.5595,11.0692,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.6567,10.7343,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.6779,10.8377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.5958,10.6504,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.5758,10.8159,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.5625,10.5119,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.6675,11.1070,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.9777,10.8130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,6.0020,10.7845,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,6.0336,10.6765,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.6686,10.8934,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.7333,10.7485,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6409,10.5806,0.0311,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.6353,10.7208,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.7252,10.7945,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.5888,10.8261,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.5981,11.4196,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,6.1357,10.7099,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.7811,10.6548,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.9939,10.9011,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.6021,10.7097,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.5771,10.9183,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.9250,10.9256,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.7251,10.9946,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.7025,10.8226,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,6.1723,10.6748,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,6.0252,10.7771,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,6.2413,10.7904,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.9254,10.7278,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.6475,10.5411,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.6893,10.9374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.6053,10.6858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,4.6491,10.8424,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,4.5697,10.6201,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,4.6390,10.5671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,6.0608,10.5952,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,6.0630,10.8592,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,6.2314,10.6818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.9546,10.7999,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.9424,10.7231,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.7934,10.6034,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,6.2243,10.7752,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,6.3631,10.9025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,6.3159,10.7391,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,6.4014,11.0733,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,6.4029,11.0367,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,6.3634,11.0223,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.3047,11.0086,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.6377,11.1174,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.7881,10.7041,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.6008,10.9640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.5690,10.9557,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.6331,10.8968,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.5896,10.7589,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.5683,10.7093,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.7003,10.6278,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.8100,10.9577,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.6315,10.6424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,6.2479,10.5838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,6.2962,10.5091,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.8601,10.5193,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.6662,10.5488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.7663,10.6501,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.6956,10.6319,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.8681,10.9171,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,4.8105,10.5289,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.7516,10.6258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.5766,10.7837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.9831,10.7807,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,6.2363,10.5972,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,6.0846,10.7571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,6.0929,10.6330,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,6.0095,10.4525,0.0367,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,6.2596,11.5857,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.9531,11.3953,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,6.0455,11.1429,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.6824,10.7865,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.7695,10.8257,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.6524,10.6907,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.6047,10.5557,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.6090,11.1509,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.6910,10.8625,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.7853,11.0375,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.6380,10.7742,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.5546,11.0027,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,5.6943,10.8995,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.5778,10.8151,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.5528,10.5673,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.6098,10.7873,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.7458,10.8157,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.5982,10.8342,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.5871,10.9826,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.6422,10.8458,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.7066,10.7353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.6063,10.7630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.7278,10.6688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.5643,11.0191,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,6.1739,10.5392,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.6731,10.8220,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.6709,10.7763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,6.2230,10.6226,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,6.3118,10.9890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,6.5476,10.7794,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,6.0928,10.8141,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.9428,10.9963,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,6.2945,11.0290,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,6.3088,11.2469,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,6.1424,10.8027,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.6566,10.8477,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.5550,10.8426,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.5446,10.8209,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.6090,10.6508,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.6168,11.1022,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.6370,10.6907,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.5860,10.8079,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.5783,10.7864,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.6021,10.9420,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.6591,10.7017,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.7272,10.5184,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.6379,10.5780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.6364,10.9209,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.7042,11.1725,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.4636,11.3405,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.7260,10.9300,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.6347,10.8139,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.7146,10.7618,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.6376,10.5495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.7911,10.6856,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.7843,11.1351,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.8377,10.7174,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.6657,10.8432,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,5.6031,10.8446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,5.6561,10.8235,0.0234,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,5.7002,10.8381,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,5.6685,10.6901,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,6.2808,11.3407,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,6.2378,11.3903,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.5682,10.8986,0.0301,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,4.7268,10.8702,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,4.4822,10.9013,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,4.4497,10.6799,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,5.0709,10.7849,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,6.2521,10.7594,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,6.2072,11.1321,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.2753,11.1483,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,6.3745,10.6891,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.9005,10.7679,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.8626,10.6618,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.8958,10.6709,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.6659,11.0543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.6822,10.6602,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.7135,10.6473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.6658,10.7530,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.6582,10.5773,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,5.7522,10.6681,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.8392,10.5195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,6.0835,10.7276,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.9207,10.6369,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.8098,10.6377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.6254,10.8237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,6.0620,10.8819,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.9763,10.8360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,6.2849,10.7306,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,6.3232,10.7913,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.9928,10.7400,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,6.0510,10.6160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,4.7312,10.6711,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,4.8967,10.9423,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,4.4471,10.7124,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,4.3578,10.6787,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,4.8553,10.7172,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,4.6185,10.8285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,6.2084,10.6224,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,6.4299,10.5787,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,6.2379,10.7381,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,6.3965,10.6945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,6.3943,11.0064,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,6.2979,10.6939,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,6.0992,10.7890,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,6.1621,10.7246,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.9982,10.8002,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.9434,10.8498,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.8253,10.7170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.8452,10.8310,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.6434,10.7523,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.8237,10.7357,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.8301,10.7450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,6.0615,10.9082,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,6.0071,10.8532,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.7896,10.8956,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.9890,10.8267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,6.0735,10.6322,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.txt new file mode 100644 index 0000000..004d6ca --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=3200x1800 +started_at=2026-05-15 13:08:44 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.716 +avg_encode_latency_ms=11.418 +p95_encode_latency_ms=11.250 +max_encode_latency_ms=71.951 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:08:50 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.csv new file mode 100644 index 0000000..9959160 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.3995,31.0510,0.0356,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.8430,11.2693,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.5381,14.5973,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.4185,18.0808,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.8427,14.0846,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.6968,11.2583,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.8656,11.2425,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.9653,11.2022,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.8743,11.2393,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.2968,11.2065,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.2281,11.2952,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.1879,11.2607,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.2567,11.2929,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,7.2185,11.7484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,7.1828,11.1372,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,7.3229,11.3398,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.2883,11.3473,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,7.2749,11.1641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.3336,11.3033,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.3900,11.1390,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.3012,11.1217,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.2910,11.0916,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.2543,11.0922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.1223,11.0279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.4168,11.3621,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.5142,12.4707,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.2023,11.3676,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,6.3382,11.2257,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,6.4790,11.4997,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,6.7781,12.1560,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,6.5452,11.3505,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,6.6318,11.3262,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,6.5645,11.4624,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,6.9383,11.5753,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.0309,11.2756,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,6.6525,11.3096,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.4413,11.5807,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.0022,11.2905,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,6.4315,11.3431,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.0567,11.3463,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,6.8495,11.2939,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,7.1429,11.3573,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,6.5056,11.3232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,6.6515,11.3059,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,7.1420,11.4807,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.1479,11.7897,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,6.8298,11.2435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,6.8985,11.2866,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.2017,11.5535,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.1180,11.2830,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,6.8452,11.2019,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,6.8353,11.1613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.3537,11.5570,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,6.9554,11.2657,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,6.5694,11.2426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.0275,11.2230,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.1421,11.4526,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.2946,11.2776,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,6.3401,11.3241,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,6.7080,11.5030,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,6.8013,11.1787,0.0639,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,6.6138,11.7555,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,6.8789,11.1961,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,6.5158,11.1147,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.1000,11.3616,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.2382,11.3983,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,6.9607,11.3793,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,6.9374,11.2971,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.2413,11.3211,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,6.5190,11.3317,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.2630,11.6291,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.0803,12.1455,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.0571,11.4784,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,6.8647,11.3013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,6.9801,11.4327,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.1942,14.5301,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,14.3028,11.4957,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,6.9903,13.4252,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,6.5847,11.6982,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,6.7440,11.3828,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,6.6758,11.4594,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,6.4920,11.4642,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,6.8939,11.4634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,6.6398,11.3188,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,6.6764,11.4380,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,6.6432,11.3151,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,6.4802,11.2363,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,6.9943,11.3255,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.1208,11.3205,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,6.5364,11.4610,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.2328,11.6233,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,6.8661,11.4939,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,6.9052,11.5870,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,6.5866,12.0627,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,6.3480,11.2825,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,6.3955,11.1842,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.2511,11.6090,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.2396,11.2517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,6.4507,11.2415,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,6.9039,11.1631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.8580,11.2160,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,6.7838,11.1779,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,6.9622,11.2447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.4006,11.4462,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.1355,11.4595,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,6.8602,11.2578,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,6.6125,11.2292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,6.8196,11.2183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.4227,11.2094,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.7442,11.7940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.6345,11.2355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.4270,11.2525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.7032,11.2269,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.8497,11.4457,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,6.9205,11.4221,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,6.8918,11.1707,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,6.8957,11.1427,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,6.9664,11.1925,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.1577,11.3610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.4901,11.2910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.2414,11.0111,0.0462,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.2583,11.2262,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.3383,11.1801,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.3712,11.2810,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.6581,11.4228,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,6.8168,11.8841,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.2363,11.3487,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.2810,11.2738,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.4220,11.2640,0.0432,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.2083,11.1880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.4643,11.3271,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.0061,11.4738,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,6.8804,11.3160,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.0507,11.5025,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,6.5419,11.4006,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.0985,11.3501,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.2842,11.3645,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.1806,11.2246,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.2560,11.1943,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.3281,11.1822,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.4748,11.2901,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.2939,11.6644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.2337,11.2398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.5375,11.3252,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.3985,11.2044,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.5388,11.2820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.4262,11.2355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.5391,11.2704,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.1063,11.3744,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.3348,11.2498,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,6.8728,11.3857,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,6.6487,11.5175,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,6.5663,11.3042,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.0358,11.4262,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.0564,11.3428,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.0061,11.3966,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,6.6756,11.4575,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.1758,11.7907,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,6.6695,11.4790,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,6.5210,11.4205,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,6.8384,11.3592,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,6.6321,11.2357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,6.6543,11.3635,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.3300,11.2748,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.0996,11.5122,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.1793,11.2615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.3552,11.3735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.0632,11.4301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,6.5869,12.0080,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.6213,11.2845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.6978,11.2498,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.0290,11.1711,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.5069,11.1438,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.3730,11.7300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.4515,11.1247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.3160,11.1928,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.4149,11.2559,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.2913,11.2833,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.3917,11.3170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.3696,11.1071,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.5164,11.0416,0.0412,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.5282,11.2502,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.4245,11.2104,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.5348,11.5210,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.3742,11.2436,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.5296,11.3423,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.1991,11.2154,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.7784,11.1697,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.6995,11.1461,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.5073,11.7052,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.5538,11.1820,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.2518,11.3389,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.3455,11.2435,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.5007,11.3876,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.7559,12.6264,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,9.4321,11.5125,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,7.0735,11.5531,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,6.3628,11.2803,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,6.4047,11.2597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.2564,11.2614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,7.2683,11.2617,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,7.2547,11.5649,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,7.5709,11.3186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.2568,11.3267,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.1024,11.3461,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.2230,11.7186,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.3207,11.2217,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.1803,11.2019,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.5265,11.1279,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.3066,11.2773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.1691,11.2005,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.3578,11.2221,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.3405,11.1530,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.2659,11.3563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.3111,11.2637,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.4611,11.2948,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.2242,11.1365,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.3184,11.1500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.2823,11.2078,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.1600,11.2166,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.1540,11.0556,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.3448,11.6459,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.3053,11.1361,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.4257,11.2191,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.4147,11.3547,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.3589,11.2164,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,6.6612,11.3395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,6.5350,11.1481,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.4208,11.4709,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.1058,11.5203,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.4372,11.3598,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.6817,11.4687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.3255,11.3118,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.0021,11.1379,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.1376,11.2783,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.1558,11.2668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.0977,11.1914,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.2513,11.6588,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.4198,11.1887,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.5083,11.1557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.3806,11.0403,0.0289,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.4241,11.2076,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.2613,11.1556,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.3445,11.2197,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.3065,11.4740,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.1402,11.3787,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.4355,11.3020,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,6.9631,11.4375,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,6.8751,11.2188,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.1635,11.2290,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.2014,11.3470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.2782,11.3067,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.4800,11.2976,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.4113,11.6747,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.5873,11.2426,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.4604,11.1794,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,7.3829,11.3275,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.3270,11.4216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.2049,11.3025,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.4743,11.1606,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.6425,11.2229,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.3850,11.2432,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.5149,11.2580,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.7168,11.3413,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.4480,11.2450,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.3535,11.1912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.3833,11.2683,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.3092,11.3174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.2735,11.2302,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.4518,11.6538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.3303,11.1720,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.5123,11.2460,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.3428,11.3117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.5605,11.2197,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.3417,11.1085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,7.4295,11.1231,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.5101,12.1654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.7049,11.2025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.4700,11.2747,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.5263,11.2212,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.6101,11.1923,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.6158,11.2247,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.3619,11.2172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.6354,11.2290,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.3005,11.3147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.0612,11.7328,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.3852,11.2967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.3686,11.3420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.3706,11.2536,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.3725,11.2794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.4251,11.2608,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.4048,11.3167,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.4464,11.1846,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,6.7921,11.2927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.4054,11.2587,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,6.4337,11.1667,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,6.4208,11.1248,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.3147,11.1514,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.3775,11.1954,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.0261,11.1938,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.txt new file mode 100644 index 0000000..0b3f8f7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=3840x2160 +started_at=2026-05-15 13:08:36 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.184 +avg_encode_latency_ms=11.463 +p95_encode_latency_ms=11.791 +max_encode_latency_ms=31.051 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:08:41 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.csv new file mode 100644 index 0000000..06a2d16 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1047,33.1929,0.0398,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.7587,12.4918,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.3946,15.9489,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2064,19.9907,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.0236,24.1729,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.4092,16.4908,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4069,12.5113,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.6462,12.5864,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.7636,12.4554,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.4415,12.5798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.7439,12.5203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7673,12.5520,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8008,12.5422,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.9548,13.1052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8327,12.5181,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8005,12.4253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.7340,12.5384,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7657,12.4792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.9612,12.5565,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.7303,12.5097,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8483,12.5898,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8576,12.5929,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,8.0925,12.6772,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.8986,12.5286,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.5910,12.7170,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.6080,12.5979,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.3994,12.5882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.3108,12.5529,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.3144,12.5228,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.9999,13.1239,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.9455,12.4493,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.8520,12.5183,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,8.0235,12.5397,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9813,12.6560,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9725,12.5256,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.8983,12.4597,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.9354,12.5400,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.9012,12.4876,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.2688,12.9033,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.0554,12.6695,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9340,12.5259,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.9130,12.4795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.7821,12.4686,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9270,12.4517,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.9657,12.4436,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.0388,13.0917,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.1075,12.5243,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,8.2152,12.3995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,8.2543,12.4575,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.2300,12.5104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,8.5607,12.4791,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,8.3051,12.5496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.2487,12.5131,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.8875,12.5197,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.7998,12.6236,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.8796,12.5048,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8951,12.5349,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.6874,12.4527,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.7660,12.4352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.7399,12.4455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7105,12.2804,0.0714,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.6461,13.0618,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.7590,12.5040,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.7683,12.5153,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.6897,12.5050,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.8041,12.5365,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.6503,12.4961,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.8973,12.4368,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.6917,12.5391,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.9175,12.5318,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.9032,12.4601,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.7906,12.4943,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.8775,12.4003,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7304,12.4642,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.9381,12.5856,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.7925,12.5516,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.7013,12.4206,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7752,13.0350,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.6722,12.5279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,8.0448,12.4719,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.3235,12.4999,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.9222,12.4615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.9897,12.4329,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.9865,12.4025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.9632,12.4851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8045,12.4459,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.0273,12.4910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.8567,12.5244,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,8.1851,12.4695,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.9260,12.5775,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.7788,12.5802,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.9346,12.5580,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.9798,12.5519,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.9843,13.0369,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8855,12.5126,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.0469,12.4141,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,8.0678,12.7645,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.9110,12.7089,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.7764,12.6671,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.8056,12.4563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,8.2240,12.4900,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.9063,12.4452,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.7813,12.4955,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.8289,12.4794,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7945,12.4905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.9198,12.6050,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8732,12.5114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.7093,12.5305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8067,12.5400,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8708,12.9383,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.7465,12.6441,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.8486,12.4826,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,8.0123,12.4182,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8965,12.4713,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.0721,12.4827,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.4692,12.5063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.5098,12.5638,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.5614,12.4925,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.7221,12.4404,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.6994,12.5295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.7447,12.2301,0.0474,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7895,12.4621,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.9081,12.5858,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.7601,12.4575,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.6702,12.4165,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.9303,13.1005,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8011,12.5868,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8591,12.5446,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.8292,12.5477,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.8652,12.5392,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.6734,12.5712,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.7770,12.5634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.6605,12.6327,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.9975,12.6539,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.7348,12.6820,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.7345,12.5061,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.3326,12.5320,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.1477,12.5215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.9944,12.4144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.9523,12.4401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.9052,12.4954,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.9446,13.0711,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8390,12.3235,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.5039,12.5100,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.6536,12.6187,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.1839,12.4600,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,6.9581,12.4743,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.5772,12.4718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8019,12.5454,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8984,12.4923,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7118,12.5209,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.9249,12.5759,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.0205,12.4610,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.7377,12.4891,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.7545,12.5046,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.7353,12.5406,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.6697,12.4318,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.6892,12.9882,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.0865,12.8792,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.2152,12.8555,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.1510,12.6901,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8940,12.5752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.9116,12.5228,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.9534,12.5243,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.7015,12.6105,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.8223,12.4454,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8259,12.4819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7070,12.4069,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.7214,12.4420,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.9098,12.5062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7569,12.3520,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.1103,12.5587,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8790,12.4864,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7824,13.0211,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7422,13.4605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7490,12.5555,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8746,12.4950,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.2942,12.4225,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.3336,12.6348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.3438,12.5393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.4689,12.2757,0.0473,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8083,12.4857,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.7175,12.4817,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.7597,12.4140,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.9863,12.4305,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,8.0647,12.4613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.9886,12.4723,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,8.0048,12.4224,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8645,12.4711,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.8822,12.9717,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.8943,12.4428,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.0356,12.4607,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.7337,12.4214,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.6757,12.4109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8166,12.3735,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8175,12.4008,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7645,12.4939,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.8840,12.3875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.7955,12.4953,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8752,12.4634,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9035,12.5440,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.9017,12.5426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7932,12.4694,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.7729,12.5910,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.7090,12.4552,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.7850,12.9884,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.7389,12.3572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.2572,12.4622,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7602,12.4868,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.6552,12.4628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7038,12.3328,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.2816,12.5619,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.0126,12.5768,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.1070,12.5149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.5340,12.4474,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9574,13.4398,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.8117,12.4769,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.8564,12.6166,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,8.0799,12.8452,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.9200,12.7797,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.9389,12.6013,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8137,13.0465,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.7363,12.5213,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.7873,12.5639,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.0183,12.6384,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.8511,12.3746,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.8974,12.4638,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.7153,12.4770,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,8.0166,12.5834,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.9709,12.4661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9490,12.5370,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.7440,12.4212,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.7355,12.4871,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.0118,12.4398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8087,12.5587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.8217,12.4721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8529,12.4496,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.7241,13.0812,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.6827,12.4411,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.7711,12.4935,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.7875,12.2395,0.0265,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.7409,12.4894,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.8854,12.4832,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.0279,12.5153,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.8438,12.4516,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8020,12.5378,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.7265,12.5003,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.7162,12.5090,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.9100,12.5152,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.8413,12.3957,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.7625,12.4153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.7174,12.4013,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.7850,12.3925,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.5972,12.9816,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8792,12.4467,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.7492,12.4389,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.7571,12.4439,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.7596,12.4421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.7483,12.4128,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.7927,12.4945,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.1149,12.4856,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.8600,12.5127,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.7815,12.5082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.8152,12.5311,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8437,12.4767,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.8465,12.4081,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7885,12.4545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.6993,12.4432,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.7972,12.4507,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.7588,13.0333,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.7492,12.4319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.7640,12.5234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,8.0134,12.4827,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9157,12.5150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.8790,12.4643,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.7938,12.4683,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.9006,12.5252,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.9946,12.4421,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.4140,12.6071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.0168,12.5554,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.9344,12.4068,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,8.1787,12.5261,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.0252,12.4295,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,8.0477,12.4322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.8316,12.4685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.9359,13.0753,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.9962,12.4616,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8688,12.4807,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.8192,12.5291,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.7482,12.4249,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.6462,12.3800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.7132,12.4365,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.9468,12.6015,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.8996,12.5732,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.9144,12.5808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8484,12.5396,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.7833,12.5333,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.7687,12.5918,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8663,12.4592,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.6895,12.6882,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.txt new file mode 100644 index 0000000..2168bb0 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=4096x2304 +started_at=2026-05-15 13:08:28 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.810 +avg_encode_latency_ms=12.701 +p95_encode_latency_ms=13.047 +max_encode_latency_ms=33.193 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:08:33 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.csv new file mode 100644 index 0000000..d4045b6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8652,26.2896,0.0222,0.0000,0,0,0.0000,0,0.0000,0,1,0,33817,0 +1,3.0950,10.1100,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,25534,0 +2,2.9566,15.9916,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,10002,0 +3,3.1223,10.1023,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16503,0 +4,3.4180,10.3060,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19938,0 +5,3.4180,10.2266,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14647,0 +6,3.7443,10.0950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3937,0 +7,3.6406,10.1084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +8,3.7214,10.5464,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,16896,0 +9,3.3490,10.4209,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +10,3.0035,10.1458,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +11,3.2690,10.5162,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +12,2.9418,10.3682,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12345,0 +13,2.8164,10.0375,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +14,2.9061,10.0119,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +15,4.5965,10.2937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +16,4.5198,10.2112,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8294,0 +17,4.6815,10.1294,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,829,0 +18,4.4755,10.1168,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,4.5074,10.0968,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +20,4.5309,10.2157,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8785,0 +21,4.9905,10.3665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +22,4.7126,10.0849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +23,4.8628,10.2593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +24,4.7201,10.1667,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7826,0 +25,4.8609,10.2649,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +26,4.9969,10.2591,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +27,4.9423,10.2800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +28,4.8114,10.3440,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7904,0 +29,4.7975,10.1687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +30,4.8913,10.3163,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +31,4.8751,10.2698,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +32,4.8144,10.2724,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,6935,0 +33,4.9996,10.6483,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +34,4.7397,10.4678,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +35,4.1504,10.8879,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +36,4.8494,10.3881,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,9122,0 +37,4.5211,10.1257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +38,4.4738,10.2377,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +39,4.6031,10.1162,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +40,4.5492,10.1305,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +41,4.6225,10.1221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +42,4.5533,10.1104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +43,5.0310,10.1904,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +44,5.0049,10.2508,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7613,0 +45,3.3105,10.4689,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +46,3.0998,10.0786,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +47,3.0822,10.0653,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,825,0 +48,3.5803,10.1410,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,8555,0 +49,2.7866,10.0349,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,956,0 +50,4.7069,10.2725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +51,5.5220,10.1290,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +52,4.6750,10.2439,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8915,0 +53,5.1198,10.2142,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +54,4.6264,10.2082,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +55,5.1059,10.2455,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +56,5.0482,10.2297,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,8871,0 +57,5.2506,10.4146,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +58,5.4442,10.6725,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +59,5.5543,10.7772,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +60,4.7956,9.2473,0.0250,0.0000,0,0,0.0000,0,0.0000,0,1,0,63552,0 +61,3.6562,10.3465,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +62,3.4937,10.1486,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +63,3.8683,10.2399,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +64,3.8628,10.1828,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7442,0 +65,4.0617,10.1248,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +66,4.5439,10.2901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1051,0 +67,5.6286,10.4286,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1054,0 +68,5.0298,10.4073,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9150,0 +69,5.2920,10.2487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +70,5.0922,10.3277,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +71,5.2713,10.7439,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +72,5.2478,10.3225,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8313,0 +73,4.9736,10.4075,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +74,4.9384,10.4017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +75,4.7598,10.3621,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +76,4.7977,10.5318,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7636,0 +77,4.9640,10.3002,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +78,4.9771,10.2332,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +79,4.1619,10.3636,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +80,4.7273,10.5462,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8565,0 +81,4.6713,10.2642,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +82,4.5611,10.2762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1021,0 +83,4.6128,10.3472,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1092,0 +84,4.8495,10.2462,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8913,0 +85,4.9267,10.2523,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +86,4.7769,10.5146,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +87,4.8567,10.2188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +88,4.9320,10.2936,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8784,0 +89,4.5940,10.2009,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +90,4.7033,10.3178,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +91,4.7148,10.2867,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +92,4.8106,10.3589,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,7929,0 +93,4.8796,10.4543,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +94,4.1665,10.4184,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +95,3.6939,10.3492,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +96,3.1530,10.3776,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,22496,0 +97,3.0431,10.9849,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1454,0 +98,3.1916,10.4086,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1027,0 +99,4.5331,10.2458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +100,4.4713,10.1857,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9136,0 +101,5.1197,10.1669,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +102,4.6939,10.1536,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +103,5.1120,10.1949,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +104,4.9217,10.6359,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8368,0 +105,4.7602,10.3075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +106,5.0697,10.2616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +107,4.7789,10.1238,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,973,0 +108,4.8800,10.7803,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,7646,0 +109,3.3952,10.7135,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,981,0 +110,4.0235,10.1576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1247,0 +111,4.2116,10.0798,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +112,4.3613,10.1098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8815,0 +113,3.0442,10.0830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1534,0 +114,3.0835,10.2325,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1242,0 +115,2.8762,9.9530,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +116,5.5330,10.1898,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9088,0 +117,5.0887,10.1568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1136,0 +118,4.1711,10.0322,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1129,0 +119,5.0754,10.2336,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1083,0 +120,5.2289,8.9698,0.0193,0.0000,0,0,0.0000,0,0.0000,0,1,0,46040,0 +121,5.1009,10.2939,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1877,0 +122,5.0291,10.3675,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1192,0 +123,5.0419,10.3210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +124,5.0584,10.3183,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7937,0 +125,4.9909,10.4200,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +126,4.9747,10.5645,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +127,5.0084,10.3927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1137,0 +128,4.9582,10.2904,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7082,0 +129,5.0007,10.3362,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +130,5.1360,10.2052,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +131,4.8596,10.2574,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,860,0 +132,4.6751,10.4112,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +133,4.7428,10.3099,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +134,4.7367,10.3912,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +135,4.4474,10.3372,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +136,4.3886,10.6468,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8296,0 +137,4.2456,10.5377,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +138,4.1857,10.3157,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +139,4.1254,10.1934,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +140,4.2796,10.0467,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7598,0 +141,4.6011,10.2245,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +142,4.5151,10.1399,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +143,4.5984,10.2018,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +144,4.6092,10.1523,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8561,0 +145,4.6082,10.2207,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1884,0 +146,2.9975,10.1066,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,778,0 +147,4.6475,10.3070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +148,4.5135,10.2892,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8882,0 +149,4.5345,10.2446,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +150,4.5340,10.2462,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +151,4.5108,10.1607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +152,4.4848,10.1022,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8777,0 +153,4.7278,10.3528,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +154,4.6949,10.3503,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +155,4.6515,10.3477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +156,4.7122,10.2683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7905,0 +157,4.7730,10.2793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +158,4.8204,10.3285,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +159,4.8106,10.1255,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +160,4.8813,10.3973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7175,0 +161,4.8144,10.3231,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1144,0 +162,4.8358,10.2981,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +163,4.6605,10.2756,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,824,0 +164,4.6500,10.2690,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9082,0 +165,4.6124,10.2547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +166,4.4763,10.2113,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +167,4.6123,10.0963,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +168,4.6358,10.9949,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +169,4.2002,10.2141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +170,4.1034,10.1009,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +171,4.5178,10.1110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,814,0 +172,4.4258,10.1484,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7617,0 +173,2.9242,10.1135,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +174,4.5147,10.2351,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +175,4.4840,10.1174,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +176,2.9151,10.1474,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8703,0 +177,5.0759,10.2409,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1134,0 +178,4.7992,10.1852,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +179,4.7064,10.1803,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +180,5.1830,9.0350,0.0160,0.0000,0,0,0.0000,0,0.0000,0,1,0,58913,0 +181,5.0423,10.1483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +182,4.7765,10.1884,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,939,0 +183,5.0686,10.2971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +184,4.7247,10.2678,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9249,0 +185,4.8732,10.3680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +186,4.8693,10.2388,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +187,4.7518,10.2841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +188,5.0526,10.3161,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7923,0 +189,5.3929,10.4059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +190,5.0362,10.3192,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +191,4.8061,10.4365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +192,4.7946,10.2725,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,22302,0 +193,4.8480,10.2374,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +194,4.6947,10.5385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1004,0 +195,4.8523,10.1627,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,841,0 +196,5.0311,10.3315,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9753,0 +197,4.4704,10.0968,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1078,0 +198,4.7509,10.6917,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +199,4.7237,10.2966,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +200,3.2129,10.0170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8311,0 +201,3.8781,10.2295,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +202,3.0261,10.0797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +203,4.5744,10.2441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +204,4.6171,10.1587,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7698,0 +205,4.5038,10.2510,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +206,5.1185,10.1861,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +207,5.2572,10.6795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +208,5.0747,10.4289,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8863,0 +209,4.9404,10.4848,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1944,0 +210,4.9548,10.5181,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,913,0 +211,4.8692,10.2758,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +212,4.9648,10.2919,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,8943,0 +213,3.8392,10.7148,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +214,4.4746,10.6087,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,880,0 +215,4.8308,10.1745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,872,0 +216,4.7301,10.3477,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8783,0 +217,4.6524,10.1654,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +218,4.6816,10.1686,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +219,4.6155,10.1685,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +220,4.8448,10.3509,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7938,0 +221,4.8716,10.2840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +222,4.8172,10.2772,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,941,0 +223,5.1957,10.2436,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +224,4.9830,10.4815,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7346,0 +225,5.0215,10.2677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1550,0 +226,4.7929,10.3008,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +227,5.0535,10.1896,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +228,5.0102,10.3770,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,9207,0 +229,4.7302,10.4940,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +230,4.5288,10.2565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,885,0 +231,4.6759,10.1665,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,955,0 +232,4.6435,10.3257,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8418,0 +233,4.8021,10.2235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +234,5.1073,10.4362,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,881,0 +235,5.1907,10.3845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,962,0 +236,5.1706,10.3287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7746,0 +237,5.0187,10.5311,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1035,0 +238,4.8335,10.3577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +239,4.9393,10.3837,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1036,0 +240,5.0651,9.0633,0.0215,0.0000,0,0,0.0000,0,0.0000,0,1,0,44247,0 +241,4.8407,10.2236,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2188,0 +242,4.8490,10.5279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +243,5.0588,10.3592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1138,0 +244,4.8672,10.4797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8876,0 +245,5.2340,10.2715,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +246,4.9161,10.3352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +247,3.3594,10.7125,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +248,5.0933,10.1828,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8751,0 +249,5.1278,10.1728,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +250,4.5785,10.0343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +251,4.8638,10.2502,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +252,4.9902,10.3660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7900,0 +253,4.8957,10.3119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +254,5.0366,10.1072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +255,4.9378,10.2555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +256,4.8112,10.4390,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,21866,0 +257,4.6840,10.2300,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1133,0 +258,4.7858,10.5787,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +259,4.7856,10.2424,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1281,0 +260,4.4556,10.2850,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9152,0 +261,3.8129,10.4735,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +262,3.0932,10.1766,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +263,2.9085,9.9990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +264,3.8815,10.0582,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +265,3.5687,10.2696,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,5.3320,10.1755,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +267,3.1605,10.0231,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +268,5.6921,10.0275,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,5.2575,10.1037,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +270,5.2054,10.2954,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +271,5.2265,10.3547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,782,0 +272,5.3960,10.2170,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8498,0 +273,5.3086,10.1695,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +274,5.4666,10.0132,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1267,0 +275,5.3388,10.1964,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1169,0 +276,5.0501,10.2023,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8900,0 +277,5.1072,10.3407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +278,5.0112,10.2731,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +279,4.9161,10.3106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +280,4.9501,10.2884,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8786,0 +281,4.9745,10.3529,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +282,5.0159,10.2968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +283,5.0295,10.2762,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +284,5.2950,10.3285,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7934,0 +285,5.0384,10.2967,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +286,4.9580,10.3127,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +287,4.8365,10.2712,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +288,4.8649,10.3730,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,7023,0 +289,4.5852,10.1955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,900,0 +290,4.6069,10.2638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +291,5.3262,10.2030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +292,4.7590,10.2703,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9194,0 +293,4.7526,10.3322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,839,0 +294,4.7345,10.2947,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +295,4.8855,10.3482,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +296,5.1099,10.1237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8375,0 +297,5.1995,10.2317,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +298,4.7613,10.2265,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +299,5.0457,10.2018,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,863,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.txt new file mode 100644 index 0000000..21fb919 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=2560x1440 +started_at=2026-05-15 13:09:25 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.601 +avg_encode_latency_ms=10.342 +p95_encode_latency_ms=10.647 +max_encode_latency_ms=26.290 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1170749 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:09:30 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.csv new file mode 100644 index 0000000..fc98a97 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.6155,53.4904,0.0254,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,4.4764,32.0130,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.5193,34.8562,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.4223,26.8735,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.4866,17.2992,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.7703,10.7100,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,5.2213,10.8479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.1354,10.7091,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.2500,10.7978,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.2584,10.7490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.4294,10.7435,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.5077,10.9343,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.5459,10.9600,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,5.6018,10.7673,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.6263,10.9108,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.5843,10.8396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.6342,10.8000,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.7237,10.7762,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.7503,10.8970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,6.0211,10.8573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,6.2562,10.9840,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.9499,10.8741,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.5810,10.9523,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.6533,10.5120,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,6.1867,11.3268,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.7567,11.0526,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.8075,11.3191,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.9227,10.7722,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.7592,11.3524,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.6990,10.5820,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,5.6165,10.8086,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.6850,10.8376,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.7058,10.6451,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.5324,10.6875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.6653,10.7067,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.6766,10.5857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.6819,10.8249,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.7618,10.6567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.8392,10.9892,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,4.6371,11.0426,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,4.6507,10.8020,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,4.8754,10.6747,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6297,11.3551,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.3137,11.1462,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.3567,11.1207,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,4.7732,10.8377,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.6641,10.6090,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.5979,10.6625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.6082,10.7038,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,6.1312,10.5904,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,6.2177,10.8970,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,6.1637,10.7819,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,6.1885,10.5080,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,6.0510,10.6966,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,6.0070,10.6712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,6.2537,10.6968,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.9594,10.8191,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.6652,11.1094,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.7305,11.0276,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.7587,10.8524,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.6943,10.9150,0.0545,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.7407,11.0169,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.7225,10.5927,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.7314,10.5035,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.3347,11.0504,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,4.9369,10.7121,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,4.9745,10.7063,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,5.1398,10.6505,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,5.4763,10.8493,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,5.7137,10.9205,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,5.6787,11.0436,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,5.5993,10.9648,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.6958,10.6408,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.6633,10.7587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,6.2355,10.7127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,6.3280,10.6402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.7640,11.2491,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.9560,10.9012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,6.0517,10.9023,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.9531,11.0405,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,6.0966,10.7903,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,6.1099,10.9471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.7863,10.8760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.7663,10.6446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.7064,10.7871,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.6457,11.0367,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.6283,10.4799,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.8725,11.3628,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.8158,10.9891,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,6.9230,11.1372,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,4.7036,10.7393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.1560,10.7617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.3953,11.1623,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,4.5128,10.8033,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,4.5770,10.6418,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,4.6834,10.5570,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.8047,10.6145,0.0230,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.7660,10.6843,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.4758,10.8325,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,5.7148,10.8349,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,4.3578,10.8567,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,4.5465,10.6771,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,4.9161,11.1411,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.9276,11.1966,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.0204,10.7459,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,4.6587,11.0471,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,6.1092,10.5778,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,6.0300,11.0627,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,6.2889,11.1408,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,6.1913,10.8023,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,6.0381,10.6348,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.9444,10.7279,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.9869,10.7649,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,6.1468,10.8221,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.6988,10.8706,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.8891,10.8301,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,6.0872,10.9670,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,6.3465,11.2546,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.0932,11.1122,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.6587,10.6223,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.7420,11.2120,0.0478,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.8968,10.8968,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.6794,11.1525,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.7444,10.7973,0.0222,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.7411,11.2193,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.7588,10.8407,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.6449,10.9022,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.6363,11.0117,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.6498,10.6535,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.6783,10.8627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.7020,10.7752,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.3197,10.7603,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.6979,10.6098,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,5.8631,10.7361,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.8660,10.6508,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,5.8104,10.6965,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.7710,10.6219,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.6798,10.6384,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.6670,10.7325,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.5954,10.6690,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.5808,11.0157,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.6241,10.8370,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.6601,10.7417,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.6495,10.6853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.5404,10.8000,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.9153,10.9045,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.7843,10.7653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.7940,10.7692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.5941,10.8792,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,5.6650,10.8451,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.6156,10.7795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.6100,10.8103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.6142,10.9390,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.7785,10.8124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,6.0215,10.7172,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,6.0248,10.9473,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,6.0079,11.1129,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.7293,10.8345,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.6247,10.7592,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.9996,10.7057,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.7103,10.7117,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.6877,10.7501,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.8541,11.3148,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.7237,10.9955,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.5909,10.7024,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.6006,10.8958,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.5431,10.5579,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.5930,10.6940,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.5884,10.6438,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.5985,10.8081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.7144,10.8473,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.5956,10.6626,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.5936,11.0868,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,6.0971,10.7834,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,6.0681,10.8750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,6.0357,10.8435,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,6.2789,11.1058,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,6.4587,11.0253,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.1410,10.7389,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.5996,10.5521,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,5.6605,10.5669,0.0344,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,5.8463,10.7328,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.6740,10.8194,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.6309,10.9610,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.7170,10.5951,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.6160,10.7590,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.6534,10.7244,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.6058,10.7128,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.6335,11.0704,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.5870,10.7945,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.6432,10.8744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.5760,10.9372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.5641,10.7223,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,6.0808,10.7425,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,6.1397,10.6927,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.9498,10.8406,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,6.0958,10.5897,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,6.0553,11.1973,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.6635,10.9365,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,4.4925,10.9774,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,4.7052,10.4586,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,4.4165,10.6390,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,4.6756,10.5595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.1496,10.8583,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.2572,11.1280,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,6.2589,10.6863,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,6.3120,10.7777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,6.0527,10.6702,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,6.1384,10.7203,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,6.1029,10.8532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.9375,10.7481,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.6904,10.7696,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.6714,10.8464,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,5.7241,11.0955,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,5.7481,10.8868,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,5.6414,10.7625,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.6351,10.7020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.6676,10.7223,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.6506,10.5630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.6611,10.7600,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.5713,10.9143,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.7336,10.4735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.6418,11.1561,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.9193,11.1747,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.8873,11.2334,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,6.0442,10.7257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.7045,10.9951,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.6592,10.7741,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.6177,10.8151,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.6253,10.7223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.6440,10.7648,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.6181,10.7160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.6597,10.8126,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.5902,10.5153,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,6.0026,10.5315,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.6983,10.8039,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.9238,10.8689,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.5998,10.6025,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,4.5332,10.5537,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,4.4862,10.7375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,4.4953,10.5933,0.0221,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,4.5609,10.5674,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,4.4637,10.6461,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,4.6859,10.7329,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,4.5825,10.6532,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,4.5087,10.7515,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.8120,10.7808,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,6.2053,10.8480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,6.1430,10.9816,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,6.0837,10.6210,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,5.9108,10.8959,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.9590,10.9700,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.9576,11.0006,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,6.1281,10.8223,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,6.0849,10.8834,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,6.1473,10.7504,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.8445,10.8751,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.6743,10.8424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.5973,10.8650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.6703,10.7953,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.9325,10.8147,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.9836,11.0088,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,6.0184,10.8121,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.9274,10.9733,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,6.3242,10.9478,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,6.2118,11.0595,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.8060,10.9561,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.6680,10.7263,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.6117,10.9895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.9563,10.7558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,6.0882,10.8215,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,6.2189,10.8171,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.7779,10.5938,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.7220,10.9750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.9197,11.1336,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,6.1837,10.7277,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.9898,10.8562,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,6.1160,11.1634,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,6.1084,10.8227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,6.0597,10.7323,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.9402,10.9460,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,6.0324,10.9749,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,6.0670,12.3777,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.5163,11.3208,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.2827,11.8267,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.6020,10.9912,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.4214,10.7455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.3301,10.9418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.7991,10.9238,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.4729,10.8953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.6327,10.5871,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.6638,10.6459,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.7806,10.7621,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.6335,10.6073,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.6325,10.7611,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.6460,10.7912,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.7546,10.7839,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.7188,11.0804,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,4.9981,11.0147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.6604,10.4962,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.txt new file mode 100644 index 0000000..d92312f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=3200x1800 +started_at=2026-05-15 13:09:17 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.656 +avg_encode_latency_ms=11.208 +p95_encode_latency_ms=11.249 +max_encode_latency_ms=53.490 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:09:22 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.csv new file mode 100644 index 0000000..4952c33 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.1611,31.6153,0.0325,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.7542,11.1457,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.4263,14.7095,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.2960,18.3034,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.5582,14.4767,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.7672,11.1824,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.8475,11.2618,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,6.5302,11.2003,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.8394,11.2159,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,6.8963,11.3042,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.0419,11.2441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,6.3850,11.1984,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.0129,11.1692,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,7.1792,11.7157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,7.0591,11.1309,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.8212,11.1119,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.3764,11.1275,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,7.2676,11.1020,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.4063,11.2003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.5020,11.1690,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.4077,11.1259,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.3855,11.1877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.4150,11.1248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.1720,11.1242,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.3780,11.1877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.5367,11.2033,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.7975,11.3725,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.2743,11.1529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.2404,11.1739,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.3505,11.7775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.2487,11.1904,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.3245,11.1692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.3582,11.2374,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.4331,11.1786,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.2677,11.2962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.3221,11.2975,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.2330,12.6452,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.6147,11.5089,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.2702,11.4951,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.0879,11.2875,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,6.6664,11.3224,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,6.2924,11.1829,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,6.7612,11.1538,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,6.7920,11.2522,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,6.8213,11.1279,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,6.9131,11.6565,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.3104,11.1934,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.2863,11.1732,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.2385,11.1452,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,6.7062,11.1974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.3344,11.1385,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.3660,11.2051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.4305,11.1613,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.4786,11.1396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.2823,11.2522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.4488,11.1408,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.3511,11.1006,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.3291,11.0491,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.1566,11.1477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,7.2192,11.1730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,7.2361,10.9979,0.0750,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,7.1052,11.6678,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.3732,11.0867,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,7.3115,11.0915,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.3808,11.1403,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.7274,11.0642,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.4309,11.6838,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,6.7411,11.3487,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,6.5642,11.1830,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,6.4541,11.1664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.0917,11.1406,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,6.6770,11.1861,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.2373,11.1612,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,7.4795,11.1345,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.6755,11.5339,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.3224,11.4565,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,7.2465,11.5173,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,7.7207,11.9316,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,6.9467,11.3290,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,7.3181,11.2048,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.3297,11.1271,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.1562,11.2534,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.0925,11.0406,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,6.7303,11.2750,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.2733,11.2105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.3578,11.0916,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.2309,11.4343,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.5171,11.2666,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,6.3564,11.2048,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,6.9564,11.1529,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,6.3806,11.2259,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,6.9126,11.2281,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,6.2883,11.1943,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,7.0894,11.6522,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.5023,11.2851,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.4310,11.2247,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.3448,11.2401,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.3008,11.2060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,7.3274,11.1290,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,7.2064,11.1402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,7.1902,11.1340,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,7.3786,11.1077,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,7.2888,11.1552,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.2250,11.1286,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.4043,11.1066,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.3824,11.1940,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.2598,11.1707,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.4166,11.1580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.4655,11.0605,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.0541,11.6973,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.4523,11.1985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.3660,11.1265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.2287,11.1831,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.3727,11.3787,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.2882,11.2453,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.2182,11.2536,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.2652,11.1430,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,7.3490,11.1895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.2713,11.1487,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.2214,12.1196,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.3227,10.8963,0.0570,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.5026,11.1841,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.2367,11.0865,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.2614,11.1007,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.2881,11.2390,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.3180,11.6995,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.3168,11.1908,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,6.3682,11.2322,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,6.1751,11.2640,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.0389,11.2353,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,6.9985,11.2246,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,6.6299,11.1019,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,6.4972,11.1467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.4521,11.1756,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.4650,11.1638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.4707,11.1064,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.6522,11.1150,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.3516,11.0792,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.4621,11.1357,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.4824,11.1426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.3127,11.2178,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.1588,11.7689,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.2864,11.1926,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.2577,11.2840,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.2586,11.2048,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.4315,11.1154,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.2523,11.1240,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.2340,11.1421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.2714,11.2123,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.2514,11.0712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,6.6730,11.1979,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.3630,11.1835,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.3903,11.0732,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.4721,11.1194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.4530,11.2037,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.3273,11.1355,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.3653,11.2380,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.2412,11.6221,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.3083,11.0923,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.4625,11.1552,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.2883,11.1700,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.3149,11.2052,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.2840,11.1700,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.2447,11.1693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.3219,11.1332,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.0128,11.1412,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.1425,11.1240,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.2918,11.1829,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.3033,11.1465,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.2848,11.1974,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.0780,11.1944,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.0271,11.2679,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.0418,11.3156,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.2813,11.6561,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.2130,11.3123,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.3652,11.2370,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.3841,11.1726,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.3274,11.0592,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.2518,11.1502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.3796,11.1215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.3362,10.8223,0.0340,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.2494,11.1236,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.1627,11.1566,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.2359,11.0685,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.2723,11.1497,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.2420,11.1420,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.2880,11.3367,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,6.6048,11.3414,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,6.4760,11.1265,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,6.3966,11.6599,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,6.7966,11.1103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,6.9664,11.0729,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,6.8549,11.1509,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.2705,11.2312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.2710,11.1039,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.3110,11.1401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,7.3966,11.1212,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,7.2554,11.1808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,7.2455,11.1659,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.4550,11.1102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,7.3054,11.1913,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,7.3528,11.1997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,7.3365,11.1979,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.2644,11.1658,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.3448,11.1508,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.2202,11.7161,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.2167,11.1693,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.3738,11.1770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.1803,11.2491,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.4099,11.0787,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.4140,11.1665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.2390,11.1107,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.4524,11.3225,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.2928,11.3690,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.2644,11.1685,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.2546,11.1692,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.2947,11.2429,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,6.5542,11.2256,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.1465,11.1839,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.2331,11.2042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.3055,11.1742,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.2219,11.6293,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.4125,11.1468,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.4096,11.1381,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.2570,11.1508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.3520,11.1183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,7.4255,11.1825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.3621,11.1175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.1893,11.1289,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.4002,11.1059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.3326,11.1605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.1095,11.1705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.1434,11.2381,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.1550,11.1799,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.2777,11.2106,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.1400,11.1521,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.3437,11.2088,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.3357,11.7327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.3705,11.1632,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.3072,11.1498,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.2888,10.9346,0.0284,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.2062,11.1874,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.2212,11.1348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.2305,11.1323,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.1982,11.0581,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.3465,11.1473,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.2256,11.3116,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,6.7062,11.2746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.3638,11.2153,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.3612,11.3743,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.0692,11.2034,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,6.3230,11.2072,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,6.3106,11.1461,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,6.2810,11.6204,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,6.4484,11.0725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,6.3015,11.1163,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,6.9819,11.1317,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.0232,11.1280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,6.9252,11.3612,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,6.9084,11.0736,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.0909,11.1020,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.4242,11.0563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.3605,11.1477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.3337,11.0615,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.4348,11.1404,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.3822,11.1903,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.4965,11.1244,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.2549,11.1922,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.1415,11.0134,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.3117,11.6275,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.3339,11.1366,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.4192,11.0330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.5067,11.1115,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.2718,11.1110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.1323,11.1808,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,7.3385,11.1219,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.2523,11.1743,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.2056,11.0923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.3122,11.0717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.2518,11.1320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.4240,11.1351,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.4437,11.1548,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.3943,11.1705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.4757,11.0321,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.3748,11.0222,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.2920,11.5722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.1606,11.1027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.4379,11.1308,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.4422,11.2253,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,6.8765,11.2444,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,6.9580,11.1491,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,6.8199,11.1845,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,6.9694,11.1428,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,7.3374,11.1058,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.4055,11.1155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,7.2164,11.0217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,7.1715,11.1055,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.2606,11.1414,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.2506,11.0808,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.1682,11.1025,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.txt new file mode 100644 index 0000000..484a3ea --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=3840x2160 +started_at=2026-05-15 13:09:09 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.191 +avg_encode_latency_ms=11.328 +p95_encode_latency_ms=11.669 +max_encode_latency_ms=31.615 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:09:14 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.csv new file mode 100644 index 0000000..f445bfa --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1367,32.5020,0.0392,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.9133,12.6530,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.4804,15.8186,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.3824,19.4480,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.0907,23.4057,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.4518,15.7998,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4831,12.3807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.8481,12.4407,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.9777,12.5650,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.8094,12.4957,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.7749,12.5895,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.8694,12.6663,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8228,12.5175,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8423,12.9802,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.7129,12.7272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8078,12.5378,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.7707,12.5992,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7490,12.4344,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.7795,12.5100,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.7837,12.5264,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.7703,12.4878,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8451,12.7168,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.8401,12.6464,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.9113,12.7460,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.7816,12.5680,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.3261,12.5983,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.4797,12.6388,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.1403,12.6467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.0700,12.5125,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.5094,13.0811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.3572,12.6500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.5599,12.5822,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9671,12.5283,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.8507,12.5313,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,8.1177,12.5744,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.8827,12.6101,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.9617,12.5232,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.7678,12.4015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.0315,12.6140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.7440,12.4860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8270,12.4488,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0950,12.5372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8776,12.5195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8774,12.4586,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8933,12.7008,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8501,13.1086,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.8144,12.5241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9622,12.4571,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8102,12.6463,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.9198,12.4998,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,8.1071,12.5539,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7646,12.5435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.9075,12.4672,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9030,12.4782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.6793,12.4270,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9349,12.5493,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.3241,12.4856,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.2063,12.6843,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.2088,12.5883,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.2939,12.6531,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7152,12.4440,0.0736,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9112,13.1650,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9308,12.5714,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,8.1481,12.5047,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.8878,12.6795,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.9571,12.5240,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8737,12.6348,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.9153,12.4810,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.9741,12.5314,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.0125,12.4870,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.7638,12.4002,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.7017,12.4351,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0169,12.4886,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8423,12.5595,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.7179,12.4142,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8581,12.5657,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,8.0875,12.8559,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7955,13.0500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.7605,12.5833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.7104,12.5540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.7858,12.5404,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7740,12.5795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.7875,12.4843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.7795,12.5617,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.9224,12.5307,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8452,12.5272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.8482,12.4916,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.0120,12.4766,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7159,12.5526,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.9140,12.6315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.7260,12.4536,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.7330,12.4302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.9209,12.4288,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.6189,13.0306,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8320,12.5054,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.6753,12.4672,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.6187,12.4624,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.6773,12.4134,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.8185,12.3932,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.8881,12.4435,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.8350,12.4529,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.7430,12.3536,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.4132,12.6076,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.8740,12.6271,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.8464,12.5985,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8641,12.4860,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7903,12.4355,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.8877,12.4953,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.7482,12.4824,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.9804,13.0764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8651,12.4002,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.7500,12.4825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.9507,12.4394,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.6805,12.5498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.0820,12.5163,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.7765,12.5542,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.8884,12.4636,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.7526,12.4246,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.7391,12.4710,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.9287,12.6942,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.7537,12.4798,0.0674,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,8.3159,12.4819,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.1404,12.4663,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.0495,12.5343,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,8.0037,12.4645,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.0058,13.0495,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.7990,12.4534,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.7886,12.4693,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7809,12.4726,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.7764,12.4412,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,8.1948,12.4746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8786,12.3917,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.8663,12.4394,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.6775,12.4372,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.9187,12.4435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.5268,12.5829,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.8120,12.6050,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.8389,12.5239,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.7432,12.4420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8044,12.5596,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.7961,12.4421,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.9976,13.1046,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8792,12.4253,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.7497,12.4370,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.8009,12.5462,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.6710,12.4522,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7606,12.6036,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8632,12.5186,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.7584,12.4584,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.9959,12.5105,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.9887,12.6031,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7646,12.5278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.9081,12.4885,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8400,12.4321,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8761,12.4456,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.8759,12.4323,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8193,12.4324,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.8795,13.1752,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.7560,12.4428,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.7723,12.5377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.8054,12.4187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.0214,12.4925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,8.0574,12.5334,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.7805,12.5521,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.9119,12.5450,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.8265,12.8103,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8952,12.5676,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.9814,12.9551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.7440,12.4809,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.7903,12.4707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7230,12.3838,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.9253,12.4946,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8972,12.4770,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7499,13.0354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.8806,12.4942,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7728,12.4526,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.9202,12.4752,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.8421,12.4727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.9688,12.5571,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,8.0460,12.4540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8695,12.2573,0.0466,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8410,12.5475,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.7444,12.4894,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.9530,12.4500,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.8898,12.4886,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9037,12.5170,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.8179,12.3915,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.9708,12.4102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,8.0367,12.4552,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.9612,13.0310,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9218,12.7291,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.0177,12.7949,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0483,12.8040,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.0405,12.7725,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,8.0868,12.7092,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.9271,12.6337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.8223,12.5608,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.8042,12.6535,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.8698,12.5525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8306,12.5679,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9218,12.6177,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,8.0735,12.4902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.8484,12.5063,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.3985,12.5593,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.0910,12.4531,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.3456,13.1212,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.6144,12.4763,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.8087,12.5572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.9917,12.5454,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.8664,12.5526,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.8702,12.5771,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.9424,12.5040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.9136,12.4941,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.9531,12.5354,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.8526,12.5462,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9112,12.4551,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.9523,12.5783,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.0091,12.4486,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.9357,12.5505,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.2370,12.4739,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.1222,12.4515,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.9655,13.1422,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.8962,12.5176,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,8.0215,12.6022,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.8809,12.4761,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.8866,12.4382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.7895,12.4624,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.8507,12.4951,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9962,12.7051,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.8500,12.4582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9349,12.4394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.9461,12.4096,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.4013,12.4279,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.2587,12.4962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,8.0036,12.5217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.0740,12.4378,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.6323,12.4999,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.2769,12.9863,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.2625,12.3982,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.6557,12.3897,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.6803,12.2542,0.0259,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.8119,12.5830,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9883,12.4508,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8568,12.4917,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.7740,12.4312,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.9675,12.4484,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.0826,12.4660,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.9897,12.4868,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.9828,12.4190,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.0224,12.4338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.8132,12.4725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9238,12.4837,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.7277,12.4749,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.0017,12.9699,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.0279,12.4284,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.7996,12.6307,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.7322,12.6478,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.8657,12.4693,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.7565,12.4913,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8091,12.4283,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.7425,12.4863,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.9209,12.4945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,8.1805,12.4797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.7160,12.5062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8940,12.4875,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.7977,12.4336,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7507,12.5308,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.8163,12.5183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.9738,12.3798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9855,13.0155,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.0437,12.6545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.9692,12.9319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.8483,12.4504,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8481,12.5280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.8946,12.4032,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.6883,12.3748,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.7005,12.6659,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.2785,12.5916,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.2352,12.5519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.2685,12.5360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.4487,12.5675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9031,12.4449,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8655,12.4648,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.9009,12.5843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.7946,12.5235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.8811,13.1120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8012,12.3963,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.9410,12.3421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.8683,12.3379,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.9881,12.4512,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.8507,12.4314,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.8898,12.5347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.8479,12.5113,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9413,12.4724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.8884,12.4855,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8972,12.3684,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.8016,12.4281,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.8623,12.4817,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8781,12.4341,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.7472,12.6105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.txt new file mode 100644 index 0000000..9a626d1 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=4096x2304 +started_at=2026-05-15 13:09:01 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.828 +avg_encode_latency_ms=12.696 +p95_encode_latency_ms=13.050 +max_encode_latency_ms=32.502 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:09:06 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.csv b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.csv new file mode 100644 index 0000000..6675304 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.csv @@ -0,0 +1,13 @@ +run_index,resolution,fps,bitrate_mbps,prioritize_speed,status,frames_requested,frames_submitted,frames_encoded,failed_frames,avg_generate_ms,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,log,csv +1,4096x2304,60,120,unset,0,300,300,300,0,7.900,12.682,13.059,32.775,4452432,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_4096_2304.csv +1,3840x2160,60,120,unset,0,300,300,300,0,7.291,11.306,11.629,31.100,4153682,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3840_2160.csv +1,3200x1800,60,120,unset,0,300,300,300,0,5.658,11.455,11.274,77.592,3284517,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_3200_1800.csv +1,2560x1440,60,120,unset,0,300,300,300,0,4.654,10.330,10.543,26.319,1170749,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run1_2560_1440.csv +2,4096x2304,60,120,unset,0,300,300,300,0,7.810,12.701,13.047,33.193,4452432,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_4096_2304.csv +2,3840x2160,60,120,unset,0,300,300,300,0,7.184,11.463,11.791,31.051,4153682,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3840_2160.csv +2,3200x1800,60,120,unset,0,300,300,300,0,5.716,11.418,11.250,71.951,3284517,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_3200_1800.csv +2,2560x1440,60,120,unset,0,300,300,300,0,4.837,10.389,10.636,26.347,1170749,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run2_2560_1440.csv +3,4096x2304,60,120,unset,0,300,300,300,0,7.828,12.696,13.050,32.502,4452432,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_4096_2304.csv +3,3840x2160,60,120,unset,0,300,300,300,0,7.191,11.328,11.669,31.615,4153682,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3840_2160.csv +3,3200x1800,60,120,unset,0,300,300,300,0,5.656,11.208,11.249,53.490,3284517,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_3200_1800.csv +3,2560x1440,60,120,unset,0,300,300,300,0,4.601,10.342,10.647,26.290,1170749,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.txt,benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/run3_2560_1440.csv diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.md b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.md new file mode 100644 index 0000000..8d7ec66 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/summary.md @@ -0,0 +1,17 @@ +# Single Stream Stability Matrix + +- Duration per run: `5` seconds +- Repeats per resolution: `3` +- Cooldown between cases: `3` seconds +- Codec: HEVC +- Source: synthetic NV12 +- Bitrate/DataRateLimits: `120 Mbps` +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Prioritize speed: `unset` +- Main table: `summary.csv` +- Aggregate: `aggregate.md` + +## Intent + +This isolates single-stream sender latency variance for 4096x2304, 3840x2160, +3200x1800, and 2560x1440 before choosing wired or wireless fallback profiles. diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/system_profile_sanitized.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/system_profile_sanitized.txt new file mode 100644 index 0000000..a82dfed --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/system_profile_sanitized.txt @@ -0,0 +1,52 @@ +Hardware: + + Hardware Overview: + + Model Name: MacBook Pro + Model Identifier: MacBookPro18,4 + Model Number: Z15H000RNKH/A + Chip: Apple M1 Max + Total Number of Cores: 10 (8 performance and 2 efficiency) + Memory: 32 GB + System Firmware Version: 10151.140.19 + OS Loader Version: 10151.140.19 + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + Sidecar Display: + Resolution: 2360 x 1640 + UI Looks like: 1180 x 820 @ 60.00Hz + Framebuffer Depth: 24-Bit Color (ARGB8888) + Mirror: Off + Connection Type: AirPlay + Virtual Device: Yes + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported diff --git a/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/video_encoders.txt b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/video_encoders.txt new file mode 100644 index 0000000..c49a7c2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x141e28be0>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/aggregate.md b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/aggregate.md new file mode 100644 index 0000000..a87a5d4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/aggregate.md @@ -0,0 +1,8 @@ +# Single Stream Stability Aggregate + +| Resolution | Runs | Avg of avg ms | Best p95 ms | Median p95 ms | Worst p95 ms | Worst max ms | Pass p95 <=16.67 | +|---|---:|---:|---:|---:|---:|---:|---:| +| 4096x2304 | 3 | 12.725 | 13.017 | 13.087 | 13.176 | 35.667 | 3/3 | +| 3840x2160 | 3 | 11.333 | 11.659 | 11.668 | 11.719 | 31.184 | 3/3 | +| 3200x1800 | 3 | 11.373 | 11.168 | 11.218 | 11.376 | 74.588 | 3/3 | +| 2560x1440 | 3 | 6.156 | 6.431 | 6.455 | 6.472 | 23.784 | 3/3 | diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/metadata.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/metadata.txt new file mode 100644 index 0000000..1431937 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/metadata.txt @@ -0,0 +1,11 @@ +timestamp=2026-05-15_1309 +duration_seconds=5 +repeats=3 +cooldown_seconds=3 +bitrate_mbps=120 +prioritize_speed=on +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +hostname=Gabriels-MacBook-Pro.local +hw_model=MacBookPro18,4 +cpu=Apple M1 Max +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.csv new file mode 100644 index 0000000..024d130 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9494,23.7843,0.0290,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0045,5.8965,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.0892,6.2450,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,3.5261,5.9590,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.4362,5.8987,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.3425,5.9529,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.6953,6.0945,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.6951,6.1010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.6129,5.8444,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.6800,5.8208,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,4.0208,5.8684,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,4.1412,6.0144,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,4.0730,5.8932,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,4.0765,6.0136,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,4.2453,6.2305,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.8647,6.0913,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.0550,5.9721,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,4.0248,5.8620,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,2.8945,6.0014,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,2.8208,5.8205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,2.9715,5.8749,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,4.1646,5.9641,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,4.7696,6.0253,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.2061,5.8488,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,5.5126,5.9139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,5.0381,6.0517,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,5.0512,5.8877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,5.3371,5.9268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,5.1440,5.9614,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,5.2078,6.1474,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,5.0560,6.0319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,5.3643,6.0729,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,5.3315,6.0142,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,5.6447,6.0456,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,5.3207,6.3529,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,5.3695,6.0874,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,4.9743,6.0972,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.4199,6.0517,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,5.0054,5.9123,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,5.0801,5.8698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,4.7853,5.9951,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,4.9222,5.8626,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,4.9442,5.8866,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,4.8602,6.1684,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,5.1126,5.9227,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,4.9377,6.1935,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,4.7249,6.0485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,4.8079,6.0403,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,4.9786,6.1023,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,5.2208,6.1501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,5.0279,5.8686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,4.8391,5.9885,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,4.7605,6.1918,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,4.9541,6.1403,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,5.1125,6.9597,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,4.6789,6.2850,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,4.7784,6.2483,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,4.6086,6.1344,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,4.9268,6.0785,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,4.9314,6.0843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,4.8736,6.1072,0.0651,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,4.7308,6.5367,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,5.0735,6.2432,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,5.1497,6.1876,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,5.0117,6.1783,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,4.5875,6.1626,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,5.0060,6.2634,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,4.7845,5.9889,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,4.7343,6.2135,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,4.6569,6.0367,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,4.7808,6.1745,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,5.0585,6.0760,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,4.7652,6.0328,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,4.7344,5.9307,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,5.0623,6.6542,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,4.9399,6.3090,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,4.5832,6.2108,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,4.8247,6.8787,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,4.2901,6.4573,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,3.6407,6.1757,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,3.7061,5.8700,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,3.7949,6.0336,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,4.1325,5.9236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,4.1835,5.9058,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,4.5690,6.0241,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,4.5120,5.9348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,4.5347,5.8807,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,4.5623,5.8864,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,4.5643,5.9082,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,4.4793,6.0818,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,4.5672,5.9625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,4.6705,6.1609,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,4.7369,6.1673,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,4.6918,6.4107,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,4.8727,6.1760,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,4.7655,6.1797,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,4.7078,6.1253,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,4.8962,6.1022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,4.8647,5.9185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,4.8080,6.2357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,4.8886,6.0390,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,4.8495,6.0254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,4.8890,5.9160,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,4.8412,6.2035,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,4.5850,6.1317,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,4.5352,5.8677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,4.5189,5.8227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,4.5240,5.8326,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,4.4976,5.9019,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,4.7782,6.1403,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,4.8572,6.0066,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,4.8494,5.9853,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,4.9093,6.0222,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,4.6773,5.9938,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,4.9783,6.9024,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,5.1224,6.4002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,4.8334,6.1484,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,4.8119,6.0458,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,5.0162,6.1312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,4.9497,5.9662,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,4.8450,6.1166,0.0517,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,4.9632,6.3807,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,4.9124,6.2839,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,4.9663,6.1510,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,4.8219,6.1575,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,4.7135,6.3373,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,4.5795,6.2580,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,4.7130,6.4550,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,4.7466,6.0831,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,4.8253,6.1117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,4.7627,6.1728,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,4.9480,6.0867,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,4.9059,6.1535,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,5.0397,6.0278,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,4.6768,6.1389,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,4.9403,6.0728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,4.5867,5.9676,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,4.7475,6.1155,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,4.7347,6.1289,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,4.9410,6.1811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,4.9097,6.0079,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,4.8318,6.1271,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,4.6475,6.1371,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,4.7590,6.5250,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.9790,6.5202,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,4.2426,6.0646,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,4.5020,6.0940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,4.5820,5.9677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,4.6612,5.9924,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,4.6857,5.8658,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,4.5907,6.0703,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,4.7276,6.2846,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,4.8081,6.2922,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,4.7575,6.1520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,4.7489,6.1955,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,4.7748,6.0590,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,4.8350,6.2151,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,4.8907,6.4345,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,4.6610,5.9843,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,4.8408,6.2652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,4.9410,6.1664,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,4.8890,6.0922,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,4.8717,6.0909,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,4.7678,6.1950,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,5.0740,6.0128,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,4.9900,5.9851,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,4.8669,6.2167,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,4.9328,6.1090,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,4.5785,6.0572,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,4.8117,6.6279,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,4.6834,6.0981,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.8480,6.0177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,4.5908,6.0980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,4.5985,6.2172,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,4.4784,6.0189,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,2.9466,5.8589,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,2.9280,5.7895,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.2377,5.8452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.3710,5.9352,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.7643,5.8802,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +180,3.9249,5.9164,0.0245,0.0000,0,0,0.0000,0,0.0000,0,1,0,147037,0 +181,5.0846,6.0390,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7440,0 +182,5.1181,6.1139,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15187,0 +183,5.1098,5.9341,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,25141,0 +184,5.1410,6.0848,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +185,5.1343,5.9914,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,25012,0 +186,5.1955,6.2748,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,20272,0 +187,5.0786,6.1147,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8821,0 +188,5.0419,6.2008,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,24616,0 +189,4.7743,6.1244,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4094,0 +190,5.2836,6.2665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4088,0 +191,4.8793,5.9773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +192,4.8757,6.1272,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,30389,0 +193,5.0115,6.0821,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +194,4.7726,6.1185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +195,5.3032,6.2830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +196,5.2158,6.1420,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8455,0 +197,4.8227,6.1104,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +198,4.8887,6.2114,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +199,4.7725,6.0762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +200,4.8798,6.0209,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8287,0 +201,4.9106,6.0186,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +202,4.9748,6.4301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +203,4.8716,6.0768,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +204,4.6950,6.3152,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,7551,0 +205,4.8035,6.2718,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +206,4.6622,6.0901,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +207,3.1244,5.9119,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +208,2.9028,5.7151,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8365,0 +209,3.4952,5.7644,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +210,3.0190,6.0572,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +211,2.8375,5.8046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +212,2.9965,5.9339,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8856,0 +213,3.4468,5.9061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +214,4.6821,5.8345,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +215,4.6027,5.8921,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +216,5.8301,6.0437,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +217,5.8206,5.9827,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +218,5.5862,5.9338,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +219,5.4691,6.0386,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +220,5.1328,6.0755,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7870,0 +221,5.1935,6.4248,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +222,5.3705,6.0361,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +223,5.3596,6.1428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +224,5.1377,5.9734,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +225,5.1958,6.3003,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +226,4.8627,5.9945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +227,5.4232,5.9759,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +228,5.2829,5.9447,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9118,0 +229,5.0429,6.0776,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +230,5.0693,6.0282,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +231,5.1590,6.1341,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +232,5.1932,6.1120,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +233,4.8537,6.1340,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +234,5.0746,6.5273,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +235,4.7453,6.5028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +236,4.7289,6.2364,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +237,4.6037,6.3498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +238,4.5937,6.0950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +239,3.4902,5.9610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +240,2.8854,5.7010,0.0204,0.0000,0,0,0.0000,0,0.0000,0,1,0,119857,0 +241,3.6888,5.9397,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11196,0 +242,4.3895,5.9852,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10231,0 +243,3.4663,5.8080,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15790,0 +244,4.1037,5.9434,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,31337,0 +245,5.1413,5.9384,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,23740,0 +246,4.9088,5.8893,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19438,0 +247,5.0286,5.9602,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,10961,0 +248,5.1080,6.1355,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,26655,0 +249,5.0445,6.0052,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,7038,0 +250,5.0421,6.0014,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4915,0 +251,5.1022,5.8938,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4067,0 +252,5.2803,6.0877,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21791,0 +253,5.0060,6.4428,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +254,4.7070,6.0856,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +255,4.9262,5.9562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +256,4.8228,5.9455,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22249,0 +257,4.8784,5.9423,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,631,0 +258,5.1350,5.9855,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +259,4.9113,6.1579,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +260,5.0512,6.0007,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +261,4.9995,6.0317,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +262,4.9127,6.0613,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +263,4.8781,6.1194,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +264,4.9461,6.0523,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +265,4.8682,6.3604,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,5.0728,6.0996,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +267,4.1531,6.0814,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +268,4.2219,6.0466,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,3.0972,6.1038,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +270,3.5311,5.9979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +271,3.1772,5.9164,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +272,3.0060,5.9097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8400,0 +273,4.6355,6.0540,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +274,3.0439,5.7874,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +275,4.4798,5.8244,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +276,3.3712,5.8333,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8889,0 +277,3.5495,5.9661,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +278,4.7218,5.9744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +279,4.7297,5.8231,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +280,5.7592,5.9306,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +281,5.8502,6.1482,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +282,5.8935,5.9822,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +283,5.5468,6.0045,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +284,5.6050,5.9446,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7902,0 +285,5.3200,6.3246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +286,5.3838,5.9832,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +287,5.7176,6.5052,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,813,0 +288,4.9442,6.4611,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6947,0 +289,5.1235,6.4025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +290,5.0995,6.1130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +291,4.9674,6.0442,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +292,4.9399,6.0233,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9123,0 +293,4.7982,6.3847,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +294,5.0885,6.7930,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +295,5.0019,6.4174,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +296,4.6235,6.3723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8314,0 +297,4.6227,6.1133,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +298,4.6321,6.1593,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +299,4.6860,5.9906,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.txt new file mode 100644 index 0000000..4ebd931 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=2560x1440 +started_at=2026-05-15 13:10:05 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.650 +avg_encode_latency_ms=6.147 +p95_encode_latency_ms=6.455 +max_encode_latency_ms=23.784 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2229186 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:10:10 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.csv new file mode 100644 index 0000000..6d8a385 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.3764,68.9534,0.0340,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,5.0064,31.4689,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.8637,34.1722,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.7813,36.8267,0.0188,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.4758,34.1023,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,5.7465,22.8341,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,5.2675,14.1913,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,6.1550,10.7845,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.6432,10.9944,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,6.5427,10.9230,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,6.8091,11.2878,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,6.2522,11.1473,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.2150,11.5940,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,4.5883,11.0558,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,4.5740,10.8690,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,4.5704,11.1322,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.0816,11.6827,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.2717,10.9013,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.2705,10.9625,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.4276,10.8229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.5418,10.6894,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.5241,10.9363,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.2773,10.8768,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,4.9544,10.7758,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.0158,10.8708,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,4.7758,10.8332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,4.5947,10.8850,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,4.5971,10.7842,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,4.8249,11.2432,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.0469,10.7908,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,4.6262,10.7602,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,4.7988,11.1795,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.0025,11.8836,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,4.9800,10.9419,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.2841,10.9691,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,4.6485,10.8257,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,4.9607,11.1440,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,4.9663,10.8640,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.7811,10.8027,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.7113,10.8003,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,5.6406,10.7535,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.6460,10.6159,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6207,10.7488,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.6870,10.8713,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.7083,11.1255,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.7271,10.9162,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.6739,10.8380,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.7388,10.6932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.6749,10.6724,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.6703,10.8532,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.6274,10.9815,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.6840,10.8899,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.7192,10.8540,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.6442,10.6906,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.9563,10.8845,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,6.0172,10.9707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.8502,11.0157,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.7855,10.7975,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.6880,10.7822,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.8122,11.0123,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.8492,11.1557,0.0632,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.8323,10.7998,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.7276,10.9025,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.7683,11.2292,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.4893,11.2192,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,5.7248,10.8987,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,5.6007,10.8902,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,5.6600,10.7525,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,5.7482,10.9838,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,5.6734,11.0054,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,5.7073,10.8504,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,5.8638,11.1445,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.7137,11.0608,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.7752,10.7372,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.8181,10.9257,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.7306,10.9410,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.7584,11.3713,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.8652,11.0133,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.7089,10.8627,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.8820,10.9488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.6649,11.2406,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.7446,11.0853,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,4.9069,10.7488,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.6889,10.7744,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.8115,10.8160,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.6657,11.0723,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.7438,10.9958,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.8099,10.9843,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.7106,10.6765,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.6606,10.9067,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.6486,10.8851,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.5727,10.5995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.6159,11.1299,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.8406,11.0458,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.8685,11.1743,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,8.2777,11.2431,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.5810,11.6213,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.3072,10.6032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.1942,10.9220,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,5.4958,10.9190,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.4701,10.7485,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.5521,10.7131,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.4414,10.5901,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.5607,10.5951,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.6840,10.6472,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.7928,10.7765,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.6239,10.9193,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.7770,10.7156,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.5551,11.0623,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.5483,10.9649,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.5745,11.0698,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.7544,10.7152,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.6543,10.9547,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.6858,10.7431,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.6300,10.8430,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.7805,10.6945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.6725,10.5778,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.6548,10.7133,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.7928,10.8767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.7297,10.8477,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6393,10.4569,0.0548,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.6863,10.7054,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.6879,10.6613,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.3430,10.8586,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.7765,11.5017,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.7324,10.9788,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.7684,10.6384,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.7799,10.9200,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.8188,10.7213,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.7473,10.6339,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.6013,10.8506,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.5760,10.6772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.6422,10.9584,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,5.7243,10.7358,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.6526,10.7269,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,5.6177,10.8162,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.7114,10.8060,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.7483,10.7463,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.6603,10.7861,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,6.1235,10.6082,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.8212,11.2501,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,6.0135,10.6341,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,6.0659,10.6281,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.9514,10.6565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.8083,10.6930,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.6894,10.8578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.9955,10.7985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.7328,10.7722,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.9615,10.5077,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,4.3599,10.7493,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,4.4115,11.0401,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,4.3532,10.7252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,4.3686,10.7122,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.0226,10.6835,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,6.4078,11.1030,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,4.8059,10.9840,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.7266,11.7450,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.4827,10.7801,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,6.1030,11.1330,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,4.9647,10.8416,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,6.0383,10.7570,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,6.9758,10.6640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.7727,10.5990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.8718,10.6544,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,6.0228,10.6864,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.7867,10.7192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.9221,10.9362,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,6.2356,10.8133,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,6.0570,11.0677,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,6.2328,10.5757,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.8952,10.7583,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.6813,10.8797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,6.1864,11.4830,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,6.2113,10.7977,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.8655,10.7288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,6.3364,10.7889,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,6.2155,10.7166,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.8302,10.7390,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.8954,11.0223,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,6.2021,11.0452,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,6.2680,10.7908,0.0585,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,6.0719,10.8319,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,6.1740,10.8474,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,6.1137,11.0508,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,4.7628,10.9749,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.5232,10.6657,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.3502,10.9957,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.6422,10.7317,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.6734,11.0605,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.6381,10.6014,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,4.6445,10.7323,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,4.6113,10.4676,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,4.6189,10.7005,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,4.9129,10.6227,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.0909,10.5610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.6562,10.7070,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.9201,10.7245,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.1843,10.8304,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.6168,10.5258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.7802,10.5213,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.5971,10.6920,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.6863,10.5335,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.6457,10.7011,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.7084,11.1092,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.8598,11.4669,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.0696,10.9114,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.3783,10.8213,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.4890,11.1451,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,5.6046,10.7960,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,5.6656,10.9234,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.6584,10.7484,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.6532,10.7917,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.6470,10.7316,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,6.0698,10.6981,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,6.1305,10.7016,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,6.1049,10.8929,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,6.0251,10.6880,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,6.0575,10.7403,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,6.0966,10.6694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.9001,10.7000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.9432,11.0088,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.9224,10.6420,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.7721,10.8500,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.6375,11.0160,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.8821,10.9154,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.8220,10.6219,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.7789,10.7305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,6.1684,10.8375,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,6.1044,10.6521,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,6.0413,10.5855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.9252,10.6385,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.7907,10.8236,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.7324,10.7156,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.6463,10.7729,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.6072,10.5604,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.8640,10.9733,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.7608,11.1602,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.5931,10.7045,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.6693,10.7075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,5.6401,10.5873,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,5.6887,10.6572,0.0292,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,5.6220,10.9160,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,5.6381,10.6339,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,5.6068,10.8472,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,4.6292,10.7416,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.4649,10.9549,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.6711,10.8002,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,5.6442,10.9866,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,5.6407,10.7688,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,5.7033,10.7648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,5.6219,10.6192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.2043,10.8592,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,4.5202,11.1660,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,4.5561,10.8764,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,4.5472,10.6535,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.2793,11.0273,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.7532,10.9681,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.6804,10.9428,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.7200,11.0579,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.7585,10.9549,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.6247,11.0888,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.7319,10.8401,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,5.6302,10.7525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.6108,11.1560,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,5.6501,11.1755,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.7512,11.0219,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.7805,10.9383,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.7227,10.9395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.6855,11.0769,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.7075,10.6867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,5.7836,10.6928,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,5.6438,10.7311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.5842,10.8229,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.6124,10.9007,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.6857,10.7641,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.6327,11.0668,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.5883,10.7441,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.6032,10.4956,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.9742,10.7905,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,6.0382,10.7982,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.6745,10.7285,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,6.3630,10.9534,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,6.3804,10.8929,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.8716,10.8079,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.6177,11.0052,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.5819,10.7060,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.6025,10.5542,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.6158,10.7091,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.5623,11.0047,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.6365,10.7135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.7935,10.5176,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.6932,10.7232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.6950,10.6692,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.9522,10.7561,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,6.0667,10.5824,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.8784,10.8049,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.9203,10.5708,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.9653,10.6687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.7555,10.6342,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.5726,10.6570,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.txt new file mode 100644 index 0000000..1b19207 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=3200x1800 +started_at=2026-05-15 13:09:57 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.631 +avg_encode_latency_ms=11.411 +p95_encode_latency_ms=11.376 +max_encode_latency_ms=68.953 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:10:02 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.csv new file mode 100644 index 0000000..1e97b35 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.3250,31.0972,0.0378,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.8828,11.2230,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.5677,14.5616,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.3580,17.8641,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.6951,13.9161,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.8183,11.3011,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,7.0034,11.2744,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,7.0083,11.2233,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.8900,11.1736,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.2714,11.0714,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.2210,11.1873,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.2748,11.1423,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.1306,11.3607,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,6.8193,11.8474,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,6.8188,11.2603,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,6.7430,11.2553,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.0615,11.3315,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,6.9825,11.1915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,6.9063,11.1237,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.5179,11.1591,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.7761,11.1863,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.5485,11.0893,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.5520,11.1470,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.3726,11.0962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.2390,11.1572,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.1410,11.1728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,6.9375,11.2174,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,6.9375,11.1519,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.1303,11.1463,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.3991,11.5573,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.4052,11.1784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.2603,11.2055,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.2606,11.3478,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.3555,11.1295,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.4091,11.0856,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.2686,11.3269,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.1509,11.2170,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.3202,11.2009,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.6133,11.1561,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.1257,11.1431,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,7.2430,11.1783,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,6.3095,11.2356,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,6.8680,11.1524,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,6.6231,11.2081,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,6.5001,11.1696,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,6.8318,11.7662,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,6.8615,11.4005,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.4499,11.2298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.4696,11.1244,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.4515,11.1670,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.0034,11.3102,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,6.8933,11.1894,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.0142,11.2129,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.1106,11.1222,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.3954,11.1613,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.0983,11.1438,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.2837,11.1332,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.2277,11.0994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.2489,11.1516,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,7.2630,11.1363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,7.2683,10.9010,0.0708,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,7.2557,11.6678,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.2200,11.3195,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,7.0414,11.2362,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.3205,11.2109,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.0623,11.1229,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.2686,11.1500,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,7.0504,11.1255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.3250,11.3871,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,7.1465,11.0674,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.3946,11.1508,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.0903,11.0915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.1938,11.3972,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,6.9879,11.1672,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,6.9235,11.1832,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,6.3670,11.1786,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,6.2454,11.1415,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,6.8459,11.8057,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,7.1188,11.1885,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,6.7407,11.1941,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,6.8355,11.1601,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.3537,11.2058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.4424,11.1050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.3515,11.1725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.2702,11.2347,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.1980,11.2842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.3101,11.1527,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.4945,11.2318,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.4919,11.1961,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.2204,11.1913,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.2535,11.2699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,7.2610,11.2680,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,7.4098,11.4287,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,6.9593,11.9336,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.0832,11.2719,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,6.7365,11.1722,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,6.7983,11.2243,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.1717,11.1744,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,6.9713,11.2151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,6.7748,11.2052,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.9464,11.1132,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,7.5653,11.2293,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,7.3777,11.3767,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.2459,11.1746,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.4479,11.1903,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.6010,11.1707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.3730,11.1872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.3917,11.1597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.0569,11.2302,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.2953,11.7206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.2511,11.2242,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.3305,11.1856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.4251,11.1719,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.5755,11.1593,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.4448,11.1867,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.3476,11.2335,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.5266,11.0774,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,7.4509,11.2831,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.4893,11.2622,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.3108,11.1024,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.2895,10.9251,0.0649,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,6.8814,11.2603,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.0003,11.2142,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.2518,11.2098,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.3732,11.2136,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.3220,11.6355,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.3125,11.1654,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.2351,11.1602,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.2375,11.2179,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.3974,11.2785,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.2857,11.1963,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.2537,11.1491,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.3676,11.2968,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,6.8177,11.2453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.0498,11.1352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.1191,11.2353,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.2940,11.2100,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.1489,11.2983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.3139,11.3174,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.3076,11.2725,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.1730,11.1478,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.3501,11.6785,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.2881,11.1384,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.2115,11.1255,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.0954,11.0984,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.2446,11.1632,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.1347,11.1342,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.2660,11.1044,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.2861,11.1221,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.2544,11.1049,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.1503,11.1140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.3754,11.2271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.3729,11.2425,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.1133,11.1559,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.2178,11.1711,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.2893,11.1575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.2503,11.1836,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.2414,11.6772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.1633,11.0912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.2122,11.0469,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.2592,11.1065,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.3502,11.1342,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.2957,11.0650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.3984,11.1155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.1846,11.0496,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.2079,11.1740,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.2430,11.1873,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.0867,11.4022,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.0680,11.1272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.1509,11.1853,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.3758,11.1233,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.0312,11.2361,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.3134,11.2113,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.3745,11.7656,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.2824,11.2307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.0606,11.3657,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.3970,11.3210,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.2718,11.1628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.2509,11.1439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.1631,11.2052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.4241,10.9079,0.0590,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.2032,11.2968,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.2108,11.1513,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.2793,11.1830,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.2172,11.1777,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.3837,11.1467,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.5097,11.1946,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.3511,11.1499,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.4276,11.1263,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.4971,11.5707,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.4128,11.1573,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.1748,11.0990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.3057,11.2871,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.0788,11.3175,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,6.8944,11.2016,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.4181,11.1800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,7.3223,11.1746,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,7.2855,11.2839,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,7.2699,11.2341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.1349,11.1160,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,7.2890,11.1421,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,7.1853,11.1241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,7.2466,11.2020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.1713,11.1928,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.4570,11.2451,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.3162,11.7899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.3750,11.1854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.3176,11.1246,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.3128,11.2009,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.3740,11.1865,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.4676,11.2378,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.3339,11.1491,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.1064,11.0645,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.3254,11.1695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.2359,11.3073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.1562,11.1204,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.4018,11.1514,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.1816,11.0369,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.3248,11.0288,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.1387,11.1130,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.4276,11.1436,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.2858,11.6926,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.3518,11.1038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.3398,11.1377,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.1849,11.1612,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.2902,11.1057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,7.2065,11.0788,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.1625,11.1490,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,7.5101,11.2183,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.4396,11.2425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.2111,11.1547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.3960,11.1531,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.3909,11.1501,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.3799,11.1252,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.2574,11.2196,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.1525,11.2252,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.3085,11.2392,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.3202,11.6446,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.2555,11.1595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.1826,11.1232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.3321,10.9481,0.0296,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.1669,11.1132,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,6.9859,11.1267,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.2103,11.1121,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.2535,11.0668,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.1643,11.1465,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.2613,11.0762,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,7.2436,11.0569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.3228,11.1362,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.4461,11.0825,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.3720,11.1500,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.2591,11.1771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.4881,11.3160,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,6.9872,11.8071,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.2197,11.1649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.3738,11.1619,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,7.3722,11.1878,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.1833,11.2950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.3472,11.2010,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.1582,11.0825,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.2300,11.1593,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.2909,11.2220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.2538,11.1561,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.2730,11.1211,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.3482,11.2150,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.4383,11.2215,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.0638,11.1355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.3493,11.1155,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.2134,11.2001,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.3662,11.5861,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.3522,11.1925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.2130,11.2348,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.3683,11.1650,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.3626,11.1568,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.4191,11.2194,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,7.6595,11.3440,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.3322,11.2743,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.2858,11.2377,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.2176,11.2059,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.4551,11.1506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.0402,11.1437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.3432,11.0735,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.2107,11.2282,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.4051,11.1019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.4378,11.1111,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.4011,11.6468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.1452,11.1320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.4192,11.2116,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.3291,11.2039,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.3518,11.1182,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.3740,11.1012,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.5037,11.1200,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.1300,11.1473,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,7.3470,11.0832,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.2915,11.1758,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,7.1189,11.1789,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,7.5698,11.4798,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.3605,11.1154,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.6081,11.1861,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.3546,11.1969,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.txt new file mode 100644 index 0000000..4760393 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=3840x2160 +started_at=2026-05-15 13:09:49 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.230 +avg_encode_latency_ms=11.321 +p95_encode_latency_ms=11.668 +max_encode_latency_ms=31.097 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:09:54 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.csv new file mode 100644 index 0000000..f4562b4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.2112,35.6672,0.0412,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.9824,12.7215,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.5498,15.9090,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.4043,19.2355,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.3181,22.7320,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.5258,19.8978,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.3670,14.4505,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.4501,12.6440,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.5669,12.7005,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.5109,12.6508,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.3477,12.7082,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.6134,12.7103,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.4840,12.6649,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.3984,13.2475,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.4858,12.6434,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.2414,12.6698,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.9398,12.3913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8218,12.5280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.7444,12.3836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.7909,12.5218,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9942,12.4197,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.9396,12.4772,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.4067,12.5850,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.7705,12.3586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.7777,12.4328,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.7510,12.4038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.2582,12.4921,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.0045,12.4646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.2632,12.3885,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8247,13.0001,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,8.0108,12.4273,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.6239,12.4497,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,8.0117,12.5159,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.7364,12.5324,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9302,12.4928,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.8148,12.4787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8417,12.4844,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.7648,12.5292,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.8193,12.5160,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.7655,12.3987,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.7553,12.4415,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.8443,12.4705,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8564,12.5112,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9419,12.4162,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.9917,12.4821,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8802,12.9988,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.9403,12.4144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,8.0189,12.5842,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.9077,12.5036,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.8805,12.4294,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.9342,12.4620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7920,12.4116,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.0304,12.6827,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.8033,12.4981,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.8263,12.4045,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.8318,12.4652,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.9528,12.4238,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.6516,12.4190,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.7385,12.4788,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.6143,12.5873,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8696,12.2651,0.0710,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.6855,12.9353,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.7614,12.4495,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9809,12.4177,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.7684,12.3845,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.7803,12.3795,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.7179,12.4682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.8021,12.4129,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.8887,12.4482,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.8726,12.4191,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.7731,12.3699,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.9200,12.4670,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.8185,12.5297,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7620,12.4278,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,8.1352,12.4627,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.9685,12.4053,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8307,12.4475,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.8414,12.9347,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.6747,12.4126,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9572,12.4879,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.7770,12.4031,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7867,12.5085,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.9512,12.7796,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.3895,12.5495,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.6060,12.4166,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.5124,12.5488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.4899,12.5020,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.8210,12.4667,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7513,12.5947,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.9803,12.5448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,8.0550,12.5063,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.0664,12.4222,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.8927,12.3987,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.3539,13.1602,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8637,12.6385,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8016,12.5468,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.4463,12.4759,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.5007,12.4826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.6130,12.4656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.6740,12.5578,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.8024,12.3686,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.7560,12.4445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.9088,12.4660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.8501,12.4114,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7693,12.4200,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.9325,12.3817,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.9223,12.3876,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.7566,12.5315,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,8.0126,12.4850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8485,13.1238,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.7469,12.4614,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.0027,12.4440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.8796,12.5380,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8463,12.5127,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8553,12.5115,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,8.0444,12.4525,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.6918,12.4491,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,8.0688,12.4174,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.8018,12.4624,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,8.1136,12.4502,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8281,12.1143,0.0668,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7844,12.4866,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.9166,12.5863,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.8127,12.5435,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.2826,12.6403,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.4927,13.1807,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.3033,12.5243,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.3683,12.7991,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.3004,12.7745,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.5715,12.6601,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.3621,12.6285,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.3875,12.6231,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.5456,12.6211,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.2202,12.5387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.4993,12.4443,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.6287,12.3857,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.6240,12.3468,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.6314,12.3756,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.6112,12.3905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8308,12.3927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.9831,12.4669,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,8.1611,13.0423,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.7209,12.6595,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.4244,12.4769,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.4623,12.4977,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.5100,12.5375,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.6626,12.3995,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.5323,12.4390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.7083,12.4936,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,8.0056,12.4691,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.9455,12.3950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.9509,12.3470,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.1202,12.5171,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.7462,12.4334,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8670,12.4600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.8599,12.5084,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8264,12.5134,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.8052,13.0763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.8128,12.5468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.7290,12.4099,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.6779,12.4929,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8914,12.4750,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7668,12.4536,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8127,12.4150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.7503,12.4726,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.7568,12.3912,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8998,12.4367,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.8534,12.5152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.7216,12.4423,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.8567,12.5035,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8248,12.3949,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.7778,12.4184,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.9017,12.4525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7938,13.1672,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7210,12.4097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,8.2839,12.5052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8854,12.5063,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.0286,12.4470,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.9060,12.4677,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8873,12.5373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.7189,12.2195,0.0401,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.0874,12.5067,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9772,12.3997,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.9003,12.4150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.8427,12.4069,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7317,12.4602,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.7997,12.4241,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.8030,12.4738,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.7322,12.5995,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.7568,13.0088,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.7631,12.4721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.7346,12.3808,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.7411,12.4932,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.7503,12.3468,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.6220,13.6870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8742,12.3148,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7235,12.3780,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.8121,12.4033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.7052,12.3603,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8434,12.3799,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.8224,12.5152,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.9778,12.4845,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7404,12.3476,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8135,12.4738,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.7624,12.4415,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.7525,12.9433,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.1205,12.3386,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.4898,12.4453,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.5762,12.4229,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.5952,12.4352,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.8377,12.5470,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.4608,12.3700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,8.3335,12.3950,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.0160,12.5133,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.2518,12.5426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.7634,12.4593,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.8052,12.4415,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.8092,12.4582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7659,12.4808,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.7795,12.5264,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.1503,12.4439,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.7454,12.9802,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,8.0378,12.3737,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,8.0384,12.4948,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.2555,12.7259,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.8717,12.5502,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0200,12.4170,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.0743,12.3837,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,8.0850,12.5488,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.8634,12.4128,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,8.0105,12.5170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.9410,12.4563,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9196,12.4038,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.8652,12.4774,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8769,12.4725,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.1620,12.4675,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,8.3532,12.4171,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,8.2675,13.0175,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.0959,12.4464,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.0049,12.4633,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.8600,12.3385,0.0260,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.8894,12.4850,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.8074,12.3755,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8140,12.4044,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.9016,12.3867,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8694,12.5575,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.8685,12.4543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8200,12.4081,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.8215,12.4373,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.1096,12.4397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.6916,12.4448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9167,12.4236,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.8951,12.4081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.8037,12.9794,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8273,12.4560,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.7412,12.3155,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,8.1694,12.4863,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.2245,12.4500,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.0114,12.4640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8958,12.4633,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.8345,12.4487,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.1294,12.4396,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6652,12.6045,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.1643,12.5216,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,6.9975,12.4292,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.3087,12.4805,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.6593,12.4673,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.8762,12.4353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.5273,12.4735,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9665,12.9479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.7711,12.3778,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.9062,12.4731,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.7603,12.4681,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9086,12.5285,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.9755,12.5366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.6773,12.4563,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8126,12.4915,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.8694,12.4844,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.6958,12.3911,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.0805,12.4600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.7520,12.4636,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9703,12.6009,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.7637,12.6172,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.4634,12.4709,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.2615,12.4525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.2125,13.0178,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.6840,12.4437,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.4569,12.3194,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.8070,12.3845,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.1443,12.4425,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.8700,12.4792,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.9532,12.3773,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.8870,12.4473,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.8344,12.4426,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,8.0096,12.4259,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.9253,12.4197,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.1570,12.5005,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.7854,12.4575,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8305,12.4199,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.8267,12.6077,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.txt new file mode 100644 index 0000000..d8c41ae --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=1 +resolution=4096x2304 +started_at=2026-05-15 13:09:41 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.790 +avg_encode_latency_ms=12.686 +p95_encode_latency_ms=13.017 +max_encode_latency_ms=35.667 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:09:46 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.csv new file mode 100644 index 0000000..f06bfec --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8987,23.5518,0.0243,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0435,6.1033,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.0283,6.1594,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,3.0979,6.0531,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.4062,5.9682,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.6980,6.0174,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.6518,5.8680,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.6630,5.8571,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.8973,5.9342,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,4.0046,6.0897,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,4.1107,5.9636,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,4.0442,6.0871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,4.3110,6.0281,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,4.2535,6.1939,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,4.2433,5.9905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,4.5945,6.0605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,4.6609,6.3843,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,4.1701,5.9912,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,4.0763,5.9295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,4.1009,5.8701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,4.0542,5.9567,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,4.4045,5.9428,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,4.3195,5.9692,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,4.4028,5.9826,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,4.8116,6.0958,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,4.5172,6.1400,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,4.8557,6.1738,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,4.8876,6.1841,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,4.6423,6.0140,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,4.8019,6.1277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,4.7438,6.0565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,4.6445,6.1375,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,4.6700,6.0194,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,4.7954,5.9537,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,4.7984,6.1054,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,4.7920,6.1627,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.2959,5.8998,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,4.9441,6.1867,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,4.8854,6.0771,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,4.9927,5.9943,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,4.9006,5.9693,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,4.9345,6.1015,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,4.7923,6.1386,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,4.9004,5.9967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,4.8225,6.0377,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,4.2130,6.5675,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,4.9586,6.0943,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,5.0176,6.0784,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,4.7166,6.1885,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,4.7808,6.0606,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,8.7808,6.1447,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.1742,5.9781,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,3.0126,5.8800,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,2.8290,5.7834,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.8106,5.7215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,4.5157,5.8623,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,5.2685,5.9761,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,3.1873,5.8816,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,5.1207,6.0302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,4.3552,5.9224,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,4.0795,5.6881,0.0426,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.1458,6.4309,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.1426,6.2174,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,4.5440,6.0715,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.0283,5.8420,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,5.7485,5.9144,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,5.7926,5.9138,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,5.5819,6.1321,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,5.5089,6.1977,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,5.0477,5.9189,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,5.3258,5.9714,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,5.2208,5.9819,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,5.3234,6.2753,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,5.2622,5.9983,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,5.2791,6.1135,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,5.3423,6.0783,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,5.0033,6.9887,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,4.8157,7.0056,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,4.7555,6.1748,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,4.7992,6.1041,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,4.8899,6.1099,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,4.7946,5.9914,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,4.7272,6.1864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,4.9911,6.0591,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,4.7553,6.1194,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,4.9188,6.0877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,4.8739,6.0610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,4.8848,6.1565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,4.7795,6.0172,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,4.8135,6.0952,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,4.9775,6.1139,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,4.7683,5.9661,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,4.9550,6.1030,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,4.8169,6.3715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,4.7963,6.6604,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,4.1473,6.3739,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,4.8578,6.0712,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.0743,6.0786,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,2.8229,5.9125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.9102,5.9591,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,4.5262,6.0282,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,5.2441,6.0295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,5.1044,6.0045,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,5.1416,6.0841,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,5.0777,6.1110,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,5.2088,5.9599,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,4.9915,6.0847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,4.8092,6.0185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,4.7813,5.9962,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,4.9416,6.2417,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,4.8430,6.0401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,4.9082,5.9715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,5.0649,6.0065,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,5.1445,6.1209,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,4.7575,6.0646,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,4.9363,6.0770,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,4.8942,6.5903,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,4.5053,6.1794,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,4.1816,5.9699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,4.1281,5.8496,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,4.3012,5.7229,0.0265,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,4.5455,6.2410,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,4.4417,6.2725,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.9140,6.2852,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,4.6848,6.0614,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,4.5965,6.2840,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,4.5161,5.8529,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,4.5394,6.2322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.7726,5.9444,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,4.5431,5.8481,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,4.4723,5.9156,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,4.4419,5.9275,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,4.5208,6.1412,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,4.5559,6.0194,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,4.5128,6.0401,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,4.7626,5.9411,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,4.8614,6.5182,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,4.9617,6.4420,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,5.0545,6.0655,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,4.8600,6.0766,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,4.7825,6.0741,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,4.9027,6.3239,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,4.9770,6.0481,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,5.0289,6.0818,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,4.7563,6.0349,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,4.8848,6.0092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,5.2017,5.9910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,4.8524,6.0871,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,4.8357,6.0216,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,4.7052,6.2828,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,4.9030,6.0838,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,4.8498,6.0298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,4.9588,6.2888,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,4.8591,6.0047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,5.0043,6.1884,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.9989,6.0133,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,4.8455,6.0481,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,2.9729,6.1614,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.2997,6.9468,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.3454,6.0868,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,2.9926,5.7540,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.8100,5.7893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.0289,5.9364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.2134,6.1131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.2446,5.8899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,4.9307,6.0664,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,5.0747,5.9611,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,5.0979,5.8735,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,5.1036,5.9570,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,5.0840,5.9889,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,5.0915,6.0542,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,5.0830,6.0876,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,5.3880,5.9912,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,5.3238,6.3246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,5.3079,6.1653,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,5.1895,6.0355,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,5.2061,5.9958,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,5.1251,6.8135,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,4.7766,6.5918,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,4.6337,6.1610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +180,4.6472,5.9562,0.0276,0.0000,0,0,0.0000,0,0.0000,0,1,0,147037,0 +181,5.0202,6.3678,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7440,0 +182,4.8782,6.0370,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,15187,0 +183,4.6070,6.0739,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,25141,0 +184,4.6343,5.9163,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +185,4.6095,6.1363,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25012,0 +186,4.6149,6.0923,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20272,0 +187,4.7249,6.1212,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8821,0 +188,4.6700,6.2175,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,24616,0 +189,4.7091,6.1590,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4094,0 +190,4.8442,6.0331,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4088,0 +191,4.6891,6.0402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +192,4.6996,5.9430,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,30389,0 +193,4.9443,6.1622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +194,4.7179,6.1426,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +195,3.9758,5.9986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +196,4.4100,6.0202,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8455,0 +197,2.8899,5.7271,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +198,2.8235,5.7119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +199,3.6695,5.7722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +200,3.9519,5.7680,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8287,0 +201,4.7569,5.8300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +202,4.8015,6.0503,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +203,4.6885,6.0991,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +204,4.6006,5.9342,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7551,0 +205,4.5621,6.2268,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +206,5.0675,5.9557,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +207,5.0525,6.0263,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +208,5.0971,5.9626,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8365,0 +209,4.7817,6.1460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +210,4.9698,6.1434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +211,4.9176,5.9985,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +212,4.7511,6.2018,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8856,0 +213,4.9231,6.0118,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +214,4.8380,6.1435,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +215,4.9264,6.1022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +216,4.8989,5.9283,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +217,4.9295,6.0455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +218,4.9203,5.9269,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +219,4.7408,6.1063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +220,5.0075,6.0313,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7870,0 +221,4.8087,6.3420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +222,4.8429,6.2794,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +223,4.9979,6.0813,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +224,4.9226,6.1805,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +225,4.2928,6.5619,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +226,5.3225,6.5770,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +227,4.9042,6.1327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +228,4.8083,6.0159,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9118,0 +229,3.1956,6.1562,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +230,2.7634,5.7717,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +231,4.3174,5.8143,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +232,4.6370,5.9318,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +233,5.0786,5.8653,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +234,5.0506,5.9604,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +235,4.9925,5.9405,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +236,5.1330,5.8909,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +237,4.6735,6.5732,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +238,4.7892,6.2141,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +239,4.7967,6.0761,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +240,4.6914,6.0862,0.0205,0.0000,0,0,0.0000,0,0.0000,0,1,0,119857,0 +241,4.6007,6.2705,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11196,0 +242,4.8841,6.2455,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,10231,0 +243,4.6040,6.0806,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15790,0 +244,4.5495,5.9219,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,31337,0 +245,4.5083,6.0525,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23740,0 +246,4.5524,5.8736,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,19438,0 +247,4.5392,5.9589,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,10961,0 +248,4.9319,6.0564,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,26655,0 +249,4.8405,5.8183,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7038,0 +250,4.8766,6.0984,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4915,0 +251,4.8521,6.0473,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4067,0 +252,4.7648,6.1209,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21791,0 +253,4.8623,6.2496,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +254,4.8350,6.0713,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +255,4.7469,5.9387,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +256,4.6962,6.9073,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,22249,0 +257,4.6251,6.3783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,631,0 +258,4.5492,6.3472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +259,4.4935,6.0864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +260,4.5150,6.0998,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +261,4.4547,5.8389,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +262,4.5282,5.9804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +263,4.6481,6.1140,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +264,4.8271,6.0574,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +265,4.8693,5.9259,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,4.7963,6.0367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +267,4.9742,5.9511,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +268,4.7994,6.0462,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,4.8035,6.1928,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +270,4.8118,6.1992,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +271,4.7538,5.8772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +272,4.8339,6.1096,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8400,0 +273,4.7648,5.9897,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +274,4.7453,6.0091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +275,4.9793,6.0233,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +276,4.8956,6.1120,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8889,0 +277,4.8055,6.0704,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +278,4.5974,5.9304,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +279,4.7952,6.2348,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +280,4.8599,6.1584,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +281,4.6256,6.0370,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +282,4.8632,6.0125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +283,4.8496,5.7941,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +284,4.8737,6.1843,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7902,0 +285,4.8942,6.1654,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +286,5.0468,5.9026,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +287,4.8460,6.0568,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,813,0 +288,4.7303,5.9570,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6947,0 +289,4.8596,6.2063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +290,4.7555,6.0885,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +291,4.7891,5.8992,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +292,4.9312,6.1493,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9123,0 +293,4.8717,5.9538,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +294,4.8910,6.0713,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +295,4.9500,6.0318,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +296,4.8987,6.4145,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8314,0 +297,4.4214,6.2531,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +298,3.0229,5.8313,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +299,2.9897,5.8458,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.txt new file mode 100644 index 0000000..e6d4515 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=2560x1440 +started_at=2026-05-15 13:10:38 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.616 +avg_encode_latency_ms=6.136 +p95_encode_latency_ms=6.431 +max_encode_latency_ms=23.552 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2229186 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:10:43 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.csv new file mode 100644 index 0000000..684fca6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.4701,54.2712,0.0307,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,4.5319,31.6265,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.5551,34.4964,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.4334,27.8928,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.7326,17.5072,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.8145,10.8823,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.9234,10.7637,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.0775,10.9969,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.1422,10.8912,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.1601,11.0817,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.2062,11.2740,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.2359,11.4188,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.2640,11.1073,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,5.4515,10.6845,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.5005,10.8305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.4234,10.7145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,4.5978,10.6024,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.5762,10.5017,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.4707,10.7929,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.6250,10.7599,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.6059,10.8868,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.6156,10.7672,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.5962,10.7955,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.7540,10.9516,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.6640,10.5413,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.3779,11.1580,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.6329,10.9210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.6645,10.8604,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.5817,11.0790,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.6652,10.8373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,5.5425,10.6732,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.7700,10.8517,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.6381,10.7227,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.6082,10.9581,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.6150,11.0174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.5826,10.9056,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.5914,10.8149,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.6023,10.7576,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.5348,10.7358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.6331,10.7892,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,5.6364,10.7584,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.6989,10.7343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6675,11.0243,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.6221,10.7702,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.5551,11.0276,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.5877,10.7896,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,4.8272,11.0755,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,4.5994,10.8435,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,4.4164,10.8638,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,4.9577,10.8467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.6116,10.8108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.6849,10.7505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.5541,10.8747,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.6385,10.6502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.6371,10.7579,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.6237,10.8429,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.6056,10.7646,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.5858,10.7063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.5617,10.7135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.5993,10.9209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.6220,10.9834,0.0404,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.6131,11.1243,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.5582,10.5760,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.6842,10.6017,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.5611,10.8785,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,5.6433,10.8215,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,5.6800,11.2743,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,5.3396,10.9085,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,5.0499,10.9724,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,5.0761,10.5878,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,4.9538,10.9267,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,5.6152,10.6017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.5672,10.8327,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.6077,10.7800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.5446,10.7262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.5867,11.0326,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.6852,11.1351,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.6603,10.6044,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.6806,10.8589,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.6514,10.8364,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.6992,10.6799,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.6009,10.7863,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.5890,10.7874,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.6407,10.7657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.6769,10.6616,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.5573,10.7287,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,4.5754,10.7400,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,4.7625,10.8185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.1923,10.8376,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.2914,10.8698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.5445,10.6844,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.7157,10.8709,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.5747,11.2358,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.5996,10.7830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.5729,10.7153,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.5466,10.7398,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.6542,10.8520,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.6200,10.8258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.5990,10.7408,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,5.5514,10.8672,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.5642,10.8678,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.6101,10.7429,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.7123,10.8507,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.5812,10.6592,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.6248,10.7580,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.5821,10.7391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.8807,10.8390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.8371,10.7104,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.5777,10.9611,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.5788,10.7804,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.6133,10.5605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.6246,10.8773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.6085,10.7148,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,4.5658,10.7312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,6.0412,10.6821,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.7852,10.7233,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.7227,10.6522,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.5574,10.8388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.6154,10.6677,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.6143,10.7536,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6272,10.3718,0.0409,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.5879,10.5561,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.6094,10.9067,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.6135,10.8990,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.5411,11.3106,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.6963,10.8885,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.4053,11.0065,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.2044,10.9878,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.2036,10.8521,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.2979,11.0204,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.7002,11.4535,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.6776,10.8841,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.3124,10.8290,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,5.5699,10.7962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.5822,10.8413,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,5.5345,10.7343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.5920,10.7383,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.6149,10.8395,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.6469,10.8207,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.6576,10.4984,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.6083,11.0259,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.5839,10.5460,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.6442,10.7070,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.2050,10.6330,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.5784,10.9725,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.7315,10.7874,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,4.6087,10.7895,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,4.3909,10.8264,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.0878,10.6536,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,4.3892,10.5694,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.6352,11.0209,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.7300,10.6974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.5438,10.8495,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.6680,10.8504,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,5.6036,10.8442,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.6033,10.7747,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.7115,11.1676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.6061,10.8785,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.8221,10.8796,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.6899,10.6600,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.5349,10.7301,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.5491,10.6355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.5485,10.9260,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.5134,10.9691,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.6024,10.5924,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.5629,10.6638,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.5361,10.8027,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.5125,10.8703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.5545,10.7436,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.8279,10.7487,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.8145,10.8670,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.6527,10.7559,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.5552,11.0418,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.5402,10.7928,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.5805,10.5950,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.7191,10.7605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.5737,10.9021,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.7479,10.8493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.5531,10.7468,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.8989,10.7355,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,5.9495,10.4284,0.0606,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,6.1319,10.7946,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.9670,10.8478,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.6424,10.7589,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.6945,10.6933,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.6262,10.7913,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.5370,10.9218,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,4.9833,10.7072,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.5062,11.0705,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,4.6467,10.8365,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,4.7655,10.9129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.5591,10.7372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.6725,10.7010,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,5.6197,10.7357,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.5580,10.6047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.6368,10.7477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.6117,10.6627,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.6245,10.8031,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.6355,10.8017,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.5985,10.8153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.6396,10.6757,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.5573,10.6025,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.5446,10.8320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.6000,10.8028,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.6012,11.0489,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.7321,10.9854,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.6738,10.7643,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.5815,11.0536,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,4.8285,10.8693,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,5.0678,10.8662,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.6413,10.6650,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.2616,10.8070,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.5320,10.8600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,5.3380,10.5504,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,4.6904,10.9288,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,5.5902,10.9947,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.6660,10.7098,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.5360,10.7319,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.5607,10.6397,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.6322,10.9373,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.5472,10.8818,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.9150,10.6528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.7736,10.8940,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.5896,10.7641,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.6620,10.5810,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.9089,10.8059,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.9015,10.6701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.8023,10.7711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.6730,10.7804,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.6035,10.7300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.5722,10.7318,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.5998,10.5425,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.6873,10.7857,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.6068,10.8306,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.6191,10.6616,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,6.0368,10.7806,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,6.0300,11.0437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,6.0172,10.7026,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.7725,11.0415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,6.2133,10.7822,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,6.2832,10.6352,0.0277,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,6.1263,10.4807,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,6.0477,10.8776,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,6.2201,10.8388,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,6.0597,10.8038,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,6.0091,10.6652,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.7393,11.0306,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,5.2677,10.7282,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,4.3602,10.6237,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,4.3232,10.7894,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,4.6714,11.2245,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.7547,11.4805,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.8239,11.0110,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,5.6350,10.6755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.6101,10.6078,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.6187,10.5620,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.6232,10.7942,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.5981,10.7592,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.7138,10.7970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.6623,10.4248,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.5705,10.6265,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.6350,10.7835,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,5.5405,10.7210,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.6799,10.9750,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,5.6504,10.6683,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.3125,11.1315,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.1790,10.6204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.1382,10.6685,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.1297,11.1768,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.5088,10.9356,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,5.2674,10.9418,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,5.3554,11.0629,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.6149,11.2404,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.3810,10.9755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,4.8730,10.8236,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.6237,10.8173,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.5632,10.9121,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.7047,10.7341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.5835,10.8605,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,5.6933,10.9613,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.7446,10.6744,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,4.8967,10.5377,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,5.5945,10.9173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.5895,10.7344,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.6294,11.0286,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.7656,10.7000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.7838,10.6776,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.5682,10.9698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.6205,10.7248,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.6537,10.7753,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.6979,10.7592,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.6978,10.7194,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.6654,10.6195,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.7445,10.6333,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.7119,10.6898,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.8169,10.7380,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.9235,10.8765,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.7271,10.7723,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.6922,10.7119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.5953,10.6463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.txt new file mode 100644 index 0000000..6bfb08b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=3200x1800 +started_at=2026-05-15 13:10:30 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.526 +avg_encode_latency_ms=11.185 +p95_encode_latency_ms=11.168 +max_encode_latency_ms=54.271 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:10:35 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.csv new file mode 100644 index 0000000..26d8ffa --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.2571,31.1841,0.0362,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.6249,11.1602,0.0154,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.4496,14.6133,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.3197,18.0325,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.6777,13.5085,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.7263,11.2058,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,6.9432,11.2178,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,7.0157,11.2898,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,7.1728,11.3850,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.2979,11.1759,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.1899,11.2493,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.5168,11.0989,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.2492,11.2529,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,7.3240,11.6475,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,7.3288,11.1125,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,7.3401,11.3092,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,6.6124,11.3608,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,6.9555,11.2104,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,6.9533,11.2932,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,6.9422,11.5194,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.3987,11.6503,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.1430,11.3933,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.0811,11.2410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.2144,11.1921,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.1226,11.1085,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.0726,11.3646,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.2486,11.2512,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.3645,11.2115,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.1933,11.2443,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.2488,11.6553,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.1923,11.1427,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.3129,11.1907,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.2284,11.3058,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.2945,11.2029,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.1400,11.3793,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.0154,11.3438,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,6.5253,11.2179,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,6.2822,11.1623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,6.8236,11.2162,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,6.6347,11.1505,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,7.3796,11.0860,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,7.4755,11.0841,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,7.3563,11.1324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,7.2063,11.1965,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,7.2056,11.2036,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.1810,11.6590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.2613,11.1465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.3200,11.1205,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.3299,11.1452,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.3722,11.2019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.2711,11.1136,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.2030,11.2344,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.3120,11.1188,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.3061,11.1660,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.1762,11.2495,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.4213,11.0541,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.2833,11.1860,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.2041,11.1265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.2805,11.1863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,7.4977,11.1244,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,7.7161,10.8992,0.0704,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,7.6675,11.6634,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,7.1846,11.1738,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,7.3545,11.0583,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.2510,11.1732,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.2350,11.0597,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.2910,11.0684,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,7.2696,11.1161,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.1954,11.2252,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,7.2875,11.1661,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.2129,11.3567,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.3135,11.2440,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.1476,11.3263,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,7.3068,11.2384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.4135,11.1283,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.3691,11.3181,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,6.6092,11.2895,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,6.5125,11.7545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,6.8323,11.2502,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,6.9010,11.5015,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.3469,11.4385,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.4540,11.1504,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.3279,11.2110,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.4540,11.2232,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.3750,11.2274,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.4132,11.1568,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.3915,11.1740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.1238,11.2258,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.4925,11.2433,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.3231,11.2004,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.3566,11.1312,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,7.2669,11.1248,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,7.5456,11.1921,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,7.6367,11.6644,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.4861,11.4394,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.3202,11.3420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.2008,11.2542,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.2675,11.1862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,7.1479,11.2723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,6.5856,11.1902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,6.8137,11.1052,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,6.7540,11.1572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,7.1887,11.1374,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.2853,11.1608,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.3660,11.1868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.3273,11.1442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.4085,11.1507,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.2937,11.1890,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.1768,11.1462,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.1324,11.6340,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.3879,11.1346,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.3080,11.1054,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.3970,11.2279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,8.5763,11.1141,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.2171,11.1123,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.4055,11.1920,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.3450,11.1098,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,7.2695,11.0652,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.2185,11.1418,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.2739,11.1251,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.1747,10.9171,0.0565,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.4001,11.2039,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.2928,11.1964,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.4242,11.2173,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.3608,11.2033,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.5004,11.7735,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.4503,11.1799,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.4210,11.0829,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.4438,11.2314,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.3761,11.2498,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.3761,11.1575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.3969,11.2685,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,6.9090,11.0995,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.3404,11.1622,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.3169,11.1477,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.2892,11.2217,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,6.7322,11.3356,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,6.5672,11.2098,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,6.8991,11.1605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,6.8955,11.1319,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.0275,11.1248,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.4974,11.6369,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.2296,11.1820,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.2754,11.1393,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.5888,11.2684,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.4215,11.2782,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.2323,11.1794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.4920,11.1807,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.3987,11.1381,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.3698,11.2077,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.3892,11.2148,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.4123,11.2407,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.3695,11.1701,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.4840,11.1404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.5330,11.2780,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,6.8570,11.4002,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.2401,11.1429,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.1955,11.7985,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,7.2870,11.1414,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.1967,11.1975,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,7.3832,11.1451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,7.2369,11.1377,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.2957,11.1316,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.2143,11.1640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.3710,11.1324,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.4413,11.1731,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.5435,11.1720,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.3768,11.1515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.2807,11.1598,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.3072,11.5225,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.1943,11.1595,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.2169,11.2419,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.2834,11.1501,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.3375,11.6585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.2451,11.2755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.2642,11.2380,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.2176,11.1103,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.2922,11.1266,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.1745,11.1385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.2947,11.1377,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.3538,10.9909,0.0309,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.3953,11.1701,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.3802,11.1087,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.2380,11.0753,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.4059,11.0883,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.3308,11.0898,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.3576,11.0376,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.2053,11.0885,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.1723,11.1742,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.2237,11.7117,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.3916,11.0991,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.4106,11.1163,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.3194,11.1385,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.2925,10.9923,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.1671,11.1625,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.3208,11.2553,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,6.8370,11.3467,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,6.8295,11.1440,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,7.4068,11.3500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.3778,11.1940,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,6.7783,11.6598,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,6.9848,11.8330,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,6.7061,11.2309,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.2108,11.1101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.4415,11.2277,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.3613,11.7406,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,6.6973,11.1135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.3887,11.0871,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.3703,11.0585,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.3139,11.1337,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.4819,11.1845,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.5728,11.1450,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.5999,11.1166,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.4013,11.2364,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.3462,11.2602,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.0893,11.2997,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.0152,11.2222,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.3781,11.1270,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.0664,11.1305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.3670,11.1467,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.4283,11.1905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.2244,11.6595,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.4522,11.2222,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.1409,11.0565,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.2378,11.2150,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.1644,11.1790,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,6.8402,11.1611,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,7.3196,11.1561,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,6.9887,11.1403,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,7.3703,11.1428,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.2865,11.1280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.2576,11.2278,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.1402,11.1691,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.1275,11.0953,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.3490,11.2933,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,6.9895,11.4148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,6.3985,11.1484,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,6.3016,11.7840,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,6.4837,11.1387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.3816,11.2262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.4113,10.8669,0.0311,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.2851,11.1254,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.2976,11.2066,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.4857,11.2072,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.4183,11.1778,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.3975,11.1514,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.2697,11.0251,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,7.4692,11.1545,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.4417,11.1849,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.3951,11.1692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.4658,11.1636,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.3918,11.0471,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.4375,11.1078,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.3583,11.5840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.4133,11.0830,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.3683,11.5448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,6.9843,11.3519,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,6.8547,11.2343,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.0885,11.1191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.2193,11.4334,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.7672,11.5045,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.3694,11.4921,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.4401,11.2626,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,6.9618,11.1911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.2687,11.1834,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.3044,11.1701,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.4757,11.1161,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.2700,11.1162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.3028,11.1521,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,7.2033,11.6365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.3797,11.0843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.3335,11.1637,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,7.0959,11.0416,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,7.0773,11.1090,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,7.2128,11.3518,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,6.6849,11.1760,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.2482,11.2108,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.3849,11.2076,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.2521,11.2712,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.1548,11.2950,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.3193,11.0968,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.3768,11.1445,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,7.2942,11.1805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.2542,11.1307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.4418,11.1359,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.3937,11.6404,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.2316,11.2284,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.2595,11.1460,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.2763,11.2132,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.4484,11.0677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.2728,11.0395,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.4245,11.1348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.3889,11.1205,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,7.3550,11.1020,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.1772,11.1610,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,7.4875,11.0894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,7.4761,11.0927,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,7.4397,11.0726,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,7.4936,11.1611,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.2864,11.1032,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.txt new file mode 100644 index 0000000..2c45aec --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=3840x2160 +started_at=2026-05-15 13:10:21 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.243 +avg_encode_latency_ms=11.329 +p95_encode_latency_ms=11.659 +max_encode_latency_ms=31.184 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:10:27 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.csv new file mode 100644 index 0000000..2654770 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1721,32.5985,0.0350,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.2742,12.4803,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,6.9023,16.4702,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.0890,20.6735,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.0930,22.3347,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.4980,15.1460,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.6195,12.5237,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.8256,12.5445,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.9988,12.5120,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,8.0682,12.5154,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,8.0649,12.4942,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.9223,12.4944,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.9084,12.4641,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,8.0384,12.9550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,8.1044,12.4986,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,8.0654,12.5548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.7185,12.5221,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.9307,12.4152,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.4883,12.5977,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,8.1955,12.5379,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8284,12.4230,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8116,12.5654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.5975,12.5852,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.2145,12.4886,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.4002,12.4903,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.4665,12.4810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.5547,12.4905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.8273,12.5974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8822,12.4741,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.7088,13.1096,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8005,12.4093,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.7586,12.5359,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8746,12.4642,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,8.1604,12.5034,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.8225,12.4194,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.1165,12.3880,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.5077,12.8856,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.9678,12.5708,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.0315,12.6146,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.2468,12.5184,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,8.2534,12.5185,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.3270,12.5313,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,8.2514,12.4092,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,8.0788,12.4155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.1228,12.5787,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.5152,13.2125,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.1644,12.5381,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.8486,12.5190,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.7253,12.4023,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.8051,12.5458,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,8.1984,12.4244,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.9558,12.5977,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.1323,12.6335,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9298,12.4209,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.7965,12.4104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,8.1677,12.5266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8585,12.5190,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8653,12.6117,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9143,12.6391,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8389,12.5473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,8.0414,12.2715,0.0784,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,8.4005,13.0906,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,8.0415,12.5380,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,8.2286,12.4282,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.9503,12.5244,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.0339,12.5158,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,8.0757,12.4782,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,8.2037,12.4430,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.9207,12.4763,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.1765,12.5527,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.8726,12.4068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,8.1995,12.4495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.1624,12.4559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8092,12.4789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.8853,12.4045,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8320,12.3996,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8873,12.4183,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.9908,13.0497,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.6545,12.3762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.8768,12.4704,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.8884,12.5944,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.9392,12.5729,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.5534,12.5002,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.4177,12.4995,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.3908,12.5601,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.7955,12.6686,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.3140,12.7847,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.3080,12.5962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.1318,12.6288,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.2520,12.6913,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.3407,12.6735,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.7685,12.5753,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.3537,12.6850,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.4468,13.2536,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.4954,12.5293,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.5403,12.6982,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.4605,12.6230,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.6457,12.6460,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.5121,12.5142,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.7750,12.6173,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.7106,12.8737,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.7048,12.6939,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.5523,12.5879,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.5105,12.6521,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.5930,12.6595,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.6555,12.6345,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.5039,12.5608,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.5103,12.6126,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8478,12.7756,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.4504,13.1318,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.4867,12.5770,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.3278,12.6058,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.3372,12.5975,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.4365,13.1967,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,18.1338,12.6482,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.8432,15.7894,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.3179,12.8553,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.1935,12.4815,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,23.9761,13.3931,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,9.4917,13.4379,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.3779,16.3913,0.1480,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.2445,15.6995,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.6516,12.7330,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.5121,12.4902,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.4115,12.8533,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.6143,13.1751,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.3500,12.4755,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.4616,12.6511,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.4360,12.7012,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.5914,12.4887,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.4263,12.5035,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.7397,12.5500,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.9478,12.6320,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.4942,12.4543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.3989,12.4285,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.3587,12.4064,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.4947,12.5582,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.3585,12.5151,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8378,12.5772,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.5755,12.5735,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.7310,12.7438,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.3340,13.1345,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.4241,12.4394,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.3171,12.4142,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.1059,12.4614,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.2445,12.4788,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.4890,12.5937,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.3975,12.4335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.7743,12.4443,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8955,13.0030,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.5544,13.2426,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.8168,12.6835,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.2877,12.6565,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.2357,12.4688,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.3244,12.4180,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.2755,12.5947,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.2515,12.6783,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.3813,13.1677,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.3586,12.4088,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.5055,12.3204,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.4263,12.3865,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.7092,12.6495,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7230,12.4991,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.9883,12.5248,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8645,12.4060,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.7507,12.4350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.0239,12.4078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.9472,12.3175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.9808,12.5154,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.0753,12.4359,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,8.0783,12.4842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.1640,12.5892,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8781,12.4872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,8.0215,12.9974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.8730,12.5568,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7443,12.4687,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.6450,12.7106,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9335,12.5881,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8374,12.7535,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,8.1619,13.0875,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.9667,12.7995,0.0458,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8614,12.6132,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.8870,12.6205,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.2647,12.5455,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7946,12.6515,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9574,12.5518,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.7927,12.4964,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.6319,12.5439,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.7927,12.5039,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,8.0299,13.0674,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.8275,12.3934,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.1449,12.4488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.1613,12.4716,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.2696,12.4120,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,8.2485,12.5732,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,8.1842,12.4335,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.9639,12.8063,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9634,12.6546,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.9326,12.7831,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8077,12.3763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9845,12.3865,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8002,12.3785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,8.0307,12.3377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.9774,12.4365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8933,12.3612,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,8.0002,12.9473,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.6879,12.5473,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.7017,12.5362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.8116,12.4354,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.9334,12.7809,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7442,12.9997,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.5672,12.8855,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.6943,12.6380,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.5747,12.5115,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.2938,12.5916,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.4294,12.6672,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.4893,12.6188,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.4864,12.5225,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.5680,12.5382,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.4188,12.5706,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.4971,12.5412,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.5323,13.0809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.4590,12.4024,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.5907,12.4585,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.7598,12.4942,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.6968,12.5472,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.5840,12.5233,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.7528,12.4575,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.6769,12.3522,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.7347,12.4400,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.7201,12.4026,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.1380,12.4101,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9959,12.4097,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.1565,12.5202,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8279,12.3725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.9789,12.4584,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.9474,12.4698,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8986,12.9845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.0639,12.3575,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.2716,12.4805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,8.2105,12.6007,0.0263,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.0191,12.4675,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9958,12.4464,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.9294,12.3982,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.1989,12.4318,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,8.2916,12.4392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.2497,12.4536,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,8.1851,12.4203,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.3080,12.3522,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.3447,12.4294,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,8.0983,12.3345,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,8.1948,12.4038,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.0052,12.5250,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.0872,13.3631,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.9404,12.6660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.1941,12.5495,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.9579,12.6150,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.8454,12.5990,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.9388,12.4041,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.9857,12.5045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.8986,12.3977,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.9977,12.4395,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6094,12.5170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.7770,12.4047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.7077,12.3977,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.7624,12.3685,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.3581,12.5528,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.8087,12.4422,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.7790,12.4195,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.8116,12.9650,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.8739,12.3909,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.7967,12.3920,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.7915,12.3679,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9443,12.4029,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.7940,12.3333,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.8373,12.4688,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8757,12.5072,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.8431,12.3012,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.0264,12.3472,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.9227,12.7043,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.7885,12.3499,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.8071,12.3201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8666,12.2498,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.8804,12.3519,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.0386,12.3788,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.4948,13.0353,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.5195,12.5466,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8117,12.4207,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.8532,12.4096,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.8210,12.3653,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.9162,12.4853,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.9118,12.4528,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.9412,12.3356,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9499,12.3377,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.9962,12.4494,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.0217,12.5043,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.0945,12.4091,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.7197,12.4070,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.0757,12.3963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.8422,12.4504,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.txt new file mode 100644 index 0000000..b41640e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=2 +resolution=4096x2304 +started_at=2026-05-15 13:10:13 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.882 +avg_encode_latency_ms=12.747 +p95_encode_latency_ms=13.176 +max_encode_latency_ms=32.598 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:10:18 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.csv new file mode 100644 index 0000000..8e95bab --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9767,23.5649,0.0250,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0502,5.8972,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,2.9779,6.2297,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,3.4103,6.1620,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,3.4602,6.0645,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.5138,6.2203,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.6416,6.0471,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.7418,6.0416,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.7452,5.8455,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,4.1291,5.9290,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,4.0920,5.8117,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,4.1430,6.0016,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,4.1140,5.8832,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,4.1984,6.1050,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,4.1278,5.9908,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,4.6144,5.8879,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,4.6917,6.0281,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,4.7905,6.0068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,4.7809,6.0614,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,4.7575,6.0382,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,4.9753,6.2641,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,4.3679,5.9228,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,4.3682,5.9898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,4.3019,5.8222,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,4.4363,5.8453,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,4.7130,5.9774,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,4.5568,5.8210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,4.5239,5.9577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,4.7358,6.0446,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,4.6924,6.2639,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,5.0195,5.9543,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,4.8600,6.2145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,4.9214,6.2170,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,4.8583,6.0529,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,4.8329,6.1198,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,4.8647,6.0201,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,4.9124,6.4301,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,5.1533,6.1014,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,4.8148,6.1553,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,4.8640,6.1252,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,4.5685,5.9873,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,4.5581,6.2897,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,4.5642,6.0617,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,4.5838,6.0755,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,4.7808,6.1162,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,4.6956,6.2058,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,5.3338,6.2068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,5.4931,6.1393,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,5.1943,6.1818,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,4.8120,6.1238,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,4.7518,6.1224,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,4.8639,6.2165,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,5.1285,6.1372,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,4.8905,6.1940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,5.0068,6.0483,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,4.8497,6.0703,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,4.8084,6.2140,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,4.9278,6.1905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,4.8783,6.0780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,4.8803,6.2540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,5.0622,6.1453,0.0508,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,4.8150,6.3850,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,4.9994,6.3793,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,4.8140,5.9996,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,4.8746,6.2356,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,4.7207,6.1788,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,4.7280,6.6345,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,4.9031,6.0998,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,4.7177,6.0475,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,4.8950,6.0822,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,4.9145,5.9524,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,4.9319,6.1141,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,5.0068,5.9922,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,5.2280,6.2015,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,4.8396,6.1193,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,5.0078,5.8969,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,5.0349,6.1734,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,5.1873,6.8975,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,5.4130,6.0830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,5.0177,6.1348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,5.4163,6.4465,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,5.0653,6.5972,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,4.9825,6.2696,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,5.0350,6.1243,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,5.2382,6.4643,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,5.0618,6.0620,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,5.3329,6.4325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,5.0127,6.1921,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,4.9708,6.0418,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,4.8572,6.1073,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,4.8864,6.1628,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,4.9799,6.1796,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,5.0103,6.0496,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,5.1003,6.4722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,4.9721,6.2545,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,4.9298,5.9409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,4.9186,6.2872,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,4.7946,6.0386,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,4.8876,6.0340,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,4.7578,6.1210,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,4.7902,6.0488,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,4.6780,6.0560,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,4.6198,5.9585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,4.5192,5.9088,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,4.5663,6.0041,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,4.6239,5.9092,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,4.8282,5.9404,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,4.8940,6.2193,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,4.7831,6.0678,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,5.0868,6.4927,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,4.8507,6.3107,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,4.8605,6.2680,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,5.0025,6.3155,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,4.8419,6.2247,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,5.0298,6.3228,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,4.9167,6.1119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,4.8760,6.2449,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,4.8418,6.2838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,4.8366,6.1275,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,4.9418,6.2876,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,4.8496,6.1876,0.0432,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,4.7341,6.4603,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,5.0005,6.2513,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,4.9776,7.7736,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,5.4260,6.5105,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,4.8769,6.6043,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,4.7742,6.6568,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,5.4008,6.4788,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,4.8682,6.0216,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,5.1057,6.1113,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,4.8291,6.1789,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,4.9482,6.1839,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,4.7231,6.1264,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,4.5413,6.0872,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,4.8781,6.2796,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,4.6246,5.9244,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,4.6197,6.1357,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,4.5322,5.9420,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,4.7127,5.9513,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,4.6906,5.9106,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,5.0045,6.2542,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,4.8894,6.5672,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,5.3990,6.2795,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,5.3087,6.0684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,5.0827,6.3216,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,4.9653,6.1104,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,4.7953,6.0611,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,4.9540,6.1001,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,4.9748,6.1975,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,5.0407,6.0035,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,4.8625,6.1114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,4.8881,6.2473,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,4.9085,6.0971,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,4.8018,6.1825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,5.1124,6.1385,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,4.9458,6.0537,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,4.8883,6.1276,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,4.8003,6.3353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,5.2329,6.1144,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,4.9725,6.3379,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,4.7160,6.0192,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,4.6080,6.0052,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,4.6139,5.8600,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,4.5812,5.9518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,4.0581,5.7757,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,4.2838,5.9405,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.5275,6.0244,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,5.3839,6.2865,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.0539,5.9231,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.2386,5.9181,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.0704,5.8618,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.4946,5.8930,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,4.1748,5.8623,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,4.4916,6.1625,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,5.2291,6.0193,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,5.8404,6.1490,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,5.5332,5.9965,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,5.2764,6.0025,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,5.2689,6.0233,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,5.3987,6.0683,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +180,5.2098,5.9265,0.0306,0.0000,0,0,0.0000,0,0.0000,0,1,0,147037,0 +181,5.2029,6.1971,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7440,0 +182,5.1460,6.1071,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15187,0 +183,4.8036,6.2881,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,25141,0 +184,4.7832,6.2495,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +185,5.3945,6.1865,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,25012,0 +186,4.9023,6.1944,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,20272,0 +187,4.9748,6.2348,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8821,0 +188,4.7438,6.2534,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,24616,0 +189,5.0016,6.4958,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4094,0 +190,4.9170,6.1664,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4088,0 +191,5.0452,6.0902,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +192,4.9812,6.0672,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,30389,0 +193,4.9745,6.1630,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +194,4.7177,6.3354,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +195,5.0931,6.3955,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +196,4.8905,6.2542,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8455,0 +197,4.9991,6.1972,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +198,5.0999,6.2444,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +199,4.4605,6.1684,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +200,4.5291,6.1025,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8287,0 +201,4.3823,5.9840,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +202,4.4032,5.8906,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +203,4.6758,5.8303,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +204,4.4800,5.8887,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7551,0 +205,4.6367,6.1367,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +206,4.7198,5.8278,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +207,4.7501,5.8472,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +208,4.7229,5.9019,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8365,0 +209,4.8805,6.2037,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +210,4.8755,6.0728,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +211,4.4988,6.1389,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +212,4.9177,6.1089,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,8856,0 +213,4.9953,6.2371,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +214,5.2379,6.2492,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +215,5.0387,6.2293,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +216,4.9224,6.1713,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +217,4.8470,6.2700,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +218,4.8632,6.2297,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +219,5.1279,6.2550,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +220,4.5432,5.9593,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7870,0 +221,4.4642,6.1799,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +222,4.8723,5.8570,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +223,4.6576,5.9734,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +224,4.6881,5.8996,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +225,4.6679,5.8375,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +226,4.7691,5.8643,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +227,4.7466,6.1528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +228,4.9483,6.1023,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,9118,0 +229,5.0165,6.0780,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +230,4.9188,6.3578,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +231,4.6407,6.2492,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +232,4.9597,6.5088,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +233,4.9055,6.4736,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +234,4.9296,6.3788,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +235,4.8197,6.1890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +236,4.8883,6.1223,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +237,4.6890,6.2727,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +238,4.6522,6.3445,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +239,4.7931,6.2624,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +240,4.8840,6.1708,0.0186,0.0000,0,0,0.0000,0,0.0000,0,1,0,119857,0 +241,4.9204,6.2617,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,11196,0 +242,4.9229,6.1434,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,10231,0 +243,4.8802,6.2111,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15790,0 +244,4.8320,6.3454,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,31337,0 +245,4.8730,6.2832,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,23740,0 +246,4.7319,6.0820,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,19438,0 +247,4.8007,6.2108,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10961,0 +248,4.6532,6.3474,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,26655,0 +249,4.9896,6.0663,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7038,0 +250,4.9161,6.1209,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4915,0 +251,4.6193,6.0595,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4067,0 +252,4.8270,6.1103,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21791,0 +253,4.9209,6.3657,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +254,4.9184,6.2599,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +255,4.6157,6.0433,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +256,2.9843,5.7722,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22249,0 +257,3.3677,5.8339,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,631,0 +258,3.3977,5.8337,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +259,3.2173,5.7538,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +260,3.4320,5.8129,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +261,3.1872,5.8319,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +262,3.0645,5.8166,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +263,3.0612,5.8612,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +264,2.9464,5.7836,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +265,2.9694,5.8737,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,3.0755,5.7748,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +267,3.1760,5.8959,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +268,3.0617,5.9013,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,4.6304,6.0317,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +270,5.0492,5.8152,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +271,4.5328,6.2509,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +272,6.8892,6.0387,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,8400,0 +273,7.2423,6.0463,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +274,6.8525,5.8868,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +275,4.7907,5.9915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +276,5.5685,6.0261,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8889,0 +277,4.9341,5.9751,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +278,5.8957,5.9001,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +279,5.1051,5.7480,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +280,4.5189,5.9646,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +281,9.2574,5.9919,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +282,3.7502,5.8780,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +283,5.4572,5.9490,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +284,6.4091,5.9586,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7902,0 +285,6.4749,6.3751,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +286,7.7581,6.3425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +287,6.1011,6.2155,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,813,0 +288,6.8394,6.1367,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,6947,0 +289,6.1338,6.3007,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +290,4.3032,6.1218,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +291,6.1405,6.4240,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +292,5.8111,6.4771,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,9123,0 +293,5.4506,6.0601,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +294,5.5193,6.2071,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +295,5.3425,6.1159,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +296,5.2884,6.1292,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8314,0 +297,5.3011,6.3290,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +298,5.3840,6.1247,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +299,5.4230,6.3403,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.txt new file mode 100644 index 0000000..501eaff --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=2560x1440 +started_at=2026-05-15 13:11:10 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.809 +avg_encode_latency_ms=6.184 +p95_encode_latency_ms=6.472 +max_encode_latency_ms=23.565 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2229186 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.csv +--- run footer --- +finished_at=2026-05-15 13:11:15 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.csv new file mode 100644 index 0000000..a9eed57 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.4130,74.5885,0.0354,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,5.1191,32.0699,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.8392,34.7025,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.8561,37.2515,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.5828,40.1060,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.7727,30.6851,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.9589,18.9621,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,5.1360,10.6505,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,5.0925,10.6937,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.2021,10.9837,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.2287,10.8291,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.4984,10.7058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.3395,11.0727,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,5.3978,10.9528,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.6481,10.9430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.5523,10.7088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.6843,10.9921,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.4657,10.7676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.5646,10.9138,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.5678,10.7400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.6945,10.6917,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.5800,10.7900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.6005,10.8932,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.5624,10.9009,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.5902,11.0851,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.6452,10.5622,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.5676,10.5623,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.6222,10.7217,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.5938,11.1600,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.6150,10.6628,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,5.4838,10.8978,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.2056,10.8246,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,4.9783,11.0054,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.2468,10.6471,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,4.5300,11.0206,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,4.9378,10.6792,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.5073,11.0315,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.6459,10.7292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,4.6003,10.7205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.0460,10.8716,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,4.6725,11.1041,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,6.1956,10.7647,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,6.2275,10.7345,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,6.2655,10.5945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,6.1788,10.9403,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,6.0199,10.8223,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,6.0034,10.6555,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.9156,10.7211,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.7104,10.7665,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.6640,10.6550,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.6240,10.8714,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.6643,10.7321,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.6915,10.6554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.6151,10.7418,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.5853,11.1228,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.6856,10.8875,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.6048,10.8048,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.6014,10.7892,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.5792,10.7521,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.5606,10.6647,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.6348,11.1991,0.0565,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.6245,10.8704,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.6859,10.8392,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,5.6666,11.0445,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,5.6455,10.9592,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,5.5498,10.9716,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,5.5782,10.8900,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,5.6345,10.9793,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,5.4775,10.7928,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,5.6866,10.7951,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,5.4755,10.8831,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,6.6485,11.3010,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,17.8047,10.8200,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.7929,12.4354,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,7.6193,10.8993,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,6.6530,11.1858,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.3625,11.4355,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.6363,11.1283,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.2157,10.9545,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.2343,10.8410,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.4746,11.0115,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.2390,11.1385,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.7261,10.9836,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.8855,11.1796,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.5775,10.8655,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.2859,10.8761,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,4.6068,10.6608,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.1539,10.8370,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.0411,10.8295,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.1155,10.9387,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,4.8361,10.9525,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,4.8714,10.8612,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,4.7098,11.1073,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,4.8206,10.7006,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,4.7035,10.7278,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,4.6428,10.7269,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,4.6948,10.5989,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,4.8295,10.9420,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,4.9882,10.8848,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,4.5971,10.6762,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,4.8272,10.6175,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,4.8584,11.0707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,6.0636,11.0584,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.9575,11.1057,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.8533,10.9423,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.7442,10.9772,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.9287,11.0296,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.8532,10.9671,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.7845,11.2940,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.8275,10.9559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.6545,11.0671,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.7317,10.9334,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.4434,11.0798,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.4997,10.7769,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.6011,10.8742,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.6638,10.8356,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.5827,10.8621,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.7414,11.1547,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.7148,11.0055,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.7348,11.2450,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6413,10.8928,0.0462,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.4344,11.0426,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.4630,10.8757,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.5266,11.0025,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.5262,11.1220,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.5195,10.7031,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.3908,10.7422,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.6406,10.9709,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.6516,10.8250,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.5984,11.0767,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.3588,11.1324,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.4690,10.9306,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.5877,10.9014,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,5.4787,10.9372,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.5962,10.7723,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,5.5549,10.5490,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.5429,10.8268,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.5835,10.9695,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.5847,10.9797,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.5892,10.9438,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.3773,11.1016,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.2814,10.7115,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.5909,10.8554,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.4895,10.7745,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.3600,10.8380,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.6180,10.7983,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.5590,11.0365,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.6204,10.8790,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.5613,10.8263,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,5.6163,10.7407,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.2757,10.7434,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.5095,10.9444,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.6249,10.9092,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.4867,10.8900,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,5.4565,10.9117,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.3830,10.9009,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.5751,11.1962,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.5191,10.8102,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.5699,10.6230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.4748,10.7688,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.6094,10.9310,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.5504,10.9733,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.6525,10.7898,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.5889,10.9710,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.6103,10.9441,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.5862,10.7761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.6745,10.7600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.5341,10.7055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.6805,10.7962,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.6717,11.2075,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.6581,10.9695,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.5746,10.9311,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.5808,11.2164,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.6403,10.7886,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.6547,10.9518,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.6682,10.8304,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.5895,10.8820,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.6700,10.8209,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.5875,10.5948,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.6004,10.9968,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,5.5977,10.6916,0.0430,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,5.6163,10.7132,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.5862,10.8416,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.6643,10.8234,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.5303,10.7654,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.6217,10.8459,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.6028,10.8636,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.6275,10.8406,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.5788,11.3915,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.6298,10.7685,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.5823,10.8383,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.6784,10.6669,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.6290,10.9304,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,5.6778,10.7700,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.6855,11.0714,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.6460,10.6723,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.5685,11.1177,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.5941,10.7205,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.5497,10.8867,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.6178,10.7028,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.5739,10.9811,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.6564,10.8354,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.5990,10.8815,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.5464,10.6327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.9364,11.0290,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.8351,10.9428,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,6.0445,10.7271,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,6.2975,10.7085,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,5.8039,11.0143,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,6.0207,11.0322,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.7554,11.1520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.6356,11.1400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.7065,10.6479,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,5.6089,10.9171,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,5.6356,10.8538,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,5.6650,10.6253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.9474,10.6761,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.6313,10.7250,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.8919,10.4957,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.8063,10.7419,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.7814,11.0004,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.6281,10.7901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.5622,10.7328,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.5530,10.5447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.9150,10.8295,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,6.1738,10.7271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.9798,10.7611,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.7590,10.8807,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.5839,10.8219,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.5185,10.6498,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.6288,10.8946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.6797,11.1058,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.7103,10.6967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.6406,10.9737,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.5900,10.8878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.5760,10.6799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.6015,11.2952,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.6351,10.8647,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.5830,10.8910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,5.6012,10.7271,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,5.6456,10.6350,0.0295,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,5.6221,10.9361,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,5.6421,10.9204,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,5.5695,10.9368,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,5.5867,10.5993,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.5449,10.7771,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.7233,10.9482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,5.5681,10.8912,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,5.5814,10.6329,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,5.5367,10.7303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,5.5956,11.0786,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.6607,11.1402,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.6485,11.1630,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,5.6711,11.0223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.5671,10.8851,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.5652,10.8896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.6041,10.7809,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.5820,10.5880,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.9997,10.6145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.5860,10.4836,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.8239,10.7126,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.7879,10.7915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,5.5644,10.6152,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.7805,10.9019,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,5.9644,11.0685,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.7163,10.7245,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.8150,10.9577,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.8297,10.9936,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.6581,11.2397,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.7708,11.0624,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,5.7236,11.0337,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,5.7840,10.9122,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.6400,10.9330,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.6195,10.8961,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.7314,10.9558,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.5989,10.9464,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.6516,10.7796,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.5735,10.8225,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.6133,11.0360,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,5.6205,10.8342,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.6100,10.9215,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,5.6289,11.1407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,5.6306,10.7067,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.6383,10.8667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.5178,11.1871,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.5598,10.6579,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.6609,10.7636,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.6188,10.8619,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.5300,11.1337,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.6018,10.9215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.6702,10.8872,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.6015,10.8968,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.5483,11.0074,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.5347,11.0679,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.6063,10.9102,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.6369,10.9994,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.5629,10.9395,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.6355,10.6233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.6841,10.9979,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.6320,10.9123,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.txt new file mode 100644 index 0000000..bffa716 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=3200x1800 +started_at=2026-05-15 13:11:02 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.611 +avg_encode_latency_ms=11.524 +p95_encode_latency_ms=11.218 +max_encode_latency_ms=74.588 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.csv +--- run footer --- +finished_at=2026-05-15 13:11:07 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.csv new file mode 100644 index 0000000..371b14d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.2731,30.9527,0.0405,0.0000,0,0,0.0000,0,0.0000,0,1,0,148541,0 +1,6.9031,11.1926,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,52056,0 +2,6.6404,14.4418,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,39318,0 +3,6.4463,17.7563,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,48388,0 +4,6.6559,13.8717,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,80782,0 +5,6.6683,11.1777,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,59165,0 +6,7.0633,11.2426,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11805,0 +7,7.0402,11.1453,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8873,0 +8,6.9663,11.1773,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,33406,0 +9,7.0772,11.1973,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7283,0 +10,7.3381,11.2043,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7318,0 +11,7.2762,11.1875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4689,0 +12,7.2007,11.2086,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,24289,0 +13,7.2550,11.7672,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4566,0 +14,7.3389,11.1682,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5559,0 +15,7.3170,11.2716,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5457,0 +16,7.2979,11.2081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19114,0 +17,7.2962,11.1771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2871,0 +18,7.2737,11.2598,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1657,0 +19,7.2792,11.2172,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +20,7.2607,11.1187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17303,0 +21,7.4110,11.1233,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +22,7.2524,11.1666,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +23,7.1507,11.2243,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1483,0 +24,7.2851,11.1437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17108,0 +25,7.1937,11.1693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +26,7.1882,11.1016,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1568,0 +27,7.2396,11.1293,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1583,0 +28,7.1379,11.2003,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17549,0 +29,7.3037,11.6850,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1542,0 +30,7.1978,11.1683,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +31,7.2182,11.1589,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +32,7.2314,11.2445,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,15278,0 +33,7.3922,11.3190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1960,0 +34,7.4264,11.3189,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +35,7.4073,11.2797,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1562,0 +36,7.4788,11.2441,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19245,0 +37,7.4946,11.2052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +38,7.4211,11.2466,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +39,7.5125,11.5328,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1604,0 +40,7.4554,11.3473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18515,0 +41,6.4933,11.2938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +42,7.4878,11.2877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1618,0 +43,7.2150,11.2325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +44,7.3470,11.2304,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16799,0 +45,7.2897,11.7239,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +46,7.1580,11.3850,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +47,7.5823,11.1616,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1653,0 +48,7.3737,11.1679,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18925,0 +49,7.3963,11.2622,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2535,0 +50,7.4835,11.3182,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +51,7.4837,11.1457,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +52,7.4184,11.2357,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19722,0 +53,7.4083,11.2971,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +54,7.4206,11.2693,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1703,0 +55,7.4556,11.2221,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +56,7.2809,11.0482,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19514,0 +57,7.0960,11.0948,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +58,7.2577,11.4290,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +59,6.5755,11.1863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1667,0 +60,6.7268,11.0925,0.0659,0.0000,0,0,0.0000,0,0.0000,0,1,0,375408,0 +61,6.7328,11.7301,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,22999,0 +62,6.6966,11.3087,0.0292,0.0000,0,0,0.0000,0,0.0000,0,0,0,34209,0 +63,7.5900,11.1960,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,44078,0 +64,7.5161,11.2821,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,57206,0 +65,7.3816,11.1307,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22234,0 +66,7.4994,11.1841,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13433,0 +67,7.5374,11.1324,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3025,0 +68,7.4753,11.1552,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27082,0 +69,7.4158,11.1442,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2406,0 +70,7.1742,11.1892,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3238,0 +71,7.3075,11.1120,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +72,7.2368,11.1511,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18393,0 +73,7.2432,11.1492,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +74,7.3274,11.1740,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +75,7.4392,11.4468,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1459,0 +76,7.4968,11.3323,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,16845,0 +77,7.3120,11.8558,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1461,0 +78,7.1486,11.3802,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1621,0 +79,6.9809,11.2172,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +80,7.1027,11.2599,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18757,0 +81,7.4342,11.2038,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2414,0 +82,7.3337,11.1910,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +83,7.2383,11.2386,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +84,7.2374,11.2400,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19636,0 +85,7.4796,11.2884,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +86,7.5122,11.2062,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +87,7.2452,11.2019,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +88,7.3615,11.2705,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19444,0 +89,7.2871,11.2151,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +90,7.3918,11.3136,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +91,6.9941,11.1888,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +92,7.1805,11.2286,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17457,0 +93,7.2249,11.6298,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +94,7.1797,11.1583,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +95,7.3400,11.2904,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +96,7.2051,11.1505,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,50478,0 +97,7.2467,11.1258,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1880,0 +98,7.2631,11.2060,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1665,0 +99,7.2737,11.4718,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +100,7.0831,11.1768,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19204,0 +101,7.3244,11.3028,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +102,7.2564,11.1661,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +103,7.5871,11.5118,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +104,7.3908,11.4684,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,18415,0 +105,7.3690,11.4794,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +106,7.1609,11.2130,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +107,7.1158,11.1503,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1554,0 +108,7.1995,11.1952,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16763,0 +109,7.3036,11.7455,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +110,7.4685,11.3058,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1734,0 +111,7.2744,11.1730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1643,0 +112,7.4154,11.2269,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18984,0 +113,7.2094,11.2091,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2587,0 +114,7.4035,11.1630,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +115,7.2883,11.1824,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1712,0 +116,7.1569,11.2220,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19853,0 +117,7.3263,11.2486,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +118,7.2767,11.4593,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1852,0 +119,7.6056,11.3367,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1746,0 +120,7.2954,10.9571,0.0582,0.0000,0,0,0.0000,0,0.0000,0,1,0,318810,0 +121,7.2547,11.2818,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17812,0 +122,7.6546,11.2892,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24835,0 +123,7.3054,11.1735,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,28107,0 +124,7.3851,11.2854,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,46833,0 +125,7.4297,11.8214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11990,0 +126,7.5329,11.3380,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8370,0 +127,7.6635,11.1032,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6547,0 +128,7.5132,11.2195,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27575,0 +129,7.3194,11.1791,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6552,0 +130,7.4473,11.1695,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4821,0 +131,7.3967,11.0348,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1969,0 +132,7.1572,11.1086,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19349,0 +133,7.2604,11.1533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +134,7.2274,11.1148,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +135,7.2286,11.2646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +136,7.3114,11.2151,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18426,0 +137,7.1580,11.1148,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1448,0 +138,7.3115,11.1768,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +139,7.2477,11.1140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +140,7.3177,11.2008,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16771,0 +141,7.3503,11.6277,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +142,7.4263,11.1352,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1450,0 +143,7.4296,11.1491,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1464,0 +144,7.3658,11.1573,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18661,0 +145,7.2280,11.0404,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2166,0 +146,7.1882,11.0487,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +147,7.2443,11.0403,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +148,7.3565,11.1470,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19618,0 +149,7.4835,11.1998,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +150,7.3493,11.1467,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +151,7.4896,11.0962,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +152,7.6169,11.0902,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19364,0 +153,7.4455,11.0830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +154,7.3477,11.2959,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1462,0 +155,7.3359,11.2183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +156,7.4262,11.2722,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17510,0 +157,7.4171,11.8693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +158,6.7447,11.2148,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +159,7.7612,11.3722,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +160,6.3068,11.2303,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15077,0 +161,6.9207,11.0970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +162,7.3703,11.1018,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +163,7.4006,11.7042,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +164,7.9150,11.5082,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,19205,0 +165,7.3024,11.3212,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +166,7.6193,11.3675,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +167,7.3781,11.1987,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1508,0 +168,7.5763,11.1299,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18462,0 +169,7.3658,11.0721,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1586,0 +170,7.6642,11.2142,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1579,0 +171,7.1453,11.1654,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +172,7.4490,11.2532,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16969,0 +173,7.5970,11.6990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +174,7.8102,11.1677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1778,0 +175,7.7044,11.1854,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1713,0 +176,7.5059,11.2777,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18875,0 +177,7.3271,11.2134,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +178,7.2710,11.3976,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +179,7.1973,11.2614,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1730,0 +180,7.3841,11.1872,0.0312,0.0000,0,0,0.0000,0,0.0000,0,1,0,328884,0 +181,7.2502,11.2915,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16212,0 +182,7.1993,11.1527,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,32458,0 +183,7.5638,11.2105,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,55350,0 +184,7.1945,11.1794,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,62806,0 +185,7.3289,11.2658,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,24693,0 +186,7.3400,11.1322,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12334,0 +187,7.5473,11.2999,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9803,0 +188,7.2748,11.1460,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,26087,0 +189,7.2242,11.7192,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5416,0 +190,7.3982,11.1048,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6014,0 +191,7.2757,11.0346,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5330,0 +192,7.3510,11.2338,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,58536,0 +193,7.2806,11.2238,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5246,0 +194,7.3353,11.0879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +195,7.4278,11.1189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +196,7.2952,11.0914,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19234,0 +197,7.4824,11.1534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +198,7.6803,11.0510,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +199,7.2179,11.0704,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +200,7.4422,11.0803,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +201,7.4494,11.2146,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +202,7.3319,11.0800,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1501,0 +203,7.2655,11.2189,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +204,7.3070,11.1516,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16723,0 +205,7.2411,11.5985,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +206,7.2373,11.2089,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +207,7.4615,11.6040,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +208,7.4310,11.5044,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,18666,0 +209,7.6428,11.3307,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1786,0 +210,7.2638,11.1301,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +211,7.2723,11.2637,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1453,0 +212,7.2526,11.2405,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19622,0 +213,7.2341,11.2978,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +214,7.4600,11.2293,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +215,7.2381,11.2153,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +216,7.2637,11.2129,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19357,0 +217,7.4459,11.2448,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +218,7.4246,11.1771,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1528,0 +219,7.3491,11.4772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1541,0 +220,7.1561,11.2565,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17432,0 +221,7.2062,11.6560,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1614,0 +222,7.4012,11.2382,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +223,7.2947,11.1997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +224,7.4403,11.1752,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15236,0 +225,7.4804,11.0826,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +226,6.5348,11.2433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +227,6.3139,11.0430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1598,0 +228,6.4866,11.1224,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19334,0 +229,6.6727,11.1914,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +230,7.4485,11.2394,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +231,7.5225,11.1439,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +232,7.5146,11.2668,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18469,0 +233,7.3147,11.1253,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1651,0 +234,7.4434,11.0333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1612,0 +235,7.3133,11.0631,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +236,7.1922,11.0977,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16880,0 +237,7.3145,11.7621,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1806,0 +238,7.2913,11.3183,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +239,7.2854,11.1762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1840,0 +240,7.1734,10.9277,0.0318,0.0000,0,0,0.0000,0,0.0000,0,1,0,268827,0 +241,7.2788,11.1517,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23588,0 +242,7.3982,11.1452,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20796,0 +243,7.4237,11.3087,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,29054,0 +244,7.2473,11.2032,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +245,7.2175,11.1489,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12563,0 +246,7.2049,11.1637,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6389,0 +247,7.4545,11.2383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4549,0 +248,7.4211,11.0944,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26754,0 +249,7.2934,11.1015,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3271,0 +250,7.3116,11.1913,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3042,0 +251,7.3460,11.1639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +252,7.3554,11.2010,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17415,0 +253,7.5054,11.7828,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1513,0 +254,7.2931,11.0863,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1507,0 +255,7.2786,11.1121,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +256,7.2485,11.0922,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,49276,0 +257,7.2162,11.1454,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +258,7.4911,11.2488,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +259,7.2276,11.0999,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +260,7.4112,11.0934,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19219,0 +261,7.2741,11.0266,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1473,0 +262,7.1318,11.0742,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +263,7.2666,11.0370,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1581,0 +264,7.2702,11.0407,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18417,0 +265,7.1895,10.9958,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +266,7.1613,11.0809,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +267,7.2479,11.0897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1490,0 +268,7.4887,11.2466,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16766,0 +269,8.3896,12.0384,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1608,0 +270,7.0942,11.4506,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +271,7.6843,11.6067,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1547,0 +272,6.3511,11.2294,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,18824,0 +273,6.3272,11.2307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2454,0 +274,6.3757,11.2742,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +275,6.5970,11.1702,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1492,0 +276,7.1185,11.1894,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19644,0 +277,7.6208,11.1092,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1578,0 +278,7.5516,11.2599,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1523,0 +279,7.6636,11.4223,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1498,0 +280,7.4939,11.2560,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19403,0 +281,7.0743,11.2053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1548,0 +282,6.4427,11.1020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +283,7.0288,11.0854,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1543,0 +284,7.5450,11.1990,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17443,0 +285,7.6285,11.7457,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +286,7.6937,11.2711,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1690,0 +287,7.5651,11.1600,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +288,7.3719,11.1676,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15297,0 +289,7.5219,11.2665,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1982,0 +290,7.3335,11.2051,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +291,7.2918,11.2426,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1563,0 +292,7.2102,11.2486,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,19277,0 +293,8.0584,11.4810,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +294,7.4493,11.4320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +295,6.7145,11.2241,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1672,0 +296,6.2977,11.1632,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18545,0 +297,6.1995,11.1656,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1654,0 +298,6.5600,11.3650,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1677,0 +299,7.0798,11.2691,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.txt new file mode 100644 index 0000000..e1fc403 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=3840x2160 +started_at=2026-05-15 13:10:54 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3840x2160 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.285 +avg_encode_latency_ms=11.349 +p95_encode_latency_ms=11.719 +max_encode_latency_ms=30.953 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4153682 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.csv +--- run footer --- +finished_at=2026-05-15 13:10:59 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.csv new file mode 100644 index 0000000..684a97b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0266,33.2699,0.0349,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.7634,12.4520,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.4022,16.0264,0.0393,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2435,19.8836,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.0747,23.5643,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.5384,15.7924,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.5456,12.6798,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.7726,13.6487,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6329,12.5496,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6103,12.5137,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.2974,12.4841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.3259,12.4277,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.4195,12.4395,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,8.0510,13.0441,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8083,12.4459,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8255,12.4457,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.9257,12.4193,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8349,12.4901,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.9093,12.4224,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.9025,12.4541,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8717,12.4254,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8575,12.5073,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,8.1434,12.4053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,8.0960,12.5311,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.9455,12.4783,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.8662,12.4500,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.8693,12.6274,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.9432,12.5266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,8.0821,12.5509,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.9769,13.1066,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8573,12.5033,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.7894,12.4298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8105,12.5773,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.7525,12.5025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.7471,12.5101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.9361,12.4657,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8575,12.7693,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.1298,12.4314,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.3133,12.6530,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.1637,12.7298,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,8.0725,12.6906,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0967,12.8023,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9156,12.6427,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9212,12.6478,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8097,12.6003,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8999,13.0955,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.7471,12.4340,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.8893,12.5237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8907,12.6736,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.0988,12.7166,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.2898,12.5816,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.3949,12.4137,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.5346,12.4432,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.4063,12.5591,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.7541,12.4554,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.6599,12.4185,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.6051,12.5241,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8310,12.5200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9149,12.6109,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.7452,12.5313,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7629,12.2628,0.0709,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,8.0337,13.0368,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9222,12.4310,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.6803,12.5510,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,8.1129,12.4203,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.0383,12.3833,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,8.0493,12.3568,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.9672,12.4292,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,8.1927,12.8125,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.3520,12.8094,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,8.7144,12.7568,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.7677,12.8710,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.2630,12.8658,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.5132,13.0869,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.8918,12.7293,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.5060,12.6364,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.5163,12.9938,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.5525,13.3268,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.5579,12.6685,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.5769,12.6586,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.4106,12.7272,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.8926,12.6304,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.0115,12.4495,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,8.2225,12.8405,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,8.0882,12.6798,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8952,12.5757,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.4209,12.7606,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.7562,12.7265,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.9366,12.8413,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5623,12.7783,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,8.0232,12.4941,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.8937,12.4930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,8.2003,12.5204,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8531,13.1920,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8463,12.5689,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8363,12.6278,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.9445,12.8937,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,8.5015,12.9179,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.9039,12.9385,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,8.2523,12.5155,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9980,12.5414,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.9741,12.6508,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.7358,12.5120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9813,12.5770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7779,12.4410,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8071,12.4773,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7890,12.4435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.8454,12.3473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.9084,12.7221,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.6430,13.2032,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.7849,12.4595,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.2977,12.4834,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.1839,12.9812,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.7808,12.8528,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.2419,12.8397,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.5328,12.4039,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.8476,12.4976,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.8758,12.4713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.8285,12.5149,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8088,12.4236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.7052,12.3190,0.0368,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8607,12.4581,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.9713,12.4186,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.7888,12.4365,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.6910,12.4307,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.9181,12.9921,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8394,12.4631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8070,12.5846,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.8028,12.7450,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.8987,12.4795,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8284,12.5170,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8434,12.4658,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.7914,12.6440,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.7805,12.4773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.7547,12.5430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8376,12.4538,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,8.0373,12.5111,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,8.0529,12.5301,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8128,12.5273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.0579,12.5430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.7497,12.4425,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.7817,13.6491,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.9559,12.9728,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.2899,12.8369,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.8356,12.7414,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.8863,12.5782,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.8531,12.5094,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.9146,12.4125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8440,12.5114,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.9274,12.5183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7998,12.4744,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7976,12.6716,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.0351,12.4762,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8343,12.5381,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8061,12.5010,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.8260,12.5171,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8710,12.4511,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.9809,13.0800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.9672,12.4369,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.1699,12.8145,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7849,12.6330,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.2697,12.5469,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,8.2841,12.4304,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.9419,12.5443,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8680,12.5115,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.9238,12.4630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.6904,12.4752,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.8531,12.3970,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.8567,12.6676,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.8934,12.6683,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8542,12.5131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8034,12.4768,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8218,12.9197,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,8.1836,13.5393,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,8.0792,12.9506,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,8.0077,12.5848,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,8.0726,12.7326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.2636,12.4213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,8.1852,12.5140,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8210,12.5486,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.0518,12.2861,0.0398,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.0218,12.5870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.8845,12.5110,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.8460,12.4785,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7194,12.4859,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9592,12.4708,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.8019,12.5398,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.6937,12.6131,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.7752,12.6358,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.6034,13.0466,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.5651,12.5767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.4061,12.5061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.6154,12.5343,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.8375,12.5335,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8111,12.4179,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,8.1030,12.4797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,8.1585,12.5239,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9728,12.5366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.8190,12.5029,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8338,12.4906,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.7144,12.5411,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8843,12.3940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7850,12.4473,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8191,12.3657,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8335,12.5340,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.8644,13.0159,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.9507,12.5049,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.6935,12.5040,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7879,12.4541,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.7540,12.5031,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.8076,12.5134,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.7465,12.4742,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.9037,12.4123,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.7188,12.4138,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.3059,12.5318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9823,12.4973,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.6884,12.4645,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.8940,12.4464,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7762,12.5139,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.1255,12.7541,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.2761,12.8323,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,8.1386,13.4608,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.4176,12.5982,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.7640,12.5487,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.2297,12.5550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0620,12.6778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0455,12.5468,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.3657,12.4902,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9757,12.6512,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.9170,12.7227,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9401,12.6063,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.7345,12.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.8244,12.5339,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.9593,12.4012,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8215,12.3890,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.9062,12.4190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8350,12.4525,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.7963,13.0227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.7885,12.4384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.7230,12.4311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.8891,12.2128,0.0268,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.8637,12.3970,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.7765,12.4192,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.2790,12.4209,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.0347,12.5288,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8505,12.4847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.9220,12.5023,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.7743,12.5441,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.5797,12.6436,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.5345,12.5327,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.3979,12.4428,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.4828,12.5412,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.4801,12.5101,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.4155,13.0437,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.6890,12.5115,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.8898,12.4977,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.7932,12.5410,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.8242,12.4294,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.0350,12.4549,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8238,12.5573,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.7236,12.6007,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.8200,12.4249,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.8362,12.4908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.8064,12.4572,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.7677,12.5542,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.7741,12.5466,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7595,12.5171,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.7864,12.6433,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.7739,12.6458,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.1786,13.1150,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.6786,12.4232,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.5771,12.4994,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.6345,12.5499,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8272,12.3972,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.7549,12.3915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,8.0745,12.5348,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.9776,12.4971,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.9545,12.4761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7937,12.6285,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.0384,12.4219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.8932,12.3905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.7229,12.4597,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.1635,12.4329,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7570,12.4065,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.9029,12.4508,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.8282,13.0655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.9848,12.5590,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,8.1303,12.4795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.9064,12.5645,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.8875,12.6726,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.5075,12.6133,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.8395,12.4798,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.8948,13.0335,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9515,12.9916,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.5741,12.4739,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.5489,12.4366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.6627,12.4723,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.9988,12.5318,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8588,12.4949,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.8193,12.4565,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.txt new file mode 100644 index 0000000..e24db76 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.txt @@ -0,0 +1,49 @@ +run_index=3 +resolution=4096x2304 +started_at=2026-05-15 13:10:46 KST +Now drawing from 'AC Power' -InternalBattery-0 (id=20578403) 100%; charged; 0:00 remaining present: true +--- encoder output --- +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.853 +avg_encode_latency_ms=12.742 +p95_encode_latency_ms=13.087 +max_encode_latency_ms=33.270 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.csv +--- run footer --- +finished_at=2026-05-15 13:10:51 KST +exit_code=0 diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.csv b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.csv new file mode 100644 index 0000000..683db98 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.csv @@ -0,0 +1,13 @@ +run_index,resolution,fps,bitrate_mbps,prioritize_speed,status,frames_requested,frames_submitted,frames_encoded,failed_frames,avg_generate_ms,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,log,csv +1,4096x2304,60,120,on,0,300,300,300,0,7.790,12.686,13.017,35.667,4452432,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_4096_2304.csv +1,3840x2160,60,120,on,0,300,300,300,0,7.230,11.321,11.668,31.097,4153682,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3840_2160.csv +1,3200x1800,60,120,on,0,300,300,300,0,5.631,11.411,11.376,68.953,3284517,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_3200_1800.csv +1,2560x1440,60,120,on,0,300,300,300,0,4.650,6.147,6.455,23.784,2229186,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run1_2560_1440.csv +2,4096x2304,60,120,on,0,300,300,300,0,7.882,12.747,13.176,32.598,4452432,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_4096_2304.csv +2,3840x2160,60,120,on,0,300,300,300,0,7.243,11.329,11.659,31.184,4153682,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3840_2160.csv +2,3200x1800,60,120,on,0,300,300,300,0,5.526,11.185,11.168,54.271,3284517,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_3200_1800.csv +2,2560x1440,60,120,on,0,300,300,300,0,4.616,6.136,6.431,23.552,2229186,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run2_2560_1440.csv +3,4096x2304,60,120,on,0,300,300,300,0,7.853,12.742,13.087,33.270,4452432,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_4096_2304.csv +3,3840x2160,60,120,on,0,300,300,300,0,7.285,11.349,11.719,30.953,4153682,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3840_2160.csv +3,3200x1800,60,120,on,0,300,300,300,0,5.611,11.524,11.218,74.588,3284517,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_3200_1800.csv +3,2560x1440,60,120,on,0,300,300,300,0,4.809,6.184,6.472,23.565,2229186,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.txt,benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/run3_2560_1440.csv diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.md b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.md new file mode 100644 index 0000000..7e7904c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/summary.md @@ -0,0 +1,17 @@ +# Single Stream Stability Matrix + +- Duration per run: `5` seconds +- Repeats per resolution: `3` +- Cooldown between cases: `3` seconds +- Codec: HEVC +- Source: synthetic NV12 +- Bitrate/DataRateLimits: `120 Mbps` +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Prioritize speed: `on` +- Main table: `summary.csv` +- Aggregate: `aggregate.md` + +## Intent + +This isolates single-stream sender latency variance for 4096x2304, 3840x2160, +3200x1800, and 2560x1440 before choosing wired or wireless fallback profiles. diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/system_profile_sanitized.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/system_profile_sanitized.txt new file mode 100644 index 0000000..a82dfed --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/system_profile_sanitized.txt @@ -0,0 +1,52 @@ +Hardware: + + Hardware Overview: + + Model Name: MacBook Pro + Model Identifier: MacBookPro18,4 + Model Number: Z15H000RNKH/A + Chip: Apple M1 Max + Total Number of Cores: 10 (8 performance and 2 efficiency) + Memory: 32 GB + System Firmware Version: 10151.140.19 + OS Loader Version: 10151.140.19 + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + Sidecar Display: + Resolution: 2360 x 1640 + UI Looks like: 1180 x 820 @ 60.00Hz + Framebuffer Depth: 24-Bit Color (ARGB8888) + Mirror: Off + Connection Type: AirPlay + Virtual Device: Yes + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported diff --git a/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/video_encoders.txt b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/video_encoders.txt new file mode 100644 index 0000000..5036ffb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x14770d380>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv new file mode 100644 index 0000000..fddbcab --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv @@ -0,0 +1,1201 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9290,23.8049,0.0200,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8394,23.4527,0.0147,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.7848,25.5817,0.0116,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7966,25.5451,0.0108,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9290,5.7157,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8394,5.5878,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.7848,10.4285,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7966,10.4028,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9290,5.6343,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8394,5.5343,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.7848,10.3349,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7966,10.3488,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9290,5.6721,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8394,5.5567,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.7848,10.3668,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7966,10.3900,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9290,5.5869,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8394,5.5942,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.7848,10.4043,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7966,10.4520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9290,5.6762,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8394,5.5645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.7848,10.5473,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7966,10.5423,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9290,5.6558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8394,5.5646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.7848,10.6516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7966,10.6933,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9290,5.7125,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8394,5.6299,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.7848,10.5053,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7966,10.5409,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9290,5.5412,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8394,5.4405,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.7848,10.3262,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7966,10.3295,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9290,5.6115,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8394,5.5451,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.7848,10.5123,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7966,10.5334,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9290,5.5522,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8394,5.4574,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.7848,10.3063,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7966,10.2927,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9290,5.6758,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8394,5.5447,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.7848,10.3888,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7966,10.3749,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9290,5.6726,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8394,5.5154,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.7848,10.3973,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7966,10.3481,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9290,5.8421,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8394,5.5764,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.7848,10.5615,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7966,10.4637,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9290,5.8722,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8394,5.7025,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.7848,10.5890,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7966,10.4864,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9290,5.8113,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8394,5.6110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.7848,10.4741,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7966,10.3760,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9290,5.8227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8394,5.6775,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.7848,10.5087,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7966,10.4640,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9290,5.6920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8394,5.6055,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.7848,10.5795,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7966,10.5882,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9290,5.6569,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8394,5.5701,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.7848,10.4962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7966,10.4542,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9290,5.7638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8394,5.6068,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.7848,10.4927,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7966,10.4786,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9290,5.6811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8394,5.5284,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.7848,10.3343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7966,10.3272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9290,5.7365,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8394,5.5663,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.7848,10.3403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7966,10.3021,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9290,5.7870,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8394,5.6028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.7848,10.3987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7966,10.3720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9290,5.8191,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8394,5.6453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.7848,10.4454,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7966,10.3235,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9290,5.8757,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8394,5.6305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.7848,10.4529,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7966,10.3889,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9290,6.8295,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8394,5.8843,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.7848,10.2830,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7966,10.1909,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9290,6.4450,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8394,6.1427,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.7848,10.2922,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7966,9.9406,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9290,6.6760,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8394,5.8977,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.7848,10.4370,0.0314,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7966,10.2628,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9290,6.5837,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8394,5.8648,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.7848,10.0539,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7966,9.9943,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9290,6.4225,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8394,5.7988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.7848,9.8475,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7966,9.6681,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9290,7.1742,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8394,6.3881,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.7848,10.7685,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7966,10.5513,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9290,7.3314,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8394,7.0253,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.7848,10.2393,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7966,9.9659,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9290,6.8350,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8394,5.9416,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.7848,10.3542,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7966,10.0645,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9290,6.4961,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8394,5.8252,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.7848,10.4979,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7966,10.2881,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9290,6.7164,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8394,5.9330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.7848,9.9257,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7966,10.1375,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9290,6.8685,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8394,5.9521,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.7848,10.1270,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7966,10.0171,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9290,6.0136,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8394,5.6963,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.7848,10.8812,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7966,10.6225,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9290,7.0758,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8394,6.2102,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.7848,10.3100,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7966,10.1177,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9290,6.6353,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8394,5.9010,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.7848,10.3012,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7966,10.0467,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9290,6.9693,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8394,5.9578,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.7848,10.8840,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7966,11.1801,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9290,10.3160,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8394,9.0441,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.7848,11.2723,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7966,10.9001,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9290,6.2615,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8394,5.8953,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.7848,11.0195,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7966,10.7218,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9290,6.1353,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8394,5.6834,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.7848,10.4280,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7966,10.2016,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9290,6.3246,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8394,5.7819,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.7848,10.3595,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7966,9.7464,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9290,6.2516,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8394,5.7027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.7848,10.5800,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7966,10.3750,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9290,6.2035,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8394,5.7273,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.7848,10.4533,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7966,10.3977,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9290,6.6110,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8394,5.8606,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.7848,10.4578,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7966,10.3620,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9290,6.4020,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8394,5.9285,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.7848,10.2619,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7966,10.0762,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9290,6.2164,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8394,5.8382,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.7848,10.1315,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7966,9.9188,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9290,6.6526,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8394,5.9207,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.7848,10.3002,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7966,9.9874,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9290,6.4466,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8394,5.8721,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.7848,10.2625,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7966,10.0127,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9290,6.4934,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8394,5.8679,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.7848,10.0182,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7966,9.9565,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9290,6.6400,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8394,5.9035,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.7848,9.5603,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7966,9.9942,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9290,6.4029,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8394,5.8041,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.7848,10.1405,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7966,10.0307,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9290,6.7736,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8394,6.0226,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.7848,10.1455,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7966,9.9978,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9290,6.7445,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8394,5.7913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.7848,9.9217,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7966,9.9085,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9290,6.7051,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8394,5.8515,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.7848,10.0048,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7966,9.9817,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9290,6.5698,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8394,5.8283,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.7848,10.1618,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7966,10.0059,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9290,7.0577,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8394,5.8993,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.7848,9.9648,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7966,9.8948,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9290,6.5946,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8394,5.9325,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.7848,10.1967,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7966,10.0069,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9290,6.6778,0.1784,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8394,5.8101,0.1070,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.7848,10.0067,0.0456,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.7966,9.8901,0.0380,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,4.9290,6.4547,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8394,5.9576,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.7848,10.1233,0.0268,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.7966,10.0783,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,4.9290,6.6245,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8394,5.8322,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.7848,10.2446,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.7966,10.0339,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,4.9290,6.5347,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8394,5.8846,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.7848,9.9755,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.7966,9.7766,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,4.9290,6.6629,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8394,5.8292,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.7848,9.9902,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.7966,10.0023,0.0295,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,4.9290,6.8480,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8394,5.7422,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.7848,10.3068,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.7966,10.2700,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,4.9290,6.6445,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8394,5.7323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.7848,10.3317,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.7966,10.1686,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,4.9290,7.0785,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8394,5.9632,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.7848,10.1374,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.7966,9.9556,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,4.9290,6.5613,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8394,5.8547,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.7848,10.2022,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.7966,10.1074,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,4.9290,6.5581,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8394,5.9212,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.7848,10.0479,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.7966,10.0108,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,4.9290,6.6059,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8394,5.7894,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.7848,10.0695,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.7966,9.9489,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,4.9290,6.4763,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8394,5.8673,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.7848,10.1890,0.0219,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.7966,10.0231,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,4.9290,7.1873,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8394,5.9404,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.7848,10.6691,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.7966,10.4236,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,4.9290,6.3947,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8394,5.7968,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.7848,14.9842,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.7966,14.6042,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,4.9290,6.6883,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8394,5.9476,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.7848,10.8432,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.7966,10.6449,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,4.9290,6.5329,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8394,5.8088,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.7848,10.4838,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.7966,10.3622,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,4.9290,6.4781,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8394,6.0001,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.7848,10.2925,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.7966,10.1946,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,4.9290,6.2967,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8394,5.8480,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.7848,10.1692,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7966,10.0982,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,4.9290,6.3736,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8394,5.8625,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.7848,10.0940,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.7966,10.0687,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,4.9290,6.2796,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8394,5.7635,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.7848,10.1693,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.7966,10.0143,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,4.9290,6.4775,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8394,5.8108,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.7848,10.2142,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.7966,10.1454,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,4.9290,6.3092,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8394,5.8414,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.7848,10.1911,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.7966,10.0231,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,4.9290,6.3628,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8394,5.8785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.7848,10.1714,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.7966,10.0219,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,4.9290,6.3394,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8394,5.8074,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.7848,10.2889,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.7966,10.0904,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,4.9290,6.5992,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8394,5.7928,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.7848,10.1232,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.7966,10.0077,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,4.9290,6.4838,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8394,5.8921,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.7848,10.0136,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.7966,9.9750,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,4.9290,6.4627,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8394,5.8511,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.7848,10.2937,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.7966,10.0042,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,4.9290,6.6855,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8394,5.8753,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.7848,10.2133,0.0338,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.7966,10.0467,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,4.9290,6.5521,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8394,5.8841,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.7848,10.1231,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.7966,9.9947,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,4.9290,6.8450,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8394,6.1868,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.7848,10.2690,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.7966,9.9420,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,4.9290,6.8120,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8394,5.8957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.7848,10.3075,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.7966,10.3044,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,4.9290,6.4515,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8394,5.9538,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.7848,10.0832,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.7966,9.9708,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,4.9290,6.6475,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8394,5.7823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.7848,9.9880,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.7966,9.7235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,4.9290,6.5578,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8394,5.8475,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.7848,10.0484,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.7966,10.0317,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,4.9290,6.5075,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8394,5.8420,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.7848,10.0895,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.7966,10.0634,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,4.9290,6.5567,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8394,5.8091,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.7848,10.1477,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.7966,10.0057,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,4.9290,6.8643,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8394,5.9200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.7848,10.0065,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.7966,10.1645,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,4.9290,6.8844,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8394,5.8652,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.7848,10.4197,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.7966,10.3150,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,4.9290,6.4492,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8394,5.9044,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.7848,10.1244,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.7966,10.0029,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,4.9290,6.8760,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8394,5.9872,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.7848,10.1406,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7966,10.4865,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,4.9290,6.5151,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8394,5.8014,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.7848,10.0675,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.7966,9.9609,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,4.9290,6.4224,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8394,5.8313,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.7848,9.9911,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.7966,9.9708,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,4.9290,6.9188,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8394,5.8939,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.7848,10.2037,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.7966,10.2235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,4.9290,6.4644,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8394,5.7990,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.7848,10.5163,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.7966,10.1333,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,4.9290,6.6659,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8394,5.8744,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.7848,10.0531,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.7966,10.0161,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,4.9290,6.4831,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8394,5.8144,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.7848,10.3070,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.7966,9.9682,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,4.9290,6.5423,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8394,5.9016,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.7848,9.9908,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.7966,9.9908,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,4.9290,6.7935,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8394,6.1690,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.7848,10.3373,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.7966,10.0181,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,4.9290,6.4933,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8394,5.7819,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.7848,10.4817,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.7966,10.0650,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,4.9290,6.7817,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8394,5.8753,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.7848,10.4829,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7966,10.3534,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,4.9290,6.8514,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8394,5.9091,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.7848,10.5075,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7966,10.3410,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,4.9290,6.8253,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8394,6.0766,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.7848,10.7360,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7966,10.6500,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,4.9290,6.6132,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8394,5.8957,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.7848,10.0701,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.7966,9.9845,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,4.9290,6.4456,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8394,5.8379,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.7848,10.1250,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.7966,10.0372,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,4.9290,6.3867,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8394,5.6655,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.7848,10.1513,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.7966,10.0297,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,4.9290,6.1085,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8394,5.8237,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.7848,10.1236,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.7966,9.9773,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,4.9290,6.6058,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8394,5.9797,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.7848,11.2528,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.7966,11.0603,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,4.9290,6.1147,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8394,5.7173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.7848,10.2544,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.7966,10.0231,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,4.9290,6.1259,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8394,5.7232,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.7848,10.0868,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.7966,10.1956,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,4.9290,5.9015,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8394,5.6387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.7848,10.1707,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.7966,10.1825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,4.9290,6.4718,0.0810,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8394,5.9277,0.0722,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.7848,10.4040,0.0176,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.7966,10.5147,0.0383,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,4.9290,6.2036,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8394,5.9175,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.7848,10.1948,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.7966,10.2382,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,4.9290,6.3572,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8394,6.0330,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.7848,10.1163,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.7966,10.1902,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,4.9290,6.1833,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8394,5.8701,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.7848,10.0647,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.7966,10.1097,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,4.9290,6.4190,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8394,5.8793,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.7848,10.3392,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.7966,10.0960,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,4.9290,6.5624,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8394,6.0096,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.7848,10.0867,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.7966,9.9678,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,4.9290,6.1938,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8394,5.7955,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.7848,9.5260,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.7966,8.7780,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,4.9290,6.3158,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8394,5.7190,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.7848,10.4600,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.7966,10.3407,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,4.9290,6.1074,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8394,5.7257,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.7848,10.6322,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.7966,10.5408,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,4.9290,5.9632,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8394,5.7315,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.7848,10.4695,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.7966,10.4305,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,4.9290,5.9440,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8394,5.6921,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.7848,10.4606,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.7966,10.3905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,4.9290,5.7379,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8394,5.6038,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.7848,10.2571,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.7966,10.1992,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,4.9290,5.9082,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8394,5.7517,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.7848,10.8772,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.7966,10.6454,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,4.9290,6.5637,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8394,5.8789,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.7848,13.5382,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.7966,13.1293,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,4.9290,6.6139,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8394,5.8421,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.7848,10.7521,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.7966,10.6641,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,4.9290,6.6936,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8394,5.9341,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.7848,10.0117,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.7966,9.9882,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,4.9290,6.4423,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8394,5.9011,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.7848,10.0660,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.7966,10.0102,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,4.9290,6.6385,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8394,6.1315,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.7848,10.2049,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.7966,10.1064,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,4.9290,6.1882,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8394,5.7145,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.7848,10.0116,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.7966,9.7937,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,4.9290,6.5455,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8394,5.9164,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.7848,10.0922,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.7966,10.0212,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,4.9290,6.3045,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8394,5.8349,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.7848,10.1357,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.7966,9.9880,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9290,6.2581,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8394,5.8270,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.7848,9.9564,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.7966,9.8648,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,4.9290,6.5562,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8394,5.8723,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.7848,10.5940,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7966,10.5309,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,4.9290,6.3957,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8394,5.8434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.7848,10.0773,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7966,9.9969,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,4.9290,6.5557,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8394,5.8282,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.7848,10.0898,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.7966,10.0268,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,4.9290,6.7134,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8394,5.8908,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.7848,10.5312,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.7966,10.1010,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,4.9290,6.3521,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8394,5.7605,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.7848,10.4485,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.7966,10.0765,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,4.9290,6.8233,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8394,6.0080,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.7848,10.1292,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.7966,10.0705,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,4.9290,6.4692,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8394,5.7708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.7848,9.9200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.7966,9.8635,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,4.9290,6.5544,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8394,6.1252,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.7848,10.6164,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.7966,10.3703,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,4.9290,8.6230,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8394,7.3950,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.7848,9.8367,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.7966,7.7594,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,4.9290,6.9030,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8394,5.8137,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.7848,10.0775,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.7966,10.0035,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,4.9290,6.8341,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8394,5.9611,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.7848,10.1720,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.7966,10.0228,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,4.9290,6.4296,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8394,5.7402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.7848,10.2462,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.7966,9.9059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,4.9290,6.7294,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8394,5.9405,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.7848,10.1439,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.7966,10.0800,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,4.9290,6.5243,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8394,5.8308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.7848,10.2616,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7966,10.0332,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,4.9290,6.7018,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8394,5.9865,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.7848,10.3074,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.7966,10.1561,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,4.9290,7.3118,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8394,6.2609,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.7848,10.5437,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.7966,10.4173,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,4.9290,6.6462,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8394,5.8705,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.7848,10.1090,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.7966,9.9116,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,4.9290,6.7248,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8394,5.8774,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.7848,10.1415,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.7966,10.0798,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,4.9290,6.4515,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8394,5.8071,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.7848,10.0382,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.7966,10.0054,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,4.9290,6.6571,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8394,5.9367,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.7848,10.1208,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.7966,10.0362,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,4.9290,6.5265,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8394,5.8049,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.7848,10.0815,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.7966,9.9507,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,4.9290,6.7213,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8394,5.9788,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.7848,10.1861,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.7966,9.9344,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,4.9290,6.6097,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8394,5.9180,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.7848,10.0770,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.7966,9.9982,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,4.9290,6.5113,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8394,5.7824,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.7848,10.1409,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7966,10.4923,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,4.9290,6.5167,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8394,5.7243,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.7848,10.3347,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7966,10.2344,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,4.9290,6.9102,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8394,6.0751,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.7848,10.3047,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7966,9.9340,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,4.9290,6.5829,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8394,5.9298,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.7848,10.0491,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.7966,10.0185,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,4.9290,6.2442,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8394,5.7640,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.7848,10.3673,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.7966,10.2323,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,4.9290,6.2306,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8394,5.7324,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.7848,10.4272,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.7966,10.1535,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,4.9290,5.8338,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8394,5.6143,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.7848,10.3267,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.7966,10.2541,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,4.9290,6.1311,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8394,5.7219,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.7848,10.7906,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.7966,10.7033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,4.9290,6.0656,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8394,5.6687,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.7848,10.8115,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.7966,10.7497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,4.9290,5.9666,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8394,5.6850,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.7848,10.7797,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.7966,10.7363,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,4.9290,6.2637,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8394,5.8460,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.7848,10.8766,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.7966,10.8649,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,4.9290,6.1814,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8394,5.8733,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.7848,10.7725,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.7966,10.7615,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,4.9290,5.8683,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8394,5.5848,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.7848,10.5979,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.7966,10.6366,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,4.9290,6.9026,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8394,6.5299,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.7848,11.5106,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.7966,11.5250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,4.9290,5.9421,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8394,5.6542,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.7848,10.8918,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,2.7966,10.7760,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,4.9290,48.6617,0.0135,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8394,30.6148,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.7848,26.1205,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.7966,26.1566,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,4.9290,5.7744,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8394,5.6806,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.7848,10.4512,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.7966,10.4598,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,4.9290,5.7098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8394,5.6331,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.7848,10.4301,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.7966,10.4424,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,4.9290,5.7334,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8394,5.6545,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.7848,10.5871,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.7966,10.5840,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,4.9290,5.6434,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8394,5.5170,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.7848,10.4445,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.7966,10.4566,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,4.9290,5.7566,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8394,5.5497,0.0194,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.7848,10.4838,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.7966,10.4648,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,4.9290,5.7038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8394,5.5228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.7848,10.4652,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.7966,10.4350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,4.9290,5.7730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8394,5.6123,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.7848,10.4371,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.7966,10.4076,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,4.9290,5.7323,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8394,5.6157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.7848,10.5153,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.7966,10.4032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,4.9290,5.7027,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8394,5.5934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.7848,10.4337,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.7966,10.4130,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,4.9290,5.8080,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8394,5.7006,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.7848,10.4627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.7966,10.4022,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,4.9290,5.9408,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8394,5.6841,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.7848,10.5666,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.7966,10.4835,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,4.9290,5.8544,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8394,5.6696,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.7848,10.6647,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.7966,10.6156,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,4.9290,6.1444,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8394,5.8777,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.7848,10.7698,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.7966,10.8166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,4.9290,6.7255,0.0303,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8394,5.9483,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.7848,10.7254,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.7966,10.5877,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,4.9290,6.7407,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8394,6.0242,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.7848,10.6429,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.7966,10.2365,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,4.9290,6.4780,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8394,5.9618,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.7848,10.5182,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.7966,10.1133,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,4.9290,6.5977,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8394,5.9530,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.7848,10.5077,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.7966,10.3296,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,4.9290,6.8013,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8394,5.9910,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.7848,10.2948,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.7966,9.9780,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,4.9290,6.6314,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8394,5.9385,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.7848,10.4284,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.7966,10.3200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,4.9290,6.7275,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8394,6.1056,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.7848,10.7598,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.7966,10.5204,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,4.9290,6.7941,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8394,6.3667,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.7848,9.9145,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.7966,10.0838,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,4.9290,8.5315,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8394,5.9194,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.7848,10.2606,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7966,10.3062,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,4.9290,6.7136,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8394,5.9189,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.7848,10.8915,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.7966,10.7596,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,4.9290,8.5138,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8394,7.7402,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.7848,11.7567,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.7966,11.3885,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,4.9290,6.7874,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8394,5.8727,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.7848,10.7355,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.7966,10.3812,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,4.9290,6.5263,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8394,5.9683,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.7848,10.4715,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.7966,10.2493,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,4.9290,6.5785,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8394,6.0314,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.7848,8.7777,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.7966,8.8232,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,4.9290,6.4380,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8394,6.0720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.7848,10.9954,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.7966,10.7995,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,4.9290,6.3262,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8394,5.8872,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.7848,10.2607,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.7966,11.5310,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,4.9290,6.6567,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8394,5.7422,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.7848,10.1497,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.7966,10.3235,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,4.9290,6.9505,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8394,5.9389,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.7848,10.3859,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.7966,10.1587,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,4.9290,6.5251,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8394,5.9443,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.7848,10.3423,0.0261,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.7966,10.2127,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,4.9290,6.6760,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8394,5.9293,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.7848,10.7941,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.7966,10.4194,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,4.9290,6.5442,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8394,5.7858,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.7848,10.6038,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.7966,10.4285,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,4.9290,6.4740,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8394,5.9105,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.7848,10.2261,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.7966,10.1572,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9290,7.4272,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8394,6.6073,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.7848,10.4879,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.7966,10.3651,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,4.9290,7.1056,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8394,6.0810,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.7848,11.0492,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.7966,10.7650,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,4.9290,7.0070,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8394,5.9679,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.7848,10.2683,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.7966,10.0727,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,4.9290,7.0633,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8394,6.0863,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.7848,10.3006,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.7966,10.1303,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,4.9290,6.8808,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8394,5.9140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.7848,11.0421,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.7966,10.7912,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,4.9290,6.5849,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8394,5.8600,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.7848,9.7080,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.7966,10.1464,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,4.9290,6.6193,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8394,5.8962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.7848,10.6005,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.7966,10.1725,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9290,7.5021,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8394,6.5541,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.7848,10.3314,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.7966,10.0790,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,4.9290,6.8662,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8394,5.8572,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.7848,10.1783,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.7966,10.0075,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,4.9290,7.0208,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8394,6.0089,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.7848,10.6350,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.7966,10.4521,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,4.9290,6.8300,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8394,6.0666,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.7848,10.2734,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.7966,10.0705,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,4.9290,6.6758,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8394,5.9056,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.7848,10.5358,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.7966,10.1268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,4.9290,6.9317,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8394,6.0545,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.7848,10.6041,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.7966,10.3871,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9290,7.0738,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8394,6.1795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.7848,10.9510,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.7966,10.5486,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,4.9290,7.1188,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8394,5.9232,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.7848,10.2730,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.7966,10.0910,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9290,6.8389,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8394,5.9532,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.7848,10.2255,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.7966,10.1867,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,4.9290,7.2161,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8394,6.0933,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.7848,11.1521,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.7966,10.5741,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,4.9290,7.1820,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8394,5.8995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.7848,10.2156,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.7966,10.2494,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,4.9290,6.9027,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8394,6.0559,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.7848,11.2444,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7966,10.8543,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,4.9290,7.1719,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8394,6.1028,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.7848,10.4088,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7966,10.1180,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9290,6.7677,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8394,5.9424,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.7848,10.0891,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7966,10.0637,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,4.9290,6.9420,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8394,5.9250,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.7848,10.2479,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7966,10.0859,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,4.9290,6.8485,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8394,6.0905,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.7848,10.9400,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.7966,10.7862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,4.9290,6.8991,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8394,6.0083,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.7848,10.6390,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.7966,10.4307,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,4.9290,6.0290,0.0257,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8394,5.6135,0.0157,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.7848,10.2403,0.0248,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.7966,10.1768,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,4.9290,6.0015,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8394,5.7452,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.7848,10.5566,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.7966,10.3983,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,4.9290,6.5817,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8394,5.9967,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.7848,10.6728,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.7966,10.5574,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,4.9290,6.4430,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8394,5.9842,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.7848,10.1908,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.7966,10.1539,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,4.9290,6.4082,0.0388,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8394,5.9873,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.7848,10.5881,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.7966,10.2164,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,4.9290,6.4368,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8394,5.8326,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.7848,10.1317,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.7966,10.0752,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,4.9290,6.4505,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8394,5.7297,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.7848,9.9464,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.7966,9.8156,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,4.9290,5.9960,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8394,5.6640,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.7848,10.2876,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.7966,10.0969,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,4.9290,5.9853,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8394,5.6434,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.7848,10.5216,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.7966,10.4845,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,4.9290,5.8458,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8394,5.6232,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.7848,10.4694,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.7966,10.4015,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,4.9290,5.7531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8394,5.5741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.7848,10.3773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.7966,10.3531,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,4.9290,5.7191,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8394,5.5842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.7848,10.3075,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.7966,10.2570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,4.9290,5.8465,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8394,5.6849,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.7848,10.4391,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.7966,10.3528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,4.9290,5.7314,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8394,5.6038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.7848,10.3044,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.7966,10.2703,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,4.9290,6.8605,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8394,5.8885,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.7848,10.8202,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.7966,10.5844,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,4.9290,6.8983,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8394,5.9982,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.7848,10.0749,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.7966,10.0021,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,4.9290,7.0610,0.0237,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8394,6.3887,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.7848,10.2945,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.7966,10.0149,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,4.9290,7.0476,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8394,5.8988,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.7848,10.5219,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7966,10.2176,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,4.9290,6.8176,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8394,5.8156,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.7848,10.8069,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.7966,10.4423,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,4.9290,6.8217,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8394,5.9048,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.7848,10.5430,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.7966,10.3622,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,4.9290,7.0387,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8394,5.8928,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.7848,10.5568,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.7966,10.2942,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,4.9290,6.8058,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8394,5.8771,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.7848,10.2144,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.7966,10.0996,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,4.9290,7.1303,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8394,6.0372,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.7848,10.4738,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.7966,10.3301,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,4.9290,6.7530,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8394,5.9367,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.7848,10.3476,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.7966,10.0218,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,4.9290,6.9763,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8394,6.0634,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.7848,10.7536,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.7966,10.3623,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,4.9290,6.9736,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8394,5.8230,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.7848,10.4644,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.7966,10.1890,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,4.9290,6.6142,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8394,5.7555,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.7848,10.6031,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.7966,10.3877,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,4.9290,6.9093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8394,5.8732,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.7848,10.6280,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.7966,10.3660,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,4.9290,6.4934,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8394,5.7761,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.7848,10.7291,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.7966,10.4888,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,4.9290,6.6862,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8394,6.0182,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.7848,10.2853,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.7966,10.0605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,4.9290,7.2658,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8394,6.0359,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.7848,10.8070,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.7966,10.6765,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,4.9290,7.2347,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8394,6.4484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.7848,10.1820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.7966,9.9430,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,4.9290,6.9569,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8394,5.9846,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.7848,10.2587,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.7966,9.9680,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,4.9290,6.6868,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8394,5.8035,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.7848,10.2126,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.7966,10.0339,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,4.9290,6.5829,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8394,5.9218,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.7848,10.1297,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.7966,10.0586,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,4.9290,6.6642,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8394,5.8155,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.7848,10.2503,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.7966,10.0462,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,4.9290,6.5972,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8394,5.7418,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.7848,10.3997,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.7966,10.2003,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,4.9290,6.8126,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8394,5.9473,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.7848,10.6150,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.7966,10.4020,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,4.9290,6.5027,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8394,5.8332,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.7848,10.1163,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.7966,10.0201,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,4.9290,7.2901,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8394,5.8092,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.7848,10.3402,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.7966,10.2046,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,4.9290,6.3651,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8394,5.8115,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.7848,10.1047,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.7966,10.1900,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,4.9290,6.3457,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8394,5.7422,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.7848,10.6511,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.7966,10.4390,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,4.9290,6.8125,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8394,5.8443,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.7848,10.5390,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.7966,10.4090,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,4.9290,6.9121,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8394,6.1646,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.7848,10.3776,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.7966,10.0615,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,4.9290,6.7483,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8394,5.9761,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.7848,10.3114,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.7966,10.1176,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,4.9290,6.8445,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8394,5.9211,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.7848,10.4914,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.7966,10.2565,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,4.9290,6.5808,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8394,5.8882,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.7848,10.0794,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.7966,10.0148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,4.9290,6.7618,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8394,5.8453,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.7848,10.4318,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.7966,10.0820,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,4.9290,6.5050,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8394,5.7751,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.7848,10.0043,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.7966,9.9370,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,4.9290,6.5265,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8394,5.9097,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.7848,10.2870,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.7966,10.0657,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,4.9290,6.6915,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8394,5.9333,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.7848,10.1894,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7966,9.9896,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,4.9290,6.6285,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8394,6.2254,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.7848,10.2493,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.7966,10.0007,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,4.9290,8.0964,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8394,6.8518,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.7848,10.9816,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.7966,10.5651,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,4.9290,6.8022,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8394,5.8645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.7848,10.0883,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.7966,10.0459,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,4.9290,6.8407,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8394,5.8385,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.7848,10.0735,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.7966,10.0233,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,4.9290,6.7840,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8394,5.9054,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.7848,9.8881,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.7966,10.1532,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,4.9290,6.4662,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8394,5.8533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.7848,10.0872,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.7966,10.0134,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,4.9290,6.9513,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8394,5.9797,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.7848,10.1966,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.7966,10.0064,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,4.9290,6.5194,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8394,5.8552,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.7848,10.0058,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.7966,9.9794,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,4.9290,6.7166,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8394,5.9450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.7848,11.7776,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.7966,11.6491,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt new file mode 100644 index 0000000..6dfcdf5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt @@ -0,0 +1,63 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +warmup_frames=0 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +steady_frames_encoded=300 +elapsed_seconds=4.999 +effective_logical_fps=60.007 +tile_frames_requested=1200 +tile_frames_encoded=1200 +failed_tile_frames=0 +avg_encode_latency_ms=12.542 +p95_encode_latency_ms=12.741 +max_encode_latency_ms=131.845 +avg_steady_encode_latency_ms=12.542 +p95_steady_encode_latency_ms=12.741 +max_steady_encode_latency_ms=131.845 +avg_tile_encode_latency_ms=8.400 +p95_tile_encode_latency_ms=10.760 +avg_max_tile_encode_latency_ms=10.582 +p95_max_tile_encode_latency_ms=11.021 +avg_steady_max_tile_encode_latency_ms=10.582 +p95_steady_max_tile_encode_latency_ms=11.021 +payload_bytes=3903440 +send_target=none +csv=benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md new file mode 100644 index 0000000..f0f734f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md @@ -0,0 +1,24 @@ +# Tiled Deadline Analysis — m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 300 | +| avg_group_latency_ms | 12.542 | +| p95_group_latency_ms | 12.741 | +| max_group_latency_ms | 131.845 | +| effective_logical_fps | 60.007 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 300 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 100 | 33.333% | 0, 27, 30, 32, 33, 34, 37, 39, 40, 52, 55, 56, ... | +| 16.67 | 2 | 0.667% | 0, 180 | +| 20.00 | 2 | 0.667% | 0, 180 | +| 33.33 | 2 | 0.667% | 0, 180 | +| 50.00 | 2 | 0.667% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.542 | 12.741 | 131.845 | diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv new file mode 100644 index 0000000..0534abe --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv @@ -0,0 +1,301 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,98.7768,25.5817,231707 +1,4,0,10.9158,10.4285,65901 +2,4,0,10.7834,10.3488,36886 +3,4,0,10.8590,10.3900,69404 +4,4,0,10.8188,10.4520,87864 +5,4,0,10.9319,10.5473,53700 +6,4,0,11.0365,10.6933,24415 +7,4,0,10.9191,10.5409,15407 +8,4,0,10.7403,10.3295,12151 +9,4,0,10.9410,10.5334,11449 +10,4,0,10.7245,10.3063,8599 +11,4,0,10.7868,10.3888,6107 +12,4,0,10.7689,10.3973,5132 +13,4,0,11.0408,10.5615,3880 +14,4,0,11.1013,10.5890,4001 +15,4,0,11.0096,10.4741,3860 +16,4,0,11.1080,10.5087,4045 +17,4,0,11.0275,10.5882,3955 +18,4,0,10.9085,10.4962,3721 +19,4,0,10.9685,10.4927,3748 +20,4,0,10.8775,10.3343,3386 +21,4,0,10.9410,10.3403,2761 +22,4,0,11.0163,10.3987,2750 +23,4,0,10.9635,10.4454,2836 +24,4,0,11.1687,10.4529,2977 +25,4,0,11.8793,10.2830,2960 +26,4,0,11.7328,10.2922,3010 +27,4,0,12.1167,10.4370,2978 +28,4,0,11.9198,10.0539,2889 +29,4,0,11.7827,9.8475,2914 +30,4,0,12.2378,10.7685,2847 +31,4,0,11.8085,10.2393,3111 +32,4,0,12.0470,10.3542,2714 +33,4,0,12.0504,10.4979,2843 +34,4,0,12.2597,10.1375,2633 +35,4,0,11.8679,10.1270,2659 +36,4,0,11.7523,10.8812,2696 +37,4,0,12.0981,10.3100,2728 +38,4,0,11.9462,10.3012,2772 +39,4,0,13.1158,11.1801,2740 +40,4,0,13.2171,11.2723,2809 +41,4,0,11.7830,11.0195,2679 +42,4,0,11.4279,10.4280,2865 +43,4,0,11.4083,10.3595,2612 +44,4,0,11.4650,10.5800,2626 +45,4,0,11.5177,10.4533,2693 +46,4,0,11.6795,10.4578,2708 +47,4,0,11.7875,10.2619,2765 +48,4,0,11.6014,10.1315,2645 +49,4,0,11.6694,10.3002,2733 +50,4,0,11.7152,10.2625,2667 +51,4,0,11.7171,10.0182,2647 +52,4,0,12.4900,9.9942,2659 +53,4,0,11.7903,10.1405,2757 +54,4,0,11.9230,10.1455,2656 +55,4,0,12.0878,9.9217,2594 +56,4,0,12.0031,10.0048,2603 +57,4,0,11.7863,10.1618,2605 +58,4,0,12.0781,9.9648,2610 +59,4,0,11.8970,10.1967,2641 +60,4,0,11.8905,10.0067,442009 +61,4,0,11.8448,10.1233,52997 +62,4,0,11.7728,10.2446,26956 +63,4,0,11.7937,9.9755,26939 +64,4,0,12.1146,10.0023,22402 +65,4,0,12.0765,10.3068,15271 +66,4,0,11.9440,10.3317,12647 +67,4,0,12.0831,10.1374,10161 +68,4,0,11.7157,10.2022,9695 +69,4,0,11.8533,10.0479,5893 +70,4,0,11.7868,10.0695,5590 +71,4,0,11.7793,10.1890,5226 +72,4,0,12.1199,10.6691,5095 +73,4,0,16.4260,14.9842,5164 +74,4,0,12.0026,10.8432,4634 +75,4,0,11.6583,10.4838,5338 +76,4,0,11.7882,10.2925,2984 +77,4,0,11.6892,10.1692,2918 +78,4,0,11.7715,10.0940,3051 +79,4,0,11.6089,10.1693,3217 +80,4,0,11.5800,10.2142,3680 +81,4,0,11.5913,10.1911,3433 +82,4,0,11.6461,10.1714,3891 +83,4,0,11.7467,10.2889,2978 +84,4,0,11.9806,10.1232,2906 +85,4,0,11.8700,10.0136,2925 +86,4,0,11.7276,10.2937,3487 +87,4,0,11.8533,10.2133,2969 +88,4,0,11.8364,10.1231,2822 +89,4,0,11.8537,10.2690,3027 +90,4,0,12.1040,10.3075,2708 +91,4,0,11.7770,10.0832,2735 +92,4,0,11.7325,9.9880,2688 +93,4,0,11.9411,10.0484,2954 +94,4,0,11.9718,10.0895,3013 +95,4,0,11.8564,10.1477,2878 +96,4,0,12.1707,10.1645,3036 +97,4,0,11.9987,10.4197,2909 +98,4,0,11.8215,10.1244,2598 +99,4,0,12.5593,10.4865,2609 +100,4,0,11.8592,10.0675,2615 +101,4,0,11.8162,9.9911,2652 +102,4,0,12.2459,10.2235,2667 +103,4,0,11.9672,10.5163,2728 +104,4,0,12.0541,10.0531,2632 +105,4,0,11.8587,10.3070,2620 +106,4,0,11.8240,9.9908,2603 +107,4,0,11.8317,10.3373,2633 +108,4,0,11.9345,10.4817,2885 +109,4,0,11.8252,10.4829,2631 +110,4,0,12.3591,10.5075,2679 +111,4,0,11.9687,10.7360,2594 +112,4,0,11.8981,10.0701,2610 +113,4,0,11.7783,10.1250,2618 +114,4,0,11.5050,10.1513,2639 +115,4,0,11.6132,10.1236,2683 +116,4,0,12.2440,11.2528,2662 +117,4,0,11.3128,10.2544,2669 +118,4,0,11.5168,10.1956,2661 +119,4,0,11.1850,10.1825,2767 +120,4,0,11.6110,10.5147,412099 +121,4,0,11.8773,10.2382,58619 +122,4,0,11.8717,10.1902,48033 +123,4,0,11.6684,10.1097,38505 +124,4,0,11.7135,10.3392,33624 +125,4,0,11.6620,10.0867,18519 +126,4,0,11.5967,9.5260,15662 +127,4,0,11.5120,10.4600,11727 +128,4,0,11.4146,10.6322,10164 +129,4,0,11.0873,10.4695,8732 +130,4,0,11.1475,10.4606,8017 +131,4,0,10.9302,10.2571,5177 +132,4,0,11.4912,10.8772,3438 +133,4,0,15.1041,13.5382,3236 +134,4,0,11.9657,10.7521,3208 +135,4,0,11.7387,10.0117,3684 +136,4,0,11.7621,10.0660,3691 +137,4,0,11.6518,10.2049,3794 +138,4,0,11.6342,10.0116,3974 +139,4,0,11.8393,10.0922,3178 +140,4,0,11.7018,10.1357,3070 +141,4,0,11.4489,9.9564,3397 +142,4,0,11.7223,10.5940,2792 +143,4,0,11.7573,10.0773,2888 +144,4,0,11.9348,10.0898,2885 +145,4,0,12.0614,10.5312,3092 +146,4,0,11.8658,10.4485,2712 +147,4,0,12.1186,10.1292,2692 +148,4,0,11.6313,9.9200,2781 +149,4,0,11.7280,10.6164,2731 +150,4,0,12.3280,9.8367,2815 +151,4,0,11.9511,10.0775,2761 +152,4,0,12.0363,10.1720,3174 +153,4,0,11.6584,10.2462,2599 +154,4,0,11.9818,10.1439,2594 +155,4,0,11.9072,10.2616,2600 +156,4,0,11.6552,10.3074,2646 +157,4,0,12.2800,10.5437,2717 +158,4,0,11.7100,10.1090,2764 +159,4,0,11.9712,10.1415,2916 +160,4,0,11.8963,10.0382,2625 +161,4,0,11.7589,10.1208,2618 +162,4,0,11.7897,10.0815,2617 +163,4,0,11.8745,10.1861,2801 +164,4,0,11.8898,10.0770,2641 +165,4,0,12.2367,10.4923,2631 +166,4,0,11.5429,10.3347,2755 +167,4,0,11.8183,10.3047,2594 +168,4,0,11.8532,10.0491,2611 +169,4,0,11.6235,10.3673,2613 +170,4,0,11.2957,10.4272,2654 +171,4,0,11.0046,10.3267,2706 +172,4,0,11.5872,10.7906,2658 +173,4,0,11.5355,10.8115,2713 +174,4,0,11.3462,10.7797,2681 +175,4,0,11.5927,10.8766,2594 +176,4,0,11.4039,10.7725,2594 +177,4,0,11.1745,10.6366,2599 +178,4,0,12.1610,11.5250,2615 +179,4,0,11.3769,10.8918,2631 +180,4,0,131.8448,48.6617,231707 +181,4,0,11.0082,10.4598,65901 +182,4,0,10.9730,10.4424,36886 +183,4,0,11.0751,10.5871,69404 +184,4,0,10.9561,10.4566,87864 +185,4,0,11.0408,10.4838,53700 +186,4,0,10.9897,10.4652,24415 +187,4,0,10.9670,10.4371,15407 +188,4,0,11.0035,10.5153,12151 +189,4,0,11.0034,10.4337,11449 +190,4,0,11.1317,10.4627,8599 +191,4,0,11.2074,10.5666,6107 +192,4,0,11.3261,10.6647,5132 +193,4,0,11.5847,10.8166,3880 +194,4,0,11.9503,10.7254,4001 +195,4,0,12.1437,10.6429,3860 +196,4,0,12.0857,10.5182,4045 +197,4,0,12.2434,10.5077,3955 +198,4,0,12.2878,10.2948,3721 +199,4,0,11.9522,10.4284,3748 +200,4,0,12.3650,10.7598,3386 +201,4,0,12.6042,10.0838,2761 +202,4,0,14.0533,10.3062,2750 +203,4,0,12.7872,10.8915,2836 +204,4,0,13.1793,11.7567,2977 +205,4,0,12.1311,10.7355,2960 +206,4,0,12.1244,10.4715,3010 +207,4,0,12.2999,8.8232,2978 +208,4,0,11.9295,10.9954,2889 +209,4,0,13.0543,11.5310,2914 +210,4,0,12.0862,10.3235,2847 +211,4,0,12.1242,10.3859,3111 +212,4,0,12.1518,10.3423,2714 +213,4,0,12.4598,10.7941,2843 +214,4,0,11.8711,10.6038,2633 +215,4,0,11.7770,10.2261,2659 +216,4,0,11.9898,10.4879,2696 +217,4,0,12.5125,11.0492,2728 +218,4,0,12.1338,10.2683,2772 +219,4,0,12.0892,10.3006,2740 +220,4,0,12.5004,11.0421,2809 +221,4,0,12.3963,10.1464,2679 +222,4,0,12.1570,10.6005,2865 +223,4,0,12.0028,10.3314,2612 +224,4,0,12.2255,10.1783,2626 +225,4,0,12.5753,10.6350,2693 +226,4,0,11.9105,10.2734,2708 +227,4,0,12.2492,10.5358,2765 +228,4,0,12.1006,10.6041,2645 +229,4,0,12.7394,10.9510,2733 +230,4,0,12.3860,10.2730,2667 +231,4,0,12.0953,10.2255,2647 +232,4,0,12.8498,11.1521,2659 +233,4,0,12.3618,10.2494,2757 +234,4,0,13.0557,11.2444,2656 +235,4,0,12.2850,10.4088,2594 +236,4,0,12.2678,10.0891,2603 +237,4,0,12.1658,10.2479,2605 +238,4,0,12.7681,10.9400,2610 +239,4,0,11.9295,10.6390,2641 +240,4,0,11.1711,10.2403,442009 +241,4,0,11.3159,10.5566,52997 +242,4,0,11.6487,10.6728,26956 +243,4,0,11.8939,10.1908,26939 +244,4,0,11.8240,10.5881,22402 +245,4,0,11.8079,10.1317,15271 +246,4,0,11.5919,9.9464,12647 +247,4,0,11.1957,10.2876,10161 +248,4,0,11.2258,10.5216,9695 +249,4,0,11.1473,10.4694,5893 +250,4,0,11.0081,10.3773,5590 +251,4,0,10.9624,10.3075,5226 +252,4,0,11.1460,10.4391,5095 +253,4,0,10.9424,10.3044,5164 +254,4,0,12.3409,10.8202,4634 +255,4,0,12.1662,10.0749,5338 +256,4,0,12.1773,10.2945,2984 +257,4,0,12.3085,10.5219,2918 +258,4,0,12.5342,10.8069,3051 +259,4,0,12.4938,10.5430,3217 +260,4,0,12.5619,10.5568,3680 +261,4,0,12.4838,10.2144,3433 +262,4,0,12.4331,10.4738,3891 +263,4,0,12.0625,10.3476,2978 +264,4,0,12.5565,10.7536,2906 +265,4,0,12.1370,10.4644,2925 +266,4,0,11.9167,10.6031,3487 +267,4,0,12.0628,10.6280,2969 +268,4,0,11.9087,10.7291,2822 +269,4,0,11.6718,10.2853,3027 +270,4,0,12.6464,10.8070,2708 +271,4,0,11.9282,10.1820,2735 +272,4,0,12.1045,10.2587,2688 +273,4,0,11.9646,10.2126,2954 +274,4,0,12.0101,10.1297,3013 +275,4,0,11.9172,10.2503,2878 +276,4,0,13.2372,10.3997,3036 +277,4,0,11.9555,10.6150,2909 +278,4,0,11.8895,10.1163,2598 +279,4,0,12.4803,10.3402,2609 +280,4,0,11.6857,10.1900,2615 +281,4,0,11.6755,10.6511,2652 +282,4,0,11.9578,10.5390,2667 +283,4,0,12.0214,10.3776,2728 +284,4,0,12.0884,10.3114,2632 +285,4,0,12.2435,10.4914,2620 +286,4,0,11.9428,10.0794,2603 +287,4,0,12.0044,10.4318,2633 +288,4,0,11.8002,10.0043,2885 +289,4,0,11.8280,10.2870,2631 +290,4,0,11.9188,10.1894,2679 +291,4,0,11.8822,10.2493,2594 +292,4,0,12.7300,10.9816,2610 +293,4,0,12.1350,10.0883,2618 +294,4,0,12.0403,10.0735,2639 +295,4,0,12.5113,10.1532,2683 +296,4,0,11.8832,10.0872,2662 +297,4,0,11.9898,10.1966,2669 +298,4,0,11.9182,10.0058,2661 +299,4,0,13.8284,11.7776,2767 diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv new file mode 100644 index 0000000..6cde9a8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.5855,38.3075,0.0339,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.8635,12.5396,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.5768,15.8417,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2536,19.8069,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,6.9696,23.9425,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.1285,23.6906,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.5989,16.9444,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.6152,12.4826,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6805,12.5475,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.9273,12.4863,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.8002,12.4378,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7912,12.4722,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8877,12.4170,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7790,13.0010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8912,12.3468,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.9379,12.4140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.7952,12.4175,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8025,12.4374,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8794,12.5829,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.9547,12.4978,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8186,12.5172,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.8252,12.4981,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.8467,12.4594,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.9134,12.3958,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,8.1416,12.4131,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.9091,12.5025,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.8889,12.4154,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.8108,12.4300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.9356,12.4111,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.1000,12.9894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.9805,12.3726,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.8247,12.4226,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.7525,12.5030,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9964,12.4125,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.8429,12.3963,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.8074,12.4727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8884,12.5108,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.0573,12.8789,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.8822,12.4950,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.9075,12.4833,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9096,12.4792,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.8318,12.4896,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9126,12.4410,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8054,12.5218,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.7847,12.4615,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8704,13.0300,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.0242,12.4429,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,8.0653,12.5071,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8026,12.5289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.2842,12.4014,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8887,12.4297,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7922,12.4530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.8537,12.3976,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.8810,12.4051,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.1454,12.3384,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.7826,12.3395,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.7717,12.3983,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.7601,12.3512,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8476,12.3631,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8309,12.4375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8496,12.1726,0.0791,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9507,12.9505,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9404,12.3957,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9238,12.4560,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.9153,12.4344,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.2226,12.3603,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,8.1499,12.3968,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,8.0039,12.3705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,8.1003,12.3003,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.0598,12.5031,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,8.3551,12.6578,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.9783,12.4925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0181,12.5010,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7695,12.5652,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.8801,12.4400,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.9625,12.4410,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,8.1648,12.4417,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.8902,13.0683,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.9603,12.5266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,8.0932,12.4113,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.2320,12.4912,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.9269,12.4733,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.1588,12.4333,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,8.0989,12.4170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,8.1404,12.4738,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,8.1140,12.5106,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.1868,12.4540,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.2051,12.4696,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.9325,12.4832,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,8.1578,12.3995,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.9731,12.4622,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.9192,12.4775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7152,12.4633,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8940,12.9663,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.9425,12.5452,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.2713,12.7270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8497,12.4810,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.8905,12.4450,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,8.0065,12.5892,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.4908,12.6111,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.2280,12.5640,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,8.1184,12.5160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.5688,12.4957,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9024,12.3784,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7971,12.3587,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8967,12.4302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,8.1766,12.4030,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,8.1503,12.9141,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.9282,12.6922,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,8.1649,13.3324,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,9.1933,12.8348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.1138,12.6949,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.9376,12.5337,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8353,12.3957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.9367,12.4155,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.9875,12.3877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.9958,12.4707,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.8381,12.4100,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.8409,12.3301,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8416,12.4764,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.9277,12.2280,0.0597,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8649,12.4832,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8561,12.3924,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.8486,12.4479,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,8.0043,12.4492,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8844,13.0390,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,8.0844,12.4981,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8582,12.4336,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.8365,12.4875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.9045,12.5293,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.9470,12.4181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.9041,12.4035,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.8067,12.5265,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.9988,12.4325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.9959,12.4085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,8.1690,12.4698,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,8.1572,12.3777,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.8633,12.5095,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.9262,12.5922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8902,12.3957,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.8917,12.5205,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.7648,13.0871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8941,12.4368,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.9353,12.4075,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,8.0147,12.5277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,8.1212,12.5200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7947,12.4783,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8255,12.4760,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,8.0370,12.4797,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8099,12.4305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,8.1990,12.4828,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,8.2068,12.4347,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.9102,12.4580,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.9095,12.4166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.7123,12.4360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.8967,12.4528,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8518,12.3797,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.8895,12.9687,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.8790,12.3562,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.8536,12.4623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7743,12.4790,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.7747,12.4478,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.8093,12.4372,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.7890,12.4074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,8.2961,12.4407,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,8.2048,12.4508,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.0483,12.4972,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.9678,12.4360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.0300,12.5001,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.9808,12.4263,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8345,12.4715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.1665,12.4590,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,8.2784,12.4401,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,8.3891,13.1546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.9467,12.4671,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,8.0419,12.4537,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8470,12.4817,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.0464,12.4501,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,8.0180,12.3362,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8505,12.4057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8989,12.1625,0.0385,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8184,12.3462,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9068,23.9205,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.7573,29.7550,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7421,35.3131,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7500,39.3612,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.7028,42.0455,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,8.1677,42.8772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,8.1960,44.0500,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.9502,45.6294,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,8.0709,45.6206,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.0979,45.7452,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.1234,45.9501,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.1186,45.8536,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,8.3827,45.6172,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.9817,46.2021,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.9147,46.1763,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,8.0392,45.9042,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,8.1017,46.0052,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.8822,46.3524,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,8.1168,46.0253,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,8.3487,45.8078,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,8.0303,46.1610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8493,46.2036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.7623,46.2850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9215,46.7373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.9794,46.6118,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.7607,46.6532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,8.0423,46.2062,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,8.0527,46.6600,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.8129,46.6175,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,8.4322,45.9598,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,8.0062,46.7199,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.9911,46.4268,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9972,46.2893,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.1383,46.0285,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.6645,46.4500,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.6555,46.3599,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7989,46.0625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.0683,45.7997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8159,46.1546,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8792,46.8768,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9353,46.5180,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,8.1192,46.1731,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9655,46.4536,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0318,46.4935,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0533,46.5560,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.6152,45.8599,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,8.5065,46.0295,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.8790,46.3405,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.5100,46.5447,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.5237,46.4787,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.5253,46.0443,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.5200,46.4243,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.9512,47.6074,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.2406,45.4488,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,8.0580,46.1114,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8549,46.9235,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.2320,46.3355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.9183,46.5434,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,8.0415,45.9753,0.0327,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.9158,46.0693,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,8.1707,45.3373,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.0462,45.7899,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.0145,47.2685,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8652,45.7779,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.7375,46.3880,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,8.2374,45.6721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0724,46.1140,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.9259,46.1155,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.8908,46.0945,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9207,46.0256,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.8908,46.0241,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.9431,46.7545,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8600,46.6567,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9234,46.4600,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.7895,46.6040,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.1213,46.1770,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.3003,46.0544,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.2603,46.0694,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.2823,46.0992,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.2327,46.1656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,8.2994,45.9859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,8.2693,45.9302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,8.0701,46.1337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.8412,46.2683,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.1447,45.8558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,8.0749,45.9210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.0244,45.8777,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9249,46.6315,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.8393,46.5547,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.6562,46.4319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.9245,46.0510,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9202,46.0181,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.9310,46.0833,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.6635,46.3601,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8573,46.1280,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.8439,46.1384,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.0609,45.9177,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.6739,46.2649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.8553,46.0378,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.7722,46.1128,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.9901,45.7912,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.8638,46.1450,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.6779,46.2211,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.1258,46.4534,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.7420,46.8390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8037,46.4030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.9858,45.7413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.0350,45.9664,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.8246,47.5041,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,8.2577,45.3290,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,8.1182,45.9498,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,8.0424,45.8545,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.9283,45.9580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8247,46.0499,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.0771,45.6606,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.9599,43.2335,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.7343,41.8277,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.1899,47.0636,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt new file mode 100644 index 0000000..1a3fe22 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.950 +avg_encode_latency_ms=25.722 +p95_encode_latency_ms=46.612 +max_encode_latency_ms=47.607 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/metadata.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/metadata.txt new file mode 100644 index 0000000..5918b46 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/metadata.txt @@ -0,0 +1,7 @@ +timestamp=2026-05-15_1311 +duration_seconds=5 +profile_set=quick +device_profile_requested=m1max +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.csv b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.csv new file mode 100644 index 0000000..cfd2bde --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.csv @@ -0,0 +1,4 @@ +profile,connection_class,device_profile,source,resolution,fps,duration_seconds,codec,bitrate_mbps,status,frames_requested,frames_submitted,frames_encoded,failed_frames,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,csv,logical_csv,log,deadline_md +m1max_wired_full_5k60_tiled_hevc,wired,m1max,synthetic-nv12-tiled,5120x2880,60,5,hevc,30,0,300,300,300,0,60.007,12.542,12.741,131.845,3903440,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.csv,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_logical.csv,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps.txt,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md +m1max_wired_high_detail_4096_60_hevc,wired,m1max,synthetic-nv12,4096x2304,60,5,hevc,120,0,300,300,300,0,,25.722,46.612,47.607,4452432,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.csv,,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/m1max_wired_high_detail_4096_60_hevc_synthetic_nv12_4096x2304_60fps_120mbps.txt, +wireless_balanced_3200_60_hevc,wireless,m1max,synthetic-nv12,3200x1800,60,5,hevc,60,0,300,300,300,0,,23.554,41.956,76.485,2756134,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv,,benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt, diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.md b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.md new file mode 100644 index 0000000..cf2f488 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.md @@ -0,0 +1,24 @@ +# Transmission Profile Matrix + +- Device profile: `m1max` +- Profile set: `quick` +- Duration per case: `5` seconds +- Codec: HEVC +- Forced encoder: `com.apple.videotoolbox.videoencoder.ave.hevc` +- Summary table: `summary.csv` +- Encoder list: `video_encoders.txt` +- Sanitized system profile: `system_profile_sanitized.txt` + +## Interpretation + +This matrix measures sender-side encode viability only. It intentionally does not +claim receiver decode/render success. Use it to choose which capture, transport, +and bitrate profile should be tried before building OS-specific receiver decode +paths. + +## Profile intent + +- `m1max_wired_full_5k60_tiled_hevc`: best current full-resolution M1 Max path. +- `m1max_wired_high_detail_4096_60_hevc`: high-detail single-stream fallback. +- `wireless_balanced_3200_60_hevc`: first wireless default candidate. +- `m1air_*`: Air ceiling probes; results must be collected on the Air. diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/system_profile_sanitized.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/system_profile_sanitized.txt new file mode 100644 index 0000000..a82dfed --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/system_profile_sanitized.txt @@ -0,0 +1,52 @@ +Hardware: + + Hardware Overview: + + Model Name: MacBook Pro + Model Identifier: MacBookPro18,4 + Model Number: Z15H000RNKH/A + Chip: Apple M1 Max + Total Number of Cores: 10 (8 performance and 2 efficiency) + Memory: 32 GB + System Firmware Version: 10151.140.19 + OS Loader Version: 10151.140.19 + Activation Lock Status: Enabled + +Graphics/Displays: + + Apple M1 Max: + + Chipset Model: Apple M1 Max + Type: GPU + Bus: Built-In + Total Number of Cores: 24 + Vendor: Apple (0x106b) + Metal Support: Metal 3 + Displays: + Color LCD: + Display Type: Built-in Liquid Retina XDR Display + Resolution: 3024 x 1964 Retina + Main Display: Yes + Mirror: Off + Online: Yes + Automatically Adjust Brightness: No + Connection Type: Internal + TFX173T: + Resolution: 1080 x 1920 + UI Looks like: 1080 x 1920 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: 90 + Sidecar Display: + Resolution: 2360 x 1640 + UI Looks like: 1180 x 820 @ 60.00Hz + Framebuffer Depth: 24-Bit Color (ARGB8888) + Mirror: Off + Connection Type: AirPlay + Virtual Device: Yes + LG IPS FULLHD: + Resolution: 1920 x 1080 (1080p FHD - Full High Definition) + UI Looks like: 1920 x 1080 @ 60.00Hz + Mirror: Off + Online: Yes + Rotation: Supported diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/video_encoders.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/video_encoders.txt new file mode 100644 index 0000000..465f94a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/video_encoders.txt @@ -0,0 +1,272 @@ +video_encoder_list=Optional(<__NSArrayM 0x141713b20>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = "AppleProResHW 422"; + CodecType = 1634755438; + DisplayName = "AppleProResHW 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422"; + EncoderName = "AppleProResHW 422"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 HQ"; + CodecType = 1634755432; + DisplayName = "AppleProResHW 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422hq"; + EncoderName = "AppleProResHW 422 HQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 LT"; + CodecType = 1634755443; + DisplayName = "AppleProResHW 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422lt"; + EncoderName = "AppleProResHW 422 LT"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 422 Proxy"; + CodecType = 1634755439; + DisplayName = "AppleProResHW 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.422proxy"; + EncoderName = "AppleProResHW 422 Proxy"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444"; + CodecType = 1634743400; + DisplayName = "AppleProResHW 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444"; + EncoderName = "AppleProResHW 4444"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = "AppleProResHW 4444 XQ"; + CodecType = 1634743416; + DisplayName = "AppleProResHW 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.appleproreshw.4444xq"; + EncoderName = "AppleProResHW 4444 XQ"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv new file mode 100644 index 0000000..039c9bf --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.4004,76.4850,0.0237,0.0000,0,0,0.0000,0,0.0000,0,1,0,90693,0 +1,4.9179,36.2336,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,33357,0 +2,4.8117,38.9427,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,17305,0 +3,4.6588,41.7010,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,26405,0 +4,4.6795,42.0781,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,41778,0 +5,4.8993,33.0830,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,23133,0 +6,5.0893,21.0813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8457,0 +7,5.1972,12.3959,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4764,0 +8,5.3601,11.5055,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,15756,0 +9,5.2274,11.5311,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +10,5.3615,11.4235,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +11,5.6954,11.5175,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +12,5.7453,11.7849,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +13,5.6911,11.4543,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4041,0 +14,5.6758,11.5470,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3899,0 +15,5.6259,11.3643,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3819,0 +16,5.7245,11.4512,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14869,0 +17,5.7162,11.4391,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4305,0 +18,5.7903,11.5399,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +19,5.6765,11.4239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +20,5.6537,11.4651,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +21,5.7720,11.2707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +22,5.7898,11.2810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +23,5.7980,11.4413,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +24,5.6952,11.3330,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,12365,0 +25,5.7401,11.4389,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +26,5.6752,11.4835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +27,5.6137,11.5340,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +28,5.7080,11.8613,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12458,0 +29,5.6359,11.4073,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +30,5.7214,11.3327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +31,5.6285,11.4894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +32,5.7381,11.3062,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11420,0 +33,5.7640,11.3148,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +34,5.7160,11.4120,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +35,5.7601,11.3860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +36,5.7106,11.5153,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13744,0 +37,5.6043,11.3150,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +38,5.6895,11.3061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +39,5.8801,11.3410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +40,5.7151,11.3941,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13192,0 +41,5.8517,11.2049,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +42,5.6941,11.3375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +43,5.7289,11.2744,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +44,5.6052,11.7090,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12022,0 +45,5.7536,11.3337,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +46,5.6917,11.3532,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +47,5.6780,11.2928,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +48,5.5624,11.4088,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +49,5.6858,11.4910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2537,0 +50,5.7855,11.2254,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +51,5.7598,11.2978,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +52,5.6901,11.3124,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14057,0 +53,5.9981,11.3208,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +54,5.6238,11.3911,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +55,5.6195,11.3619,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +56,5.6393,11.2998,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12868,0 +57,5.5985,11.3191,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +58,5.6463,11.4128,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +59,5.5527,11.4504,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +60,5.4860,11.8122,0.0525,0.0000,0,0,0.0000,0,0.0000,0,1,0,207878,0 +61,5.6686,11.5144,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,17948,0 +62,5.6697,11.3683,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,20836,0 +63,5.6155,11.4024,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,15768,0 +64,5.6323,11.4808,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,24247,0 +65,5.6020,11.3928,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11212,0 +66,5.7032,11.4770,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7185,0 +67,5.6911,11.3665,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2282,0 +68,5.6669,11.4589,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12714,0 +69,5.6370,11.4002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +70,5.5708,11.5596,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2020,0 +71,5.6389,11.3629,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +72,5.6976,11.3037,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13454,0 +73,5.6141,11.4804,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +74,5.5957,11.5892,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,5.6819,11.3186,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +76,5.6211,11.8520,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +77,5.7258,11.4461,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +78,5.8097,11.3704,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +79,5.5978,11.6636,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +80,5.6264,11.3966,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14283,0 +81,5.6859,11.3382,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +82,5.7409,11.3415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +83,5.6531,11.4141,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +84,5.7209,11.3772,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14178,0 +85,5.7290,11.5906,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +86,5.5779,11.5543,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +87,5.6760,11.4193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +88,5.7246,11.3586,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12751,0 +89,5.5911,11.4936,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +90,5.6252,11.6823,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +91,4.6374,11.3984,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +92,4.4760,11.9191,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12518,0 +93,5.5104,11.4480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +94,4.3377,11.4476,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +95,4.7367,11.7558,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +96,5.1118,11.5344,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,35268,0 +97,4.7447,11.7305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1936,0 +98,5.1638,11.7009,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +99,4.7323,11.7018,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +100,4.6341,11.4572,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,13723,0 +101,6.1351,11.3979,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +102,6.2271,11.3500,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +103,6.2528,11.4893,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +104,6.2391,11.3535,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13197,0 +105,6.3170,11.5041,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +106,5.7767,11.3302,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1488,0 +107,5.7788,11.4923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +108,5.6578,11.9103,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12006,0 +109,5.7650,11.5555,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +110,5.7770,11.4160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +111,5.6493,11.2988,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +112,5.7225,11.3340,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13796,0 +113,5.5629,11.5864,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2094,0 +114,5.5438,11.4307,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +115,5.6448,11.5072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +116,5.6059,11.4370,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13929,0 +117,5.6736,11.3198,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +118,5.6363,11.3892,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +119,5.6009,11.6352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +120,5.7143,11.3503,0.0538,0.0000,0,0,0.0000,0,0.0000,0,1,0,205935,0 +121,5.6045,11.6269,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,15333,0 +122,5.5838,11.4811,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +123,5.7293,11.3314,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12086,0 +124,5.6912,11.7823,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,18993,0 +125,5.6250,11.4428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7924,0 +126,5.5553,11.4454,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5805,0 +127,5.5225,11.4810,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +128,5.7183,11.3918,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13229,0 +129,5.6147,11.5237,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4210,0 +130,5.6064,11.5975,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3466,0 +131,5.5788,11.5142,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +132,5.5761,11.4972,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13684,0 +133,5.5676,11.5107,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +134,5.5048,11.3835,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +135,5.6535,11.2538,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +136,5.7250,11.4100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13089,0 +137,5.7322,11.4200,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +138,5.6488,11.4453,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +139,5.6517,11.6332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +140,5.6982,11.7259,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12838,0 +141,5.9660,11.3293,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +142,6.1983,11.2976,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +143,5.8140,11.3219,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +144,6.2539,11.4299,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +145,5.9932,11.4805,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +146,6.1079,11.5767,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +147,6.0907,11.3389,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +148,5.7664,11.4991,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12817,0 +149,6.0433,11.7254,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +150,6.0253,11.9660,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +151,6.0200,11.7856,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +152,6.0806,11.5565,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12342,0 +153,5.7687,11.5095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +154,6.1057,11.7785,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +155,5.8328,11.5012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +156,5.5883,11.7533,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +157,5.7816,11.2718,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +158,5.5094,11.5528,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +159,5.5275,11.4928,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +160,5.5111,11.4729,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +161,5.4524,11.3750,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1987,0 +162,5.5938,11.1701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +163,5.5896,11.4252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +164,5.6129,11.4765,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13654,0 +165,5.6945,11.4226,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +166,5.7915,11.2909,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +167,5.7504,11.4465,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +168,5.6755,11.2707,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13103,0 +169,5.6757,11.5175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +170,5.6496,11.3623,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +171,5.6188,11.4004,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +172,5.5941,11.6634,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12883,0 +173,5.5139,11.5193,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +174,5.7481,11.6621,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +175,5.6047,12.0060,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +176,5.7872,11.9781,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,13481,0 +177,5.8559,11.7639,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +178,5.7615,11.5312,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +179,5.8539,11.9270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +180,5.6758,11.3715,0.0953,0.0000,0,0,0.0000,0,0.0000,0,1,0,241418,0 +181,5.7507,11.5073,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,19215,0 +182,5.6805,17.8167,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,23656,0 +183,5.6259,23.0418,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +184,5.7218,23.9837,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,26245,0 +185,5.5977,26.8756,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +186,5.5715,29.8684,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5102,0 +187,5.6511,32.5905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4147,0 +188,5.6450,34.1048,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13635,0 +189,5.6609,35.2947,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +190,5.7904,36.3535,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +191,5.5657,38.5324,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +192,5.5742,39.6297,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,36424,0 +193,5.7077,39.9910,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +194,5.6400,40.5172,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +195,5.5717,40.9593,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +196,5.5663,40.9986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13653,0 +197,5.5927,41.0964,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +198,5.5920,41.2795,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +199,5.5161,41.4752,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +200,5.6508,41.2533,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,13125,0 +201,5.6741,41.5018,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +202,5.5808,41.6185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +203,5.5955,41.4434,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +204,5.5637,42.2162,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12858,0 +205,5.5796,41.9452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +206,5.6001,41.6415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +207,5.6787,41.3838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +208,5.6016,41.3743,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13636,0 +209,5.5685,41.3732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +210,5.6158,41.3171,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +211,5.5604,41.4712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +212,5.6178,41.0927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12678,0 +213,5.6268,41.3117,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +214,5.6387,41.4518,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +215,5.6077,41.3450,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +216,5.6733,41.3176,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12452,0 +217,5.5801,41.1974,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +218,5.5838,41.4710,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +219,5.5448,41.2985,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +220,5.8209,42.4395,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12502,0 +221,5.7366,42.5528,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +222,5.0878,40.1148,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +223,5.4108,43.7005,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +224,5.6025,41.0332,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11650,0 +225,5.5630,40.9180,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +226,5.6408,42.8332,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +227,5.3550,40.8770,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +228,5.2944,40.9319,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13841,0 +229,5.4066,41.0466,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +230,5.4070,42.6103,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +231,5.5263,40.6976,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +232,5.4464,41.6336,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13418,0 +233,5.5449,41.2996,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +234,5.5636,41.1882,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +235,5.6302,41.3183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +236,5.5455,42.2660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13117,0 +237,5.6484,41.5222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +238,5.5740,41.5566,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +239,5.6584,41.5252,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +240,5.6137,41.3674,0.0542,0.0000,0,0,0.0000,0,0.0000,0,1,0,202606,0 +241,5.6055,41.1245,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,18838,0 +242,5.5599,41.1364,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,22006,0 +243,5.5464,41.2240,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16616,0 +244,5.5599,41.0893,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22139,0 +245,5.5872,41.2141,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5492,0 +246,5.5180,41.2007,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3374,0 +247,5.5015,41.5835,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +248,5.6430,41.2349,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13534,0 +249,5.6405,41.2983,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +250,5.6926,41.1142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +251,5.7008,41.1208,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +252,5.5782,41.8664,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12484,0 +253,5.5978,41.6753,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1891,0 +254,5.4958,41.6368,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +255,5.5387,41.5929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1770,0 +256,5.5598,41.5853,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,34556,0 +257,5.6081,41.3169,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +258,5.5746,41.4307,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +259,5.5955,41.4931,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +260,5.5441,41.2835,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13717,0 +261,5.6835,41.2472,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +262,5.5163,41.6624,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +263,5.6364,40.8677,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +264,5.7491,40.5902,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13183,0 +265,5.6711,42.3035,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +266,5.6707,42.3335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +267,5.8946,41.3959,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +268,5.6051,41.6842,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11975,0 +269,5.5868,41.6129,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +270,5.5714,41.4533,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +271,5.5758,41.4990,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +272,5.5619,41.3821,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13683,0 +273,5.5741,41.3712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +274,5.5818,41.2318,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +275,5.5860,41.2349,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +276,5.5539,41.2752,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +277,5.5592,41.2764,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +278,5.6115,41.2524,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +279,5.5958,41.2101,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +280,5.5875,41.1740,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,12510,0 +281,5.5904,40.5486,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +282,5.5131,41.4878,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +283,5.7791,42.6097,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +284,5.7909,40.7450,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,12528,0 +285,5.5330,43.1833,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +286,4.4020,41.5533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +287,4.3665,41.9498,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +288,5.0037,40.3054,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11401,0 +289,4.8174,41.4583,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +290,5.2030,43.2452,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +291,5.6973,40.2561,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +292,4.7382,41.9023,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13732,0 +293,5.7048,40.7383,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +294,5.6392,41.3374,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +295,5.6122,41.2188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +296,5.6267,41.2415,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +297,5.6522,40.0445,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +298,5.6457,37.7356,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +299,5.6251,43.5480,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt new file mode 100644 index 0000000..90920e8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.603 +avg_encode_latency_ms=23.554 +p95_encode_latency_ms=41.956 +max_encode_latency_ms=76.485 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2756134 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/wireless_balanced_3200_60_hevc_synthetic_nv12_3200x1800_60fps_60mbps.csv diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.csv b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.csv new file mode 100644 index 0000000..2be6859 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.5182,38.6993,0.0442,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.3854,12.6638,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.4222,15.9751,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.3186,19.2519,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1007,22.9936,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.4056,23.3077,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.6787,16.6956,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.8071,13.0405,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.7356,12.6843,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.9383,13.0462,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.7237,12.6776,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.8605,12.6976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8430,12.5421,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.9574,13.2129,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.9151,12.5467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.7850,12.6398,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.9223,12.6568,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.9229,12.5638,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,8.3272,12.5943,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8495,12.6919,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9413,12.5745,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,8.1465,12.5990,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,8.0992,12.7952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.7961,12.6588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.9726,12.5732,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.9756,12.5478,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.7702,12.6636,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.9574,12.5350,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,8.0553,12.5910,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8140,13.0806,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,8.1649,12.4079,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.7878,12.4724,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,8.0512,12.5641,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.8962,12.5821,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,8.0680,12.4699,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.3262,12.6578,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.9770,12.7690,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.8363,12.7306,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.4970,12.7553,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.0587,12.5202,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8975,12.4680,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.9876,12.4850,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9475,12.4663,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8320,12.6276,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8852,12.5939,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8563,12.9910,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.7941,12.3719,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.7723,12.4761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.7169,12.4250,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.0732,12.4223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.7505,12.4138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.8439,12.4903,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.6943,12.4086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9851,12.4614,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.9259,12.4285,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9579,12.4229,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8896,12.4725,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8511,12.5132,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,8.0960,12.3530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.9644,12.3754,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.7209,12.2701,0.0755,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.7645,13.2254,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9071,12.7167,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.7808,12.5130,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.6044,12.5940,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.8695,12.5415,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.5265,12.7767,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.6121,12.6227,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.2337,12.5477,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.4671,12.4745,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.4582,12.4653,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.7148,12.4788,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.8528,12.4650,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,8.1309,12.7750,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.8571,12.7199,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8619,12.5150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.7864,12.4792,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7970,13.0785,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.8968,12.3838,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9075,12.3872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.8571,12.4020,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,8.0071,12.5402,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.9079,12.4634,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.9268,12.4653,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.7293,12.3872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8009,12.4853,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.9018,12.5168,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.1336,12.3941,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.8419,12.5186,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,8.0248,12.4546,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.9382,12.5234,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.3793,12.4850,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.9870,12.4286,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8568,13.1920,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8596,12.5463,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.0793,12.5267,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.7964,12.5533,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.4708,12.5098,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.6450,12.5157,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.7339,12.6342,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.5550,12.6257,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.3001,12.5360,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.3816,12.4927,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.6390,12.5112,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.7028,12.4940,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8802,12.4046,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7560,12.3886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.7616,12.4061,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8442,12.4351,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8905,12.9703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8984,12.4224,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.0530,12.4590,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.8651,12.5403,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.9037,12.5137,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.0813,12.3911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,8.0313,12.4266,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,8.0717,12.2525,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,8.0076,12.4650,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.9929,12.4098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,8.0258,12.3649,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.9783,12.1802,0.0462,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7246,12.3962,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8095,12.6128,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.9602,12.5678,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8111,12.5914,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.9083,13.1500,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8568,12.5762,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.9848,12.4708,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.9400,12.4040,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.8905,12.5182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,8.0256,12.4918,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.7180,12.4273,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.0072,12.4676,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,8.1899,12.4010,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,8.1098,12.5084,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,8.0257,12.4031,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.6930,12.4748,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.9810,12.5255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8654,12.5595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8913,12.4363,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.1674,12.4334,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.9183,13.0107,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8738,12.4510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.0213,12.4365,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.7864,12.4495,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,8.0345,12.5530,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,8.2873,12.7118,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.9044,12.5233,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8619,12.5344,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8725,12.4780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7930,12.4248,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.9222,12.4125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.0455,12.4358,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,8.0542,12.5418,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,8.1187,12.4728,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,8.1528,12.4117,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,8.0494,12.4545,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.8728,13.0918,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.8082,12.5127,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.8174,12.4466,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.9747,12.4675,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.0143,12.3576,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7827,12.4209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8750,12.4160,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.9069,12.3931,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.9075,12.3515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.8207,12.4238,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,8.0449,12.4270,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.9910,12.4743,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.9424,12.4585,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,8.0251,12.3177,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8356,12.3050,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.9187,12.4545,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,8.0255,12.9250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.8378,12.4114,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.9295,12.3019,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.9351,12.4937,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.1462,12.3945,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,8.1321,12.3852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.6757,12.3816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.0091,12.2423,0.0343,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8956,12.4832,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9034,23.4833,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.7927,29.4245,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,8.3347,34.7002,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.9158,38.9552,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.8473,41.4548,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.8200,42.9737,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.9935,44.0101,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.7596,45.9538,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,8.0322,45.7540,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,8.0583,46.0104,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.1476,45.9303,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.9580,46.0788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.7465,46.2906,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8380,46.1106,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.8762,46.1511,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9393,46.2696,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.9067,46.1711,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,8.2801,45.8268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.7456,46.4302,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8766,46.1359,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7924,46.2246,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.8372,46.0100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8670,45.9927,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.8485,46.7803,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,8.0374,46.2381,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,8.0586,46.1785,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.9207,46.3022,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.9698,46.1453,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.9727,46.2104,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.8318,46.3468,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,8.2389,46.0452,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.1917,46.0950,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.3201,45.8271,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.2277,45.9003,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.9863,46.0665,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.9988,46.0942,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,8.0721,45.9499,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.0197,46.0286,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8391,46.2794,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8635,46.9059,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9678,46.7526,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.9693,46.5981,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9856,46.3941,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0433,46.4184,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.9638,46.3015,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.1013,46.1532,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.7421,46.8392,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.9312,46.4948,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,8.1803,46.4104,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.2706,46.2812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,8.5478,46.0613,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.2660,46.3341,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,8.3287,46.0505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.2599,46.1358,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,8.0001,46.3105,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,8.0972,46.8512,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.1780,46.5813,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.2812,46.3814,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,8.2495,45.9091,0.0546,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.2852,45.9914,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,8.1352,46.2804,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.3480,45.8064,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.1182,46.3284,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,8.1023,46.2371,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.2858,46.0027,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,8.3790,45.9701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0870,46.2130,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.0928,46.1262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,8.0930,46.0669,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,8.1673,46.0047,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.1009,46.1381,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.1891,46.7586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.2939,46.4718,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.0861,46.5695,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,8.1112,46.4180,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.2162,46.1970,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.3890,45.7657,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.2575,45.9872,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.5345,46.6358,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.2705,45.9289,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,8.4453,45.9313,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,8.4714,45.9765,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,8.5037,45.9764,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.4359,46.0524,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.7125,45.6883,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,8.4602,45.9845,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.1787,46.0330,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.2798,46.5630,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.0200,46.5924,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.9159,46.4602,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.9454,46.2062,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,8.1199,45.9563,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.8456,46.2483,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.9179,46.0804,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8857,46.0711,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.8957,45.9215,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7834,45.9608,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.7574,45.9856,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.7946,45.9964,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.8649,45.8829,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8133,46.0178,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.8063,46.1078,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.9275,46.0392,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.0520,46.6128,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,8.1102,46.4090,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.9276,46.5862,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.0334,46.1791,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.9107,46.1762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.9003,46.0811,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.8956,46.0540,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.9614,45.9983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.8923,46.0931,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.9136,46.1145,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8860,46.1711,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.0504,46.1287,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.2305,43.1610,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.1357,41.8398,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.9469,47.6113,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.txt b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.txt new file mode 100644 index 0000000..398dfc5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.957 +avg_encode_latency_ms=25.732 +p95_encode_latency_ms=46.498 +max_encode_latency_ms=47.611 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096.csv diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.csv b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.csv new file mode 100644 index 0000000..44880f4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0801,37.9802,0.0443,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.8907,12.5401,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.4834,15.9863,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.3407,19.6001,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1057,23.5033,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.2261,22.2437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4706,15.9074,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.4340,12.4165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6799,12.4931,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.7317,12.4723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.8730,12.4852,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.8003,12.4265,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.7889,12.4326,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8280,12.9785,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.6050,12.5250,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.7410,12.4332,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.6760,12.4416,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7531,12.4372,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.7375,12.4339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.6960,12.3782,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.7595,12.3332,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.7965,12.4637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.6418,12.4303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.7355,12.5357,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.8124,12.4795,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.7336,12.5999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.8200,12.3348,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.7777,12.4100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8952,12.4322,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8904,12.9383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.7990,12.4575,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.0195,12.4355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9868,12.5713,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9730,12.3798,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.8402,12.4158,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.6955,12.3765,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.0117,12.6041,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.8016,12.4620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.6964,12.5014,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.8900,12.4435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8444,12.4493,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.9419,12.4398,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8602,12.4161,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8901,12.3621,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8668,12.3650,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.0853,13.0302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.9673,12.5443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.8345,12.5555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8699,12.4915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.7375,12.4305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8059,12.4334,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7555,12.4642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.9094,12.3986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9457,12.4046,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.8475,12.3430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9432,12.4929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8754,12.3990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,8.0293,12.3584,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9015,12.4486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8046,12.3567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8766,12.1893,0.0752,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9036,13.0240,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.8000,12.5492,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.8219,12.3878,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.9255,12.4245,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.9262,12.5983,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.9913,12.5079,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.5462,12.5929,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.2411,12.3876,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.5111,12.3622,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.6026,12.3458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8752,12.3186,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0655,12.3718,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.5082,12.3560,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.4533,12.5883,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8208,12.4237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8290,12.4855,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7873,13.0156,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.8110,12.4422,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9455,12.3677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.8185,12.3879,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7427,12.4856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.8948,12.3625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.8842,12.3430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.8270,12.3658,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8279,12.3743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.8812,12.3067,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.8713,12.3836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7814,12.5152,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.8340,12.3772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8480,12.7121,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.2547,12.9298,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,8.1532,12.8811,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8957,13.0946,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8290,12.4417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8797,12.4364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8749,12.4419,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.9362,12.4559,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.9272,12.4320,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.8463,12.4287,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.7871,12.4602,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.8069,12.4333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.9302,12.4352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,8.1130,12.4087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.9315,12.3148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8752,12.4558,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8402,12.4738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.7619,12.3560,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8240,12.4938,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8432,12.9819,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8272,12.4804,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.7388,12.3279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.7921,12.4543,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.7496,12.4619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8888,12.4514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.7533,12.4836,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.7591,12.4861,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.9424,12.3718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.8507,12.4341,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.9038,12.4274,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8728,12.2135,0.0610,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8815,12.3722,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8027,12.3898,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.1425,12.3983,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8699,12.4201,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8470,12.9805,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.9871,12.4777,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8707,12.4819,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7638,12.4449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.7001,12.3823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8298,12.6411,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8478,12.3880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.0482,12.3591,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.8527,12.4812,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.5085,12.5508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8029,12.4200,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.6921,12.4292,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.9328,12.4406,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8181,12.4946,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8779,12.4900,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.7628,12.4680,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.8578,13.0082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8760,12.5475,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.0390,12.6443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.8352,12.5384,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.7617,12.5160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.8331,12.4605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8213,12.4517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8753,12.5362,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7138,12.4770,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7284,12.8354,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7467,12.8413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.9506,12.8108,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.5545,12.5341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.4452,12.4093,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.6771,12.5042,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8729,12.5115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.5538,12.9727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.7981,12.3312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.8438,12.3004,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7938,12.3583,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.9048,12.3424,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7796,12.4702,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8440,12.3725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8934,12.3643,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.8738,12.4554,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.9031,12.5581,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7275,12.4440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.7753,12.5629,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.8078,12.4227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7827,12.4775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8564,12.5165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8504,12.4580,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7234,12.9769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7469,12.4733,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.6811,12.4388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.7702,12.4869,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9162,12.4064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8503,12.4947,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.9491,12.6919,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.1722,12.4160,0.0421,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.1119,12.6844,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,8.0091,23.9230,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,8.1825,30.0318,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.8715,35.0347,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,8.0487,38.8045,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.9497,42.6045,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.8426,42.2764,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.9773,43.8295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.9375,46.8010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9118,45.3050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.9263,46.0137,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.9669,45.8932,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.9997,45.3230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.9320,45.7833,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.6171,47.5947,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7645,45.3782,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.7279,46.2254,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.9939,47.2357,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9314,46.0149,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9886,46.2130,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.9451,46.1596,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.9166,46.0585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.7690,45.8265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.6659,46.1871,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.6682,47.9040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.9267,46.2017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.8374,46.5226,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7903,46.3469,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.7961,46.2281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7859,46.1390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.8793,46.0011,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8310,46.0948,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.9599,45.9145,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9050,45.9241,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9902,45.8925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.7809,46.0870,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.0126,45.7752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7816,46.1210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.9693,45.7557,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8293,45.8850,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8049,46.6375,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.7285,46.5441,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.8624,46.4985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9016,46.3452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.3933,45.7191,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0120,46.1246,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.9281,45.9765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.8182,46.5127,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.9305,45.9447,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9990,45.9744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.0199,45.9672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9838,45.9829,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.0153,45.9784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.9455,46.0051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.1105,45.8271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.9690,46.0423,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,8.0565,46.6103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.9243,46.4805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.9588,46.2395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.9085,45.9296,0.0313,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.9399,45.8428,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9375,45.9585,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.9475,45.8971,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.2331,45.7021,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.9242,46.0700,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.0303,45.9303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8923,46.0590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0896,45.7222,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.9404,45.9995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.7949,45.9548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9631,46.1514,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.8416,45.8558,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.0375,46.5477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.0713,47.7430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.0322,46.0515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.8068,46.5858,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.0110,46.0998,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.9385,46.0477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8113,46.3502,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.0623,47.2137,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.1032,45.4288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6920,46.1891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.1082,46.5762,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.4053,46.1835,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.3555,46.3708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7213,46.0053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.6819,46.1186,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.9657,45.8798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9326,46.7488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.9572,46.4468,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,8.1049,46.0924,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,8.0180,46.1654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9972,46.1222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,8.0347,46.2046,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.9919,46.1896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,8.3400,45.8330,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,8.3754,45.8354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.2758,45.9405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.2015,45.8876,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,8.2246,45.8269,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9874,46.1629,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.0475,46.0655,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,8.4776,45.6826,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.3787,45.8625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.1181,46.7340,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,8.0305,46.6812,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,8.1345,46.4203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.2306,46.1937,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.2059,46.1601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.0594,46.3169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,8.0954,46.1875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,8.2915,45.9533,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9675,46.3009,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,8.0082,46.0870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.2080,45.8893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.9560,46.1374,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1226,43.1731,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.0449,41.8979,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.1088,47.4252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.txt b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.txt new file mode 100644 index 0000000..b204d42 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.875 +avg_encode_latency_ms=25.692 +p95_encode_latency_ms=46.544 +max_encode_latency_ms=47.904 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.csv diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.csv b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.csv new file mode 100644 index 0000000..6f0d405 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1465,38.6563,0.0436,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.2091,12.5821,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.2564,16.2486,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2315,20.0487,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1226,24.0412,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.0396,23.4578,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.6076,17.8089,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.2816,13.0044,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.2834,12.7112,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.3762,12.6021,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.6408,12.5940,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.9149,12.5915,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8939,12.6440,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7593,13.0354,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8736,12.5478,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8709,12.5739,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.9649,12.5711,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8899,12.5760,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8819,12.6423,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8670,12.5560,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8739,12.5133,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.3527,12.4900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.5066,12.6568,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.5320,12.6350,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.4311,12.6483,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.8570,12.5619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.7434,12.5674,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.7652,12.5810,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8557,12.6564,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.0488,13.1058,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8649,12.5792,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.2387,12.6185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8987,12.5246,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.7447,12.5696,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9128,12.4506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.1103,12.4167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.1124,12.4525,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.3250,12.8693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9010,12.5473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.1040,12.5699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9508,12.4136,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0817,12.4656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9185,12.4670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9517,12.5708,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.9880,12.5989,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.2165,13.0117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.1097,12.3856,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9591,12.3655,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.9716,12.4006,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.0057,12.4315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8811,12.3887,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,8.0228,12.3419,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.1126,12.4909,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,8.2350,12.4250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.0085,12.4480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9860,12.4078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.9680,12.3725,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8711,12.3903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8266,12.4109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,8.0238,12.3577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8576,12.1332,0.0727,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.8748,13.2435,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,8.0513,12.7015,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9286,12.6132,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.6465,12.6010,0.0411,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.0335,12.5827,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8120,12.5638,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.4815,12.5916,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.5427,12.8832,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.6917,12.7039,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.8610,12.5670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.9818,12.3353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0233,12.4463,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8690,12.4103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.7912,12.3722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,8.2282,12.4175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.9948,12.4232,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,8.0939,13.0092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,8.0010,12.4420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,8.1702,12.4515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.1703,12.4650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,8.3278,12.5032,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.1521,12.4944,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,8.2253,12.4673,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,8.1167,12.4798,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,8.3935,12.4184,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.1840,12.4375,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.1051,12.4496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,8.0197,12.3904,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5398,12.3514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.5892,12.4144,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.1225,12.4507,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7356,12.5280,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.4533,13.1960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.4557,12.4905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.2422,12.4100,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,8.2061,12.4897,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,8.0605,12.4224,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.7073,12.5167,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.9677,12.4306,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9023,12.4174,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.7610,12.5327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,8.0911,12.4379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9539,12.5742,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,8.0017,12.7557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.7888,12.4530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7490,12.5358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.9470,12.3898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.9425,12.4772,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.9656,13.0387,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8732,12.5138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.0595,12.5002,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,8.3841,12.5222,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8459,12.4835,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8373,12.4454,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.8554,12.4171,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,8.1551,12.5686,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.8224,12.4141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.7333,12.5142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8805,12.4970,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8706,12.2249,0.0600,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8769,12.4287,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.0342,12.4411,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.9440,12.5200,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8364,12.6017,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.0940,13.1096,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8629,12.5723,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.9683,12.4575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7911,12.4621,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.8487,12.4721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8676,12.3797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.9141,12.4106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.2050,12.3980,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.8511,12.4123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,8.0615,12.3762,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8695,12.3825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,8.0041,12.3712,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,8.0597,12.3697,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.9125,12.4727,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.0572,12.4119,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.1535,12.4635,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.5569,13.2631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.0681,12.5119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.3585,12.5152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.5780,12.4561,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.8214,12.4772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7831,12.6170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8083,12.5393,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8557,12.5550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.9322,12.4657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,8.1902,12.5364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,8.2752,12.5715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.7829,12.4182,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8015,12.5100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,8.2508,12.4732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,8.3262,12.4239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,8.6096,12.4002,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,8.3383,12.9390,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.2169,12.3189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.2109,12.3947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.0556,12.4760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8687,12.4612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7439,12.4421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,8.1435,12.5576,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8627,12.6327,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,8.0026,12.5040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.1155,12.5155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7462,12.5228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.0130,12.5146,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.1362,12.4467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.9985,12.3792,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.0003,12.5506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8905,12.5315,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7207,13.0159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,8.1920,12.4931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.8684,12.3300,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,8.0136,12.3397,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9905,12.3178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.6937,12.2676,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8425,12.2815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8183,12.2253,0.0397,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8189,12.3140,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9067,23.4856,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.6192,29.5703,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7962,34.8859,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7655,38.7608,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.6970,41.2690,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.9659,42.5946,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8210,43.9210,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.8604,45.3517,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9384,45.5022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.8627,45.7061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0503,45.4915,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.8482,45.8421,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.7012,45.9236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.9845,45.7072,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7167,46.1982,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9084,45.8922,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,8.0575,45.8368,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9667,45.9467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,8.0415,45.9288,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,8.0880,46.0173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,8.0848,46.0125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,8.2737,45.8174,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,8.1777,45.9661,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9463,46.9482,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,8.1152,46.4858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,8.1572,46.3611,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,8.3236,46.0205,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,8.2743,45.8347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.9935,45.9787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.9535,45.9333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.9194,45.9954,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.0126,45.9765,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.0985,45.9339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.0069,45.9987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.9936,46.0100,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.1099,45.9441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.9873,46.1415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.1293,46.0790,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.1240,46.0611,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,8.1879,46.8913,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9798,46.8314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,8.3707,46.1818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.1297,46.4934,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0835,46.3414,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.3116,45.8848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.1400,46.0127,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9420,45.9779,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.7956,46.1568,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.7420,46.1183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.1040,45.9526,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9882,46.1235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.2584,45.7702,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,8.1051,45.9386,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.7937,46.1409,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.7376,46.2476,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8309,46.8377,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.3343,46.2057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.0327,46.5150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.9555,46.1946,0.0300,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.1073,45.8705,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,8.1512,45.9078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.1654,46.2579,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.8469,45.8813,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.3235,46.5430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.4538,46.2991,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8125,46.0303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0015,45.8311,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.7098,46.2782,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.7102,46.2900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,8.1481,45.8597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.3574,45.5811,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.1795,46.2426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.2607,46.6839,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9069,46.7823,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.8606,46.6454,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.1830,46.1935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.9789,46.7308,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.0474,46.3531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.9684,45.0567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.5982,46.9895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6945,46.6878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.7688,45.7576,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8907,46.6900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.1550,45.3889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.8702,46.9170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.9127,45.4622,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.8441,45.9460,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.0025,47.4982,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.6297,46.2763,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.6849,46.3293,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.5593,46.2210,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.4441,46.2538,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.3298,46.1788,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.3526,46.0730,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.1063,46.2959,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.0623,45.8886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.1787,46.0707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.3934,46.8119,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.4284,45.3545,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.3832,46.5778,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8016,46.7182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7111,45.2747,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.8107,45.9082,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.7747,47.7204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8935,45.8462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8298,45.8794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.0872,46.8275,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.9576,46.9098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.0087,45.6103,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.8950,45.8659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.7265,46.1173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9300,47.0226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.7607,45.7272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.0075,45.5761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.9456,46.4745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1770,44.1780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.1572,42.7899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.2690,47.0356,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.txt b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.txt new file mode 100644 index 0000000..1ec75be --- /dev/null +++ b/benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.908 +avg_encode_latency_ms=25.724 +p95_encode_latency_ms=46.719 +max_encode_latency_ms=47.720 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.csv diff --git a/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/metadata.txt b/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/metadata.txt new file mode 100644 index 0000000..6e2974a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/metadata.txt @@ -0,0 +1,5 @@ +hostname=Gabriels-MacBook-Pro.local +whoami=gabriel +pwd=/Users/gabriel/development/iBridge +target=100.86.52.88 +Fri May 15 13:44:31 KST 2026 diff --git a/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/ping_20_imac_tailscale.txt b/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/ping_20_imac_tailscale.txt new file mode 100644 index 0000000..42bafc2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/ping_20_imac_tailscale.txt @@ -0,0 +1,25 @@ +PING 100.86.52.88 (100.86.52.88): 56 data bytes +64 bytes from 100.86.52.88: icmp_seq=0 ttl=128 time=507.671 ms +64 bytes from 100.86.52.88: icmp_seq=1 ttl=128 time=20.450 ms +64 bytes from 100.86.52.88: icmp_seq=2 ttl=128 time=28.649 ms +64 bytes from 100.86.52.88: icmp_seq=3 ttl=128 time=46.426 ms +64 bytes from 100.86.52.88: icmp_seq=4 ttl=128 time=58.991 ms +64 bytes from 100.86.52.88: icmp_seq=5 ttl=128 time=195.239 ms +64 bytes from 100.86.52.88: icmp_seq=6 ttl=128 time=9.451 ms +64 bytes from 100.86.52.88: icmp_seq=7 ttl=128 time=15.222 ms +64 bytes from 100.86.52.88: icmp_seq=8 ttl=128 time=37.427 ms +64 bytes from 100.86.52.88: icmp_seq=9 ttl=128 time=37.325 ms +64 bytes from 100.86.52.88: icmp_seq=10 ttl=128 time=60.328 ms +64 bytes from 100.86.52.88: icmp_seq=11 ttl=128 time=74.177 ms +64 bytes from 100.86.52.88: icmp_seq=12 ttl=128 time=91.027 ms +64 bytes from 100.86.52.88: icmp_seq=13 ttl=128 time=13.816 ms +64 bytes from 100.86.52.88: icmp_seq=14 ttl=128 time=21.966 ms +64 bytes from 100.86.52.88: icmp_seq=15 ttl=128 time=28.237 ms +64 bytes from 100.86.52.88: icmp_seq=16 ttl=128 time=47.776 ms +64 bytes from 100.86.52.88: icmp_seq=17 ttl=128 time=72.316 ms +64 bytes from 100.86.52.88: icmp_seq=18 ttl=128 time=98.461 ms +64 bytes from 100.86.52.88: icmp_seq=19 ttl=128 time=11.826 ms + +--- 100.86.52.88 ping statistics --- +20 packets transmitted, 20 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 9.451/73.839/507.671/107.944 ms diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ifconfig.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ifconfig.txt new file mode 100644 index 0000000..b738905 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ifconfig.txt @@ -0,0 +1,128 @@ +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi1: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2e + media: none + status: inactive +anpi0: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2d + media: none + status: inactive +anpi2: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2f + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0d + nd6 options=201 + media: none + status: inactive +en5: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0e + nd6 options=201 + media: none + status: inactive +en6: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0f + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:40 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:44 + media: autoselect + status: inactive +en3: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:48 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:fa:2e:69:8f:40 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 10 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 11 priority 0 path cost 0 + member: en3 flags=3 + ifmaxaddr 0 port 12 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8843 mtu 1500 + options=6460 + ether fa:4d:89:6c:4d:9e + inet6 fe80::f84d:89ff:fe6c:4d9e%ap1 prefixlen 64 scopeid 0xe + nd6 options=201 + media: autoselect +en0: flags=8863 mtu 1500 + options=6460 + ether f8:4d:89:6c:4d:9e + inet6 fe80::838:9e91:cd76:33aa%en0 prefixlen 64 secured scopeid 0xf + inet 192.168.5.31 netmask 0xffffff00 broadcast 192.168.5.255 + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8843 mtu 1500 + options=6460 + ether 22:63:17:96:3e:e5 + inet6 fe80::2063:17ff:fe96:3ee5%awdl0 prefixlen 64 scopeid 0x10 + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether 22:63:17:96:3e:e5 + inet6 fe80::2063:17ff:fe96:3ee5%llw0 prefixlen 64 scopeid 0x11 + nd6 options=201 + media: autoselect + status: active +utun0: flags=8051 mtu 1500 + inet6 fe80::aed4:ce62:6769:6a30%utun0 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::a7e8:8eed:e82:e3cb%utun1 prefixlen 64 scopeid 0x13 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::d850:b7ef:8987:49c9%utun2 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::fa4d:89ff:fe6c:4d9e%utun4 prefixlen 64 scopeid 0x16 + inet 100.102.202.93 --> 100.102.202.93 netmask 0xffffffff + inet6 fd7a:115c:a1e0::d35:ca5d prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::b64e:bed8:ebbb:55a8%utun5 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::36f:293b:592f:4e2%utun6 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::6cc0:5a5:426b:676d%utun7 prefixlen 64 scopeid 0x19 + nd6 options=201 diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/iperf3_missing.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/iperf3_missing.txt new file mode 100644 index 0000000..042d4eb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/iperf3_missing.txt @@ -0,0 +1 @@ +iperf3 not installed; install it on both machines before cable benchmarks. diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/metadata.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/metadata.txt new file mode 100644 index 0000000..0a93704 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/metadata.txt @@ -0,0 +1,7 @@ +case=tailscale +receiver_ip=100.86.52.88 +duration_seconds=10 +timestamp=2026-05-15_1349 +hostname=Gabriels-MacBook-Pro.local +whoami=gabriel +pwd=/Users/gabriel/development/iBridge diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_hardware_ports.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_hardware_ports.txt new file mode 100644 index 0000000..2f2edc7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_hardware_ports.txt @@ -0,0 +1,35 @@ + +Hardware Port: Ethernet Adapter (en4) +Device: en4 +Ethernet Address: 2a:a4:91:dd:96:0d + +Hardware Port: Ethernet Adapter (en5) +Device: en5 +Ethernet Address: 2a:a4:91:dd:96:0e + +Hardware Port: Ethernet Adapter (en6) +Device: en6 +Ethernet Address: 2a:a4:91:dd:96:0f + +Hardware Port: Thunderbolt Bridge +Device: bridge0 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Wi-Fi +Device: en0 +Ethernet Address: f8:4d:89:6c:4d:9e + +Hardware Port: Thunderbolt 1 +Device: en1 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Thunderbolt 2 +Device: en2 +Ethernet Address: 36:fa:2e:69:8f:44 + +Hardware Port: Thunderbolt 3 +Device: en3 +Ethernet Address: 36:fa:2e:69:8f:48 + +VLAN Configurations +=================== diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_services.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_services.txt new file mode 100644 index 0000000..e682797 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/networksetup_services.txt @@ -0,0 +1,8 @@ +An asterisk (*) denotes that a network service is disabled. +Thunderbolt Bridge +Wi-Fi +iPhone USB +TunnelBear +hide.me VPN (Wireguard) +*Betternet VPN (Hydra) +Tailscale diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ping_100.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ping_100.txt new file mode 100644 index 0000000..d5564c8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ping_100.txt @@ -0,0 +1,105 @@ +PING 100.86.52.88 (100.86.52.88): 56 data bytes +64 bytes from 100.86.52.88: icmp_seq=0 ttl=128 time=485.532 ms +64 bytes from 100.86.52.88: icmp_seq=1 ttl=128 time=96.845 ms +64 bytes from 100.86.52.88: icmp_seq=2 ttl=128 time=113.404 ms +64 bytes from 100.86.52.88: icmp_seq=3 ttl=128 time=30.351 ms +64 bytes from 100.86.52.88: icmp_seq=4 ttl=128 time=28.312 ms +64 bytes from 100.86.52.88: icmp_seq=5 ttl=128 time=38.864 ms +64 bytes from 100.86.52.88: icmp_seq=6 ttl=128 time=56.246 ms +64 bytes from 100.86.52.88: icmp_seq=7 ttl=128 time=67.443 ms +64 bytes from 100.86.52.88: icmp_seq=8 ttl=128 time=94.308 ms +64 bytes from 100.86.52.88: icmp_seq=9 ttl=128 time=17.227 ms +64 bytes from 100.86.52.88: icmp_seq=10 ttl=128 time=17.708 ms +64 bytes from 100.86.52.88: icmp_seq=11 ttl=128 time=45.044 ms +64 bytes from 100.86.52.88: icmp_seq=12 ttl=128 time=56.228 ms +64 bytes from 100.86.52.88: icmp_seq=13 ttl=128 time=83.065 ms +64 bytes from 100.86.52.88: icmp_seq=14 ttl=128 time=13.132 ms +64 bytes from 100.86.52.88: icmp_seq=15 ttl=128 time=32.405 ms +64 bytes from 100.86.52.88: icmp_seq=16 ttl=128 time=39.753 ms +64 bytes from 100.86.52.88: icmp_seq=17 ttl=128 time=56.332 ms +64 bytes from 100.86.52.88: icmp_seq=18 ttl=128 time=68.928 ms +64 bytes from 100.86.52.88: icmp_seq=19 ttl=128 time=170.154 ms +64 bytes from 100.86.52.88: icmp_seq=20 ttl=128 time=178.428 ms +64 bytes from 100.86.52.88: icmp_seq=21 ttl=128 time=107.570 ms +64 bytes from 100.86.52.88: icmp_seq=22 ttl=128 time=17.759 ms +Request timeout for icmp_seq 23 +64 bytes from 100.86.52.88: icmp_seq=24 ttl=128 time=38.575 ms +64 bytes from 100.86.52.88: icmp_seq=25 ttl=128 time=52.181 ms +64 bytes from 100.86.52.88: icmp_seq=26 ttl=128 time=75.048 ms +64 bytes from 100.86.52.88: icmp_seq=27 ttl=128 time=11.923 ms +64 bytes from 100.86.52.88: icmp_seq=28 ttl=128 time=8.198 ms +64 bytes from 100.86.52.88: icmp_seq=29 ttl=128 time=20.260 ms +64 bytes from 100.86.52.88: icmp_seq=30 ttl=128 time=139.839 ms +64 bytes from 100.86.52.88: icmp_seq=31 ttl=128 time=55.368 ms +64 bytes from 100.86.52.88: icmp_seq=32 ttl=128 time=69.585 ms +64 bytes from 100.86.52.88: icmp_seq=33 ttl=128 time=10.601 ms +64 bytes from 100.86.52.88: icmp_seq=34 ttl=128 time=15.390 ms +64 bytes from 100.86.52.88: icmp_seq=35 ttl=128 time=25.247 ms +64 bytes from 100.86.52.88: icmp_seq=36 ttl=128 time=35.093 ms +64 bytes from 100.86.52.88: icmp_seq=37 ttl=128 time=49.528 ms +64 bytes from 100.86.52.88: icmp_seq=38 ttl=128 time=67.895 ms +64 bytes from 100.86.52.88: icmp_seq=39 ttl=128 time=20.394 ms +64 bytes from 100.86.52.88: icmp_seq=40 ttl=128 time=19.771 ms +64 bytes from 100.86.52.88: icmp_seq=41 ttl=128 time=31.319 ms +64 bytes from 100.86.52.88: icmp_seq=42 ttl=128 time=46.205 ms +64 bytes from 100.86.52.88: icmp_seq=43 ttl=128 time=68.371 ms +Request timeout for icmp_seq 44 +64 bytes from 100.86.52.88: icmp_seq=45 ttl=128 time=108.940 ms +64 bytes from 100.86.52.88: icmp_seq=46 ttl=128 time=95.284 ms +64 bytes from 100.86.52.88: icmp_seq=47 ttl=128 time=123.484 ms +64 bytes from 100.86.52.88: icmp_seq=48 ttl=128 time=34.816 ms +64 bytes from 100.86.52.88: icmp_seq=49 ttl=128 time=53.458 ms +64 bytes from 100.86.52.88: icmp_seq=50 ttl=128 time=68.531 ms +64 bytes from 100.86.52.88: icmp_seq=51 ttl=128 time=114.501 ms +64 bytes from 100.86.52.88: icmp_seq=52 ttl=128 time=12.008 ms +64 bytes from 100.86.52.88: icmp_seq=53 ttl=128 time=35.364 ms +64 bytes from 100.86.52.88: icmp_seq=54 ttl=128 time=42.111 ms +64 bytes from 100.86.52.88: icmp_seq=55 ttl=128 time=67.394 ms +64 bytes from 100.86.52.88: icmp_seq=56 ttl=128 time=66.999 ms +64 bytes from 100.86.52.88: icmp_seq=57 ttl=128 time=13.026 ms +64 bytes from 100.86.52.88: icmp_seq=58 ttl=128 time=14.254 ms +64 bytes from 100.86.52.88: icmp_seq=59 ttl=128 time=31.994 ms +64 bytes from 100.86.52.88: icmp_seq=60 ttl=128 time=37.802 ms +64 bytes from 100.86.52.88: icmp_seq=61 ttl=128 time=59.071 ms +64 bytes from 100.86.52.88: icmp_seq=62 ttl=128 time=63.994 ms +64 bytes from 100.86.52.88: icmp_seq=63 ttl=128 time=193.539 ms +64 bytes from 100.86.52.88: icmp_seq=64 ttl=128 time=17.889 ms +64 bytes from 100.86.52.88: icmp_seq=65 ttl=128 time=16.511 ms +64 bytes from 100.86.52.88: icmp_seq=66 ttl=128 time=37.080 ms +64 bytes from 100.86.52.88: icmp_seq=67 ttl=128 time=60.337 ms +64 bytes from 100.86.52.88: icmp_seq=68 ttl=128 time=79.695 ms +64 bytes from 100.86.52.88: icmp_seq=69 ttl=128 time=16.487 ms +64 bytes from 100.86.52.88: icmp_seq=70 ttl=128 time=46.567 ms +64 bytes from 100.86.52.88: icmp_seq=71 ttl=128 time=124.248 ms +64 bytes from 100.86.52.88: icmp_seq=72 ttl=128 time=138.802 ms +64 bytes from 100.86.52.88: icmp_seq=73 ttl=128 time=158.461 ms +64 bytes from 100.86.52.88: icmp_seq=74 ttl=128 time=73.635 ms +64 bytes from 100.86.52.88: icmp_seq=75 ttl=128 time=9.714 ms +64 bytes from 100.86.52.88: icmp_seq=76 ttl=128 time=17.873 ms +64 bytes from 100.86.52.88: icmp_seq=77 ttl=128 time=34.891 ms +64 bytes from 100.86.52.88: icmp_seq=78 ttl=128 time=53.166 ms +64 bytes from 100.86.52.88: icmp_seq=79 ttl=128 time=80.076 ms +64 bytes from 100.86.52.88: icmp_seq=80 ttl=128 time=14.404 ms +64 bytes from 100.86.52.88: icmp_seq=81 ttl=128 time=19.061 ms +64 bytes from 100.86.52.88: icmp_seq=82 ttl=128 time=25.532 ms +64 bytes from 100.86.52.88: icmp_seq=83 ttl=128 time=46.865 ms +64 bytes from 100.86.52.88: icmp_seq=84 ttl=128 time=59.757 ms +64 bytes from 100.86.52.88: icmp_seq=85 ttl=128 time=76.895 ms +64 bytes from 100.86.52.88: icmp_seq=86 ttl=128 time=95.894 ms +64 bytes from 100.86.52.88: icmp_seq=87 ttl=128 time=17.322 ms +64 bytes from 100.86.52.88: icmp_seq=88 ttl=128 time=57.101 ms +64 bytes from 100.86.52.88: icmp_seq=89 ttl=128 time=52.135 ms +64 bytes from 100.86.52.88: icmp_seq=90 ttl=128 time=67.492 ms +64 bytes from 100.86.52.88: icmp_seq=91 ttl=128 time=88.284 ms +64 bytes from 100.86.52.88: icmp_seq=92 ttl=128 time=17.833 ms +64 bytes from 100.86.52.88: icmp_seq=93 ttl=128 time=45.691 ms +64 bytes from 100.86.52.88: icmp_seq=94 ttl=128 time=57.384 ms +64 bytes from 100.86.52.88: icmp_seq=95 ttl=128 time=77.357 ms +64 bytes from 100.86.52.88: icmp_seq=96 ttl=128 time=97.957 ms +64 bytes from 100.86.52.88: icmp_seq=97 ttl=128 time=15.120 ms +64 bytes from 100.86.52.88: icmp_seq=98 ttl=128 time=36.733 ms +64 bytes from 100.86.52.88: icmp_seq=99 ttl=128 time=116.316 ms + +--- 100.86.52.88 ping statistics --- +100 packets transmitted, 98 packets received, 2.0% packet loss +round-trip min/avg/max/stddev = 8.198/61.867/485.532/58.935 ms diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/summary.md b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/summary.md new file mode 100644 index 0000000..f0ddd75 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/summary.md @@ -0,0 +1,13 @@ +# Network Matrix Result: tailscale + +- Receiver IP: `100.86.52.88` +- Duration: `10` seconds +- Status: raw command artifacts captured; summarize min/avg/max/loss and iperf throughput after the physical path is confirmed. + +## Required Notes + +- Interface actually used: +- Physical path: +- Tailscale direct/relay status, if applicable: +- Link speed, if visible: +- Observed blockers: diff --git a/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/tailscale_missing.txt b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/tailscale_missing.txt new file mode 100644 index 0000000..cc71993 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/tailscale_missing.txt @@ -0,0 +1 @@ +tailscale CLI not found diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.csv new file mode 100644 index 0000000..5bfd2a2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2286,42.8506,0.0283,0.0000,0,0,0.0000,0,0.0000,0,1,0,82131,0 +1,3.0282,16.5780,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,30402,0 +2,3.0382,7.5400,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,24351,0 +3,2.9537,9.2139,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,22485,0 +4,2.9352,11.0260,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,32802,0 +5,3.0198,5.8449,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,19209,0 +6,3.1170,5.8638,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +7,3.0702,5.8812,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5298,0 +8,3.0842,5.7879,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,21619,0 +9,3.1778,5.9480,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6078,0 +10,3.0286,5.8575,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4146,0 +11,3.1310,5.9049,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3593,0 +12,3.1364,5.9706,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,21285,0 +13,3.1378,6.1055,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2440,0 +14,3.1785,5.9129,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,977,0 +15,3.3110,5.9336,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,684,0 +16,3.2365,5.9284,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +17,3.1720,5.9793,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +18,3.3433,5.8993,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +19,3.1884,5.8867,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +20,3.1643,5.8114,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7802,0 +21,3.1675,6.0943,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +22,3.4870,5.9290,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,748,0 +23,3.3663,5.8836,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +24,3.4802,5.8783,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7807,0 +25,3.4373,5.7748,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,765,0 +26,3.4591,5.8480,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +27,3.4655,5.8253,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +28,3.4269,5.8219,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7936,0 +29,3.4302,6.0737,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +30,3.3822,5.8149,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +31,3.3950,5.8038,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +32,3.4001,5.8388,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6983,0 +33,3.5335,5.9228,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,858,0 +34,3.4188,5.7994,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +35,3.3634,5.8443,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +36,3.3703,5.8060,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9134,0 +37,3.3315,5.7739,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,894,0 +38,3.4140,5.7944,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +39,3.3918,5.7027,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +40,3.4046,5.7643,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8347,0 +41,3.3437,5.6980,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +42,3.3500,5.7320,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,847,0 +43,3.3549,5.8913,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,899,0 +44,3.3561,5.7796,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7616,0 +45,3.4890,6.1753,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +46,3.4554,6.0692,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +47,3.1072,6.0647,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,965,0 +48,3.3818,5.8112,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8669,0 +49,3.4482,5.7743,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1062,0 +50,3.3330,5.7615,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +51,3.3905,5.8144,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +52,3.3561,5.8414,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8941,0 +53,3.3058,5.8063,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +54,3.4095,5.7539,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,897,0 +55,3.3621,5.7757,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +56,3.3995,5.8278,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8897,0 +57,3.3758,5.8483,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +58,3.4210,5.8971,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,908,0 +59,3.3413,5.7970,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +60,3.3262,5.7266,0.0333,0.0000,0,0,0.0000,0,0.0000,0,1,0,166938,0 +61,3.4303,6.1734,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,10735,0 +62,3.1072,5.8333,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,15536,0 +63,3.0867,5.8767,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,20221,0 +64,3.0335,6.1831,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,40965,0 +65,3.0607,5.9623,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,21718,0 +66,3.1088,5.8925,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16531,0 +67,3.0691,5.9869,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9185,0 +68,2.9940,5.9602,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,23162,0 +69,3.0321,5.8364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4291,0 +70,3.1433,5.8289,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3262,0 +71,3.1621,5.8040,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2526,0 +72,3.1752,5.7492,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,17870,0 +73,3.3617,5.9769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,644,0 +74,3.4296,5.8119,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +75,3.4335,5.8370,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +76,3.4830,5.7992,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8073,0 +77,3.5032,6.0738,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +78,3.4446,5.7730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +79,3.4365,5.8879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +80,3.4220,5.8107,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8220,0 +81,3.4720,5.7127,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +82,3.4211,5.7952,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +83,3.3216,5.8119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +84,3.3852,5.8080,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7799,0 +85,3.4865,5.7762,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +86,3.7202,5.8090,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +87,3.4189,5.7635,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +88,3.5475,5.8319,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7808,0 +89,3.6071,5.7570,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +90,3.4310,5.8447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +91,3.4180,5.8288,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +92,3.4000,5.8247,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7913,0 +93,3.3996,5.9778,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +94,3.7698,5.8329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +95,3.6721,5.8956,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +96,3.7525,5.8177,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,22264,0 +97,3.1053,5.8548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +98,3.4244,5.7505,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +99,3.4792,5.9030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,846,0 +100,3.3925,5.8335,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +101,3.3460,5.7604,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +102,3.4303,5.7999,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +103,3.4398,5.9621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +104,3.3447,5.7630,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8304,0 +105,3.3791,5.8092,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,745,0 +106,3.3736,5.7702,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +107,3.3580,5.7980,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +108,3.3549,5.8022,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7589,0 +109,3.4207,6.0070,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +110,3.3255,5.7702,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,952,0 +111,3.3245,5.7455,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +112,3.3613,5.7030,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8567,0 +113,3.3951,5.7810,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1013,0 +114,3.4618,5.6990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +115,3.3316,5.8094,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,843,0 +116,3.3187,5.8683,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9010,0 +117,3.3246,5.7986,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +118,3.4614,5.9116,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,870,0 +119,3.4170,5.9330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +120,3.4890,6.1128,0.0323,0.0000,0,0,0.0000,0,0.0000,0,1,0,142192,0 +121,3.6438,6.0593,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,8034,0 +122,3.5359,5.8396,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +123,3.4129,5.8969,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16154,0 +124,3.3323,5.9001,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,30523,0 +125,3.4821,6.1633,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17171,0 +126,3.3730,5.8288,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17189,0 +127,3.3738,6.3125,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7306,0 +128,3.3553,5.7971,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17490,0 +129,3.4154,5.8075,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5000,0 +130,3.4277,5.8140,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4186,0 +131,3.3672,5.8014,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4521,0 +132,3.3166,5.7721,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,20284,0 +133,3.1318,5.9463,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +134,3.4625,5.8792,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +135,3.4639,5.8245,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +136,3.3581,5.7020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +137,3.4750,6.0434,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +138,3.4733,5.8687,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +139,3.4158,5.8245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +140,3.4519,5.8130,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +141,3.4298,6.0842,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +142,3.4883,5.8199,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +143,3.3580,5.8165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +144,3.3894,5.8276,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8206,0 +145,3.3543,5.8143,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +146,3.4208,5.7814,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +147,3.4360,6.0495,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +148,3.5296,6.0165,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7787,0 +149,3.4071,5.8578,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +150,3.3563,5.8079,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +151,3.3571,5.7966,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +152,3.3338,5.7631,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7784,0 +153,3.4613,5.8310,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +154,3.3307,5.8246,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +155,3.5443,5.7865,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +156,3.3897,5.8244,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7883,0 +157,3.7426,5.9623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +158,3.3543,5.8313,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,796,0 +159,3.6846,5.7800,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,832,0 +160,3.6531,5.8447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6962,0 +161,3.5207,5.8161,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +162,3.3583,5.7716,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +163,3.3956,5.8677,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +164,3.4061,5.8241,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,9075,0 +165,3.3326,5.7782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +166,3.3339,5.8420,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +167,3.4073,5.7578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,809,0 +168,3.3753,5.7610,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8371,0 +169,3.2975,5.8415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,787,0 +170,3.3991,5.7785,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,861,0 +171,3.5758,5.7709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +172,3.7098,5.7946,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7600,0 +173,3.6991,6.0705,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +174,3.6019,5.7777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,934,0 +175,3.3306,5.7919,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,904,0 +176,3.3975,5.7216,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8593,0 +177,3.3425,5.8485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1010,0 +178,3.4631,5.7980,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +179,3.3916,5.8168,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +180,3.3626,5.7568,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,147037,0 +181,3.5552,5.8746,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7440,0 +182,3.4173,10.6388,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,15187,0 +183,3.4017,11.9271,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,25141,0 +184,3.4030,12.1757,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,46937,0 +185,3.4001,12.5181,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,25012,0 +186,3.5090,12.2528,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,20272,0 +187,3.4084,12.2767,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8821,0 +188,3.3616,12.2716,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24616,0 +189,3.3510,12.9275,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4094,0 +190,3.3228,12.1260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4088,0 +191,3.3827,12.2052,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3356,0 +192,3.3987,11.5907,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,30389,0 +193,3.0997,10.4337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +194,3.3765,10.4835,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +195,3.3754,10.1816,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +196,3.4217,10.2606,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8455,0 +197,3.3146,10.2112,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +198,3.3616,10.2415,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +199,3.4033,10.1265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +200,3.4043,10.2116,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8287,0 +201,3.4194,10.3210,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +202,3.4192,10.1677,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +203,3.3967,10.3330,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +204,3.3755,10.2222,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7551,0 +205,3.3403,10.6076,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +206,3.3846,10.1770,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +207,3.3882,10.2059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +208,3.4352,10.1028,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8365,0 +209,3.3650,10.1974,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +210,3.3640,10.2375,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +211,3.3722,10.8789,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +212,3.3128,10.0213,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8856,0 +213,3.3299,10.4395,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +214,3.3530,10.5167,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +215,3.3596,10.1814,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +216,3.3625,10.3285,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8731,0 +217,3.3727,10.0304,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +218,3.3960,10.4320,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +219,3.3933,10.1935,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +220,3.4287,10.1322,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7870,0 +221,3.4241,10.5578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +222,3.3379,10.3762,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +223,3.3942,10.3366,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +224,3.3868,10.3294,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +225,3.3878,10.2270,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,817,0 +226,3.1957,10.4039,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +227,3.1465,10.5843,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,759,0 +228,3.2488,10.5888,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,9118,0 +229,3.1571,10.1466,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +230,3.1466,10.1305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +231,3.0979,10.2253,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +232,3.4062,10.2752,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8323,0 +233,3.3950,10.2579,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +234,3.3385,10.3630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,807,0 +235,3.3558,10.2792,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +236,3.3387,10.1848,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7623,0 +237,3.3553,10.4300,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +238,3.4032,10.3090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,912,0 +239,3.3385,10.2484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +240,3.3861,10.1490,0.0199,0.0000,0,0,0.0000,0,0.0000,0,1,0,119857,0 +241,3.3173,10.2257,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,11196,0 +242,3.4822,10.1773,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,10231,0 +243,3.3845,10.3748,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15790,0 +244,3.3337,10.2299,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,31337,0 +245,3.4160,10.2615,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,23740,0 +246,3.3573,10.5318,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,19438,0 +247,3.4448,10.8038,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,10961,0 +248,3.3765,9.8507,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,26655,0 +249,3.3282,10.1677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7038,0 +250,3.3467,10.3093,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4915,0 +251,3.3821,10.7227,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,4067,0 +252,3.3935,10.1728,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,21791,0 +253,3.1796,10.6600,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2566,0 +254,3.3832,10.2305,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,907,0 +255,3.3782,10.3295,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,655,0 +256,3.3945,10.2575,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22249,0 +257,3.3544,10.2476,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,631,0 +258,3.4452,10.6251,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +259,3.3370,10.1701,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +260,3.3461,10.2615,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9092,0 +261,3.3637,10.3279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +262,3.3799,10.2229,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +263,3.3662,10.3827,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +264,3.3748,10.2268,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8320,0 +265,3.3734,10.1501,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +266,3.3371,10.2636,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +267,3.4610,10.2367,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +268,3.4140,10.2604,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7585,0 +269,3.4038,11.2179,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +270,3.3670,10.3292,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +271,3.4423,10.2686,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +272,3.3796,10.2191,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8400,0 +273,3.3675,10.2177,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +274,3.3365,9.5435,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +275,3.3519,9.6930,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +276,3.3827,10.3589,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8889,0 +277,3.3240,9.5817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +278,3.3407,10.3915,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +279,3.3145,10.3033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +280,3.3545,10.2559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8766,0 +281,3.3414,10.1852,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +282,3.4945,10.2643,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +283,3.3442,10.3003,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +284,3.2831,10.3332,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7902,0 +285,3.3419,10.6747,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +286,3.3002,10.2849,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +287,3.3872,10.0971,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,813,0 +288,3.3387,10.2833,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6947,0 +289,3.3317,10.3683,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,797,0 +290,3.3862,10.1880,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +291,3.3737,10.1755,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +292,3.4373,10.2737,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9123,0 +293,3.3893,10.1937,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +294,3.4263,10.3203,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,729,0 +295,3.3563,10.1743,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +296,3.3193,10.3549,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,8314,0 +297,3.3697,10.2169,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +298,3.3219,9.5824,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +299,3.4951,9.1472,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,828,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.txt new file mode 100644 index 0000000..13a6608 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.372 +avg_encode_latency_ms=7.851 +p95_encode_latency_ms=10.808 +max_encode_latency_ms=42.851 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2229186 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/2560_after_service_restart.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.csv new file mode 100644 index 0000000..ca9bd92 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.5965,72.3259,0.0289,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,4.9002,45.8643,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.5682,48.7532,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.3494,47.0640,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.5031,37.0654,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.5882,28.2735,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.5968,17.4119,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,4.5698,10.9170,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,4.6447,10.7196,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,4.5623,10.7487,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,4.5177,10.5780,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,4.4140,10.6524,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,4.5248,11.0099,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,4.5980,10.9293,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,4.6325,10.7777,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,4.8067,10.8232,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,4.8103,10.7995,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,4.7631,10.7218,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,4.8736,10.9034,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,4.7856,10.8462,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,4.7485,10.8212,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,4.9456,10.9325,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,4.9867,10.6350,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.2537,10.4597,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.2320,10.8172,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.2216,10.9182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.1204,10.7103,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.1405,10.8178,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.0561,11.2575,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,4.9910,10.9055,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,4.9707,10.8369,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.0023,10.6570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,4.9462,10.6229,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,4.9966,10.8879,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.1590,10.7186,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.1035,10.5490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.1249,10.5969,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.1248,10.6363,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.1273,10.4630,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.1553,10.4624,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,5.1617,10.3871,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.0963,10.6855,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.1435,10.7460,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.1723,10.7461,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.1398,11.2120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.1893,11.0136,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.1021,11.1455,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,4.4556,11.1986,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.3145,10.9041,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.1690,10.5324,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.1842,10.4623,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.1820,10.5117,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.1035,10.5400,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.1149,10.6779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.1965,10.5295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.6002,10.6572,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.1037,10.5828,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.1065,11.1447,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.1697,10.5148,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.0883,10.5397,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.1375,10.8909,0.0547,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.1743,10.9690,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,4.5980,10.8855,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,4.6962,10.8240,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,4.7174,10.5995,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,4.6797,10.4734,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,4.7759,10.6712,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,4.7057,11.1312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,4.5180,10.5465,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,4.6750,10.7980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,4.7857,10.6683,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,4.7897,10.5535,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,4.7400,10.7287,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,4.9211,10.8887,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.1205,10.6347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.1731,10.7740,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.1919,10.9050,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.2108,10.5333,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.1878,10.7580,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.1762,10.7755,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.1588,10.8733,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.2083,10.5506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.1995,10.6056,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.1630,10.8156,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.1508,10.6419,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.1790,10.8140,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.3406,10.5306,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.2345,10.6220,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.2336,10.6497,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.2627,10.5660,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.1596,10.6588,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.2192,11.1533,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.1970,10.9765,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.2105,10.5374,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.4715,10.9406,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.4244,10.7655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.3308,10.4299,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.0994,10.6479,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.3305,10.8130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,5.1966,10.5803,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.1188,10.5145,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.1762,10.7688,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.1606,10.7927,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,4.9780,10.6545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.0466,10.5364,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.0971,10.5601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.0845,10.4430,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.1851,10.7798,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.0771,10.9153,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.1219,10.4578,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.0846,10.7164,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.1830,10.6919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.1353,10.5577,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.1651,10.8004,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.1276,10.3665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.1164,10.6958,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.0428,10.7715,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.3614,10.8355,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.3247,10.8535,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.1700,10.7070,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.9836,11.2625,0.0251,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.4568,10.8138,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.2803,10.6533,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.2728,10.6165,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,4.8725,11.1231,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.1670,10.7124,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.1859,11.1334,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.0302,10.9070,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.2095,10.4829,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.2455,10.7577,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.1555,10.4806,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.1049,10.5834,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.1993,10.6918,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,4.9596,10.8670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.1330,10.7473,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,5.2102,10.6529,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.2614,10.4828,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.3318,10.9516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.2633,10.6367,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.2811,10.6679,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.2328,10.7943,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.2418,10.6949,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.0982,10.4731,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.1336,10.7167,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.1585,10.5637,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.1384,10.6951,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.1851,10.6521,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.1720,10.9675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.1607,10.7247,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,5.1151,10.6182,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.1610,10.3990,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.1533,10.4225,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.2144,10.4380,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.1890,10.5059,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,5.2176,10.5032,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.2648,10.5424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.1736,10.7344,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.3249,10.7334,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.1415,10.5455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.3569,10.4734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.3670,10.5077,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.2917,10.6345,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.1091,10.6919,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.1753,10.7915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.1104,10.4950,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.1389,10.7342,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.0537,10.6430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.1025,10.3294,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.0959,11.0344,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.0716,10.7028,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.1377,10.5755,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.3555,10.5180,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.3316,10.7070,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.4960,10.5710,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.3319,10.5732,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.1193,10.4396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.1527,11.1215,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.1766,10.5078,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.2295,10.7423,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.1328,10.7513,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,5.1003,10.5979,0.0261,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,5.2118,10.6600,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.1619,22.7676,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.1103,25.1246,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.0948,27.3019,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.1337,29.3245,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.1399,31.5502,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,4.9219,34.0393,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.1200,35.4437,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.1502,36.5733,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.1782,38.3679,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.1550,39.0564,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.0878,39.9184,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,4.5182,40.7987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.1498,40.3957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.1677,40.8282,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.1270,40.9365,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.1071,40.9952,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.1318,41.0449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.1629,41.1363,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.0929,41.1587,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.2017,41.0801,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.1242,41.1260,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.1835,41.0784,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.1093,41.8459,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.1851,41.5097,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.1830,41.2328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.1150,41.2963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,5.1189,41.2086,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,5.1898,41.0598,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.0810,41.2552,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.1391,41.0561,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.1480,41.1147,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,5.0975,41.2017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,5.1141,41.2108,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,5.0850,41.0328,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.1810,41.2074,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.0876,41.1801,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.1816,40.9480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,4.9358,41.2838,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.0666,41.7804,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.0488,41.6689,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.0786,41.5663,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.1312,41.4820,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.2428,41.2148,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.0834,41.4459,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,4.9188,41.4810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,4.7832,41.3612,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,4.6876,41.3348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,4.5516,41.4693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,4.7116,41.4553,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,4.7750,41.4387,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,4.9669,41.2892,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.1593,41.1352,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.1389,41.0123,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.1762,40.9037,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.1835,41.6963,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.1320,41.4914,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,5.2922,41.2549,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,5.1664,41.3572,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,5.2490,41.0147,0.0483,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,5.1597,41.1813,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,5.1375,41.1391,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,5.1182,41.1744,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,5.0851,41.3592,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.1091,40.9883,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.1048,40.9961,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,4.7846,41.1655,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,5.1287,41.0556,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,5.1462,41.1800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,5.1176,41.2890,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.1578,41.1158,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.1420,41.9390,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,4.5641,42.2644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.1204,41.4462,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.1244,41.4904,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.2170,41.1280,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.2623,41.2200,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.1283,41.2657,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.1466,41.2517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,5.2095,41.1676,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,5.1950,41.1299,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,5.1470,41.1288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,5.1557,41.0576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,5.1628,41.1115,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.0950,41.2037,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.0834,41.1701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.1260,41.1767,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.1378,41.9572,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.2356,41.5929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,5.2871,41.3532,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,5.1768,41.2707,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.1106,40.5969,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.1275,40.3295,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.1576,42.8819,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.1696,41.7754,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.1930,40.5007,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.3529,42.7635,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.1206,40.6809,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,5.1419,41.2190,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.0982,41.2148,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,5.0740,41.2681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,5.1226,41.1777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.1528,41.3387,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.1608,41.9767,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.0820,41.6685,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.1435,41.4344,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.1285,41.3396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.0762,41.2765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.1525,41.0458,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.0971,41.1455,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.0780,41.1584,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.1268,41.1916,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.1048,41.0603,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.1753,41.0515,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.1384,41.0845,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.1043,40.4580,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.1188,39.9691,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.1955,45.7497,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.1730,48.8713,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.txt new file mode 100644 index 0000000..610a8c3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.098 +avg_encode_latency_ms=23.186 +p95_encode_latency_ms=41.700 +max_encode_latency_ms=72.326 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.csv new file mode 100644 index 0000000..5638b76 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.6011,79.1806,0.0516,0.0000,0,0,0.0000,0,0.0000,0,1,0,119305,0 +1,4.5323,54.7540,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,38979,0 +2,4.8723,57.4164,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,31152,0 +3,4.7283,53.1104,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,31898,0 +4,4.9968,42.3560,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,46919,0 +5,4.7372,33.3361,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,32363,0 +6,4.9203,24.6365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6562,0 +7,4.9758,15.3523,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5524,0 +8,4.9337,11.4675,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,27510,0 +9,5.2961,11.4962,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3809,0 +10,5.3095,11.6826,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4111,0 +11,5.2976,11.5435,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3787,0 +12,5.3007,12.0510,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,17595,0 +13,5.4173,11.5353,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +14,5.1750,11.6703,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1301,0 +15,5.2548,11.7237,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +16,5.3199,11.7432,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11856,0 +17,5.2529,11.5553,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +18,5.4387,11.7957,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +19,5.3980,11.5533,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +20,5.3090,11.7116,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,12209,0 +21,5.1952,11.6590,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +22,5.2777,11.6563,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +23,5.3127,11.5870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +24,5.2544,11.6369,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12211,0 +25,5.1646,11.6781,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +26,5.2316,11.6304,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +27,5.2569,11.8112,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1351,0 +28,5.2855,11.8311,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +29,5.4470,11.5173,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +30,5.3514,11.5569,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +31,5.6978,11.5237,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +32,5.5161,11.8593,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,10958,0 +33,5.5111,12.0768,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1214,0 +34,5.5403,11.5844,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +35,5.6769,11.4086,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +36,5.4488,11.7635,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13643,0 +37,5.5060,11.5275,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +38,5.4808,11.5535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1326,0 +39,5.5498,11.4558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +40,5.6511,11.3882,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13095,0 +41,5.7748,11.4618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1319,0 +42,5.6774,11.5227,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +43,5.6992,11.4835,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +44,5.6327,11.8193,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11947,0 +45,5.7752,11.6177,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +46,5.6946,11.4225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +47,5.6789,11.4333,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +48,5.8571,11.3706,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13444,0 +49,5.9079,11.5493,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1425,0 +50,5.6279,11.6019,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +51,5.6217,11.4444,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1343,0 +52,5.6367,11.4204,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13768,0 +53,5.6678,11.6228,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +54,5.5638,11.8128,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +55,5.7527,11.5394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +56,5.7498,11.5851,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12238,0 +57,5.6121,11.4975,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +58,5.7003,11.4940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +59,5.5960,11.5654,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1348,0 +60,5.6075,11.7784,0.0376,0.0000,0,0,0.0000,0,0.0000,0,1,0,260448,0 +61,5.6984,11.9224,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,18257,0 +62,5.1179,11.6505,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,23541,0 +63,4.9495,11.6500,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,31264,0 +64,4.7395,11.5045,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,63640,0 +65,4.8615,11.5113,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,29048,0 +66,4.8496,11.5562,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,18453,0 +67,4.6050,11.8722,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3054,0 +68,4.5834,11.5376,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,24466,0 +69,4.6211,11.6051,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3935,0 +70,4.7141,11.3013,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3948,0 +71,4.7680,11.1843,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1599,0 +72,5.3347,11.5938,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16019,0 +73,5.2302,11.6668,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +74,5.2446,11.4027,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +75,5.4239,11.7917,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1318,0 +76,5.5306,11.9754,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +77,5.5753,11.7786,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +78,5.4547,11.7599,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +79,5.5972,11.3834,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +80,5.3661,11.5533,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13416,0 +81,5.4236,11.3290,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +82,5.3823,11.4488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +83,5.3588,11.6936,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +84,5.4314,11.5441,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +85,5.5480,11.5567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1363,0 +86,5.5355,11.3910,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1320,0 +87,5.3756,11.6092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1315,0 +88,5.5997,11.4324,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12232,0 +89,5.5583,11.5012,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +90,5.6730,11.5710,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +91,5.7749,11.3807,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1345,0 +92,5.5668,11.7339,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12437,0 +93,5.5176,11.5599,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +94,5.6750,11.5707,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +95,5.6140,11.7015,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1324,0 +96,5.7229,11.5353,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,34896,0 +97,5.6448,11.4480,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1222,0 +98,5.6917,11.6505,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +99,6.0634,11.7150,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1340,0 +100,5.2050,11.8430,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +101,5.8080,11.4091,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1370,0 +102,5.6407,11.4898,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +103,5.8965,11.5363,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +104,5.7474,11.4246,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13073,0 +105,5.7253,11.6020,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1373,0 +106,5.6262,11.4243,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +107,5.6455,11.5397,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1353,0 +108,5.7449,11.6534,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,11942,0 +109,5.6750,11.4146,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +110,5.2057,11.8175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +111,5.2015,11.4605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +112,5.2281,11.4958,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13438,0 +113,5.6024,11.4808,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +114,5.0954,11.8371,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1341,0 +115,5.7702,11.5044,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +116,5.7231,11.5741,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13804,0 +117,5.5758,11.3646,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1371,0 +118,5.6981,11.5446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1411,0 +119,5.6285,11.3874,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1420,0 +120,5.6123,11.3900,0.0465,0.0000,0,0,0.0000,0,0.0000,0,1,0,216271,0 +121,5.6191,11.3368,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10823,0 +122,5.6290,11.4846,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15657,0 +123,5.5729,11.6171,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,25428,0 +124,5.6822,11.7986,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,57112,0 +125,5.6762,11.5234,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,39068,0 +126,5.6925,11.3824,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22786,0 +127,5.6430,11.4259,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,17573,0 +128,5.8008,11.3524,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,29745,0 +129,5.6941,11.4183,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9096,0 +130,5.6513,11.3808,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6293,0 +131,5.5820,11.4914,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2044,0 +132,5.7635,11.7996,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,23443,0 +133,5.8478,11.6260,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +134,5.7066,11.6675,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +135,6.8015,12.0541,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +136,5.7778,11.6278,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13028,0 +137,5.5383,11.5433,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +138,5.4911,11.8215,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +139,5.3734,11.5738,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1329,0 +140,5.2889,11.7565,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12857,0 +141,5.7670,11.5040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +142,5.7121,11.4176,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +143,5.7168,11.5890,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1330,0 +144,5.7969,11.5243,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13145,0 +145,5.5740,11.6147,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1358,0 +146,5.6138,11.4362,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +147,5.5435,11.5231,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +148,5.5783,11.6570,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12244,0 +149,5.6061,11.6135,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +150,5.6320,11.5330,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +151,5.6654,11.7348,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +152,5.7634,11.5483,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12201,0 +153,5.7182,11.4970,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1390,0 +154,5.5817,11.5077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +155,5.6453,11.4182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +156,5.5996,11.7892,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12446,0 +157,5.6741,11.5558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +158,5.6673,11.4217,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1442,0 +159,5.6837,11.2678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +160,5.6735,11.3339,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11000,0 +161,5.6978,11.3923,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1215,0 +162,5.6954,11.4976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +163,5.7371,11.5660,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +164,5.7605,11.5162,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13646,0 +165,5.6960,11.5400,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +166,5.6740,11.4285,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1383,0 +167,5.6657,11.4672,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +168,5.7136,11.6025,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13109,0 +169,5.6964,11.5364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1475,0 +170,5.6443,11.4860,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +171,5.7358,11.2640,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +172,5.6555,11.7052,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12854,0 +173,5.6224,11.6795,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +174,5.9112,11.7995,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1510,0 +175,5.7101,11.4707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1460,0 +176,5.6413,11.3292,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13245,0 +177,5.6255,11.4141,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +178,5.6749,11.4697,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +179,5.7176,11.3773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1436,0 +180,5.6374,11.3312,0.0558,0.0000,0,0,0.0000,0,0.0000,0,1,0,243285,0 +181,5.6867,11.5828,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14087,0 +182,5.9402,18.1858,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,24172,0 +183,5.6605,23.0981,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,35126,0 +184,5.6108,25.2523,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,68287,0 +185,5.6337,27.3636,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,34782,0 +186,5.5832,29.3646,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14261,0 +187,5.5868,31.5748,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7948,0 +188,5.5462,34.9308,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,28033,0 +189,5.8014,35.4130,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5467,0 +190,5.7273,36.7376,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4500,0 +191,5.6526,38.3743,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3922,0 +192,5.7860,39.0686,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,41983,0 +193,5.8132,39.6023,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1223,0 +194,5.6811,40.2330,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +195,5.5813,40.5840,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1307,0 +196,5.6299,40.0061,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13583,0 +197,5.5872,40.5537,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1311,0 +198,5.4965,42.9478,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +199,5.5065,40.4268,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +200,5.5176,41.1508,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13053,0 +201,5.6372,40.7999,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +202,5.5888,41.1339,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1306,0 +203,5.6407,41.1625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +204,5.7715,41.7374,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12841,0 +205,5.6025,41.7071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1313,0 +206,5.7069,41.4250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +207,5.5551,41.5467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1310,0 +208,5.6180,41.3005,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13152,0 +209,5.6470,41.1385,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1298,0 +210,5.6847,41.0367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1305,0 +211,5.6320,41.1901,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +212,5.5578,41.1098,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,12159,0 +213,5.6062,41.1687,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +214,5.5515,41.3213,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +215,5.5924,41.1665,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1360,0 +216,5.6088,41.1369,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12260,0 +217,5.5711,41.1234,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +218,5.5736,41.3216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1309,0 +219,5.5170,41.3637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1339,0 +220,5.6083,42.1794,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12405,0 +221,5.5885,41.7518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1369,0 +222,5.5838,41.6743,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1365,0 +223,5.5677,41.6204,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +224,5.6521,41.4017,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,10975,0 +225,5.6188,41.3758,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1278,0 +226,5.6188,41.1437,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +227,5.7101,41.0623,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1469,0 +228,5.6150,41.2329,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13714,0 +229,5.6558,41.1270,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1385,0 +230,5.4013,41.4613,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1392,0 +231,5.5538,40.9200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1419,0 +232,5.5667,41.0221,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13171,0 +233,5.5232,41.1205,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +234,5.3902,41.2494,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1430,0 +235,5.2109,41.1848,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +236,5.2277,41.7616,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,12917,0 +237,5.1669,41.4879,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +238,4.8086,41.5760,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +239,4.4242,41.8389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1506,0 +240,4.5102,41.2938,0.0418,0.0000,0,0,0.0000,0,0.0000,0,1,0,208727,0 +241,4.8145,41.1912,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8829,0 +242,4.9474,41.1773,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17442,0 +243,5.2210,40.9129,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,24700,0 +244,5.3231,40.8489,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,57536,0 +245,5.1671,41.0211,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22749,0 +246,5.2107,40.8611,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,13047,0 +247,5.1175,41.1421,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8255,0 +248,5.1076,41.3443,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,29853,0 +249,5.3602,41.1498,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6986,0 +250,5.3316,40.8301,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4934,0 +251,5.5883,40.8460,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4302,0 +252,5.4472,43.0795,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19233,0 +253,5.5183,41.0361,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +254,5.4782,41.6055,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1321,0 +255,5.6291,41.5412,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +256,5.6320,40.8783,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,34190,0 +257,5.6811,41.0826,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1165,0 +258,5.4426,42.1268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1382,0 +259,5.5047,40.4066,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +260,4.7156,41.5705,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13632,0 +261,4.5860,41.2964,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1327,0 +262,4.5767,42.0423,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +263,4.4785,42.0007,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +264,5.8841,40.7326,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13100,0 +265,5.5077,41.3513,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +266,5.6024,41.2130,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1325,0 +267,5.5458,41.1504,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1335,0 +268,5.6177,41.8405,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11934,0 +269,5.5477,41.6038,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1389,0 +270,5.4892,41.7809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +271,5.7046,40.7929,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +272,5.7508,41.0901,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13467,0 +273,5.4924,42.1422,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +274,5.6165,40.4185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1317,0 +275,5.5836,41.9332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1332,0 +276,5.1918,41.5332,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13771,0 +277,5.5464,40.7296,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +278,5.4154,41.1840,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +279,5.4393,41.1199,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1357,0 +280,5.5205,41.0739,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12264,0 +281,5.4867,41.0845,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1356,0 +282,5.5364,41.0558,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1362,0 +283,5.4561,41.1897,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1354,0 +284,5.5960,41.7448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12419,0 +285,5.5930,41.8071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +286,5.6278,41.5242,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1394,0 +287,5.6235,41.4018,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +288,5.5657,41.4297,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +289,5.6066,41.1758,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +290,5.6489,41.0778,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1414,0 +291,5.5570,41.1150,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1377,0 +292,5.6151,41.0397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13673,0 +293,5.6500,41.1279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1346,0 +294,5.3756,41.1286,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1366,0 +295,5.5510,40.8300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1395,0 +296,5.1189,41.3809,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13130,0 +297,5.0995,40.1192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1375,0 +298,5.1427,37.8572,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1387,0 +299,5.4372,42.9716,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1399,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.txt new file mode 100644 index 0000000..afef01a --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.497 +avg_encode_latency_ms=23.746 +p95_encode_latency_ms=41.839 +max_encode_latency_ms=79.181 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=3284517 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/3200_after_service_restart_solo.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.csv new file mode 100644 index 0000000..44880f4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0801,37.9802,0.0443,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.8907,12.5401,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.4834,15.9863,0.0381,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.3407,19.6001,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1057,23.5033,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.2261,22.2437,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4706,15.9074,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.4340,12.4165,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6799,12.4931,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.7317,12.4723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.8730,12.4852,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.8003,12.4265,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.7889,12.4326,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8280,12.9785,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.6050,12.5250,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.7410,12.4332,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.6760,12.4416,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.7531,12.4372,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.7375,12.4339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.6960,12.3782,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.7595,12.3332,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.7965,12.4637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.6418,12.4303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.7355,12.5357,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.8124,12.4795,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.7336,12.5999,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.8200,12.3348,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.7777,12.4100,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8952,12.4322,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8904,12.9383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.7990,12.4575,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.0195,12.4355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9868,12.5713,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9730,12.3798,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.8402,12.4158,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.6955,12.3765,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.0117,12.6041,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.8016,12.4620,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.6964,12.5014,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.8900,12.4435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8444,12.4493,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.9419,12.4398,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8602,12.4161,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.8901,12.3621,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8668,12.3650,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.0853,13.0302,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.9673,12.5443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.8345,12.5555,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8699,12.4915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.7375,12.4305,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8059,12.4334,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7555,12.4642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.9094,12.3986,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9457,12.4046,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.8475,12.3430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9432,12.4929,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8754,12.3990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,8.0293,12.3584,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.9015,12.4486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8046,12.3567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8766,12.1893,0.0752,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.9036,13.0240,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.8000,12.5492,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.8219,12.3878,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.9255,12.4245,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.9262,12.5983,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.9913,12.5079,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.5462,12.5929,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.2411,12.3876,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.5111,12.3622,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.6026,12.3458,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8752,12.3186,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0655,12.3718,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.5082,12.3560,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.4533,12.5883,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8208,12.4237,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8290,12.4855,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7873,13.0156,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.8110,12.4422,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9455,12.3677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.8185,12.3879,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7427,12.4856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.8948,12.3625,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.8842,12.3430,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.8270,12.3658,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.8279,12.3743,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.8812,12.3067,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.8713,12.3836,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7814,12.5152,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.8340,12.3772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8480,12.7121,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.2547,12.9298,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,8.1532,12.8811,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8957,13.0946,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8290,12.4417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8797,12.4364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8749,12.4419,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.9362,12.4559,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.9272,12.4320,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.8463,12.4287,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.7871,12.4602,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.8069,12.4333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.9302,12.4352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,8.1130,12.4087,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.9315,12.3148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8752,12.4558,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8402,12.4738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.7619,12.3560,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8240,12.4938,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.8432,12.9819,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8272,12.4804,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.7388,12.3279,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.7921,12.4543,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.7496,12.4619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8888,12.4514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.7533,12.4836,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.7591,12.4861,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.9424,12.3718,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.8507,12.4341,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.9038,12.4274,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8728,12.2135,0.0610,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8815,12.3722,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8027,12.3898,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,8.1425,12.3983,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8699,12.4201,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8470,12.9805,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.9871,12.4777,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.8707,12.4819,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7638,12.4449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.7001,12.3823,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8298,12.6411,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8478,12.3880,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.0482,12.3591,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.8527,12.4812,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.5085,12.5508,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8029,12.4200,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.6921,12.4292,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.9328,12.4406,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8181,12.4946,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8779,12.4900,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.7628,12.4680,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.8578,13.0082,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.8760,12.5475,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.0390,12.6443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.8352,12.5384,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.7617,12.5160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.8331,12.4605,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8213,12.4517,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8753,12.5362,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7138,12.4770,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7284,12.8354,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7467,12.8413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.9506,12.8108,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.5545,12.5341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.4452,12.4093,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.6771,12.5042,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.8729,12.5115,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.5538,12.9727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.7981,12.3312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.8438,12.3004,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7938,12.3583,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.9048,12.3424,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7796,12.4702,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8440,12.3725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8934,12.3643,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.8738,12.4554,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.9031,12.5581,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7275,12.4440,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.7753,12.5629,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.8078,12.4227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7827,12.4775,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8564,12.5165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8504,12.4580,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7234,12.9769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7469,12.4733,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.6811,12.4388,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.7702,12.4869,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9162,12.4064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.8503,12.4947,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.9491,12.6919,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.1722,12.4160,0.0421,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.1119,12.6844,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,8.0091,23.9230,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,8.1825,30.0318,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.8715,35.0347,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,8.0487,38.8045,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.9497,42.6045,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.8426,42.2764,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.9773,43.8295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.9375,46.8010,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9118,45.3050,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.9263,46.0137,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.9669,45.8932,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.9997,45.3230,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.9320,45.7833,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.6171,47.5947,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7645,45.3782,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.7279,46.2254,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.9939,47.2357,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9314,46.0149,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.9886,46.2130,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.9451,46.1596,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.9166,46.0585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.7690,45.8265,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.6659,46.1871,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.6682,47.9040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.9267,46.2017,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.8374,46.5226,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7903,46.3469,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.7961,46.2281,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.7859,46.1390,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.8793,46.0011,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8310,46.0948,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.9599,45.9145,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9050,45.9241,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.9902,45.8925,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.7809,46.0870,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.0126,45.7752,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7816,46.1210,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.9693,45.7557,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8293,45.8850,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.8049,46.6375,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.7285,46.5441,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.8624,46.4985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9016,46.3452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.3933,45.7191,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0120,46.1246,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.9281,45.9765,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.8182,46.5127,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.9305,45.9447,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.9990,45.9744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.0199,45.9672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9838,45.9829,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.0153,45.9784,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.9455,46.0051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,8.1105,45.8271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.9690,46.0423,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,8.0565,46.6103,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.9243,46.4805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.9588,46.2395,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.9085,45.9296,0.0313,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.9399,45.8428,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9375,45.9585,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.9475,45.8971,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.2331,45.7021,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.9242,46.0700,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,8.0303,45.9303,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8923,46.0590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0896,45.7222,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.9404,45.9995,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.7949,45.9548,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9631,46.1514,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.8416,45.8558,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.0375,46.5477,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.0713,47.7430,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.0322,46.0515,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.8068,46.5858,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.0110,46.0998,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.9385,46.0477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.8113,46.3502,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,8.0623,47.2137,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.1032,45.4288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6920,46.1891,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.1082,46.5762,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.4053,46.1835,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.3555,46.3708,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7213,46.0053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.6819,46.1186,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.9657,45.8798,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9326,46.7488,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.9572,46.4468,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,8.1049,46.0924,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,8.0180,46.1654,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.9972,46.1222,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,8.0347,46.2046,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.9919,46.1896,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,8.3400,45.8330,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,8.3754,45.8354,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.2758,45.9405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.2015,45.8876,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,8.2246,45.8269,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9874,46.1629,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.0475,46.0655,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,8.4776,45.6826,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.3787,45.8625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,8.1181,46.7340,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,8.0305,46.6812,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,8.1345,46.4203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.2306,46.1937,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.2059,46.1601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.0594,46.3169,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,8.0954,46.1875,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,8.2915,45.9533,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9675,46.3009,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,8.0082,46.0870,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.2080,45.8893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.9560,46.1374,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1226,43.1731,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.0449,41.8979,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.1088,47.4252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.txt new file mode 100644 index 0000000..b204d42 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_60s.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.875 +avg_encode_latency_ms=25.692 +p95_encode_latency_ms=46.544 +max_encode_latency_ms=47.904 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_after_60s.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.csv new file mode 100644 index 0000000..40d885c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1890,55.2266,0.0379,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,8.4306,12.5369,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.8710,15.4778,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.4462,18.8842,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1883,22.6581,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.0660,26.5950,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.1011,30.6844,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.2281,29.8542,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.3941,23.5092,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6385,18.4075,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.5930,13.3149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7262,12.5865,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.7713,12.5102,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7522,13.0746,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.7281,12.3997,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8123,12.6124,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.4845,12.5208,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.3446,12.4622,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.3275,12.4020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.3565,12.4015,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.4868,12.5080,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.7417,12.4836,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.5425,12.5126,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.6076,12.7977,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.4765,12.6475,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.1762,12.5091,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.4337,12.4859,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.4485,12.4154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.4973,12.4490,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.6606,13.0093,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.7893,12.4343,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.7332,12.4148,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.7504,12.4539,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.6967,12.4373,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.7488,12.4572,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.1951,12.8937,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.8695,12.5644,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.9485,12.5338,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9909,12.4590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.0882,12.4668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9075,12.5995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.8988,12.5336,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9348,12.5822,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9547,12.5225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.7081,12.6905,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.8720,13.1617,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.7921,12.5037,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9741,12.5567,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.9105,12.4582,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.9925,12.5133,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.9850,12.6698,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.8677,12.6043,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.8483,12.4247,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.7722,12.4662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.8282,12.5113,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.8875,12.7095,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,8.0001,12.4945,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.9773,12.5805,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8403,12.3905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,8.0022,12.4721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8622,12.3618,0.0664,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.7175,13.1590,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.7448,12.5073,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.8712,12.5409,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.8360,12.5623,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.8437,12.6135,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,8.0355,12.4928,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.9535,12.4640,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.8747,12.5145,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.8266,12.4847,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.9007,12.4878,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.8938,12.4543,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.2563,12.4599,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,8.2697,12.4806,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,8.1472,12.4965,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.8697,12.4810,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.9775,12.4504,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,8.0419,13.0705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,8.0202,12.4516,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.8386,12.4469,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.5479,12.5928,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,8.0033,12.6430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.8814,12.5097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.9099,12.8696,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,8.2144,12.7775,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,8.1264,12.7652,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.0838,12.7910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.6408,12.6360,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.8705,12.6114,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.8541,12.5613,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.8961,12.5949,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.7559,12.5557,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7486,12.5540,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.7663,13.1759,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.8480,12.4200,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.0070,12.5832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8924,12.5374,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.8569,12.5367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.8095,12.4713,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.7363,12.4726,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9421,12.4794,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.8608,12.4582,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.8846,12.4068,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.7520,12.5551,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.8950,12.6390,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.7363,12.5653,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.9095,12.5484,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.8432,12.5233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8253,12.4491,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,8.0249,13.0625,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.9964,12.4168,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.6988,12.4383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.7123,12.4267,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.7841,12.6380,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.9880,12.4774,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.9135,12.6272,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.9263,12.6056,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.8673,12.5201,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.9908,12.6131,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.6184,12.6959,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.1841,12.2870,0.0644,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.0672,12.5770,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.1005,12.3990,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.5849,12.4630,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.9520,12.5305,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.8474,12.9635,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.7657,12.3701,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.9051,12.5039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.8485,12.5264,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.7849,12.3861,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8350,12.4652,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8108,12.5371,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.7523,12.3897,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.7795,12.4722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.9058,12.4237,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.4163,12.5465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.3317,12.4627,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.5900,12.4528,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.7153,12.4578,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.6542,12.5184,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.9626,12.5757,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.7215,13.0422,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.7400,12.4558,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.5178,12.8164,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.5266,12.6455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.5034,12.4621,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7605,12.5755,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.4246,12.4610,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.5819,12.4719,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8136,12.3981,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.8158,12.3941,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.7982,12.3160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.8735,12.4500,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8958,12.4213,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8634,12.3797,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.9068,12.4643,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.2852,12.4620,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.5781,13.0072,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.7480,12.4332,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.9995,12.5343,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.7074,12.4213,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8391,12.4136,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.9478,12.3651,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.8050,12.4642,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.7007,12.6827,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.2198,12.5077,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.6395,12.3890,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.4497,12.4285,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.6985,12.4288,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.9850,12.3985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7265,12.6479,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.9645,12.4875,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,8.0052,12.4312,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.6782,13.0396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.7871,12.4507,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.7825,12.5943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8540,12.6820,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.0372,12.3245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.9491,12.3387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,8.0874,12.4724,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.9954,12.2551,0.0345,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.9305,12.5516,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.6879,23.9439,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.6889,29.5000,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7345,35.2060,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7770,38.8789,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.7435,41.0245,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.8513,42.4447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8290,45.2958,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.7964,45.3147,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.8897,45.4895,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.6241,45.9961,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.6140,45.7400,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.1188,45.4186,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.3046,46.1375,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.3900,45.7589,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.2037,45.9920,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.2298,46.1208,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.2137,46.2341,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.5542,45.9034,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.6445,45.8516,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.5868,46.1870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.0603,46.7352,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.6995,45.8549,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8182,46.2162,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.6820,46.9372,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.8312,46.4853,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.9260,46.2262,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.8576,46.3028,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.8537,46.0173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.9132,45.8775,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.7381,46.0040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8183,45.8643,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.7722,45.9871,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.9077,45.7540,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.8388,45.8020,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.7707,45.8396,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.7676,45.9573,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.7991,45.8702,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.0737,45.6093,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.9430,46.0001,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.7491,46.8864,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,8.0509,46.2802,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.8848,46.3376,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.8445,46.2738,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.8659,46.1792,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.0714,46.0320,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.8415,46.2315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9695,46.1790,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,8.0495,46.0614,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,8.3758,45.5920,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.8457,46.2735,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.8200,46.0259,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.8720,46.0516,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.7915,46.2337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.8822,46.0753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.9144,45.9558,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.7975,46.7595,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.7796,46.5787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.7008,46.4677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.9682,45.8349,0.0302,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.8970,45.9706,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.9302,45.8604,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.9350,45.9299,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.9484,45.9594,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.9419,46.0947,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.8863,46.0877,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,8.2317,45.7671,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0810,46.0491,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.0813,45.9888,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,8.0245,45.9491,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9367,46.0019,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.8199,46.0637,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.0229,46.6852,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.8197,46.5303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,8.0664,46.0130,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.6546,46.3076,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.7597,45.9590,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.6715,46.0952,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.7022,46.0433,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.8117,46.5928,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.7381,45.9716,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.8908,45.9148,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,8.4675,46.8705,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8235,45.2744,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.8761,45.7724,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.7495,47.2384,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.7790,45.3638,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.7952,46.5707,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.7965,46.4744,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.8800,46.3937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.7611,46.2947,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.7995,46.0915,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8685,45.8544,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.7380,45.9963,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.6943,46.1485,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.7613,45.8397,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.6520,45.9703,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7455,45.8115,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.7760,45.7552,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.6729,46.0680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.6674,45.9504,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,8.1519,45.3755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7142,46.0068,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.4690,46.0292,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.8707,46.4774,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.7419,46.6239,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.7199,46.3903,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.7512,45.7832,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.8531,45.8979,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.9429,47.2351,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.9070,45.7090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.6926,46.0530,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.7560,45.7596,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.8518,45.7421,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8082,46.2625,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.1407,46.8574,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.8405,43.7054,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.7391,41.2170,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.7170,47.1491,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.txt new file mode 100644 index 0000000..d06fd2b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.794 +avg_encode_latency_ms=25.928 +p95_encode_latency_ms=46.532 +max_encode_latency_ms=55.227 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_after_service_restart.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.csv b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.csv new file mode 100644 index 0000000..6f0d405 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.1465,38.6563,0.0436,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.2091,12.5821,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.2564,16.2486,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.2315,20.0487,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1226,24.0412,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.0396,23.4578,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.6076,17.8089,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.2816,13.0044,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.2834,12.7112,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.3762,12.6021,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.6408,12.5940,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.9149,12.5915,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8939,12.6440,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.7593,13.0354,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.8736,12.5478,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.8709,12.5739,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.9649,12.5711,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8899,12.5760,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8819,12.6423,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8670,12.5560,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8739,12.5133,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.3527,12.4900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.5066,12.6568,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.5320,12.6350,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.4311,12.6483,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.8570,12.5619,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.7434,12.5674,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.7652,12.5810,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8557,12.6564,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.0488,13.1058,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8649,12.5792,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.2387,12.6185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8987,12.5246,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.7447,12.5696,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9128,12.4506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.1103,12.4167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.1124,12.4525,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,8.3250,12.8693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.9010,12.5473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.1040,12.5699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.9508,12.4136,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.0817,12.4656,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.9185,12.4670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.9517,12.5708,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.9880,12.5989,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,8.2165,13.0117,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.1097,12.3856,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9591,12.3655,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.9716,12.4006,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.0057,12.4315,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.8811,12.3887,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,8.0228,12.3419,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,8.1126,12.4909,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,8.2350,12.4250,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.0085,12.4480,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.9860,12.4078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.9680,12.3725,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8711,12.3903,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8266,12.4109,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,8.0238,12.3577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8576,12.1332,0.0727,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.8748,13.2435,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,8.0513,12.7015,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9286,12.6132,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.6465,12.6010,0.0411,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.0335,12.5827,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8120,12.5638,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.4815,12.5916,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.5427,12.8832,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.6917,12.7039,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.8610,12.5670,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.9818,12.3353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0233,12.4463,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8690,12.4103,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.7912,12.3722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,8.2282,12.4175,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.9948,12.4232,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,8.0939,13.0092,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,8.0010,12.4420,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,8.1702,12.4515,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.1703,12.4650,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,8.3278,12.5032,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,8.1521,12.4944,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,8.2253,12.4673,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,8.1167,12.4798,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,8.3935,12.4184,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,8.1840,12.4375,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,8.1051,12.4496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,8.0197,12.3904,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5398,12.3514,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.5892,12.4144,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,8.1225,12.4507,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.7356,12.5280,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.4533,13.1960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.4557,12.4905,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,8.2422,12.4100,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,8.2061,12.4897,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,8.0605,12.4224,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.7073,12.5167,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.9677,12.4306,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9023,12.4174,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.7610,12.5327,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,8.0911,12.4379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9539,12.5742,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,8.0017,12.7557,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.7888,12.4530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.7490,12.5358,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.9470,12.3898,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.9425,12.4772,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.9656,13.0387,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8732,12.5138,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.0595,12.5002,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,8.3841,12.5222,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8459,12.4835,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.8373,12.4454,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.8554,12.4171,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,8.1551,12.5686,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.8224,12.4141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.7333,12.5142,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8805,12.4970,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.8706,12.2249,0.0600,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.8769,12.4287,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,8.0342,12.4411,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.9440,12.5200,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.8364,12.6017,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.0940,13.1096,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8629,12.5723,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.9683,12.4575,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.7911,12.4621,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.8487,12.4721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8676,12.3797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.9141,12.4106,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,8.2050,12.3980,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.8511,12.4123,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,8.0615,12.3762,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.8695,12.3825,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,8.0041,12.3712,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,8.0597,12.3697,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.9125,12.4727,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.0572,12.4119,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,8.1535,12.4635,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.5569,13.2631,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.0681,12.5119,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.3585,12.5152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.5780,12.4561,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.8214,12.4772,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.7831,12.6170,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8083,12.5393,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8557,12.5550,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.9322,12.4657,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,8.1902,12.5364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,8.2752,12.5715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.7829,12.4182,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.8015,12.5100,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,8.2508,12.4732,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,8.3262,12.4239,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,8.6096,12.4002,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,8.3383,12.9390,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.2169,12.3189,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.2109,12.3947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.0556,12.4760,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.8687,12.4612,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7439,12.4421,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,8.1435,12.5576,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8627,12.6327,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,8.0026,12.5040,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.1155,12.5155,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7462,12.5228,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.0130,12.5146,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.1362,12.4467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.9985,12.3792,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,8.0003,12.5506,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.8905,12.5315,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.7207,13.0159,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,8.1920,12.4931,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.8684,12.3300,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,8.0136,12.3397,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9905,12.3178,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.6937,12.2676,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8425,12.2815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8183,12.2253,0.0397,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8189,12.3140,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9067,23.4856,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.6192,29.5703,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.7962,34.8859,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7655,38.7608,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.6970,41.2690,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.9659,42.5946,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.8210,43.9210,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.8604,45.3517,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9384,45.5022,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.8627,45.7061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0503,45.4915,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.8482,45.8421,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.7012,45.9236,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.9845,45.7072,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7167,46.1982,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.9084,45.8922,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,8.0575,45.8368,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9667,45.9467,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,8.0415,45.9288,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,8.0880,46.0173,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,8.0848,46.0125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,8.2737,45.8174,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,8.1777,45.9661,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.9463,46.9482,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,8.1152,46.4858,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,8.1572,46.3611,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,8.3236,46.0205,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,8.2743,45.8347,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.9935,45.9787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.9535,45.9333,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.9194,45.9954,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.0126,45.9765,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.0985,45.9339,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.0069,45.9987,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,7.9936,46.0100,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.1099,45.9441,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.9873,46.1415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.1293,46.0790,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,8.1240,46.0611,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,8.1879,46.8913,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.9798,46.8314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,8.3707,46.1818,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,8.1297,46.4934,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,8.0835,46.3414,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,8.3116,45.8848,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,8.1400,46.0127,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.9420,45.9779,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.7956,46.1568,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.7420,46.1183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,8.1040,45.9526,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9882,46.1235,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.2584,45.7702,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,8.1051,45.9386,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.7937,46.1409,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.7376,46.2476,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8309,46.8377,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,8.3343,46.2057,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.0327,46.5150,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.9555,46.1946,0.0300,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.1073,45.8705,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,8.1512,45.9078,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,8.1654,46.2579,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.8469,45.8813,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.3235,46.5430,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.4538,46.2991,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8125,46.0303,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,8.0015,45.8311,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.7098,46.2782,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.7102,46.2900,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,8.1481,45.8597,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,8.3574,45.5811,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,8.1795,46.2426,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,8.2607,46.6839,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9069,46.7823,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.8606,46.6454,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,8.1830,46.1935,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.9789,46.7308,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.0474,46.3531,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.9684,45.0567,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.5982,46.9895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6945,46.6878,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.7688,45.7576,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8907,46.6900,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.1550,45.3889,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.8702,46.9170,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.9127,45.4622,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.8441,45.9460,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.0025,47.4982,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.6297,46.2763,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.6849,46.3293,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.5593,46.2210,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.4441,46.2538,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.3298,46.1788,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.3526,46.0730,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.1063,46.2959,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.0623,45.8886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.1787,46.0707,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.3934,46.8119,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.4284,45.3545,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.3832,46.5778,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8016,46.7182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7111,45.2747,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.8107,45.9082,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.7747,47.7204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8935,45.8462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8298,45.8794,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.0872,46.8275,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.9576,46.9098,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.0087,45.6103,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.8950,45.8659,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.7265,46.1173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.9300,47.0226,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.7607,45.7272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.0075,45.5761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.9456,46.4745,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1770,44.1780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.1572,42.7899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.2690,47.0356,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.txt new file mode 100644 index 0000000..1ec75be --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/4096_unset_after_slow.txt @@ -0,0 +1,41 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.908 +avg_encode_latency_ms=25.724 +p95_encode_latency_ms=46.719 +max_encode_latency_ms=47.720 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1341_post_tiled_recovery/4096_unset_after_slow.csv diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/service_restart.txt b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/service_restart.txt new file mode 100644 index 0000000..421c902 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/service_restart.txt @@ -0,0 +1,3 @@ +before_restart=2026-05-15 13:21:40 KST +66667 /System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTEncoderXPCService.xpc/Contents/MacOS/VTEncoderXPCService +after_restart_wait=2026-05-15 13:21:43 KST diff --git a/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/summary.md b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/summary.md new file mode 100644 index 0000000..ffc393e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/summary.md @@ -0,0 +1,13 @@ +# Encoder Service Restart Recovery Probe + +This probe checks whether restarting the user `VTEncoderXPCService` clears the slow single-stream state observed after tiled 5K60. + +| Probe | Avg ms | P95 ms | Max ms | Result | +|---|---:|---:|---:|---| +| 4096x2304 after encoder service restart | 25.928 | 46.532 | 55.227 | Still slow | +| 4096x2304 after 60s wait | 25.692 | 46.544 | 47.904 | Still slow | +| 4096x2304 after 60s wait, speed unset | 25.724 | 46.719 | 47.720 | Still slow | +| 3200x1800 after restart, solo | 23.746 | 41.839 | 79.181 | Still slow | +| 2560x1440 after restart | 7.851 | 10.808 | 42.851 | Safe | + +Conclusion: `VTEncoderXPCService` restart alone does not recover high-detail fallback performance after tiled contamination. Use `2560x1440@60` as the safest emergency fallback until a stronger reset is proven. diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.csv new file mode 100644 index 0000000..c98af11 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.6750,33.5796,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8432,24.1785,0.0142,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8308,29.0106,0.0047,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8148,25.4277,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.6750,5.7026,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8432,5.6049,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8308,10.4727,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8148,10.4808,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.6750,5.6206,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8432,5.5609,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8308,10.3863,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8148,10.4032,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.6750,5.7605,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8432,5.5971,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8308,10.5009,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8148,10.4547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.6750,5.7035,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8432,5.5555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8308,10.3469,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8148,10.3353,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.6750,5.6552,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8432,5.5461,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8308,10.3965,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8148,10.3989,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.6750,5.6993,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8432,5.5180,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8308,10.4250,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8148,10.3644,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.6750,5.6638,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8432,5.5213,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8308,10.3625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8148,10.3603,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.6750,5.6007,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8432,5.5253,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8308,10.3072,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8148,10.3473,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.6750,5.6987,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8432,5.5668,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8308,10.4215,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8148,10.3953,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.6750,5.6809,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8432,5.5919,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8308,10.3313,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8148,10.3655,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.6750,5.6007,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8432,5.5265,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8308,10.3918,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8148,10.3735,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.6750,5.8349,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8432,5.6862,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8308,10.8026,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8148,10.8188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.6750,5.7013,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8432,5.6095,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8308,10.5265,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8148,10.5433,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.6750,5.6268,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8432,5.5100,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8308,10.7266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8148,10.7239,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.6750,5.6969,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8432,5.5943,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8308,10.6107,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8148,10.6190,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.6750,5.7834,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8432,5.7379,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8308,10.7009,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8148,10.7837,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.6750,5.7605,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8432,5.7317,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8308,10.6712,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8148,10.6622,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.6750,5.7758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8432,5.6984,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8308,10.6329,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8148,10.6372,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.6750,5.8230,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8432,5.7500,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8308,10.8046,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8148,10.8060,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.6750,5.7968,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8432,5.7478,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8308,10.7115,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8148,10.7152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.6750,6.1188,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8432,5.7962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8308,10.6894,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8148,10.6232,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.6750,6.3705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8432,6.0639,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8308,11.2852,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8148,11.2812,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.6750,6.1041,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8432,6.0008,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8308,11.1577,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8148,11.1638,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.6750,6.0537,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8432,5.9873,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8308,10.9495,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8148,10.9651,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.6750,6.1332,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8432,5.9747,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8308,11.0283,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8148,11.0841,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.6750,6.1427,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8432,5.9906,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8308,10.9844,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8148,10.9746,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.6750,6.2117,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8432,6.0545,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8308,10.9749,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8148,10.8729,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.6750,6.1279,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8432,5.9925,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8308,11.0666,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8148,11.0100,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.6750,7.0016,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8432,6.4602,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8308,11.3847,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8148,11.1778,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.6750,7.3470,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8432,6.4047,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8308,10.8911,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8148,10.8944,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.6750,7.0883,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8432,6.3358,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8308,10.6449,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8148,10.6809,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.6750,7.8075,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8432,6.5225,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8308,11.0966,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8148,10.4420,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.6750,7.5691,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8432,6.6449,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8308,14.4248,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8148,14.2035,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.6750,7.3009,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8432,6.6811,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8308,12.2519,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8148,12.1382,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.6750,7.5332,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8432,6.3882,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8308,11.4485,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8148,11.2359,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.6750,6.8836,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8432,6.3754,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8308,8.7205,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8148,10.7854,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.6750,7.1893,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8432,6.3384,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8308,11.8660,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8148,11.5173,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.6750,22.3575,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8432,20.9067,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8308,20.6505,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8148,20.0160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.6750,6.7650,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8432,5.9347,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8308,10.5444,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8148,10.3347,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.6750,5.7854,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8432,5.6027,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8308,10.4976,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8148,10.5040,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.6750,5.6443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8432,5.4981,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8308,10.4606,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8148,10.4632,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.6750,5.6964,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8432,5.5367,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8308,11.1737,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8148,11.2243,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.6750,6.0658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8432,5.7770,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8308,10.4522,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8148,10.3062,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.6750,5.6204,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8432,5.4584,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8308,10.3737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8148,10.3331,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.6750,5.6101,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8432,5.4700,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8308,10.7275,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8148,10.5442,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.6750,5.6057,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8432,5.5382,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8308,10.4140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8148,10.4218,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.6750,6.5337,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8432,5.9045,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8308,10.7784,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8148,10.4657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.6750,6.5742,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8432,6.2129,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8308,11.4301,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8148,11.4409,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.6750,6.4239,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8432,6.1896,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8308,11.4506,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8148,11.3909,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.6750,6.3397,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8432,6.0698,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8308,11.4148,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8148,11.4325,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.6750,7.0510,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8432,6.3928,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8308,6.9037,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8148,11.5297,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.6750,6.3758,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8432,5.9172,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8308,11.5648,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8148,11.3567,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.6750,6.5748,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8432,6.2056,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8308,11.5885,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8148,11.5637,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.6750,6.5176,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8432,6.2098,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8308,12.5896,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8148,12.2521,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.6750,7.6386,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8432,5.8324,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8308,9.0288,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8148,10.6129,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.6750,5.7394,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8432,5.5975,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8308,11.5259,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8148,11.5607,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.6750,6.0646,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8432,5.7107,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8308,18.8846,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8148,18.8295,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.6750,5.7205,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8432,5.5715,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8308,10.4110,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8148,10.3694,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.6750,5.8506,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8432,5.7319,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8308,10.6825,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8148,10.6347,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.6750,6.8919,0.0715,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8432,6.7105,0.0353,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8308,10.4212,0.0706,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.8148,10.4138,0.0267,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.6750,6.5175,0.0208,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8432,5.8195,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8308,10.8313,0.0189,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.8148,10.6296,0.0202,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.6750,6.4119,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8432,5.9135,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8308,10.5428,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.8148,10.3615,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.6750,6.6299,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8432,6.0445,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8308,10.8041,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.8148,9.9757,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.6750,6.3214,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8432,6.0597,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8308,9.7430,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.8148,9.5230,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.6750,6.9942,0.0488,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8432,6.7817,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8308,8.8620,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.8148,10.7286,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.6750,7.6785,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8432,6.3777,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8308,11.6636,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.8148,11.3105,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.6750,7.2361,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8432,6.3847,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8308,10.5376,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.8148,10.0217,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.6750,7.4436,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8432,6.7511,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8308,8.8590,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.8148,10.9750,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.6750,7.9170,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8432,6.9119,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8308,17.8612,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.8148,16.3233,0.1358,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.6750,7.6323,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8432,6.8279,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8308,11.7914,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.8148,11.6593,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.6750,6.5948,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8432,6.8209,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8308,11.6470,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.8148,11.5147,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.6750,7.5549,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8432,6.6480,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8308,11.6840,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.8148,11.4792,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.6750,7.7740,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8432,6.4151,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8308,11.0047,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.8148,10.9582,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.6750,7.7241,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8432,6.3867,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8308,10.5217,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.8148,10.8483,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.6750,7.2515,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8432,6.1554,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8308,11.1988,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.8148,10.5974,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.6750,7.3056,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8432,6.5917,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8308,8.1982,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.8148,13.1868,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.6750,6.9944,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8432,6.5087,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8308,11.6326,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8148,11.6728,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.6750,6.9953,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8432,6.5374,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8308,9.8844,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.8148,10.7902,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.6750,7.4537,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8432,6.2440,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8308,10.8840,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.8148,10.2907,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.6750,7.7978,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8432,6.3949,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8308,11.1086,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.8148,10.8537,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.6750,7.0826,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8432,6.1272,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8308,10.4793,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.8148,10.4917,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.6750,7.4094,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8432,6.2352,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8308,11.4213,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.8148,11.1325,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.6750,7.6785,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8432,6.4227,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8308,11.3847,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.8148,10.9785,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.6750,7.1840,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8432,6.2983,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8308,11.2625,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.8148,9.9485,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.6750,7.8626,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8432,6.8383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8308,10.9860,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.8148,10.7700,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.6750,7.7212,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8432,6.5841,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8308,11.3069,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.8148,11.0071,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.6750,7.7401,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8432,6.6312,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8308,10.9757,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.8148,10.6972,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.6750,7.8211,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8432,6.9000,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8308,11.1120,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.8148,10.8060,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.6750,7.1881,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8432,6.2255,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8308,10.7403,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.8148,10.7802,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.6750,7.3726,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8432,6.2880,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8308,12.0266,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.8148,12.0595,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.6750,7.2384,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8432,6.2616,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8308,11.2332,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.8148,11.1520,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.6750,7.1951,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8432,6.2154,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8308,12.0957,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.8148,12.0002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.6750,7.3286,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8432,6.2962,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8308,11.3593,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.8148,11.0444,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.6750,7.1232,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8432,6.2683,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8308,11.3601,0.0307,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.8148,10.9977,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.6750,7.4012,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8432,6.3563,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8308,10.8258,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.8148,10.4571,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.6750,8.2291,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8432,7.0705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8308,10.8569,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.8148,10.8432,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.6750,6.9491,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8432,6.2890,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8308,10.7822,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.8148,11.1382,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.6750,7.0869,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8432,6.2751,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8308,10.9066,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8148,10.7056,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.6750,7.0350,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8432,6.2902,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8308,10.8183,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8148,10.7430,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.6750,7.3385,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8432,6.5374,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8308,10.7680,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8148,11.1921,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.6750,7.4687,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8432,6.1477,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8308,11.5130,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.8148,11.2380,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.6750,7.4905,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8432,6.5748,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8308,12.7470,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.8148,12.7220,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.6750,9.1634,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8432,6.4917,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8308,6.4385,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.8148,7.9000,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.6750,7.4919,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8432,6.7441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8308,12.2798,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.8148,12.0136,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.6750,7.4973,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8432,6.2216,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8308,10.8240,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.8148,10.8048,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.6750,9.1773,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8432,8.1107,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8308,11.6813,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.8148,11.4113,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.6750,7.5073,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8432,6.4475,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8308,11.8498,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.8148,11.6963,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.6750,7.3405,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8432,6.3755,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8308,11.5029,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.8148,11.2702,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.6750,7.4672,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8432,6.5426,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8308,11.8513,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8148,11.3828,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.6750,6.7140,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8432,6.1559,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8308,11.1357,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8148,11.0130,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.6750,6.5475,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8432,5.9257,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8308,10.8857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8148,10.7835,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.6750,5.7013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8432,5.5323,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8308,10.4851,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.8148,10.4830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.6750,5.7181,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8432,5.6227,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8308,10.4956,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.8148,10.4205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.6750,5.7495,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8432,5.6357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8308,10.4605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.8148,10.4001,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.6750,5.8304,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8432,5.6826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8308,10.5885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.8148,10.5413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.6750,6.0670,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8432,5.9527,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8308,10.9107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.8148,10.8680,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.6750,6.1713,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8432,5.9966,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8308,10.8898,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.8148,10.8384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.6750,7.3798,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8432,6.2029,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8308,10.3567,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.8148,9.9620,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.6750,7.0027,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8432,6.2891,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8308,10.8264,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.8148,10.8239,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.6750,6.9752,0.1155,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8432,6.5033,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8308,10.9000,0.0243,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.8148,10.6723,0.0408,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.6750,7.4127,0.0576,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8432,6.6185,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8308,11.5740,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.8148,11.3180,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.6750,6.9663,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8432,6.1286,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8308,9.3874,0.0204,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.8148,10.0700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.6750,6.1444,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8432,5.7086,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8308,10.4489,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.8148,10.2772,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.6750,6.2750,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8432,5.7897,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8308,10.4898,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.8148,10.3935,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.6750,6.1592,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8432,6.1179,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8308,10.3760,0.0176,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.8148,10.4348,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.6750,6.1757,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8432,6.0235,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8308,10.1279,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.8148,10.0492,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.6750,6.1296,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8432,5.8743,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8308,10.8404,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.8148,10.6899,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.6750,6.6364,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8432,6.0711,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8308,11.0357,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.8148,10.9297,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.6750,6.7853,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8432,6.1334,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8308,11.1378,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.8148,10.8942,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.6750,6.5782,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8432,6.1083,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8308,11.3042,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.8148,11.2385,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.6750,6.3803,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8432,6.1533,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8308,11.3114,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.8148,11.2502,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.6750,6.3167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8432,6.0976,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8308,11.5838,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.8148,11.3103,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.6750,6.3718,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8432,6.1473,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8308,11.2707,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.8148,11.1988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.6750,7.2896,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8432,6.9013,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8308,11.4848,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.8148,11.2610,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.6750,7.2081,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8432,6.2265,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8308,14.3191,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.8148,14.3226,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.6750,8.0705,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8432,6.4682,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8308,11.7146,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.8148,11.6360,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.6750,7.4246,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8432,6.3203,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8308,11.5310,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.8148,11.4023,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.6750,7.6025,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8432,6.5215,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8308,11.2292,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.8148,10.9588,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.6750,7.4955,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8432,6.2893,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8308,11.1864,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.8148,10.8718,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.6750,7.3395,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8432,6.1736,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8308,10.2354,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.8148,10.0543,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.6750,6.9967,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8432,6.0123,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8308,11.0859,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.8148,10.9268,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.6750,6.9786,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8432,6.4233,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8308,12.6123,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8148,12.3639,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.6750,7.4145,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8432,6.4462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8308,11.5196,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8148,11.3047,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.6750,7.4681,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8432,6.3211,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8308,13.4558,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.8148,13.1972,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.6750,7.1870,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8432,6.1917,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8308,11.5107,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.8148,11.3048,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.6750,7.6226,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8432,6.5118,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8308,9.7563,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.8148,9.2618,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.6750,7.0928,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8432,6.2239,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8308,10.5391,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.8148,10.7481,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.6750,7.2717,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8432,6.1733,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8308,11.2600,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.8148,10.9955,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.6750,7.2786,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8432,6.2408,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8308,10.8160,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.8148,10.8010,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.6750,7.7132,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8432,6.6144,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8308,11.7590,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.8148,11.5188,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.6750,7.3120,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8432,6.2006,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8308,11.5239,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.8148,11.2886,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.6750,7.6558,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8432,6.3523,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8308,11.3105,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.8148,11.0677,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.6750,8.4878,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8432,7.4960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8308,11.2147,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8148,11.3725,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.6750,7.4837,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8432,6.3590,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8308,11.9668,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8148,11.8946,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.6750,7.5406,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8432,6.3753,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8308,11.5470,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8148,11.4600,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.6750,7.3450,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8432,6.2434,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8308,11.2915,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.8148,11.1441,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.6750,7.2825,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8432,6.2436,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8308,11.5437,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.8148,11.5905,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.6750,7.4094,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8432,6.2352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8308,11.2021,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.8148,11.1352,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.6750,7.1900,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8432,6.3703,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8308,11.1967,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.8148,11.1024,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.6750,7.1342,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8432,6.2599,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8308,11.2268,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.8148,11.1313,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.6750,7.1752,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8432,6.2424,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8308,10.1214,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.8148,10.7103,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.6750,11.2728,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8432,10.2142,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8308,11.1948,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.8148,11.1111,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.6750,6.6878,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8432,6.1198,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8308,11.0984,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.8148,10.9502,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.6750,6.5174,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8432,6.3000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8308,11.4266,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.8148,11.3347,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.6750,7.2040,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8432,6.2098,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8308,11.3337,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8148,11.2747,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.6750,7.1277,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8432,6.1046,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8308,10.7782,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8148,10.8238,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.6750,7.2702,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8432,6.2364,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8308,11.3621,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8148,11.1788,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.6750,6.9740,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8432,6.1083,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8308,11.2141,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.8148,10.5597,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.6750,7.5056,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8432,6.4635,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8308,11.7063,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.8148,11.6351,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.6750,7.2732,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8432,6.2839,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8308,11.4492,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.8148,11.2412,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.6750,7.8679,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8432,6.0637,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8308,10.6687,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.8148,10.4717,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.6750,7.4465,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8432,6.4822,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8308,10.9914,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.8148,10.7974,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.6750,7.5357,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8432,6.4321,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8308,11.4676,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.8148,11.1239,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.6750,7.3851,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8432,6.3777,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8308,10.2353,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.8148,9.8270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.6750,7.5239,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,2.8432,6.5441,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8308,11.4058,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8148,10.9824,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.6750,7.4867,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,2.8432,6.2820,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8308,11.2062,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8148,10.9639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.6750,7.6719,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,2.8432,6.6604,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8308,10.4015,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8148,10.0730,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,5.6750,7.1868,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,2.8432,6.0995,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8308,11.0841,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8148,10.8250,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,5.6750,7.8142,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,2.8432,7.8773,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8308,11.3527,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,2.8148,11.1380,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,5.6750,41.8990,0.0111,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8432,29.8848,0.0085,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8308,25.7107,0.0043,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.8148,25.1915,0.0089,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.6750,5.7838,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8432,5.6720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8308,10.5113,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.8148,10.5230,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.6750,5.6087,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8432,5.6126,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8308,10.4065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.8148,10.4421,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.6750,5.6649,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8432,5.6385,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8308,10.4594,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.8148,10.4857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.6750,5.7541,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8432,5.6554,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8308,10.5924,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.8148,10.5489,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.6750,5.8041,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8432,5.6935,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8308,10.5943,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.8148,10.5761,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.6750,5.7801,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8432,5.6576,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8308,10.5932,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.8148,10.5808,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.6750,5.8147,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8432,5.7090,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8308,10.5958,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.8148,10.5426,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.6750,5.8507,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8432,5.7297,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8308,10.6495,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.8148,10.6157,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.6750,5.8053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8432,5.6925,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8308,10.7514,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.8148,10.7830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.6750,6.3476,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8432,6.1635,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8308,11.4163,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.8148,11.3915,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.6750,6.4399,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8432,6.2713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8308,11.5258,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.8148,11.4337,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.6750,6.3896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8432,6.2111,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8308,11.3278,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.8148,11.2697,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.6750,6.4623,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8432,6.2241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8308,11.4956,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.8148,11.4317,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.6750,6.4868,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8432,6.2401,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8308,11.4590,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.8148,11.2990,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.6750,6.6206,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8432,6.2315,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8308,11.4083,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.8148,11.2480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.6750,6.4512,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8432,6.1644,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8308,11.1581,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.8148,10.9974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.6750,6.3687,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8432,5.9055,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8308,10.9680,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.8148,10.8850,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.6750,6.7258,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8432,6.2276,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8308,6.9623,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.8148,8.1290,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.6750,6.3829,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8432,5.8564,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8308,10.4576,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.8148,10.2685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.6750,6.5584,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8432,5.8329,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8308,10.1064,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.8148,10.8907,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.6750,6.0328,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8432,5.7625,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8308,10.5795,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.8148,9.6809,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.6750,6.0981,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8432,5.7605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8308,12.6840,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.8148,12.7647,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.6750,6.0587,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8432,5.9489,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8308,10.9102,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.8148,10.9970,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.6750,6.2318,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8432,5.7881,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8308,10.4815,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.8148,10.3001,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.6750,6.2026,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8432,5.8096,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8308,10.5360,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.8148,10.4392,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.6750,6.2143,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8432,5.7924,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8308,10.5886,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.8148,10.3931,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.6750,6.1556,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8432,5.8113,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8308,10.5953,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.8148,10.5150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.6750,6.2367,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8432,6.1444,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8308,10.6143,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.8148,10.4126,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.6750,6.3681,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8432,5.9161,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8308,11.0900,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.8148,10.8930,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.6750,7.1876,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8432,6.6447,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8308,10.9328,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.8148,10.8339,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.6750,6.0418,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8432,5.8019,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8308,10.5345,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.8148,10.3250,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.6750,5.9778,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8432,5.7006,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8308,10.3762,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.8148,10.3250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.6750,5.9710,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8432,5.7061,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8308,10.4077,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.8148,10.1694,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.6750,6.0367,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8432,5.7087,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8308,10.4107,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.8148,10.3410,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.6750,5.9540,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8432,5.7034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8308,10.4987,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.8148,10.4389,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.6750,6.0123,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8432,5.7268,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8308,10.5125,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.8148,10.3906,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.6750,6.1693,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8432,5.8192,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8308,10.3677,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.8148,10.3026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.6750,6.0609,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8432,5.7353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8308,10.7150,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.8148,10.6338,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.6750,6.0760,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8432,5.6952,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8308,10.3956,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.8148,9.6460,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.6750,6.2148,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8432,5.9280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8308,10.2480,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.8148,10.3087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.6750,6.3867,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8432,5.9105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8308,10.4073,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.8148,10.3934,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.6750,6.5242,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8432,5.9398,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8308,10.7147,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.8148,10.5068,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.6750,6.5513,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8432,5.9140,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8308,10.5697,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.8148,10.4505,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.6750,7.3555,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8432,6.3677,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8308,11.7002,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.8148,11.2698,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.6750,7.5389,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8432,6.7154,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8308,11.3957,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.8148,11.4610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.6750,7.2418,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8432,6.4200,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8308,12.4575,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.8148,12.0843,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.6750,7.2696,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8432,6.2381,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8308,10.2991,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.8148,10.8121,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.6750,7.8197,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8432,6.5118,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8308,11.5908,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.8148,11.3149,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.6750,7.7750,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8432,6.6742,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8308,11.6572,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.8148,11.3018,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.6750,8.4664,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8432,6.4542,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8308,14.5841,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.8148,14.4745,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.6750,6.9585,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8432,6.3539,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8308,11.2348,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.8148,11.0320,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.6750,5.9185,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8432,5.5778,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8308,15.5316,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.8148,15.3893,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.6750,6.0947,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8432,5.6268,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8308,10.2773,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.8148,10.2342,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.6750,6.3003,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8432,5.8305,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8308,10.9249,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8148,10.7980,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.6750,6.3185,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8432,5.8288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8308,9.7957,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.8148,10.0497,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.6750,6.2780,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8432,6.0401,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8308,10.4946,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.8148,10.6519,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.6750,6.8152,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8432,6.1676,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8308,10.4512,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8148,10.5125,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.6750,7.3593,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8432,6.3292,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8308,10.4550,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.8148,10.6910,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.6750,6.3056,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8432,6.1317,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8308,9.9953,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.8148,10.0962,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.6750,6.2930,0.0441,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8432,6.0521,0.0446,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8308,9.9094,0.0657,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.8148,9.9787,0.0406,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,5.6750,6.3517,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8432,6.1281,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8308,10.0616,0.0281,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.8148,9.7276,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,5.6750,6.1417,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8432,5.7379,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8308,10.3910,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.8148,10.3027,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,5.6750,6.1764,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8432,5.8216,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8308,10.1026,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.8148,10.1063,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,5.6750,6.1979,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8432,5.7907,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8308,10.1905,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.8148,10.3142,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,5.6750,6.8982,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8432,7.2158,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8308,9.2988,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.8148,10.1656,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,5.6750,6.1843,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8432,5.9365,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8308,10.3755,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.8148,10.3477,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,5.6750,6.1548,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8432,5.8944,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8308,10.2593,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.8148,10.2847,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,5.6750,6.5700,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8432,5.8017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8308,10.0679,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.8148,10.0994,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,5.6750,5.7028,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8432,5.4937,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8308,10.3241,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.8148,10.3285,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,5.6750,5.5405,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8432,5.4784,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8308,10.2652,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.8148,10.2993,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,5.6750,6.0434,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8432,5.9266,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8308,8.7109,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.8148,10.2720,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,5.6750,6.3605,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8432,5.9110,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8308,10.1917,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.8148,10.2615,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,5.6750,6.0525,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8432,5.6729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8308,10.1937,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.8148,10.2457,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,5.6750,5.9522,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8432,5.6662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8308,10.0463,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.8148,9.9652,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,5.6750,6.0737,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8432,5.7932,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8308,10.3165,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.8148,10.3630,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,5.6750,6.2047,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8432,5.9066,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8308,9.7456,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.8148,8.5828,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,5.6750,6.5200,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8432,7.3055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8308,8.6681,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.8148,10.0727,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,5.6750,6.1760,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8432,5.9532,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8308,9.9403,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.8148,10.1219,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,5.6750,6.3557,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8432,5.9132,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8308,10.0294,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.8148,10.1009,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,5.6750,6.7409,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8432,6.0717,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8308,10.0117,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.8148,10.0645,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,5.6750,6.0462,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8432,6.0988,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8308,8.9631,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.8148,11.3251,0.0549,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,5.6750,6.0009,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8432,5.7640,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8308,10.3061,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.8148,10.4874,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,5.6750,6.8659,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8432,6.6870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8308,8.7967,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.8148,9.5375,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,5.6750,7.8529,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8432,7.2511,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8308,13.0236,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.8148,12.9380,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,5.6750,7.3621,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8432,6.1821,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8308,10.5682,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.8148,10.6035,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,5.6750,6.5865,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8432,6.3743,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8308,9.7122,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.8148,8.1183,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,5.6750,6.0711,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8432,5.7341,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8308,10.3138,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.8148,10.2788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,5.6750,6.0138,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8432,5.7392,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8308,10.3047,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.8148,10.2764,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,5.6750,6.0450,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8432,7.0426,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8308,10.1715,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.8148,10.1635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,5.6750,6.0657,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8432,5.7271,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8308,10.7565,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.8148,10.5635,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,5.6750,6.0729,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8432,5.7280,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8308,11.6282,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.8148,11.3700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,5.6750,6.0319,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8432,5.7152,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8308,10.3620,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.8148,10.2986,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,5.6750,6.1707,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8432,5.7091,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8308,10.3225,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.8148,10.2818,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,5.6750,6.2452,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8432,5.6828,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8308,10.1712,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.8148,9.9314,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,5.6750,6.0992,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8432,5.7191,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8308,10.7835,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.8148,10.5686,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,5.6750,5.7097,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8432,5.5294,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8308,10.3665,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.8148,10.3442,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,5.6750,6.1360,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8432,5.7962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8308,10.4003,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.8148,10.3445,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,5.6750,6.0857,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8432,6.0019,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8308,10.0319,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8148,10.3118,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,5.6750,6.1070,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8432,5.7352,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8308,10.6474,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8148,10.5577,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,5.6750,6.0362,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8432,5.7446,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8308,10.3143,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.8148,10.5532,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,5.6750,6.5902,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8432,6.0470,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8308,10.2896,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.8148,10.1380,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,5.6750,7.3977,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8432,6.7802,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8308,10.7930,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.8148,10.7919,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,5.6750,6.5710,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8432,6.0669,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8308,10.8340,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.8148,10.7937,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,5.6750,6.9428,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8432,11.7337,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8308,11.5375,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.8148,11.3405,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.6750,6.8588,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8432,6.1773,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8308,11.4068,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.8148,11.2751,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.6750,6.8500,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8432,6.1302,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8308,10.9445,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.8148,10.8169,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.6750,6.6585,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8432,5.7843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8308,8.7965,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.8148,10.6345,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,5.6750,7.0439,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8432,6.2625,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8308,10.9597,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.8148,9.4297,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,5.6750,7.9482,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8432,7.7628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8308,9.1962,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8148,10.5101,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,5.6750,7.0920,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8432,6.8334,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8308,18.0537,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8148,17.7990,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,5.6750,6.5787,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8432,6.0034,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8308,11.9758,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.8148,11.9210,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.6750,6.4608,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8432,7.7426,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8308,10.5104,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.8148,10.2448,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.6750,7.6825,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8432,6.9460,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8308,10.9183,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.8148,10.8920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,5.6750,7.2939,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8432,6.3659,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8308,10.7453,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.8148,10.7923,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,5.6750,7.2359,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8432,6.4685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8308,16.3224,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.8148,15.5908,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,5.6750,6.8880,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8432,6.2128,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8308,10.9143,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.8148,10.9667,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,5.6750,8.8287,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8432,7.9807,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8308,10.8732,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.8148,10.7554,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,5.6750,7.1740,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8432,6.0985,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8308,10.8258,0.0309,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.8148,10.5076,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,5.6750,6.7113,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8432,6.2412,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8308,9.8878,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.8148,10.2543,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.6750,6.9923,0.0437,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.8432,6.4645,0.0328,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,2.8308,9.2867,0.0173,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,2.8148,10.2590,0.0159,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,5.6750,6.8393,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.8432,6.5277,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,2.8308,8.6511,0.0223,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,2.8148,8.8074,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,5.6750,11.1665,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.8432,9.8933,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,2.8308,10.8450,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,2.8148,10.8509,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,5.6750,6.2878,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.8432,5.9178,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,2.8308,10.8533,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,2.8148,10.9092,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,5.6750,7.2863,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.8432,6.6377,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,2.8308,11.0103,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,2.8148,10.9648,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,5.6750,12.3599,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.8432,17.3030,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,2.8308,16.8860,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,2.8148,11.9059,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,5.6750,5.8130,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.8432,5.4515,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,2.8308,10.2073,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,2.8148,10.1203,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,5.6750,5.7903,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.8432,5.6312,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,2.8308,10.4500,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,2.8148,10.3668,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,5.6750,5.7232,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.8432,5.5529,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,2.8308,10.5906,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,2.8148,10.6217,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,5.6750,6.0430,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.8432,5.7140,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,2.8308,10.5549,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,2.8148,10.4203,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,5.6750,6.2325,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.8432,5.7433,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,2.8308,10.2938,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,2.8148,10.2821,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,5.6750,6.1452,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.8432,5.7776,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,2.8308,10.8207,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,2.8148,11.0953,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,5.6750,5.9759,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.8432,5.6683,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,2.8308,11.7917,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,2.8148,11.5180,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,5.6750,6.1008,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.8432,5.7300,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,2.8308,10.2339,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.8148,9.9641,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,5.6750,6.4967,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.8432,5.9942,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,2.8308,9.7841,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,2.8148,9.3199,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,5.6750,6.2365,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.8432,5.9780,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8308,10.8331,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,2.8148,10.7005,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,5.6750,6.4949,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.8432,5.9855,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8308,6.3754,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,2.8148,6.8730,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,5.6750,6.2016,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.8432,5.8581,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8308,14.2925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,2.8148,13.7625,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,5.6750,8.3123,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.8432,7.3883,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8308,11.3986,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,2.8148,11.2461,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,5.6750,7.5293,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.8432,6.5202,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8308,12.1340,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,2.8148,12.0493,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,5.6750,7.1444,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.8432,6.3578,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8308,10.9132,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,2.8148,11.0008,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.6750,6.6298,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.8432,6.1252,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8308,16.3622,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,2.8148,15.5705,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.6750,7.2898,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.8432,6.5717,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8308,12.7177,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.8148,12.7996,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,5.6750,8.8886,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.8432,7.4677,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8308,10.3817,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.8148,10.8960,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,5.6750,7.1485,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.8432,5.8399,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8308,9.4748,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,2.8148,11.5955,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,5.6750,7.6818,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.8432,6.5455,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8308,11.6773,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,2.8148,11.4534,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,5.6750,8.8112,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.8432,7.0535,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8308,6.4284,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,2.8148,5.9389,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,5.6750,6.1095,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.8432,5.9431,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8308,11.0045,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,2.8148,10.9471,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.6750,6.1789,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.8432,5.9264,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8308,10.9999,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,2.8148,11.0333,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,5.6750,7.6739,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.8432,7.3937,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8308,12.1010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,2.8148,11.8537,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,5.6750,7.8330,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.8432,6.8219,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8308,11.3215,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,2.8148,10.5646,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,5.6750,7.7577,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8432,6.7844,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8308,11.2859,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,2.8148,11.1386,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,5.6750,7.4553,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8432,6.2411,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8308,13.8525,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,2.8148,13.9303,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,5.6750,8.0887,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8432,7.1523,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8308,13.1765,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.8148,13.2647,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,5.6750,7.4878,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8432,6.9250,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8308,15.7878,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.8148,15.8090,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.6750,6.3148,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8432,5.9435,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8308,8.0910,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.8148,10.3344,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,5.6750,5.7568,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8432,5.5559,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8308,11.0098,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,2.8148,11.0569,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,5.6750,6.4866,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8432,5.9765,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8308,15.5199,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,2.8148,15.5036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,5.6750,9.9202,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8432,8.6472,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8308,12.2625,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,2.8148,12.6692,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,5.6750,8.6557,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8432,8.1407,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8308,11.8906,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.8148,11.9292,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,5.6750,8.4467,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8432,7.0324,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8308,11.6099,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,2.8148,11.2650,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.6750,6.9686,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8432,6.3871,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8308,7.8903,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,2.8148,11.0936,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.6750,9.6790,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8432,9.0689,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8308,11.6750,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,2.8148,11.5623,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.6750,7.5161,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8432,5.9612,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8308,13.1018,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,2.8148,11.9370,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,5.6750,10.8209,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8432,10.0587,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8308,11.8918,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,2.8148,11.6309,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,5.6750,7.6494,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8432,6.6979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8308,15.4749,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.8148,15.3504,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,5.6750,6.9569,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8432,6.7309,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8308,17.0759,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.8148,16.9420,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,5.6750,6.7185,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8432,6.1029,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8308,11.2567,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.8148,11.1793,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.6750,6.1867,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8432,5.8990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8308,10.8517,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,2.8148,10.8775,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.6750,6.4047,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8432,5.9190,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8308,10.5825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,2.8148,10.5271,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.6750,6.0871,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8432,5.9190,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8308,10.7080,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,2.8148,10.7431,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,5.6750,5.9341,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8432,5.7939,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8308,10.5367,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,2.8148,10.4936,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,5.6750,6.7243,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8432,6.0349,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8308,10.9796,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,2.8148,10.8341,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,5.6750,10.1034,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8432,7.9811,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8308,8.9096,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,2.8148,10.6114,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,5.6750,6.6915,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8432,6.1888,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8308,14.6734,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,2.8148,14.3717,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.6750,6.5418,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8432,6.0750,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8308,10.9888,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.8148,10.8786,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.6750,6.2923,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8432,5.9744,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8308,10.7978,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.8148,10.7566,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.6750,6.6675,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8432,6.5695,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8308,10.3403,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.8148,10.3072,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1432,5.6750,7.4260,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8432,6.3265,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8308,10.0255,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.8148,9.7580,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1436,5.6750,7.1648,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8432,6.3223,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8308,10.7020,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1439,2.8148,10.7497,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.txt new file mode 100644 index 0000000..0a1b295 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=off +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=5.998 +effective_logical_fps=60.025 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.283 +p95_encode_latency_ms=16.335 +max_encode_latency_ms=122.915 +avg_steady_encode_latency_ms=13.166 +p95_steady_encode_latency_ms=16.431 +max_steady_encode_latency_ms=122.915 +avg_tile_encode_latency_ms=8.910 +p95_tile_encode_latency_ms=12.103 +avg_max_tile_encode_latency_ms=11.330 +p95_max_tile_encode_latency_ms=14.294 +avg_steady_max_tile_encode_latency_ms=11.318 +p95_steady_max_tile_encode_latency_ms=14.309 +payload_bytes=4710098 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_deadline.md b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_deadline.md new file mode 100644 index 0000000..8fd16b6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — baseline_simultaneous_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.283 | +| p95_group_latency_ms | 16.335 | +| max_group_latency_ms | 122.915 | +| effective_logical_fps | 60.025 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 220 | 61.111% | 0, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 47, ... | +| 16.67 | 17 | 4.722% | 0, 33, 38, 51, 57, 69, 76, 180, 230, 290, 295, 305, ... | +| 20.00 | 3 | 0.833% | 0, 38, 180 | +| 33.33 | 2 | 0.556% | 0, 180 | +| 50.00 | 2 | 0.556% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.258 | 15.278 | 122.915 | +| 300-359 | 13.410 | 17.220 | 17.942 | diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_logical.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_logical.csv new file mode 100644 index 0000000..7df54dc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,112.5370,33.5796,231707 +1,4,0,10.9791,10.4808,65901 +2,4,0,10.8539,10.4032,36886 +3,4,0,10.9693,10.5009,69404 +4,4,0,10.8920,10.3469,87864 +5,4,0,10.8357,10.3989,53700 +6,4,0,10.8131,10.4250,24415 +7,4,0,10.8295,10.3625,15407 +8,4,0,10.7781,10.3473,12151 +9,4,0,10.8324,10.4215,11449 +10,4,0,10.9441,10.3655,8599 +11,4,0,10.8023,10.3918,6107 +12,4,0,11.3173,10.8188,5132 +13,4,0,10.9504,10.5433,3880 +14,4,0,11.1066,10.7266,4001 +15,4,0,11.0557,10.6190,3860 +16,4,0,11.2050,10.7837,4045 +17,4,0,11.0832,10.6712,3955 +18,4,0,11.0696,10.6372,3721 +19,4,0,11.2335,10.8060,3748 +20,4,0,11.1529,10.7152,3386 +21,4,0,11.2851,10.6894,2761 +22,4,0,11.9619,11.2852,2750 +23,4,0,11.6441,11.1638,2836 +24,4,0,11.5567,10.9651,2977 +25,4,0,11.5667,11.0841,2960 +26,4,0,11.6665,10.9844,3010 +27,4,0,11.6474,10.9749,2978 +28,4,0,11.7491,11.0666,2889 +29,4,0,12.0725,11.3847,2914 +30,4,0,12.9169,10.8944,2847 +31,4,0,12.7552,10.6809,3111 +32,4,0,13.0978,11.0966,2714 +33,4,0,16.7771,14.4248,2843 +34,4,0,12.9753,12.2519,2633 +35,4,0,13.1179,11.4485,2659 +36,4,0,15.1524,10.7854,2696 +37,4,0,13.2530,11.8660,2728 +38,4,0,22.8021,22.3575,2772 +39,4,0,11.9611,10.5444,2740 +40,4,0,10.9811,10.5040,2809 +41,4,0,10.9018,10.4632,2679 +42,4,0,11.7263,11.2243,2865 +43,4,0,11.3255,10.4522,2612 +44,4,0,10.8448,10.3737,2626 +45,4,0,11.0465,10.7275,2693 +46,4,0,10.8289,10.4218,2708 +47,4,0,12.0965,10.7784,2765 +48,4,0,12.1590,11.4409,2645 +49,4,0,11.9979,11.4506,2733 +50,4,0,12.0300,11.4325,2667 +51,4,0,17.1255,11.5297,2647 +52,4,0,12.1886,11.5648,2659 +53,4,0,12.2765,11.5885,2757 +54,4,0,13.0906,12.5896,2656 +55,4,0,14.5245,10.6129,2594 +56,4,0,12.0422,11.5607,2603 +57,4,0,19.9627,18.8846,2605 +58,4,0,10.8539,10.4110,2610 +59,4,0,11.0174,10.6825,2641 +60,4,0,11.5582,10.4212,442009 +61,4,0,11.9678,10.8313,52997 +62,4,0,12.0856,10.5428,26956 +63,4,0,12.1173,10.8041,26939 +64,4,0,12.2446,9.7430,22402 +65,4,0,14.5593,10.7286,15271 +66,4,0,13.5747,11.6636,12647 +67,4,0,13.1962,10.5376,10161 +68,4,0,15.2723,10.9750,9695 +69,4,0,19.8385,17.8612,5893 +70,4,0,13.3777,11.7914,5590 +71,4,0,14.5336,11.6470,5226 +72,4,0,13.2616,11.6840,5095 +73,4,0,13.8601,11.0047,5164 +74,4,0,14.0113,10.8483,4634 +75,4,0,12.9780,11.1988,5338 +76,4,0,17.8617,13.1868,2984 +77,4,0,12.5484,11.6728,2918 +78,4,0,13.9670,10.7902,3051 +79,4,0,13.3174,10.8840,3217 +80,4,0,13.4770,11.1086,3680 +81,4,0,13.0880,10.4917,3433 +82,4,0,13.2963,11.4213,3891 +83,4,0,13.6837,11.3847,2978 +84,4,0,13.3810,11.2625,2906 +85,4,0,12.9039,10.9860,2925 +86,4,0,13.1952,11.3069,3487 +87,4,0,13.0532,10.9757,2969 +88,4,0,12.7740,11.1120,2822 +89,4,0,12.6395,10.7802,3027 +90,4,0,14.0252,12.0595,2708 +91,4,0,12.8098,11.2332,2735 +92,4,0,13.7861,12.0957,2688 +93,4,0,12.9812,11.3593,2954 +94,4,0,12.7560,11.3601,3013 +95,4,0,13.1203,10.8258,2878 +96,4,0,13.0765,10.8569,3036 +97,4,0,13.2686,11.1382,2909 +98,4,0,13.0012,10.9066,2598 +99,4,0,12.9179,10.8183,2609 +100,4,0,13.1900,11.1921,2615 +101,4,0,13.3445,11.5130,2652 +102,4,0,14.5567,12.7470,2667 +103,4,0,16.0773,9.1634,2728 +104,4,0,13.7408,12.2798,2632 +105,4,0,12.9956,10.8240,2620 +106,4,0,13.2804,11.6813,2603 +107,4,0,13.5715,11.8498,2633 +108,4,0,12.9012,11.5029,2885 +109,4,0,13.5974,11.8513,2631 +110,4,0,12.2080,11.1357,2679 +111,4,0,11.8391,10.8857,2594 +112,4,0,10.9360,10.4851,2610 +113,4,0,10.9688,10.4956,2618 +114,4,0,10.9796,10.4605,2639 +115,4,0,11.2306,10.5885,2683 +116,4,0,11.5546,10.9107,2662 +117,4,0,11.6333,10.8898,2669 +118,4,0,12.8474,10.3567,2661 +119,4,0,12.7602,10.8264,2767 +120,4,0,12.7142,10.9000,412099 +121,4,0,13.0930,11.5740,58619 +122,4,0,13.2085,10.0700,48033 +123,4,0,11.3210,10.4489,38505 +124,4,0,11.5794,10.4898,33624 +125,4,0,11.8159,10.4348,18519 +126,4,0,11.7707,10.1279,15662 +127,4,0,11.8040,10.8404,11727 +128,4,0,12.0565,11.0357,10164 +129,4,0,12.1775,11.1378,8732 +130,4,0,12.1853,11.3042,8017 +131,4,0,11.9680,11.3114,5177 +132,4,0,12.1295,11.5838,3438 +133,4,0,11.9060,11.2707,3236 +134,4,0,12.2822,11.4848,3208 +135,4,0,15.9296,14.3226,3684 +136,4,0,14.2944,11.7146,3691 +137,4,0,13.2609,11.5310,3794 +138,4,0,13.1406,11.2292,3974 +139,4,0,13.2061,11.1864,3178 +140,4,0,13.0150,10.2354,3070 +141,4,0,12.6267,11.0859,3397 +142,4,0,13.8095,12.6123,2792 +143,4,0,13.0159,11.5196,2888 +144,4,0,15.3797,13.4558,2885 +145,4,0,13.1197,11.5107,3092 +146,4,0,12.9069,9.7563,2712 +147,4,0,13.0849,10.7481,2692 +148,4,0,12.8755,11.2600,2781 +149,4,0,13.0807,10.8160,2731 +150,4,0,13.3771,11.7590,2815 +151,4,0,13.2118,11.5239,2761 +152,4,0,13.1126,11.3105,3174 +153,4,0,13.1046,11.3725,2599 +154,4,0,13.7706,11.9668,2594 +155,4,0,13.4750,11.5470,2600 +156,4,0,12.8845,11.2915,2646 +157,4,0,13.1952,11.5905,2717 +158,4,0,13.0105,11.2021,2764 +159,4,0,12.6791,11.1967,2916 +160,4,0,12.8849,11.2268,2625 +161,4,0,13.4015,10.7103,2618 +162,4,0,12.7969,11.2728,2617 +163,4,0,12.0585,11.0984,2801 +164,4,0,12.0447,11.4266,2641 +165,4,0,12.9286,11.3337,2631 +166,4,0,12.8654,10.8238,2755 +167,4,0,12.9182,11.3621,2594 +168,4,0,12.5258,11.2141,2611 +169,4,0,13.3591,11.7063,2613 +170,4,0,12.8624,11.4492,2654 +171,4,0,13.5304,10.6687,2706 +172,4,0,12.7942,10.9914,2658 +173,4,0,13.1752,11.4676,2713 +174,4,0,13.0366,10.2353,2681 +175,4,0,12.9207,11.4058,2594 +176,4,0,13.0210,11.2062,2594 +177,4,0,12.8255,10.4015,2599 +178,4,0,12.6873,11.0841,2615 +179,4,0,12.8659,11.3527,2631 +180,4,0,122.9153,41.8990,231707 +181,4,0,10.9932,10.5230,65901 +182,4,0,10.9093,10.4421,36886 +183,4,0,10.9404,10.4857,69404 +184,4,0,11.0296,10.5924,87864 +185,4,0,11.0745,10.5943,53700 +186,4,0,11.0487,10.5932,24415 +187,4,0,11.0841,10.5958,15407 +188,4,0,11.1783,10.6495,12151 +189,4,0,11.3062,10.7830,11449 +190,4,0,12.0292,11.4163,8599 +191,4,0,12.0878,11.5258,6107 +192,4,0,12.0092,11.3278,5132 +193,4,0,12.1496,11.4956,3880 +194,4,0,12.1017,11.4590,4001 +195,4,0,12.3306,11.4083,3860 +196,4,0,11.8989,11.1581,4045 +197,4,0,11.8725,10.9680,3955 +198,4,0,14.8033,8.1290,3721 +199,4,0,11.7803,10.4576,3748 +200,4,0,12.2188,10.8907,3386 +201,4,0,11.7240,10.5795,2761 +202,4,0,14.1178,12.7647,2750 +203,4,0,12.6705,10.9970,2836 +204,4,0,11.5443,10.4815,2977 +205,4,0,11.5420,10.5360,2960 +206,4,0,11.4418,10.5886,3010 +207,4,0,11.4700,10.5953,2978 +208,4,0,11.4189,10.6143,2889 +209,4,0,11.9628,11.0900,2914 +210,4,0,12.2163,10.9328,2847 +211,4,0,11.3889,10.5345,3111 +212,4,0,11.2232,10.3762,2714 +213,4,0,11.2550,10.4077,2843 +214,4,0,11.3156,10.4107,2633 +215,4,0,11.3496,10.4987,2659 +216,4,0,11.4653,10.5125,2696 +217,4,0,11.2490,10.3677,2728 +218,4,0,11.6110,10.7150,2772 +219,4,0,11.4292,10.3956,2740 +220,4,0,11.5459,10.3087,2809 +221,4,0,11.7934,10.4073,2679 +222,4,0,11.8147,10.7147,2865 +223,4,0,11.6291,10.5697,2612 +224,4,0,13.0867,11.7002,2626 +225,4,0,13.2222,11.4610,2693 +226,4,0,14.0723,12.4575,2708 +227,4,0,13.6787,10.8121,2765 +228,4,0,13.5279,11.5908,2645 +229,4,0,13.2499,11.6572,2733 +230,4,0,17.3784,14.5841,2667 +231,4,0,12.2559,11.2348,2647 +232,4,0,16.1333,15.5316,2659 +233,4,0,11.3767,10.2773,2757 +234,4,0,11.9985,10.9249,2656 +235,4,0,12.0965,10.0497,2594 +236,4,0,12.0563,10.6519,2603 +237,4,0,12.5527,10.5125,2605 +238,4,0,12.6610,10.6910,2610 +239,4,0,11.8920,10.0962,2641 +240,4,0,11.7046,9.9787,442009 +241,4,0,11.8360,10.0616,52997 +242,4,0,11.4218,10.3910,26956 +243,4,0,11.7690,10.1063,26939 +244,4,0,11.6586,10.3142,22402 +245,4,0,13.6175,10.1656,15271 +246,4,0,11.3649,10.3755,12647 +247,4,0,11.5703,10.2847,10161 +248,4,0,11.9972,10.0994,9695 +249,4,0,10.8778,10.3285,5893 +250,4,0,10.7169,10.2993,5590 +251,4,0,12.7683,10.2720,5226 +252,4,0,11.3043,10.2615,5095 +253,4,0,11.2865,10.2457,5164 +254,4,0,11.2338,10.0463,4634 +255,4,0,11.3583,10.3630,5338 +256,4,0,11.8283,9.7456,2984 +257,4,0,13.4667,10.0727,2918 +258,4,0,11.7965,10.1219,3051 +259,4,0,11.6594,10.1009,3217 +260,4,0,11.6113,10.0645,3680 +261,4,0,13.9352,11.3251,3433 +262,4,0,11.4957,10.4874,3891 +263,4,0,12.3161,9.5375,2978 +264,4,0,13.8599,13.0236,2906 +265,4,0,12.2229,10.6035,2925 +266,4,0,12.1559,9.7122,3487 +267,4,0,11.3099,10.3138,2969 +268,4,0,11.3086,10.3047,2822 +269,4,0,11.3155,10.1715,3027 +270,4,0,11.6262,10.7565,2708 +271,4,0,12.5233,11.6282,2735 +272,4,0,11.3096,10.3620,2688 +273,4,0,11.4475,10.3225,2954 +274,4,0,11.6133,10.1712,3013 +275,4,0,11.6741,10.7835,2878 +276,4,0,10.8639,10.3665,3036 +277,4,0,11.4759,10.4003,2909 +278,4,0,11.7182,10.3118,2598 +279,4,0,11.6110,10.6474,2609 +280,4,0,11.5795,10.5532,2615 +281,4,0,12.0751,10.2896,2652 +282,4,0,12.1099,10.7930,2667 +283,4,0,12.1052,10.8340,2728 +284,4,0,12.9495,11.7337,2632 +285,4,0,12.8450,11.4068,2620 +286,4,0,12.5629,10.9445,2603 +287,4,0,13.9972,10.6345,2633 +288,4,0,12.4730,10.9597,2885 +289,4,0,13.6007,10.5101,2631 +290,4,0,19.5973,18.0537,2679 +291,4,0,13.2465,11.9758,2594 +292,4,0,14.2601,10.5104,2610 +293,4,0,12.4057,10.9183,2618 +294,4,0,12.6543,10.7923,2639 +295,4,0,18.1649,16.3224,2683 +296,4,0,12.7065,10.9667,2662 +297,4,0,12.3392,10.8732,2669 +298,4,0,12.9772,10.8258,2661 +299,4,0,13.1143,10.2543,2767 +300,4,0,13.4205,10.2590,412099 +301,4,0,13.0455,8.8074,58619 +302,4,0,13.9419,11.1665,48033 +303,4,0,11.7535,10.9092,38505 +304,4,0,11.7829,11.0103,33624 +305,4,0,17.9421,17.3030,18519 +306,4,0,10.9377,10.2073,15662 +307,4,0,10.9122,10.4500,11727 +308,4,0,11.1715,10.6217,10164 +309,4,0,11.4933,10.5549,8732 +310,4,0,11.4745,10.2938,8017 +311,4,0,12.3046,11.0953,5177 +312,4,0,12.8614,11.7917,3438 +313,4,0,11.5943,10.2339,3236 +314,4,0,11.9212,9.7841,3208 +315,4,0,12.3391,10.8331,3684 +316,4,0,12.5013,6.8730,3691 +317,4,0,14.8442,14.2925,3794 +318,4,0,13.1476,11.3986,3974 +319,4,0,14.1662,12.1340,3178 +320,4,0,12.8195,11.0008,3070 +321,4,0,17.0775,16.3622,3397 +322,4,0,13.6710,12.7996,2792 +323,4,0,13.0930,10.8960,2888 +324,4,0,14.5789,11.5955,2885 +325,4,0,13.7070,11.6773,3092 +326,4,0,14.9022,8.8112,2712 +327,4,0,11.4503,11.0045,2692 +328,4,0,11.6282,11.0333,2781 +329,4,0,12.7898,12.1010,2731 +330,4,0,13.2720,11.3215,2815 +331,4,0,13.0498,11.2859,2761 +332,4,0,16.3256,13.9303,3174 +333,4,0,14.8114,13.2647,2599 +334,4,0,17.4009,15.8090,2594 +335,4,0,13.9491,10.3344,2600 +336,4,0,11.4951,11.0569,2646 +337,4,0,16.6970,15.5199,2717 +338,4,0,15.0980,12.6692,2764 +339,4,0,12.9318,11.9292,2916 +340,4,0,13.2074,11.6099,2625 +341,4,0,15.8415,11.0936,2618 +342,4,0,12.9654,11.6750,2617 +343,4,0,16.5167,13.1018,2801 +344,4,0,13.3197,11.8918,2641 +345,4,0,17.2100,15.4749,2631 +346,4,0,17.7092,17.0759,2755 +347,4,0,12.1948,11.2567,2594 +348,4,0,11.5984,10.8775,2611 +349,4,0,11.5904,10.5825,2613 +350,4,0,11.4825,10.7431,2654 +351,4,0,11.2788,10.5367,2706 +352,4,0,12.5309,10.9796,2658 +353,4,0,14.9749,10.6114,2713 +354,4,0,16.0091,14.6734,2681 +355,4,0,11.9258,10.9888,2594 +356,4,0,11.7431,10.7978,2594 +357,4,0,12.2452,10.3403,2599 +358,4,0,12.7144,10.0255,2615 +359,4,0,13.2218,10.7497,2631 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/metadata.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/metadata.txt new file mode 100644 index 0000000..cd113cc --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/metadata.txt @@ -0,0 +1,8 @@ +timestamp=2026-05-15_1528 +duration_seconds=6 +reset_every=180 +stagger_frames=30 +run_fallback=1 +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.csv new file mode 100644 index 0000000..d5adbe2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8918,30.2660,0.0237,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.2707,5.9444,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,17343,0 +2,3.1160,7.4416,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7148,0 +3,3.1597,5.8954,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,12603,0 +4,3.4460,6.0374,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,23082,0 +5,3.4269,5.8701,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10524,0 +6,3.5862,5.8315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5025,0 +7,3.6191,5.8336,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2665,0 +8,3.7040,6.1804,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8940,0 +9,3.6345,5.8783,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1779,0 +10,3.7247,6.1364,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +11,4.0328,6.0644,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1185,0 +12,4.1221,6.1002,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6852,0 +13,4.0991,6.3260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +14,4.1182,6.0053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +15,4.0958,6.0153,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +16,4.6051,6.1489,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8918,0 +17,4.5487,6.0773,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3422,0 +18,3.1001,6.2986,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2359,0 +19,4.5905,6.0042,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +20,4.6448,6.1793,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8337,0 +21,4.6812,6.2364,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +22,4.2420,6.2970,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +23,4.1267,6.2215,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +24,4.6091,6.1881,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8216,0 +25,4.7917,6.0770,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +26,3.6637,6.1777,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +27,4.5608,6.0515,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1149,0 +28,4.5855,6.1397,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7062,0 +29,4.8679,6.3807,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1217,0 +30,4.7386,6.0247,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +31,4.6895,6.3703,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +32,4.5804,6.5496,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7332,0 +33,4.5843,6.4393,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2420,0 +34,5.1121,6.5036,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +35,5.3434,6.5775,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +36,4.8114,6.4374,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,8571,0 +37,4.8784,6.5923,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2046,0 +38,4.9582,6.5103,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +39,4.8883,6.7087,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +40,5.1245,6.5951,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7961,0 +41,4.8885,6.5131,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +42,4.9644,6.5086,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +43,4.8427,6.4718,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +44,4.9005,6.5822,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6971,0 +45,4.9838,6.5033,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1590,0 +46,4.6383,6.1886,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2462,0 +47,3.1115,6.0895,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +48,3.5786,5.9835,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9034,0 +49,4.0836,5.8907,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3349,0 +50,4.7142,6.0191,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +51,3.0248,6.0231,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +52,3.6503,6.0309,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8805,0 +53,5.0314,5.9384,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2621,0 +54,5.0497,6.0637,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2521,0 +55,5.0954,6.0623,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2906,0 +56,4.9895,6.2340,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,9132,0 +57,5.1414,6.1084,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +58,4.8593,6.0126,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2061,0 +59,4.7388,6.4159,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +60,4.9373,6.2188,0.0416,0.0000,0,0,0.0000,0,0.0000,0,1,0,119347,0 +61,4.8765,6.6624,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,15588,0 +62,4.8369,6.5093,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,17884,0 +63,4.8426,6.5526,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11287,0 +64,4.7457,6.5677,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14502,0 +65,4.8281,6.5601,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5992,0 +66,5.0655,6.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4320,0 +67,5.0443,6.3993,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +68,4.8593,6.6152,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9003,0 +69,5.0045,6.6542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +70,5.1934,6.4762,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +71,4.8987,6.4835,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +72,4.8902,6.8328,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7981,0 +73,4.4293,6.7917,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +74,4.4894,6.0966,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +75,4.0758,6.0436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +76,4.0718,6.1180,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6166,0 +77,4.0657,6.2233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +78,4.0849,6.1967,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +79,4.3650,6.5585,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +80,4.4954,6.6860,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8085,0 +81,4.5850,6.2681,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +82,4.2708,6.1423,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +83,3.5473,6.6609,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,979,0 +84,4.4775,6.1625,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8303,0 +85,4.7915,5.9913,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +86,4.5697,6.1903,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +87,4.5995,6.2525,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +88,4.6710,6.1173,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,8164,0 +89,4.6193,6.0817,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +90,4.7987,6.4768,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +91,4.8075,6.4905,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +92,4.8701,6.4626,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6509,0 +93,4.9450,6.9145,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +94,4.8895,6.6698,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1105,0 +95,5.0667,6.5876,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +96,4.8084,6.6928,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,22161,0 +97,4.9772,6.5541,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +98,4.8577,6.3990,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +99,4.9187,6.4329,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +100,5.1943,6.7181,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,7662,0 +101,4.7728,6.7127,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1930,0 +102,4.9026,6.4895,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +103,4.9357,6.4456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +104,4.8472,6.3781,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7559,0 +105,4.7036,6.3531,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +106,4.5838,6.3434,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +107,5.0922,6.7648,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +108,4.3223,6.1225,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6497,0 +109,2.8678,6.1062,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +110,2.7984,5.8570,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1228,0 +111,3.7347,5.8238,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1131,0 +112,4.5859,5.9799,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8165,0 +113,5.0303,5.9376,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +114,2.8837,5.8738,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +115,4.8812,5.9234,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1273,0 +116,4.6540,5.9532,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8367,0 +117,4.4703,5.9168,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +118,4.5442,5.9467,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +119,4.7993,6.0826,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +120,5.1193,6.1977,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,106449,0 +121,4.5933,6.1394,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16792,0 +122,4.5752,5.9988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6111,0 +123,4.6177,6.1740,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6099,0 +124,4.7901,6.6923,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11820,0 +125,4.5972,6.8674,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3761,0 +126,4.6077,6.4769,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4311,0 +127,4.7828,6.5857,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3567,0 +128,4.9450,6.6047,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8140,0 +129,5.0412,6.5409,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +130,4.9969,6.6000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +131,4.9205,6.5547,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1540,0 +132,4.8884,6.5497,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7697,0 +133,5.0992,6.5228,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +134,4.8588,6.4777,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +135,4.9131,6.4610,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +136,4.8919,6.5318,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7711,0 +137,5.0933,6.5532,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +138,4.9065,6.5954,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +139,5.0884,6.5765,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +140,4.8596,6.4870,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6701,0 +141,4.9429,7.0468,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +142,5.1030,6.6850,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +143,4.9399,6.5991,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +144,4.8692,6.6955,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8280,0 +145,4.7873,6.3102,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2829,0 +146,4.5888,6.1120,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +147,4.4768,6.0483,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +148,4.4648,6.1353,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8289,0 +149,4.5767,6.1385,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1261,0 +150,4.4998,6.0992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1296,0 +151,4.6021,6.4134,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +152,4.6430,6.3971,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8230,0 +153,4.5908,6.5933,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1398,0 +154,4.6268,6.4832,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +155,4.5770,6.3962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +156,4.7923,6.5064,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7208,0 +157,4.7382,6.9201,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +158,5.2620,6.5129,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +159,4.9708,6.5378,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2051,0 +160,4.8967,6.6318,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7773,0 +161,5.1529,6.4355,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +162,5.3463,6.7378,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +163,4.9943,6.4795,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2123,0 +164,4.8684,6.7088,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +165,4.9525,6.6939,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2357,0 +166,4.9390,6.6053,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +167,5.1093,6.6295,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2646,0 +168,4.8837,6.6372,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8167,0 +169,4.9812,6.9939,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +170,4.6152,6.3004,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +171,2.9358,6.1325,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +172,2.9868,5.9300,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7081,0 +173,3.1454,6.1494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +174,3.0819,6.1630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3163,0 +175,5.0454,6.2758,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2381,0 +176,3.0721,6.0575,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +177,3.0031,6.1225,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4152,0 +178,3.2987,5.7871,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +179,2.8765,6.0456,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +180,3.5398,6.0137,0.0274,0.0000,0,0,0.0000,0,0.0000,0,1,0,122025,0 +181,4.6870,6.0516,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17106,0 +182,5.0888,10.6977,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,19495,0 +183,5.0953,15.8025,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8772,0 +184,4.9617,15.8614,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14207,0 +185,5.0769,16.2157,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6640,0 +186,5.1619,16.3393,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +187,5.1111,16.4709,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2817,0 +188,5.2817,16.3437,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,9395,0 +189,5.2070,17.1800,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1752,0 +190,5.0113,16.5395,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2141,0 +191,4.9080,16.7059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +192,5.0012,16.4443,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,22620,0 +193,4.9355,16.4390,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +194,4.9509,16.4653,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1694,0 +195,4.9458,16.3432,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1396,0 +196,4.9263,16.4208,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,8404,0 +197,5.2158,16.3357,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +198,5.0820,16.2907,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1233,0 +199,5.1619,17.5797,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +200,4.8567,17.5312,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7634,0 +201,4.6937,16.1189,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +202,4.3315,16.1737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1259,0 +203,4.5523,15.8118,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +204,4.5361,16.0000,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6597,0 +205,4.6067,17.2260,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1023,0 +206,2.9597,17.1328,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +207,2.9546,15.9641,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +208,2.8509,15.6167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8547,0 +209,3.2696,15.8842,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3281,0 +210,3.3353,15.9354,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1905,0 +211,4.4311,15.7851,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +212,5.4022,16.0145,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8369,0 +213,5.0497,15.9713,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1939,0 +214,5.1205,15.9270,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2001,0 +215,5.1990,15.8746,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +216,5.1060,16.0028,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,8641,0 +217,5.5479,16.3198,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +218,5.6108,16.2365,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +219,5.2494,16.8660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +220,5.1853,16.9520,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,7535,0 +221,5.1122,17.5880,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +222,5.1065,16.6792,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,3098,0 +223,4.9095,16.5821,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +224,4.9741,16.4916,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8546,0 +225,4.9253,16.5150,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3520,0 +226,4.9350,16.6927,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2837,0 +227,4.8426,16.4730,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +228,5.0288,16.3888,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9054,0 +229,5.1574,16.6198,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +230,5.0897,16.6605,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +231,5.2283,16.6926,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +232,3.2302,16.9512,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8543,0 +233,2.8783,15.8973,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +234,2.9821,15.8759,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1932,0 +235,3.3891,15.9890,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2217,0 +236,2.9529,16.0322,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7517,0 +237,2.8728,16.6001,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +238,2.8970,15.9190,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4140,0 +239,3.4325,15.7535,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +240,3.7023,15.5863,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,96632,0 +241,5.1065,15.9548,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,18924,0 +242,5.8041,15.8704,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,10045,0 +243,5.5003,15.9122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7222,0 +244,5.3561,16.1807,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12148,0 +245,5.0416,16.0458,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3865,0 +246,5.0513,16.2092,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +247,5.1256,16.2347,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2090,0 +248,5.7720,16.4960,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +249,5.4610,16.9443,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +250,5.4113,16.8698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +251,5.7282,16.4405,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +252,5.4136,16.7655,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6491,0 +253,5.5731,17.7127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +254,4.9248,16.6462,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1312,0 +255,4.8795,16.5815,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1181,0 +256,4.9841,16.3126,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20204,0 +257,5.2687,16.5425,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +258,4.9212,16.4002,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1019,0 +259,4.9146,16.7894,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +260,5.0083,16.4573,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7410,0 +261,5.0078,16.4945,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1966,0 +262,4.9044,16.4462,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +263,4.9538,16.3777,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +264,4.9988,16.6005,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,7705,0 +265,4.6549,17.0662,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +266,4.8430,16.4851,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,949,0 +267,3.1158,18.1523,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1832,0 +268,4.3890,15.9823,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6537,0 +269,4.0386,16.6096,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +270,4.3003,15.8250,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1001,0 +271,4.4687,15.9023,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +272,4.4338,15.8649,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +273,4.4726,16.1365,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +274,4.5792,16.1195,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1056,0 +275,4.5668,16.0628,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +276,4.5057,16.1534,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8237,0 +277,4.5792,15.8448,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +278,4.4693,16.2385,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +279,4.3991,16.7651,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +280,4.7310,16.3987,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +281,4.6251,16.3185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +282,4.7230,16.3657,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +283,5.3902,16.5014,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1057,0 +284,4.7295,16.5129,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +285,4.9374,17.2805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1090,0 +286,4.8986,16.4567,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1838,0 +287,5.3606,16.7227,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +288,5.0101,16.4480,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6961,0 +289,4.6872,16.4078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +290,4.6956,16.7231,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1874,0 +291,4.7279,16.5115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +292,4.6812,16.2250,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8709,0 +293,3.0298,15.7695,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2190,0 +294,2.9365,15.9474,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1841,0 +295,3.5010,16.0046,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +296,2.9531,15.9372,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8007,0 +297,2.9569,15.8302,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +298,3.9401,15.7911,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +299,3.0740,16.2260,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.txt new file mode 100644 index 0000000..1249da6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.561 +avg_encode_latency_ms=10.345 +p95_encode_latency_ms=16.866 +max_encode_latency_ms=30.266 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1726537 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.csv new file mode 100644 index 0000000..2fcf989 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.6269,84.6296,0.0328,0.0000,0,0,0.0000,0,0.0000,0,1,0,90693,0 +1,5.3590,36.1268,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,33357,0 +2,5.0465,38.4974,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,17305,0 +3,4.9584,41.0106,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,26405,0 +4,4.8084,43.6697,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,41778,0 +5,4.7805,33.6687,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,23133,0 +6,4.7609,32.0454,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,8457,0 +7,4.8587,20.6959,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4764,0 +8,5.0817,12.0370,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15756,0 +9,5.2535,11.9858,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +10,5.4222,11.6245,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +11,5.2162,11.4296,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +12,5.2016,11.8736,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +13,5.2564,11.5710,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4041,0 +14,5.2302,11.5322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3899,0 +15,5.1957,11.8657,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3819,0 +16,5.3329,11.5596,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,14869,0 +17,5.5372,11.3899,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4305,0 +18,5.3377,11.8364,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +19,5.7062,11.6383,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +20,5.6053,11.4923,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +21,5.6454,11.6038,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +22,5.5832,11.7000,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +23,5.7025,11.5342,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +24,5.7236,11.6077,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12365,0 +25,5.8214,11.2308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +26,5.7151,11.4740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +27,5.8932,11.6804,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +28,5.7973,11.9381,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12458,0 +29,5.8488,11.9893,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +30,5.7862,11.8500,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +31,5.8434,11.5950,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +32,5.6683,11.3706,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11420,0 +33,5.6242,11.5286,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +34,5.4594,11.4627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +35,5.5836,11.4844,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +36,5.6112,11.3256,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13744,0 +37,5.6421,11.9137,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +38,5.8019,11.4298,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +39,5.6217,11.6435,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +40,5.5644,11.2933,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,13192,0 +41,5.3939,11.4656,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +42,5.6796,11.4586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +43,5.6570,11.4367,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +44,5.7675,11.7967,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,12022,0 +45,5.6573,11.7076,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +46,5.6612,11.5737,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +47,5.7640,11.7832,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +48,5.7408,12.2592,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +49,4.5778,11.7021,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2537,0 +50,5.5496,11.5992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +51,5.7057,11.5877,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +52,5.8521,11.4905,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14057,0 +53,5.6609,11.4268,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +54,5.7743,11.4053,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +55,5.7195,11.3364,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +56,5.6398,11.6111,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12868,0 +57,5.7938,11.5231,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +58,5.7973,11.4854,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +59,5.8553,11.5021,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +60,5.6888,11.7151,0.0527,0.0000,0,0,0.0000,0,0.0000,0,1,0,207878,0 +61,5.7275,11.6349,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,17948,0 +62,5.7340,11.5601,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,20836,0 +63,5.8167,11.4974,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,15768,0 +64,5.7678,11.6539,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,24247,0 +65,4.5460,11.4152,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11212,0 +66,4.3627,11.4158,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7185,0 +67,5.7215,11.3513,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2282,0 +68,5.6524,11.5704,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12714,0 +69,5.7513,11.6918,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +70,5.7791,11.8308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2020,0 +71,5.6378,11.4187,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +72,5.6697,11.6013,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13454,0 +73,5.6939,11.6247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +74,5.8144,11.3856,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,5.7121,11.5798,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +76,5.7769,11.6333,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +77,5.6742,11.5481,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +78,5.6493,11.7207,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +79,5.6604,11.4551,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +80,5.6657,11.5544,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14283,0 +81,5.7129,11.5749,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +82,5.6741,11.4443,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +83,5.6732,11.4857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +84,5.6947,11.5264,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,14178,0 +85,5.8023,11.5030,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +86,5.7233,11.7630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +87,5.6730,11.4779,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +88,5.7201,11.4171,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12751,0 +89,5.8873,12.0066,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +90,5.9835,12.0639,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +91,5.7305,11.9908,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +92,5.8660,11.8967,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12518,0 +93,5.7973,11.5563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +94,5.4723,11.7297,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +95,5.6415,11.6739,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +96,5.6708,11.6229,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,35268,0 +97,5.6824,11.3534,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1936,0 +98,5.5486,11.3715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +99,5.6254,11.4951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +100,5.6585,11.6009,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,13723,0 +101,5.8275,11.4936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +102,5.7473,11.6473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +103,5.6823,11.6096,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +104,5.7442,11.4639,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13197,0 +105,5.8089,11.4531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +106,5.7950,11.5058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1488,0 +107,5.6871,11.5324,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +108,5.7323,11.7069,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12006,0 +109,5.4500,11.8237,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +110,5.2839,11.7393,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +111,5.2335,11.6733,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +112,5.4760,11.4848,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,13796,0 +113,5.7819,11.4727,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2094,0 +114,5.6965,11.4895,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +115,5.8240,11.5792,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +116,5.7696,11.4994,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13929,0 +117,5.6286,11.4953,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +118,5.7165,11.6080,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +119,5.6322,11.5663,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +120,5.5773,11.1601,0.0437,0.0000,0,0,0.0000,0,0.0000,0,1,0,205935,0 +121,5.6581,11.5645,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15333,0 +122,5.6907,11.2933,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +123,5.6380,11.7296,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,12086,0 +124,5.7925,11.7900,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,18993,0 +125,5.6987,11.6052,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7924,0 +126,5.5450,11.6911,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5805,0 +127,5.6797,11.5477,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +128,5.4842,11.4357,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13229,0 +129,5.5827,11.7573,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4210,0 +130,5.7807,11.7507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3466,0 +131,5.8637,11.4226,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +132,5.5865,11.5638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13684,0 +133,5.5718,11.4653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +134,5.6490,11.3548,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +135,5.4731,11.6353,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +136,5.6482,11.6517,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13089,0 +137,5.6514,11.5273,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +138,5.6250,11.4737,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +139,5.7385,11.5228,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +140,5.6221,11.8968,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12838,0 +141,5.5367,11.5516,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +142,5.6260,11.6162,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +143,5.5731,11.5720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +144,5.5290,11.4265,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +145,5.5957,11.3568,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +146,5.6327,11.3960,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +147,5.6163,11.4882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +148,5.5275,11.6996,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12817,0 +149,5.6425,11.5538,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +150,5.7935,11.7194,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +151,5.6521,11.3388,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +152,5.5702,11.5612,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,12342,0 +153,5.6435,11.7292,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +154,5.7457,11.6420,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +155,5.6090,11.4732,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +156,5.4834,11.8982,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +157,5.6626,11.7487,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +158,5.5863,11.3535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +159,5.6407,11.2779,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +160,5.5256,11.4511,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +161,5.5425,11.5485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1987,0 +162,5.5693,11.9228,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +163,5.6652,11.6971,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +164,5.6215,11.6948,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13654,0 +165,5.6134,11.5128,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +166,5.6317,11.5258,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +167,5.6881,11.4623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +168,5.5737,11.5539,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13103,0 +169,5.6285,11.3723,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +170,5.6651,11.9186,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +171,5.0113,11.8496,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +172,4.8502,11.9687,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12883,0 +173,4.9317,11.5120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +174,5.6890,11.5611,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +175,5.6454,11.5415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +176,5.0754,11.7329,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13481,0 +177,5.6454,11.4611,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +178,5.6828,11.8093,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +179,5.6378,11.5843,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +180,5.6895,11.2033,0.0521,0.0000,0,0,0.0000,0,0.0000,0,1,0,241418,0 +181,5.6563,11.6225,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19215,0 +182,5.6619,18.4280,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,23656,0 +183,5.6121,23.5465,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +184,5.5695,25.9755,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,26245,0 +185,5.5965,28.2461,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +186,5.5362,30.4396,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5102,0 +187,5.7804,32.3970,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4147,0 +188,5.7048,35.2849,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13635,0 +189,5.6275,36.1815,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +190,5.6740,37.5320,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +191,5.6530,38.9695,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +192,4.7943,40.6707,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,36424,0 +193,5.5262,40.4358,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +194,5.6618,40.9661,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +195,5.6772,41.2733,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +196,5.5465,41.6345,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13653,0 +197,5.6422,41.3459,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +198,5.6571,41.7045,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +199,5.5648,41.6052,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +200,5.6627,41.5960,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13125,0 +201,5.5854,41.6594,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +202,5.5848,41.6095,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +203,5.5864,41.5657,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +204,5.6651,42.0897,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12858,0 +205,5.6124,42.0883,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +206,5.6041,42.0399,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +207,5.7046,41.8802,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +208,5.6143,41.8151,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13636,0 +209,5.6845,41.4720,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +210,5.6922,41.6670,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +211,5.5529,41.7014,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +212,5.6620,41.7886,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12678,0 +213,5.6480,41.8287,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +214,5.8922,41.4255,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +215,5.5208,41.5856,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +216,5.5415,41.7365,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12452,0 +217,5.4758,41.9127,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +218,5.4239,41.8558,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +219,5.4502,41.8210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +220,5.2986,42.2892,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12502,0 +221,5.6403,41.9659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +222,5.5897,41.9601,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +223,5.5819,41.6101,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +224,5.6057,41.9057,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11650,0 +225,5.5445,41.1232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +226,5.4831,43.0834,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +227,5.6313,40.8295,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +228,5.6236,41.3100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13841,0 +229,5.5795,41.2701,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +230,5.5359,41.8987,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +231,5.6082,40.7913,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +232,5.2320,41.4645,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,13418,0 +233,5.3749,42.8983,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +234,5.2071,41.3082,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +235,5.5444,42.2752,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +236,5.5897,41.7199,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13117,0 +237,5.7255,41.6711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +238,5.5732,42.2728,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +239,5.5633,41.4135,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +240,5.5662,41.0957,0.0413,0.0000,0,0,0.0000,0,0.0000,0,1,0,202606,0 +241,5.5195,41.4501,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,18838,0 +242,5.6148,42.1804,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,22006,0 +243,5.6136,42.4264,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16616,0 +244,5.4313,41.6036,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,22139,0 +245,5.7068,41.4369,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5492,0 +246,5.6681,41.4509,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3374,0 +247,5.7137,41.3988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +248,5.7088,41.5449,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,13534,0 +249,5.6639,41.9399,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +250,5.7455,41.4394,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +251,5.5820,41.5519,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +252,5.6260,42.2960,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12484,0 +253,5.5915,42.1800,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1891,0 +254,5.5506,41.8347,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +255,5.7096,41.8127,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1770,0 +256,5.6000,41.9904,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,34556,0 +257,5.6690,40.8905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +258,5.5349,41.3990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +259,5.4198,43.9202,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +260,5.5755,40.8382,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13717,0 +261,5.3574,41.9090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +262,5.5933,41.4915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +263,5.4716,41.5621,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +264,5.6573,41.4038,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13183,0 +265,5.6190,41.4655,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +266,5.5640,41.7137,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +267,5.5882,41.4929,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +268,5.4912,42.2710,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11975,0 +269,5.5635,42.1332,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +270,5.6071,41.8986,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +271,5.7514,41.6760,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +272,5.4846,41.9803,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13683,0 +273,5.4873,41.8858,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +274,5.3655,41.7639,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +275,5.5260,41.2216,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +276,5.5265,41.5310,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +277,5.7100,42.9247,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +278,5.5535,41.0500,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +279,5.6051,41.0711,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +280,5.5913,41.1523,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,12510,0 +281,5.5083,42.3007,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +282,5.4677,42.1689,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +283,5.5260,41.3052,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +284,5.4778,42.7401,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12528,0 +285,5.3587,41.9720,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +286,5.4309,40.2899,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +287,5.3130,42.2635,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +288,5.6420,42.7187,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11401,0 +289,5.6272,43.1579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +290,5.6392,40.5522,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +291,5.5713,41.3963,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +292,5.4692,41.1710,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13732,0 +293,5.2823,41.3091,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +294,4.8934,41.8800,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +295,4.8488,41.8780,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +296,5.0207,41.7188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +297,5.6093,39.8203,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +298,5.6997,37.6445,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +299,5.6418,43.2948,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.txt new file mode 100644 index 0000000..34f2dc5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.575 +avg_encode_latency_ms=23.846 +p95_encode_latency_ms=42.273 +max_encode_latency_ms=84.630 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2756134 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.csv new file mode 100644 index 0000000..68e5e36 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0817,40.0947,0.0408,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,8.1176,12.5804,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.7982,15.5552,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.4794,19.1425,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.2390,22.9270,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.1253,26.0812,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.4235,19.9484,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.5215,14.7327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.6464,12.5381,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6365,12.6208,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.9605,12.6587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7894,12.7135,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.9558,12.8656,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.8985,13.3221,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.3582,12.9142,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.1823,12.5139,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.5822,12.6443,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.9154,12.6040,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.8292,12.5416,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.8803,12.5553,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.8660,12.5082,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,8.3780,12.7825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.8546,12.3990,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.8706,12.6068,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.9087,12.5093,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,8.1085,12.7257,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.9040,12.6235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.8342,12.5015,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.8432,12.7116,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,7.8670,13.0497,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,8.0583,12.5244,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.9953,12.7285,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8566,12.5927,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9646,12.5302,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.9287,12.5391,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,8.0273,12.7949,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.0230,12.8959,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.9991,12.9249,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,8.2065,12.7971,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,8.3899,12.8957,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,8.1941,12.7094,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.1641,12.6638,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8232,12.5384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,8.1934,12.3730,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.7066,12.4945,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.7853,13.1150,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.9604,12.7538,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.8990,12.4724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.7652,12.5397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,7.8731,12.5826,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.6203,12.6307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.8569,12.7359,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.2305,12.7153,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.3784,12.6063,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,7.1870,12.5026,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.7515,12.4473,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.5551,12.7298,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.7120,12.6873,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,7.8138,12.7395,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8487,12.4595,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8837,12.3351,0.0820,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,8.0452,13.2011,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,8.1135,12.5206,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,8.0563,12.4838,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,8.0737,12.4416,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,8.0783,12.4391,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.8214,12.7035,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,8.0896,12.4176,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,8.2006,12.4495,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.8993,12.4366,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.9014,12.3852,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.7567,12.6339,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,7.8558,12.6013,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.8654,12.5020,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.9278,12.5760,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.9067,12.5043,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,8.0566,12.6616,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,8.0235,13.1677,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.9556,12.4773,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,8.1310,12.6717,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.0085,12.5128,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.8721,12.7192,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.8002,12.6151,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.7080,12.6083,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.7782,12.5903,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.7351,12.8627,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.9851,12.6943,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.7791,12.5417,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.7860,12.6525,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.7518,12.4485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.7856,12.5243,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.8220,12.6758,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.9046,12.6387,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.8917,13.0818,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,8.0223,12.6085,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.7181,12.4767,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.8430,12.5993,0.0300,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.8249,12.6472,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,8.4455,12.9295,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.9030,12.7944,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.9872,12.6168,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.8422,12.5669,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.8379,12.6550,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.9586,12.4753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.8853,12.5535,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.8076,12.4413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.8400,12.7230,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.9738,12.7251,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.8080,12.6092,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,8.0985,13.2807,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8653,12.4823,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.8280,13.1458,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.5855,12.8307,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.3886,13.7782,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.6572,12.5684,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.8328,12.5477,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.1275,12.5853,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,7.6133,12.4921,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.6793,12.5185,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.7275,12.4840,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.6481,12.4017,0.0749,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7982,12.5591,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.7098,12.8637,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.8659,12.7823,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,8.1950,12.6669,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,8.3446,13.2685,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,8.2342,12.6286,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,8.0782,12.6815,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.8641,12.5240,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,8.1496,12.5890,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.8760,12.5701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.8793,12.6232,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.8269,12.6047,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.9282,12.6526,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.8861,12.5055,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.7783,12.5082,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.9083,12.7370,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.8892,12.5524,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.8120,12.5553,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,8.0980,12.5175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.8079,12.4980,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.8833,13.2818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,8.0437,12.5830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,8.0755,12.4467,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,8.0330,12.4747,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,8.1145,12.5152,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.9554,12.7245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.7120,12.7600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.8455,12.5646,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.8374,12.6469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.7733,12.5875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.9785,12.7273,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.8592,12.6639,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.7730,12.4729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.7448,12.5561,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.8683,12.6248,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.7534,12.8074,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.9235,13.3195,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.2602,12.7626,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.0336,12.6725,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.8249,12.6814,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.7916,12.8135,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.7933,12.6592,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.7142,12.4632,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.8775,12.4429,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.7688,12.4642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.7375,12.4938,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.7839,12.6508,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.8092,12.4707,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.7729,12.3988,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.8027,12.6562,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.7355,12.5878,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.5775,12.7393,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,8.0265,13.2777,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.9344,12.8556,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.8261,12.4907,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.8385,12.6467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,7.9512,12.6063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,7.7555,12.5188,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,7.8607,12.5862,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,7.8900,12.3581,0.0459,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.8598,12.6022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.9252,23.9641,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.8302,29.3894,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.9652,35.5543,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.7628,38.9314,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,8.0233,41.3665,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,8.0524,42.8036,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,8.0393,43.8683,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.6990,45.6237,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9048,45.4203,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.9026,45.7779,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.8822,46.2561,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,7.9750,45.7285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.8182,46.1014,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.8533,46.1345,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.7779,46.0977,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,8.1060,45.6165,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.8344,46.3385,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.9272,46.3505,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.8377,46.2958,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.8194,45.7418,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.7582,46.2325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.7291,46.2662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.8909,46.1004,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.8529,47.0823,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.8081,46.8894,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.9189,46.2107,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7812,46.3962,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,8.0634,45.9770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.8459,46.5740,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.7730,45.9509,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.7707,46.1452,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.6482,46.6022,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.8261,45.9095,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.8429,46.6871,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,8.0096,46.4070,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,8.0285,45.8115,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.9692,46.1722,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.7642,46.3723,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.8223,46.3951,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,8.0371,47.0110,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.7796,46.7458,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.9442,46.3235,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.9687,46.2578,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.8722,46.2210,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.8431,46.1307,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.8982,46.5052,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.8441,45.9972,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,8.0625,46.3384,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,8.0091,46.4691,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.9108,46.1354,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.8870,46.3291,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.0146,45.9884,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.8848,45.7990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.5750,46.0628,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8611,47.0562,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8075,46.9544,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.7767,46.0472,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.5673,47.0288,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.4262,46.7690,0.0272,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.2403,45.3813,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.7613,46.3456,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8592,46.0784,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.9815,46.0839,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.8969,45.9963,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.9788,45.7649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.9863,46.0787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.8406,46.0247,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.9512,46.1333,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.6719,46.3016,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.9562,45.0343,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.7212,46.1328,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.5668,47.7642,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.6751,46.1857,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.6768,46.3661,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,8.1281,45.6911,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.7715,46.1002,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.6443,45.9232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.7140,45.6259,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.7408,46.0556,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.7772,46.2657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.7547,46.0502,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.8713,46.2405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.8642,46.2804,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.1436,45.5085,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.0220,45.7895,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.9653,45.9470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.7859,46.1794,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,8.2312,46.3832,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.1207,46.3807,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.7965,46.3892,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.7605,46.2266,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.8656,46.0367,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.8140,46.0584,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.7912,46.0554,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.8917,45.8790,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.7034,46.0604,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7220,46.0294,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.8175,45.9785,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.6935,46.1709,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.7548,45.9547,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.8425,46.0605,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.7883,46.6630,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.0616,46.3564,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.9830,46.5772,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.8236,46.4573,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.7871,47.0619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.7464,46.6585,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.7732,45.8332,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.8077,46.0575,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.7977,46.5183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.9121,45.8431,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.8566,46.2299,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.8760,46.4915,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.8230,45.9896,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.8818,46.2185,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,7.7538,43.4609,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.8068,42.0294,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.8396,47.7151,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.txt new file mode 100644 index 0000000..2f4ee45 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.860 +avg_encode_latency_ms=25.838 +p95_encode_latency_ms=46.578 +max_encode_latency_ms=47.764 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.csv new file mode 100644 index 0000000..5631b27 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9509,23.0567,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8652,23.0239,0.0166,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8183,24.6388,0.0234,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.7591,19.3970,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9509,5.7727,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8652,5.6532,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8183,10.6907,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.7591,10.7137,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9509,5.8371,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8652,5.7672,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8183,10.6242,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.7591,10.5709,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9509,5.5682,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8652,6.6597,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8183,10.5504,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.7591,11.8467,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9509,5.6694,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8652,5.5345,0.0162,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8183,10.4883,0.0157,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.7591,12.1709,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9509,5.8116,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8652,5.6497,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8183,10.5000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.7591,10.4832,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9509,5.6625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8652,5.5836,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8183,10.4145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.7591,10.4130,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9509,5.7006,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8652,6.9265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8183,10.3950,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.7591,11.8848,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9509,5.6019,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8652,5.8447,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8183,10.3159,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.7591,12.3667,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9509,5.6506,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8652,5.6220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8183,10.5142,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.7591,10.5176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9509,5.8286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8652,5.7212,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8183,10.7537,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.7591,10.7572,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9509,5.7970,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8652,5.6970,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8183,10.6033,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.7591,10.6007,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9509,5.7414,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8652,5.6830,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8183,10.5010,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.7591,10.4515,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9509,5.6742,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8652,5.6564,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8183,10.5602,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.7591,10.4479,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9509,6.2771,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8652,5.9300,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8183,10.6594,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.7591,10.5699,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9509,5.9527,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8652,5.9017,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8183,10.8385,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.7591,10.7968,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9509,6.0782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8652,6.0487,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8183,10.9611,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.7591,10.9362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9509,6.0903,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8652,6.0675,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8183,10.9760,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.7591,10.9550,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9509,6.2025,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8652,6.0283,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8183,10.9486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.7591,10.9522,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9509,6.7469,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8652,6.4299,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8183,11.3546,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.7591,11.1559,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9509,7.2587,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8652,6.4622,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8183,10.5360,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.7591,10.4513,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9509,7.0164,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8652,6.4355,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8183,10.5479,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.7591,10.9353,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9509,6.9246,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8652,6.4059,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8183,10.6418,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.7591,10.9683,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9509,7.6608,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8652,6.6830,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8183,10.7933,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.7591,10.9105,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9509,8.2185,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8652,7.0818,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8183,11.5345,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.7591,11.5337,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9509,7.4315,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8652,8.2310,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8183,11.1497,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.7591,10.9364,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9509,8.2637,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8652,6.8155,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8183,11.2528,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.7591,11.0198,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9509,6.7802,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8652,6.2318,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8183,11.3844,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.7591,11.1355,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9509,7.2122,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8652,6.4654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8183,10.5592,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.7591,10.7917,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9509,7.0357,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8652,6.3413,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8183,10.6181,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.7591,10.7314,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9509,7.2791,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8652,6.4300,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8183,10.5951,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.7591,10.6900,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9509,7.0067,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8652,6.4214,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8183,10.6903,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.7591,11.3287,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9509,7.3901,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8652,6.4139,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8183,11.2242,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.7591,11.0680,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9509,8.2885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8652,7.2168,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8183,10.8268,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.7591,10.6589,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9509,6.8072,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8652,6.1425,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8183,11.1749,0.0293,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.7591,11.0356,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9509,8.5838,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8652,6.6627,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8183,8.7833,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.7591,11.0256,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9509,7.4869,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8652,6.6327,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8183,11.2740,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.7591,11.1462,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9509,7.2070,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8652,7.2685,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8183,10.7003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.7591,10.7294,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9509,7.7798,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8652,6.8264,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8183,10.7156,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.7591,10.3718,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9509,7.4300,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8652,6.2352,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8183,10.7082,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.7591,10.6997,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9509,7.3955,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8652,6.2874,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8183,12.3115,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.7591,12.0728,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9509,7.5000,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8652,6.3048,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8183,11.7718,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.7591,11.8375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9509,7.5266,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8652,6.2494,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8183,11.2578,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.7591,10.9634,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9509,7.2641,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8652,6.1670,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8183,11.0468,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.7591,10.8625,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9509,7.0020,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8652,6.1858,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8183,11.3050,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.7591,11.2837,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9509,7.3995,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8652,6.3660,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8183,11.1549,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.7591,10.7996,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9509,7.0819,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8652,6.3048,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8183,11.5558,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.7591,11.0126,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9509,7.0737,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8652,6.2220,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8183,11.3842,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.7591,11.4947,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9509,7.2492,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8652,6.4592,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8183,10.5459,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.7591,10.8184,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9509,7.3012,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8652,6.3887,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8183,10.5973,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.7591,10.9247,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9509,7.3309,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8652,6.3173,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8183,11.1352,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.7591,10.9084,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9509,10.7390,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8652,10.5553,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8183,11.4877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.7591,11.2487,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9509,6.3294,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8652,5.8453,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8183,10.5530,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.7591,10.4130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9509,6.5523,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8652,6.1637,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8183,10.1961,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.7591,10.2473,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9509,6.5808,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8652,6.0031,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8183,10.7354,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.7591,10.3813,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9509,6.4976,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8652,6.0621,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8183,10.2579,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.7591,10.3449,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9509,6.3485,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8652,5.9577,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8183,10.3301,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.7591,10.3877,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9509,6.4355,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8652,5.9420,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8183,10.6820,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.7591,10.6622,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9509,8.1942,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8652,7.8019,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8183,11.2308,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.7591,11.0538,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9509,7.1792,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8652,6.3347,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8183,10.8761,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.7591,10.8105,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9509,7.0509,0.1255,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8652,6.1924,0.1476,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8183,10.8948,0.1204,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.7591,10.4799,0.0778,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,4.9509,7.1377,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8652,6.3829,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8183,11.5470,0.0617,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.7591,11.5482,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,4.9509,7.7683,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8652,6.8236,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8183,11.8070,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.7591,10.5419,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,4.9509,7.0668,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8652,6.1033,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8183,10.8905,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.7591,10.7244,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,4.9509,6.6974,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8652,6.3976,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8183,9.5880,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.7591,10.9478,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,4.9509,7.4233,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8652,6.3740,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8183,11.1541,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.7591,11.0832,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,4.9509,7.2109,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8652,6.4440,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8183,10.7178,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.7591,10.7735,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,4.9509,7.1007,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8652,6.6144,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8183,10.6735,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.7591,10.7801,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,4.9509,7.1055,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8652,6.3750,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8183,10.8360,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.7591,10.7158,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,4.9509,6.9299,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8652,6.4095,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8183,8.4711,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.7591,10.0118,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,4.9509,7.1876,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8652,6.2525,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8183,11.2428,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.7591,11.2840,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,4.9509,7.1093,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8652,6.2700,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8183,10.6088,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.7591,10.9359,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,4.9509,6.9112,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8652,6.2962,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8183,10.8573,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.7591,10.7600,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,4.9509,7.5307,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8652,6.3900,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8183,11.3739,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.7591,11.3300,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,4.9509,7.2629,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8652,6.3935,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8183,11.3891,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.7591,10.9323,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,4.9509,7.3347,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8652,6.3554,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8183,11.1286,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.7591,10.7939,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,4.9509,7.3065,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8652,6.3633,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8183,11.4842,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.7591,11.3219,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,4.9509,11.5857,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8652,10.9428,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8183,11.5654,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.7591,11.2869,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,4.9509,7.2778,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8652,6.3252,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8183,10.6492,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.7591,10.7441,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,4.9509,7.2663,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8652,6.3962,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8183,11.4105,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.7591,11.1804,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,4.9509,7.7577,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8652,7.6725,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8183,10.9507,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.7591,10.7955,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,4.9509,7.0812,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8652,6.1395,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8183,10.5967,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.7591,10.2780,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,4.9509,7.5252,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8652,6.6727,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8183,11.3422,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.7591,11.0858,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,4.9509,7.2408,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8652,6.3313,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8183,11.2131,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.7591,10.9332,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,4.9509,8.6015,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8652,7.5352,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8183,11.8188,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.7591,11.5564,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,4.9509,7.6465,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8652,6.4268,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8183,11.4839,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.7591,11.2315,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,4.9509,7.1726,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8652,6.1249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8183,10.8764,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.7591,10.8891,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,4.9509,7.2674,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8652,6.3565,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8183,10.9628,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.7591,10.8139,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,4.9509,7.1634,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8652,6.3563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8183,10.6765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.7591,10.8529,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,4.9509,7.0370,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8652,6.3073,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8183,11.3229,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.7591,11.1891,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,4.9509,7.3338,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8652,6.5709,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8183,11.0355,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.7591,11.1078,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,4.9509,6.9738,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8652,6.2667,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8183,10.5868,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.7591,10.8664,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,4.9509,7.4212,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8652,6.3612,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8183,11.4245,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.7591,11.1689,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,4.9509,6.8769,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8652,6.0329,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8183,10.5438,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.7591,10.2713,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,4.9509,7.2109,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8652,6.6076,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8183,11.5681,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.7591,11.6360,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,4.9509,6.9907,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8652,6.3100,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8183,11.1370,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.7591,10.8917,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,4.9509,7.3245,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8652,6.4255,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8183,10.6322,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.7591,10.7243,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,4.9509,7.2591,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8652,6.7465,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8183,11.1844,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.7591,10.9388,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,4.9509,7.2576,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8652,6.3487,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8183,11.0338,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.7591,10.9578,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,4.9509,7.1197,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8652,6.2847,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8183,10.6115,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.7591,10.6950,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,4.9509,7.6308,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8652,6.5726,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8183,10.6627,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.7591,11.2234,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,4.9509,7.0814,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8652,6.2851,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8183,10.5323,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.7591,11.8476,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,4.9509,7.5497,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8652,6.7205,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8183,10.6525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.7591,10.7290,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,4.9509,7.2028,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8652,6.3873,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8183,10.7972,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.7591,10.9526,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,4.9509,7.0444,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8652,6.3042,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8183,11.1288,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.7591,11.0365,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,4.9509,7.4104,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8652,6.4682,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8183,11.3380,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.7591,11.0692,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,4.9509,7.1651,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8652,6.2866,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8183,22.4904,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.7591,22.1142,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,4.9509,7.1490,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8652,6.2152,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8183,10.4624,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.7591,10.4691,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,4.9509,6.2531,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8652,6.0500,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8183,11.2203,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.7591,11.2273,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,4.9509,6.3045,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8652,6.0510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8183,11.3852,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.7591,11.1858,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,4.9509,7.1115,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8652,6.4645,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8183,10.1965,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.7591,9.9717,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,4.9509,6.4902,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8652,6.1150,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8183,11.1593,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.7591,11.0700,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,4.9509,6.4885,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8652,6.1645,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8183,11.0920,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.7591,10.9305,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,4.9509,7.1064,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8652,6.4734,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8183,11.6972,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.7591,11.3351,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,4.9509,6.5223,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8652,5.7410,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8183,10.5800,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.7591,10.3385,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,4.9509,6.6772,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8652,5.9571,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8183,10.7534,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.7591,10.5113,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,4.9509,6.7257,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8652,6.0574,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8183,10.5303,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.7591,10.2938,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,4.9509,6.4220,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8652,6.0025,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8183,10.5323,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.7591,10.4125,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,4.9509,6.2803,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8652,6.1229,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8183,8.9548,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.7591,10.6387,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,4.9509,6.7073,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8652,6.0279,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8183,10.3957,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.7591,10.1226,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,4.9509,7.1528,0.0755,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8652,6.1808,0.0566,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8183,10.4684,0.0215,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.7591,10.3421,0.0573,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,4.9509,7.1494,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8652,6.5552,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8183,10.5569,0.0361,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.7591,10.8000,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,4.9509,7.6662,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8652,6.6650,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8183,10.4872,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.7591,10.5546,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,4.9509,6.9236,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8652,6.2395,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8183,11.7061,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.7591,11.2893,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,4.9509,6.2510,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8652,5.7685,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8183,10.6699,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.7591,10.4140,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,4.9509,6.2505,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8652,5.9160,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8183,10.2763,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.7591,10.2232,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,4.9509,6.4715,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8652,6.0642,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8183,10.8431,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.7591,10.6568,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,4.9509,6.6993,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8652,6.0488,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8183,10.2625,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.7591,10.3184,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,4.9509,6.3668,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8652,5.9550,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8183,10.2381,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.7591,10.1930,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,4.9509,6.7938,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8652,6.0620,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8183,10.7649,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.7591,10.6340,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,4.9509,6.4142,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8652,5.9637,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8183,11.0907,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.7591,10.9829,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,4.9509,6.2800,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8652,5.8905,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8183,10.0459,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.7591,10.1493,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,4.9509,6.2412,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8652,5.8975,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8183,10.7393,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.7591,10.5919,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,4.9509,6.7975,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8652,6.3226,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8183,10.8632,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.7591,10.7853,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,4.9509,6.7534,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8652,6.3178,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8183,10.6017,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.7591,10.7037,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,4.9509,6.8209,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8652,6.3675,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8183,11.1337,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.7591,11.0183,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,4.9509,6.9463,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8652,6.3254,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8183,11.5520,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.7591,11.1461,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,4.9509,6.7863,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8652,6.2480,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8183,9.9322,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.7591,10.7383,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,4.9509,7.6133,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8652,6.5655,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8183,10.6468,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.7591,10.9018,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,4.9509,7.2772,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8652,6.2582,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8183,10.8260,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.7591,10.8032,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,4.9509,7.2723,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8652,6.4438,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8183,10.5642,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.7591,11.1626,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9509,7.1586,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8652,6.1987,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8183,11.0657,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.7591,10.8341,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,4.9509,7.4377,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8652,6.3006,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8183,11.0560,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.7591,11.0225,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,4.9509,7.2774,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8652,6.2512,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8183,10.9727,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.7591,10.6421,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,4.9509,7.2149,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8652,6.3928,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8183,11.1440,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.7591,10.5239,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,4.9509,7.2650,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8652,6.3698,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8183,11.2172,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.7591,10.1080,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,4.9509,7.0941,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8652,6.2982,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8183,9.3020,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.7591,9.0273,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,4.9509,7.1078,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8652,6.3630,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8183,11.3209,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.7591,11.0010,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,4.9509,7.1826,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8652,6.3887,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8183,10.5366,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.7591,10.5035,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,4.9509,7.0273,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8652,6.2083,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8183,10.7512,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.7591,10.4032,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,4.9509,7.0405,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8652,6.4182,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8183,10.8093,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.7591,10.7028,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,4.9509,7.0922,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8652,6.2620,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8183,10.7043,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.7591,10.3825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,4.9509,7.2839,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8652,6.4169,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8183,11.3602,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.7591,11.0572,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,4.9509,7.2056,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8652,6.1198,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8183,10.9268,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.7591,10.6035,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,4.9509,6.5406,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8652,6.0134,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8183,10.9503,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.7591,10.7836,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,4.9509,6.2408,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8652,5.7159,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8183,10.4570,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.7591,10.2221,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,4.9509,6.6085,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8652,5.9491,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8183,10.8356,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.7591,10.7826,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,4.9509,6.4337,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8652,5.9661,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8183,10.3779,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.7591,10.2565,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,4.9509,6.4990,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8652,6.0901,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8183,10.2157,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.7591,10.1905,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,4.9509,6.5450,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8652,6.0172,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8183,10.5716,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.7591,10.3890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,4.9509,6.5010,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8652,6.0453,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8183,10.4213,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.7591,10.2389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,4.9509,6.4210,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8652,6.0018,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8183,10.7619,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.7591,10.6323,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,4.9509,6.9658,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8652,6.2742,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8183,10.5658,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.7591,10.8840,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,4.9509,7.1024,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8652,6.2822,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8183,11.5985,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.7591,11.3356,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,4.9509,7.2712,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8652,6.1715,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8183,8.8792,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.7591,10.7294,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,4.9509,9.6147,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8652,8.7258,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8183,10.4911,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.7591,10.4394,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,4.9509,7.0198,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8652,6.3273,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8183,10.7911,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.7591,10.6927,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,4.9509,7.1809,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8652,6.2653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8183,10.7112,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.7591,10.7215,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,4.9509,7.0017,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8652,6.2806,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8183,12.0836,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.7591,11.9284,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,4.9509,7.0025,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8652,6.1938,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8183,11.2393,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.7591,11.0359,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,4.9509,7.0836,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8652,6.2451,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8183,11.2925,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.7591,11.2011,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,4.9509,6.9917,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8652,6.6705,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8183,10.3427,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.7591,10.9029,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,4.9509,6.8703,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8652,6.3102,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8183,10.9005,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.7591,10.6637,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,4.9509,6.8971,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8652,6.8064,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8183,9.7153,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.7591,10.4383,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,4.9509,6.9100,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8652,6.4044,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8183,10.5913,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.7591,10.7320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,4.9509,7.4043,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.8652,6.4470,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +702,2.8183,11.2161,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +703,2.7591,10.9704,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +704,4.9509,6.7478,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.8652,5.9014,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +706,2.8183,10.8063,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +707,2.7591,10.5815,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,4.9509,6.4796,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.8652,6.2675,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +710,2.8183,10.3511,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +711,2.7591,10.3258,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +712,4.9509,7.7197,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.8652,7.0605,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +714,2.8183,10.0707,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +715,2.7591,10.1630,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +716,4.9509,6.5935,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.8652,6.1333,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +718,2.8183,10.6547,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +719,2.7591,10.4895,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +720,4.9509,34.7530,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8652,27.4502,0.0089,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8183,27.6380,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.7591,26.6600,0.0088,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,4.9509,5.8806,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8652,5.7928,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8183,10.7822,0.0220,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.7591,10.7975,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,4.9509,5.7698,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8652,5.7047,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8183,10.8703,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.7591,10.8697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,4.9509,5.7452,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8652,5.7266,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8183,10.7323,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.7591,10.8013,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,4.9509,5.9675,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8652,5.8427,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8183,10.8900,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.7591,10.8885,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,4.9509,5.8950,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8652,5.8726,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8183,10.8720,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.7591,10.8721,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,4.9509,5.8030,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8652,5.6912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8183,10.7491,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.7591,10.7337,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,4.9509,5.9644,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8652,5.8769,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8183,10.8782,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.7591,10.8519,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,4.9509,5.8407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8652,5.7640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8183,10.7472,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.7591,10.7372,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,4.9509,6.0643,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8652,5.9404,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8183,11.1177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.7591,11.0879,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,4.9509,6.2792,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8652,6.1269,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8183,11.4570,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.7591,11.3705,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,4.9509,6.3784,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8652,6.1850,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8183,11.3646,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.7591,11.3311,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,4.9509,6.3415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8652,6.1715,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8183,11.3379,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.7591,11.2406,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,4.9509,6.4077,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8652,6.1798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8183,11.3395,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.7591,11.2824,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,4.9509,6.4090,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8652,6.1883,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8183,11.5835,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.7591,11.3625,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,4.9509,6.9320,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8652,6.6957,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8183,10.3710,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.7591,11.1356,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,4.9509,8.1346,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8652,7.3883,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8183,12.6550,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.7591,12.4899,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,4.9509,7.4413,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8652,6.4493,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8183,12.2539,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.7591,12.6319,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,4.9509,7.5642,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8652,6.3787,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8183,11.0965,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.7591,11.2104,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,4.9509,7.0128,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8652,7.0469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8183,10.1604,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.7591,10.3602,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,4.9509,7.4580,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8652,6.5643,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8183,13.1374,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.7591,13.0563,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,4.9509,8.1801,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8652,7.1947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8183,11.8335,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.7591,11.6684,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,4.9509,7.5214,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8652,6.4588,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8183,10.7734,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.7591,11.0389,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,4.9509,7.2364,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8652,6.3885,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8183,11.2942,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.7591,10.8440,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,4.9509,7.7989,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8652,6.9227,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8183,11.6392,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.7591,11.3781,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,4.9509,7.2928,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8652,6.5350,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8183,11.1815,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.7591,10.7450,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,4.9509,7.4163,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8652,6.4902,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8183,11.7116,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.7591,11.6089,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,4.9509,7.5125,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8652,7.2535,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8183,11.9860,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.7591,11.7246,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,4.9509,7.0610,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8652,6.4194,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8183,10.5196,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.7591,11.0310,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,4.9509,7.3697,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8652,6.5046,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8183,11.6683,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.7591,11.2541,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,4.9509,7.7648,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8652,7.1100,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8183,11.1812,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.7591,11.1282,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,4.9509,6.5219,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8652,6.1397,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8183,11.3980,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.7591,11.1757,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,4.9509,7.8629,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8652,7.3363,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8183,11.9115,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.7591,11.6394,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,4.9509,7.4515,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8652,6.6730,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8183,11.3446,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.7591,11.4078,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,4.9509,7.5123,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8652,6.6056,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8183,16.9341,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.7591,16.6599,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,4.9509,7.3556,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8652,6.4169,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8183,10.5815,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.7591,10.7909,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9509,7.5302,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8652,6.7365,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8183,11.2758,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.7591,10.9309,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,4.9509,6.8491,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8652,6.0946,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8183,12.7170,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.7591,12.2316,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,4.9509,8.4452,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8652,7.7562,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8183,11.4053,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.7591,11.1300,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,4.9509,6.4650,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8652,6.1060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8183,11.6698,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.7591,11.0109,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,4.9509,7.3794,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8652,6.5390,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8183,12.2347,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.7591,12.2243,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,4.9509,7.4688,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8652,6.6530,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8183,11.0473,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.7591,11.1067,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,4.9509,7.2148,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8652,6.3353,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8183,11.3636,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.7591,11.0250,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9509,7.6534,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8652,6.3664,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8183,10.7847,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.7591,10.8401,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,4.9509,7.2090,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8652,6.4315,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8183,11.1472,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.7591,10.6832,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,4.9509,7.5906,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8652,6.3670,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8183,11.3963,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.7591,11.1219,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,4.9509,7.2433,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8652,6.2397,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8183,11.7688,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.7591,11.4924,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,4.9509,7.7338,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8652,6.4542,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8183,11.2064,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.7591,10.7415,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,4.9509,7.3935,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8652,6.3891,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8183,11.1803,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.7591,10.9403,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9509,7.8896,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8652,6.4002,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8183,11.1315,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.7591,11.1657,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,4.9509,7.5049,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8652,6.3228,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8183,14.1373,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.7591,13.4285,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9509,6.5755,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8652,6.2072,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8183,11.2443,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.7591,11.1445,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,4.9509,6.7138,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8652,6.2549,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8183,11.4871,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.7591,11.4392,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,4.9509,6.3018,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8652,6.0804,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8183,11.1632,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.7591,11.1499,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,4.9509,6.4022,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8652,6.1633,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8183,11.3187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.7591,11.2734,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,4.9509,6.3881,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8652,6.1402,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8183,11.1341,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.7591,11.0441,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9509,7.3878,0.0282,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8652,6.5179,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8183,12.6080,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.7591,12.4235,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,4.9509,7.5429,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8652,6.8631,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8183,10.4621,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.7591,10.1140,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,4.9509,6.4986,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8652,6.0857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8183,10.7988,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.7591,10.6299,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,4.9509,6.7965,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8652,6.1768,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8183,10.5126,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.7591,10.2046,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,4.9509,6.8506,0.0619,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8652,6.0011,0.0587,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8183,10.5087,0.0619,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.7591,10.1938,0.0457,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,4.9509,6.6966,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8652,6.1507,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8183,10.5526,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.7591,10.2738,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,4.9509,6.8262,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8652,6.3018,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8183,10.8387,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.7591,10.8013,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,4.9509,6.7053,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8652,5.9940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8183,11.9449,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.7591,11.5992,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,4.9509,7.0128,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8652,6.3940,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8183,11.8420,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.7591,11.5009,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,4.9509,7.6029,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8652,6.4466,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8183,11.7220,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.7591,11.4325,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,4.9509,7.7820,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8652,6.4145,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8183,10.9347,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.7591,11.0395,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,4.9509,7.3436,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8652,6.4099,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8183,11.5640,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.7591,11.6914,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,4.9509,7.6520,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8652,6.7320,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8183,13.2290,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.7591,12.7733,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,4.9509,7.6445,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8652,6.2513,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8183,11.6270,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.7591,11.3905,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,4.9509,7.4629,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8652,6.3765,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8183,11.1341,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.7591,11.0015,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,4.9509,6.9946,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8652,6.7252,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8183,9.5573,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.7591,10.4187,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,4.9509,7.1488,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8652,6.1057,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8183,10.0623,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.7591,10.3611,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,4.9509,7.1245,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8652,6.2285,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8183,10.0334,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.7591,10.2563,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,4.9509,6.9714,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8652,6.3200,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8183,10.6032,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.7591,10.5356,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,4.9509,7.0826,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8652,6.4236,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8183,10.6110,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.7591,10.7416,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,4.9509,6.9849,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8652,6.2787,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8183,10.9790,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.7591,10.7685,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,4.9509,7.5444,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8652,6.5180,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8183,10.7047,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.7591,10.4079,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,4.9509,7.4229,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8652,6.1769,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8183,11.3138,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.7591,11.2948,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,4.9509,7.3283,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8652,6.1436,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8183,9.4575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.7591,10.7423,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,4.9509,7.5222,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8652,6.5371,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8183,10.8157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.7591,10.7917,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,4.9509,7.1715,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8652,6.3184,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8183,10.8723,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.7591,10.8702,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,4.9509,7.4996,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8652,6.4701,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8183,11.5951,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.7591,11.4662,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,4.9509,7.6539,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8652,6.4568,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8183,11.2148,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.7591,11.0759,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,4.9509,7.1645,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8652,6.2858,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8183,10.8497,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.7591,10.8379,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,4.9509,7.5862,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8652,6.4267,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8183,10.9533,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.7591,10.6678,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,4.9509,7.1445,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8652,6.2627,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8183,11.3948,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.7591,11.2060,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,4.9509,7.5873,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8652,6.4263,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8183,11.1163,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.7591,10.5691,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,4.9509,6.7993,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8652,6.2540,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8183,8.2033,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.7591,8.9853,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,4.9509,7.1541,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8652,6.3351,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8183,11.7688,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.7591,9.6888,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,4.9509,7.4466,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8652,6.6575,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8183,11.5270,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.7591,11.4059,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,4.9509,7.3071,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8652,6.3735,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8183,11.1759,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.7591,11.1237,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,4.9509,7.1867,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8652,6.2037,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8183,11.0648,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.7591,9.0568,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,4.9509,6.7923,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8652,6.0598,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8183,10.9004,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.7591,10.7406,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,4.9509,6.8322,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8652,6.3430,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8183,11.6472,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.7591,11.3595,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,4.9509,7.3625,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8652,6.4326,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8183,11.3355,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.7591,11.1056,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,4.9509,7.7200,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8652,6.5055,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8183,10.8849,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.7591,10.5683,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,4.9509,7.2146,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8652,6.4205,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8183,10.7452,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.7591,10.9125,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,4.9509,7.5296,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8652,6.6526,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8183,11.0715,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.7591,10.5674,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,4.9509,7.1988,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8652,6.2633,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8183,11.3667,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.7591,11.2807,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,4.9509,7.3649,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8652,6.3382,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8183,11.1273,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.7591,10.8376,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,4.9509,7.5358,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8652,6.5158,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8183,11.2529,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.7591,10.9022,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,4.9509,7.3588,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8652,6.3121,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8183,10.1482,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.7591,10.5285,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,4.9509,7.2263,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8652,6.3392,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8183,10.7020,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.7591,10.1847,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,4.9509,7.2748,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8652,6.3601,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8183,11.6008,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.7591,11.3187,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,4.9509,7.0806,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8652,6.2515,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8183,10.8198,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.7591,10.6891,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,4.9509,7.1247,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8652,6.2800,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8183,11.2845,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.7591,10.7782,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,4.9509,8.1749,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8652,6.4637,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8183,11.4109,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.7591,11.1254,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,4.9509,7.9589,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8652,6.8477,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8183,11.0682,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.7591,10.9622,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,4.9509,8.2350,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8652,7.2162,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8183,11.3877,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.7591,11.1594,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,4.9509,7.3263,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8652,6.2559,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8183,11.1236,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.7591,10.9344,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,4.9509,7.0975,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8652,6.3711,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8183,10.9533,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.7591,10.8345,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,4.9509,7.5401,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8652,6.4861,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8183,10.8432,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.7591,10.9656,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,4.9509,7.1990,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8652,6.2963,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8183,10.5219,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.7591,10.7895,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,4.9509,7.2487,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8652,6.3738,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8183,10.8295,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.7591,12.2828,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,4.9509,7.2713,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8652,6.2817,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8183,10.7950,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.7591,10.8374,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,4.9509,7.3480,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8652,6.3006,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8183,11.3224,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.7591,10.8978,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,4.9509,7.3821,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8652,6.2909,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8183,10.6496,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.7591,10.7978,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,4.9509,9.1902,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8652,6.8335,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8183,5.9807,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.7591,10.5494,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,4.9509,6.0147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8652,5.7148,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8183,10.7727,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.7591,10.5923,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,4.9509,6.3703,0.0452,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.8652,5.9919,0.0329,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,2.8183,10.1597,0.0235,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,2.7591,10.0505,0.0345,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,4.9509,6.6491,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.8652,6.1462,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,2.8183,10.6985,0.0195,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,2.7591,10.3042,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,4.9509,6.3605,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.8652,5.9632,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,2.8183,10.4263,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,2.7591,10.3172,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,4.9509,6.3478,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.8652,5.7777,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,2.8183,10.7568,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,2.7591,10.3423,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,4.9509,6.7893,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.8652,6.0827,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,2.8183,10.5263,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,2.7591,10.5117,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,4.9509,7.1921,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.8652,6.2355,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,2.8183,13.3161,0.0416,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,2.7591,13.0839,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,4.9509,7.3489,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.8652,6.3347,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,2.8183,11.1707,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,2.7591,10.9740,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,4.9509,7.2304,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.8652,6.2901,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,2.8183,10.7749,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,2.7591,10.8045,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,4.9509,7.6247,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.8652,6.3217,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,2.8183,11.9062,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,2.7591,11.8700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,4.9509,7.3139,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.8652,6.2375,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,2.8183,10.9515,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,2.7591,10.9403,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,4.9509,7.6224,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.8652,6.2686,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,2.8183,11.4618,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,2.7591,11.1835,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,4.9509,7.2480,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.8652,6.2405,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,2.8183,11.4080,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,2.7591,11.1415,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,4.9509,7.1866,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.8652,6.3741,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,2.8183,11.0890,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,2.7591,10.7291,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,4.9509,7.0548,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.8652,6.3426,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,2.8183,10.8926,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.7591,10.8045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,4.9509,6.9956,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.8652,6.4189,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,2.8183,10.3074,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,2.7591,10.4811,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,4.9509,7.0930,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.8652,6.2777,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8183,10.9304,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,2.7591,10.5060,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,4.9509,6.9508,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.8652,6.2586,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8183,10.8723,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,2.7591,10.5484,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,4.9509,7.2872,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.8652,6.8185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8183,10.6604,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,2.7591,10.4517,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,4.9509,7.3776,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.8652,6.3759,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8183,10.5693,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,2.7591,10.6533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,4.9509,9.1035,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.8652,7.7122,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8183,11.1820,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,2.7591,10.9275,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,4.9509,7.5912,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.8652,6.5494,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8183,10.9275,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,2.7591,10.9643,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,4.9509,7.2772,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.8652,6.3480,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8183,10.6990,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,2.7591,10.7603,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,4.9509,7.4406,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.8652,6.2066,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8183,12.9740,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.7591,12.9284,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,4.9509,7.2933,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.8652,6.3437,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8183,11.6558,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.7591,11.5788,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,4.9509,7.0751,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.8652,6.2804,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8183,11.3038,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,2.7591,11.2092,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,4.9509,7.4517,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.8652,6.3734,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8183,11.1093,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,2.7591,10.7371,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,4.9509,7.1420,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.8652,6.3431,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8183,10.9217,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,2.7591,10.7805,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,4.9509,7.3644,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.8652,6.5925,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8183,11.3039,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,2.7591,11.1359,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,4.9509,7.2570,0.1492,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.8652,6.2677,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8183,11.2661,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,2.7591,11.1715,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,4.9509,7.3027,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.8652,6.3213,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8183,11.2702,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,2.7591,11.0192,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,4.9509,7.1950,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.8652,6.5366,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8183,10.6489,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,2.7591,10.8511,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,4.9509,7.1997,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8652,6.2460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8183,11.0393,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,2.7591,10.6133,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,4.9509,7.2863,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8652,6.3414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8183,11.2125,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,2.7591,10.8724,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,4.9509,7.0751,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8652,6.2915,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8183,10.1788,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.7591,10.3796,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,4.9509,7.5297,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8652,6.2059,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8183,11.1961,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.7591,11.1656,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,4.9509,7.3670,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8652,6.4501,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8183,11.5430,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.7591,11.4952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,4.9509,7.2178,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8652,6.4614,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8183,10.7479,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,2.7591,10.8247,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,4.9509,7.2593,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8652,6.2934,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8183,10.8628,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,2.7591,10.7878,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,4.9509,7.0297,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8652,7.3516,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8183,9.7325,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,2.7591,9.4700,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,4.9509,7.4986,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8652,6.4414,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8183,11.0695,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.7591,10.9193,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,4.9509,7.5193,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8652,6.3434,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8183,11.5712,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,2.7591,11.4247,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,4.9509,7.4368,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8652,6.1542,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8183,10.2678,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,2.7591,11.0013,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,4.9509,6.9502,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8652,6.3182,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8183,10.4899,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,2.7591,10.7297,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,4.9509,7.2439,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8652,6.3518,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8183,10.8494,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,2.7591,10.9224,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,4.9509,7.3400,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8652,6.2535,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8183,10.9850,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,2.7591,10.6831,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,4.9509,7.7738,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8652,6.8320,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8183,11.3128,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.7591,10.9600,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,4.9509,7.4146,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8652,6.2815,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8183,11.1013,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.7591,10.1827,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,4.9509,7.2406,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8652,6.3297,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8183,10.8752,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.7591,10.7946,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,4.9509,7.2081,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8652,6.2877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8183,10.7412,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,2.7591,10.7677,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,4.9509,7.1952,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8652,6.4654,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8183,11.8289,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,2.7591,11.6688,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,4.9509,7.4775,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8652,6.3941,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8183,10.6874,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,2.7591,10.8190,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,4.9509,7.3463,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8652,6.4587,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8183,10.8079,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,2.7591,10.8473,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,4.9509,7.2955,0.1035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8652,6.5197,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8183,10.9690,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,2.7591,10.7385,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,4.9509,7.1397,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8652,6.3007,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8183,11.1144,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,2.7591,10.6649,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,4.9509,7.1286,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8652,6.2251,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8183,11.1918,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,2.7591,10.5288,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,4.9509,7.2244,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8652,6.4095,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8183,11.0316,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.7591,10.7612,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,4.9509,7.0984,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8652,6.3563,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8183,10.4755,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.7591,10.4354,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,4.9509,6.9911,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8652,6.3185,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8183,11.0909,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.7591,10.5295,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1432,4.9509,7.3965,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8652,6.3815,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8183,11.9596,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.7591,11.6096,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1436,4.9509,7.4611,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8652,6.2059,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8183,14.7746,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1439,2.7591,14.8283,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.txt new file mode 100644 index 0000000..0a5399b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=6.002 +effective_logical_fps=59.980 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.468 +p95_encode_latency_ms=14.309 +max_encode_latency_ms=116.770 +avg_steady_encode_latency_ms=13.352 +p95_steady_encode_latency_ms=14.313 +max_steady_encode_latency_ms=116.770 +avg_tile_encode_latency_ms=8.957 +p95_tile_encode_latency_ms=11.639 +avg_max_tile_encode_latency_ms=11.232 +p95_max_tile_encode_latency_ms=12.174 +avg_steady_max_tile_encode_latency_ms=11.211 +p95_steady_max_tile_encode_latency_ms=12.040 +payload_bytes=4713117 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_deadline.md b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_deadline.md new file mode 100644 index 0000000..2fe135f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_simultaneous_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.468 | +| p95_group_latency_ms | 14.309 | +| max_group_latency_ms | 116.770 | +| effective_logical_fps | 59.980 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 312 | 86.667% | 0, 3, 4, 7, 8, 19, 20, 21, 22, 23, 24, 25, ... | +| 16.67 | 6 | 1.667% | 0, 106, 180, 214, 298, 359 | +| 20.00 | 4 | 1.111% | 0, 106, 180, 298 | +| 33.33 | 2 | 0.556% | 0, 180 | +| 50.00 | 2 | 0.556% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.532 | 14.309 | 116.770 | +| 300-359 | 13.146 | 14.319 | 16.793 | diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_logical.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_logical.csv new file mode 100644 index 0000000..0242e89 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,90.5054,24.6388,231707 +1,4,0,11.2238,10.7137,65901 +2,4,0,11.0314,10.6242,36886 +3,4,0,12.2212,11.8467,69404 +4,4,0,12.5782,12.1709,87864 +5,4,0,11.1025,10.5000,53700 +6,4,0,10.8476,10.4145,24415 +7,4,0,12.4110,11.8848,15407 +8,4,0,12.8324,12.3667,12151 +9,4,0,10.9581,10.5176,11449 +10,4,0,11.2247,10.7572,8599 +11,4,0,11.1110,10.6033,6107 +12,4,0,10.9895,10.5010,5132 +13,4,0,10.9769,10.5602,3880 +14,4,0,11.6500,10.6594,4001 +15,4,0,11.5263,10.8385,3860 +16,4,0,11.6654,10.9611,4045 +17,4,0,11.6533,10.9760,3955 +18,4,0,11.7022,10.9522,3721 +19,4,0,12.0612,11.3546,3748 +20,4,0,13.1252,10.5360,3386 +21,4,0,13.3325,10.9353,2761 +22,4,0,13.2052,10.9683,2750 +23,4,0,13.1080,10.9105,2836 +24,4,0,13.9625,11.5345,2977 +25,4,0,13.1478,11.1497,2960 +26,4,0,13.4499,11.2528,3010 +27,4,0,12.7223,11.3844,2978 +28,4,0,13.1079,10.7917,2889 +29,4,0,12.8663,10.7314,2914 +30,4,0,12.9383,10.6900,2847 +31,4,0,13.4166,11.3287,3111 +32,4,0,13.3588,11.2242,2714 +33,4,0,12.5665,10.8268,2843 +34,4,0,12.3665,11.1749,2633 +35,4,0,15.1380,11.0256,2659 +36,4,0,12.9641,11.2740,2696 +37,4,0,13.0581,10.7294,2728 +38,4,0,12.8177,10.7156,2772 +39,4,0,12.8205,10.7082,2740 +40,4,0,14.3087,12.3115,2809 +41,4,0,13.8759,11.8375,2679 +42,4,0,13.3564,11.2578,2865 +43,4,0,12.5982,11.0468,2612 +44,4,0,12.8571,11.3050,2626 +45,4,0,13.2493,11.1549,2693 +46,4,0,13.3439,11.5558,2708 +47,4,0,13.0942,11.4947,2765 +48,4,0,13.5320,10.8184,2645 +49,4,0,13.1898,10.9247,2733 +50,4,0,13.1747,11.1352,2667 +51,4,0,13.1026,11.4877,2647 +52,4,0,11.6840,10.5530,2659 +53,4,0,12.2729,10.2473,2757 +54,4,0,12.1356,10.7354,2656 +55,4,0,12.1969,10.3449,2594 +56,4,0,12.0835,10.3877,2603 +57,4,0,11.8850,10.6820,2605 +58,4,0,12.7040,11.2308,2610 +59,4,0,12.9457,10.8761,2641 +60,4,0,12.5403,10.8948,442009 +61,4,0,13.6832,11.5482,52997 +62,4,0,13.7103,11.8070,26956 +63,4,0,12.5760,10.8905,26939 +64,4,0,13.8807,10.9478,22402 +65,4,0,12.6934,11.1541,15271 +66,4,0,13.0793,10.7735,12647 +67,4,0,13.0438,10.7801,10161 +68,4,0,12.9637,10.8360,9695 +69,4,0,14.2508,10.0118,5893 +70,4,0,12.8410,11.2840,5590 +71,4,0,13.0730,10.9359,5226 +72,4,0,12.8105,10.8573,5095 +73,4,0,13.1382,11.3739,5164 +74,4,0,13.2174,11.3891,4634 +75,4,0,13.0417,11.1286,5338 +76,4,0,13.5859,11.4842,2984 +77,4,0,13.0361,11.5857,2918 +78,4,0,13.1738,10.7441,3051 +79,4,0,13.1762,11.4105,3217 +80,4,0,13.3637,10.9507,3680 +81,4,0,12.7250,10.5967,3433 +82,4,0,12.8240,11.3422,3891 +83,4,0,12.8780,11.2131,2978 +84,4,0,13.3766,11.8188,2906 +85,4,0,13.2027,11.4839,2925 +86,4,0,12.6328,10.8891,3487 +87,4,0,12.6482,10.9628,2969 +88,4,0,12.9183,10.8529,2822 +89,4,0,13.1961,11.3229,3027 +90,4,0,13.3849,11.1078,2708 +91,4,0,12.8808,10.8664,2735 +92,4,0,13.5088,11.4245,2688 +93,4,0,12.4951,10.5438,2954 +94,4,0,12.6246,11.6360,3013 +95,4,0,12.7331,11.1370,2878 +96,4,0,13.4047,10.7243,3036 +97,4,0,13.2618,11.1844,2909 +98,4,0,12.8707,11.0338,2598 +99,4,0,12.7987,10.6950,2609 +100,4,0,13.4139,11.2234,2615 +101,4,0,14.1325,11.8476,2652 +102,4,0,12.5055,10.7290,2667 +103,4,0,13.1105,10.9526,2728 +104,4,0,12.9932,11.1288,2632 +105,4,0,12.9652,11.3380,2620 +106,4,0,24.1851,22.4904,2603 +107,4,0,12.7490,10.4691,2633 +108,4,0,11.8869,11.2273,2885 +109,4,0,12.1871,11.3852,2631 +110,4,0,13.0631,10.1965,2679 +111,4,0,12.0357,11.1593,2594 +112,4,0,11.8692,11.0920,2610 +113,4,0,12.4350,11.6972,2618 +114,4,0,11.9461,10.5800,2639 +115,4,0,12.3566,10.7534,2683 +116,4,0,12.0586,10.5303,2662 +117,4,0,12.0042,10.5323,2669 +118,4,0,13.5819,10.6387,2661 +119,4,0,11.9084,10.3957,2767 +120,4,0,12.6200,10.4684,412099 +121,4,0,13.2111,10.8000,58619 +122,4,0,13.6090,10.5546,48033 +123,4,0,12.8758,11.7061,38505 +124,4,0,11.5899,10.6699,33624 +125,4,0,11.7775,10.2763,18519 +126,4,0,11.7260,10.8431,15662 +127,4,0,12.0381,10.3184,11727 +128,4,0,11.8434,10.2381,10164 +129,4,0,12.5576,10.7649,8732 +130,4,0,12.6600,11.0907,8017 +131,4,0,11.8762,10.1493,5177 +132,4,0,11.6544,10.7393,3438 +133,4,0,12.7824,10.8632,3236 +134,4,0,12.7007,10.7037,3208 +135,4,0,12.9602,11.1337,3684 +136,4,0,13.3447,11.5520,3691 +137,4,0,13.1763,10.7383,3794 +138,4,0,12.9841,10.9018,3974 +139,4,0,12.7099,10.8260,3178 +140,4,0,13.3571,11.1626,3070 +141,4,0,12.4533,11.0657,3397 +142,4,0,12.8483,11.0560,2792 +143,4,0,13.0214,10.9727,2888 +144,4,0,12.9230,11.1440,2885 +145,4,0,13.1728,11.2172,3092 +146,4,0,13.2287,9.3020,2712 +147,4,0,12.9726,11.3209,2692 +148,4,0,13.2500,10.5366,2781 +149,4,0,12.8092,10.7512,2731 +150,4,0,13.0773,10.8093,2815 +151,4,0,12.4959,10.7043,2761 +152,4,0,13.2483,11.3602,3174 +153,4,0,12.7561,10.9268,2599 +154,4,0,11.7927,10.9503,2594 +155,4,0,11.5111,10.4570,2600 +156,4,0,12.1975,10.8356,2646 +157,4,0,11.9329,10.3779,2717 +158,4,0,11.9751,10.2157,2764 +159,4,0,12.1365,10.5716,2916 +160,4,0,11.9354,10.4213,2625 +161,4,0,11.8530,10.7619,2618 +162,4,0,12.9174,10.8840,2617 +163,4,0,13.5213,11.5985,2801 +164,4,0,14.0867,10.7294,2641 +165,4,0,12.5912,10.4911,2631 +166,4,0,12.6047,10.7911,2755 +167,4,0,12.9751,10.7215,2594 +168,4,0,14.0405,12.0836,2611 +169,4,0,13.0117,11.2393,2613 +170,4,0,12.8498,11.2925,2654 +171,4,0,13.2470,10.9029,2706 +172,4,0,12.6153,10.9005,2658 +173,4,0,13.3781,10.4383,2713 +174,4,0,12.9333,10.7320,2681 +175,4,0,12.9563,11.2161,2588 +176,4,0,12.3008,10.8063,2584 +177,4,0,11.9116,10.3511,3726 +178,4,0,11.9341,10.1630,3913 +179,4,0,12.1799,10.6547,3241 +180,4,0,116.7701,34.7530,231707 +181,4,0,11.3176,10.7975,65901 +182,4,0,11.3659,10.8703,36886 +183,4,0,11.2714,10.8013,69404 +184,4,0,11.4004,10.8900,87864 +185,4,0,11.4180,10.8721,53700 +186,4,0,11.2079,10.7491,24415 +187,4,0,11.3812,10.8782,15407 +188,4,0,11.2675,10.7472,12151 +189,4,0,11.6554,11.1177,11449 +190,4,0,12.0223,11.4570,8599 +191,4,0,12.0173,11.3646,6107 +192,4,0,12.0238,11.3379,5132 +193,4,0,12.0030,11.3395,3880 +194,4,0,12.3589,11.5835,4001 +195,4,0,13.3887,11.1356,3860 +196,4,0,14.5808,12.6550,4045 +197,4,0,14.3048,12.6319,3955 +198,4,0,13.0524,11.2104,3721 +199,4,0,13.4940,10.3602,3748 +200,4,0,14.7553,13.1374,3386 +201,4,0,13.4503,11.8335,2761 +202,4,0,13.5868,11.0389,2750 +203,4,0,13.2858,11.2942,2836 +204,4,0,13.0547,11.6392,2977 +205,4,0,13.0938,11.1815,2960 +206,4,0,13.3432,11.7116,3010 +207,4,0,13.6194,11.9860,2978 +208,4,0,13.5692,11.0310,2889 +209,4,0,13.3767,11.6683,2914 +210,4,0,12.8637,11.1812,2847 +211,4,0,12.3305,11.3980,3111 +212,4,0,12.8719,11.9115,2714 +213,4,0,13.6372,11.4078,2843 +214,4,0,18.6806,16.9341,2633 +215,4,0,13.2300,10.7909,2659 +216,4,0,12.9970,11.2758,2696 +217,4,0,13.8045,12.7170,2728 +218,4,0,12.7301,11.4053,2772 +219,4,0,12.5935,11.6698,2740 +220,4,0,13.7240,12.2347,2809 +221,4,0,12.8042,11.1067,2679 +222,4,0,12.8980,11.3636,2865 +223,4,0,13.1522,10.8401,2612 +224,4,0,12.8417,11.1472,2626 +225,4,0,13.5103,11.3963,2693 +226,4,0,13.3555,11.7688,2708 +227,4,0,13.1273,11.2064,2765 +228,4,0,13.2867,11.1803,2645 +229,4,0,13.5937,11.1657,2733 +230,4,0,16.0288,14.1373,2667 +231,4,0,12.0798,11.2443,2647 +232,4,0,12.3827,11.4871,2659 +233,4,0,11.8277,11.1632,2757 +234,4,0,12.0104,11.3187,2656 +235,4,0,11.9442,11.1341,2594 +236,4,0,14.5382,12.6080,2603 +237,4,0,12.7835,10.4621,2605 +238,4,0,11.7566,10.7988,2610 +239,4,0,12.4408,10.5126,2641 +240,4,0,12.1672,10.5087,442009 +241,4,0,12.2962,10.5526,52997 +242,4,0,12.6611,10.8387,26956 +243,4,0,14.3160,11.9449,26939 +244,4,0,12.8474,11.8420,22402 +245,4,0,13.4005,11.7220,15271 +246,4,0,13.3729,11.0395,12647 +247,4,0,13.7275,11.6914,10161 +248,4,0,14.9693,13.2290,9695 +249,4,0,13.5441,11.6270,5893 +250,4,0,13.3449,11.1341,5590 +251,4,0,13.8175,10.4187,5226 +252,4,0,14.3602,10.3611,5095 +253,4,0,13.4387,10.2563,5164 +254,4,0,12.8628,10.6032,4634 +255,4,0,13.1935,10.7416,5338 +256,4,0,12.8754,10.9790,2984 +257,4,0,13.1279,10.7047,2918 +258,4,0,13.2528,11.3138,3051 +259,4,0,13.9650,10.7423,3217 +260,4,0,13.0626,10.8157,3680 +261,4,0,13.0505,10.8723,3433 +262,4,0,13.1992,11.5951,3891 +263,4,0,13.2799,11.2148,2978 +264,4,0,13.0543,10.8497,2906 +265,4,0,13.4496,10.9533,2925 +266,4,0,13.3165,11.3948,3487 +267,4,0,13.2816,11.1163,2969 +268,4,0,14.7098,8.9853,2822 +269,4,0,13.2945,11.7688,3027 +270,4,0,13.6824,11.5270,2708 +271,4,0,13.4276,11.1759,2735 +272,4,0,13.1090,11.0648,2688 +273,4,0,12.4247,10.9004,2954 +274,4,0,12.8768,11.6472,3013 +275,4,0,12.9561,11.3355,2878 +276,4,0,13.3275,10.8849,3036 +277,4,0,13.2724,10.9125,2909 +278,4,0,13.0525,11.0715,2598 +279,4,0,12.9558,11.3667,2609 +280,4,0,13.0800,11.1273,2615 +281,4,0,13.0244,11.2529,2652 +282,4,0,13.7314,10.5285,2667 +283,4,0,12.9244,10.7020,2728 +284,4,0,13.0070,11.6008,2632 +285,4,0,13.1143,10.8198,2620 +286,4,0,13.2517,11.2845,2603 +287,4,0,14.0549,11.4109,2633 +288,4,0,13.0868,11.0682,2885 +289,4,0,13.0943,11.3877,2631 +290,4,0,12.8787,11.1236,2679 +291,4,0,12.9049,10.9533,2594 +292,4,0,13.2370,10.9656,2610 +293,4,0,13.0382,10.7895,2618 +294,4,0,14.4102,12.2828,2639 +295,4,0,13.1052,10.8374,2683 +296,4,0,13.2296,11.3224,2662 +297,4,0,13.2694,10.7978,2669 +298,4,0,20.2515,10.5494,2661 +299,4,0,11.6830,10.7727,2767 +300,4,0,11.5919,10.1597,412099 +301,4,0,12.0989,10.6985,58619 +302,4,0,12.0489,10.4263,48033 +303,4,0,12.0639,10.7568,38505 +304,4,0,12.6322,10.5263,33624 +305,4,0,14.7578,13.3161,18519 +306,4,0,12.9087,11.1707,15662 +307,4,0,13.0013,10.8045,11727 +308,4,0,14.2675,11.9062,10164 +309,4,0,12.8628,10.9515,8732 +310,4,0,13.5794,11.4618,8017 +311,4,0,12.9767,11.4080,5177 +312,4,0,12.7913,11.0890,3438 +313,4,0,12.8642,10.8926,3236 +314,4,0,13.1097,10.4811,3208 +315,4,0,12.7899,10.9304,3684 +316,4,0,12.6851,10.8723,3691 +317,4,0,13.1128,10.6604,3794 +318,4,0,13.3449,10.6533,3974 +319,4,0,13.1353,11.1820,3178 +320,4,0,12.9002,10.9643,3070 +321,4,0,12.9238,10.7603,3397 +322,4,0,16.0468,12.9740,2792 +323,4,0,13.1469,11.6558,2888 +324,4,0,12.7130,11.3038,2885 +325,4,0,12.9958,11.1093,3092 +326,4,0,12.8074,10.9217,2712 +327,4,0,13.6823,11.3039,2692 +328,4,0,12.9695,11.2661,2781 +329,4,0,13.0998,11.2702,2731 +330,4,0,13.2133,10.8511,2815 +331,4,0,12.8199,11.0393,2761 +332,4,0,13.1348,11.2125,3174 +333,4,0,12.9505,10.3796,2599 +334,4,0,12.8698,11.1961,2594 +335,4,0,13.2094,11.5430,2600 +336,4,0,13.1571,10.8247,2646 +337,4,0,12.9497,10.8628,2717 +338,4,0,13.1145,9.7325,2764 +339,4,0,12.7605,11.0695,2916 +340,4,0,13.6264,11.5712,2625 +341,4,0,13.6665,11.0013,2618 +342,4,0,12.9168,10.7297,2617 +343,4,0,13.0020,10.9224,2801 +344,4,0,12.8617,10.9850,2641 +345,4,0,13.0888,11.3128,2631 +346,4,0,13.1873,11.1013,2755 +347,4,0,12.9371,10.8752,2594 +348,4,0,12.9700,10.7677,2611 +349,4,0,13.7018,11.8289,2613 +350,4,0,13.0552,10.8190,2654 +351,4,0,13.0120,10.8473,2706 +352,4,0,12.9649,10.9690,2658 +353,4,0,12.8745,11.1144,2713 +354,4,0,12.8955,11.1918,2681 +355,4,0,12.9417,11.0316,2594 +356,4,0,13.1422,10.4755,2594 +357,4,0,12.7460,11.0909,2599 +358,4,0,14.2962,11.9596,2615 +359,4,0,16.7925,14.8283,2631 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.csv new file mode 100644 index 0000000..84da868 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0495,30.8057,0.0192,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8197,27.5926,0.0143,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8818,29.0447,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8368,27.3525,0.0179,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0495,5.9224,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8197,5.7409,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8818,10.8138,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8368,10.8163,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.0495,5.7093,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8197,5.7382,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8818,10.7635,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8368,10.7957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.0495,5.7402,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8197,5.6595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8818,10.7145,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8368,10.7314,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.0495,5.7482,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8197,5.7215,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8818,10.6575,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8368,10.6544,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.0495,6.0458,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8197,5.9221,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8818,11.0349,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8368,11.0102,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.0495,5.9083,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8197,5.8065,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8818,10.8306,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8368,10.7908,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.0495,5.9412,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8197,5.8720,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8818,10.8900,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8368,10.8739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.0495,5.8235,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8197,5.7613,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8818,10.6639,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8368,10.6085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.0495,5.9266,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8197,5.9252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8818,11.0685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8368,11.0801,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.0495,6.2864,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8197,6.0910,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8818,11.2448,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8368,11.1951,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.0495,6.2327,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8197,6.1262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8818,11.2415,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8368,11.2013,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.0495,6.2891,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8197,6.1645,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8818,11.3401,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8368,11.3368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.0495,6.3197,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8197,6.1253,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8818,11.2033,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8368,11.1495,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.0495,6.2113,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8197,6.1429,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8818,11.1841,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8368,11.1710,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.0495,6.3636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8197,6.1995,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8818,12.3185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8368,11.8557,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.0495,7.3443,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8197,6.6600,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8818,11.6782,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8368,11.3490,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.0495,8.0844,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8197,7.1751,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8818,12.5776,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8368,13.3796,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.0495,7.4669,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8197,6.3201,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8818,12.0573,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8368,11.6093,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.0495,7.3618,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8197,6.9448,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8818,6.8281,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8368,11.1539,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.0495,6.7950,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8197,6.3870,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8818,11.7558,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8368,11.6825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.0495,6.6247,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8197,6.3209,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8818,11.6482,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8368,11.5912,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.0495,6.5781,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8197,6.3442,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8818,12.0482,0.0201,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8368,11.8665,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.0495,7.7685,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8197,6.7807,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8818,12.5204,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8368,12.0646,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.0495,7.3987,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8197,6.4485,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8818,11.8857,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8368,12.2091,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.0495,7.8706,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8197,6.3838,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8818,10.3930,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8368,10.8010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.0495,7.8227,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8197,6.2200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8818,10.8933,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8368,10.5699,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.0495,7.2434,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8197,6.3172,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8818,11.3947,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8368,10.4863,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.0495,6.7061,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8197,6.3552,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8818,9.1447,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8368,10.6076,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.0495,7.0178,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8197,6.2105,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8818,11.2040,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8368,10.9680,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.0495,7.2781,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8197,6.3906,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8818,10.7247,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8368,10.7567,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.0495,7.2270,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8197,6.3959,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8818,11.0186,0.0415,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8368,10.8754,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.0495,7.3662,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8197,6.5862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8818,10.9388,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8368,10.7436,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.0495,7.4245,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8197,6.3782,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8818,11.1811,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8368,10.9575,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.0495,7.9207,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8197,6.6032,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8818,11.3814,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8368,11.3177,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0495,7.3845,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8197,6.3647,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8818,11.1318,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8368,10.9203,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0495,7.6867,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8197,6.4078,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8818,10.9251,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8368,10.9660,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.0495,7.3243,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8197,6.3653,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8818,13.1101,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8368,12.7046,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.0495,7.4333,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8197,6.4742,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8818,12.6221,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8368,12.3606,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.0495,7.5068,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8197,6.6973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8818,11.2888,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8368,11.2165,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.0495,7.5077,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8197,6.5640,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8818,11.1289,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8368,10.9758,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.0495,7.9249,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8197,6.6829,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8818,11.5188,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8368,11.4030,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.0495,7.5810,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8197,6.3629,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8818,10.9838,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8368,10.9012,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.0495,7.2805,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8197,6.2571,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8818,11.0715,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8368,10.8862,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.0495,7.4342,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8197,6.3904,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8818,11.4819,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8368,11.4649,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.0495,7.2552,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8197,6.3730,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8818,10.9068,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8368,10.8043,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.0495,6.8162,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8197,6.2026,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8818,11.0193,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8368,10.8696,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.0495,5.8345,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8197,5.6070,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8818,10.3805,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8368,10.3646,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.0495,5.7777,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8197,5.5945,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8818,10.7640,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8368,10.6810,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0495,5.9079,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8197,5.7701,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8818,10.8288,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8368,10.8117,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.0495,5.6612,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8197,5.5405,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8818,10.4514,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8368,10.4428,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.0495,5.8862,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8197,5.6343,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8818,10.5157,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8368,10.4857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.0495,5.8654,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8197,5.6350,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8818,10.5968,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8368,10.4671,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.0495,5.8118,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8197,5.5951,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8818,10.4594,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8368,10.3899,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.0495,6.2835,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8197,5.9110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8818,10.4936,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8368,10.5250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.0495,5.7448,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8197,5.6639,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8818,10.6470,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8368,10.6494,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0495,5.7579,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8197,5.6885,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8818,10.4540,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8368,10.5666,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.0495,5.8545,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8197,5.7085,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8818,10.5489,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8368,10.4846,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.0495,5.9627,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8197,5.7971,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8818,10.5662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8368,10.5102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.0495,6.2969,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8197,5.8319,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8818,10.6312,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8368,10.4639,0.0262,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.0495,6.6867,0.1317,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8197,6.0504,0.0756,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8818,10.6189,0.0584,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.8368,10.2255,0.0924,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.0495,7.1644,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8197,6.3644,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8818,10.9346,0.0445,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.8368,10.8487,0.0260,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.0495,7.1572,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8197,6.2532,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8818,10.6811,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.8368,10.6069,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.0495,7.2225,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8197,6.3148,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8818,10.6691,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.8368,10.8193,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.0495,7.0277,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8197,6.2700,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8818,12.0362,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.8368,11.6940,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.0495,7.3513,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8197,6.3477,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8818,13.0049,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.8368,12.7456,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.0495,8.7113,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8197,7.3420,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8818,11.9853,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.8368,11.7303,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.0495,8.1533,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8197,6.3648,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8818,10.4755,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.8368,9.8786,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.0495,7.5989,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8197,6.6403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8818,11.5366,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.8368,11.4705,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.0495,7.5866,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8197,6.4901,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8818,11.4651,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.8368,10.0389,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.0495,8.8123,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8197,6.3418,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8818,14.7112,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.8368,14.7006,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.0495,7.4638,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8197,6.3524,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8818,10.9019,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.8368,10.5831,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.0495,7.2142,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8197,6.1160,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8818,11.0679,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.8368,10.9262,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.0495,7.7402,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8197,6.7138,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8818,11.1284,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.8368,10.9894,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.0495,7.5533,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8197,6.3666,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8818,10.9723,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.8368,10.8994,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.0495,7.2531,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8197,6.2656,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8818,11.2450,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.8368,11.1970,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.0495,6.5721,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8197,5.9672,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8818,9.3942,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.8368,9.9186,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.0495,6.3238,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8197,5.8735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8818,10.1675,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8368,10.2917,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.0495,6.2521,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8197,5.8072,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8818,10.4078,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.8368,10.3293,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.0495,6.8530,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8197,6.0009,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8818,10.7411,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.8368,10.3942,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.0495,6.4155,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8197,5.8876,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8818,10.1775,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.8368,10.0333,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.0495,6.4286,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8197,5.8681,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8818,9.8565,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.8368,10.0090,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.0495,6.1943,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8197,5.7475,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8818,10.9259,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.8368,10.7199,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.0495,6.2620,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8197,5.9024,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8818,10.0908,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.8368,10.0714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.0495,6.7137,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8197,5.9934,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8818,11.0389,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.8368,10.8559,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.0495,6.6767,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8197,6.1092,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8818,10.5525,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.8368,10.3769,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.0495,6.6221,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8197,6.0685,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8818,10.8485,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.8368,9.9820,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.0495,6.7757,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8197,6.2825,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8818,10.8541,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.8368,10.5777,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.0495,6.8280,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8197,6.2307,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8818,10.7201,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.8368,10.4305,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.0495,7.0332,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8197,6.2975,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8818,10.7362,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.8368,10.6267,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.0495,7.3893,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8197,6.2516,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8818,11.2919,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.8368,11.0655,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.0495,7.2530,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8197,6.3026,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8818,10.8297,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.8368,10.9200,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.0495,7.5980,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8197,6.3395,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8818,10.6315,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.8368,10.5969,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.0495,7.0757,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8197,6.6599,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8818,10.5381,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.8368,10.7903,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.0495,7.3598,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8197,6.3581,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8818,12.5322,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.8368,12.3242,0.0310,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.0495,7.4573,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8197,6.1860,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8818,14.1613,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.8368,13.9317,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.0495,7.1707,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8197,6.1917,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8818,12.6015,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.8368,12.5870,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.0495,7.3703,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8197,6.5325,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8818,16.8148,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.8368,16.2018,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.0495,7.4050,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8197,6.4418,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8818,11.1858,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8368,10.8852,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.0495,7.0701,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8197,6.3019,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8818,11.6149,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8368,11.3572,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.0495,7.3360,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8197,6.3275,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8818,11.0066,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8368,10.6186,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.0495,6.7693,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8197,6.1198,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8818,10.5243,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.8368,10.3187,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.0495,6.3373,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8197,5.8104,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8818,10.7470,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.8368,10.5566,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.0495,7.2482,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8197,6.7852,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8818,10.0232,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.8368,6.8525,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.0495,6.3105,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8197,5.8184,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8818,10.3391,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.8368,10.0770,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.0495,6.3016,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8197,5.7273,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8818,10.1884,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.8368,10.5084,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.0495,7.2589,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8197,6.6381,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8818,10.6163,0.0528,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.8368,10.4274,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.0495,6.0527,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8197,5.6986,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8818,10.5560,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.8368,10.3957,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.0495,6.1243,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8197,5.7696,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8818,10.4315,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.8368,10.2520,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.0495,6.0846,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8197,5.7366,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8818,10.6395,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8368,10.4848,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.0495,6.4195,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8197,5.8747,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8818,10.5521,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8368,9.8987,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.0495,6.0164,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8197,5.5978,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8818,11.0823,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8368,10.7068,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.0495,6.4707,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8197,5.8577,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8818,10.6992,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.8368,10.5973,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.0495,10.8052,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8197,10.0134,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8818,10.1012,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.8368,10.0516,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.0495,6.1588,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8197,5.7042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8818,10.2663,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.8368,9.6631,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.0495,6.4626,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8197,6.4648,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8818,10.5205,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.8368,10.2233,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.0495,6.4337,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8197,6.9339,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8818,10.3067,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.8368,9.8067,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.0495,6.8027,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8197,6.0121,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8818,10.4561,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.8368,8.8850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.0495,7.2652,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8197,6.4416,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8818,10.9352,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.8368,10.6120,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.0495,7.4185,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8197,6.4698,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8818,10.3238,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.8368,10.3429,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.0495,7.2039,0.0460,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8197,6.0907,0.0295,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8818,10.7069,0.0224,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.8368,10.5427,0.0461,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.0495,7.0008,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8197,6.3213,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8818,10.7738,0.0459,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.8368,10.3876,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.0495,7.1314,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8197,6.3417,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8818,10.9135,0.0458,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.8368,10.6110,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.0495,7.4099,0.0493,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8197,6.3450,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8818,12.1719,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.8368,12.4524,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.0495,7.1080,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8197,6.3960,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8818,11.1998,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.8368,11.1293,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.0495,7.0357,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8197,6.2553,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8818,11.1402,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.8368,10.9821,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.0495,6.8061,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8197,6.3182,0.0164,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8818,11.2035,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.8368,11.0831,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.0495,6.5650,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8197,6.1014,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8818,9.9065,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.8368,9.8956,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.0495,6.4854,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8197,5.9268,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8818,10.3711,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.8368,10.0930,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.0495,6.4688,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8197,5.9646,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8818,11.0997,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.8368,10.7891,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.0495,6.6430,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8197,6.0669,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8818,10.5148,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.8368,10.7634,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.0495,9.1185,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8197,7.6652,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8818,11.3092,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.8368,11.0827,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.0495,7.2012,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8197,6.1963,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8818,11.1236,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.8368,10.9684,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.0495,7.1519,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8197,6.3053,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8818,10.6333,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.8368,10.7065,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.0495,7.1072,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8197,6.2299,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8818,10.5032,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.8368,10.6300,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.0495,6.9155,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8197,6.2340,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8818,11.0518,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.8368,10.7528,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.0495,7.4638,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8197,6.4543,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8818,11.2014,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.8368,11.2122,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.0495,7.1398,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8197,6.4204,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8818,10.6680,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.8368,10.7570,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.0495,6.9337,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8197,6.2692,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8818,10.7272,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.8368,10.7810,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.0495,6.9196,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8197,6.2357,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8818,10.7071,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.8368,10.9441,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.0495,6.9111,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8197,6.2470,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8818,10.7429,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.8368,10.5198,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0495,7.1565,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8197,6.3587,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8818,10.8362,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.8368,10.7089,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.0495,6.8153,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8197,6.2170,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8818,11.1928,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8368,10.9390,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.0495,6.8143,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8197,6.4794,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8818,9.9754,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8368,9.8054,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.0495,7.7438,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8197,6.8399,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8818,10.9015,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.8368,10.8589,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.0495,7.1244,0.0590,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8197,6.2612,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8818,10.6545,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.8368,10.6288,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.0495,7.1190,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8197,6.2291,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8818,10.6629,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.8368,10.7822,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.0495,6.8269,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8197,6.2289,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8818,10.5196,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.8368,10.4809,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0495,7.0896,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8197,6.2183,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8818,10.9310,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.8368,10.7495,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.0495,6.8197,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8197,6.2587,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8818,7.9615,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.8368,10.3038,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.0495,8.3272,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8197,7.4348,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8818,10.8727,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.8368,10.5913,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.0495,7.1039,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8197,6.2467,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8818,9.8420,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.8368,10.6357,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.0495,6.7979,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8197,6.1896,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8818,10.8597,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.8368,10.5675,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.0495,6.8919,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8197,6.2067,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8818,10.7556,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8368,10.3578,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.0495,6.7686,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8197,6.2534,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8818,11.0458,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8368,10.7500,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.0495,8.0725,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8197,6.0747,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8818,10.3174,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8368,10.6743,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.0495,6.9490,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8197,6.2315,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8818,10.7021,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.8368,10.7033,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.0495,6.8658,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8197,6.2507,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8818,10.7514,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.8368,10.7601,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.0495,7.1572,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8197,6.2964,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8818,10.5374,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.8368,10.6113,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.0495,6.8863,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8197,6.1489,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8818,10.2782,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.8368,10.2713,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.0495,7.0409,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8197,6.2749,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8818,10.5829,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.8368,11.8123,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.0495,7.0302,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8197,6.2473,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8818,10.7696,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.8368,10.8234,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.0495,6.9526,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8197,6.2362,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8818,10.6480,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.8368,10.8213,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.0495,6.8423,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8197,6.2557,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8818,10.9570,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.8368,10.8118,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.0495,6.9319,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8197,6.2368,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8818,12.5015,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.8368,12.1275,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.0495,7.0876,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8197,6.3383,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8818,11.4080,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8368,11.2998,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.0495,6.7791,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8197,5.8950,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8818,10.6694,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8368,10.6390,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.0495,5.9702,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8197,5.7363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8818,10.4588,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8368,10.3689,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.0495,6.1722,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8197,5.8810,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8818,10.5475,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.8368,10.4080,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.0495,6.2510,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8197,5.9090,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8818,10.5591,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.8368,10.5135,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.0495,6.4011,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8197,6.1253,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8818,10.5785,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.8368,10.2952,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.0495,6.2170,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8197,5.8721,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8818,9.6462,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.8368,9.9127,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.0495,6.7810,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8197,6.2142,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8818,11.0235,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.8368,11.1902,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.0495,6.8825,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8197,6.3170,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8818,10.6115,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.8368,10.4144,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.0495,6.7458,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8197,5.9926,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8818,10.5581,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.8368,10.4194,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.0495,6.6418,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.8197,5.9612,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8818,10.2735,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8368,10.3045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.0495,6.4814,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.8197,5.9279,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8818,10.1786,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8368,10.2106,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.0495,6.8212,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.8197,6.0412,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8818,10.4360,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8368,10.4944,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,5.0495,6.8984,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.8197,6.2962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8818,10.7308,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8368,11.0702,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,5.0495,7.4171,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.8197,6.3022,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8818,11.0020,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,2.8368,10.5772,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,5.0495,46.5544,0.0151,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8197,6.0607,0.0161,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +722,2.8818,6.1370,0.0400,0.0000,0,0,0.0000,0,0.0000,0,1,0,122966,0 +723,2.8368,10.5808,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,124843,0 +724,5.0495,6.2172,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8197,6.0532,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +726,2.8818,11.0036,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,20850,0 +727,2.8368,10.9536,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6793,0 +728,5.0495,6.0716,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8197,5.9925,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +730,2.8818,10.9446,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,16820,0 +731,2.8368,10.9322,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,10681,0 +732,5.0495,6.1330,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8197,5.9715,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +734,2.8818,10.9645,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,10076,0 +735,2.8368,10.9433,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7736,0 +736,5.0495,6.1024,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8197,5.9778,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +738,2.8818,11.0029,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,7393,0 +739,2.8368,10.9205,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +740,5.0495,6.6038,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8197,6.2230,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +742,2.8818,11.5216,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6646,0 +743,2.8368,11.1926,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6074,0 +744,5.0495,6.3216,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8197,6.1214,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +746,2.8818,11.2046,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +747,2.8368,11.0910,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4205,0 +748,5.0495,6.3584,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8197,6.1125,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +750,2.8818,11.4757,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +751,2.8368,11.2862,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,4629,0 +752,5.0495,7.0438,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8197,6.3177,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +754,2.8818,11.5403,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1974,0 +755,2.8368,11.5629,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +756,5.0495,7.1768,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8197,6.6010,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +758,2.8818,9.0755,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +759,2.8368,12.2404,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +760,5.0495,7.3646,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8197,6.5495,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +762,2.8818,11.2133,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +763,2.8368,10.9527,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +764,5.0495,6.7838,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8197,6.1167,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +766,2.8818,11.0462,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1656,0 +767,2.8368,10.7322,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +768,5.0495,6.9146,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8197,6.2292,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +770,2.8818,10.9849,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +771,2.8368,10.8785,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1847,0 +772,5.0495,7.0367,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8197,6.2268,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +774,2.8818,10.8485,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +775,2.8368,10.8887,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +776,5.0495,7.0540,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8197,6.3109,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +778,2.8818,10.6923,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1428,0 +779,2.8368,10.6460,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +780,5.0495,7.3245,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8197,6.4976,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8818,11.3660,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1266,0 +783,2.8368,11.0973,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.0495,6.7950,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8197,6.1539,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8818,10.3151,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1716,0 +787,2.8368,9.8833,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +788,5.0495,7.2169,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8197,6.2527,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8818,10.9062,0.0780,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +791,2.8368,10.3308,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +792,5.0495,7.1012,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8197,6.2350,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8818,10.8337,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +795,2.8368,10.5902,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +796,5.0495,6.9405,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8197,6.3124,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8818,10.5699,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +799,2.8368,10.6679,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +800,5.0495,7.1400,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8197,6.1855,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8818,10.8194,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +803,2.8368,10.8176,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +804,5.0495,6.7670,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8197,6.0572,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8818,10.2272,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +807,2.8368,10.3543,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +808,5.0495,6.5312,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8197,6.1980,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8818,11.4593,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +811,2.8368,11.3660,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +812,5.0495,8.5764,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8197,6.7242,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8818,11.2261,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +815,2.8368,10.9543,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +816,5.0495,7.1695,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8197,6.2873,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8818,11.0579,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1086,0 +819,2.8368,10.6906,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +820,5.0495,7.1677,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8197,6.6479,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +822,2.8818,11.4989,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,922,0 +823,2.8368,11.4165,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +824,5.0495,7.0983,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8197,6.2288,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +826,2.8818,10.4090,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +827,2.8368,10.6887,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +828,5.0495,7.0380,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8197,6.1948,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +830,2.8818,10.7693,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +831,2.8368,10.7731,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,940,0 +832,5.0495,7.1364,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8197,6.2400,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +834,2.8818,10.6818,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,2.8368,10.7933,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +836,5.0495,7.0443,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8197,6.2138,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +838,2.8818,10.7266,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8368,10.9085,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +840,5.0495,7.8500,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8197,56.2219,0.0157,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +842,2.8818,6.3962,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +843,2.8368,6.3195,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.0495,6.1066,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8197,6.0675,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +846,2.8818,10.9945,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +847,2.8368,10.9778,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +848,5.0495,6.1450,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8197,6.0360,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +850,2.8818,10.9950,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +851,2.8368,10.9778,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +852,5.0495,6.2223,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8197,6.0500,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +854,2.8818,11.0070,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +855,2.8368,10.9992,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +856,5.0495,6.0789,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8197,6.0286,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +858,2.8818,10.9099,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +859,2.8368,10.9212,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +860,5.0495,6.1035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8197,6.0697,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +862,2.8818,11.0218,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +863,2.8368,10.9778,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,986,0 +864,5.0495,6.2747,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8197,6.0938,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +866,2.8818,11.1312,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +867,2.8368,11.0835,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +868,5.0495,6.4364,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8197,6.1813,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +870,2.8818,11.1948,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +871,2.8368,10.9995,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +872,5.0495,6.8516,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8197,6.1951,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +874,2.8818,11.0633,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +875,2.8368,10.9560,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +876,5.0495,7.0767,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8197,6.3222,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +878,2.8818,10.9008,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +879,2.8368,12.0189,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +880,5.0495,8.8195,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8197,6.2793,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +882,2.8818,10.6242,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.8368,10.9574,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +884,5.0495,6.9282,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8197,6.2857,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +886,2.8818,10.8470,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.8368,10.2995,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +888,5.0495,7.0054,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8197,6.3079,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +890,2.8818,10.9380,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.8368,10.8583,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +892,5.0495,6.8464,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8197,6.3262,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +894,2.8818,11.1746,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +895,2.8368,10.9812,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +896,5.0495,6.8593,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8197,6.2787,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +898,2.8818,10.3737,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +899,2.8368,10.7121,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +900,5.0495,7.2823,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8197,6.6176,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +902,2.8818,12.4809,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +903,2.8368,13.5196,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +904,5.0495,7.5923,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8197,6.5952,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +906,2.8818,10.7006,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +907,2.8368,10.8112,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +908,5.0495,7.0604,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8197,6.3783,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +910,2.8818,10.7179,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +911,2.8368,10.6951,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +912,5.0495,6.9991,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8197,6.2317,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +914,2.8818,10.8172,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +915,2.8368,10.5509,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +916,5.0495,6.9777,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8197,6.4838,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +918,2.8818,10.1580,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +919,2.8368,10.5668,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +920,5.0495,7.3016,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8197,6.4427,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +922,2.8818,10.8145,0.0284,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8368,10.7746,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +924,5.0495,6.8934,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8197,6.3526,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +926,2.8818,9.0253,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8368,8.2169,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +928,5.0495,6.5715,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8197,6.1107,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +930,2.8818,11.5525,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8368,11.3266,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +932,5.0495,7.2880,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8197,6.3626,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +934,2.8818,10.9333,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.8368,10.8949,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +936,5.0495,11.1442,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8197,6.4518,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +938,2.8818,8.3244,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8368,10.1202,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +940,5.0495,6.8133,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8197,6.0435,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +942,2.8818,10.6367,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +943,2.8368,10.2858,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +944,5.0495,6.4677,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8197,6.0252,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +946,2.8818,10.5219,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +947,2.8368,10.3766,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +948,5.0495,6.4804,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8197,6.0050,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,2.8818,9.9313,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,692,0 +951,2.8368,10.1465,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,5.0495,6.1913,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8197,5.9322,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +954,2.8818,10.0405,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +955,2.8368,10.2293,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,5.0495,6.2943,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8197,6.6047,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +958,2.8818,9.7819,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +959,2.8368,9.5985,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +960,5.0495,6.7270,0.0586,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8197,6.4599,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8818,55.0140,0.0242,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +963,2.8368,6.3130,0.0339,0.0000,0,0,0.0000,0,0.0000,0,1,0,119373,0 +964,5.0495,6.4881,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8197,6.0942,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8818,11.1037,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +967,2.8368,11.0603,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,15979,0 +968,5.0495,6.1932,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8197,6.0625,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8818,11.1185,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +971,2.8368,11.0480,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11010,0 +972,5.0495,6.2469,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8197,6.0844,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8818,11.1686,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +975,2.8368,11.0793,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7235,0 +976,5.0495,6.2903,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8197,6.0628,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8818,11.1478,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +979,2.8368,11.0191,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,4116,0 +980,5.0495,6.6693,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8197,6.2992,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8818,11.3165,0.0161,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +983,2.8368,11.0996,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3250,0 +984,5.0495,7.1052,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8197,6.3889,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8818,12.7162,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +987,2.8368,12.7089,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2938,0 +988,5.0495,7.5928,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8197,6.4863,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8818,11.3540,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +991,2.8368,11.1308,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2791,0 +992,5.0495,6.9215,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8197,6.2659,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8818,10.9655,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +995,2.8368,10.8640,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +996,5.0495,7.2000,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8197,6.4587,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8818,11.5330,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +999,2.8368,11.3808,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +1000,5.0495,7.1829,0.1552,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8197,7.0795,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8818,11.0618,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1003,2.8368,10.9330,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +1004,5.0495,7.0566,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8197,6.3482,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8818,11.3955,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1007,2.8368,11.0190,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1008,5.0495,7.1777,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8197,6.4476,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8818,9.9390,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1011,2.8368,10.4842,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +1012,5.0495,7.6300,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8197,6.4080,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8818,11.1277,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1015,2.8368,10.9511,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +1016,5.0495,7.7856,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8197,7.0433,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8818,11.2747,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1019,2.8368,11.0087,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,1197,0 +1020,5.0495,7.3239,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8197,6.4443,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8818,11.0917,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1023,2.8368,10.9337,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +1024,5.0495,7.0536,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8197,6.3374,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8818,11.2471,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1027,2.8368,10.7987,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,1299,0 +1028,5.0495,7.2601,0.0205,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8197,6.3731,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8818,11.3441,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1031,2.8368,11.2245,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +1032,5.0495,7.1647,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8197,6.3115,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8818,10.8894,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1035,2.8368,10.9103,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1036,5.0495,7.8188,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8197,6.4980,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8818,11.3873,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1039,2.8368,11.3345,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1040,5.0495,7.3139,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8197,6.3081,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8818,11.7120,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1043,2.8368,11.1825,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1044,5.0495,7.2234,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8197,6.3194,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8818,10.7395,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1047,2.8368,10.6301,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +1048,5.0495,6.7139,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8197,6.3200,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8818,12.3374,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8368,11.8430,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,1083,0 +1052,5.0495,8.1254,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8197,6.9598,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8818,11.6160,0.0141,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1055,2.8368,11.4468,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1056,5.0495,7.4511,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8197,6.6266,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8818,11.4710,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1059,2.8368,11.1770,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1176,0 +1060,5.0495,7.3170,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8197,6.3621,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8818,11.2974,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1063,2.8368,10.7638,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0495,7.0022,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8197,6.3157,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8818,10.5866,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1067,2.8368,10.2855,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +1068,5.0495,7.0515,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8197,6.2392,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8818,11.1768,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1071,2.8368,10.2574,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +1072,5.0495,6.9997,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8197,6.2767,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8818,11.2111,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1075,2.8368,10.8619,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1342,0 +1076,5.0495,7.1215,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8197,6.1769,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8818,11.2727,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1079,2.8368,11.0053,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1080,5.0495,7.9645,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8197,6.9014,0.0136,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1082,2.8818,12.4295,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1083,2.8368,41.7297,0.0046,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1084,5.0495,5.9847,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8197,13.6923,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1086,2.8818,10.6988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1087,2.8368,18.6472,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1088,5.0495,5.9893,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8197,5.8279,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1090,2.8818,11.0348,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1091,2.8368,11.0476,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1092,5.0495,6.1139,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8197,6.0097,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1094,2.8818,11.0351,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1095,2.8368,10.9980,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1096,5.0495,6.0865,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8197,6.0057,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1098,2.8818,10.9773,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1099,2.8368,11.0014,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1100,5.0495,6.1469,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8197,6.0124,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1102,2.8818,11.0352,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1103,2.8368,11.0016,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1104,5.0495,6.1327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8197,6.0208,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1106,2.8818,11.0844,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1107,2.8368,11.0300,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1108,5.0495,6.2354,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8197,6.1371,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1110,2.8818,10.9496,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1111,2.8368,11.0131,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1112,5.0495,6.7395,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8197,6.4265,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1114,2.8818,11.1112,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1115,2.8368,11.0293,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1116,5.0495,7.3327,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8197,6.5016,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1118,2.8818,11.2620,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1119,2.8368,10.9482,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1120,5.0495,7.0848,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8197,6.3996,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1122,2.8818,11.2932,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1123,2.8368,11.2091,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1124,5.0495,7.5076,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8197,6.6547,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1126,2.8818,10.7569,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1127,2.8368,10.8450,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1128,5.0495,7.0817,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8197,6.2800,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1130,2.8818,11.1123,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1131,2.8368,10.6607,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1132,5.0495,6.8578,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8197,6.2888,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1134,2.8818,11.1755,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1135,2.8368,10.8621,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1136,5.0495,7.0200,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8197,6.3893,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1138,2.8818,11.2216,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1139,2.8368,10.8611,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1140,5.0495,7.6124,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8197,6.4907,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8818,11.4422,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1143,2.8368,11.2212,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1144,5.0495,7.4785,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8197,6.6353,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8818,11.0220,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1147,2.8368,11.1116,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1148,5.0495,6.2885,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8197,5.8526,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8818,9.1236,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1151,2.8368,8.9067,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1152,5.0495,6.2101,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8197,5.9164,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8818,9.0501,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1155,2.8368,8.9642,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1156,5.0495,6.4916,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8197,6.0414,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8818,10.4698,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1159,2.8368,10.3498,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1160,5.0495,6.7278,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8197,6.1229,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8818,11.4069,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1163,2.8368,11.1028,0.0336,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1164,5.0495,6.3144,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8197,5.7754,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8818,10.2209,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1167,2.8368,9.9582,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1168,5.0495,6.5990,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8197,6.1732,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8818,12.6869,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1171,2.8368,12.4778,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1172,5.0495,6.4677,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8197,5.8920,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8818,12.4292,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1175,2.8368,11.6685,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1176,5.0495,6.4856,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8197,5.9688,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8818,10.8042,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8368,10.8336,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1180,5.0495,7.0910,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8197,6.3230,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8818,10.4540,0.0165,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8368,10.1732,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1184,5.0495,6.9523,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8197,6.2092,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8818,10.8440,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8368,10.5550,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1188,5.0495,6.3625,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8197,6.2104,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8818,10.2734,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8368,10.2862,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1192,5.0495,6.5046,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8197,6.1394,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8818,10.4107,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1195,2.8368,10.2999,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1196,5.0495,6.3723,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8197,5.9905,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8818,10.3160,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1199,2.8368,10.1205,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1200,5.0495,6.7495,0.0820,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.8197,6.1788,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1202,2.8818,10.9222,0.0799,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +1203,2.8368,10.3819,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1204,5.0495,7.3362,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.8197,6.6646,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1206,2.8818,10.3968,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +1207,2.8368,10.1571,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1208,5.0495,7.2019,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.8197,6.4770,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1210,2.8818,11.0437,0.0199,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +1211,2.8368,10.7352,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1212,5.0495,7.0230,0.0149,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.8197,6.1690,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1214,2.8818,10.9412,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +1215,2.8368,10.5532,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1216,5.0495,7.3668,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.8197,6.3208,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1218,2.8818,11.4086,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +1219,2.8368,10.8980,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1220,5.0495,7.3829,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.8197,6.7265,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1222,2.8818,11.2773,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +1223,2.8368,10.8604,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1224,5.0495,7.4134,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.8197,6.4338,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1226,2.8818,14.6732,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +1227,2.8368,14.3286,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1228,5.0495,7.0630,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.8197,6.1300,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1230,2.8818,10.8802,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +1231,2.8368,10.5375,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1232,5.0495,6.4881,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.8197,6.0228,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1234,2.8818,10.2078,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +1235,2.8368,10.0087,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1236,5.0495,6.5823,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.8197,6.0976,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1238,2.8818,10.4283,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +1239,2.8368,10.1079,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1240,5.0495,6.6360,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.8197,6.0460,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1242,2.8818,10.8194,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1243,2.8368,10.2796,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1244,5.0495,7.4810,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.8197,6.2843,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1246,2.8818,16.2464,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1247,2.8368,16.2459,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1248,5.0495,7.9618,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.8197,7.0487,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1250,2.8818,11.9693,0.0152,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1251,2.8368,12.0030,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1252,5.0495,6.6000,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.8197,6.3291,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1254,2.8818,11.2176,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1255,2.8368,10.9885,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1256,5.0495,7.6907,0.0148,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.8197,6.8743,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1258,2.8818,11.2782,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1259,2.8368,10.7564,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1260,5.0495,6.9215,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.8197,6.3110,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8818,13.3128,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1263,2.8368,12.8138,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1264,5.0495,7.1985,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.8197,6.2937,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8818,10.9349,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1267,2.8368,10.6162,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1268,5.0495,7.4494,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.8197,6.5229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8818,11.1324,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1271,2.8368,10.8677,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1272,5.0495,6.9450,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.8197,6.1780,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8818,11.3805,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1275,2.8368,11.2070,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1276,5.0495,6.8233,0.0419,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.8197,6.2782,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8818,11.1106,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1279,2.8368,10.8852,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1280,5.0495,6.9339,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.8197,6.3610,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8818,10.7065,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1283,2.8368,10.3150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.0495,8.4614,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.8197,6.0393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8818,10.2152,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1287,2.8368,10.3259,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1288,5.0495,7.0144,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.8197,6.2919,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8818,10.0771,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1291,2.8368,10.5550,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1292,5.0495,7.4665,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.8197,6.4145,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8818,11.4217,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1295,2.8368,11.0834,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1296,5.0495,7.3571,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.8197,6.5269,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8818,10.0988,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1299,2.8368,9.8554,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1300,5.0495,6.9859,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.8197,6.3210,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8818,10.8442,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1303,2.8368,10.5200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1304,5.0495,7.0430,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.8197,6.2622,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8818,10.5641,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1307,2.8368,10.3520,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1308,5.0495,10.3853,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.8197,6.2363,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8818,10.9172,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1311,2.8368,10.8253,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1312,5.0495,7.2147,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.8197,6.2510,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8818,10.9183,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1315,2.8368,10.2767,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1316,5.0495,7.2304,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.8197,6.2042,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8818,10.5638,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1319,2.8368,10.8598,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1320,5.0495,6.8660,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.8197,6.2657,0.0718,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1322,2.8818,11.4336,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1323,2.8368,11.3526,0.0426,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +1324,5.0495,7.5660,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8197,6.7205,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1326,2.8818,10.7594,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1327,2.8368,10.8404,0.0413,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +1328,5.0495,7.0711,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8197,6.3226,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1330,2.8818,10.7274,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1331,2.8368,10.7635,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +1332,5.0495,7.3356,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8197,6.1264,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1334,2.8818,9.6958,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1335,2.8368,10.5067,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +1336,5.0495,7.3300,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8197,6.2986,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1338,2.8818,10.6086,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1339,2.8368,10.5249,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +1340,5.0495,7.1910,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8197,6.2515,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1342,2.8818,10.9210,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1343,2.8368,10.9134,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +1344,5.0495,7.2137,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8197,6.2758,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1346,2.8818,10.5890,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1347,2.8368,12.4394,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +1348,5.0495,7.2738,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8197,6.2680,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1350,2.8818,11.6566,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1351,2.8368,11.6218,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +1352,5.0495,16.4823,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8197,15.5632,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1354,2.8818,15.2179,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1355,2.8368,14.7393,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +1356,5.0495,7.2326,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8197,6.4173,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1358,2.8818,11.0915,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1359,2.8368,11.1065,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1360,5.0495,7.0233,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8197,6.1710,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1362,2.8818,11.5925,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1363,2.8368,11.5422,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1364,5.0495,7.1985,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8197,6.2938,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1366,2.8818,11.0006,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1367,2.8368,10.6462,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1368,5.0495,6.4609,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8197,6.0519,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1370,2.8818,10.6162,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1371,2.8368,10.4718,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1372,5.0495,7.4888,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8197,6.0302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1374,2.8818,10.3540,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1375,2.8368,10.1076,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1376,5.0495,6.3500,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8197,6.0093,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1378,2.8818,10.3463,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1379,2.8368,10.0772,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1380,5.0495,6.4030,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8197,5.9238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8818,10.3245,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1383,2.8368,10.1582,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1384,5.0495,8.7660,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8197,7.9639,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8818,10.8195,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1387,2.8368,10.7620,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1388,5.0495,6.1487,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8197,5.9194,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8818,10.5252,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1391,2.8368,10.1206,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1392,5.0495,6.6597,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8197,5.9696,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8818,10.7799,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1395,2.8368,10.5530,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1396,5.0495,6.4961,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8197,6.0703,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8818,10.7449,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1399,2.8368,10.5388,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1400,5.0495,6.4977,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8197,6.0105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8818,10.4059,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1403,2.8368,10.2594,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1404,5.0495,6.9698,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8197,6.1904,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8818,10.4189,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1407,2.8368,10.2691,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1408,5.0495,7.7208,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8197,6.4940,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8818,11.6245,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1411,2.8368,11.5000,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1412,5.0495,7.0841,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8197,6.4013,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8818,10.6537,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1415,2.8368,10.5609,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1416,5.0495,7.5789,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8197,6.3776,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8818,11.2010,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1419,2.8368,11.0064,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1420,5.0495,7.2582,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8197,6.1965,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8818,11.3926,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1423,2.8368,11.1383,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1424,5.0495,7.1317,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8197,6.5287,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8818,11.8705,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1427,2.8368,12.0082,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1428,5.0495,8.2231,0.0136,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8197,7.4335,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8818,11.7256,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1431,2.8368,11.5836,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1432,5.0495,6.4371,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8197,6.0160,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8818,10.6263,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1435,2.8368,10.4335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1436,5.0495,7.5459,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8197,7.0340,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8818,10.9320,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1439,2.8368,10.7477,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.txt b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.txt new file mode 100644 index 0000000..656aa13 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=30 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=5.997 +effective_logical_fps=60.025 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.572 +p95_encode_latency_ms=15.081 +max_encode_latency_ms=115.164 +avg_steady_encode_latency_ms=13.346 +p95_steady_encode_latency_ms=15.015 +max_steady_encode_latency_ms=63.544 +avg_tile_encode_latency_ms=8.946 +p95_tile_encode_latency_ms=11.732 +avg_max_tile_encode_latency_ms=11.571 +p95_max_tile_encode_latency_ms=12.688 +avg_steady_max_tile_encode_latency_ms=11.531 +p95_steady_max_tile_encode_latency_ms=12.658 +payload_bytes=4979215 +send_target=none +csv=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_deadline.md b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_deadline.md new file mode 100644 index 0000000..082793e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_staggered_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.572 | +| p95_group_latency_ms | 15.081 | +| max_group_latency_ms | 115.164 | +| effective_logical_fps | 60.025 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 282 | 78.333% | 0, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, ... | +| 16.67 | 13 | 3.611% | 0, 19, 70, 97, 180, 210, 234, 240, 270, 271, 306, 311, ... | +| 20.00 | 5 | 1.389% | 0, 180, 210, 240, 270 | +| 33.33 | 5 | 1.389% | 0, 180, 210, 240, 270 | +| 50.00 | 4 | 1.111% | 0, 180, 210, 240 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.650 | 14.899 | 115.164 | +| 300-359 | 13.182 | 16.150 | 18.293 | diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_logical.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_logical.csv new file mode 100644 index 0000000..165ce1e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,115.1639,30.8057,231707 +1,4,0,11.3289,10.8163,65901 +2,4,0,11.2409,10.7957,36886 +3,4,0,11.1890,10.7314,69404 +4,4,0,11.1154,10.6575,87864 +5,4,0,11.4776,11.0349,53700 +6,4,0,11.3643,10.8306,24415 +7,4,0,11.3785,10.8900,15407 +8,4,0,11.1497,10.6639,12151 +9,4,0,11.6239,11.0801,11449 +10,4,0,11.8318,11.2448,8599 +11,4,0,11.8630,11.2415,6107 +12,4,0,12.0874,11.3401,5132 +13,4,0,11.9486,11.2033,3880 +14,4,0,11.9162,11.1841,4001 +15,4,0,12.9691,12.3185,3860 +16,4,0,13.0682,11.6782,4045 +17,4,0,14.8971,13.3796,3955 +18,4,0,14.3725,12.0573,3721 +19,4,0,17.2192,11.1539,3748 +20,4,0,12.6292,11.7558,3386 +21,4,0,12.4848,11.6482,2761 +22,4,0,12.8514,12.0482,2750 +23,4,0,14.1744,12.5204,2836 +24,4,0,13.9470,12.2091,2977 +25,4,0,13.6508,10.8010,2960 +26,4,0,13.7252,10.8933,3010 +27,4,0,12.8448,11.3947,2978 +28,4,0,13.7191,10.6076,2889 +29,4,0,12.6456,11.2040,2914 +30,4,0,13.1106,10.7567,2847 +31,4,0,13.1040,11.0186,3111 +32,4,0,12.8837,10.9388,2714 +33,4,0,13.0365,11.1811,2843 +34,4,0,13.0599,11.3814,2633 +35,4,0,13.0822,11.1318,2659 +36,4,0,13.1960,10.9660,2696 +37,4,0,15.0793,13.1101,2728 +38,4,0,14.0647,12.6221,2772 +39,4,0,12.9865,11.2888,2740 +40,4,0,12.8473,11.1289,2809 +41,4,0,13.4077,11.5188,2679 +42,4,0,13.1697,10.9838,2865 +43,4,0,12.8114,11.0715,2612 +44,4,0,13.1803,11.4819,2626 +45,4,0,12.9611,10.9068,2693 +46,4,0,12.0395,11.0193,2708 +47,4,0,11.0731,10.3805,2765 +48,4,0,11.2530,10.7640,2645 +49,4,0,11.3939,10.8288,2733 +50,4,0,10.8299,10.4514,2667 +51,4,0,11.1522,10.5157,2647 +52,4,0,11.1120,10.5968,2659 +53,4,0,11.0526,10.4594,2757 +54,4,0,11.6873,10.5250,2656 +55,4,0,11.1310,10.6494,2594 +56,4,0,11.3331,10.5666,2603 +57,4,0,11.2442,10.5489,2605 +58,4,0,11.3391,10.5662,2610 +59,4,0,11.7317,10.6312,2641 +60,4,0,12.1454,10.6189,442009 +61,4,0,13.0633,10.9346,52997 +62,4,0,12.8755,10.6811,26956 +63,4,0,13.0474,10.8193,26939 +64,4,0,13.7911,12.0362,22402 +65,4,0,14.4912,13.0049,15271 +66,4,0,13.7733,11.9853,12647 +67,4,0,14.0582,10.4755,10161 +68,4,0,13.4062,11.5366,9695 +69,4,0,13.1615,11.4651,5893 +70,4,0,18.6107,14.7112,5590 +71,4,0,12.7930,10.9019,5226 +72,4,0,13.0025,11.0679,5095 +73,4,0,12.8757,11.1284,5164 +74,4,0,12.8739,10.9723,4634 +75,4,0,13.0050,11.2450,5338 +76,4,0,12.8364,9.9186,2984 +77,4,0,12.0770,10.2917,2918 +78,4,0,11.3175,10.4078,3051 +79,4,0,12.2683,10.7411,3217 +80,4,0,11.9692,10.1775,3680 +81,4,0,11.9580,10.0090,3433 +82,4,0,12.0235,10.9259,3891 +83,4,0,11.6270,10.0908,2978 +84,4,0,12.1495,11.0389,2906 +85,4,0,12.1240,10.5525,2925 +86,4,0,12.4504,10.8485,3487 +87,4,0,12.5870,10.8541,2969 +88,4,0,12.6407,10.7201,2822 +89,4,0,12.7452,10.7362,3027 +90,4,0,12.6790,11.2919,2708 +91,4,0,13.1023,10.9200,2735 +92,4,0,12.8988,10.6315,2688 +93,4,0,12.8689,10.7903,2954 +94,4,0,14.5535,12.5322,3013 +95,4,0,15.9013,14.1613,2878 +96,4,0,14.3882,12.6015,3036 +97,4,0,18.4701,16.8148,2909 +98,4,0,12.7793,11.1858,2598 +99,4,0,12.9837,11.6149,2609 +100,4,0,13.1305,11.0066,2615 +101,4,0,12.3929,10.5243,2652 +102,4,0,11.6070,10.7470,2667 +103,4,0,11.8880,10.0232,2728 +104,4,0,11.4643,10.3391,2632 +105,4,0,11.7617,10.5084,2620 +106,4,0,11.7096,10.6163,2603 +107,4,0,11.4277,10.5560,2633 +108,4,0,11.3652,10.4315,2885 +109,4,0,11.5055,10.6395,2631 +110,4,0,11.7720,10.5521,2679 +111,4,0,12.2780,11.0823,2594 +112,4,0,11.8181,10.6992,2610 +113,4,0,12.1672,10.8052,2618 +114,4,0,11.4949,10.2663,2639 +115,4,0,12.2316,10.5205,2683 +116,4,0,11.8902,10.3067,2662 +117,4,0,12.6499,10.4561,2669 +118,4,0,12.6967,10.9352,2661 +119,4,0,13.5148,10.3429,2767 +120,4,0,12.7340,10.7069,412099 +121,4,0,13.0557,10.7738,58619 +122,4,0,13.0129,10.9135,48033 +123,4,0,14.8552,12.4524,38505 +124,4,0,12.6890,11.1998,33624 +125,4,0,13.0995,11.1402,18519 +126,4,0,11.9600,11.2035,15662 +127,4,0,12.2436,9.9065,11727 +128,4,0,12.0397,10.3711,10164 +129,4,0,12.0531,11.0997,8732 +130,4,0,12.5920,10.7634,8017 +131,4,0,13.6862,11.3092,5177 +132,4,0,12.5819,11.1236,3438 +133,4,0,12.9093,10.7065,3236 +134,4,0,12.7577,10.6300,3208 +135,4,0,12.7302,11.0518,3684 +136,4,0,13.4904,11.2122,3691 +137,4,0,12.7738,10.7570,3794 +138,4,0,12.7006,10.7810,3974 +139,4,0,12.9307,10.9441,3178 +140,4,0,12.6472,10.7429,3070 +141,4,0,12.5387,10.8362,3397 +142,4,0,12.4144,11.1928,2792 +143,4,0,13.0800,9.9754,2888 +144,4,0,12.7179,10.9015,2885 +145,4,0,12.7795,10.6545,3092 +146,4,0,12.9396,10.7822,2712 +147,4,0,12.5594,10.5196,2692 +148,4,0,12.8874,10.9310,2781 +149,4,0,14.9364,10.3038,2731 +150,4,0,12.4090,10.8727,2815 +151,4,0,13.4077,10.6357,2761 +152,4,0,12.4932,10.8597,3174 +153,4,0,12.4759,10.7556,2599 +154,4,0,12.6285,11.0458,2594 +155,4,0,13.9945,10.6743,2600 +156,4,0,12.8993,10.7033,2646 +157,4,0,12.7785,10.7601,2717 +158,4,0,12.7543,10.6113,2764 +159,4,0,12.5694,10.2782,2916 +160,4,0,13.8979,11.8123,2625 +161,4,0,12.5972,10.8234,2618 +162,4,0,12.7628,10.8213,2617 +163,4,0,12.7226,10.9570,2801 +164,4,0,14.1348,12.5015,2641 +165,4,0,12.8096,11.4080,2631 +166,4,0,12.1510,10.6694,2755 +167,4,0,11.1922,10.4588,2594 +168,4,0,11.2272,10.5475,2611 +169,4,0,11.9785,10.5591,2613 +170,4,0,12.3445,10.5785,2654 +171,4,0,12.0686,9.9127,2706 +172,4,0,12.2982,11.1902,2658 +173,4,0,11.5427,10.6115,2713 +174,4,0,12.2395,10.5581,2681 +175,4,0,12.0987,10.3045,2592 +176,4,0,12.0819,10.2106,2590 +177,4,0,12.4712,10.4944,2585 +178,4,0,13.0660,11.0702,2602 +179,4,0,12.7222,11.0020,2810 +180,4,0,58.1063,46.5544,386594 +181,4,0,11.5935,11.0036,54046 +182,4,0,11.6240,10.9446,41827 +183,4,0,11.6086,10.9645,39504 +184,4,0,11.6612,11.0029,43337 +185,4,0,12.1167,11.5216,28963 +186,4,0,11.8090,11.2046,15764 +187,4,0,12.1493,11.4757,12274 +188,4,0,12.9485,11.5629,8200 +189,4,0,16.3357,12.2404,6975 +190,4,0,12.6352,11.2133,6425 +191,4,0,12.3135,11.0462,5489 +192,4,0,12.8447,10.9849,6002 +193,4,0,12.9488,10.8887,5061 +194,4,0,12.9521,10.6923,5208 +195,4,0,12.7163,11.3660,3818 +196,4,0,12.7601,10.3151,4140 +197,4,0,13.1138,10.9062,3176 +198,4,0,13.0920,10.8337,3193 +199,4,0,12.8572,10.6679,3169 +200,4,0,12.7595,10.8194,3018 +201,4,0,12.6321,10.3543,3512 +202,4,0,12.0786,11.4593,2832 +203,4,0,14.0311,11.2261,3035 +204,4,0,12.5410,11.0579,3114 +205,4,0,12.9021,11.4989,2988 +206,4,0,12.9189,10.6887,3072 +207,4,0,12.7841,10.7731,3420 +208,4,0,12.8999,10.7933,3052 +209,4,0,12.8537,10.9085,2823 +210,4,0,63.5445,56.2219,45540 +211,4,0,11.6468,10.9945,16462 +212,4,0,11.7022,10.9950,9078 +213,4,0,11.6429,11.0070,19060 +214,4,0,11.6408,10.9212,22659 +215,4,0,11.7354,11.0218,14090 +216,4,0,11.8242,11.1312,7173 +217,4,0,12.0250,11.1948,5825 +218,4,0,12.5033,11.0633,5072 +219,4,0,13.6027,12.0189,4762 +220,4,0,14.6629,10.9574,4333 +221,4,0,12.7330,10.8470,3439 +222,4,0,12.7887,10.9380,3336 +223,4,0,12.6842,11.1746,2955 +224,4,0,13.0110,10.7121,2851 +225,4,0,15.3560,13.5196,2847 +226,4,0,12.9930,10.8112,2806 +227,4,0,12.9959,10.7179,2797 +228,4,0,12.8714,10.8172,2743 +229,4,0,13.5287,10.5668,2845 +230,4,0,13.1510,10.8145,2619 +231,4,0,12.7356,9.0253,2658 +232,4,0,12.5303,11.5525,2626 +233,4,0,13.0255,10.9333,2634 +234,4,0,18.2854,11.1442,2639 +235,4,0,12.2118,10.6367,2645 +236,4,0,12.0398,10.5219,2705 +237,4,0,12.1667,10.1465,2595 +238,4,0,11.7043,10.2293,3371 +239,4,0,12.2221,9.7819,2766 +240,4,0,62.1517,55.0140,294313 +241,4,0,12.0633,11.1037,48069 +242,4,0,11.7935,11.1185,29454 +243,4,0,11.8396,11.1686,35605 +244,4,0,11.7953,11.1478,33082 +245,4,0,12.0719,11.3165,20616 +246,4,0,14.1053,12.7162,14200 +247,4,0,13.1353,11.3540,10156 +248,4,0,12.8642,10.9655,8218 +249,4,0,13.3499,11.5330,7202 +250,4,0,12.9000,11.0618,5530 +251,4,0,12.8727,11.3955,3788 +252,4,0,13.4021,10.4842,3381 +253,4,0,13.4339,11.1277,3478 +254,4,0,12.8963,11.2747,4042 +255,4,0,12.6084,11.0917,4179 +256,4,0,13.4860,11.2471,4164 +257,4,0,13.3564,11.3441,4245 +258,4,0,13.0222,10.9103,3302 +259,4,0,13.4126,11.3873,3138 +260,4,0,13.4305,11.7120,3515 +261,4,0,12.9592,10.7395,3031 +262,4,0,12.9389,12.3374,3077 +263,4,0,13.5628,11.6160,2989 +264,4,0,13.2738,11.4710,3219 +265,4,0,13.1850,11.2974,2832 +266,4,0,12.8995,10.5866,3546 +267,4,0,12.8785,11.1768,3352 +268,4,0,12.9682,11.2111,3504 +269,4,0,12.8618,11.2727,3012 +270,4,0,42.7490,41.7297,148106 +271,4,0,19.4248,18.6472,28726 +272,4,0,11.6862,11.0476,16034 +273,4,0,11.6796,11.0351,21255 +274,4,0,11.6795,11.0014,27764 +275,4,0,11.7591,11.0352,20775 +276,4,0,11.7975,11.0844,8528 +277,4,0,11.8667,11.0131,6364 +278,4,0,11.9025,11.1112,5506 +279,4,0,12.7592,11.2620,5024 +280,4,0,13.1270,11.2932,4814 +281,4,0,13.0384,10.8450,4295 +282,4,0,12.7718,11.1123,3915 +283,4,0,12.7924,11.1755,2674 +284,4,0,13.2851,11.2216,2628 +285,4,0,13.4993,11.4422,2702 +286,4,0,13.2699,11.1116,2878 +287,4,0,11.8777,9.1236,3058 +288,4,0,11.9827,9.0501,3026 +289,4,0,12.1251,10.4698,3327 +290,4,0,13.1463,11.4069,2680 +291,4,0,11.9656,10.2209,2645 +292,4,0,13.9991,12.6869,2652 +293,4,0,13.5582,12.4292,2814 +294,4,0,12.1378,10.8336,2804 +295,4,0,12.4328,10.4540,2728 +296,4,0,12.1311,10.8440,2864 +297,4,0,12.0149,10.2862,2603 +298,4,0,12.4954,10.4107,2606 +299,4,0,11.8198,10.3160,2633 +300,4,0,12.6080,10.9222,243099 +301,4,0,13.3057,10.3968,29178 +302,4,0,13.4597,11.0437,16778 +303,4,0,12.9865,10.9412,19117 +304,4,0,13.1780,11.4086,14133 +305,4,0,13.2621,11.2773,8313 +306,4,0,16.7587,14.6732,6544 +307,4,0,12.5815,10.8802,5436 +308,4,0,12.1923,10.2078,4764 +309,4,0,12.2694,10.4283,4568 +310,4,0,12.4933,10.8194,4415 +311,4,0,18.2927,16.2464,4449 +312,4,0,13.6411,12.0030,4061 +313,4,0,12.5895,11.2176,3951 +314,4,0,13.1785,11.2782,3654 +315,4,0,15.1177,13.3128,4121 +316,4,0,13.0746,10.9349,2986 +317,4,0,13.2232,11.1324,2948 +318,4,0,12.6131,11.3805,2857 +319,4,0,12.4324,11.1106,2831 +320,4,0,12.9063,10.7065,3000 +321,4,0,14.6834,10.3259,2914 +322,4,0,13.3794,10.5550,3126 +323,4,0,13.5073,11.4217,2981 +324,4,0,13.1445,10.0988,2914 +325,4,0,12.7461,10.8442,2846 +326,4,0,12.8232,10.5641,3313 +327,4,0,16.1175,10.9172,2681 +328,4,0,12.9731,10.9183,2640 +329,4,0,13.2502,10.8598,2649 +330,4,0,12.9389,11.4336,201598 +331,4,0,12.9657,10.8404,26632 +332,4,0,12.7828,10.7635,12921 +333,4,0,13.5197,10.5067,10865 +334,4,0,12.7965,10.6086,11064 +335,4,0,12.6764,10.9210,9698 +336,4,0,14.6593,12.4394,8892 +337,4,0,13.2710,11.6566,7677 +338,4,0,16.9123,16.4823,7587 +339,4,0,12.6410,11.1065,3961 +340,4,0,13.0511,11.5925,3909 +341,4,0,12.7492,11.0006,3384 +342,4,0,11.9878,10.6162,3664 +343,4,0,13.1141,10.3540,3820 +344,4,0,11.9794,10.3463,3637 +345,4,0,12.0759,10.3245,3924 +346,4,0,12.1654,10.8195,2660 +347,4,0,11.7416,10.5252,2682 +348,4,0,12.2793,10.7799,3023 +349,4,0,12.2808,10.7449,2985 +350,4,0,11.9940,10.4059,3274 +351,4,0,12.0265,10.4189,3134 +352,4,0,13.5516,11.6245,3410 +353,4,0,12.7197,10.6537,2636 +354,4,0,13.2979,11.2010,2657 +355,4,0,12.9275,11.3926,2727 +356,4,0,13.5934,12.0082,2811 +357,4,0,13.3500,11.7256,2907 +358,4,0,11.6378,10.6263,2800 +359,4,0,12.4512,10.9320,3185 diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.csv b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.csv new file mode 100644 index 0000000..feac31e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.csv @@ -0,0 +1,7 @@ +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +baseline_simultaneous_reset,tiled,5120x2880,60,6,30,0,360,60.025,13.283,16.335,122.915,16.431,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_logical.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset_deadline.md,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/baseline_simultaneous_reset.txt +segment_hints_simultaneous_reset,tiled,5120x2880,60,6,30,0,360,59.980,13.468,14.309,116.770,14.313,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_logical.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset_deadline.md,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_simultaneous_reset.txt +segment_hints_staggered_reset,tiled,5120x2880,60,6,30,0,360,60.025,13.572,15.081,115.164,15.015,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_logical.csv,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset_deadline.md,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/segment_hints_staggered_reset.txt +post_probe_4096_fallback,single,4096x2304,60,6,120,0,300,,25.838,46.578,47.764,,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.csv,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_4096_fallback.txt +post_probe_3200_fallback,single,3200x1800,60,6,60,0,300,,23.846,42.273,84.630,,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.csv,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_3200_fallback.txt +post_probe_2560_fallback,single,2560x1440,60,6,25,0,300,,10.345,16.866,30.266,,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.csv,,,benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/post_probe_2560_fallback.txt diff --git a/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.md b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.md new file mode 100644 index 0000000..156eb74 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/summary.md @@ -0,0 +1,8 @@ +# Encoder Reset Strategy Probe + +- Duration: `6` seconds +- Reset interval: `180` logical frames +- Stagger: `30` logical frames +- Fallback probes: `1` + +See `summary.csv` for metrics and per-case logs. diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.csv new file mode 100644 index 0000000..68123e4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.5342,23.6340,0.0265,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.1197,23.7013,0.0145,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,3.2356,26.3837,0.0045,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,3.2220,26.9423,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.5342,5.9005,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,3.1197,5.7592,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,3.2356,10.8181,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,3.2220,10.7792,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.5342,5.7664,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,3.1197,5.6772,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,3.2356,10.5518,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,3.2220,10.5275,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.5342,5.8009,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,3.1197,5.7125,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,3.2356,10.7004,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,3.2220,10.7196,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.5342,5.7665,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,3.1197,5.7470,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,3.2356,10.6163,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,3.2220,10.6555,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.5342,5.8505,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,3.1197,5.6947,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,3.2356,10.6643,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,3.2220,10.6428,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.5342,5.8062,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,3.1197,5.7698,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,3.2356,10.6885,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,3.2220,10.6888,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.5342,5.8307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,3.1197,5.7780,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,3.2356,10.6856,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,3.2220,10.6556,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.5342,5.8252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,3.1197,5.7780,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,3.2356,10.6022,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,3.2220,10.6043,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.5342,5.7270,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,3.1197,5.6272,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,3.2356,10.7368,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,3.2220,10.7143,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.5342,6.2562,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,3.1197,5.9924,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,3.2356,11.2988,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,3.2220,11.2589,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.5342,6.0479,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,3.1197,5.8396,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,3.2356,11.0858,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,3.2220,11.0165,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.5342,6.0219,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,3.1197,6.0178,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,3.2356,11.1028,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,3.2220,11.1054,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.5342,6.1406,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,3.1197,5.9750,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,3.2356,11.0184,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,3.2220,11.0330,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.5342,5.9785,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,3.1197,5.9547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,3.2356,11.1419,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,3.2220,11.1359,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.5342,6.0937,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,3.1197,5.9350,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,3.2356,11.0007,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,3.2220,11.0075,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.5342,6.0446,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,3.1197,5.9042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,3.2356,10.9799,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,3.2220,10.9864,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.5342,5.9746,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,3.1197,5.9155,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,3.2356,11.0237,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,3.2220,11.0091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.5342,6.0587,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,3.1197,5.9703,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,3.2356,11.6667,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,3.2220,11.8366,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.5342,6.9546,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,3.1197,6.1864,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,3.2356,11.0634,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,3.2220,10.7295,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.5342,6.9672,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,3.1197,6.2126,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,3.2356,10.8517,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,3.2220,10.8215,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.5342,7.5284,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,3.1197,6.4428,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,3.2356,10.8886,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,3.2220,10.9600,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.5342,7.0550,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,3.1197,6.2158,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,3.2356,10.4639,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,3.2220,10.3682,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.5342,7.0321,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,3.1197,6.5909,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,3.2356,10.1825,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,3.2220,10.7458,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.5342,7.7170,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,3.1197,6.7000,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,3.2356,10.6228,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,3.2220,10.4228,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.5342,7.1092,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,3.1197,6.3292,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,3.2356,10.6371,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,3.2220,10.7354,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.5342,6.9510,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,3.1197,6.2876,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,3.2356,10.4856,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,3.2220,10.8235,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.5342,7.4022,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,3.1197,6.2824,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,3.2356,10.5684,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,3.2220,10.8515,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.5342,7.3321,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,3.1197,6.2339,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,3.2356,10.6514,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,3.2220,10.8633,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.5342,7.0817,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,3.1197,6.2340,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,3.2356,10.6427,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,3.2220,10.8195,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.5342,7.0077,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,3.1197,6.2176,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,3.2356,10.5870,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,3.2220,12.2630,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.5342,7.1421,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,3.1197,6.1865,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,3.2356,12.6163,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,3.2220,12.5195,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.5342,7.2979,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,3.1197,6.4521,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,3.2356,11.0033,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,3.2220,10.8761,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.5342,6.2474,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,3.1197,6.0014,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,3.2356,10.9407,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,3.2220,10.9423,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.5342,6.5230,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,3.1197,6.0920,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,3.2356,11.1796,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,3.2220,10.9947,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.5342,6.0689,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,3.1197,5.6293,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,3.2356,10.4518,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,3.2220,10.4165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.5342,5.7176,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,3.1197,5.6057,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,3.2356,10.4059,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,3.2220,10.4040,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.5342,5.9456,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,3.1197,5.7657,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,3.2356,10.5569,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,3.2220,10.5159,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.5342,5.7931,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,3.1197,5.6301,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,3.2356,10.5469,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,3.2220,10.4380,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.5342,6.0525,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,3.1197,5.6885,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,3.2356,10.7213,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,3.2220,10.5572,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.5342,6.1629,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,3.1197,5.7228,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,3.2356,10.6316,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,3.2220,10.4927,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.5342,5.9016,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,3.1197,5.5746,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,3.2356,10.4973,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,3.2220,10.4284,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.5342,6.4541,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,3.1197,6.0365,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,3.2356,10.9261,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,3.2220,10.9722,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.5342,6.2629,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,3.1197,5.8013,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,3.2356,10.1890,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,3.2220,8.8645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.5342,6.4111,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,3.1197,5.8177,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,3.2356,10.4051,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,3.2220,10.4090,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.5342,6.0898,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,3.1197,5.8019,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,3.2356,10.3886,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,3.2220,10.3825,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.5342,6.5323,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,3.1197,5.9705,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,3.2356,10.1954,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,3.2220,9.8517,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.5342,6.2642,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,3.1197,5.8202,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,3.2356,10.5325,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,3.2220,10.4626,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.5342,6.3975,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,3.1197,5.9801,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,3.2356,10.0898,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,3.2220,10.0602,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.5342,6.2232,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,3.1197,5.9451,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,3.2356,10.1150,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,3.2220,9.8230,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.5342,6.3567,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,3.1197,5.9729,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,3.2356,10.1318,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,3.2220,10.1629,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.5342,7.4292,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,3.1197,6.8127,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,3.2356,10.1310,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,3.2220,10.2209,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.5342,6.3359,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,3.1197,5.9119,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,3.2356,10.1504,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,3.2220,10.1651,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.5342,6.4239,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,3.1197,6.0493,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,3.2356,10.0890,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,3.2220,10.1998,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.5342,6.6975,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,3.1197,6.1303,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,3.2356,11.5341,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,3.2220,11.1570,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.5342,6.9230,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,3.1197,6.2472,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,3.2356,11.1209,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,3.2220,10.9003,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.5342,7.1559,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,3.1197,6.4020,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,3.2356,11.0251,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,3.2220,10.6858,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.5342,6.9331,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,3.1197,6.1607,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,3.2356,11.1273,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,3.2220,10.0482,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.5342,6.9085,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,3.1197,6.1857,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,3.2356,10.8147,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,3.2220,9.7959,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.5342,7.2638,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,3.1197,6.0670,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,3.2356,10.5268,0.0318,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,3.2220,10.4702,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.5342,6.4165,0.2447,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,3.1197,5.9109,0.1990,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,3.2356,10.1843,0.0650,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,3.2220,10.3636,0.0399,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.5342,6.4136,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,3.1197,5.9448,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,3.2356,10.1312,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,3.2220,10.1255,0.0181,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.5342,6.2971,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,3.1197,5.9317,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,3.2356,10.2022,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,3.2220,10.1730,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.5342,6.1689,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,3.1197,6.0525,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,3.2356,9.6500,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,3.2220,10.3633,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.5342,6.2672,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,3.1197,5.9535,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,3.2356,10.0927,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,3.2220,10.1147,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.5342,6.3925,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,3.1197,5.9285,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,3.2356,10.3002,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,3.2220,10.3919,0.0313,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.5342,6.1857,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,3.1197,5.9902,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,3.2356,10.1460,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,3.2220,10.0721,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.5342,6.2545,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,3.1197,5.9233,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,3.2356,10.2302,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,3.2220,10.1875,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.5342,6.2027,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,3.1197,5.9862,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,3.2356,10.1221,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,3.2220,10.2457,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.5342,6.3566,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,3.1197,5.9297,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,3.2356,10.1271,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,3.2220,10.1867,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.5342,6.2650,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,3.1197,5.9275,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,3.2356,10.1701,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,3.2220,10.3202,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.5342,6.2754,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,3.1197,5.9098,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,3.2356,10.8621,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,3.2220,10.4735,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.5342,7.0778,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,3.1197,6.2068,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,3.2356,12.4275,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,3.2220,12.4382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.5342,6.8100,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,3.1197,6.0226,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,3.2356,11.1254,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,3.2220,10.9399,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.5342,7.2519,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,3.1197,6.2580,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,3.2356,11.2087,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,3.2220,10.9011,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.5342,7.2690,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,3.1197,6.3122,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,3.2356,11.0833,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,3.2220,10.9273,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.5342,7.2031,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,3.1197,6.2108,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,3.2356,11.3667,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,3.2220,11.2528,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.5342,7.2455,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,3.1197,6.1975,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,3.2356,11.2953,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,3.2220,11.0508,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.5342,7.2832,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,3.1197,6.2506,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,3.2356,11.4079,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,3.2220,11.1667,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.5342,7.3080,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,3.1197,6.2387,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,3.2356,11.3924,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,3.2220,11.1859,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.5342,7.5260,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,3.1197,6.1882,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,3.2356,11.2420,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,3.2220,11.1718,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.5342,7.4066,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,3.1197,6.4730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,3.2356,12.5343,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,3.2220,12.4095,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.5342,7.0786,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,3.1197,6.0320,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,3.2356,9.9222,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,3.2220,10.6116,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.5342,7.5810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,3.1197,6.3405,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,3.2356,11.3834,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,3.2220,11.2749,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.5342,7.6243,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,3.1197,6.4214,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,3.2356,11.4821,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,3.2220,11.2585,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.5342,7.4986,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,3.1197,6.2456,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,3.2356,11.4253,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,3.2220,11.3938,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.5342,7.5931,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,3.1197,6.3582,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,3.2356,11.7299,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,3.2220,11.2107,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.5342,8.0327,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,3.1197,6.4299,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,3.2356,11.5673,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,3.2220,11.2872,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.5342,7.9287,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,3.1197,6.5051,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,3.2356,11.5210,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,3.2220,11.3295,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.5342,7.7204,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,3.1197,6.4539,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,3.2356,11.3450,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,3.2220,11.1913,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.5342,7.5122,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,3.1197,6.5453,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,3.2356,11.3420,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,3.2220,11.0672,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.5342,6.8311,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,3.1197,6.1835,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,3.2356,10.9579,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,3.2220,10.7879,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.5342,5.8233,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,3.1197,5.5709,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,3.2356,10.3893,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,3.2220,10.3310,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.5342,5.7014,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,3.1197,5.5972,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,3.2356,10.4316,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,3.2220,10.3843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.5342,5.7233,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,3.1197,5.6170,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,3.2356,10.4776,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,3.2220,10.4579,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.5342,5.7254,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,3.1197,5.6234,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,3.2356,10.4562,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,3.2220,10.4062,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.5342,5.7855,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,3.1197,5.6288,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,3.2356,10.5460,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,3.2220,10.5214,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.5342,5.8727,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,3.1197,5.7388,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,3.2356,10.8035,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,3.2220,10.7912,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.5342,6.1186,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,3.1197,5.9562,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,3.2356,10.9665,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,3.2220,10.9081,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.5342,6.2476,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,3.1197,6.0033,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,3.2356,11.1179,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,3.2220,11.0739,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.5342,6.6182,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,3.1197,6.3070,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,3.2356,11.4275,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,3.2220,11.2293,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.5342,7.3225,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,3.1197,6.3122,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,3.2356,10.6932,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,3.2220,10.4578,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.5342,7.3266,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,3.1197,6.3394,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,3.2356,9.5772,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,3.2220,10.5172,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.5342,6.9348,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,3.1197,6.1387,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,3.2356,10.4337,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,3.2220,10.7398,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.5342,6.8537,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,3.1197,6.3667,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,3.2356,11.5021,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,3.2220,11.5134,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.5342,7.6587,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,3.1197,6.3690,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,3.2356,11.5151,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,3.2220,11.4073,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.5342,7.3744,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,3.1197,6.3056,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,3.2356,11.2149,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,3.2220,10.9519,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.5342,7.9935,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,3.1197,6.3689,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,3.2356,11.3918,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,3.2220,11.9685,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.5342,7.5550,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,3.1197,6.7335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,3.2356,11.7850,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,3.2220,11.2925,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.5342,7.9594,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,3.1197,6.2794,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,3.2356,11.1655,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,3.2220,10.9345,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.5342,6.9605,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,3.1197,6.1596,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,3.2356,10.8216,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,3.2220,10.8453,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.5342,7.6014,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,3.1197,6.6874,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,3.2356,10.9753,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,3.2220,10.9621,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.5342,6.9607,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,3.1197,6.2682,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,3.2356,10.4175,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,3.2220,10.5798,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.5342,7.0512,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,3.1197,6.1971,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,3.2356,11.0080,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,3.2220,10.9236,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.5342,7.0956,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,3.1197,6.1645,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,3.2356,10.6235,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,3.2220,10.6412,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.5342,7.0790,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,3.1197,6.3491,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,3.2356,10.7927,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,3.2220,10.7565,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.5342,7.0096,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,3.1197,6.2497,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,3.2356,10.6696,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,3.2220,10.5870,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.5342,7.0192,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,3.1197,6.2644,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,3.2356,10.9775,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,3.2220,10.7105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.5342,7.3735,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,3.1197,6.1163,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,3.2356,11.0979,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,3.2220,10.9837,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.5342,7.0517,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,3.1197,6.2157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,3.2356,11.1235,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,3.2220,10.7885,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.5342,7.0695,0.0415,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,3.1197,6.0791,0.0526,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,3.2356,10.5053,0.0215,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,3.2220,10.2961,0.0585,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.5342,8.1060,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,3.1197,7.0969,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,3.2356,10.9940,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,3.2220,10.7832,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.5342,6.3572,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,3.1197,6.1455,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,3.2356,10.5614,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,3.2220,10.4007,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.5342,7.0488,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,3.1197,6.1745,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,3.2356,11.4139,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,3.2220,11.2992,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.5342,6.4368,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,3.1197,5.9882,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,3.2356,10.3706,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,3.2220,10.2950,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.5342,6.6842,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,3.1197,6.1593,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,3.2356,10.7529,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,3.2220,10.3657,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.5342,6.6762,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,3.1197,6.1451,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,3.2356,10.7430,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,3.2220,10.5680,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.5342,7.3919,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,3.1197,6.7326,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,3.2356,10.7176,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,3.2220,10.9748,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.5342,7.2387,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,3.1197,6.5700,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,3.2356,11.4731,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,3.2220,11.2323,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.5342,7.2284,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,3.1197,6.2651,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,3.2356,10.9912,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,3.2220,10.6037,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.5342,6.9361,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,3.1197,6.2596,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,3.2356,10.8332,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,3.2220,10.8824,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.5342,7.0224,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,3.1197,6.3195,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,3.2356,10.6020,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,3.2220,11.1528,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.5342,7.0485,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,3.1197,6.2958,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,3.2356,10.5602,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,3.2220,10.4164,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.5342,6.4138,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,3.1197,6.0129,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,3.2356,10.8775,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,3.2220,10.6722,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.5342,6.6515,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,3.1197,6.1734,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,3.2356,11.1392,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,3.2220,11.0147,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.5342,6.3286,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,3.1197,6.0656,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,3.2356,11.1877,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,3.2220,11.1535,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.5342,6.1845,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,3.1197,6.0400,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,3.2356,10.9446,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,3.2220,10.9300,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.5342,6.2096,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,3.1197,6.0336,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,3.2356,10.9035,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,3.2220,10.9392,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.5342,6.1458,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,3.1197,5.9867,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,3.2356,10.8687,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,3.2220,10.8714,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.5342,6.1911,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,3.1197,6.5715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,3.2356,9.2616,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,3.2220,9.8912,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.5342,6.7277,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,3.1197,6.2628,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,3.2356,11.0942,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,3.2220,10.9144,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.5342,6.9365,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,3.1197,6.2322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,3.2356,10.0449,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,3.2220,9.9567,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.5342,6.9920,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,3.1197,6.2215,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,3.2356,10.4376,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,3.2220,10.4187,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.5342,6.7912,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,3.1197,6.3168,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,3.2356,10.5264,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,3.2220,10.7480,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.5342,6.9553,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,3.1197,6.3078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,3.2356,10.7671,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,3.2220,10.8112,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.5342,7.5700,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,3.1197,6.6572,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,3.2356,11.0704,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,3.2220,10.9605,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.5342,6.9871,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,3.1197,6.2828,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,3.2356,10.6780,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,3.2220,10.4693,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.5342,7.7452,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,3.1197,6.8885,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,3.2356,10.4337,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,3.2220,10.7355,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.5342,7.2169,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,3.1197,6.1753,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,3.2356,10.8017,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,3.2220,10.7712,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.5342,6.9770,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,3.1197,6.1160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,3.2356,11.1280,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,3.2220,10.9112,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.5342,6.9983,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,3.1197,6.2285,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,3.2356,11.1765,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,3.2220,10.9342,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.5342,7.6009,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,3.1197,6.5858,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,3.2356,10.4486,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,3.2220,10.6214,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.5342,7.3807,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,3.1197,6.4892,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,3.2356,11.2267,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,3.2220,10.9236,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.5342,7.2872,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,3.1197,6.3125,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,3.2356,10.8865,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,3.2220,10.8978,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.5342,7.2328,0.1017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,3.1197,6.3430,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,3.2356,10.8806,0.0454,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,3.2220,10.7725,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.5342,6.9748,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,3.1197,6.1109,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,3.2356,10.8029,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,3.2220,10.6959,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.5342,6.1984,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,3.1197,5.8997,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,3.2356,11.3198,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,3.2220,11.2178,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.5342,7.2354,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,3.1197,6.1681,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,3.2356,9.5233,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,3.2220,10.5826,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.5342,6.8944,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,3.1197,6.2484,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,3.2356,10.9483,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,3.2220,10.6246,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.5342,5.8323,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,3.1197,5.6030,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,3.2356,10.6383,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,3.2220,10.5363,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.5342,5.9823,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,3.1197,5.6913,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,3.2356,10.5122,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,3.2220,10.4809,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.5342,5.7590,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,3.1197,5.6522,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,3.2356,10.5445,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,3.2220,10.5426,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.5342,5.7492,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,3.1197,5.7023,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,3.2356,10.5256,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,3.2220,10.4900,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.5342,5.8423,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,3.1197,5.7124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,3.2356,10.4220,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,3.2220,10.3457,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.5342,6.1855,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,3.1197,5.9238,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,3.2356,10.8208,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,3.2220,10.7472,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.5342,5.9037,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,3.1197,5.7799,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,3.2356,10.6286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,3.2220,10.5710,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.5342,6.6022,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,3.1197,5.9672,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,3.2356,10.7411,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,3.2220,10.5479,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.5342,7.0704,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,3.1197,6.3970,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,3.2356,10.4899,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,3.2220,10.6605,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.5342,6.9162,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,3.1197,6.2675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,3.2356,10.4485,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,3.2220,10.7710,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.5342,6.9597,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,3.1197,6.2815,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,3.2356,10.7065,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,3.2220,10.7088,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.5342,7.1178,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,3.1197,6.2664,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,3.2356,10.3447,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,3.2220,10.7257,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.5342,7.2863,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,3.1197,6.2944,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,3.2356,11.6241,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,3.2220,11.4021,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.5342,7.1656,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,3.1197,6.2346,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,3.2356,10.5181,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,3.2220,10.6702,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.5342,7.2940,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,3.1197,6.2785,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,3.2356,10.4360,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,3.2220,10.7405,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.5342,7.0394,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,3.1197,6.2492,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,3.2356,10.9789,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,3.2220,10.8166,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.5342,7.0538,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +701,3.1197,6.2060,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,3.2356,10.9691,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,3.2220,11.0410,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.5342,7.3826,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +705,3.1197,6.6381,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,3.2356,11.3620,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,3.2220,11.3340,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.5342,7.0292,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +709,3.1197,6.3359,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,3.2356,10.7227,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,3.2220,10.6378,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,5.5342,7.1275,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +713,3.1197,6.1934,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,3.2356,10.9806,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,3.2220,10.8207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,5.5342,6.9250,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +717,3.1197,6.2715,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,3.2356,11.5556,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,3.2220,11.2382,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,5.5342,44.6244,0.0150,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,3.1197,31.3670,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,3.2356,27.8148,0.0040,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,3.2220,28.6055,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.5342,5.9418,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,3.1197,5.8220,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,3.2356,10.7684,0.0265,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,3.2220,10.7823,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.5342,5.6781,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,3.1197,5.7073,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,3.2356,10.4710,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,3.2220,10.5140,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.5342,5.6677,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,3.1197,5.5110,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,3.2356,10.6151,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,3.2220,10.5994,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.5342,5.9532,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,3.1197,5.8793,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,3.2356,10.8842,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,3.2220,10.8479,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.5342,5.8726,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,3.1197,5.8020,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,3.2356,10.7419,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,3.2220,10.7289,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.5342,6.0901,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,3.1197,5.9549,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,3.2356,10.9782,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,3.2220,10.9534,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.5342,6.0004,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,3.1197,5.9322,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,3.2356,10.8173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,3.2220,10.8210,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.5342,5.8701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,3.1197,5.7898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,3.2356,10.7492,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,3.2220,10.7393,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.5342,5.9177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,3.1197,5.8953,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,3.2356,10.9020,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,3.2220,10.9611,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.5342,6.1668,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,3.1197,6.0806,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,3.2356,11.1073,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,3.2220,11.1306,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.5342,6.1085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,3.1197,6.0387,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,3.2356,11.1053,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,3.2220,11.0819,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.5342,6.1982,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,3.1197,6.1119,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,3.2356,11.1942,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,3.2220,11.1105,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.5342,6.1449,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,3.1197,6.0930,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,3.2356,11.0712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,3.2220,11.0437,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.5342,6.1579,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,3.1197,6.1000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,3.2356,11.0131,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,3.2220,11.0635,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.5342,6.2481,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,3.1197,6.1158,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,3.2356,11.6259,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,3.2220,11.5270,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.5342,6.6898,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,3.1197,6.4842,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,3.2356,11.4472,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,3.2220,11.2199,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.5342,7.0974,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,3.1197,6.2830,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,3.2356,11.3146,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,3.2220,11.1203,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.5342,7.0076,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,3.1197,6.4308,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,3.2356,10.8953,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,3.2220,10.8594,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.5342,7.1390,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,3.1197,6.4639,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,3.2356,11.0605,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,3.2220,11.0497,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.5342,7.2764,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,3.1197,6.4062,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,3.2356,11.5324,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,3.2220,11.2550,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.5342,8.0256,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,3.1197,7.1065,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,3.2356,11.0548,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,3.2220,10.8003,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.5342,7.3658,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,3.1197,6.3826,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,3.2356,11.6787,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,3.2220,11.5150,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.5342,9.1030,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,3.1197,8.3145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,3.2356,11.3100,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,3.2220,11.0262,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.5342,7.0569,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,3.1197,6.1910,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,3.2356,11.4671,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,3.2220,11.1854,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.5342,7.1328,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,3.1197,6.1404,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,3.2356,11.3951,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,3.2220,11.1235,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.5342,7.4570,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,3.1197,6.7165,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,3.2356,12.7682,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,3.2220,12.4472,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.5342,6.5980,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,3.1197,7.1377,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,3.2356,10.4475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,3.2220,12.0025,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.5342,5.5735,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,3.1197,6.4867,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,3.2356,10.3940,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,3.2220,11.4299,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.5342,5.6071,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,3.1197,5.5515,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,3.2356,10.3755,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,3.2220,12.1102,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.5342,5.8152,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,3.1197,5.7095,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,3.2356,10.4728,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,3.2220,10.4091,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.5342,5.9195,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,3.1197,5.9204,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,3.2356,10.8373,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,3.2220,10.7692,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.5342,5.8900,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,3.1197,6.9163,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,3.2356,10.1963,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,3.2220,11.5644,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.5342,6.1400,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,3.1197,5.8787,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,3.2356,10.0684,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,3.2220,12.1524,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.5342,6.8637,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,3.1197,6.3218,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,3.2356,10.8133,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,3.2220,10.7879,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.5342,6.7278,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,3.1197,6.4353,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,3.2356,10.7350,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,3.2220,10.8067,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.5342,7.4315,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,3.1197,7.0363,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,3.2356,11.3577,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,3.2220,10.4573,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.5342,6.7313,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,3.1197,5.9988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,3.2356,10.2253,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,3.2220,12.2312,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.5342,7.1606,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,3.1197,6.1076,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,3.2356,11.8822,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,3.2220,11.6425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.5342,6.3641,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,3.1197,6.0121,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,3.2356,9.1344,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,3.2220,12.0332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.5342,6.6188,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,3.1197,6.5245,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,3.2356,10.6171,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,3.2220,10.3700,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.5342,6.3714,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,3.1197,6.0724,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,3.2356,11.0558,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,3.2220,10.7559,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.5342,6.0402,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,3.1197,7.5952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,3.2356,10.1438,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,3.2220,12.2333,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.5342,5.9197,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,3.1197,5.6581,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,3.2356,10.3062,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,3.2220,13.4915,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.5342,6.4852,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,3.1197,5.8382,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,3.2356,10.6325,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,3.2220,10.5905,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.5342,6.8287,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,3.1197,6.0957,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,3.2356,10.0794,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,3.2220,10.1962,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.5342,6.5376,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,3.1197,6.1078,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,3.2356,10.2884,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,3.2220,10.1911,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.5342,6.5501,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,3.1197,6.1291,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,3.2356,10.4738,0.0253,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,3.2220,10.3988,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.5342,6.6744,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,3.1197,9.0831,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,3.2356,10.9200,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,3.2220,10.6925,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.5342,6.4672,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,3.1197,6.0458,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,3.2356,10.9386,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,3.2220,10.7927,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.5342,6.5666,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,3.1197,6.2125,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,3.2356,11.1315,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,3.2220,11.0256,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.5342,7.8057,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,3.1197,6.5624,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,3.2356,11.8088,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,3.2220,11.5938,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.5342,10.7175,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,3.1197,13.6086,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,3.2356,13.4146,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,3.2220,13.2319,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.5342,16.7434,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,3.1197,6.1724,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,3.2356,10.6109,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,3.2220,10.6642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.5342,6.0905,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,3.1197,5.9168,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,3.2356,11.3412,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,3.2220,11.2330,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.5342,7.0311,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,3.1197,6.2272,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,3.2356,12.0973,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,3.2220,11.8339,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.5342,7.1064,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,3.1197,6.2136,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,3.2356,10.9547,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,3.2220,10.7945,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.5342,7.5427,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,3.1197,6.3535,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,3.2356,11.4655,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,3.2220,11.3378,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.5342,7.2437,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,3.1197,6.3171,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,3.2356,10.7981,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,3.2220,10.7716,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.5342,6.9198,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,3.1197,6.2713,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,3.2356,11.2884,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,3.2220,11.1170,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.5342,7.5474,0.0459,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,3.1197,6.2890,0.0300,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,3.2356,11.5578,0.0843,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,3.2220,11.7300,0.0579,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,5.5342,6.8251,0.0286,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,3.1197,6.3464,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,3.2356,11.1116,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,3.2220,10.8849,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,5.5342,5.9662,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,3.1197,6.0817,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,3.2356,9.8752,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,3.2220,10.2201,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,5.5342,6.1189,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,3.1197,5.6653,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,3.2356,10.5417,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,3.2220,10.4519,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,5.5342,5.6746,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,3.1197,5.5540,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,3.2356,10.3135,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,3.2220,10.3080,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,5.5342,5.8942,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,3.1197,5.5385,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,3.2356,10.4121,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,3.2220,10.3887,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,5.5342,6.0383,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,3.1197,5.6841,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,3.2356,10.5270,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,3.2220,10.5269,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,5.5342,5.7623,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,3.1197,5.6113,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,3.2356,10.5683,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,3.2220,10.5530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,5.5342,5.7304,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,3.1197,5.6403,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,3.2356,10.6318,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,3.2220,10.6524,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,5.5342,6.0631,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,3.1197,5.8045,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,3.2356,10.7150,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,3.2220,10.6700,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,5.5342,5.9057,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,3.1197,5.8250,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,3.2356,10.7867,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,3.2220,10.7309,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,5.5342,6.1152,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,3.1197,5.9992,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,3.2356,11.0594,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,3.2220,10.9697,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,5.5342,6.3018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,3.1197,6.1186,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,3.2356,10.9980,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,3.2220,10.9648,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,5.5342,6.4268,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,3.1197,6.0631,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,3.2356,11.0765,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,3.2220,10.9439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,5.5342,7.0920,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,3.1197,6.6005,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,3.2356,11.3774,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,3.2220,11.1867,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,5.5342,7.3811,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,3.1197,6.3687,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,3.2356,10.8458,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,3.2220,10.6483,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,5.5342,7.4208,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,3.1197,6.2410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,3.2356,10.1229,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,3.2220,10.0828,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,5.5342,7.2230,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,3.1197,6.4207,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,3.2356,11.0290,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,3.2220,10.8917,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,5.5342,7.0470,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,3.1197,6.2847,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,3.2356,10.6584,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,3.2220,10.6836,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,5.5342,6.8893,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,3.1197,6.2677,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,3.2356,10.6126,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,3.2220,10.6337,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,5.5342,6.7354,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,3.1197,6.2085,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,3.2356,11.0551,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,3.2220,10.8945,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,5.5342,6.4339,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,3.1197,6.0660,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,3.2356,10.9680,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,3.2220,10.9489,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,5.5342,6.1679,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,3.1197,6.0255,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,3.2356,10.9348,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,3.2220,10.9073,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,5.5342,6.3583,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,3.1197,6.1117,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,3.2356,10.8978,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,3.2220,10.8743,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,5.5342,7.1818,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,3.1197,6.2646,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,3.2356,11.3785,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,3.2220,11.3468,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,5.5342,7.5860,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,3.1197,6.8003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,3.2356,11.0825,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,3.2220,10.8471,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,5.5342,7.1308,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,3.1197,6.2421,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,3.2356,11.1318,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,3.2220,10.9127,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,5.5342,7.3410,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,3.1197,6.3125,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,3.2356,11.6882,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,3.2220,11.2777,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,5.5342,7.0335,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,3.1197,6.2881,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,3.2356,11.0750,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,3.2220,10.5184,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,5.5342,7.0738,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,3.1197,6.3019,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,3.2356,10.8220,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,3.2220,10.7085,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,5.5342,7.0854,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,3.1197,6.2715,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,3.2356,11.0880,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,3.2220,10.6506,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,5.5342,7.2704,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,3.1197,6.4825,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,3.2356,11.0207,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,3.2220,10.8277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,5.5342,7.4684,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,3.1197,6.3436,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,3.2356,11.3412,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,3.2220,11.3004,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,5.5342,7.1635,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,3.1197,6.5030,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,3.2356,9.8628,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,3.2220,10.9176,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,5.5342,6.8634,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,3.1197,6.4705,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,3.2356,10.5850,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,3.2220,10.7807,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,5.5342,7.2407,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,3.1197,6.3767,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,3.2356,10.7940,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,3.2220,10.7262,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,5.5342,7.0934,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,3.1197,6.7465,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,3.2356,10.7835,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,3.2220,10.7470,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,5.5342,7.2238,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,3.1197,6.3505,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,3.2356,16.4722,0.0272,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,3.2220,16.4327,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,5.5342,9.7131,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,3.1197,7.0542,0.0362,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,3.2356,6.1537,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,3.2220,10.9680,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,5.5342,6.7019,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,3.1197,6.1975,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,3.2356,11.2002,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,3.2220,11.0421,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,5.5342,6.2130,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,3.1197,5.9335,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,3.2356,8.5258,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,3.2220,10.9564,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,5.5342,6.3769,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,3.1197,5.9875,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,3.2356,10.7162,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,3.2220,10.5054,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,5.5342,6.4119,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,3.1197,6.0259,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,3.2356,10.3317,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,3.2220,10.2533,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,5.5342,6.4186,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,3.1197,5.9085,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,3.2356,10.6435,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,3.2220,10.4378,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,5.5342,7.2650,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,3.1197,6.3919,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,3.2356,11.2952,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,3.2220,11.1068,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.5342,7.0577,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,3.1197,6.3678,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,3.2356,10.7502,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,3.2220,10.4914,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.5342,6.6467,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,3.1197,6.1117,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,3.2356,18.8348,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,3.2220,18.9093,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.5342,6.2740,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,3.1197,5.9967,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,3.2356,11.1110,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,3.2220,11.1188,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,5.5342,6.6430,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,3.1197,6.2423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,3.2356,10.7361,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,3.2220,10.9413,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,5.5342,7.3587,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,3.1197,6.2947,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,3.2356,11.4606,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,3.2220,11.2269,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,5.5342,6.6596,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,3.1197,6.5894,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,3.2356,11.2955,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,3.2220,11.1080,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,5.5342,8.2855,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,3.1197,6.2190,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,3.2356,11.4832,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,3.2220,11.2179,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.5342,7.4285,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,3.1197,6.6229,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,3.2356,10.7244,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,3.2220,10.7927,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.5342,7.2207,0.1895,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,3.1197,6.5443,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,3.2356,12.2320,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,3.2220,12.1863,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,5.5342,7.3984,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,3.1197,6.3915,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,3.2356,11.9613,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,3.2220,11.8551,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,5.5342,7.0825,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,3.1197,6.2650,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,3.2356,10.7284,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,3.2220,10.8237,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,5.5342,7.0736,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,3.1197,6.3091,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,3.2356,10.7858,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,3.2220,10.8565,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,5.5342,7.3453,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,3.1197,6.3680,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,3.2356,11.7210,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,3.2220,11.3326,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,5.5342,7.2857,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,3.1197,6.2590,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,3.2356,11.2284,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,3.2220,11.2668,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,5.5342,7.1885,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,3.1197,6.2684,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,3.2356,11.2981,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,3.2220,10.8781,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.5342,7.0420,0.0522,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,3.1197,6.3636,0.0275,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,3.2356,11.0645,0.0252,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,3.2220,11.0092,0.0670,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,5.5342,7.1094,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,3.1197,6.4512,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,3.2356,11.2561,0.0526,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,3.2220,10.7251,0.0215,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,5.5342,7.0775,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,3.1197,6.4588,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,3.2356,10.7110,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,3.2220,9.7620,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,5.5342,6.9842,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,3.1197,6.1519,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,3.2356,10.7402,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,3.2220,10.4958,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,5.5342,7.6146,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,3.1197,6.4069,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,3.2356,11.3655,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,3.2220,11.0470,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,5.5342,7.0292,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,3.1197,6.2935,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,3.2356,10.6304,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,3.2220,10.3111,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,5.5342,7.4768,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,3.1197,6.6030,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,3.2356,11.2935,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,3.2220,10.9844,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,5.5342,6.4842,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,3.1197,6.6283,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,3.2356,10.1896,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,3.2220,10.2782,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,5.5342,6.4496,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,3.1197,6.1612,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,3.2356,10.2825,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,3.2220,10.2872,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,5.5342,6.8345,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,3.1197,6.1082,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,3.2356,10.9422,0.0412,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,3.2220,10.8074,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,5.5342,6.8665,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,3.1197,6.2116,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,3.2356,10.9516,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,3.2220,10.8240,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,5.5342,6.5121,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,3.1197,5.8999,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,3.2356,10.2285,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,3.2220,10.1595,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,5.5342,6.4234,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,3.1197,6.0264,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,3.2356,10.2096,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,3.2220,10.1367,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,5.5342,6.4713,0.0231,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,3.1197,6.1869,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,3.2356,11.8037,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,3.2220,11.7363,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,5.5342,7.1501,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,3.1197,6.2133,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,3.2356,11.4020,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,3.2220,11.2902,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,5.5342,8.0415,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,3.1197,6.8190,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,3.2356,11.4993,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,3.2220,11.7933,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,5.5342,7.7901,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,3.1197,6.4013,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,3.2356,11.2278,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,3.2220,11.2037,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,5.5342,7.6710,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,3.1197,6.4303,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,3.2356,11.3086,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,3.2220,11.0640,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,5.5342,7.6046,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,3.1197,6.3713,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,3.2356,12.6730,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,3.2220,12.6242,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,5.5342,7.6636,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,3.1197,6.3655,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,3.2356,11.4942,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,3.2220,11.1205,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,5.5342,6.9698,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,3.1197,6.2331,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,3.2356,11.1996,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,3.2220,10.8141,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.5342,7.3075,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,3.1197,6.1652,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,3.2356,10.8921,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,3.2220,10.6451,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.5342,7.3158,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,3.1197,6.1372,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,3.2356,10.6655,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,3.2220,10.8705,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,5.5342,7.0481,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,3.1197,6.1995,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,3.2356,11.1612,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,3.2220,10.9425,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,5.5342,7.1989,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,3.1197,6.4635,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,3.2356,10.6445,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,3.2220,10.5004,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,5.5342,7.0660,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,3.1197,6.3373,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,3.2356,10.8673,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,3.2220,10.5835,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,5.5342,7.0124,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,3.1197,6.2210,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,3.2356,10.8750,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,3.2220,10.8790,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,5.5342,7.0740,0.0183,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,3.1197,6.2257,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,3.2356,10.9934,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,3.2220,10.7471,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.5342,8.1950,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,3.1197,7.3084,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,3.2356,11.2743,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,3.2220,11.0484,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,5.5342,7.1678,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,3.1197,6.1993,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,3.2356,11.3382,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,3.2220,11.1452,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,5.5342,7.1210,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,3.1197,7.0500,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,3.2356,10.8092,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,3.2220,10.7045,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,5.5342,6.6480,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,3.1197,6.1670,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,3.2356,11.1105,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,3.2220,10.9838,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,5.5342,6.4144,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,3.1197,6.1471,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,3.2356,11.4371,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,3.2220,11.2202,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,5.5342,7.4131,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,3.1197,6.4855,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,3.2356,10.8808,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,3.2220,10.9499,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,5.5342,7.6183,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,3.1197,6.4950,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,3.2356,10.6352,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,3.2220,10.6293,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.5342,7.1054,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,3.1197,6.3478,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,3.2356,10.6375,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,3.2220,10.7509,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,5.5342,7.1151,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,3.1197,6.2879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,3.2356,11.4459,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,3.2220,11.0155,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,5.5342,7.2406,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,3.1197,6.3307,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,3.2356,16.7463,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,3.2220,16.5000,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,5.5342,6.9781,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,3.1197,6.3445,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,3.2356,11.0342,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,3.2220,10.9908,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,5.5342,5.7895,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,3.1197,5.5937,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,3.2356,10.5281,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,3.2220,10.4335,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,5.5342,6.1015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,3.1197,5.6960,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,3.2356,10.5145,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,3.2220,10.4591,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.5342,5.9852,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,3.1197,5.7488,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,3.2356,10.9234,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,3.2220,10.8287,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.5342,6.8210,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,3.1197,5.9984,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,3.2356,10.6395,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,3.2220,10.3731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.5342,6.2137,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,3.1197,5.8201,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,3.2356,10.3537,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,3.2220,10.2042,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,5.5342,6.9297,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,3.1197,6.0916,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,3.2356,8.7314,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,3.2220,10.5865,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,5.5342,6.1066,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,3.1197,5.9331,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,3.2356,10.7888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,3.2220,10.7843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,5.5342,7.1735,0.0445,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,3.1197,6.3797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,3.2356,11.2900,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,3.2220,11.2162,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,5.5342,7.3196,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,3.1197,6.5403,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,3.2356,10.6156,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,3.2220,10.7706,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.5342,7.5023,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,3.1197,6.2346,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,3.2356,11.6261,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,3.2220,11.4082,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.5342,7.4549,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,3.1197,6.3709,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,3.2356,11.1345,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,3.2220,10.9353,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.5342,7.2117,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,3.1197,6.2280,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,3.2356,10.2475,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,3.2220,10.8801,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,5.5342,7.1485,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,3.1197,6.2636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,3.2356,12.0382,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,3.2220,11.6657,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,5.5342,7.3565,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,3.1197,6.2803,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,3.2356,11.2655,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,3.2220,10.9654,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,5.5342,7.4520,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,3.1197,6.2312,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,3.2356,11.7224,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,3.2220,11.5910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,5.5342,7.0993,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,3.1197,6.1885,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,3.2356,9.0935,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,3.2220,10.6628,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.5342,6.9516,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,3.1197,6.2544,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,3.2356,10.9301,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,3.2220,10.7936,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.5342,7.3215,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,3.1197,6.5232,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,3.2356,10.7517,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,3.2220,10.3105,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.5342,7.1885,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,3.1197,6.3506,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,3.2356,11.6722,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,3.2220,11.3468,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1432,5.5342,7.0378,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,3.1197,6.3007,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,3.2356,10.5892,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,3.2220,10.6012,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1436,5.5342,7.6557,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,3.1197,7.3019,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,3.2356,11.7155,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1439,3.2220,11.4950,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.txt b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.txt new file mode 100644 index 0000000..812e140 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=off +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=5.999 +effective_logical_fps=60.011 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.199 +p95_encode_latency_ms=14.330 +max_encode_latency_ms=132.700 +avg_steady_encode_latency_ms=13.041 +p95_steady_encode_latency_ms=14.355 +max_steady_encode_latency_ms=132.700 +avg_tile_encode_latency_ms=8.833 +p95_tile_encode_latency_ms=11.532 +avg_max_tile_encode_latency_ms=11.195 +p95_max_tile_encode_latency_ms=12.112 +avg_steady_max_tile_encode_latency_ms=11.176 +p95_steady_max_tile_encode_latency_ms=12.133 +payload_bytes=4710098 +send_target=none +csv=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_deadline.md b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_deadline.md new file mode 100644 index 0000000..afd0c2b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — baseline_simultaneous_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.199 | +| p95_group_latency_ms | 14.330 | +| max_group_latency_ms | 132.700 | +| effective_logical_fps | 60.011 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 240 | 66.667% | 0, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, ... | +| 16.67 | 7 | 1.944% | 0, 180, 233, 277, 278, 286, 337 | +| 20.00 | 5 | 1.389% | 0, 180, 233, 278, 286 | +| 33.33 | 2 | 0.556% | 0, 180 | +| 50.00 | 2 | 0.556% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.240 | 14.320 | 132.700 | +| 300-359 | 12.995 | 14.335 | 18.142 | diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_logical.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_logical.csv new file mode 100644 index 0000000..403c9a5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,101.0352,26.9423,231707 +1,4,0,11.2740,10.8181,65901 +2,4,0,11.0880,10.5518,36886 +3,4,0,11.1720,10.7196,69404 +4,4,0,11.0992,10.6555,87864 +5,4,0,11.1381,10.6643,53700 +6,4,0,11.1538,10.6888,24415 +7,4,0,11.1869,10.6856,15407 +8,4,0,11.1098,10.6043,12151 +9,4,0,11.1863,10.7368,11449 +10,4,0,11.8626,11.2988,8599 +11,4,0,11.5190,11.0858,6107 +12,4,0,11.6104,11.1054,5132 +13,4,0,11.5023,11.0330,3880 +14,4,0,11.6366,11.1419,4001 +15,4,0,11.5067,11.0075,3860 +16,4,0,11.5250,10.9864,4045 +17,4,0,11.5660,11.0237,3955 +18,4,0,12.4692,11.8366,3721 +19,4,0,12.5328,11.0634,3748 +20,4,0,12.3803,10.8517,3386 +21,4,0,12.8010,10.9600,2761 +22,4,0,12.6949,10.4639,2750 +23,4,0,13.0647,10.7458,2836 +24,4,0,12.8753,10.6228,2977 +25,4,0,12.8173,10.7354,2960 +26,4,0,13.0265,10.8235,3010 +27,4,0,13.1397,10.8515,2978 +28,4,0,13.2058,10.8633,2889 +29,4,0,12.8101,10.8195,2914 +30,4,0,14.4396,12.2630,2847 +31,4,0,14.2603,12.6163,3111 +32,4,0,12.5275,11.0033,2714 +33,4,0,11.7455,10.9423,2843 +34,4,0,11.9378,11.1796,2633 +35,4,0,11.2600,10.4518,2659 +36,4,0,10.9352,10.4059,2696 +37,4,0,11.1538,10.5569,2728 +38,4,0,11.0128,10.5469,2772 +39,4,0,11.3562,10.7213,2740 +40,4,0,11.3554,10.6316,2809 +41,4,0,11.0874,10.4973,2679 +42,4,0,11.9048,10.9722,2865 +43,4,0,11.9192,10.1890,2612 +44,4,0,11.7443,10.4090,2626 +45,4,0,11.3328,10.3886,2693 +46,4,0,11.5753,10.1954,2708 +47,4,0,11.6981,10.5325,2765 +48,4,0,11.9702,10.0898,2645 +49,4,0,11.6091,10.1150,2733 +50,4,0,11.8868,10.1629,2667 +51,4,0,12.1057,10.2209,2647 +52,4,0,11.8515,10.1651,2659 +53,4,0,11.9682,10.1998,2757 +54,4,0,12.9375,11.5341,2656 +55,4,0,12.3618,11.1209,2594 +56,4,0,12.7598,11.0251,2603 +57,4,0,12.8171,11.1273,2605 +58,4,0,12.6339,10.8147,2610 +59,4,0,13.3975,10.5268,2641 +60,4,0,11.5063,10.3636,442009 +61,4,0,11.9806,10.1312,52997 +62,4,0,11.8472,10.2022,26956 +63,4,0,12.1785,10.3633,26939 +64,4,0,11.8265,10.1147,22402 +65,4,0,11.8882,10.3919,15271 +66,4,0,11.7708,10.1460,12647 +67,4,0,11.8236,10.2302,10161 +68,4,0,11.9435,10.2457,9695 +69,4,0,11.9331,10.1867,5893 +70,4,0,11.9390,10.3202,5590 +71,4,0,12.1388,10.8621,5226 +72,4,0,14.5146,12.4382,5095 +73,4,0,12.3015,11.1254,5164 +74,4,0,12.8018,11.2087,4634 +75,4,0,12.7743,11.0833,5338 +76,4,0,12.9750,11.3667,2984 +77,4,0,12.7756,11.2953,2918 +78,4,0,12.8860,11.4079,3051 +79,4,0,12.9219,11.3924,3217 +80,4,0,13.1853,11.2420,3680 +81,4,0,14.1798,12.5343,3433 +82,4,0,13.3894,10.6116,3891 +83,4,0,13.1622,11.3834,2978 +84,4,0,13.1922,11.4821,2906 +85,4,0,13.2843,11.4253,2925 +86,4,0,13.3868,11.7299,3487 +87,4,0,13.6633,11.5673,2969 +88,4,0,13.4605,11.5210,2822 +89,4,0,13.1423,11.3450,3027 +90,4,0,12.9349,11.3420,2708 +91,4,0,12.0165,10.9579,2735 +92,4,0,10.9521,10.3893,2688 +93,4,0,10.9376,10.4316,2954 +94,4,0,10.9763,10.4776,3013 +95,4,0,10.9425,10.4562,2878 +96,4,0,11.0753,10.5460,3036 +97,4,0,11.3789,10.8035,2909 +98,4,0,11.6252,10.9665,2598 +99,4,0,11.7893,11.1179,2609 +100,4,0,12.1085,11.4275,2615 +101,4,0,13.1113,10.6932,2652 +102,4,0,13.7543,10.5172,2667 +103,4,0,13.0237,10.7398,2728 +104,4,0,12.5756,11.5134,2632 +105,4,0,13.4851,11.5151,2620 +106,4,0,13.4052,11.2149,2603 +107,4,0,14.7104,11.9685,2633 +108,4,0,13.3297,11.7850,2885 +109,4,0,13.5436,11.1655,2631 +110,4,0,12.3981,10.8453,2679 +111,4,0,12.7191,10.9753,2594 +112,4,0,12.6311,10.5798,2610 +113,4,0,12.6962,11.0080,2618 +114,4,0,12.8033,10.6412,2639 +115,4,0,12.7918,10.7927,2683 +116,4,0,12.7115,10.6696,2662 +117,4,0,12.6111,10.9775,2669 +118,4,0,13.0470,11.0979,2661 +119,4,0,12.5798,11.1235,2767 +120,4,0,12.5796,10.5053,412099 +121,4,0,12.6696,10.9940,58619 +122,4,0,11.3278,10.5614,48033 +123,4,0,13.0788,11.4139,38505 +124,4,0,12.2210,10.3706,33624 +125,4,0,12.1695,10.7529,18519 +126,4,0,12.4397,10.7430,15662 +127,4,0,12.8482,10.9748,11727 +128,4,0,12.8384,11.4731,10164 +129,4,0,12.6829,10.9912,8732 +130,4,0,12.7488,10.8824,8017 +131,4,0,13.4239,11.1528,5177 +132,4,0,12.6668,10.5602,3438 +133,4,0,11.8472,10.8775,3236 +134,4,0,12.0461,11.1392,3208 +135,4,0,11.9022,11.1877,3684 +136,4,0,11.6523,10.9446,3691 +137,4,0,11.6864,10.9392,3794 +138,4,0,11.6403,10.8714,3974 +139,4,0,12.4219,9.8912,3178 +140,4,0,11.9700,11.0942,3070 +141,4,0,12.9205,10.0449,3397 +142,4,0,12.7163,10.4376,2792 +143,4,0,12.8315,10.7480,2888 +144,4,0,13.0348,10.8112,2885 +145,4,0,12.7724,11.0704,3092 +146,4,0,12.9333,10.6780,2712 +147,4,0,13.0701,10.7355,2692 +148,4,0,12.7860,10.8017,2781 +149,4,0,12.6379,11.1280,2731 +150,4,0,12.7351,11.1765,2815 +151,4,0,12.8051,10.6214,2761 +152,4,0,12.8097,11.2267,3174 +153,4,0,12.5601,10.8978,2599 +154,4,0,12.9268,10.8806,2594 +155,4,0,12.5913,10.8029,2600 +156,4,0,11.9178,11.3198,2646 +157,4,0,13.9872,10.5826,2717 +158,4,0,12.2047,10.9483,2764 +159,4,0,11.2017,10.6383,2916 +160,4,0,11.1496,10.5122,2625 +161,4,0,11.2365,10.5445,2618 +162,4,0,11.1037,10.5256,2617 +163,4,0,11.0273,10.4220,2801 +164,4,0,11.5530,10.8208,2641 +165,4,0,11.3627,10.6286,2631 +166,4,0,11.8875,10.7411,2755 +167,4,0,12.8505,10.6605,2594 +168,4,0,12.8517,10.7710,2611 +169,4,0,12.6988,10.7088,2613 +170,4,0,12.9763,10.7257,2654 +171,4,0,13.5643,11.6241,2706 +172,4,0,12.8569,10.6702,2658 +173,4,0,13.1295,10.7405,2713 +174,4,0,12.7577,10.9789,2681 +175,4,0,13.2214,11.0410,2594 +176,4,0,12.8920,11.3620,2594 +177,4,0,12.7325,10.7227,2599 +178,4,0,12.6947,10.9806,2615 +179,4,0,13.2699,11.5556,2631 +180,4,0,132.6997,44.6244,231707 +181,4,0,11.3233,10.7823,65901 +182,4,0,11.0340,10.5140,36886 +183,4,0,11.2054,10.6151,69404 +184,4,0,11.4703,10.8842,87864 +185,4,0,11.2803,10.7419,53700 +186,4,0,11.4105,10.9782,24415 +187,4,0,11.3806,10.8210,15407 +188,4,0,11.2662,10.7492,12151 +189,4,0,11.5740,10.9611,11449 +190,4,0,11.7871,11.1306,8599 +191,4,0,11.7233,11.1053,6107 +192,4,0,11.8660,11.1942,5132 +193,4,0,11.7729,11.0712,3880 +194,4,0,11.7785,11.0635,4001 +195,4,0,12.3769,11.6259,3860 +196,4,0,12.7491,11.4472,4045 +197,4,0,12.6390,11.3146,3955 +198,4,0,12.9739,10.8953,3721 +199,4,0,13.2886,11.0605,3748 +200,4,0,13.1766,11.5324,3386 +201,4,0,13.1443,11.0548,2761 +202,4,0,13.4295,11.6787,2750 +203,4,0,13.2895,11.3100,2836 +204,4,0,13.0738,11.4671,2977 +205,4,0,13.0638,11.3951,2960 +206,4,0,14.6148,12.7682,3010 +207,4,0,13.3150,12.0025,2978 +208,4,0,11.8285,11.4299,2889 +209,4,0,12.6335,12.1102,2914 +210,4,0,11.1991,10.4728,2847 +211,4,0,11.5594,10.8373,3111 +212,4,0,12.6209,11.5644,2714 +213,4,0,13.9113,12.1524,2843 +214,4,0,12.6143,10.8133,2633 +215,4,0,12.4240,10.8067,2659 +216,4,0,12.7482,11.3577,2696 +217,4,0,14.3784,12.2312,2728 +218,4,0,13.5426,11.8822,2772 +219,4,0,14.6803,12.0332,2740 +220,4,0,11.6498,10.6171,2809 +221,4,0,12.3175,11.0558,2679 +222,4,0,13.7575,12.2333,2865 +223,4,0,15.2854,13.4915,2612 +224,4,0,11.7903,10.6325,2626 +225,4,0,12.1628,10.1962,2693 +226,4,0,12.4151,10.2884,2708 +227,4,0,11.8575,10.4738,2765 +228,4,0,12.1468,10.9200,2645 +229,4,0,11.7576,10.9386,2733 +230,4,0,11.9152,11.1315,2667 +231,4,0,13.6078,11.8088,2647 +232,4,0,14.9298,13.6086,2659 +233,4,0,22.4605,16.7434,2757 +234,4,0,11.9233,11.3412,2656 +235,4,0,13.6111,12.0973,2594 +236,4,0,13.1351,10.9547,2603 +237,4,0,13.3719,11.4655,2605 +238,4,0,12.9155,10.7981,2610 +239,4,0,13.1017,11.2884,2641 +240,4,0,13.9997,11.7300,442009 +241,4,0,11.9379,11.1116,52997 +242,4,0,11.6501,10.2201,26956 +243,4,0,11.2104,10.5417,26939 +244,4,0,10.8365,10.3135,22402 +245,4,0,11.1278,10.4121,15271 +246,4,0,11.4196,10.5270,12647 +247,4,0,10.9944,10.5683,10161 +248,4,0,11.0834,10.6524,9695 +249,4,0,11.3196,10.7150,5893 +250,4,0,11.4158,10.7867,5590 +251,4,0,11.7531,11.0594,5226 +252,4,0,11.8028,10.9980,5095 +253,4,0,11.8560,11.0765,5164 +254,4,0,12.2960,11.3774,4634 +255,4,0,13.1552,10.8458,5338 +256,4,0,13.0087,10.1229,2984 +257,4,0,12.7747,11.0290,2918 +258,4,0,12.7569,10.6836,3051 +259,4,0,12.6641,10.6337,3217 +260,4,0,12.0701,11.0551,3680 +261,4,0,11.9499,10.9680,3433 +262,4,0,11.6747,10.9348,3891 +263,4,0,11.7603,10.8978,2978 +264,4,0,13.1545,11.3785,2906 +265,4,0,12.9129,11.0825,2925 +266,4,0,12.5772,11.1318,3487 +267,4,0,13.6254,11.6882,2969 +268,4,0,12.4258,11.0750,2822 +269,4,0,12.7676,10.8220,3027 +270,4,0,13.1537,11.0880,2708 +271,4,0,12.7214,11.0207,2735 +272,4,0,13.4448,11.3412,2688 +273,4,0,13.8462,10.9176,2954 +274,4,0,13.0068,10.7807,3013 +275,4,0,12.9106,10.7940,2878 +276,4,0,12.9279,10.7835,3036 +277,4,0,18.5814,16.4722,2909 +278,4,0,20.5829,10.9680,2598 +279,4,0,12.0223,11.2002,2609 +280,4,0,14.5216,10.9564,2615 +281,4,0,12.1152,10.7162,2652 +282,4,0,11.9483,10.3317,2667 +283,4,0,11.9488,10.6435,2728 +284,4,0,12.5911,11.2952,2632 +285,4,0,12.9848,10.7502,2620 +286,4,0,20.4699,18.9093,2603 +287,4,0,11.7498,11.1188,2633 +288,4,0,12.5548,10.9413,2885 +289,4,0,12.9863,11.4606,2631 +290,4,0,12.0795,11.2955,2679 +291,4,0,14.0901,11.4832,2594 +292,4,0,12.7485,10.7927,2610 +293,4,0,14.3168,12.2320,2618 +294,4,0,13.5495,11.9613,2639 +295,4,0,12.9670,10.8237,2683 +296,4,0,12.8365,10.8565,2662 +297,4,0,13.6289,11.7210,2669 +298,4,0,13.4470,11.2668,2661 +299,4,0,13.1563,11.2981,2767 +300,4,0,13.2147,11.0645,412099 +301,4,0,12.9008,11.2561,58619 +302,4,0,13.1055,10.7110,48033 +303,4,0,12.5687,10.7402,38505 +304,4,0,13.5737,11.3655,33624 +305,4,0,12.8378,10.6304,18519 +306,4,0,12.8163,11.2935,15662 +307,4,0,12.3228,10.2782,11727 +308,4,0,12.0495,10.2872,10164 +309,4,0,12.5925,10.9422,8732 +310,4,0,12.5894,10.9516,8017 +311,4,0,11.9370,10.2285,5177 +312,4,0,11.8500,10.2096,3438 +313,4,0,13.0758,11.8037,3236 +314,4,0,12.9128,11.4020,3208 +315,4,0,14.0411,11.7933,3684 +316,4,0,13.6156,11.2278,3691 +317,4,0,13.2607,11.3086,3794 +318,4,0,14.6720,12.6730,3974 +319,4,0,13.3061,11.4942,3178 +320,4,0,13.0582,11.1996,3070 +321,4,0,14.4770,10.8921,3397 +322,4,0,12.8829,10.8705,2792 +323,4,0,13.1555,11.1612,2888 +324,4,0,13.1007,10.6445,2885 +325,4,0,12.8472,10.8673,3092 +326,4,0,12.7977,10.8790,2712 +327,4,0,12.9596,10.9934,2692 +328,4,0,13.0796,11.2743,2781 +329,4,0,12.8295,11.3382,2731 +330,4,0,12.8927,10.8092,2815 +331,4,0,12.1396,11.1105,2761 +332,4,0,12.3004,11.4371,3174 +333,4,0,12.7477,10.9499,2599 +334,4,0,12.8105,10.6352,2594 +335,4,0,12.7770,10.7509,2600 +336,4,0,13.1421,11.4459,2646 +337,4,0,18.1422,16.7463,2717 +338,4,0,12.0768,11.0342,2764 +339,4,0,10.9981,10.5281,2916 +340,4,0,11.3523,10.5145,2625 +341,4,0,11.6892,10.9234,2618 +342,4,0,12.3938,10.6395,2617 +343,4,0,11.8051,10.3537,2801 +344,4,0,14.2871,10.5865,2641 +345,4,0,11.5928,10.7888,2631 +346,4,0,13.1649,11.2900,2755 +347,4,0,13.0657,10.7706,2594 +348,4,0,13.3372,11.6261,2611 +349,4,0,13.0450,11.1345,2613 +350,4,0,13.3727,10.8801,2654 +351,4,0,13.8067,12.0382,2706 +352,4,0,13.0627,11.2655,2658 +353,4,0,13.7946,11.7224,2713 +354,4,0,14.3270,10.6628,2681 +355,4,0,12.7469,10.9301,2594 +356,4,0,12.6320,10.7517,2594 +357,4,0,13.0233,11.6722,2599 +358,4,0,12.9750,10.6012,2615 +359,4,0,13.7511,11.7155,2631 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/metadata.txt b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/metadata.txt new file mode 100644 index 0000000..53ad4b4 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/metadata.txt @@ -0,0 +1,8 @@ +timestamp=2026-05-15_1529 +duration_seconds=6 +reset_every=180 +stagger_frames=30 +run_fallback=0 +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.csv new file mode 100644 index 0000000..a564bd2 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.9344,29.3515,0.0284,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8692,27.8805,0.0133,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8737,26.8768,0.0130,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8054,28.1550,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,4.9344,5.7458,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8692,5.6288,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8737,10.5225,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8054,10.5338,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,4.9344,5.7991,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8692,5.7169,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8737,10.6197,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8054,10.6278,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,4.9344,5.7431,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8692,5.6777,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8737,10.6288,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8054,10.6481,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,4.9344,5.7449,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8692,5.7671,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8737,10.7243,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8054,10.7281,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,4.9344,5.8172,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8692,5.7677,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8737,10.7199,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8054,10.7193,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,4.9344,5.7969,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8692,5.8238,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8737,10.5935,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8054,10.6485,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,4.9344,5.7038,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8692,5.6607,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8737,10.4888,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8054,10.5191,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,4.9344,5.7012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8692,5.6688,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8737,10.4348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8054,10.4406,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,4.9344,5.8751,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8692,5.8265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8737,10.8654,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8054,10.8460,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,4.9344,6.0511,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8692,6.0671,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8737,10.9846,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8054,11.0514,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,4.9344,6.1012,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8692,6.0266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8737,11.0173,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8054,10.9652,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,4.9344,6.0598,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8692,6.0479,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8737,11.0642,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8054,11.0362,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,4.9344,6.1740,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8692,6.0682,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8737,10.9469,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8054,10.9238,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,4.9344,6.1644,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8692,6.0885,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8737,11.0046,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8054,10.9832,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,4.9344,6.1799,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8692,6.0747,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8737,11.1004,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8054,11.0086,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,4.9344,6.1353,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8692,6.0825,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8737,11.7278,0.0297,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8054,11.5056,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,4.9344,6.7098,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8692,6.3503,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8737,10.5751,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8054,10.6681,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,4.9344,8.7853,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8692,8.0148,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8737,11.2165,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8054,11.0720,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,4.9344,6.8773,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8692,6.2542,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8737,12.3330,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8054,12.2994,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,4.9344,6.6188,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8692,6.5761,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8737,8.9120,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8054,10.6407,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,4.9344,7.0357,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8692,6.4186,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8737,11.1151,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8054,11.0317,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,4.9344,7.0107,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8692,8.4282,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8737,11.3092,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8054,11.1991,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,4.9344,6.9780,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8692,6.2087,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8737,12.5712,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8054,12.6008,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,4.9344,7.4162,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8692,6.3980,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8737,11.2097,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8054,11.0618,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,4.9344,7.0047,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8692,6.4426,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8737,10.5720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8054,10.9425,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,4.9344,7.1080,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8692,6.2026,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8737,11.6084,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8054,9.4671,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,4.9344,7.1882,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8692,6.4531,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8737,11.3269,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8054,11.0528,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,4.9344,7.0782,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8692,6.2265,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8737,11.2206,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8054,10.9979,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,4.9344,7.2535,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8692,6.3167,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8737,10.9453,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8054,10.8856,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,4.9344,6.9542,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8692,6.4973,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8737,10.9821,0.0249,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8054,11.2602,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,4.9344,8.2745,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8692,7.2613,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8737,10.4927,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8054,10.5306,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,4.9344,6.9167,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8692,6.3685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8737,11.2878,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8054,11.0991,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,4.9344,7.8300,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8692,6.3865,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8737,10.9087,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8054,10.9520,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,4.9344,7.9134,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8692,7.0840,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8737,11.1948,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8054,10.9644,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,4.9344,7.9150,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8692,6.8827,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8737,10.7474,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8054,10.7365,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,4.9344,7.5534,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8692,6.4021,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8737,12.1100,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8054,11.7165,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,4.9344,7.1433,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8692,6.3390,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8737,11.2610,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8054,10.9722,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,4.9344,7.1339,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8692,6.3004,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8737,10.6406,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8054,10.7378,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,4.9344,7.3655,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8692,6.2192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8737,11.3298,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8054,11.0231,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,4.9344,6.8442,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8692,6.3187,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8737,9.1423,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8054,10.7624,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,4.9344,6.9570,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8692,6.3471,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8737,11.1075,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8054,10.7165,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,4.9344,6.9478,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8692,6.1994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8737,11.3011,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8054,11.0764,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,4.9344,7.2249,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8692,6.8120,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8737,10.9897,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8054,10.6680,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,4.9344,6.8653,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8692,6.3348,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8737,9.7112,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8054,9.9645,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,4.9344,6.8820,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8692,6.3397,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8737,9.6240,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8054,10.7135,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,4.9344,7.1351,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8692,6.2862,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8737,10.4903,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8054,10.8243,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,4.9344,7.2309,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8692,6.3188,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8737,11.0306,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8054,10.5942,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,4.9344,7.4501,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8692,6.3735,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8737,10.8890,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8054,10.7609,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,4.9344,7.0711,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8692,6.3130,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8737,10.6723,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8054,10.8433,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,4.9344,7.1413,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8692,6.4395,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8737,10.6177,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8054,10.7461,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,4.9344,7.3775,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8692,6.3477,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8737,10.6600,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8054,10.7961,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,4.9344,7.0240,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8692,6.2785,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8737,10.5762,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8054,12.5658,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,4.9344,7.4466,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8692,6.3561,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8737,11.2366,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8054,11.1268,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,4.9344,7.2142,0.0166,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8692,6.2254,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8737,10.8136,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8054,11.1073,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,4.9344,7.3649,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8692,6.3021,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8737,11.4017,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8054,11.3062,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,4.9344,7.2442,0.0144,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8692,6.2059,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8737,10.8554,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8054,9.5322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,4.9344,6.8651,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8692,8.4183,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8737,8.6402,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8054,10.6948,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,4.9344,6.2100,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8692,5.7795,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8737,10.9976,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8054,10.9623,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,4.9344,6.8125,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8692,6.0631,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8737,10.4703,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8054,10.3388,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,4.9344,6.6422,0.0814,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8692,5.8770,0.0740,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8737,10.2792,0.1155,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.8054,10.3424,0.0501,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,4.9344,6.5829,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8692,6.1746,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8737,10.1723,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.8054,10.1193,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,4.9344,6.6767,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8692,6.3063,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8737,11.5049,0.1570,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.8054,11.7669,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,4.9344,6.8834,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8692,8.3377,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8737,11.6203,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.8054,11.6279,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,4.9344,7.0625,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8692,6.4126,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8737,10.9036,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.8054,10.8753,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,4.9344,7.3036,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8692,6.2191,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8737,11.0695,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.8054,10.8475,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,4.9344,7.2574,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8692,6.7991,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8737,11.7990,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.8054,11.6866,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,4.9344,8.1125,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8692,7.1964,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8737,8.6245,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.8054,10.9700,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,4.9344,7.5914,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8692,6.6917,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8737,11.6317,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.8054,11.3324,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,4.9344,8.2263,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8692,7.1221,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8737,11.4794,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.8054,10.9545,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,4.9344,7.5703,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8692,6.3396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8737,11.8799,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.8054,11.7630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,4.9344,7.9237,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8692,6.7868,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8737,11.6065,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.8054,11.3204,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,4.9344,8.5800,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8692,7.1532,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8737,10.6891,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.8054,10.9924,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,4.9344,7.2078,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8692,6.4266,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8737,9.3878,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.8054,14.5166,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,4.9344,6.6066,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8692,6.3238,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8737,11.6122,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.8054,11.4380,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,4.9344,7.0554,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8692,6.3466,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8737,11.2920,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.8054,11.0812,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,4.9344,6.8586,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8692,6.1124,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8737,11.2513,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.8054,10.9950,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,4.9344,7.0286,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8692,6.2474,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8737,11.8009,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8054,11.8648,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,4.9344,7.5336,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8692,6.3544,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8737,11.5267,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.8054,11.2474,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,4.9344,7.2018,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8692,6.3131,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8737,10.7638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.8054,10.7315,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,4.9344,6.3846,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8692,6.0334,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8737,10.9988,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.8054,10.8985,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,4.9344,6.4025,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8692,6.2562,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8737,11.2363,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.8054,11.0572,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,4.9344,6.7486,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8692,6.2328,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8737,11.0915,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.8054,10.4838,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,4.9344,7.0973,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8692,6.3608,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8737,10.5539,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.8054,10.6646,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,4.9344,6.8956,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8692,6.3448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8737,10.5580,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.8054,10.7288,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,4.9344,7.1012,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8692,6.4116,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8737,10.6626,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.8054,10.8745,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,4.9344,7.1036,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8692,6.0589,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8737,11.2931,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.8054,11.0663,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,4.9344,7.2447,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8692,6.3827,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8737,11.2542,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.8054,11.0127,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,4.9344,8.3861,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8692,7.5392,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8737,11.1401,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.8054,10.7741,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,4.9344,7.2553,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8692,6.2844,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8737,10.6884,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.8054,10.4848,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,4.9344,6.2926,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8692,6.1066,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8737,10.7097,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.8054,10.4730,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,4.9344,6.8369,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8692,6.2103,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8737,10.0211,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.8054,10.0240,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,4.9344,7.5985,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8692,7.3104,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8737,10.5278,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.8054,10.3171,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,4.9344,6.7926,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8692,6.1323,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8737,10.8601,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.8054,10.7628,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,4.9344,6.3628,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8692,6.0777,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8737,10.8948,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.8054,10.6954,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,4.9344,6.4549,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8692,6.0345,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8737,10.5296,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.8054,10.3302,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,4.9344,6.4460,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8692,6.1078,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8737,10.4611,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.8054,10.3018,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,4.9344,6.4109,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8692,5.9838,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8737,10.5266,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.8054,10.3049,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,4.9344,6.9039,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8692,6.4231,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8737,10.6955,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8054,10.8431,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,4.9344,6.9813,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8692,6.0741,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8737,10.8200,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8054,10.9619,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,4.9344,7.3125,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8692,6.4100,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8737,10.3488,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8054,10.7147,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,4.9344,7.0001,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8692,6.2850,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8737,10.7298,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.8054,10.7133,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,4.9344,7.1777,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8692,6.3585,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8737,10.5920,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.8054,10.7105,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,4.9344,7.4018,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8692,6.3114,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8737,13.0024,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.8054,12.6952,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,4.9344,6.8712,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8692,6.1259,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8737,11.2344,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.8054,11.0135,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,4.9344,7.1571,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8692,6.3565,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8737,10.5738,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.8054,10.5668,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,4.9344,6.8361,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8692,6.3296,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8737,10.4471,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.8054,10.6967,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,4.9344,7.0489,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8692,6.2974,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8737,10.5032,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.8054,10.7730,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,4.9344,7.4542,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8692,6.6899,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8737,10.6170,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.8054,10.6865,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,4.9344,6.9835,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8692,6.3173,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8737,10.4857,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8054,10.7071,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,4.9344,6.9139,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8692,6.2438,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8737,12.0823,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8054,11.8987,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,4.9344,8.2044,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8692,7.4527,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8737,12.7831,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8054,12.5247,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,4.9344,6.9689,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8692,6.2492,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8737,11.3911,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.8054,11.3253,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,4.9344,6.9695,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8692,6.2509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8737,11.4120,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.8054,11.2331,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,4.9344,7.0129,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8692,6.3201,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8737,10.9785,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.8054,10.6952,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,4.9344,6.9165,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8692,6.2798,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8737,11.3666,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.8054,11.1500,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,4.9344,6.9124,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8692,6.1737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8737,10.4841,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.8054,10.1625,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,4.9344,7.5648,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8692,6.6643,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8737,10.7472,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.8054,10.7285,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,4.9344,6.7368,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8692,7.1128,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8737,11.4068,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.8054,11.2754,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,4.9344,7.5154,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8692,6.0763,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8737,10.1290,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.8054,10.4082,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,4.9344,6.1696,0.1022,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8692,5.8519,0.0357,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8737,10.0591,0.0151,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.8054,10.1936,0.0364,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,4.9344,6.4475,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8692,6.0100,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8737,10.9295,0.0225,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.8054,10.8445,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,4.9344,6.0433,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8692,5.9163,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8737,10.3748,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.8054,10.3965,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,4.9344,6.9141,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8692,6.0277,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8737,10.7871,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.8054,10.3906,0.0601,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,4.9344,6.3294,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8692,6.0148,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8737,10.1596,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.8054,10.2318,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,4.9344,6.4947,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8692,6.0124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8737,10.8016,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.8054,10.3592,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,4.9344,6.9064,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8692,6.2214,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8737,11.4248,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.8054,11.0625,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,4.9344,7.0818,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8692,6.2885,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8737,10.8944,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.8054,10.7503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,4.9344,7.2402,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8692,6.3254,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8737,8.3922,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.8054,8.8392,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,4.9344,6.4834,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8692,6.1405,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8737,11.1977,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.8054,10.9121,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,4.9344,7.1434,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8692,6.4986,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8737,10.6498,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.8054,10.5379,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,4.9344,13.2655,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8692,12.3399,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8737,11.7817,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.8054,11.4227,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,4.9344,6.9188,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8692,6.1457,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8737,11.1997,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.8054,11.0022,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,4.9344,7.3210,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8692,6.5217,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8737,10.8616,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.8054,10.8209,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,4.9344,7.2890,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8692,6.2274,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8737,10.2999,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.8054,10.8962,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,4.9344,7.1811,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8692,6.3255,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8737,11.0065,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.8054,10.8262,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,4.9344,7.0279,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8692,6.1181,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8737,11.2674,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.8054,11.0551,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,4.9344,7.3250,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8692,6.3883,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8737,12.9816,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.8054,12.6681,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,4.9344,7.0748,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8692,6.5483,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8737,11.4908,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.8054,11.3624,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,4.9344,7.0811,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8692,6.3095,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8737,10.7365,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.8054,10.6070,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,4.9344,6.8986,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8692,6.2922,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8737,11.1271,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.8054,10.9810,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,4.9344,7.3933,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8692,6.6401,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8737,10.6131,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.8054,10.7333,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,4.9344,6.8509,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8692,6.2628,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8737,10.5081,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8054,10.3168,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,4.9344,6.7659,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8692,6.2965,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8737,11.2556,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8054,10.8782,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,4.9344,6.7817,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8692,6.1943,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8737,11.1225,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.8054,10.2576,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,4.9344,6.7800,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8692,6.3303,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8737,10.6092,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.8054,10.6172,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,4.9344,7.3739,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8692,6.3804,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8737,7.2635,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.8054,6.2708,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,4.9344,7.1516,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8692,6.3830,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8737,11.3383,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.8054,11.0361,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,4.9344,6.2739,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8692,6.0269,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8737,10.2097,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.8054,10.2539,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,4.9344,8.3571,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8692,7.8512,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8737,10.5625,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.8054,10.1860,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,4.9344,6.8706,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8692,6.3545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8737,10.5177,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.8054,10.1267,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,4.9344,6.5291,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8692,5.8522,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8737,9.4124,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.8054,9.3916,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,4.9344,6.3930,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8692,6.0077,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8737,11.3168,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.8054,11.1106,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,4.9344,6.5660,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8692,6.1277,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8737,10.8995,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8054,10.6410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,4.9344,6.3765,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8692,6.0430,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8737,10.1395,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8054,10.2887,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,4.9344,6.4045,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8692,5.9454,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8737,10.5326,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8054,10.4915,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,4.9344,6.3994,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8692,5.9775,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8737,10.2208,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.8054,10.2967,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,4.9344,6.6680,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8692,6.2940,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8737,11.4517,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.8054,11.0693,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,4.9344,7.3944,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8692,6.2716,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8737,11.0351,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.8054,10.7419,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,4.9344,6.7666,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8692,6.0771,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8737,9.4371,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.8054,8.9954,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,4.9344,7.1949,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8692,6.7980,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8737,11.4011,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.8054,11.1773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,4.9344,7.1487,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8692,6.1577,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8737,11.1837,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.8054,10.9635,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,4.9344,7.3083,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8692,6.3924,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8737,11.4740,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.8054,11.1933,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,4.9344,7.0076,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8692,6.3815,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8737,11.0301,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.8054,10.8176,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,4.9344,8.3114,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8692,6.9905,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8737,10.2200,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.8054,10.8107,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,4.9344,7.4356,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8692,7.1998,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8737,11.5729,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8054,11.2598,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,4.9344,7.0822,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8692,6.3046,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8737,10.9477,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8054,10.6037,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,4.9344,7.1550,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8692,6.3690,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8737,15.7859,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8054,15.6160,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,4.9344,7.2487,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8692,6.2558,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8737,11.3087,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.8054,11.0413,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,4.9344,6.5745,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8692,6.3063,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8737,10.9950,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.8054,10.7698,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,4.9344,6.7155,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8692,6.4310,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8737,10.2874,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.8054,10.3424,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,4.9344,6.9669,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8692,6.2762,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8737,11.1164,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.8054,11.1245,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,4.9344,7.0608,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8692,6.1422,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8737,11.4399,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.8054,11.2304,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,4.9344,6.9881,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8692,6.7180,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8737,10.6490,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.8054,10.7267,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,4.9344,7.2676,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8692,6.5107,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8737,11.2010,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.8054,10.8734,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,4.9344,7.4547,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.8692,6.8075,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +702,2.8737,11.0659,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +703,2.8054,10.8419,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +704,4.9344,7.1748,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.8692,6.3384,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +706,2.8737,10.5222,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +707,2.8054,10.7310,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,4.9344,7.2150,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.8692,6.3395,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +710,2.8737,10.5565,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +711,2.8054,10.7659,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +712,4.9344,7.1599,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.8692,6.3584,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +714,2.8737,10.6474,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +715,2.8054,10.8696,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +716,4.9344,7.0771,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.8692,6.3931,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +718,2.8737,10.8938,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +719,2.8054,10.7582,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +720,4.9344,45.7378,0.0125,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8692,30.1149,0.0220,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8737,28.1537,0.0050,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.8054,29.7259,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,4.9344,6.0130,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8692,5.8224,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8737,10.7890,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.8054,10.8186,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,4.9344,5.8164,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8692,5.7122,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8737,10.8613,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.8054,10.8767,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,4.9344,5.9378,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8692,5.8673,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8737,10.8200,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.8054,10.8404,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,4.9344,5.8104,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8692,5.7370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8737,10.6450,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.8054,10.6099,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,4.9344,5.7887,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8692,5.7288,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8737,10.7647,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.8054,10.7740,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,4.9344,5.8595,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8692,5.7666,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8737,10.7317,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.8054,10.7003,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,4.9344,5.9119,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8692,5.7811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8737,10.9864,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.8054,10.9678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,4.9344,5.8580,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8692,5.9013,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8737,10.6625,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.8054,10.7921,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,4.9344,6.1657,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8692,6.1097,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8737,11.0975,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.8054,11.0648,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,4.9344,6.2015,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8692,6.0587,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8737,11.1681,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.8054,11.1167,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,4.9344,6.2646,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8692,6.1055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8737,11.1394,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.8054,11.0714,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,4.9344,6.1875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8692,6.1003,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8737,11.2110,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.8054,11.1859,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,4.9344,6.2631,0.0276,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8692,6.1108,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8737,11.2192,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.8054,11.1747,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,4.9344,6.7432,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8692,6.4346,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8737,11.1263,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.8054,11.0722,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,4.9344,7.6778,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8692,6.3509,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8737,11.1434,0.0209,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.8054,10.8742,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,4.9344,6.7461,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8692,7.2294,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8737,7.2816,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.8054,11.0965,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,4.9344,7.2325,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8692,6.5487,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8737,11.7220,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.8054,11.6755,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,4.9344,6.9770,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8692,6.2896,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8737,10.6875,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.8054,10.9728,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,4.9344,7.7815,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8692,6.3119,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8737,9.7589,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.8054,9.3780,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,4.9344,6.7495,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8692,6.2178,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8737,12.3300,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.8054,12.0693,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,4.9344,7.6209,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8692,7.7098,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8737,11.5005,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.8054,11.3242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,4.9344,7.5227,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8692,6.6945,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8737,11.1780,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.8054,10.5348,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,4.9344,7.2993,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8692,6.5530,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8737,10.9885,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.8054,10.9212,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,4.9344,6.9322,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8692,6.5277,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8737,9.3472,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.8054,10.8912,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,4.9344,7.0345,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8692,6.5386,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8737,10.0033,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.8054,10.9268,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,4.9344,7.5618,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8692,6.7503,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8737,11.8306,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.8054,11.8162,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,4.9344,6.9086,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8692,6.0707,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8737,10.7218,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.8054,10.8011,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,4.9344,6.6102,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8692,6.2090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8737,11.8741,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.8054,11.6434,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,4.9344,7.4528,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8692,6.3067,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8737,11.3656,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.8054,11.1482,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,4.9344,7.0556,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8692,6.3964,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8737,11.8084,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.8054,11.4773,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,4.9344,7.2572,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8692,6.6330,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8737,11.5341,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.8054,11.2745,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,4.9344,7.0958,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8692,6.3364,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8737,11.0186,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.8054,10.8084,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,4.9344,7.0924,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8692,6.3705,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8737,10.7651,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.8054,10.8277,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,4.9344,6.8174,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8692,6.9694,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8737,9.7397,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.8054,10.0355,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,4.9344,6.8931,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8692,6.3885,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8737,11.3193,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.8054,11.1263,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,4.9344,6.8462,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8692,6.1199,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8737,11.1062,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.8054,10.9198,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,4.9344,6.8191,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8692,6.2753,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8737,10.8018,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.8054,10.5881,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,4.9344,7.0479,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8692,6.3083,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8737,10.6749,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.8054,12.2880,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,4.9344,12.6832,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8692,12.0246,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8737,11.8271,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.8054,11.7048,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,4.9344,7.1743,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8692,6.2779,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8737,7.7032,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.8054,10.5715,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,4.9344,6.9877,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8692,6.3050,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8737,11.6574,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.8054,11.5603,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,4.9344,7.1718,0.1380,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8692,6.2561,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8737,11.4220,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.8054,11.1480,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,4.9344,7.1463,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8692,6.2768,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8737,11.3853,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.8054,11.2806,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,4.9344,6.8908,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8692,6.3145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8737,10.4181,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.8054,10.4893,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,4.9344,7.3035,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8692,6.6219,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8737,11.6861,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.8054,11.6301,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,4.9344,6.8974,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8692,6.1906,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8737,11.1974,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.8054,10.9933,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,4.9344,6.8669,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8692,6.3304,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8737,10.8770,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.8054,10.9582,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,4.9344,7.0320,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8692,6.6037,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8737,10.8400,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.8054,11.2015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,4.9344,7.1775,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8692,6.3936,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8737,10.8762,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.8054,10.8815,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,4.9344,7.0395,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8692,6.4259,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8737,10.9042,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.8054,10.8799,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,4.9344,7.4050,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8692,6.5370,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8737,11.2291,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.8054,11.0755,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,4.9344,7.0282,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8692,6.3902,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8737,12.1944,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.8054,11.8827,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,4.9344,7.2340,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8692,6.2703,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8737,11.5098,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.8054,11.4632,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,4.9344,7.2493,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8692,6.3533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8737,10.8613,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8054,10.9065,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,4.9344,7.3050,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8692,6.3538,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8737,11.3559,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.8054,11.1483,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,4.9344,7.6784,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8692,6.3595,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8737,11.7609,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.8054,11.4857,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,4.9344,7.2587,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8692,6.5851,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8737,11.4117,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.8054,11.0671,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,4.9344,7.0636,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8692,6.2478,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8737,11.3238,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.8054,11.0777,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,4.9344,6.9935,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8692,6.3527,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8737,10.9550,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.8054,10.7553,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,4.9344,7.6292,0.0709,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8692,6.6770,0.0312,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8737,12.2149,0.0752,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.8054,12.0271,0.0438,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,4.9344,7.3581,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8692,6.3659,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8737,13.1028,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.8054,12.5632,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,4.9344,6.6724,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8692,6.1616,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8737,11.4835,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.8054,11.2513,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,4.9344,7.1621,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8692,6.1805,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8737,10.7166,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.8054,10.7072,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,4.9344,6.5951,0.0376,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8692,6.0692,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8737,10.4522,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.8054,10.3225,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,4.9344,6.8195,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8692,6.0246,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8737,10.5814,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.8054,10.4383,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,4.9344,6.4904,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8692,5.8419,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8737,10.8985,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.8054,10.7923,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,4.9344,6.8500,0.1641,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8692,6.2765,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8737,11.0420,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.8054,10.6913,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,4.9344,6.8946,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8692,6.2097,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8737,11.6223,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.8054,11.6604,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,4.9344,7.1110,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8692,6.2913,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8737,11.4042,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.8054,11.3896,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,4.9344,7.0581,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8692,6.3260,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8737,10.7513,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.8054,10.6503,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,4.9344,8.1775,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8692,6.6098,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8737,10.6885,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.8054,10.5150,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,4.9344,6.9713,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8692,7.2611,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8737,9.6766,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.8054,10.5685,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,4.9344,7.1262,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8692,6.3149,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8737,10.3410,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.8054,10.7100,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,4.9344,7.0593,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8692,6.3453,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8737,10.7372,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.8054,10.6730,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,4.9344,6.7931,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8692,6.4882,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8737,9.0437,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.8054,10.9315,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,4.9344,7.6689,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8692,6.8614,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8737,11.3175,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.8054,11.2615,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,4.9344,9.1792,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8692,8.0320,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8737,11.2207,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.8054,10.9845,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,4.9344,7.3833,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8692,6.4575,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8737,10.7430,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.8054,10.7895,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,4.9344,7.9515,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8692,6.8318,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8737,11.0678,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.8054,10.9283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,4.9344,7.6533,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8692,6.4421,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8737,10.6610,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.8054,10.7936,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,4.9344,7.2864,0.0210,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8692,6.4208,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8737,11.0344,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.8054,10.7814,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,4.9344,7.0527,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8692,6.3070,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8737,10.5760,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.8054,10.7837,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,4.9344,7.3085,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8692,6.4863,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8737,10.7770,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.8054,10.7648,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,4.9344,7.2397,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8692,6.3187,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8737,11.2640,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.8054,11.1505,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,4.9344,7.0084,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8692,6.3294,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8737,11.1036,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.8054,10.8338,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,4.9344,6.9265,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8692,6.3777,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8737,11.1646,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.8054,10.8187,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,4.9344,6.6040,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8692,6.1063,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8737,11.3095,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.8054,11.1541,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,4.9344,6.0772,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8692,5.6659,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8737,10.4788,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.8054,10.3761,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,4.9344,5.8500,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8692,5.6054,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8737,10.5900,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.8054,10.5196,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,4.9344,5.6783,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8692,5.5315,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8737,10.7197,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.8054,10.6371,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,4.9344,5.8655,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8692,5.6567,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8737,10.5330,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.8054,10.5292,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,4.9344,6.0756,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8692,5.8530,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8737,11.0176,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.8054,11.0238,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,4.9344,5.7853,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8692,5.6393,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8737,10.5466,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.8054,10.5317,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,4.9344,5.9741,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8692,5.7257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8737,10.5150,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.8054,10.4662,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,4.9344,5.9124,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8692,5.6808,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8737,10.3655,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.8054,10.3518,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,4.9344,6.0893,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8692,5.7267,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8737,10.4947,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.8054,10.4862,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,4.9344,5.7997,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8692,5.6528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8737,10.6033,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.8054,10.5492,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,4.9344,5.7995,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8692,5.6823,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8737,10.6148,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.8054,10.5818,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,4.9344,5.7554,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8692,5.6947,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8737,10.5542,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.8054,10.5343,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,4.9344,5.7367,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8692,5.6355,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8737,10.5756,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.8054,10.5162,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,4.9344,5.9002,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8692,5.8048,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8737,11.0280,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.8054,10.9989,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,4.9344,6.5949,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8692,6.0185,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8737,10.4725,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.8054,10.5456,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,4.9344,6.9234,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8692,6.3051,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8737,11.0419,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.8054,10.7870,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,4.9344,6.8256,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8692,6.3444,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8737,10.5487,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.8054,10.3841,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,4.9344,6.9955,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8692,6.2678,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8737,10.6763,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.8054,10.7620,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,4.9344,6.8352,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8692,6.8208,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8737,9.7444,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.8054,10.2300,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,4.9344,6.7745,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8692,6.1955,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8737,10.7550,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.8054,10.5777,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,4.9344,6.6679,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8692,6.5075,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8737,8.9603,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.8054,10.6103,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,4.9344,6.7944,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8692,6.3235,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8737,11.0253,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.8054,10.8297,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,4.9344,6.8181,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8692,6.4475,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8737,10.5062,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.8054,10.7637,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,4.9344,7.0428,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8692,6.4375,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8737,10.7398,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.8054,10.7873,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,4.9344,6.8613,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8692,6.3092,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8737,10.9154,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.8054,10.7103,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,4.9344,7.7945,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8692,6.8437,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8737,10.6978,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.8054,10.6741,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,4.9344,7.0835,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8692,6.2964,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8737,10.7320,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.8054,10.6886,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,4.9344,7.4994,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8692,6.4114,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8737,11.3104,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.8054,10.8061,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,4.9344,7.2527,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8692,6.0609,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8737,10.6354,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.8054,9.6393,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,4.9344,7.0587,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8692,6.4222,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8737,10.4859,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.8054,10.7010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,4.9344,7.0150,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8692,6.3896,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8737,10.4995,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.8054,10.7464,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,4.9344,7.0685,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8692,6.2983,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8737,11.5678,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.8054,11.3360,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,4.9344,6.9693,0.0328,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.8692,6.5365,0.0617,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,2.8737,11.0520,0.0201,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,2.8054,10.8892,0.0431,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,4.9344,7.2175,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.8692,6.3115,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,2.8737,10.7100,0.0280,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,2.8054,10.7130,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,4.9344,6.6850,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.8692,6.1050,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,2.8737,11.2477,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,2.8054,11.0717,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,4.9344,6.7489,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.8692,6.4870,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,2.8737,10.7272,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,2.8054,10.8787,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,4.9344,6.7633,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.8692,6.1515,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,2.8737,8.9033,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,2.8054,9.8424,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,4.9344,6.3077,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.8692,5.8044,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,2.8737,10.2779,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,2.8054,10.1979,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,4.9344,6.1066,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.8692,5.7233,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,2.8737,10.4357,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,2.8054,10.3398,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,4.9344,6.4888,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.8692,5.9497,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,2.8737,10.6535,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,2.8054,10.4709,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,4.9344,6.3504,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.8692,5.9543,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,2.8737,10.7801,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,2.8054,10.5900,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,4.9344,6.9232,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.8692,6.3851,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,2.8737,10.6310,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,2.8054,10.3086,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,4.9344,6.3542,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.8692,6.0015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,2.8737,10.4573,0.0377,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,2.8054,10.3165,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,4.9344,6.4375,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.8692,5.9540,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,2.8737,10.6865,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,2.8054,10.5608,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,4.9344,6.9088,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.8692,6.1734,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,2.8737,7.4484,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,2.8054,10.0132,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,4.9344,6.3575,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.8692,5.9383,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,2.8737,10.7977,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.8054,10.7752,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,4.9344,6.7833,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.8692,6.0389,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,2.8737,10.2677,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,2.8054,10.2542,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,4.9344,7.3485,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.8692,6.5700,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8737,10.8305,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,2.8054,10.8638,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,4.9344,7.0105,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.8692,6.2849,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8737,10.9682,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,2.8054,10.6527,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,4.9344,6.9943,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.8692,6.3308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8737,9.4678,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,2.8054,9.7649,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,4.9344,7.1273,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.8692,6.5675,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8737,10.7301,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,2.8054,10.7282,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,4.9344,6.9330,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.8692,6.2235,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8737,10.1295,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,2.8054,10.4141,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,4.9344,6.2828,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.8692,6.0866,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8737,10.9056,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,2.8054,10.8223,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,4.9344,6.4632,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.8692,6.6727,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8737,10.1999,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,2.8054,10.7498,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,4.9344,6.7528,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.8692,6.2292,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8737,10.5787,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.8054,10.5989,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,4.9344,6.7818,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.8692,6.4350,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8737,10.2974,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.8054,10.7827,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,4.9344,6.8966,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.8692,6.3772,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8737,9.1712,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,2.8054,10.1349,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,4.9344,6.9695,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.8692,6.2681,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8737,10.9876,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,2.8054,10.5359,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,4.9344,7.0102,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.8692,6.3715,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8737,7.6242,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,2.8054,6.8989,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,4.9344,7.4426,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.8692,6.6755,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8737,11.3718,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,2.8054,11.1167,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,4.9344,7.1329,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.8692,6.0797,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8737,10.4740,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,2.8054,10.3961,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,4.9344,6.2164,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.8692,5.7756,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8737,10.3131,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,2.8054,10.2971,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,4.9344,6.5211,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.8692,6.0446,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8737,10.3447,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,2.8054,10.4860,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,4.9344,8.1899,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8692,7.8222,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8737,10.4927,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,2.8054,10.4953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,4.9344,6.0909,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8692,5.5894,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8737,10.3752,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,2.8054,10.1663,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,4.9344,6.7202,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8692,5.9695,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8737,10.3078,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.8054,10.1575,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,4.9344,6.1900,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8692,6.0133,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8737,10.4978,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.8054,10.3268,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,4.9344,6.5085,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8692,6.2015,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8737,9.7709,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.8054,9.8195,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,4.9344,6.1836,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8692,5.8835,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8737,10.0907,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,2.8054,10.2039,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,4.9344,6.2977,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8692,5.8615,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8737,10.0823,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,2.8054,9.9270,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,4.9344,6.5919,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8692,6.0659,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8737,10.8123,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,2.8054,10.5473,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,4.9344,7.0666,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8692,6.3865,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8737,10.0806,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.8054,10.1381,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,4.9344,6.8337,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8692,6.0678,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8737,10.6792,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,2.8054,10.2786,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,4.9344,6.4140,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8692,5.9174,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8737,10.5858,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,2.8054,10.3284,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,4.9344,6.6926,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8692,6.2284,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8737,10.6200,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,2.8054,10.4530,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,4.9344,6.4534,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8692,6.0023,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8737,10.2809,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,2.8054,10.2397,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,4.9344,6.4797,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8692,6.0370,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8737,10.4302,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,2.8054,10.3202,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,4.9344,6.7109,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8692,6.0548,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8737,11.2700,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.8054,11.2817,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,4.9344,6.9335,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8692,6.3179,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8737,11.3888,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.8054,11.1811,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,4.9344,7.2866,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8692,7.1895,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8737,10.0620,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.8054,7.8435,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,4.9344,7.0827,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8692,6.1819,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8737,11.7849,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,2.8054,11.5295,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,4.9344,6.9599,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8692,6.3812,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8737,10.6990,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,2.8054,10.6323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,4.9344,6.9142,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8692,6.2099,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8737,10.9402,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,2.8054,10.0968,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,4.9344,6.9685,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8692,7.8903,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8737,10.2357,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,2.8054,10.4267,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,4.9344,7.1827,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8692,6.3138,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8737,10.8455,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,2.8054,10.8874,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,4.9344,6.7983,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8692,6.4357,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8737,10.0484,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,2.8054,10.6215,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,4.9344,6.8740,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8692,6.3146,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8737,11.1668,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,2.8054,10.9669,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,4.9344,7.0987,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8692,6.4118,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8737,11.4183,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.8054,11.1361,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,4.9344,7.1596,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8692,6.1997,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8737,10.9060,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.8054,10.8626,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,4.9344,7.4899,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8692,6.7290,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8737,10.9304,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.8054,10.8351,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1432,4.9344,7.5766,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8692,6.5081,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8737,10.8579,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.8054,10.7617,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1436,4.9344,7.3649,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8692,6.6928,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8737,14.5979,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1439,2.8054,14.3770,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.txt b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.txt new file mode 100644 index 0000000..e6e7220 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=6.001 +effective_logical_fps=59.995 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.362 +p95_encode_latency_ms=14.158 +max_encode_latency_ms=134.008 +avg_steady_encode_latency_ms=13.163 +p95_steady_encode_latency_ms=14.162 +max_steady_encode_latency_ms=134.008 +avg_tile_encode_latency_ms=8.858 +p95_tile_encode_latency_ms=11.575 +avg_max_tile_encode_latency_ms=11.121 +p95_max_tile_encode_latency_ms=12.114 +avg_steady_max_tile_encode_latency_ms=11.071 +p95_steady_max_tile_encode_latency_ms=11.991 +payload_bytes=4713117 +send_target=none +csv=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_deadline.md b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_deadline.md new file mode 100644 index 0000000..c8cef47 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_simultaneous_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.362 | +| p95_group_latency_ms | 14.158 | +| max_group_latency_ms | 134.008 | +| effective_logical_fps | 59.995 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 286 | 79.444% | 0, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, ... | +| 16.67 | 4 | 1.111% | 0, 73, 167, 180 | +| 20.00 | 2 | 0.556% | 0, 180 | +| 33.33 | 2 | 0.556% | 0, 180 | +| 50.00 | 2 | 0.556% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.523 | 14.158 | 134.008 | +| 300-359 | 12.560 | 14.117 | 15.969 | diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_logical.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_logical.csv new file mode 100644 index 0000000..0b69768 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,112.7367,29.3515,231707 +1,4,0,11.0389,10.5338,65901 +2,4,0,11.0885,10.6278,36886 +3,4,0,11.1218,10.6481,69404 +4,4,0,11.2510,10.7281,87864 +5,4,0,11.1572,10.7199,53700 +6,4,0,11.1564,10.6485,24415 +7,4,0,10.9935,10.5191,15407 +8,4,0,10.9712,10.4406,12151 +9,4,0,11.3447,10.8654,11449 +10,4,0,11.7169,11.0514,8599 +11,4,0,11.5894,11.0173,6107 +12,4,0,11.7026,11.0642,5132 +13,4,0,11.6908,10.9469,3880 +14,4,0,11.7135,11.0046,4001 +15,4,0,11.7610,11.1004,3860 +16,4,0,12.4599,11.7278,4045 +17,4,0,12.7858,10.6681,3955 +18,4,0,12.6466,11.2165,3721 +19,4,0,13.9470,12.3330,3748 +20,4,0,14.0222,10.6407,3386 +21,4,0,12.6426,11.1151,2761 +22,4,0,12.7943,11.3092,2750 +23,4,0,14.0260,12.6008,2836 +24,4,0,13.3134,11.2097,2977 +25,4,0,13.0596,10.9425,2960 +26,4,0,13.3670,11.6084,3010 +27,4,0,13.2576,11.3269,2978 +28,4,0,12.7154,11.2206,2889 +29,4,0,12.7258,10.9453,2914 +30,4,0,13.5046,11.2602,2847 +31,4,0,12.7140,10.5306,3111 +32,4,0,12.3550,11.2878,2714 +33,4,0,13.3537,10.9520,2843 +34,4,0,12.8603,11.1948,2633 +35,4,0,13.0705,10.7474,2659 +36,4,0,13.9900,12.1100,2696 +37,4,0,13.0569,11.2610,2728 +38,4,0,12.7883,10.7378,2772 +39,4,0,12.9285,11.3298,2740 +40,4,0,13.9008,10.7624,2809 +41,4,0,12.6952,11.1075,2679 +42,4,0,13.1935,11.3011,2865 +43,4,0,13.0437,10.9897,2612 +44,4,0,13.2233,9.9645,2626 +45,4,0,13.5552,10.7135,2693 +46,4,0,13.1892,10.8243,2708 +47,4,0,12.7570,11.0306,2765 +48,4,0,13.2090,10.8890,2645 +49,4,0,12.9128,10.8433,2733 +50,4,0,12.8925,10.7461,2667 +51,4,0,13.2078,10.7961,2647 +52,4,0,14.7225,12.5658,2659 +53,4,0,12.8961,11.2366,2757 +54,4,0,13.0275,11.1073,2656 +55,4,0,13.4791,11.4017,2594 +56,4,0,12.9690,10.8554,2603 +57,4,0,14.4955,10.6948,2605 +58,4,0,11.9360,10.9976,2610 +59,4,0,12.2691,10.4703,2641 +60,4,0,12.0938,10.3424,442009 +61,4,0,11.8534,10.1723,52997 +62,4,0,12.8640,11.7669,26956 +63,4,0,13.3702,11.6279,26939 +64,4,0,12.9161,10.9036,22402 +65,4,0,13.0849,11.0695,15271 +66,4,0,14.0930,11.7990,12647 +67,4,0,14.9320,10.9700,10161 +68,4,0,13.2440,11.6317,9695 +69,4,0,13.0446,11.4794,5893 +70,4,0,14.0873,11.8799,5590 +71,4,0,13.4204,11.6065,5226 +72,4,0,13.2347,10.9924,5095 +73,4,0,18.5007,14.5166,5164 +74,4,0,12.2666,11.6122,4634 +75,4,0,12.4515,11.2920,5338 +76,4,0,12.4309,11.2513,2984 +77,4,0,13.2932,11.8648,2918 +78,4,0,13.2550,11.5267,3051 +79,4,0,12.9675,10.7638,3217 +80,4,0,11.8087,10.9988,3680 +81,4,0,11.9983,11.2363,3433 +82,4,0,12.7680,11.0915,3891 +83,4,0,13.0543,10.6646,2978 +84,4,0,12.9541,10.7288,2906 +85,4,0,13.3398,10.8745,2925 +86,4,0,12.9175,11.2931,3487 +87,4,0,12.6733,11.2542,2969 +88,4,0,12.9053,11.1401,2822 +89,4,0,12.7895,10.6884,3027 +90,4,0,12.1580,10.7097,2708 +91,4,0,11.7513,10.0240,2735 +92,4,0,11.3843,10.5278,2688 +93,4,0,12.0505,10.8601,2954 +94,4,0,12.2871,10.8948,3013 +95,4,0,12.1895,10.5296,2878 +96,4,0,12.0700,10.4611,3036 +97,4,0,12.0844,10.5266,2909 +98,4,0,12.8253,10.8431,2598 +99,4,0,12.6728,10.9619,2609 +100,4,0,13.1931,10.7147,2615 +101,4,0,12.9505,10.7298,2652 +102,4,0,12.8498,10.7105,2667 +103,4,0,14.8010,13.0024,2728 +104,4,0,12.5403,11.2344,2632 +105,4,0,13.1189,10.5738,2620 +106,4,0,12.7700,10.6967,2603 +107,4,0,12.8513,10.7730,2633 +108,4,0,12.7386,10.6865,2885 +109,4,0,12.7777,10.7071,2631 +110,4,0,14.0723,12.0823,2679 +111,4,0,14.1577,12.7831,2594 +112,4,0,12.8991,11.3911,2610 +113,4,0,13.3921,11.4120,2618 +114,4,0,12.9666,10.9785,2639 +115,4,0,13.0969,11.3666,2683 +116,4,0,12.7354,10.4841,2662 +117,4,0,12.6617,10.7472,2669 +118,4,0,13.6703,11.4068,2661 +119,4,0,13.4880,10.4082,2767 +120,4,0,11.5610,10.1936,412099 +121,4,0,12.5476,10.9295,58619 +122,4,0,11.5655,10.3965,48033 +123,4,0,12.4480,10.7871,38505 +124,4,0,11.9442,10.2318,33624 +125,4,0,12.1355,10.8016,18519 +126,4,0,13.2513,11.4248,15662 +127,4,0,12.9282,10.8944,11727 +128,4,0,13.5760,8.8392,10164 +129,4,0,12.1254,11.1977,8732 +130,4,0,13.1994,10.6498,8017 +131,4,0,13.5756,13.2655,5177 +132,4,0,12.6917,11.1997,3438 +133,4,0,12.5881,10.8616,3236 +134,4,0,13.4458,10.8962,3208 +135,4,0,12.8625,11.0065,3684 +136,4,0,12.7145,11.2674,3691 +137,4,0,15.0918,12.9816,3794 +138,4,0,12.7857,11.4908,3974 +139,4,0,12.8190,10.7365,3178 +140,4,0,12.9152,11.1271,3070 +141,4,0,12.7526,10.7333,3397 +142,4,0,12.6001,10.5081,2792 +143,4,0,12.8352,11.2556,2888 +144,4,0,12.6402,11.1225,2885 +145,4,0,12.7185,10.6172,3092 +146,4,0,13.8902,7.3739,2712 +147,4,0,13.0263,11.3383,2692 +148,4,0,11.9393,10.2539,2781 +149,4,0,11.8031,10.5625,2731 +150,4,0,11.8277,10.5177,2815 +151,4,0,11.7025,9.4124,2761 +152,4,0,12.1233,11.3168,3174 +153,4,0,12.6488,10.8995,2599 +154,4,0,11.9605,10.2887,2594 +155,4,0,12.2545,10.5326,2600 +156,4,0,12.0489,10.2967,2646 +157,4,0,12.9813,11.4517,2717 +158,4,0,12.7932,11.0351,2764 +159,4,0,12.4008,9.4371,2916 +160,4,0,12.9725,11.4011,2625 +161,4,0,12.5890,11.1837,2618 +162,4,0,12.8651,11.4740,2617 +163,4,0,12.6475,11.0301,2801 +164,4,0,13.2328,10.8107,2641 +165,4,0,13.2483,11.5729,2631 +166,4,0,12.8767,10.9477,2755 +167,4,0,17.7833,15.7859,2594 +168,4,0,12.7172,11.3087,2611 +169,4,0,12.7368,10.9950,2613 +170,4,0,12.6545,10.3424,2654 +171,4,0,13.1382,11.1245,2706 +172,4,0,12.9779,11.4399,2658 +173,4,0,12.7350,10.7267,2713 +174,4,0,12.6119,11.2010,2681 +175,4,0,12.3480,11.0659,2588 +176,4,0,13.0176,10.7310,2584 +177,4,0,12.8296,10.7659,3726 +178,4,0,12.9181,10.8696,3913 +179,4,0,12.8478,10.8938,3241 +180,4,0,134.0080,45.7378,231707 +181,4,0,11.3619,10.8186,65901 +182,4,0,11.3424,10.8767,36886 +183,4,0,11.3004,10.8404,69404 +184,4,0,11.1377,10.6450,87864 +185,4,0,11.3284,10.7740,53700 +186,4,0,11.2400,10.7317,24415 +187,4,0,11.4957,10.9864,15407 +188,4,0,11.3275,10.7921,12151 +189,4,0,11.7147,11.0975,11449 +190,4,0,11.7852,11.1681,8599 +191,4,0,11.8120,11.1394,6107 +192,4,0,11.9695,11.2110,5132 +193,4,0,11.9220,11.2192,3880 +194,4,0,11.9333,11.1263,4001 +195,4,0,13.5522,11.1434,3860 +196,4,0,16.1973,11.0965,4045 +197,4,0,13.3461,11.7220,3955 +198,4,0,13.1313,10.9728,3721 +199,4,0,13.8133,9.7589,3748 +200,4,0,13.5193,12.3300,3386 +201,4,0,12.1975,11.5005,2761 +202,4,0,12.9606,11.1780,2750 +203,4,0,12.8160,10.9885,2836 +204,4,0,14.0931,10.8912,2977 +205,4,0,13.8083,10.9268,2960 +206,4,0,13.3847,11.8306,3010 +207,4,0,12.5363,10.8011,2978 +208,4,0,12.9099,11.8741,2889 +209,4,0,13.2543,11.3656,2914 +210,4,0,13.3302,11.8084,2847 +211,4,0,12.9476,11.5341,3111 +212,4,0,12.8057,11.0186,2714 +213,4,0,12.7599,10.8277,2843 +214,4,0,13.4767,10.0355,2633 +215,4,0,12.9582,11.3193,2659 +216,4,0,12.5738,11.1062,2696 +217,4,0,12.7788,10.8018,2728 +218,4,0,14.1926,12.2880,2772 +219,4,0,13.1881,12.6832,2740 +220,4,0,15.1732,10.5715,2809 +221,4,0,13.6040,11.6574,2679 +222,4,0,12.8833,11.4220,2865 +223,4,0,12.9280,11.3853,2612 +224,4,0,13.1373,10.4893,2626 +225,4,0,13.2718,11.6861,2693 +226,4,0,12.5868,11.1974,2708 +227,4,0,12.7076,10.9582,2765 +228,4,0,13.1864,11.2015,2645 +229,4,0,13.2531,10.8815,2733 +230,4,0,12.8796,10.9042,2667 +231,4,0,13.4498,11.2291,2647 +232,4,0,13.9190,12.1944,2659 +233,4,0,13.1015,11.5098,2757 +234,4,0,13.1588,10.9065,2656 +235,4,0,13.2411,11.3559,2594 +236,4,0,13.7807,11.7609,2603 +237,4,0,12.8554,11.4117,2605 +238,4,0,12.6016,11.3238,2610 +239,4,0,12.8822,10.9550,2641 +240,4,0,14.2442,12.2149,442009 +241,4,0,14.5824,13.1028,52997 +242,4,0,12.4138,11.4835,26956 +243,4,0,12.5661,10.7166,26939 +244,4,0,12.1504,10.4522,22402 +245,4,0,12.3603,10.5814,15271 +246,4,0,12.5160,10.8985,12647 +247,4,0,12.5968,11.0420,10161 +248,4,0,13.0039,11.6604,9695 +249,4,0,13.5424,11.4042,5893 +250,4,0,12.7861,10.7513,5590 +251,4,0,13.6761,10.6885,5226 +252,4,0,13.8616,10.5685,5095 +253,4,0,13.2089,10.7100,5164 +254,4,0,12.8943,10.7372,4634 +255,4,0,14.1653,10.9315,5338 +256,4,0,13.2086,11.3175,2984 +257,4,0,12.9812,11.2207,2918 +258,4,0,13.1000,10.7895,3051 +259,4,0,12.7092,11.0678,3217 +260,4,0,12.9957,10.7936,3680 +261,4,0,13.0837,11.0344,3433 +262,4,0,12.9444,10.7837,3891 +263,4,0,12.9770,10.7770,2978 +264,4,0,13.4183,11.2640,2906 +265,4,0,12.8216,11.1036,2925 +266,4,0,12.5331,11.1646,3487 +267,4,0,12.1052,11.3095,2969 +268,4,0,11.1945,10.4788,2822 +269,4,0,11.1530,10.5900,3027 +270,4,0,11.1354,10.7197,2708 +271,4,0,11.0603,10.5330,2735 +272,4,0,11.5762,11.0238,2688 +273,4,0,11.0157,10.5466,2954 +274,4,0,11.1775,10.5150,3013 +275,4,0,11.2160,10.3655,2878 +276,4,0,11.3730,10.4947,3036 +277,4,0,11.1568,10.6033,2909 +278,4,0,11.2608,10.6148,2598 +279,4,0,11.1343,10.5542,2609 +280,4,0,11.1115,10.5756,2615 +281,4,0,11.8133,11.0280,2652 +282,4,0,12.2939,10.5456,2667 +283,4,0,12.7636,11.0419,2728 +284,4,0,12.6510,10.5487,2632 +285,4,0,12.8696,10.7620,2620 +286,4,0,13.2662,10.2300,2603 +287,4,0,12.5982,10.7550,2633 +288,4,0,13.8985,10.6103,2885 +289,4,0,12.9265,11.0253,2631 +290,4,0,12.9009,10.7637,2679 +291,4,0,12.9968,10.7873,2594 +292,4,0,12.7845,10.9154,2610 +293,4,0,12.8021,10.6978,2618 +294,4,0,12.9349,10.7320,2639 +295,4,0,13.2457,11.3104,2683 +296,4,0,12.9198,10.6354,2662 +297,4,0,12.8543,10.7010,2669 +298,4,0,12.7914,10.7464,2661 +299,4,0,13.4770,11.5678,2767 +300,4,0,11.8995,11.0520,412099 +301,4,0,12.8616,10.7130,58619 +302,4,0,12.2310,11.2477,48033 +303,4,0,12.5780,10.8787,38505 +304,4,0,13.1624,9.8424,33624 +305,4,0,11.5996,10.2779,18519 +306,4,0,11.3148,10.4357,15662 +307,4,0,11.8522,10.6535,11727 +308,4,0,11.7015,10.7801,10164 +309,4,0,12.0776,10.6310,8732 +310,4,0,11.9200,10.4573,8017 +311,4,0,12.3655,10.6865,5177 +312,4,0,14.4614,10.0132,3438 +313,4,0,11.7146,10.7977,3236 +314,4,0,12.4040,10.2677,3208 +315,4,0,12.8894,10.8638,3684 +316,4,0,12.7354,10.9682,3691 +317,4,0,13.4712,9.7649,3794 +318,4,0,12.9297,10.7301,3974 +319,4,0,13.1295,10.4141,3178 +320,4,0,11.8470,10.9056,3070 +321,4,0,12.5534,10.7498,3397 +322,4,0,12.8171,10.5989,2792 +323,4,0,13.1960,10.7827,2888 +324,4,0,14.0985,10.1349,2885 +325,4,0,12.8843,10.9876,3092 +326,4,0,12.7276,7.6242,2712 +327,4,0,12.8596,11.3718,2692 +328,4,0,12.5340,10.4740,2781 +329,4,0,11.3786,10.3131,2731 +330,4,0,12.2022,10.4860,2815 +331,4,0,11.5346,10.4953,2761 +332,4,0,11.3293,10.3752,3174 +333,4,0,11.8841,10.3078,2599 +334,4,0,11.6511,10.4978,2594 +335,4,0,12.2339,9.8195,2600 +336,4,0,11.8342,10.2039,2646 +337,4,0,11.6484,10.0823,2717 +338,4,0,12.0134,10.8123,2764 +339,4,0,11.9327,10.1381,2916 +340,4,0,12.0126,10.6792,2625 +341,4,0,12.0429,10.5858,2618 +342,4,0,12.2052,10.6200,2617 +343,4,0,12.0602,10.2809,2801 +344,4,0,11.9735,10.4302,2641 +345,4,0,13.1130,11.2817,2631 +346,4,0,13.1973,11.3888,2755 +347,4,0,14.6098,10.0620,2594 +348,4,0,13.3267,11.7849,2611 +349,4,0,12.6616,10.6990,2613 +350,4,0,12.6173,10.9402,2654 +351,4,0,13.0114,10.4267,2706 +352,4,0,12.9527,10.8874,2658 +353,4,0,13.3411,10.6215,2713 +354,4,0,13.1127,11.1668,2681 +355,4,0,12.9045,11.4183,2594 +356,4,0,12.6212,10.9060,2594 +357,4,0,12.6324,10.9304,2599 +358,4,0,12.7462,10.8579,2615 +359,4,0,15.9689,14.5979,2631 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.csv new file mode 100644 index 0000000..4c2c200 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.0209,31.1356,0.0265,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.8728,27.6508,0.0121,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8708,27.8375,0.0210,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.8940,26.5848,0.0232,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.0209,5.9131,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.8728,5.7162,0.0178,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8708,10.5916,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.8940,10.6073,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.0209,5.6397,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.8728,5.6281,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8708,10.4957,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.8940,10.5179,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.0209,5.6712,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.8728,5.6092,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8708,10.6698,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.8940,10.6607,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.0209,5.8457,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.8728,5.7785,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8708,10.8254,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.8940,10.8220,0.0177,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.0209,5.7557,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.8728,5.7548,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8708,10.7731,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.8940,10.7797,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.0209,5.8001,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.8728,5.7540,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8708,10.9034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.8940,10.8660,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.0209,5.7849,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.8728,5.7899,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8708,10.7421,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.8940,10.7408,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.0209,5.8991,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.8728,5.7272,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8708,10.7077,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.8940,10.6872,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.0209,5.8298,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.8728,5.7898,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8708,10.8690,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.8940,10.7749,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.0209,6.1116,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.8728,5.9618,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8708,11.0699,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.8940,11.0430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.0209,6.4100,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.8728,6.0670,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8708,11.2538,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.8940,11.0874,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.0209,6.4340,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.8728,6.0109,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8708,10.9666,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.8940,10.9220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.0209,6.3651,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.8728,6.0261,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8708,10.9967,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.8940,10.8224,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.0209,6.2050,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.8728,5.8507,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8708,10.5807,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.8940,10.5295,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.0209,5.7888,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.8728,5.5874,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8708,10.5678,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.8940,10.4746,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.0209,6.0901,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.8728,5.7915,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8708,11.1838,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.8940,11.0892,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.0209,6.0085,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.8728,5.9503,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8708,11.2978,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.8940,11.3611,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.0209,5.9691,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.8728,5.7165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8708,10.3387,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.8940,9.7938,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.0209,6.5576,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.8728,6.0372,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8708,11.0571,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.8940,10.7606,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.0209,6.2865,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.8728,6.1302,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8708,10.3972,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.8940,11.3628,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.0209,6.4224,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.8728,6.0341,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8708,10.7035,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.8940,10.4414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.0209,6.4563,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.8728,6.0058,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8708,10.4322,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.8940,10.1899,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.0209,6.2870,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.8728,5.9738,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8708,10.6164,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.8940,10.4072,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.0209,6.4047,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.8728,5.9326,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8708,10.6031,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.8940,10.4370,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.0209,7.2247,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.8728,6.4206,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8708,10.8857,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.8940,10.5265,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.0209,7.1837,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.8728,6.3453,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8708,10.6711,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.8940,10.7959,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.0209,8.7220,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.8728,7.8677,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8708,10.7878,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.8940,10.6697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.0209,7.0011,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.8728,6.4037,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8708,10.6747,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.8940,10.6775,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.0209,7.2266,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.8728,6.4247,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8708,10.7272,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.8940,10.7894,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.0209,7.1018,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.8728,6.2544,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8708,10.6592,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.8940,10.9400,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.0209,7.1542,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.8728,6.2240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8708,10.7398,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.8940,9.4068,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.0209,6.9869,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.8728,6.3002,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8708,10.8393,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.8940,10.8000,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.0209,6.8794,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.8728,6.1757,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8708,11.1201,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.8940,10.7441,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.0209,7.3920,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.8728,6.3538,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8708,10.5729,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.8940,10.5748,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.0209,6.7850,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.8728,6.2172,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8708,10.7823,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.8940,10.0412,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.0209,7.0095,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.8728,6.4761,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8708,10.1169,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.8940,10.4645,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.0209,6.9870,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.8728,6.2358,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8708,11.0130,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.8940,10.9402,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.0209,7.2496,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.8728,6.1597,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8708,11.3534,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.8940,11.2834,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.0209,7.4041,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.8728,6.6314,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8708,11.2182,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.8940,11.0307,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.0209,7.1738,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.8728,6.4101,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8708,10.6760,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.8940,10.7206,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.0209,7.1659,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.8728,6.3742,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8708,10.7965,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.8940,10.7140,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.0209,6.9935,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.8728,6.2818,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8708,10.5952,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.8940,10.7520,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.0209,7.3108,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.8728,6.2327,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8708,12.0902,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.8940,12.0215,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.0209,7.6080,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.8728,6.7022,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8708,10.9523,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.8940,10.9142,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.0209,7.9561,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.8728,6.2086,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8708,11.1707,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.8940,11.7997,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.0209,7.4863,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.8728,6.2466,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8708,11.6211,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.8940,11.5533,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.0209,7.0691,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.8728,6.2885,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8708,11.8285,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.8940,11.2150,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.0209,7.1068,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.8728,6.2776,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8708,12.1445,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.8940,12.0612,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.0209,7.3195,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.8728,7.8364,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8708,10.8385,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.8940,10.8045,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.0209,7.1841,0.1080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.8728,6.5932,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8708,11.7290,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.8940,11.5047,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.0209,7.6231,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.8728,6.5095,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8708,10.9388,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.8940,10.6588,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.0209,6.9602,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.8728,6.1430,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8708,10.9676,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.8940,10.9142,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.0209,7.1335,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.8728,6.2780,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8708,10.6948,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.8940,10.7214,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.0209,8.2218,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.8728,7.3547,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8708,10.8510,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.8940,10.6656,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.0209,6.7258,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.8728,6.0083,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8708,10.5830,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.8940,10.6160,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.0209,6.4698,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.8728,5.9147,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8708,10.8850,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.8940,10.6778,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.0209,6.3920,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.8728,5.9201,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8708,10.4168,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.8940,10.2870,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.0209,6.3306,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.8728,5.8836,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8708,11.8130,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.8940,11.7577,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.0209,6.3393,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.8728,6.0632,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8708,10.7894,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.8940,10.5895,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.0209,6.7862,0.1946,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.8728,6.5385,0.0736,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8708,10.3815,0.0472,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.8940,9.9405,0.0729,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.0209,6.4359,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.8728,6.0176,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8708,10.3225,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.8940,10.3159,0.0131,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.0209,6.3246,0.0330,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.8728,5.8705,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8708,10.4522,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.8940,10.1493,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.0209,6.5485,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.8728,5.8867,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8708,10.4793,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.8940,10.4095,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.0209,7.0880,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.8728,6.0570,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8708,11.1213,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.8940,11.1326,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.0209,7.3290,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.8728,6.2198,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8708,11.9953,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.8940,11.8058,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.0209,7.0849,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.8728,6.1735,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8708,11.4232,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.8940,11.3510,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.0209,7.0155,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.8728,6.2239,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8708,10.2334,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.8940,10.8658,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.0209,7.1789,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.8728,6.2730,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8708,10.7093,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.8940,10.7908,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.0209,7.3956,0.0642,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.8728,6.2330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8708,11.2515,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.8940,10.9787,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.0209,6.9248,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.8728,6.2744,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8708,10.9483,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.8940,10.5403,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.0209,6.9158,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.8728,6.2762,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8708,10.8702,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.8940,10.7144,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.0209,8.0181,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.8728,6.8100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8708,10.8135,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.8940,10.7676,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.0209,6.9585,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.8728,6.5468,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8708,10.3827,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.8940,10.9294,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.0209,8.0513,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.8728,6.9542,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8708,9.9432,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.8940,10.6950,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.0209,6.8836,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.8728,6.0793,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8708,10.7780,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.8940,10.4448,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.0209,6.3802,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.8728,5.9586,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8708,10.1329,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.8940,10.2692,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.0209,6.2318,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.8728,5.9084,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8708,10.2054,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.8940,10.3552,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.0209,6.3638,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.8728,6.0161,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8708,10.4053,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.8940,10.2987,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.0209,6.4416,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.8728,5.9201,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8708,9.9733,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.8940,9.8217,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.0209,6.1621,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.8728,5.8985,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8708,10.4672,0.0320,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.8940,10.3450,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.0209,6.6276,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.8728,6.0127,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8708,10.3588,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.8940,10.2759,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.0209,6.4473,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.8728,5.9352,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8708,10.3985,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.8940,10.2523,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.0209,6.4219,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.8728,6.1207,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8708,9.0780,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.8940,8.9978,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.0209,6.5679,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.8728,6.1585,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8708,10.3774,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.8940,10.2218,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.0209,7.2431,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.8728,6.3963,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8708,10.7736,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.8940,10.7137,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.0209,7.0987,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.8728,6.2752,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8708,10.7165,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.8940,10.7310,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.0209,7.0972,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.8728,6.3720,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8708,10.7002,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.8940,10.7536,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.0209,7.2730,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.8728,6.1822,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8708,11.5960,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.8940,12.1033,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.0209,7.0424,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.8728,6.3262,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8708,10.5797,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.8940,10.7269,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.0209,7.1960,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.8728,6.3158,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8708,10.6939,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.8940,11.9587,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.0209,7.1634,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.8728,6.3203,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8708,10.7030,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.8940,10.5650,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.0209,7.0835,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.8728,6.2076,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8708,11.3509,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.8940,10.9519,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.0209,7.1648,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.8728,6.2103,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8708,11.1818,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.8940,10.9689,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.0209,7.1370,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.8728,6.3716,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8708,10.6293,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.8940,10.4413,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.0209,6.8113,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.8728,6.1632,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8708,10.9887,0.0113,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.8940,10.6014,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.0209,6.9189,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.8728,6.3547,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8708,10.2689,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.8940,10.6205,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.0209,6.7140,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.8728,6.2173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8708,10.6082,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.8940,10.4427,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.0209,6.8442,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.8728,6.2219,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8708,10.7964,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.8940,10.6561,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.0209,7.0607,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.8728,8.3147,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8708,10.8605,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.8940,10.6202,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.0209,8.2360,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.8728,7.8892,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8708,11.1657,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.8940,11.1141,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.0209,6.9532,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.8728,6.0527,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8708,11.1538,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.8940,10.5047,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.0209,7.1267,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.8728,6.2498,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8708,10.8169,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.8940,10.8103,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.0209,7.3685,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.8728,6.1015,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8708,11.9802,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.8940,11.1416,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.0209,7.5297,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.8728,6.3854,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8708,11.5706,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.8940,11.5412,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.0209,7.8012,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.8728,6.2898,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8708,10.6733,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.8940,10.6015,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.0209,7.3245,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.8728,6.2779,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8708,11.2677,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.8940,11.0426,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.0209,7.2463,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.8728,6.3830,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8708,11.5777,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.8940,11.4903,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.0209,7.1821,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.8728,6.1405,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8708,11.2972,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.8940,11.0437,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.0209,7.0673,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.8728,6.3025,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8708,10.6541,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.8940,10.6930,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.0209,6.7261,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.8728,6.4699,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8708,11.4592,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.8940,11.2496,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.0209,7.2874,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.8728,6.2189,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8708,11.2303,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.8940,10.9508,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.0209,7.3505,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.8728,6.3487,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8708,11.2153,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.8940,11.0469,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.0209,7.1591,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.8728,6.2669,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8708,10.3068,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.8940,10.2919,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.0209,7.0891,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.8728,6.2424,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8708,10.6402,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.8940,10.7602,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.0209,7.0901,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.8728,6.2538,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8708,10.9261,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.8940,10.7857,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.0209,7.1654,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.8728,6.1010,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8708,10.6635,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.8940,10.2129,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.0209,6.4011,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.8728,6.0917,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8708,10.6167,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.8940,10.4142,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.0209,6.3813,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.8728,5.9488,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8708,10.0862,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.8940,9.9881,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.0209,8.9985,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.8728,8.5465,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8708,10.4667,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.8940,10.3563,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.0209,8.5225,0.0473,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.8728,7.2100,0.0284,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8708,9.4433,0.0093,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.8940,9.7567,0.0115,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.0209,6.3981,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.8728,6.1785,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8708,10.9004,0.0754,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.8940,10.9880,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.0209,6.9487,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.8728,6.2535,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8708,10.9557,0.0130,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.8940,10.7997,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.0209,7.3998,0.0958,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.8728,6.4475,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8708,10.8368,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.8940,10.7330,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.0209,8.8722,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.8728,7.8025,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8708,10.7485,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.8940,10.5848,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.0209,7.3601,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.8728,6.3269,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8708,10.7855,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.8940,10.8142,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.0209,7.1122,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.8728,6.3308,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8708,10.7207,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.8940,10.7175,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.0209,7.1450,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.8728,6.2108,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8708,11.2887,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.8940,11.2712,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.0209,7.0428,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.8728,6.2747,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8708,11.1942,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.8940,11.0786,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.0209,7.1428,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.8728,6.2900,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8708,13.1720,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.8940,12.9644,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.0209,7.2262,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.8728,6.1612,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8708,11.7429,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.8940,11.5907,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.0209,7.0189,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.8728,6.1760,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8708,11.0105,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.8940,10.9305,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.0209,7.3078,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.8728,6.3685,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8708,10.5080,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.8940,9.8330,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.0209,6.9657,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.8728,6.2860,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8708,10.3566,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.8940,10.2580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.0209,7.8602,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.8728,6.8733,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8708,11.0322,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.8940,10.7450,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.0209,7.0847,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.8728,6.5580,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8708,11.0864,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.8940,10.9730,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.0209,7.2623,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.8728,6.3327,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8708,11.2415,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.8940,11.0623,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.0209,7.2491,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.8728,6.2999,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8708,12.0942,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.8940,12.1122,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.0209,7.0410,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.8728,6.2473,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8708,11.1127,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.8940,10.7523,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.0209,9.8781,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.8728,8.8245,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8708,10.7777,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.8940,10.7477,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.0209,7.1075,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.8728,6.4829,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8708,11.6642,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.8940,11.3824,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.0209,7.3533,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.8728,6.4939,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8708,11.0488,0.0158,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.8940,10.6940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.0209,7.6418,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.8728,6.4022,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8708,10.9105,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.8940,10.9573,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.0209,6.4730,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.8728,5.9583,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8708,10.3193,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.8940,10.3833,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.0209,6.4100,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.8728,5.8879,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8708,10.2452,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.8940,10.4006,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.0209,6.1892,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.8728,5.8911,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8708,10.2073,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.8940,10.2034,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.0209,6.2660,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.8728,5.8493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8708,10.2613,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.8940,10.2012,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.0209,6.3723,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.8728,5.9316,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8708,10.2938,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.8940,10.3351,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.0209,6.2886,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.8728,5.8705,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8708,10.2075,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.8940,10.2064,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.0209,6.4017,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.8728,5.8543,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8708,10.5428,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.8940,10.2723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.0209,6.3963,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.8728,5.9538,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8708,10.3599,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.8940,10.3274,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.0209,6.5950,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.8728,5.9835,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8708,10.8039,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.8940,10.6090,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.0209,6.4964,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.8728,6.0407,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8708,10.7345,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.8940,10.3662,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.0209,7.0085,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.8728,6.2888,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8708,10.7680,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.8940,10.7926,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.0209,7.2797,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.8728,6.2375,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8708,11.7218,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.8940,17.7347,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.0209,7.2588,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.8728,6.2207,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8708,11.6750,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.8940,11.6347,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.0209,7.1866,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.8728,6.3340,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8708,11.1899,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.8940,10.9488,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.0209,6.8606,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.8728,6.4440,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8708,10.5061,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.8940,10.6983,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.0209,6.9242,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.8728,6.2446,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8708,10.5917,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.8940,10.7015,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.0209,7.7790,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.8728,6.5243,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8708,10.4428,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.8940,10.7157,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.0209,6.9776,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.8728,6.2545,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8708,10.7897,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.8940,10.5413,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.0209,7.1944,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.8728,6.2915,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8708,10.7203,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.8940,10.7680,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.0209,7.0450,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.8728,6.2080,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8708,10.5107,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.8940,10.8465,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.0209,7.2173,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.8728,6.3981,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8708,13.6346,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.8940,13.2221,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.0209,7.3738,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.8728,6.2225,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8708,11.2048,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.8940,11.2026,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.0209,7.2062,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.8728,6.3469,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8708,11.1438,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.8940,11.0129,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.0209,7.0652,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.8728,6.2975,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8708,10.6300,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.8940,10.9093,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.0209,6.8636,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.8728,6.2449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8708,10.8893,0.0574,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.8940,10.7041,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.0209,7.0391,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.8728,6.1692,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8708,10.9527,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.8940,10.5249,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.0209,6.9188,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.8728,6.1205,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8708,10.4765,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.8940,10.5260,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.0209,6.7805,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.8728,6.5658,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8708,10.3392,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.8940,10.5823,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.0209,7.3763,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.8728,6.3392,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8708,11.2000,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.8940,10.9871,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.0209,6.8480,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.8728,6.3033,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8708,10.7004,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.8940,10.4037,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.0209,6.9222,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.8728,6.6147,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8708,10.4729,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.8940,10.4149,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.0209,7.0077,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.8728,6.3948,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8708,10.4805,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.8940,10.8052,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.0209,6.8427,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.8728,6.3928,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +702,2.8708,10.5167,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +703,2.8940,10.2584,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +704,5.0209,6.8388,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.8728,6.2721,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +706,2.8708,10.6758,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +707,2.8940,10.4961,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +708,5.0209,6.8916,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.8728,6.2428,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +710,2.8708,10.9037,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +711,2.8940,10.5650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +712,5.0209,7.6607,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.8728,6.5951,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +714,2.8708,10.8295,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +715,2.8940,10.5444,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +716,5.0209,6.7015,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.8728,6.0716,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +718,2.8708,10.1281,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +719,2.8940,10.0272,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +720,5.0209,43.3129,0.0100,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.8728,5.8875,0.0344,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +722,2.8708,5.9393,0.0715,0.0000,0,0,0.0000,0,0.0000,0,1,0,122966,0 +723,2.8940,10.5044,0.0515,0.0000,0,0,0.0000,0,0.0000,0,1,0,124843,0 +724,5.0209,6.0013,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.8728,5.8914,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +726,2.8708,10.6286,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,20850,0 +727,2.8940,10.5717,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6793,0 +728,5.0209,5.9502,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.8728,5.7663,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +730,2.8708,10.9169,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,16820,0 +731,2.8940,10.8990,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,10681,0 +732,5.0209,6.3051,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.8728,6.0898,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +734,2.8708,11.1680,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10076,0 +735,2.8940,11.2150,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7736,0 +736,5.0209,6.2264,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.8728,6.0788,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +738,2.8708,11.3781,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,7393,0 +739,2.8940,11.1597,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,7602,0 +740,5.0209,6.7023,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.8728,6.2896,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +742,2.8708,11.1702,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,6646,0 +743,2.8940,11.0207,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6074,0 +744,5.0209,6.7405,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.8728,6.3114,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +746,2.8708,10.9102,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +747,2.8940,10.7945,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4205,0 +748,5.0209,6.9795,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.8728,6.3838,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +750,2.8708,10.6815,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2005,0 +751,2.8940,11.1832,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,4629,0 +752,5.0209,6.9400,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.8728,6.3528,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +754,2.8708,10.8749,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1974,0 +755,2.8940,10.8703,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1630,0 +756,5.0209,7.1264,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.8728,6.5059,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +758,2.8708,11.8872,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +759,2.8940,11.3924,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1533,0 +760,5.0209,7.1569,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.8728,6.1680,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +762,2.8708,10.9918,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +763,2.8940,10.9124,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1143,0 +764,5.0209,6.8134,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.8728,6.1115,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +766,2.8708,10.1222,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,1656,0 +767,2.8940,9.7098,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1418,0 +768,5.0209,6.8932,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.8728,6.1550,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +770,2.8708,10.1302,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +771,2.8940,11.1387,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1847,0 +772,5.0209,8.8125,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.8728,7.6687,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +774,2.8708,10.7610,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +775,2.8940,10.7572,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +776,5.0209,7.6792,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.8728,6.6895,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +778,2.8708,11.4142,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1428,0 +779,2.8940,11.1493,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +780,5.0209,7.1267,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.8728,6.3046,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +782,2.8708,10.7286,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1266,0 +783,2.8940,10.7561,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +784,5.0209,6.7412,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.8728,6.2602,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +786,2.8708,10.6342,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1716,0 +787,2.8940,10.6825,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +788,5.0209,7.2105,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.8728,6.2907,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +790,2.8708,11.2584,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +791,2.8940,11.1262,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,871,0 +792,5.0209,6.9113,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.8728,6.1007,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +794,2.8708,10.4538,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +795,2.8940,10.3098,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,993,0 +796,5.0209,6.6838,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.8728,6.0485,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +798,2.8708,9.7040,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +799,2.8940,9.6695,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +800,5.0209,6.8685,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.8728,6.2991,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +802,2.8708,11.4347,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +803,2.8940,11.1798,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +804,5.0209,7.0800,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.8728,6.5694,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +806,2.8708,10.5800,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,873,0 +807,2.8940,10.9810,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1322,0 +808,5.0209,7.2590,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.8728,6.3115,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +810,2.8708,10.7417,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +811,2.8940,10.1344,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +812,5.0209,7.0294,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.8728,6.2755,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +814,2.8708,10.4989,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,1041,0 +815,2.8940,10.7096,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +816,5.0209,7.0624,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.8728,6.3083,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +818,2.8708,10.9024,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1086,0 +819,2.8940,10.7771,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +820,5.0209,6.9625,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.8728,6.2541,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +822,2.8708,10.8157,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,922,0 +823,2.8940,10.7934,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,831,0 +824,5.0209,7.2834,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.8728,6.4717,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +826,2.8708,10.7773,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,835,0 +827,2.8940,10.7850,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +828,5.0209,7.0145,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.8728,6.2845,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +830,2.8708,10.6433,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1243,0 +831,2.8940,10.8023,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,940,0 +832,5.0209,6.9207,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.8728,6.2348,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +834,2.8708,10.7678,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +835,2.8940,10.6834,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +836,5.0209,7.1549,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.8728,6.1825,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +838,2.8708,10.1688,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +839,2.8940,9.7343,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +840,5.0209,9.1428,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.8728,43.2755,0.0189,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +842,2.8708,6.3774,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +843,2.8940,14.1077,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +844,5.0209,5.9652,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.8728,5.8532,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +846,2.8708,10.7183,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +847,2.8940,10.6371,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,735,0 +848,5.0209,5.8911,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.8728,5.7444,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +850,2.8708,10.6473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +851,2.8940,10.5764,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +852,5.0209,6.0589,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.8728,6.0025,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +854,2.8708,10.9748,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,754,0 +855,2.8940,10.9832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,929,0 +856,5.0209,6.1144,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.8728,6.0441,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +858,2.8708,10.9650,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,815,0 +859,2.8940,10.9210,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,887,0 +860,5.0209,6.0728,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.8728,6.0317,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +862,2.8708,10.9232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,749,0 +863,2.8940,10.9480,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,986,0 +864,5.0209,6.1087,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.8728,6.0581,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +866,2.8708,10.9533,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +867,2.8940,10.9564,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +868,5.0209,6.1886,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.8728,6.1330,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +870,2.8708,12.0957,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +871,2.8940,12.1896,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +872,5.0209,6.8669,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.8728,6.1722,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +874,2.8708,11.0734,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,891,0 +875,2.8940,10.8712,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +876,5.0209,6.7245,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.8728,6.2004,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +878,2.8708,10.6110,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +879,2.8940,10.8492,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,767,0 +880,5.0209,7.2862,0.1122,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.8728,6.4031,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +882,2.8708,10.5296,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +883,2.8940,10.6155,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,823,0 +884,5.0209,6.9912,0.0450,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.8728,6.3320,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +886,2.8708,11.1623,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +887,2.8940,10.8738,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +888,5.0209,7.0476,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.8728,6.4855,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +890,2.8708,11.3548,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +891,2.8940,11.3023,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,932,0 +892,5.0209,6.9828,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.8728,6.2114,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +894,2.8708,11.1843,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +895,2.8940,10.9120,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +896,5.0209,7.0147,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.8728,6.1687,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +898,2.8708,10.9443,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +899,2.8940,10.9695,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +900,5.0209,7.2103,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.8728,6.2332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +902,2.8708,9.5493,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +903,2.8940,9.7317,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +904,5.0209,7.2274,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.8728,6.3935,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +906,2.8708,11.4112,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +907,2.8940,11.2305,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,764,0 +908,5.0209,7.0724,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.8728,6.2876,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +910,2.8708,10.3702,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +911,2.8940,10.6939,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,794,0 +912,5.0209,7.2443,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.8728,6.2854,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +914,2.8708,11.0506,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +915,2.8940,10.8472,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,784,0 +916,5.0209,6.9051,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.8728,6.1541,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +918,2.8708,10.5319,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,763,0 +919,2.8940,10.3215,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,838,0 +920,5.0209,6.6252,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.8728,6.0360,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +922,2.8708,10.9220,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +923,2.8940,10.7190,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +924,5.0209,6.3541,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.8728,5.8770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +926,2.8708,10.7981,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +927,2.8940,10.6477,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +928,5.0209,6.7014,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.8728,6.1618,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +930,2.8708,10.5971,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +931,2.8940,10.3008,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +932,5.0209,6.4763,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.8728,5.9904,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +934,2.8708,10.3080,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +935,2.8940,10.2911,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +936,5.0209,6.5791,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.8728,6.0790,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +938,2.8708,10.5043,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.8940,10.6297,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +940,5.0209,6.7564,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.8728,6.2928,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +942,2.8708,10.5091,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +943,2.8940,10.6797,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +944,5.0209,6.9050,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.8728,6.2194,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +946,2.8708,11.2049,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +947,2.8940,11.1047,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,803,0 +948,5.0209,6.9444,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.8728,6.2894,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +950,2.8708,10.5253,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,692,0 +951,2.8940,10.7392,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +952,5.0209,7.0064,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.8728,6.2555,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +954,2.8708,10.3212,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1467,0 +955,2.8940,10.6458,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +956,5.0209,7.7350,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.8728,6.7597,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +958,2.8708,11.5173,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +959,2.8940,11.3863,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +960,5.0209,5.9936,0.0203,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.8728,5.7410,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +962,2.8708,27.5981,0.0130,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +963,2.8940,5.6623,0.0186,0.0000,0,0,0.0000,0,0.0000,0,1,0,119373,0 +964,5.0209,6.0035,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.8728,5.6717,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +966,2.8708,10.7041,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +967,2.8940,10.6825,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15979,0 +968,5.0209,5.7596,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.8728,5.6676,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +970,2.8708,10.6254,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +971,2.8940,10.6267,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,11010,0 +972,5.0209,5.7342,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.8728,5.6963,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +974,2.8708,11.1503,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +975,2.8940,11.0685,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,7235,0 +976,5.0209,6.5700,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.8728,6.0180,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +978,2.8708,11.7630,0.1072,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +979,2.8940,11.7790,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4116,0 +980,5.0209,7.1711,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.8728,6.0299,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +982,2.8708,10.9772,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +983,2.8940,10.7478,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3250,0 +984,5.0209,6.3593,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.8728,5.8856,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +986,2.8708,10.8788,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +987,2.8940,10.6628,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,2938,0 +988,5.0209,6.2423,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.8728,5.8774,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +990,2.8708,10.3895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +991,2.8940,10.0945,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2791,0 +992,5.0209,6.3473,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.8728,5.9932,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +994,2.8708,10.6762,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +995,2.8940,10.5279,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +996,5.0209,6.7725,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.8728,6.3211,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +998,2.8708,10.7170,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +999,2.8940,10.3428,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +1000,5.0209,6.6470,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.8728,6.3667,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1002,2.8708,10.8573,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1003,2.8940,10.8276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2243,0 +1004,5.0209,6.8748,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.8728,6.3079,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1006,2.8708,10.5650,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1007,2.8940,10.8094,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1008,5.0209,7.1270,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.8728,6.2372,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1010,2.8708,10.8354,0.1128,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1011,2.8940,11.1399,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,768,0 +1012,5.0209,7.2330,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.8728,6.2397,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1014,2.8708,10.6541,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1015,2.8940,10.6670,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,864,0 +1016,5.0209,7.4668,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.8728,6.3698,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1018,2.8708,11.2066,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1019,2.8940,11.0982,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1197,0 +1020,5.0209,7.1748,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.8728,6.2547,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8708,10.7205,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1023,2.8940,11.6644,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +1024,5.0209,7.1694,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.8728,6.3480,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8708,12.2057,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1027,2.8940,12.2230,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1299,0 +1028,5.0209,7.3403,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.8728,6.4414,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8708,11.0929,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1031,2.8940,10.9776,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1596,0 +1032,5.0209,7.5147,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.8728,6.3276,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8708,10.9643,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1035,2.8940,10.6997,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1036,5.0209,7.1470,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.8728,6.0421,0.0226,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8708,11.0026,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1039,2.8940,10.7636,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1040,5.0209,7.0944,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.8728,6.9469,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8708,11.8716,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1043,2.8940,11.7528,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1044,5.0209,7.3541,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.8728,6.3800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8708,10.6835,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1047,2.8940,10.7267,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,910,0 +1048,5.0209,7.7406,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.8728,6.8278,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8708,10.5267,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1051,2.8940,10.5925,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1083,0 +1052,5.0209,7.2933,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.8728,6.1988,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8708,10.0465,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1055,2.8940,10.9765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1056,5.0209,7.1547,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.8728,6.1706,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8708,11.2761,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1059,2.8940,11.1038,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1176,0 +1060,5.0209,7.1629,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.8728,6.4937,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8708,11.2747,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1063,2.8940,11.0082,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1064,5.0209,7.0233,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.8728,6.2673,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8708,11.0870,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1067,2.8940,10.7695,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +1068,5.0209,7.4698,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.8728,6.4957,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8708,11.2224,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1071,2.8940,10.8120,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1080,0 +1072,5.0209,6.8904,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.8728,6.3268,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8708,11.0509,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1075,2.8940,10.5417,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1342,0 +1076,5.0209,7.0225,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.8728,6.3121,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8708,10.8090,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1079,2.8940,10.7153,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1080,5.0209,9.2750,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.8728,8.7405,0.0349,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1082,2.8708,14.0213,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1083,2.8940,27.5592,0.0126,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1084,5.0209,5.9550,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.8728,5.8410,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1086,2.8708,10.5870,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1087,2.8940,10.5740,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1088,5.0209,5.8915,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.8728,5.7680,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1090,2.8708,10.6027,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1091,2.8940,10.5666,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1092,5.0209,5.9014,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.8728,5.7793,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1094,2.8708,10.7674,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1095,2.8940,10.7177,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1096,5.0209,5.8487,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.8728,5.7600,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1098,2.8708,10.7681,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1099,2.8940,10.7122,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1100,5.0209,6.0488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.8728,5.9951,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1102,2.8708,11.0267,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1103,2.8940,11.0218,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1104,5.0209,6.0614,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.8728,5.9905,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1106,2.8708,10.9936,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1107,2.8940,11.0162,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1108,5.0209,6.1666,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.8728,6.0356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1110,2.8708,10.9508,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1111,2.8940,10.9468,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1112,5.0209,6.1205,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.8728,6.0488,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1114,2.8708,11.0041,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1115,2.8940,11.0152,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1116,5.0209,6.2286,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.8728,6.1409,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1118,2.8708,12.4136,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1119,2.8940,11.9687,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1120,5.0209,7.1978,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.8728,6.3205,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1122,2.8708,10.9872,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1123,2.8940,11.0413,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1124,5.0209,7.2458,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.8728,6.3985,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1126,2.8708,10.7922,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1127,2.8940,10.8004,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1128,5.0209,6.8908,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.8728,6.1673,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1130,2.8708,11.0690,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1131,2.8940,9.4709,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1132,5.0209,7.0670,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.8728,6.3585,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1134,2.8708,15.6776,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1135,2.8940,16.3654,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1136,5.0209,7.2818,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.8728,6.2907,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1138,2.8708,10.9370,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1139,2.8940,10.8321,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1140,5.0209,6.9990,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.8728,6.2051,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8708,11.0738,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1143,2.8940,10.8429,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1144,5.0209,7.3843,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.8728,6.4017,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8708,11.1061,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1147,2.8940,10.8196,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1148,5.0209,7.0483,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.8728,6.3601,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8708,10.7330,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1151,2.8940,10.6340,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1152,5.0209,7.8600,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.8728,6.3552,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8708,10.9451,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1155,2.8940,10.6178,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1156,5.0209,6.8250,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.8728,6.1295,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8708,9.4002,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1159,2.8940,9.4225,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1160,5.0209,9.4950,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.8728,8.1807,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8708,11.3390,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1163,2.8940,11.1773,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1164,5.0209,6.9759,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.8728,6.2822,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8708,9.5756,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1167,2.8940,10.5260,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1168,5.0209,7.0403,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.8728,6.6065,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8708,10.4891,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1171,2.8940,10.7620,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1172,5.0209,7.6494,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.8728,6.8807,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8708,11.4301,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1175,2.8940,11.2443,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1176,5.0209,7.1080,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.8728,6.1471,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8708,11.1299,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1179,2.8940,10.7743,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1180,5.0209,7.0243,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.8728,6.2858,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8708,11.0616,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1183,2.8940,10.7398,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1184,5.0209,7.1234,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.8728,6.3283,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8708,10.8642,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1187,2.8940,10.5542,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1188,5.0209,7.1434,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.8728,6.2437,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8708,10.6348,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1191,2.8940,10.7098,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1192,5.0209,7.0835,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.8728,6.2622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8708,10.6233,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1195,2.8940,10.7433,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1196,5.0209,7.8365,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.8728,6.9006,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8708,10.8883,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1199,2.8940,10.9011,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1200,5.0209,7.3115,0.0650,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.8728,6.2553,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1202,2.8708,10.5129,0.0444,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +1203,2.8940,10.5663,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1204,5.0209,7.2077,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.8728,6.0845,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1206,2.8708,13.0526,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +1207,2.8940,13.0928,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1208,5.0209,6.6206,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.8728,5.8331,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1210,2.8708,10.7485,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +1211,2.8940,10.5487,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1212,5.0209,6.7242,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.8728,5.9985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1214,2.8708,10.4302,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +1215,2.8940,10.2493,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1216,5.0209,6.4532,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.8728,5.9725,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1218,2.8708,10.1865,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +1219,2.8940,10.2856,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1220,5.0209,6.6933,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.8728,6.2126,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1222,2.8708,10.3645,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +1223,2.8940,10.2536,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1224,5.0209,6.8136,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.8728,5.9647,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1226,2.8708,10.8302,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +1227,2.8940,10.6781,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1228,5.0209,6.7562,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.8728,5.7979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1230,2.8708,10.6999,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +1231,2.8940,10.6224,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1232,5.0209,6.6350,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.8728,6.0096,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1234,2.8708,10.7850,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +1235,2.8940,10.6250,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1236,5.0209,6.5105,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.8728,6.0222,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1238,2.8708,10.3953,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +1239,2.8940,10.3501,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1240,5.0209,6.6653,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.8728,6.1209,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1242,2.8708,10.5115,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1243,2.8940,10.5761,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1244,5.0209,6.6732,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.8728,6.0647,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1246,2.8708,10.9588,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1247,2.8940,10.7603,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1248,5.0209,7.1212,0.0249,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.8728,6.3888,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1250,2.8708,10.9206,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1251,2.8940,10.7989,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1252,5.0209,6.9342,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.8728,6.1956,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1254,2.8708,11.1092,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1255,2.8940,10.6910,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1256,5.0209,10.5597,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.8728,6.6413,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1258,2.8708,11.3031,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1259,2.8940,11.0520,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1260,5.0209,7.3886,0.0126,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.8728,6.4473,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8708,10.5453,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1263,2.8940,10.3444,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1264,5.0209,6.3316,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.8728,5.9829,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8708,10.1797,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1267,2.8940,10.1965,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1268,5.0209,6.1958,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.8728,5.9255,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8708,9.8677,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1271,2.8940,10.0134,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1272,5.0209,6.8736,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.8728,7.3047,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8708,10.2632,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1275,2.8940,10.3190,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1276,5.0209,6.2479,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.8728,5.8437,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8708,10.0100,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1279,2.8940,9.8945,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1280,5.0209,6.4507,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.8728,5.8966,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8708,10.9092,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1283,2.8940,10.6087,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.0209,6.3825,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.8728,6.0424,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8708,10.2232,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1287,2.8940,10.2642,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1288,5.0209,6.4053,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.8728,5.9776,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8708,10.1611,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1291,2.8940,10.2240,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1292,5.0209,6.3860,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.8728,5.9427,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8708,10.3246,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1295,2.8940,10.3052,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1296,5.0209,6.4703,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.8728,6.0107,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8708,12.6098,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1299,2.8940,11.4786,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1300,5.0209,7.0068,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.8728,6.1861,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8708,11.7995,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1303,2.8940,11.5312,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1304,5.0209,7.2776,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.8728,6.4887,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8708,11.3146,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1307,2.8940,11.0620,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1308,5.0209,6.6797,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.8728,5.9174,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8708,10.4250,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1311,2.8940,10.3577,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1312,5.0209,6.4819,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.8728,6.7907,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8708,10.3387,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1315,2.8940,10.2372,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1316,5.0209,6.5998,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.8728,6.0129,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8708,10.6510,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1319,2.8940,10.4463,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1320,5.0209,6.4318,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.8728,5.8582,0.0380,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1322,2.8708,10.7900,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1323,2.8940,10.7963,0.0168,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +1324,5.0209,6.3204,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.8728,5.9703,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1326,2.8708,10.1385,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1327,2.8940,10.2990,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +1328,5.0209,6.0794,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.8728,5.7258,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1330,2.8708,10.3423,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1331,2.8940,10.3402,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +1332,5.0209,5.9768,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.8728,5.6757,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1334,2.8708,10.2770,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1335,2.8940,10.2770,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +1336,5.0209,5.9631,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.8728,5.7007,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1338,2.8708,10.4600,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1339,2.8940,10.4980,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +1340,5.0209,6.4969,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.8728,5.8719,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1342,2.8708,10.8936,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1343,2.8940,10.7018,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +1344,5.0209,6.6307,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.8728,6.0256,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1346,2.8708,10.5552,0.0348,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1347,2.8940,10.4332,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +1348,5.0209,6.5181,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.8728,5.9596,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1350,2.8708,10.9048,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1351,2.8940,10.7752,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +1352,5.0209,6.7147,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.8728,6.0723,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1354,2.8708,10.7076,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1355,2.8940,10.4523,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +1356,5.0209,6.4602,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.8728,6.0180,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1358,2.8708,10.3876,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1359,2.8940,10.4755,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1360,5.0209,6.4792,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.8728,5.9426,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1362,2.8708,10.2639,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1363,2.8940,10.0907,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1364,5.0209,6.3095,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.8728,5.8498,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1366,2.8708,16.3714,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1367,2.8940,16.3110,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1368,5.0209,7.5184,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.8728,6.4123,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1370,2.8708,10.8350,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1371,2.8940,10.9149,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1372,5.0209,6.7630,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.8728,6.1787,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1374,2.8708,10.8912,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1375,2.8940,10.8915,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1376,5.0209,7.2153,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.8728,6.3160,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1378,2.8708,11.4603,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1379,2.8940,11.5728,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1380,5.0209,7.0150,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.8728,6.5155,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8708,10.4100,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1383,2.8940,10.6698,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1384,5.0209,6.9065,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.8728,6.2528,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8708,10.5046,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1387,2.8940,10.5055,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1388,5.0209,6.9466,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.8728,6.2536,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8708,10.7321,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1391,2.8940,10.7970,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1392,5.0209,7.2760,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.8728,6.2879,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8708,10.9490,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1395,2.8940,10.6988,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1396,5.0209,6.8590,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.8728,6.2097,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8708,10.1572,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1399,2.8940,10.5095,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1400,5.0209,7.1884,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.8728,6.7382,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8708,11.5579,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1403,2.8940,11.4430,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1404,5.0209,6.8792,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.8728,6.4498,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8708,10.6825,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1407,2.8940,8.9659,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1408,5.0209,7.6668,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.8728,6.7599,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8708,11.2635,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1411,2.8940,10.9458,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1412,5.0209,7.1127,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.8728,6.3988,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8708,10.7689,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1415,2.8940,10.6841,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1416,5.0209,6.9355,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.8728,6.2162,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8708,10.6712,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1419,2.8940,10.6282,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1420,5.0209,6.9088,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.8728,6.1811,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8708,12.7864,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1423,2.8940,12.6693,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1424,5.0209,7.5917,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.8728,6.2087,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8708,11.0591,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1427,2.8940,10.8317,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1428,5.0209,7.4219,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.8728,6.7192,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8708,10.9553,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1431,2.8940,10.4509,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1432,5.0209,7.0199,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.8728,6.1220,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8708,10.9361,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1435,2.8940,11.0124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1436,5.0209,6.9376,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.8728,6.4267,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8708,10.4460,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1439,2.8940,11.6992,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.txt b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.txt new file mode 100644 index 0000000..93b7089 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=30 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=5.998 +effective_logical_fps=60.016 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=13.300 +p95_encode_latency_ms=14.243 +max_encode_latency_ms=113.596 +avg_steady_encode_latency_ms=13.125 +p95_steady_encode_latency_ms=14.247 +max_steady_encode_latency_ms=58.267 +avg_tile_encode_latency_ms=8.836 +p95_tile_encode_latency_ms=11.479 +avg_max_tile_encode_latency_ms=11.277 +p95_max_tile_encode_latency_ms=12.104 +avg_steady_max_tile_encode_latency_ms=11.257 +p95_steady_max_tile_encode_latency_ms=12.108 +payload_bytes=4979215 +send_target=none +csv=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_logical.csv diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_deadline.md b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_deadline.md new file mode 100644 index 0000000..3a2a868 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_staggered_reset_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 13.300 | +| p95_group_latency_ms | 14.243 | +| max_group_latency_ms | 113.596 | +| effective_logical_fps | 60.016 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 285 | 79.167% | 0, 17, 20, 21, 24, 25, 26, 27, 28, 29, 30, 31, ... | +| 16.67 | 8 | 2.222% | 0, 154, 180, 210, 240, 270, 283, 341 | +| 20.00 | 6 | 1.667% | 0, 154, 180, 210, 240, 270 | +| 33.33 | 4 | 1.111% | 0, 180, 210, 240 | +| 50.00 | 3 | 0.833% | 0, 180, 210 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 13.431 | 14.089 | 113.596 | +| 300-359 | 12.645 | 14.693 | 17.575 | diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_logical.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_logical.csv new file mode 100644 index 0000000..9143f36 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,113.5961,31.1356,231707 +1,4,0,11.1680,10.6073,65901 +2,4,0,10.9921,10.5179,36886 +3,4,0,11.1198,10.6698,69404 +4,4,0,11.2820,10.8254,87864 +5,4,0,11.2500,10.7797,53700 +6,4,0,11.3863,10.9034,24415 +7,4,0,11.2188,10.7421,15407 +8,4,0,11.2019,10.7077,12151 +9,4,0,11.3474,10.8690,11449 +10,4,0,11.6260,11.0699,8599 +11,4,0,11.9008,11.2538,6107 +12,4,0,11.8687,10.9666,5132 +13,4,0,11.7291,10.9967,3880 +14,4,0,11.4029,10.5807,4001 +15,4,0,11.0392,10.5678,3860 +16,4,0,11.6970,11.1838,4045 +17,4,0,12.9416,11.3611,3955 +18,4,0,11.2941,10.3387,3721 +19,4,0,11.9777,11.0571,3748 +20,4,0,13.0318,11.3628,3386 +21,4,0,12.1159,10.7035,2761 +22,4,0,11.7911,10.4322,2750 +23,4,0,11.9612,10.6164,2836 +24,4,0,12.2607,10.6031,2977 +25,4,0,12.6241,10.8857,2960 +26,4,0,12.7971,10.7959,3010 +27,4,0,12.6378,10.7878,2978 +28,4,0,12.7214,10.6775,2889 +29,4,0,12.7792,10.7894,2914 +30,4,0,13.0268,10.9400,2847 +31,4,0,12.8047,10.7398,3111 +32,4,0,12.7442,10.8393,2714 +33,4,0,13.0890,11.1201,2843 +34,4,0,13.1025,10.5748,2633 +35,4,0,12.6700,10.7823,2659 +36,4,0,13.1773,10.4645,2696 +37,4,0,12.9746,11.0130,2728 +38,4,0,13.2230,11.3534,2772 +39,4,0,12.6994,11.2182,2740 +40,4,0,12.7492,10.7206,2809 +41,4,0,12.9655,10.7965,2679 +42,4,0,12.8450,10.7520,2865 +43,4,0,13.9618,12.0902,2612 +44,4,0,12.6006,10.9523,2626 +45,4,0,14.6685,11.7997,2693 +46,4,0,13.5413,11.6211,2708 +47,4,0,13.5195,11.8285,2765 +48,4,0,14.3547,12.1445,2645 +49,4,0,12.8783,10.8385,2733 +50,4,0,12.7964,11.7290,2667 +51,4,0,13.2393,10.9388,2647 +52,4,0,12.4690,10.9676,2659 +53,4,0,12.9766,10.7214,2757 +54,4,0,12.6660,10.8510,2656 +55,4,0,12.1662,10.6160,2594 +56,4,0,12.0850,10.8850,2603 +57,4,0,12.0690,10.4168,2605 +58,4,0,13.6075,11.8130,2610 +59,4,0,11.6924,10.7894,2641 +60,4,0,11.8688,10.3815,442009 +61,4,0,12.0067,10.3225,52997 +62,4,0,11.5717,10.4522,26956 +63,4,0,11.6360,10.4793,26939 +64,4,0,12.8148,11.1326,22402 +65,4,0,13.6509,11.9953,15271 +66,4,0,12.8439,11.4232,12647 +67,4,0,13.0866,10.8658,10161 +68,4,0,12.8576,10.7908,9695 +69,4,0,13.3314,11.2515,5893 +70,4,0,12.6728,10.9483,5590 +71,4,0,12.5882,10.8702,5226 +72,4,0,13.0134,10.8135,5095 +73,4,0,13.3375,10.9294,5164 +74,4,0,13.2464,10.6950,4634 +75,4,0,12.2159,10.7780,5338 +76,4,0,12.1280,10.2692,2984 +77,4,0,11.8178,10.3552,2918 +78,4,0,11.9133,10.4053,3051 +79,4,0,12.0095,9.9733,3217 +80,4,0,11.6163,10.4672,3680 +81,4,0,12.1484,10.3588,3433 +82,4,0,12.0265,10.3985,3891 +83,4,0,12.1886,9.0780,2978 +84,4,0,12.0808,10.3774,2906 +85,4,0,12.8732,10.7736,2925 +86,4,0,12.8070,10.7310,3487 +87,4,0,12.8391,10.7536,2969 +88,4,0,14.0707,12.1033,2822 +89,4,0,12.9835,10.7269,3027 +90,4,0,14.0868,11.9587,2708 +91,4,0,12.7186,10.7030,2735 +92,4,0,13.1728,11.3509,2688 +93,4,0,12.5785,11.1818,2954 +94,4,0,12.6510,10.6293,3013 +95,4,0,12.5674,10.9887,2878 +96,4,0,13.1641,10.6205,3036 +97,4,0,12.6223,10.6082,2909 +98,4,0,12.5592,10.7964,2598 +99,4,0,12.8800,10.8605,2609 +100,4,0,13.0787,11.1657,2615 +101,4,0,12.8019,11.1538,2652 +102,4,0,13.0268,10.8169,2667 +103,4,0,13.8570,11.9802,2728 +104,4,0,13.4689,11.5706,2632 +105,4,0,13.6957,10.6733,2620 +106,4,0,13.4198,11.2677,2603 +107,4,0,13.7195,11.5777,2633 +108,4,0,14.1268,11.2972,2885 +109,4,0,12.9462,10.6930,2631 +110,4,0,11.9485,11.4592,2679 +111,4,0,12.8628,11.2303,2594 +112,4,0,13.2466,11.2153,2610 +113,4,0,12.7514,10.3068,2618 +114,4,0,12.7790,10.7602,2639 +115,4,0,12.9234,10.9261,2683 +116,4,0,12.4384,10.6635,2662 +117,4,0,12.0464,10.6167,2669 +118,4,0,11.9175,10.0862,2661 +119,4,0,11.5740,10.4667,2767 +120,4,0,12.0197,9.7567,412099 +121,4,0,12.6890,10.9880,58619 +122,4,0,12.8131,10.9557,48033 +123,4,0,13.1490,10.8368,38505 +124,4,0,12.6665,10.7485,33624 +125,4,0,12.9299,10.8142,18519 +126,4,0,12.8618,10.7207,15662 +127,4,0,12.8280,11.2887,11727 +128,4,0,13.1172,11.1942,10164 +129,4,0,14.9563,13.1720,8732 +130,4,0,13.4066,11.7429,8017 +131,4,0,12.5925,11.0105,5177 +132,4,0,12.6962,10.5080,3438 +133,4,0,12.6214,10.3566,3236 +134,4,0,15.5228,11.0322,3208 +135,4,0,12.3798,11.0864,3684 +136,4,0,13.1994,11.2415,3691 +137,4,0,14.2430,12.1122,3794 +138,4,0,12.8823,11.1127,3974 +139,4,0,12.3765,10.7777,3178 +140,4,0,12.5107,11.6642,3070 +141,4,0,12.9559,11.0488,3397 +142,4,0,13.0398,10.9573,2792 +143,4,0,12.0290,10.3833,2888 +144,4,0,11.6785,10.4006,2885 +145,4,0,11.7259,10.2073,3092 +146,4,0,11.9439,10.2613,2712 +147,4,0,11.9607,10.3351,2692 +148,4,0,11.9463,10.2075,2781 +149,4,0,11.9416,10.5428,2731 +150,4,0,12.1473,10.3599,2815 +151,4,0,11.9162,10.8039,2761 +152,4,0,12.1517,10.7345,3174 +153,4,0,12.6174,10.7926,2599 +154,4,0,20.0762,17.7347,2594 +155,4,0,13.4088,11.6750,2600 +156,4,0,12.6174,11.1899,2646 +157,4,0,12.8748,10.6983,2717 +158,4,0,12.7392,10.7015,2764 +159,4,0,12.9456,10.7157,2916 +160,4,0,12.7349,10.7897,2625 +161,4,0,12.7748,10.7680,2618 +162,4,0,12.9670,10.8465,2617 +163,4,0,15.4594,13.6346,2801 +164,4,0,13.0485,11.2048,2641 +165,4,0,13.0806,11.1438,2631 +166,4,0,13.0141,10.9093,2755 +167,4,0,12.8030,10.8893,2594 +168,4,0,12.9796,10.9527,2611 +169,4,0,12.5497,10.5260,2613 +170,4,0,12.8890,10.5823,2654 +171,4,0,13.0160,11.2000,2706 +172,4,0,12.6373,10.7004,2658 +173,4,0,13.1744,10.4729,2713 +174,4,0,13.0869,10.8052,2681 +175,4,0,12.8613,10.5167,2592 +176,4,0,12.7302,10.6758,2590 +177,4,0,12.6000,10.9037,2585 +178,4,0,12.4970,10.8295,2602 +179,4,0,12.1018,10.1281,2810 +180,4,0,54.4949,43.3129,386594 +181,4,0,11.3875,10.6286,54046 +182,4,0,11.3989,10.9169,41827 +183,4,0,11.9503,11.2150,39504 +184,4,0,12.0881,11.3781,43337 +185,4,0,12.3993,11.1702,28963 +186,4,0,12.4491,10.9102,15764 +187,4,0,12.9317,11.1832,12274 +188,4,0,12.8390,10.8749,8200 +189,4,0,13.3260,11.8872,6975 +190,4,0,12.6983,10.9918,6425 +191,4,0,12.5628,10.1222,5489 +192,4,0,13.6811,11.1387,6002 +193,4,0,12.8164,10.7610,5061 +194,4,0,13.3267,11.4142,5208 +195,4,0,12.6507,10.7561,3818 +196,4,0,12.4300,10.6825,4140 +197,4,0,13.2005,11.2584,3176 +198,4,0,12.7605,10.4538,3193 +199,4,0,13.2635,9.7040,3169 +200,4,0,12.6242,11.4347,3018 +201,4,0,13.3762,10.9810,3512 +202,4,0,12.8238,10.7417,2832 +203,4,0,13.2060,10.7096,3035 +204,4,0,12.8467,10.9024,3114 +205,4,0,12.8595,10.8157,2988 +206,4,0,12.7499,10.7850,3072 +207,4,0,12.7574,10.8023,3420 +208,4,0,12.7581,10.7678,3052 +209,4,0,12.5528,10.1688,2823 +210,4,0,58.2665,43.2755,45540 +211,4,0,11.2660,10.7183,16462 +212,4,0,11.2241,10.6473,9078 +213,4,0,11.6539,10.9832,19060 +214,4,0,11.6684,10.9650,22659 +215,4,0,11.6280,10.9480,14090 +216,4,0,11.7140,10.9564,7173 +217,4,0,13.0412,12.1896,5825 +218,4,0,12.5179,11.0734,5072 +219,4,0,12.6028,10.8492,4762 +220,4,0,12.8827,10.6155,4333 +221,4,0,12.7155,11.1623,3439 +222,4,0,12.7253,11.3548,3336 +223,4,0,12.9776,11.1843,2955 +224,4,0,12.5210,10.9695,2851 +225,4,0,13.0623,9.7317,2847 +226,4,0,13.4185,11.4112,2806 +227,4,0,13.0525,10.6939,2797 +228,4,0,12.9688,11.0506,2743 +229,4,0,12.5470,10.5319,2845 +230,4,0,11.9649,10.9220,2619 +231,4,0,11.8882,10.7981,2658 +232,4,0,12.2585,10.5971,2626 +233,4,0,12.0891,10.3080,2634 +234,4,0,12.4032,10.6297,2639 +235,4,0,12.5566,10.6797,2645 +236,4,0,12.9609,11.2049,2705 +237,4,0,12.8161,10.7392,2595 +238,4,0,12.9185,10.6458,3371 +239,4,0,13.4773,11.5173,2766 +240,4,0,33.9106,27.5981,294313 +241,4,0,11.3108,10.7041,48069 +242,4,0,11.0314,10.6267,29454 +243,4,0,11.5476,11.1503,35605 +244,4,0,12.9872,11.7790,33082 +245,4,0,12.5072,10.9772,20616 +246,4,0,11.9446,10.8788,14200 +247,4,0,12.2130,10.3895,10156 +248,4,0,12.0845,10.6762,8218 +249,4,0,12.5652,10.7170,7202 +250,4,0,12.5600,10.8573,5530 +251,4,0,12.7636,10.8094,3788 +252,4,0,13.2696,11.1399,3381 +253,4,0,12.8472,10.6670,3478 +254,4,0,13.0571,11.2066,4042 +255,4,0,13.6085,11.6644,4179 +256,4,0,14.2501,12.2230,4164 +257,4,0,12.7036,11.0929,4245 +258,4,0,13.0262,10.9643,3302 +259,4,0,12.6857,11.0026,3138 +260,4,0,12.5696,11.8716,3515 +261,4,0,12.8874,10.7267,3031 +262,4,0,12.6796,10.5925,3077 +263,4,0,13.5942,10.9765,2989 +264,4,0,13.3786,11.2761,3219 +265,4,0,12.6518,11.2747,2832 +266,4,0,12.8695,11.0870,3546 +267,4,0,12.8054,11.2224,3352 +268,4,0,12.7205,11.0509,3504 +269,4,0,12.8027,10.8090,3012 +270,4,0,28.6954,27.5592,148106 +271,4,0,11.2997,10.5870,28726 +272,4,0,11.2058,10.6027,16034 +273,4,0,11.2948,10.7674,21255 +274,4,0,11.2415,10.7681,27764 +275,4,0,11.6775,11.0267,20775 +276,4,0,11.6512,11.0162,8528 +277,4,0,11.6653,10.9508,6364 +278,4,0,11.7335,11.0152,5506 +279,4,0,13.0445,12.4136,5024 +280,4,0,12.6693,11.0413,4814 +281,4,0,12.8701,10.8004,4295 +282,4,0,12.7523,11.0690,3915 +283,4,0,18.6522,16.3654,2674 +284,4,0,12.5202,10.9370,2628 +285,4,0,12.4462,11.0738,2702 +286,4,0,12.9981,11.1061,2878 +287,4,0,12.8522,10.7330,3058 +288,4,0,13.5288,10.9451,3026 +289,4,0,12.8277,9.4225,3327 +290,4,0,13.3424,11.3390,2680 +291,4,0,13.5689,10.5260,2645 +292,4,0,13.3887,10.7620,2652 +293,4,0,13.1068,11.4301,2814 +294,4,0,12.9047,11.1299,2804 +295,4,0,12.8030,11.0616,2728 +296,4,0,12.9377,10.8642,2864 +297,4,0,12.8537,10.7098,2603 +298,4,0,12.7584,10.7433,2606 +299,4,0,12.9575,10.9011,2633 +300,4,0,12.8700,10.5663,243099 +301,4,0,14.9429,13.0928,29178 +302,4,0,11.9424,10.7485,16778 +303,4,0,11.9492,10.4302,19117 +304,4,0,12.0053,10.2856,14133 +305,4,0,11.8891,10.3645,8313 +306,4,0,12.3021,10.8302,6544 +307,4,0,12.4350,10.6999,5436 +308,4,0,12.3978,10.7850,4764 +309,4,0,12.0960,10.3953,4568 +310,4,0,12.0465,10.5761,4415 +311,4,0,12.5070,10.9588,4449 +312,4,0,12.7332,10.9206,4061 +313,4,0,12.7012,11.1092,3951 +314,4,0,15.9705,11.3031,3654 +315,4,0,12.8279,10.5453,4121 +316,4,0,11.8175,10.1965,2986 +317,4,0,12.0020,10.0134,2948 +318,4,0,12.6154,10.3190,2857 +319,4,0,11.9225,10.0100,2831 +320,4,0,11.8494,10.9092,3000 +321,4,0,11.9427,10.2642,2914 +322,4,0,11.9660,10.2240,3126 +323,4,0,12.0225,10.3246,2981 +324,4,0,14.3298,12.6098,2914 +325,4,0,13.1595,11.7995,2846 +326,4,0,12.8168,11.3146,3313 +327,4,0,11.8827,10.4250,2681 +328,4,0,12.0115,10.3387,2640 +329,4,0,12.2046,10.6510,2649 +330,4,0,11.9031,10.7963,201598 +331,4,0,11.6599,10.2990,26632 +332,4,0,11.3315,10.3423,12921 +333,4,0,11.2333,10.2770,10865 +334,4,0,11.4826,10.4980,11064 +335,4,0,12.3956,10.8936,9698 +336,4,0,12.0859,10.5552,8892 +337,4,0,12.4395,10.9048,7677 +338,4,0,12.2153,10.7076,7587 +339,4,0,11.9988,10.4755,3961 +340,4,0,12.0445,10.2639,3909 +341,4,0,17.5747,16.3714,3384 +342,4,0,13.0765,10.9149,3664 +343,4,0,12.5392,10.8915,3820 +344,4,0,13.5825,11.5728,3637 +345,4,0,13.0244,10.6698,3924 +346,4,0,12.9833,10.5055,2660 +347,4,0,12.7786,10.7970,2682 +348,4,0,13.1245,10.9490,3023 +349,4,0,12.9007,10.5095,2985 +350,4,0,12.3194,11.5579,3274 +351,4,0,12.7833,10.6825,3134 +352,4,0,12.8241,11.2635,3410 +353,4,0,12.8853,10.7689,2636 +354,4,0,12.7115,10.6712,2657 +355,4,0,14.6801,12.7864,2727 +356,4,0,13.1157,11.0591,2811 +357,4,0,12.4730,10.9553,2907 +358,4,0,12.4794,11.0124,2800 +359,4,0,13.9155,11.6992,3185 diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.csv b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.csv new file mode 100644 index 0000000..092a7d5 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.csv @@ -0,0 +1,4 @@ +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +baseline_simultaneous_reset,tiled,5120x2880,60,6,30,0,360,60.011,13.199,14.330,132.700,14.355,7,2,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_logical.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset_deadline.md,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/baseline_simultaneous_reset.txt +segment_hints_simultaneous_reset,tiled,5120x2880,60,6,30,0,360,59.995,13.362,14.158,134.008,14.162,4,2,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_logical.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset_deadline.md,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_simultaneous_reset.txt +segment_hints_staggered_reset,tiled,5120x2880,60,6,30,0,360,60.016,13.300,14.243,113.596,14.247,8,4,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_logical.csv,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset_deadline.md,benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/segment_hints_staggered_reset.txt diff --git a/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.md b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.md new file mode 100644 index 0000000..46fa5cb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/summary.md @@ -0,0 +1,8 @@ +# Encoder Reset Strategy Probe + +- Duration: `6` seconds +- Reset interval: `180` logical frames +- Stagger: `30` logical frames +- Fallback probes: `0` + +See `summary.csv` for metrics and per-case logs. diff --git a/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/metadata.txt b/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/metadata.txt new file mode 100644 index 0000000..4949ab6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/metadata.txt @@ -0,0 +1,10 @@ +timestamp=2026-05-15_1551 +duration_seconds=10 +fallback_duration_seconds=5 +clean_boot_max_minutes=15 +require_clean_boot=1 +uptime_minutes=2936 +boot_time=2026-05-13 14:55:23 +0900 +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/summary.md b/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/summary.md new file mode 100644 index 0000000..b9e88e3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/summary.md @@ -0,0 +1,5 @@ +# Clean Session Encoder Probe + +Skipped: current uptime is 2936 minutes, exceeding CLEAN_BOOT_MAX_MINUTES=15. + +Run this script immediately after reboot/login to get a valid clean-session result. diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/metadata.txt b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/metadata.txt new file mode 100644 index 0000000..b4bc03d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/metadata.txt @@ -0,0 +1,10 @@ +timestamp=2026-05-15_1551 +duration_seconds=6 +fallback_duration_seconds=5 +clean_boot_max_minutes=15 +require_clean_boot=0 +uptime_minutes=2936 +boot_time=2026-05-13 14:55:23 +0900 +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.csv new file mode 100644 index 0000000..fbc3a7c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.8790,25.8644,0.0202,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.1307,5.7945,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,17343,0 +2,3.0065,7.5119,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,7148,0 +3,3.1674,5.7334,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12603,0 +4,3.4954,5.9120,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,23082,0 +5,3.6192,6.1109,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,10524,0 +6,3.5547,5.9326,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5025,0 +7,3.5391,6.1150,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2665,0 +8,3.7747,5.8533,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8940,0 +9,3.7830,5.9150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1779,0 +10,3.7700,6.0265,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +11,3.7627,6.0336,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1185,0 +12,4.1238,6.1210,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6852,0 +13,4.1064,6.2446,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +14,3.6961,5.9616,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +15,3.7272,5.9029,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +16,3.7127,6.0640,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8918,0 +17,3.8195,5.9912,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3422,0 +18,3.0783,6.1694,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2359,0 +19,3.1212,5.9475,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +20,3.1282,5.9446,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8337,0 +21,4.9785,6.0712,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +22,3.1916,6.2058,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +23,3.3393,6.1527,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +24,3.2944,6.1196,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8216,0 +25,3.9759,5.9818,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +26,3.8329,5.9479,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +27,4.3543,6.3750,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1149,0 +28,4.2820,6.1874,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7062,0 +29,4.2134,6.3026,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1217,0 +30,4.1424,6.2903,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +31,4.1883,6.1167,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +32,4.2677,6.0355,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7332,0 +33,4.4151,6.0711,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2420,0 +34,4.4190,6.0660,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +35,4.5869,6.1120,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +36,4.5219,6.1140,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8571,0 +37,4.5457,6.0842,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2046,0 +38,4.6238,5.9979,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +39,4.7134,6.0122,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +40,4.6911,6.1046,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7961,0 +41,4.5620,6.2728,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +42,4.6657,6.5454,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +43,4.5214,6.2998,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +44,4.1575,5.9873,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6971,0 +45,4.2161,6.4638,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1590,0 +46,3.6550,6.1204,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2462,0 +47,4.4463,6.1333,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +48,4.1235,6.1880,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,9034,0 +49,4.2702,5.9984,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3349,0 +50,4.1273,5.9664,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +51,4.1988,5.9771,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +52,4.5477,5.9305,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8805,0 +53,4.4025,5.8920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2621,0 +54,4.4368,5.9804,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2521,0 +55,4.4635,5.9140,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2906,0 +56,4.4066,5.9369,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,9132,0 +57,4.5815,5.9781,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +58,4.7408,6.2766,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2061,0 +59,7.8563,6.6951,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +60,7.4587,5.9208,0.0281,0.0000,0,0,0.0000,0,0.0000,0,1,0,119347,0 +61,3.0110,6.2617,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,15588,0 +62,4.1239,6.1376,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,17884,0 +63,4.0955,6.2121,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,11287,0 +64,4.2626,6.0445,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14502,0 +65,4.2370,6.0505,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5992,0 +66,4.1683,6.0477,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4320,0 +67,4.0831,6.0535,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +68,4.3215,6.0498,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,9003,0 +69,4.2095,5.9638,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +70,4.1661,6.1278,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +71,4.6307,6.0138,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +72,4.4950,6.0336,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7981,0 +73,4.2102,6.0137,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +74,4.1737,6.1085,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +75,4.2752,6.1718,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +76,4.2557,6.1006,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6166,0 +77,4.1700,6.3576,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +78,4.5281,6.2204,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +79,4.2281,6.0486,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +80,3.4480,6.0164,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8085,0 +81,3.4515,5.9576,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +82,3.4981,5.9941,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +83,3.9209,5.8998,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,979,0 +84,3.8504,5.9099,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8303,0 +85,3.8390,5.9291,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +86,3.9260,5.9432,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +87,4.0370,5.8922,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +88,4.0805,5.8837,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8164,0 +89,4.1757,6.1199,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +90,4.2312,6.0868,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +91,4.2102,6.0942,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +92,4.2226,6.0573,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6509,0 +93,4.2642,6.3636,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +94,4.3970,5.9987,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1105,0 +95,4.1162,5.9190,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +96,4.1193,5.9050,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,22161,0 +97,4.2590,6.1507,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +98,4.1177,6.1303,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +99,3.8172,5.8873,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +100,3.6883,5.8656,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7662,0 +101,3.6241,5.9145,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1930,0 +102,3.7395,6.1529,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +103,3.8558,6.0750,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +104,3.7274,6.3926,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7559,0 +105,4.1987,6.1952,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +106,4.1927,5.9815,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +107,4.2079,6.0848,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +108,4.3473,6.2739,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6497,0 +109,4.0978,6.2501,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +110,4.1429,6.0791,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1228,0 +111,3.4010,5.9954,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1131,0 +112,3.1576,5.9417,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8165,0 +113,3.0673,6.1487,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +114,3.1927,6.0862,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +115,2.9581,6.2890,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1273,0 +116,3.0887,6.2540,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8367,0 +117,3.2242,6.1313,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +118,3.3552,5.7980,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +119,3.7379,6.4389,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +120,3.4282,5.7180,0.0112,0.0000,0,0,0.0000,0,0.0000,0,1,0,106449,0 +121,3.7043,5.9299,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,16792,0 +122,3.7037,5.8945,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,6111,0 +123,3.7185,6.0151,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,6099,0 +124,3.6733,6.2524,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,11820,0 +125,3.9610,6.3482,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3761,0 +126,4.2916,6.0536,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4311,0 +127,4.0728,6.1628,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3567,0 +128,4.1455,5.9164,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8140,0 +129,4.1392,6.0405,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +130,4.0826,6.1455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +131,4.1337,6.0055,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1540,0 +132,4.0070,6.0790,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7697,0 +133,4.1596,6.0209,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +134,4.1950,6.1594,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +135,4.1608,6.1994,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +136,4.3435,6.3308,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7711,0 +137,4.1125,5.9651,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +138,4.1465,6.0858,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +139,4.1355,6.1307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +140,4.2740,5.9844,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6701,0 +141,4.3989,6.2215,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +142,4.5608,5.9970,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +143,4.3070,5.9818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +144,4.3878,5.9498,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8280,0 +145,4.4595,5.8838,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2829,0 +146,4.1160,6.0808,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +147,4.0601,6.0793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +148,4.3333,6.0802,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8289,0 +149,4.3184,6.0245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1261,0 +150,4.4516,6.0579,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1296,0 +151,4.3263,6.0792,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +152,4.1068,6.2305,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8230,0 +153,4.6128,6.1066,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1398,0 +154,4.3321,6.0656,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +155,4.3087,6.0538,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +156,4.4230,6.0124,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7208,0 +157,4.2335,6.3060,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +158,5.1837,6.2290,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +159,3.4154,6.0898,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2051,0 +160,3.4813,5.9825,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7773,0 +161,3.7143,6.0747,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +162,3.7238,5.8608,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +163,3.4765,6.3635,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2123,0 +164,3.5588,6.1246,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +165,3.6283,5.9356,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2357,0 +166,3.9190,6.1115,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +167,3.9221,6.0712,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2646,0 +168,3.6465,6.0071,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8167,0 +169,3.5408,6.0812,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +170,3.3720,5.8797,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +171,3.4730,5.8939,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +172,3.6138,5.9253,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,7081,0 +173,3.8653,6.4170,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +174,3.8485,6.1392,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3163,0 +175,3.6580,5.8115,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2381,0 +176,3.5859,6.1241,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +177,3.2780,6.0888,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4152,0 +178,3.4913,5.9300,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +179,3.5737,5.9547,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +180,3.9537,5.9879,0.0221,0.0000,0,0,0.0000,0,0.0000,0,1,0,122025,0 +181,3.7637,5.9722,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,17106,0 +182,3.0870,6.1370,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,19495,0 +183,3.0489,6.0531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8772,0 +184,2.9626,5.8926,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14207,0 +185,2.9325,5.9372,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6640,0 +186,3.2718,5.8645,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +187,3.0459,5.9147,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2817,0 +188,3.1408,5.8947,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9395,0 +189,2.9645,6.1559,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1752,0 +190,3.2593,5.8881,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2141,0 +191,3.2442,5.8499,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +192,3.0291,5.9174,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22620,0 +193,2.9875,5.8474,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +194,3.3905,6.0175,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1694,0 +195,2.8654,5.8325,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1396,0 +196,2.8800,5.8259,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,8404,0 +197,3.0537,5.8497,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +198,3.4290,5.8497,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1233,0 +199,3.6486,6.0652,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +200,2.8659,5.8451,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7634,0 +201,2.8996,5.9299,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +202,2.8778,5.8667,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1259,0 +203,2.9613,5.8174,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +204,3.9843,5.9809,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,6597,0 +205,3.4065,6.0927,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1023,0 +206,3.4959,5.8465,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +207,3.7653,5.9882,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +208,3.7957,6.0492,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8547,0 +209,3.8741,6.2538,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3281,0 +210,3.1645,6.0008,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1905,0 +211,3.1708,6.0767,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +212,2.9528,5.9356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8369,0 +213,2.9547,5.8750,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1939,0 +214,3.0987,5.8979,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2001,0 +215,3.4927,6.1563,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +216,3.6467,6.0837,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8641,0 +217,3.5760,6.1691,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +218,3.0677,6.3575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +219,3.0960,5.9138,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +220,3.1300,5.9466,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7535,0 +221,3.0900,6.1215,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +222,3.2233,5.8983,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3098,0 +223,3.1698,5.9696,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +224,3.0624,5.9402,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8546,0 +225,2.8533,5.7800,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3520,0 +226,3.0665,5.8034,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2837,0 +227,3.0865,5.9191,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +228,3.0462,6.2514,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,9054,0 +229,2.9962,5.8401,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +230,3.1788,5.8513,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +231,3.0517,6.0152,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +232,3.1193,6.0350,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8543,0 +233,3.1222,6.0895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +234,3.1151,6.0096,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1932,0 +235,3.1435,5.8504,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2217,0 +236,3.0400,5.9224,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7517,0 +237,3.6963,6.0448,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +238,2.9228,5.9527,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4140,0 +239,3.0478,5.7979,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +240,3.3106,5.8791,0.0250,0.0000,0,0,0.0000,0,0.0000,0,1,0,96632,0 +241,3.7243,6.0241,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,18924,0 +242,3.9269,5.8643,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,10045,0 +243,3.0508,6.1381,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7222,0 +244,2.9381,5.9729,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12148,0 +245,2.9584,5.9383,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3865,0 +246,4.1751,5.8697,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +247,2.9308,6.2557,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2090,0 +248,2.9931,6.0183,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +249,3.3267,5.7701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +250,3.0062,5.7670,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +251,3.0617,6.1608,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +252,2.9340,5.7633,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6491,0 +253,3.0423,6.1022,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +254,4.0059,6.1340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1312,0 +255,3.0360,6.1084,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1181,0 +256,3.3783,6.0580,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,20204,0 +257,5.0613,6.0394,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +258,4.8687,5.9452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1019,0 +259,4.9886,6.1836,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +260,4.1185,6.2042,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,7410,0 +261,3.5097,6.1035,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1966,0 +262,3.0709,6.0430,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +263,3.0260,6.1736,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +264,3.1904,6.1463,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,7705,0 +265,3.2734,5.9667,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +266,3.1095,6.1254,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,949,0 +267,3.2483,6.1508,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1832,0 +268,3.2807,5.8812,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6537,0 +269,2.9673,6.0998,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +270,3.0464,5.9706,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1001,0 +271,3.0884,6.0369,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +272,3.0806,5.8900,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +273,3.1049,5.8792,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +274,3.0460,5.9790,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1056,0 +275,3.0056,5.8054,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +276,3.0345,5.8833,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8237,0 +277,2.8783,5.7784,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +278,3.6674,6.2058,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +279,3.4167,6.2873,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +280,3.6391,6.1287,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +281,3.4546,6.1532,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +282,3.1170,6.0508,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +283,2.8358,5.9402,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1057,0 +284,2.9227,5.8203,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +285,2.8996,6.2469,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1090,0 +286,2.8372,5.8679,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1838,0 +287,2.9417,5.8918,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +288,4.1981,6.0836,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,6961,0 +289,4.1494,6.1010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +290,3.2004,5.9446,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1874,0 +291,3.3159,5.7193,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +292,3.2743,5.7492,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8709,0 +293,4.0410,5.8278,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2190,0 +294,2.9910,5.9436,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1841,0 +295,2.9031,5.8934,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +296,3.5089,5.7846,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8007,0 +297,2.9921,5.9238,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +298,2.9309,5.9354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +299,2.8671,5.9182,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.txt b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.txt new file mode 100644 index 0000000..963699e --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.728 +avg_encode_latency_ms=6.106 +p95_encode_latency_ms=6.307 +max_encode_latency_ms=25.864 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1726537 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.csv new file mode 100644 index 0000000..55306ff --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.7152,60.1379,0.0316,0.0000,0,0,0.0000,0,0.0000,0,1,0,90693,0 +1,5.3384,31.7818,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,33357,0 +2,4.7496,34.4738,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17305,0 +3,4.5921,35.1642,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,26405,0 +4,4.7423,25.1134,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,41778,0 +5,4.9428,14.1772,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,23133,0 +6,5.1360,10.9253,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8457,0 +7,5.3226,10.8485,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4764,0 +8,5.3351,10.9416,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,15756,0 +9,5.2754,10.9071,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +10,5.3832,10.8382,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +11,5.3535,10.8208,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +12,5.2145,11.1949,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +13,5.1892,10.9218,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4041,0 +14,5.2974,10.9974,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3899,0 +15,5.4540,11.0007,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3819,0 +16,5.4852,11.1028,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,14869,0 +17,5.3193,10.7991,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4305,0 +18,5.4825,10.9475,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +19,5.6876,10.7403,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +20,5.6737,11.1123,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +21,5.4593,11.0385,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +22,5.5217,10.9375,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +23,5.3941,11.0615,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +24,5.5235,10.8948,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12365,0 +25,5.4066,11.0624,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +26,5.1857,10.9025,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +27,5.3579,10.9447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +28,5.2863,11.2452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12458,0 +29,5.3815,10.9823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +30,5.3627,11.3198,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +31,5.5865,11.3293,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +32,5.3087,11.1872,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,11420,0 +33,5.7374,14.6148,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +34,9.6427,11.1716,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +35,5.5216,10.9520,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +36,4.9199,11.4270,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,13744,0 +37,5.0948,11.3897,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +38,5.1936,11.2875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +39,5.4983,12.7328,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +40,7.9108,11.2587,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,13192,0 +41,4.8670,11.4701,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +42,5.4731,10.9311,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +43,5.4505,10.9801,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +44,5.4179,11.3920,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12022,0 +45,5.4102,10.9837,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +46,5.3665,11.1589,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +47,5.4280,11.1285,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +48,5.5102,10.9300,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +49,5.4799,10.9812,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2537,0 +50,5.4055,10.7369,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +51,5.5831,10.9573,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +52,5.4734,10.9050,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14057,0 +53,5.4954,10.8521,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +54,5.5582,10.8755,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +55,5.5665,10.7581,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +56,5.8117,10.7437,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12868,0 +57,5.4304,10.8343,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +58,5.5883,10.8670,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +59,5.7067,10.7654,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +60,5.4999,11.4599,0.0601,0.0000,0,0,0.0000,0,0.0000,0,1,0,207878,0 +61,5.6380,11.2823,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,17948,0 +62,5.4549,11.0913,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,20836,0 +63,5.6575,11.3056,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,15768,0 +64,5.3115,11.2420,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,24247,0 +65,5.6067,10.9070,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,11212,0 +66,5.0484,11.2867,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7185,0 +67,5.1351,10.8727,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2282,0 +68,5.2615,11.0150,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,12714,0 +69,5.2860,11.1350,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +70,5.3910,10.9132,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2020,0 +71,5.4378,10.8805,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +72,5.3011,11.0190,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,13454,0 +73,5.2891,11.0053,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +74,5.4514,10.9866,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,5.4990,11.0004,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +76,5.2393,11.1464,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +77,5.4970,10.8225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +78,5.4082,11.0835,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +79,5.3448,10.8416,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +80,5.0275,10.7970,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,14283,0 +81,4.7597,10.9533,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +82,4.9958,10.8642,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +83,5.2733,10.8685,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +84,5.6847,10.8548,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14178,0 +85,5.5902,11.1305,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +86,5.7250,10.9622,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +87,5.6597,11.1588,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +88,5.6020,10.9090,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12751,0 +89,5.7984,11.0039,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +90,5.6297,10.9482,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +91,5.8533,10.9515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +92,5.7926,11.3267,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12518,0 +93,5.8640,10.7511,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +94,5.6447,11.0706,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +95,5.8025,10.9960,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +96,5.5314,10.7155,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,35268,0 +97,5.6020,10.7354,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1936,0 +98,5.5726,10.6729,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +99,5.7418,11.0405,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +100,5.4762,10.5363,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,13723,0 +101,5.7568,10.9444,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +102,5.7138,11.0545,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +103,5.7148,11.3183,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +104,5.7350,11.0806,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,13197,0 +105,5.8664,10.8630,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +106,5.6295,10.9320,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1488,0 +107,5.5608,11.0197,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +108,5.5033,11.3411,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12006,0 +109,5.4382,11.0742,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +110,5.2660,11.0448,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +111,5.2650,10.6840,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +112,5.5006,11.1225,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13796,0 +113,16.4757,11.1630,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2094,0 +114,5.3252,13.3539,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +115,4.7300,10.9358,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +116,4.9997,11.2561,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,13929,0 +117,4.7657,11.1034,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +118,5.8784,11.2313,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +119,4.6713,11.1351,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +120,4.5625,10.9395,0.0638,0.0000,0,0,0.0000,0,0.0000,0,1,0,205935,0 +121,4.6907,11.0245,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,15333,0 +122,5.4216,11.1394,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +123,5.3985,11.0366,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,12086,0 +124,4.6911,11.7216,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,18993,0 +125,4.6960,10.7543,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,7924,0 +126,4.4816,11.2257,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,5805,0 +127,4.7962,10.9768,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +128,4.5875,10.9483,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13229,0 +129,4.7140,11.1424,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4210,0 +130,4.6408,10.7223,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3466,0 +131,4.7873,11.0450,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +132,4.8945,10.8492,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13684,0 +133,4.9694,10.7490,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +134,5.2890,10.5722,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +135,5.2203,10.8725,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +136,5.2348,10.7345,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13089,0 +137,5.2704,10.9300,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +138,5.1353,11.2091,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +139,5.3333,11.4428,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +140,5.4650,11.4155,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12838,0 +141,5.2668,11.1122,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +142,4.9415,10.8908,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +143,4.9482,11.0768,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +144,4.9829,10.9707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +145,5.1527,11.2906,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +146,5.2072,10.9636,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +147,5.3592,10.8077,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +148,5.3598,10.9034,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12817,0 +149,5.3196,10.8742,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +150,5.2937,10.8395,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +151,5.3031,10.8001,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +152,5.3377,10.9255,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,12342,0 +153,5.3724,10.9508,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +154,5.3111,10.9850,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +155,4.7641,11.3547,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +156,5.2057,11.1740,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +157,5.4615,10.7833,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +158,5.3299,10.9375,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +159,5.4219,10.6283,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +160,5.2951,10.6579,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +161,5.3007,10.7270,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1987,0 +162,5.3606,10.6835,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +163,5.4995,10.8846,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +164,5.5324,11.3631,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,13654,0 +165,5.3739,11.3363,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +166,5.3943,11.6068,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +167,5.2931,10.8596,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +168,5.3934,11.0515,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13103,0 +169,5.2061,10.7157,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +170,5.1465,10.9396,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +171,5.5164,11.0062,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +172,5.5670,11.2312,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12883,0 +173,5.3918,10.9740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +174,5.3660,10.8797,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +175,5.2759,11.2518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +176,5.3464,10.6954,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13481,0 +177,5.4284,10.8953,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +178,5.5660,10.8486,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +179,5.5482,10.9321,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +180,5.3784,10.4175,0.0505,0.0000,0,0,0.0000,0,0.0000,0,1,0,241418,0 +181,5.6555,10.6899,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,19215,0 +182,5.5790,10.8275,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,23656,0 +183,5.5370,10.7242,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +184,5.3815,10.7702,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,26245,0 +185,5.6724,10.7924,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +186,5.3095,11.1937,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5102,0 +187,5.4911,10.7627,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4147,0 +188,5.3535,10.9858,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13635,0 +189,5.4237,11.1337,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +190,5.4501,10.9234,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +191,5.3968,11.0487,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +192,5.6721,10.6850,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,36424,0 +193,4.6613,10.9078,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +194,5.5438,11.1713,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +195,5.6194,10.8050,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +196,5.5413,10.9061,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13653,0 +197,5.5051,10.8221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +198,5.4699,11.3370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +199,5.7932,10.8994,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +200,5.4960,11.3714,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13125,0 +201,5.4681,10.9641,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +202,5.6937,10.6496,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +203,5.5338,11.2435,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +204,5.2371,11.2902,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12858,0 +205,5.1440,10.7622,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +206,4.9079,11.0202,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +207,5.1429,10.6064,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +208,5.1997,10.6835,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13636,0 +209,5.1647,10.8813,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +210,5.2008,10.7640,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +211,5.1047,10.6412,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +212,4.9887,10.7331,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,12678,0 +213,5.1722,10.8235,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +214,5.2045,11.1052,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +215,5.1188,10.7159,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +216,5.2203,10.6946,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12452,0 +217,4.8353,10.7118,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +218,5.1426,10.6720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +219,4.7059,10.8874,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +220,4.7928,11.5432,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12502,0 +221,4.9862,10.6271,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +222,4.8997,11.1682,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +223,5.0270,11.2547,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +224,5.0869,11.1192,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,11650,0 +225,5.2165,10.8355,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +226,5.2912,11.1054,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +227,5.2784,10.9362,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +228,5.2177,11.0724,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13841,0 +229,5.4455,10.9319,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +230,5.3329,11.1392,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +231,5.1927,10.8410,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +232,5.1841,10.6596,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13418,0 +233,5.1945,10.8390,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +234,5.3111,11.1248,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +235,5.1860,11.2197,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +236,5.1253,11.0524,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,13117,0 +237,5.1445,10.6922,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +238,5.3815,10.8860,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +239,5.4623,10.9611,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +240,4.9763,10.5267,0.0295,0.0000,0,0,0.0000,0,0.0000,0,1,0,202606,0 +241,5.1003,10.7341,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,18838,0 +242,5.1344,11.2968,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22006,0 +243,5.1271,10.7987,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16616,0 +244,5.2173,11.0663,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,22139,0 +245,5.1536,11.0747,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,5492,0 +246,5.1638,10.9310,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3374,0 +247,5.3252,11.0393,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +248,5.5548,11.0804,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13534,0 +249,5.5438,11.1957,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +250,5.6100,11.0522,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +251,5.7105,11.1128,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +252,5.6945,11.1111,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12484,0 +253,5.6105,11.0853,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1891,0 +254,5.4960,10.9436,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +255,5.6352,10.9772,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1770,0 +256,5.5080,10.7583,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,34556,0 +257,5.6227,10.9262,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +258,5.6078,11.3509,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +259,7.7481,11.3052,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +260,5.4187,11.1287,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,13717,0 +261,5.1692,11.1017,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +262,5.2064,11.1007,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +263,5.2506,11.1830,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +264,5.2541,10.9608,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13183,0 +265,5.3615,10.8041,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +266,5.2916,10.8250,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +267,5.4475,10.8564,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +268,5.4236,11.0448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11975,0 +269,5.6009,11.0617,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +270,5.5762,10.6728,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +271,5.3958,11.1664,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +272,4.6989,11.1322,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,13683,0 +273,4.6558,10.9288,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +274,4.9075,11.1453,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +275,4.4770,11.1189,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +276,4.4430,11.1759,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +277,4.5595,11.0083,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +278,4.5138,10.9923,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +279,4.5056,11.2483,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +280,4.6489,11.2707,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12510,0 +281,4.6808,11.1305,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +282,4.7319,10.7640,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +283,4.8642,11.0331,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +284,5.0395,11.0884,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12528,0 +285,5.1850,10.6746,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +286,4.9848,10.8555,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +287,4.6445,11.0588,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +288,4.8754,11.1086,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,11401,0 +289,5.0695,10.6677,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +290,4.8253,11.3297,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +291,4.9840,10.7772,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +292,5.2106,10.7652,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13732,0 +293,5.3152,11.3259,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +294,5.5465,10.8207,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +295,5.3000,11.7617,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +296,5.3123,10.9672,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +297,5.1879,10.6372,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +298,5.2213,10.6301,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +299,5.1287,10.7630,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.txt b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.txt new file mode 100644 index 0000000..1b94c09 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.363 +avg_encode_latency_ms=11.463 +p95_encode_latency_ms=11.444 +max_encode_latency_ms=60.138 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2756134 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.csv new file mode 100644 index 0000000..40eafaa --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,10.2064,39.6340,0.0525,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,12.0659,13.0378,0.0217,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,8.3363,14.9132,0.0299,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,10.8218,14.3908,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.6291,17.3999,0.0175,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.6079,20.2955,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.7035,23.2565,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.4429,19.1869,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.4750,13.5938,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.3737,13.6533,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,14.7481,12.7617,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.2830,16.1025,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.4155,12.9497,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,7.6690,13.3425,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.5799,13.0298,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.4613,12.6336,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.6528,12.7319,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.3523,12.4890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.9655,12.8580,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.5703,12.5621,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.6248,12.9348,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,7.3644,12.6845,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.6782,12.7140,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.5542,12.6258,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.5476,12.6911,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,8.1379,12.7918,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.8587,12.8022,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,7.6568,12.8338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,8.2515,12.6743,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.1992,13.3434,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.9529,13.1663,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,7.3919,13.2119,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.8193,12.9205,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,8.2615,13.1386,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,9.9734,13.1817,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,9.2944,12.8024,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,7.5923,13.3221,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.5692,13.1839,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.4926,13.0393,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.2924,12.6451,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,8.1677,12.6702,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,8.7270,12.6212,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,9.0443,13.1666,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,11.8155,12.7037,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,8.7074,12.9472,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.9168,13.4605,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,8.0799,12.9266,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,10.6344,12.9847,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,8.1990,12.6808,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,9.6653,12.7780,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,8.2204,12.9661,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,7.7913,12.7223,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,12.9472,13.1643,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,8.8319,12.7660,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.6257,12.8492,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,8.3461,12.9896,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.8991,12.8440,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.7192,13.1156,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,10.4898,13.0162,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,9.5290,12.7741,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.4846,12.6851,0.3328,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,18.0228,13.4729,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,11.6487,13.6100,0.3315,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,14.1955,12.9918,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,13.9479,12.9608,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,11.2307,13.1673,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.9639,12.8786,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.8275,13.0535,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.9069,12.9489,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,8.3311,12.7414,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,7.5927,12.8725,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,10.5035,12.8930,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0135,13.0075,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7252,12.8320,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,10.3340,13.1328,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,12.3081,13.0702,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,13.9283,13.0707,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,13.5501,13.5485,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,8.3298,13.6856,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.9601,12.8453,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,8.1580,12.8253,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.7660,13.1365,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.5463,12.9542,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.3494,12.9482,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.3598,12.6210,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.1103,12.8045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.7447,12.6665,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.5456,12.4880,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.3717,12.8387,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.5422,12.5162,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.3619,12.6952,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.6187,12.8870,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.4645,12.8919,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.3354,13.3480,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,8.6234,12.8820,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.8727,12.8029,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.9814,12.8938,0.0167,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,9.1763,13.0544,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,8.7341,12.9983,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,8.0886,12.8177,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.7927,12.7557,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.2773,12.5541,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.5955,12.6391,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,8.5629,12.7999,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.3416,12.7627,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.2931,12.8562,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.9012,12.7397,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.5171,12.8189,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.4369,12.8232,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.3171,13.3875,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.3035,12.7608,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,7.9662,12.6103,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,7.8572,12.6656,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.4830,12.8908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,7.5920,12.4931,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.5512,12.5337,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,7.9158,12.5009,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,8.1379,12.4110,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.9541,12.7877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.8348,12.4823,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.6028,12.1408,0.0705,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.7856,12.6930,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.3919,12.5016,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.5495,12.5332,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.6866,12.5170,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.9054,13.1077,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.7706,12.5243,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,8.0910,12.4839,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,8.1862,12.7690,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.6855,12.8865,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.6124,12.7755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.3477,12.9904,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.5374,12.7288,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.6418,12.7058,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.4076,12.8278,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.4750,12.4973,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.8103,12.4467,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.9622,12.8059,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.9013,12.7873,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8696,12.7065,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.2935,12.6502,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.5242,13.2608,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.5855,12.5038,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.7432,12.6883,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.9763,12.6345,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,8.4882,12.7725,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,8.0151,12.7204,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,8.1188,12.5854,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,8.0410,12.6058,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,8.0911,12.5551,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,8.0864,12.5614,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,8.3349,12.7513,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,8.6593,12.7637,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,8.2273,12.7309,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.8225,12.6351,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.9461,12.7083,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,8.1852,12.8133,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,8.0944,13.2257,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,8.0989,12.6197,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,8.5072,12.6372,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,8.0339,12.5560,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,8.0714,12.6163,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,8.1064,12.5550,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,8.1125,12.4460,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,8.4440,12.5759,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,8.1469,12.7308,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,8.1061,12.6431,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.9818,12.5897,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,8.3339,12.5594,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,8.0126,12.5624,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7973,12.5713,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.8529,12.5122,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.9549,12.6280,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.9338,13.1864,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,8.0660,12.6893,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,8.2688,12.6815,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,8.4005,12.7787,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.4096,12.6869,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,8.0191,12.5909,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,8.2668,12.4438,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.3546,12.2783,0.0634,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,8.2063,12.4456,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,8.0685,23.5553,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.9670,29.5057,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,8.0406,34.8502,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,8.1013,33.3220,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,8.3157,29.2100,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,8.8020,23.0119,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.6998,18.2167,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,8.0393,13.4782,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,8.9976,13.1229,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.9568,12.7620,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,7.5068,12.6304,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.0270,12.6351,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,9.0930,12.8630,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,10.4563,13.0076,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.6447,12.8415,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,9.5210,12.9446,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,8.1660,12.7961,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.2407,12.7306,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,8.4152,13.1032,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.9063,12.6610,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.3336,12.5788,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,7.5314,13.1148,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,8.2622,13.0613,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.4251,13.5659,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.6122,12.5981,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.7262,12.5954,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.7643,12.7470,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,9.5100,13.1962,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,8.3844,12.7132,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.8408,12.6724,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.8247,12.6007,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,8.2118,12.8287,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,8.0642,12.7644,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,8.3023,12.7423,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,8.2124,12.6676,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.5070,12.8655,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.8430,12.6222,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,8.2394,12.9722,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.6558,12.7628,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.9245,13.2985,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.5655,12.4932,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.9618,12.8352,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.6708,14.5788,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,19.8935,12.7020,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.6180,15.3367,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.9440,15.0176,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.5001,12.9883,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,7.4638,12.6266,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.3612,12.6261,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.6155,12.5347,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.7485,12.6817,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,8.1755,12.8785,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.6985,12.7026,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.7883,12.6214,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.8685,12.5661,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.8738,13.1245,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.7503,12.7565,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,8.0552,12.6817,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,8.1139,12.4416,0.0709,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,8.0022,12.9504,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.7300,12.7683,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8635,12.7323,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,7.7632,12.8113,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,7.4660,12.6552,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.6314,12.5667,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,8.2593,12.9192,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.4185,12.8163,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,7.7623,12.9493,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.6800,13.1541,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,8.0272,12.5870,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.4530,12.7238,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.4854,13.4308,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.6707,12.7205,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.9148,12.6158,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.9688,12.8800,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,9.0238,12.7610,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,8.3802,12.9849,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,8.4733,13.1200,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.9468,12.9732,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,8.1072,12.9000,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6029,12.7397,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.9341,12.5745,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,8.2117,12.7118,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,8.3408,12.7582,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,8.0230,13.0104,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.8022,12.7830,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,8.0819,12.9885,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.9439,13.5566,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,8.0319,12.7145,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.8000,13.0286,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,8.1186,12.9047,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.7072,12.7606,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,8.3166,12.9099,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,8.1629,12.7096,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,8.0613,12.8227,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,8.0445,12.6859,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,8.1820,12.7123,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,8.0242,12.6880,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.7945,12.6693,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.9584,12.8439,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.9221,12.5767,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,8.1402,12.5542,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,8.0371,12.4497,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.9993,13.0372,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,8.4854,12.7273,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.9723,12.6774,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,8.0165,12.5561,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,8.2762,12.5055,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,8.3398,12.5388,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,8.2803,12.6854,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,8.1160,12.5891,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,8.3168,12.5879,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,8.0242,13.1532,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,8.3645,13.1771,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,8.1438,12.6160,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1868,12.6413,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,8.1378,12.6433,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,8.1713,12.6037,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.txt b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.txt new file mode 100644 index 0000000..7622347 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=8.264 +avg_encode_latency_ms=13.383 +p95_encode_latency_ms=14.918 +max_encode_latency_ms=39.634 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.csv new file mode 100644 index 0000000..2b1fac8 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.csv @@ -0,0 +1,1441 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1871,35.4013,0.0190,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.9595,22.0023,0.0128,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8587,25.3941,0.0055,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.9159,24.7929,0.0163,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.1871,5.7329,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.9595,5.4999,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8587,10.4027,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.9159,10.3249,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.1871,5.7236,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.9595,5.5330,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8587,10.4722,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.9159,10.4144,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.1871,5.6652,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.9595,5.5438,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8587,10.1587,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.9159,10.2242,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.1871,5.8186,0.0121,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.9595,5.6127,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8587,10.2097,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.9159,10.1962,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.1871,7.6774,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.9595,7.3494,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8587,13.6162,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.9159,13.5137,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.1871,6.5837,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.9595,7.6667,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8587,10.3285,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.9159,10.2202,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.1871,5.7968,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.9595,5.5590,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8587,10.4599,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.9159,10.3809,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.1871,5.7130,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.9595,5.3870,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8587,10.2445,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.9159,10.1710,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.1871,5.7794,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.9595,5.5735,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8587,10.4102,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.9159,10.4038,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.1871,5.6765,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.9595,5.4886,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8587,10.1389,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.9159,10.0373,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.1871,5.6416,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.9595,5.4737,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8587,10.2217,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.9159,10.1941,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.1871,5.6842,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.9595,5.4921,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8587,10.2417,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.9159,10.1988,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.1871,5.8853,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.9595,5.6487,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8587,10.4503,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.9159,10.3990,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.1871,5.6879,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.9595,5.4363,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8587,10.4098,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.9159,10.3546,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.1871,5.7608,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.9595,5.6190,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8587,10.0145,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.9159,10.0670,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.1871,5.6877,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.9595,5.4596,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8587,10.2320,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.9159,10.1975,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.1871,5.7082,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.9595,5.5137,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8587,10.2197,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.9159,10.1870,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.1871,5.7532,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.9595,5.4448,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8587,10.2580,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.9159,10.2032,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.1871,5.6203,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.9595,5.4205,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8587,10.2024,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.9159,10.1468,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.1871,5.7220,0.0257,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.9595,5.4306,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8587,10.2800,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.9159,10.1860,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.1871,6.0129,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.9595,5.6916,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8587,10.2299,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.9159,10.0629,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.1871,6.3608,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.9595,5.9407,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8587,11.0570,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.9159,10.8107,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.1871,6.0746,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.9595,5.5444,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8587,10.7897,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.9159,11.3362,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.1871,6.3177,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.9595,5.9136,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8587,10.1522,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.9159,9.9263,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.1871,6.3409,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.9595,6.3137,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8587,9.8484,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.9159,10.5695,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.1871,6.2397,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.9595,5.5443,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8587,11.3068,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.9159,11.2286,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.1871,6.1236,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.9595,5.7252,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8587,10.1360,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.9159,10.1588,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.1871,6.3474,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.9595,5.8015,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8587,10.2366,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.9159,9.9425,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.1871,6.0669,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.9595,5.7116,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8587,10.2541,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.9159,10.2183,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.1871,6.1969,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.9595,5.9646,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8587,9.4790,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.9159,9.6826,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.1871,5.7355,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.9595,5.5023,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8587,10.2937,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.9159,10.2914,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.1871,5.7393,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.9595,5.4955,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8587,10.4122,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.9159,10.3781,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.1871,5.7057,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.9595,5.4816,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8587,10.2733,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.9159,10.3405,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.1871,5.9958,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.9595,5.7524,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8587,9.8595,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.9159,10.2434,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.1871,5.9745,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.9595,5.6886,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8587,10.8452,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.9159,10.7081,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.1871,6.2206,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.9595,5.8266,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8587,10.0781,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.9159,10.1988,0.1057,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.1871,6.7622,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.9595,5.7904,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8587,9.9815,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.9159,10.3010,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.1871,7.0723,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.9595,6.1298,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8587,9.9866,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.9159,10.1399,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.1871,6.3045,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.9595,5.8599,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8587,10.1241,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.9159,10.0469,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.1871,6.3645,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.9595,5.9395,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8587,10.1084,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.9159,10.0387,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.1871,6.2093,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.9595,5.6166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8587,10.5565,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.9159,10.6322,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.1871,6.1541,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.9595,5.7296,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8587,10.2849,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.9159,10.2274,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.1871,6.2886,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.9595,5.9013,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8587,10.3542,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.9159,10.1093,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.1871,6.3190,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.9595,6.4401,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8587,9.6346,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.9159,10.4877,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.1871,6.8943,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.9595,6.3401,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8587,11.3085,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.9159,11.0878,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.1871,6.1422,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.9595,5.6992,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8587,10.5203,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.9159,10.4157,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.1871,6.3231,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.9595,5.8884,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8587,9.8717,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.9159,9.9386,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.1871,6.3012,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.9595,5.9278,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8587,10.0478,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.9159,10.0003,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.1871,6.4348,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.9595,5.9038,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8587,10.0977,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.9159,10.0990,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.1871,6.6501,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.9595,6.0762,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8587,10.4214,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.9159,10.2766,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.1871,6.4448,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.9595,6.2255,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8587,10.2263,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.9159,10.3130,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.1871,6.5754,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.9595,6.0895,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8587,10.2950,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.9159,10.3988,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.1871,6.2944,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.9595,5.8425,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8587,10.2910,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.9159,10.4483,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.1871,6.0832,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.9595,5.6978,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8587,10.5550,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.9159,10.4240,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.1871,6.2805,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.9595,5.8441,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8587,10.6152,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.9159,10.4331,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.1871,6.4305,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.9595,6.0187,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8587,10.3888,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.9159,10.2754,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.1871,6.4449,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.9595,7.1685,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8587,10.2479,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.9159,10.0985,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.1871,6.4142,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.9595,5.9850,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8587,10.3026,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.9159,10.2608,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.1871,6.1610,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.9595,5.8423,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8587,10.5984,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.9159,10.5302,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.1871,6.4613,0.1748,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.9595,5.9952,0.1204,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8587,10.1163,0.1292,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.9159,10.1432,0.0456,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.1871,6.2990,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.9595,5.9650,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8587,10.2065,0.0944,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.9159,10.3495,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.1871,6.7195,0.0168,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.9595,6.0460,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8587,10.2866,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.9159,10.1508,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.1871,6.5616,0.1383,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.9595,6.2323,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8587,10.4679,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.9159,10.5157,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.1871,6.4796,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.9595,6.2302,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8587,8.4992,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.9159,10.3363,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.1871,6.2080,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.9595,6.1518,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8587,8.6120,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.9159,10.4522,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.1871,6.1591,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.9595,5.8932,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8587,10.0724,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.9159,10.1367,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.1871,6.2178,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.9595,5.7385,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8587,9.7955,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.9159,9.8395,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.1871,6.3327,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.9595,5.8655,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8587,9.9833,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.9159,9.9944,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.1871,6.3594,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.9595,6.1421,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8587,10.0934,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.9159,10.1749,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.1871,6.5696,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.9595,5.7435,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8587,10.0153,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.9159,10.0876,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.1871,6.2115,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.9595,5.8833,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8587,9.8533,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.9159,9.9932,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.1871,6.2738,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.9595,5.9460,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8587,10.2508,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.9159,10.3067,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.1871,6.2983,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.9595,5.9354,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8587,10.2722,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.9159,10.1869,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.1871,6.3515,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.9595,5.9081,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8587,10.0405,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.9159,10.0228,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.1871,6.2768,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.9595,5.9707,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8587,10.0201,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.9159,10.1819,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.1871,6.6313,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.9595,6.0735,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8587,10.4645,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.9159,10.2957,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.1871,6.6710,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.9595,6.0203,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8587,10.0855,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.9159,10.0502,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.1871,6.5813,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.9595,6.0111,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8587,10.3837,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.9159,10.2630,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.1871,6.5190,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.9595,5.9201,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8587,10.2645,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.9159,10.0294,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.1871,6.6058,0.0665,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.9595,6.0159,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8587,10.1694,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.9159,10.0978,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.1871,6.0412,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.9595,5.7603,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8587,10.0612,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.9159,10.0540,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.1871,6.2701,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.9595,5.7492,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8587,10.5386,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.9159,10.6493,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.1871,6.2959,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.9595,5.9307,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8587,10.3561,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.9159,10.3093,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.1871,6.5877,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.9595,6.1209,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8587,9.6457,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.9159,10.2994,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.1871,6.2394,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.9595,5.7546,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8587,10.6064,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.9159,10.3813,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.1871,5.8275,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.9595,5.5012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8587,10.3370,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.9159,10.2052,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.1871,5.6893,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.9595,5.4696,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8587,10.2166,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.9159,10.1940,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.1871,5.7093,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.9595,5.5225,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8587,10.1630,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.9159,10.2040,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.1871,5.7813,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.9595,5.4518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8587,10.2647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.9159,10.1406,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.1871,5.7727,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.9595,5.4890,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8587,10.4201,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.9159,10.3285,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.1871,5.8015,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.9595,5.5145,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8587,10.2260,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.9159,10.0813,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.1871,5.7064,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.9595,5.4661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8587,10.3503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.9159,10.2135,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.1871,5.7204,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.9595,5.4788,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8587,10.3964,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.9159,10.3162,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.1871,5.7857,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.9595,5.5134,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8587,10.2459,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.9159,10.2855,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.1871,5.7435,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.9595,5.4542,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8587,10.2149,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.9159,10.1812,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.1871,5.8105,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.9595,5.5270,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8587,10.3677,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.9159,10.3584,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.1871,5.8120,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.9595,5.4870,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8587,10.3222,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.9159,10.2485,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.1871,5.6736,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.9595,5.4639,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8587,10.2785,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.9159,10.2002,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.1871,6.2788,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.9595,5.8622,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8587,10.3246,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.9159,10.3801,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.1871,6.6063,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.9595,5.8181,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8587,10.4003,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.9159,10.2705,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.1871,6.4217,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.9595,5.8467,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8587,10.7128,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.9159,10.4341,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.1871,5.7962,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.9595,5.5324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8587,10.3545,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.9159,10.2792,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.1871,5.8107,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.9595,5.4818,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8587,10.6233,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.9159,10.5307,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.1871,6.1762,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.9595,5.8915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8587,10.5058,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.9159,10.4170,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.1871,6.3867,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.9595,6.1528,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8587,10.1630,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.9159,9.9081,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.1871,5.8158,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.9595,5.5586,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8587,10.4946,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.9159,10.4336,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.1871,5.8503,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.9595,5.6022,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8587,10.4514,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.9159,10.4173,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.1871,6.0748,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.9595,5.7647,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8587,10.9940,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.9159,11.0715,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.1871,6.2075,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.9595,5.7860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8587,9.8412,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.9159,9.8857,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.1871,5.6815,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.9595,5.4746,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8587,10.2928,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.9159,10.2568,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.1871,5.7719,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.9595,5.4673,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8587,10.2740,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.9159,10.2355,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.1871,5.8009,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.9595,5.4786,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8587,10.2730,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.9159,10.2096,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.1871,5.8054,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.9595,5.4816,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8587,10.2969,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.9159,10.2447,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.1871,5.7325,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.9595,5.4676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8587,10.3402,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.9159,10.2759,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.1871,5.7336,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.9595,5.5259,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8587,10.1931,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.9159,10.1259,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.1871,5.8464,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.9595,5.5204,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8587,10.3932,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.9159,10.3091,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.1871,6.2290,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.9595,5.9447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8587,10.7012,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.9159,10.7664,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.1871,6.2566,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.9595,5.6314,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8587,10.6335,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.9159,10.6477,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.1871,6.6855,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.9595,5.7328,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8587,9.9582,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.9159,10.1762,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.1871,5.6757,0.0306,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.9595,5.4437,0.0160,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8587,10.0471,0.0069,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.9159,10.0627,0.0284,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.1871,5.7465,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.9595,5.4884,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8587,10.3740,0.0153,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.9159,10.3208,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.1871,5.8899,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.9595,5.5950,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8587,10.4905,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.9159,10.4410,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.1871,5.8964,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.9595,5.5162,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8587,10.4077,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.9159,10.3358,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.1871,5.9679,0.0185,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.9595,5.7671,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8587,10.6485,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.9159,10.6007,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.1871,5.7195,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.9595,5.5368,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8587,10.4831,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.9159,10.4496,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.1871,5.7862,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.9595,5.5886,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8587,10.3991,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.9159,10.3676,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.1871,5.7915,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.9595,5.4928,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8587,10.4391,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.9159,10.4134,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.1871,5.7709,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.9595,5.4771,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8587,10.5017,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.9159,10.4595,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.1871,6.0220,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.9595,5.7485,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8587,10.6105,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.9159,10.5638,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.1871,5.7605,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.9595,5.6122,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8587,10.6120,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.9159,10.6345,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.1871,5.8026,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.9595,5.6875,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8587,10.9853,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.9159,11.0574,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.1871,6.6800,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.9595,6.0475,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8587,10.0456,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.9159,10.1379,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.1871,6.3536,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.9595,5.8483,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8587,9.9805,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.9159,10.0623,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.1871,6.0889,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.9595,5.7945,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8587,10.7105,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.9159,10.6547,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.1871,5.8249,0.0182,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.9595,5.5943,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8587,10.5270,0.0180,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.9159,10.4908,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.1871,6.4679,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.9595,5.8432,0.0243,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8587,11.0069,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.9159,10.7596,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.1871,6.4581,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.9595,6.1027,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8587,13.3480,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.9159,13.1408,0.0332,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.1871,6.5219,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.9595,5.9161,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8587,11.3575,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.9159,11.3477,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.1871,6.5630,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.9595,5.9795,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8587,10.9710,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.9159,10.9333,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.1871,7.0717,0.0174,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.9595,6.1328,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8587,12.5027,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.9159,12.1615,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.1871,7.2573,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.9595,6.3302,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8587,11.3343,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.9159,11.8203,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.1871,7.3695,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.9595,6.3758,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8587,11.5855,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.9159,11.0542,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.1871,6.8255,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.9595,6.2440,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8587,9.5003,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.9159,10.5984,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.1871,6.9085,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.9595,6.1505,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8587,11.1367,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.9159,10.5598,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.1871,7.0761,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.9595,6.2383,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8587,10.8799,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.9159,10.5740,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.1871,8.3560,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.9595,7.2995,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8587,10.8537,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.9159,10.7438,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.1871,7.2089,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.9595,6.3523,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8587,10.9023,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.9159,10.8792,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.1871,7.2455,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.9595,7.5071,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8587,11.0146,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.9159,10.8780,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.1871,7.0465,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.9595,6.2403,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8587,10.7990,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.9159,10.6492,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.1871,7.3678,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.9595,6.5278,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8587,10.9720,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.9159,10.9857,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.1871,7.1147,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.9595,6.2136,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8587,10.7875,0.0580,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.9159,10.4427,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.1871,7.9264,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.9595,6.9600,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8587,10.5991,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.9159,10.4140,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.1871,6.6478,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.9595,6.1697,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8587,12.9958,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.9159,12.7684,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.1871,8.9489,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.9595,7.9369,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8587,11.2209,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.9159,10.9667,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.1871,7.0885,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.9595,6.2389,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8587,10.9297,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.9159,10.9309,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.1871,7.4446,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.9595,6.6381,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8587,10.8172,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.9159,10.1546,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.1871,7.2313,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.9595,6.2228,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8587,9.5773,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.9159,9.1598,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.1871,6.9633,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.9595,6.2824,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8587,11.1254,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.9159,10.2202,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.1871,7.1217,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.9595,8.7710,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8587,8.2462,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.9159,10.7750,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.1871,7.0707,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.9595,6.1469,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8587,9.0360,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.9159,9.1945,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.1871,7.0502,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.9595,6.2170,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8587,7.9880,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.9159,10.3672,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.1871,6.1920,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.9595,6.0021,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8587,11.0165,0.0211,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.9159,10.9421,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.1871,6.5723,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.9595,6.4282,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8587,11.0468,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.9159,10.1344,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.1871,6.9871,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.9595,6.2214,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8587,9.9200,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.9159,10.6891,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.1871,7.0034,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.9595,6.2305,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8587,11.2156,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.9159,10.9420,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.1871,7.0208,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.9595,6.2297,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8587,11.1075,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.9159,10.3068,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.1871,6.9143,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.9595,6.3455,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8587,10.7553,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.9159,10.4863,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.1871,10.4497,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.9595,7.2063,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8587,6.7721,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.9159,9.7264,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.1871,5.7368,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.9595,5.5235,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8587,10.3989,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.9159,10.3673,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.1871,6.0407,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.9595,5.7842,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8587,10.6476,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.9159,10.6955,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.1871,5.9007,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.9595,5.7843,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8587,10.5260,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.9159,10.4827,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.1871,6.4556,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.9595,5.9948,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8587,10.2161,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.9159,9.9230,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.1871,6.3494,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.9595,6.0145,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8587,8.8480,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.9159,8.3585,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.1871,6.7760,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.9595,6.2401,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8587,10.5810,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.9159,10.4031,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.1871,7.4537,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.9595,6.9750,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +702,2.8587,9.5031,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +703,2.9159,10.5230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +704,5.1871,6.7809,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.9595,6.2673,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +706,2.8587,8.2155,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +707,2.9159,10.6083,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.1871,6.7574,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.9595,6.2257,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +710,2.8587,10.5833,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +711,2.9159,10.5672,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +712,5.1871,7.9279,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.9595,6.6100,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +714,2.8587,11.1970,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +715,2.9159,10.0628,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +716,5.1871,7.3546,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.9595,6.3250,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +718,2.8587,11.2188,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +719,2.9159,10.9269,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +720,5.1871,29.5905,0.0106,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.9595,26.2352,0.0159,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8587,26.4221,0.0180,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.9159,26.9885,0.0177,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.1871,5.7361,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.9595,5.5856,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8587,10.6500,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.9159,10.6160,0.0105,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.1871,5.8705,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.9595,5.7162,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8587,10.5683,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.9159,10.4688,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.1871,5.7216,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.9595,5.6627,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8587,10.5192,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.9159,10.5307,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.1871,5.8140,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.9595,5.7269,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8587,10.6658,0.0127,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.9159,10.6491,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.1871,6.0506,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.9595,5.9003,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8587,10.8961,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.9159,10.8131,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.1871,6.0189,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.9595,6.3308,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8587,10.5578,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.9159,11.0464,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.1871,5.7665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.9595,5.7024,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8587,10.4919,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.9159,10.6353,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.1871,5.9538,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.9595,5.7852,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8587,10.8002,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.9159,10.7946,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.1871,5.7044,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.9595,5.7003,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8587,10.6030,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.9159,10.6410,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.1871,5.8741,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.9595,5.8578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8587,10.6274,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.9159,10.6167,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.1871,5.6753,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.9595,5.5745,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8587,10.4047,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.9159,10.4139,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.1871,5.6867,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.9595,5.6513,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8587,10.3078,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.9159,10.3851,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.1871,5.7145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.9595,5.6651,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8587,10.3848,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.9159,10.4568,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.1871,5.7795,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.9595,5.7797,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8587,10.6222,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.9159,10.7291,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.1871,6.3979,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.9595,6.1232,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8587,10.9803,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.9159,10.7937,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.1871,5.8610,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.9595,5.6860,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8587,10.4627,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.9159,10.3998,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.1871,5.8442,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.9595,5.7564,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8587,10.6015,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.9159,10.6191,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.1871,5.9519,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.9595,5.8818,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8587,10.7588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.9159,10.7436,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.1871,5.7519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.9595,5.6863,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8587,10.6939,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.9159,10.6362,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.1871,5.7381,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.9595,5.6628,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8587,10.4128,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.9159,10.4140,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.1871,5.7600,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.9595,5.6245,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8587,10.7441,0.0151,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.9159,10.6826,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.1871,5.8280,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.9595,5.6910,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8587,10.5964,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.9159,10.5730,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.1871,5.7878,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.9595,5.7416,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8587,10.5493,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.9159,10.5682,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.1871,5.7796,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.9595,5.6589,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8587,10.7514,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.9159,10.6823,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.1871,5.7870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.9595,5.7913,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8587,10.7358,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.9159,10.6491,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.1871,5.7962,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.9595,5.6789,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8587,10.4947,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.9159,10.4811,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.1871,6.0143,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.9595,5.6508,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8587,10.5833,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.9159,10.5375,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.1871,5.8500,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.9595,5.6126,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8587,10.5657,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.9159,10.5393,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.1871,5.8841,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.9595,5.7466,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8587,10.6879,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.9159,10.6720,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.1871,5.8816,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.9595,5.6803,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8587,10.5173,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.9159,10.4634,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.1871,5.8417,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.9595,5.6741,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8587,10.7413,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.9159,10.7416,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.1871,5.7725,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.9595,5.6433,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8587,10.4125,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.9159,10.3936,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.1871,6.1716,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.9595,5.8495,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8587,10.6967,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.9159,10.7010,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.1871,5.9140,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.9595,5.6450,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8587,10.5350,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.9159,10.4530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.1871,5.8966,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.9595,5.7020,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8587,10.4670,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.9159,10.5203,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.1871,5.7786,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.9595,5.6354,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8587,10.4084,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.9159,10.4202,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.1871,5.9430,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.9595,5.6322,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8587,10.4708,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.9159,10.3947,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.1871,6.1107,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.9595,5.7699,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8587,10.6450,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.9159,10.5782,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.1871,6.0701,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.9595,5.7896,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8587,10.6313,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.9159,10.5848,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.1871,5.7737,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.9595,5.7051,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8587,10.6787,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.9159,10.6567,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.1871,5.8846,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.9595,5.6947,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8587,10.5245,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.9159,10.4642,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.1871,6.0233,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.9595,5.7166,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8587,10.6187,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.9159,10.5813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.1871,5.8567,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.9595,5.6555,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8587,10.5915,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.9159,10.5542,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.1871,5.8550,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.9595,5.6687,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8587,10.8689,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.9159,10.8198,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.1871,6.4888,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.9595,6.0230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8587,11.1163,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.9159,11.0150,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.1871,6.2882,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.9595,6.0441,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8587,11.1306,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.9159,11.0569,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.1871,6.3198,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.9595,6.0619,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8587,11.1943,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.9159,11.1302,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.1871,6.2249,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.9595,5.9739,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8587,11.0702,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.9159,11.0715,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.1871,6.0457,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.9595,5.9381,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8587,10.9385,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.9159,10.8962,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.1871,6.0118,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.9595,5.8306,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8587,10.9372,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.9159,10.8370,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.1871,6.5252,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.9595,5.9854,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8587,10.8371,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.9159,10.6423,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.1871,6.2540,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.9595,5.8350,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8587,10.7078,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.9159,10.6605,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.1871,5.9662,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.9595,5.7449,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8587,10.6203,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.9159,10.5353,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.1871,5.8650,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.9595,5.7038,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8587,10.4207,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.9159,10.3985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.1871,6.0508,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.9595,5.7938,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8587,10.6935,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.9159,10.6633,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.1871,6.2219,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.9595,6.0224,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8587,10.9756,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.9159,11.0179,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.1871,6.1673,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.9595,6.0228,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8587,10.9891,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.9159,11.0593,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.1871,6.4783,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.9595,6.0778,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8587,11.3787,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.9159,11.2588,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.1871,6.5413,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.9595,6.1247,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8587,11.1479,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.9159,11.0935,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.1871,6.1848,0.0488,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.9595,5.9672,0.0401,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8587,10.9093,0.0399,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.9159,10.7732,0.0285,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,5.1871,5.8719,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.9595,5.6528,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8587,10.3667,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.9159,10.3965,0.0115,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,5.1871,5.8174,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.9595,5.6145,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8587,10.5237,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.9159,10.5375,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,5.1871,5.7402,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.9595,5.6078,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8587,10.4704,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.9159,10.4577,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,5.1871,5.7235,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.9595,5.5728,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8587,10.4591,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.9159,10.4709,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,5.1871,5.7583,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.9595,5.6698,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8587,10.5183,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.9159,10.5220,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,5.1871,5.8235,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.9595,5.6508,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8587,10.4362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.9159,10.4136,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,5.1871,5.8130,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.9595,5.6033,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8587,10.4494,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.9159,10.4143,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,5.1871,5.6934,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.9595,5.5090,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8587,10.3407,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.9159,10.3460,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,5.1871,6.1455,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.9595,5.8453,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8587,10.6518,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.9159,10.5815,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,5.1871,5.7576,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.9595,5.5397,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8587,10.3020,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.9159,10.2354,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,5.1871,5.9255,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.9595,5.6232,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8587,10.6875,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.9159,10.6125,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,5.1871,6.0362,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.9595,5.7252,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8587,10.7822,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.9159,10.6912,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,5.1871,5.8302,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.9595,5.6135,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8587,10.4607,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.9159,10.3907,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,5.1871,5.7684,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.9595,5.5501,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8587,10.4407,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.9159,10.3732,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,5.1871,5.6802,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.9595,5.5209,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8587,10.4538,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.9159,10.3644,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,5.1871,5.8182,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.9595,5.6778,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8587,10.6697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.9159,10.6712,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,5.1871,5.8670,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.9595,5.6679,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8587,10.6050,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.9159,10.5473,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,5.1871,5.8809,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.9595,5.6288,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8587,10.4211,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.9159,10.3523,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,5.1871,5.7160,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.9595,5.4989,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8587,10.5095,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.9159,10.4310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,5.1871,5.7546,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.9595,5.4976,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8587,10.3828,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.9159,10.2910,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,5.1871,5.6725,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.9595,5.4856,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8587,10.4115,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.9159,10.4432,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,5.1871,6.0292,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.9595,5.7831,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8587,10.6216,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.9159,10.5532,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,5.1871,5.7311,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.9595,5.5045,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8587,10.2875,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.9159,10.2730,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,5.1871,5.7850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.9595,5.5900,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8587,10.4590,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.9159,10.3911,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,5.1871,5.9591,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.9595,5.7285,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8587,10.5065,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.9159,10.4662,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,5.1871,5.7275,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.9595,5.4847,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8587,10.3545,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.9159,10.3311,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,5.1871,5.8326,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.9595,5.5844,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8587,10.5629,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.9159,10.5294,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,5.1871,5.8058,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.9595,5.7583,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8587,10.8090,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.9159,10.7907,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,5.1871,5.6633,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.9595,5.4946,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8587,10.3189,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.9159,10.2913,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,5.1871,5.6758,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.9595,5.5085,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8587,10.4585,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.9159,10.3771,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,5.1871,5.7484,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.9595,5.4932,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8587,10.3323,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.9159,10.2832,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,5.1871,5.7746,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.9595,5.6062,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8587,10.5350,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.9159,10.4905,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,5.1871,5.6830,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.9595,5.5782,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8587,10.3870,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.9159,10.4102,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,5.1871,5.8612,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.9595,5.6023,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8587,10.5660,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.9159,10.5685,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,5.1871,5.9165,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.9595,5.7699,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8587,10.7235,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.9159,10.7146,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,5.1871,5.8324,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.9595,5.7174,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8587,10.5559,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.9159,10.5352,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,5.1871,5.9191,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.9595,5.7518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8587,10.5957,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.9159,10.5875,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,5.1871,5.8337,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.9595,5.7131,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8587,10.5832,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.9159,10.5661,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,5.1871,5.8002,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.9595,5.6195,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8587,10.4407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.9159,10.3897,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,5.1871,5.7164,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.9595,5.5700,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8587,10.2593,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.9159,10.2810,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,5.1871,5.6970,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.9595,5.5138,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8587,10.2320,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.9159,10.2358,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,5.1871,5.5449,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.9595,7.8058,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8587,10.2678,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.9159,26.2808,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,5.1871,5.5877,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.9595,6.3979,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8587,10.4525,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.9159,11.4145,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,5.1871,5.6163,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.9595,5.5768,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8587,10.2777,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.9159,16.6487,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.1871,5.6528,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.9595,6.4739,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8587,10.4999,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.9159,11.4830,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.1871,5.8857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.9595,5.6680,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8587,10.3979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.9159,15.9425,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.1871,5.6284,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.9595,6.5708,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8587,10.3407,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.9159,17.2298,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,5.1871,5.4528,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.9595,6.6172,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8587,10.2609,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.9159,13.4014,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,5.1871,5.6328,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.9595,5.5701,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8587,10.6828,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.9159,10.6960,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,5.1871,6.9764,0.0146,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.9595,6.1704,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8587,11.2704,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.9159,10.9966,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,5.1871,6.4422,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.9595,6.0042,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8587,10.2249,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.9159,10.1800,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.1871,5.9667,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.9595,5.6757,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8587,10.4232,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.9159,10.2796,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.1871,6.2533,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.9595,5.9110,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8587,10.7715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.9159,10.7556,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,5.1871,6.2618,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.9595,5.9128,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8587,10.9377,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.9159,11.6325,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,5.1871,7.0071,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.9595,6.4915,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8587,11.1377,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.9159,11.1525,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,5.1871,6.0165,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.9595,5.6376,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8587,10.2069,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.9159,10.2328,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,5.1871,5.8194,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.9595,5.6240,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8587,10.4899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.9159,10.4988,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,5.1871,6.0019,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.9595,5.7690,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8587,10.7199,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.9159,10.7270,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,5.1871,5.8574,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.9595,5.7515,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8587,10.5883,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.9159,10.5708,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.1871,5.8472,0.0180,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.9595,5.6105,0.0226,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,2.8587,10.2455,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,2.9159,10.2705,0.0123,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,5.1871,5.8188,0.0111,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.9595,5.6455,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,2.8587,10.6523,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,2.9159,10.6279,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,5.1871,5.7377,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.9595,5.6492,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,2.8587,10.6358,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,2.9159,10.6611,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,5.1871,5.8932,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.9595,5.6397,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,2.8587,10.5633,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,2.9159,10.5628,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,5.1871,5.9236,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.9595,5.7999,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,2.8587,10.4953,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,2.9159,10.5013,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,5.1871,5.8786,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.9595,5.7500,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,2.8587,11.6888,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,2.9159,11.4787,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,5.1871,6.3175,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.9595,5.8506,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,2.8587,13.3606,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,2.9159,13.0710,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,5.1871,6.2796,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.9595,5.7542,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,2.8587,10.0309,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,2.9159,10.0870,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,5.1871,6.1665,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.9595,5.8374,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,2.8587,10.9752,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,2.9159,10.6757,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,5.1871,6.0602,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.9595,5.6026,0.0577,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,2.8587,11.1489,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,2.9159,10.9901,0.0139,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,5.1871,6.1715,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.9595,5.8742,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,2.8587,9.8455,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,2.9159,9.8178,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,5.1871,6.4180,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.9595,5.7655,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,2.8587,9.8913,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,2.9159,9.9515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,5.1871,6.4365,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.9595,5.8247,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,2.8587,9.9767,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,2.9159,9.8757,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,5.1871,6.3353,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.9595,5.6297,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,2.8587,11.8317,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.9159,11.7990,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,5.1871,6.6238,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.9595,6.0561,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,2.8587,10.1378,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,2.9159,10.0582,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,5.1871,5.7189,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.9595,5.4154,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8587,10.3448,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,2.9159,10.3260,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,5.1871,5.7879,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.9595,5.4636,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8587,10.1806,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,2.9159,10.0658,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,5.1871,5.7276,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.9595,5.4841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8587,10.2216,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,2.9159,10.1367,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,5.1871,5.7309,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.9595,5.3905,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8587,10.1993,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,2.9159,10.0547,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,5.1871,5.8930,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.9595,5.5372,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8587,10.3060,0.0341,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,2.9159,10.2973,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,5.1871,5.8557,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.9595,5.5800,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8587,10.2870,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,2.9159,10.2062,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.1871,5.8664,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.9595,5.5539,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8587,10.4006,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,2.9159,10.2136,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.1871,6.2430,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.9595,5.7754,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8587,10.4367,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.9159,10.0412,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,5.1871,6.5128,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.9595,5.7356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8587,9.5097,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.9159,9.2698,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,5.1871,6.2295,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.9595,5.7773,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8587,10.2485,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,2.9159,10.0417,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,5.1871,6.3879,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.9595,5.8891,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8587,10.0943,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,2.9159,9.9772,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,5.1871,6.6716,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.9595,5.9233,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8587,10.2620,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,2.9159,10.2031,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,5.1871,6.2302,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.9595,5.6707,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8587,10.6685,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,2.9159,10.6089,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.1871,6.0904,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.9595,5.7503,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8587,10.4750,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,2.9159,10.2910,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,5.1871,6.3325,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.9595,6.0020,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8587,9.9587,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,2.9159,10.0878,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,5.1871,6.3128,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.9595,6.0249,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8587,9.9310,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,2.9159,10.0698,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,5.1871,6.2907,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.9595,5.8496,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8587,10.1230,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,2.9159,10.2048,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,5.1871,6.2238,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.9595,6.0180,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8587,9.9688,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,2.9159,10.6654,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,5.1871,6.1647,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.9595,5.7410,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8587,10.2606,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.9159,10.3310,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,5.1871,6.2680,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.9595,5.9202,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8587,11.5367,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.9159,11.2115,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.1871,6.0610,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.9595,6.1595,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8587,10.1609,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.9159,10.2249,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,5.1871,6.3791,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.9595,6.0646,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8587,10.8393,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,2.9159,10.4633,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,5.1871,6.5059,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.9595,6.0151,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8587,10.3262,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,2.9159,10.2942,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,5.1871,6.5161,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.9595,6.0371,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8587,10.5729,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,2.9159,10.1486,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,5.1871,6.2201,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.9595,5.8943,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8587,11.5852,0.0791,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.9159,11.0403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,5.1871,6.2199,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.9595,6.1091,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8587,9.8795,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,2.9159,9.8109,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.1871,6.3517,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.9595,5.7998,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8587,10.2111,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,2.9159,10.3469,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.1871,6.3062,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.9595,5.8195,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8587,10.0211,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,2.9159,9.9850,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.1871,6.2679,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.9595,5.6632,0.3860,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8587,10.3074,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,2.9159,10.5321,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,5.1871,6.4096,0.0236,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.9595,5.9731,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8587,10.6102,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,2.9159,10.5846,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,5.1871,6.3537,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.9595,6.0443,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8587,9.5977,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.9159,10.2516,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,5.1871,6.3011,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.9595,5.9010,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8587,9.8648,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.9159,10.0373,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,5.1871,6.2453,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.9595,5.8631,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8587,9.9236,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.9159,10.2134,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.1871,6.0470,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.9595,5.8347,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8587,10.2918,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,2.9159,10.5674,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.1871,6.1971,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.9595,5.8312,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8587,11.7935,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,2.9159,11.5776,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.1871,6.0702,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.9595,5.6428,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8587,10.1507,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,2.9159,10.2588,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,5.1871,6.0622,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.9595,5.7042,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8587,10.2171,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,2.9159,10.2662,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,5.1871,6.3533,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.9595,6.0755,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8587,9.6392,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,2.9159,10.2685,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,5.1871,6.1418,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.9595,5.8840,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8587,10.9275,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,2.9159,11.1121,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,5.1871,6.1588,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.9595,5.6538,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8587,10.3881,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,2.9159,10.0867,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.1871,5.9324,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1421,2.9595,5.6727,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1422,2.8587,9.9875,0.0417,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1423,2.9159,10.2354,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1424,5.1871,6.2188,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1425,2.9595,5.9296,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1426,2.8587,9.7734,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1427,2.9159,9.6372,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1428,5.1871,6.2636,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1429,2.9595,5.8456,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1430,2.8587,10.9702,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1431,2.9159,10.9058,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1432,5.1871,6.0827,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1433,2.9595,5.5571,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1434,2.8587,9.9867,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1435,2.9159,9.8410,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1436,5.1871,6.6301,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1437,2.9595,6.0782,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1438,2.8587,11.0105,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1439,2.9159,10.2191,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.txt b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.txt new file mode 100644 index 0000000..847594f --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.txt @@ -0,0 +1,68 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=6 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=360 +frames_submitted=360 +frames_skipped=0 +frames_encoded=360 +failed_frames=0 +steady_frames_encoded=330 +elapsed_seconds=5.997 +effective_logical_fps=60.032 +tile_frames_requested=1440 +tile_frames_encoded=1440 +failed_tile_frames=0 +avg_encode_latency_ms=12.320 +p95_encode_latency_ms=13.765 +max_encode_latency_ms=109.591 +avg_steady_encode_latency_ms=12.119 +p95_steady_encode_latency_ms=13.746 +max_steady_encode_latency_ms=109.591 +avg_tile_encode_latency_ms=8.369 +p95_tile_encode_latency_ms=11.054 +avg_max_tile_encode_latency_ms=10.778 +p95_max_tile_encode_latency_ms=11.585 +avg_steady_max_tile_encode_latency_ms=10.728 +p95_steady_max_tile_encode_latency_ms=11.563 +payload_bytes=4713117 +send_target=none +csv=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_logical.csv diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_deadline.md b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_deadline.md new file mode 100644 index 0000000..7482caf --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_tiled_first_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 360 | +| avg_group_latency_ms | 12.320 | +| p95_group_latency_ms | 13.765 | +| max_group_latency_ms | 109.591 | +| effective_logical_fps | 60.032 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 360 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 98 | 27.222% | 0, 5, 22, 23, 25, 26, 28, 37, 44, 45, 47, 50, ... | +| 16.67 | 7 | 1.944% | 0, 168, 180, 282, 284, 286, 287 | +| 20.00 | 4 | 1.111% | 0, 168, 180, 282 | +| 33.33 | 2 | 0.556% | 0, 180 | +| 50.00 | 2 | 0.556% | 0, 180 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.419 | 13.906 | 109.591 | +| 300-359 | 11.826 | 13.361 | 14.559 | diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_logical.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_logical.csv new file mode 100644 index 0000000..4e98d97 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_logical.csv @@ -0,0 +1,361 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,108.0060,35.4013,231707 +1,4,0,10.9750,10.4027,65901 +2,4,0,10.9728,10.4722,36886 +3,4,0,10.9579,10.2242,69404 +4,4,0,10.9348,10.2097,87864 +5,4,0,14.2452,13.6162,53700 +6,4,0,10.8207,10.3285,24415 +7,4,0,10.9919,10.4599,15407 +8,4,0,10.7757,10.2445,12151 +9,4,0,10.9168,10.4102,11449 +10,4,0,10.7351,10.1389,8599 +11,4,0,10.7795,10.2217,6107 +12,4,0,10.8705,10.2417,5132 +13,4,0,11.0273,10.4503,3880 +14,4,0,10.8975,10.4098,4001 +15,4,0,10.9452,10.0670,3860 +16,4,0,10.7491,10.2320,4045 +17,4,0,10.8366,10.2197,3955 +18,4,0,10.8073,10.2580,3721 +19,4,0,10.7868,10.2024,3748 +20,4,0,10.8729,10.2800,3386 +21,4,0,10.8702,10.2299,2761 +22,4,0,12.0916,11.0570,2750 +23,4,0,12.4162,11.3362,2836 +24,4,0,11.8058,10.1522,2977 +25,4,0,12.3495,10.5695,2960 +26,4,0,12.4740,11.3068,3010 +27,4,0,11.2551,10.1588,2978 +28,4,0,12.2995,10.2366,2889 +29,4,0,11.6023,10.2541,2914 +30,4,0,11.8117,9.6826,2847 +31,4,0,10.8698,10.2937,3111 +32,4,0,10.9450,10.4122,2714 +33,4,0,10.9104,10.3405,2843 +34,4,0,11.8727,10.2434,2633 +35,4,0,11.7417,10.8452,2659 +36,4,0,11.6744,10.1988,2696 +37,4,0,12.5361,10.3010,2728 +38,4,0,11.9910,10.1399,2772 +39,4,0,11.6581,10.1241,2740 +40,4,0,11.6775,10.1084,2809 +41,4,0,11.9832,10.6322,2679 +42,4,0,11.3992,10.2849,2865 +43,4,0,11.2878,10.3542,2612 +44,4,0,12.6655,10.4877,2626 +45,4,0,12.8962,11.3085,2693 +46,4,0,11.5033,10.5203,2708 +47,4,0,12.1732,9.9386,2765 +48,4,0,11.7759,10.0478,2645 +49,4,0,11.9961,10.0990,2733 +50,4,0,12.1568,10.4214,2667 +51,4,0,12.2228,10.3130,2647 +52,4,0,12.3582,10.3988,2659 +53,4,0,12.0746,10.4483,2757 +54,4,0,11.4707,10.5550,2656 +55,4,0,11.4784,10.6152,2594 +56,4,0,11.9855,10.3888,2603 +57,4,0,11.8523,10.2479,2605 +58,4,0,11.9551,10.3026,2610 +59,4,0,11.5292,10.5984,2641 +60,4,0,11.9633,10.1432,442009 +61,4,0,11.9652,10.3495,52997 +62,4,0,12.0760,10.2866,26956 +63,4,0,11.9552,10.5157,26939 +64,4,0,13.9020,10.3363,22402 +65,4,0,13.4132,10.4522,15271 +66,4,0,11.8010,10.1367,12647 +67,4,0,11.5422,9.8395,10161 +68,4,0,11.8082,9.9944,9695 +69,4,0,11.7784,10.1749,5893 +70,4,0,11.7812,10.0876,5590 +71,4,0,11.7885,9.9932,5226 +72,4,0,11.9915,10.3067,5095 +73,4,0,11.7776,10.2722,5164 +74,4,0,11.7187,10.0405,4634 +75,4,0,12.0511,10.1819,5338 +76,4,0,11.9345,10.4645,2984 +77,4,0,12.0027,10.0855,2918 +78,4,0,12.0508,10.3837,3051 +79,4,0,12.0412,10.2645,3217 +80,4,0,11.9653,10.1694,3680 +81,4,0,11.6071,10.0612,3433 +82,4,0,11.8933,10.6493,3891 +83,4,0,11.5486,10.3561,2978 +84,4,0,12.8697,10.2994,2906 +85,4,0,11.5723,10.6064,2925 +86,4,0,10.9169,10.3370,3487 +87,4,0,10.7918,10.2166,2969 +88,4,0,10.9239,10.2040,2822 +89,4,0,10.8737,10.2647,3027 +90,4,0,10.8931,10.4201,2708 +91,4,0,10.9650,10.2260,2735 +92,4,0,10.9154,10.3503,2688 +93,4,0,10.9343,10.3964,2954 +94,4,0,10.9968,10.2855,3013 +95,4,0,10.8963,10.2149,2878 +96,4,0,11.0135,10.3677,3036 +97,4,0,10.9265,10.3222,2909 +98,4,0,10.8139,10.2785,2598 +99,4,0,11.7117,10.3801,2609 +100,4,0,11.5507,10.4003,2615 +101,4,0,11.8449,10.7128,2652 +102,4,0,10.9317,10.3545,2667 +103,4,0,11.1660,10.6233,2728 +104,4,0,11.2773,10.5058,2632 +105,4,0,11.6375,10.1630,2620 +106,4,0,11.1094,10.4946,2603 +107,4,0,11.0601,10.4514,2633 +108,4,0,11.6605,11.0715,2885 +109,4,0,11.7508,9.8857,2631 +110,4,0,10.7945,10.2928,2679 +111,4,0,10.8540,10.2740,2594 +112,4,0,10.8469,10.2730,2610 +113,4,0,10.9215,10.2969,2618 +114,4,0,10.8365,10.3402,2639 +115,4,0,10.8923,10.1931,2683 +116,4,0,11.0045,10.3932,2662 +117,4,0,11.3955,10.7664,2669 +118,4,0,12.1055,10.6477,2661 +119,4,0,12.0610,10.1762,2767 +120,4,0,10.7138,10.0627,412099 +121,4,0,10.9185,10.3740,58619 +122,4,0,11.0707,10.4905,48033 +123,4,0,10.9963,10.4077,38505 +124,4,0,11.1518,10.6485,33624 +125,4,0,10.9491,10.4831,18519 +126,4,0,10.9819,10.3991,15662 +127,4,0,11.0047,10.4391,11727 +128,4,0,11.0705,10.5017,10164 +129,4,0,11.1743,10.6105,8732 +130,4,0,11.1496,10.6345,8017 +131,4,0,11.5846,11.0574,5177 +132,4,0,12.0175,10.1379,3438 +133,4,0,11.7917,10.0623,3236 +134,4,0,11.3238,10.7105,3208 +135,4,0,11.0995,10.5270,3684 +136,4,0,12.0258,11.0069,3691 +137,4,0,14.9805,13.3480,3794 +138,4,0,12.5913,11.3575,3974 +139,4,0,12.2710,10.9710,3178 +140,4,0,14.3633,12.5027,3070 +141,4,0,13.4074,11.8203,3397 +142,4,0,13.8004,11.5855,2792 +143,4,0,13.4641,10.5984,2888 +144,4,0,12.6929,11.1367,2885 +145,4,0,12.7874,10.8799,3092 +146,4,0,12.8842,10.8537,2712 +147,4,0,12.9052,10.9023,2692 +148,4,0,12.7210,11.0146,2781 +149,4,0,12.7500,10.7990,2731 +150,4,0,12.9235,10.9857,2815 +151,4,0,12.8174,10.7875,2761 +152,4,0,12.6455,10.5991,3174 +153,4,0,13.9848,12.9958,2599 +154,4,0,12.8588,11.2209,2594 +155,4,0,12.8425,10.9309,2600 +156,4,0,12.7599,10.8172,2646 +157,4,0,13.3555,9.5773,2717 +158,4,0,12.8897,11.1254,2764 +159,4,0,15.1678,10.7750,2916 +160,4,0,13.1948,9.1945,2625 +161,4,0,14.8220,10.3672,2618 +162,4,0,11.7152,11.0165,2617 +163,4,0,11.9536,11.0468,2801 +164,4,0,13.7251,10.6891,2641 +165,4,0,12.5149,11.2156,2631 +166,4,0,12.9384,11.1075,2755 +167,4,0,12.8667,10.7553,2594 +168,4,0,20.3471,10.4497,2611 +169,4,0,10.9479,10.3989,2613 +170,4,0,11.4744,10.6955,2654 +171,4,0,11.1145,10.5260,2706 +172,4,0,11.8996,10.2161,2658 +173,4,0,12.1859,8.8480,2713 +174,4,0,11.9289,10.5810,2681 +175,4,0,14.3105,10.5230,2588 +176,4,0,14.8700,10.6083,2584 +177,4,0,12.7562,10.5833,3726 +178,4,0,13.3981,11.1970,3913 +179,4,0,12.8145,11.2188,3241 +180,4,0,109.5915,29.5905,231707 +181,4,0,11.1816,10.6500,65901 +182,4,0,11.1161,10.5683,36886 +183,4,0,11.1009,10.5307,69404 +184,4,0,11.2378,10.6658,87864 +185,4,0,11.3866,10.8961,53700 +186,4,0,11.8275,11.0464,24415 +187,4,0,11.1697,10.6353,15407 +188,4,0,11.3271,10.8002,12151 +189,4,0,11.1925,10.6410,11449 +190,4,0,11.2575,10.6274,8599 +191,4,0,10.9945,10.4139,6107 +192,4,0,10.9864,10.3851,5132 +193,4,0,11.0084,10.4568,3880 +194,4,0,11.2771,10.7291,4001 +195,4,0,11.4712,10.9803,3860 +196,4,0,11.0849,10.4627,4045 +197,4,0,11.2351,10.6191,3955 +198,4,0,11.3170,10.7588,3721 +199,4,0,11.2026,10.6939,3748 +200,4,0,11.0213,10.4140,3386 +201,4,0,11.3076,10.7441,2761 +202,4,0,11.1111,10.5964,2750 +203,4,0,11.1486,10.5682,2836 +204,4,0,11.2174,10.7514,2977 +205,4,0,11.2034,10.7358,2960 +206,4,0,11.0508,10.4947,3010 +207,4,0,11.2697,10.5833,2978 +208,4,0,11.1242,10.5657,2889 +209,4,0,11.1977,10.6879,2914 +210,4,0,11.0076,10.5173,2847 +211,4,0,11.2895,10.7416,3111 +212,4,0,10.9988,10.4125,2714 +213,4,0,11.4783,10.7010,2843 +214,4,0,11.1675,10.5350,2633 +215,4,0,11.2134,10.5203,2659 +216,4,0,10.9733,10.4202,2696 +217,4,0,11.2227,10.4708,2728 +218,4,0,11.4942,10.6450,2772 +219,4,0,11.2548,10.6313,2740 +220,4,0,11.3260,10.6787,2809 +221,4,0,11.1221,10.5245,2679 +222,4,0,11.2690,10.6187,2865 +223,4,0,11.1565,10.5915,2612 +224,4,0,11.4591,10.8689,2626 +225,4,0,11.9989,11.1163,2693 +226,4,0,11.7814,11.1306,2708 +227,4,0,11.8060,11.1943,2765 +228,4,0,11.8055,11.0715,2645 +229,4,0,11.4734,10.9385,2733 +230,4,0,11.5025,10.9372,2667 +231,4,0,11.7029,10.8371,2647 +232,4,0,11.4965,10.7078,2659 +233,4,0,11.2876,10.6203,2757 +234,4,0,11.0988,10.4207,2656 +235,4,0,11.2752,10.6935,2594 +236,4,0,11.7935,11.0179,2603 +237,4,0,11.7587,11.0593,2605 +238,4,0,12.1112,11.3787,2610 +239,4,0,12.0408,11.1479,2641 +240,4,0,11.4471,10.9093,442009 +241,4,0,11.0716,10.3965,52997 +242,4,0,11.1860,10.5375,26956 +243,4,0,10.9503,10.4704,26939 +244,4,0,10.9804,10.4709,22402 +245,4,0,11.0185,10.5220,15271 +246,4,0,11.0207,10.4362,12647 +247,4,0,11.0365,10.4494,10161 +248,4,0,10.9412,10.3460,9695 +249,4,0,11.2740,10.6518,5893 +250,4,0,10.9915,10.3020,5590 +251,4,0,11.3817,10.6875,5226 +252,4,0,11.4265,10.7822,5095 +253,4,0,10.9948,10.4607,5164 +254,4,0,11.0167,10.4407,4634 +255,4,0,10.9619,10.4538,5338 +256,4,0,11.2487,10.6712,2984 +257,4,0,11.2187,10.6050,2918 +258,4,0,11.0932,10.4211,3051 +259,4,0,11.0361,10.5095,3217 +260,4,0,10.9475,10.3828,3680 +261,4,0,11.0469,10.4432,3433 +262,4,0,11.1767,10.6216,3891 +263,4,0,10.9245,10.2875,2978 +264,4,0,11.0147,10.4590,2906 +265,4,0,11.1043,10.5065,2925 +266,4,0,10.9051,10.3545,3487 +267,4,0,11.0851,10.5629,2969 +268,4,0,11.3380,10.8090,2822 +269,4,0,10.8397,10.3189,3027 +270,4,0,10.9298,10.4585,2708 +271,4,0,10.8415,10.3323,2735 +272,4,0,11.0142,10.5350,2688 +273,4,0,10.9875,10.4102,2954 +274,4,0,11.2274,10.5685,3013 +275,4,0,11.2769,10.7235,2878 +276,4,0,11.0655,10.5559,3036 +277,4,0,11.1088,10.5957,2909 +278,4,0,11.0889,10.5832,2598 +279,4,0,10.9318,10.4407,2609 +280,4,0,10.8310,10.2810,2615 +281,4,0,10.7051,10.2358,2652 +282,4,0,26.7036,26.2808,2667 +283,4,0,11.8419,11.4145,2728 +284,4,0,17.0752,16.6487,2632 +285,4,0,12.0147,11.4830,2620 +286,4,0,16.8155,15.9425,2603 +287,4,0,17.6632,17.2298,2633 +288,4,0,13.7636,13.4014,2885 +289,4,0,11.0831,10.6960,2631 +290,4,0,12.6122,11.2704,2679 +291,4,0,11.8978,10.2249,2594 +292,4,0,11.0887,10.4232,2610 +293,4,0,11.3523,10.7715,2618 +294,4,0,12.3213,11.6325,2639 +295,4,0,12.8893,11.1525,2683 +296,4,0,11.2861,10.2328,2662 +297,4,0,11.0805,10.4988,2669 +298,4,0,11.3178,10.7270,2661 +299,4,0,11.0420,10.5883,2767 +300,4,0,10.7900,10.2705,412099 +301,4,0,11.1432,10.6523,58619 +302,4,0,11.1015,10.6611,48033 +303,4,0,11.1172,10.5633,38505 +304,4,0,11.3057,10.5013,33624 +305,4,0,12.4605,11.6888,18519 +306,4,0,14.5595,13.3606,15662 +307,4,0,11.7737,10.0870,11727 +308,4,0,12.3900,10.9752,10164 +309,4,0,12.2537,11.1489,8732 +310,4,0,11.7710,9.8455,8017 +311,4,0,11.2226,9.9515,5177 +312,4,0,11.9903,9.9767,3438 +313,4,0,13.3594,11.8317,3236 +314,4,0,11.1620,10.1378,3208 +315,4,0,10.9689,10.3448,3684 +316,4,0,10.8832,10.1806,3691 +317,4,0,10.8048,10.2216,3794 +318,4,0,10.7518,10.1993,3974 +319,4,0,11.1873,10.3060,3178 +320,4,0,11.0147,10.2870,3070 +321,4,0,11.0897,10.4006,3397 +322,4,0,12.0847,10.4367,2792 +323,4,0,12.1141,9.5097,2888 +324,4,0,11.1488,10.2485,2885 +325,4,0,12.0772,10.0943,3092 +326,4,0,12.2746,10.2620,2712 +327,4,0,11.8391,10.6685,2692 +328,4,0,11.3020,10.4750,2781 +329,4,0,12.0485,10.0878,2731 +330,4,0,11.8066,10.0698,2815 +331,4,0,12.0667,10.2048,2761 +332,4,0,12.3207,10.6654,3174 +333,4,0,11.5773,10.3310,2599 +334,4,0,12.8801,11.5367,2594 +335,4,0,11.4568,10.2249,2600 +336,4,0,12.1184,10.8393,2646 +337,4,0,12.0049,10.3262,2717 +338,4,0,11.9745,10.5729,2764 +339,4,0,13.3836,11.5852,2916 +340,4,0,11.2241,9.8795,2625 +341,4,0,11.5965,10.3469,2618 +342,4,0,11.7937,10.0211,2617 +343,4,0,11.8722,10.5321,2801 +344,4,0,12.2019,10.6102,2641 +345,4,0,12.2780,10.2516,2631 +346,4,0,11.7806,10.0373,2755 +347,4,0,12.0028,10.2134,2594 +348,4,0,11.8255,10.5674,2611 +349,4,0,13.3836,11.7935,2613 +350,4,0,11.5452,10.2588,2654 +351,4,0,11.5959,10.2662,2706 +352,4,0,12.3780,10.2685,2658 +353,4,0,12.3683,11.1121,2713 +354,4,0,11.3139,10.3881,2681 +355,4,0,11.6629,10.2354,2594 +356,4,0,11.7271,9.7734,2594 +357,4,0,12.2520,10.9702,2599 +358,4,0,11.2720,9.9867,2615 +359,4,0,11.9033,11.0105,2631 diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.csv b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.csv new file mode 100644 index 0000000..204d7fb --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.csv @@ -0,0 +1,5 @@ +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +segment_hints_tiled_first,tiled,5120x2880,60,6,30,0,360,60.032,12.320,13.765,109.591,13.746,7,2,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.csv,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_logical.csv,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first_deadline.md,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/segment_hints_tiled_first.txt +post_tiled_4096_fallback,single,4096x2304,60,5,120,0,300,,13.383,14.918,39.634,,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.csv,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_4096_fallback.txt +post_tiled_3200_fallback,single,3200x1800,60,5,60,0,300,,11.463,11.444,60.138,,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.csv,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_3200_fallback.txt +post_tiled_2560_fallback,single,2560x1440,60,5,25,0,300,,6.106,6.307,25.864,,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.csv,,,benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/post_tiled_2560_fallback.txt diff --git a/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.md b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.md new file mode 100644 index 0000000..3e40cb7 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/summary.md @@ -0,0 +1,10 @@ +# Clean Session Encoder Probe + +| Case | P95 ms | Result | +|---|---:|---| +| `segment_hints_tiled_first` | 13.765 | pass | +| `post_tiled_4096_fallback` | 14.918 | pass | +| `post_tiled_3200_fallback` | 11.444 | pass | +| `post_tiled_2560_fallback` | 6.307 | pass | + +Decision: high-detail fallback switching remains viable after segment-hints tiled 5K60. diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/metadata.txt b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/metadata.txt new file mode 100644 index 0000000..8508b56 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/metadata.txt @@ -0,0 +1,10 @@ +timestamp=2026-05-15_1552 +duration_seconds=10 +fallback_duration_seconds=5 +clean_boot_max_minutes=15 +require_clean_boot=0 +uptime_minutes=2937 +boot_time=2026-05-13 14:55:23 +0900 +hostname=Gabriels-MacBook-Pro.local +pwd=/Users/gabriel/Development/iBridge +Darwin Gabriels-MacBook-Pro.local 23.6.0 Darwin Kernel Version 23.6.0: Mon Jul 29 21:14:30 PDT 2024; root:xnu-10063.141.2~1/RELEASE_ARM64_T6000 arm64 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.csv new file mode 100644 index 0000000..0bd6f1c --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.1520,30.7652,0.0771,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,3.1376,5.9275,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,17343,0 +2,2.8838,7.6600,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7148,0 +3,3.1550,5.9846,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12603,0 +4,3.4812,5.9203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,23082,0 +5,3.3912,5.8812,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,10524,0 +6,3.4786,6.1377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5025,0 +7,3.5161,6.0641,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2665,0 +8,3.7174,6.1340,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8940,0 +9,3.7040,5.9113,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1779,0 +10,3.7205,5.8609,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1868,0 +11,3.7457,6.0685,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1185,0 +12,3.7158,6.0975,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6852,0 +13,3.7963,6.2466,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +14,3.8222,6.2320,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +15,3.7695,5.9890,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1958,0 +16,3.7807,6.0312,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,8918,0 +17,4.0387,6.0447,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3422,0 +18,4.1613,5.9573,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2359,0 +19,4.0815,6.0492,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +20,4.2717,6.5602,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8337,0 +21,4.1448,5.9398,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1536,0 +22,4.1243,5.9592,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1511,0 +23,4.1185,6.0806,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1522,0 +24,4.5350,6.1285,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8216,0 +25,4.1428,5.9138,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1285,0 +26,4.1677,5.9503,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1044,0 +27,4.4140,6.0053,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1149,0 +28,4.1645,6.0568,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7062,0 +29,4.3593,6.2712,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1217,0 +30,4.5576,6.1355,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,1989,0 +31,4.6085,6.0910,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1717,0 +32,4.7270,6.3971,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,7332,0 +33,4.6401,6.2751,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2420,0 +34,4.8164,6.4361,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1965,0 +35,4.9866,6.4537,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1829,0 +36,4.9260,6.4153,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8571,0 +37,4.9401,6.4360,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2046,0 +38,5.2172,6.4342,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +39,3.0695,6.1799,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +40,2.9901,5.9228,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,7961,0 +41,2.9805,5.9416,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +42,3.0290,5.9258,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1300,0 +43,2.8313,5.9759,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1381,0 +44,3.4391,5.9660,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6971,0 +45,3.1633,6.1573,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1590,0 +46,3.4310,5.9686,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2462,0 +47,3.7235,6.0700,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +48,4.2342,5.9658,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,9034,0 +49,3.6874,5.8752,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3349,0 +50,4.5359,5.9415,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +51,3.2109,5.8677,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2470,0 +52,5.1435,6.0977,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8805,0 +53,4.9488,6.0837,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2621,0 +54,5.0795,6.1240,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2521,0 +55,4.8201,6.1688,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2906,0 +56,5.0977,6.1727,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9132,0 +57,4.5694,6.2440,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2559,0 +58,4.7793,6.3025,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2061,0 +59,5.0767,6.8415,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2115,0 +60,4.8354,6.5360,0.0566,0.0000,0,0,0.0000,0,0.0000,0,1,0,119347,0 +61,5.0027,6.9700,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,15588,0 +62,4.9682,6.4744,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17884,0 +63,4.9509,6.5838,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,11287,0 +64,4.9651,6.5204,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14502,0 +65,4.9279,6.5715,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5992,0 +66,5.1505,6.9473,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,4320,0 +67,5.0623,6.5423,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3453,0 +68,4.7328,6.6915,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,9003,0 +69,4.5753,6.6419,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,802,0 +70,4.5015,6.5595,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,800,0 +71,4.4649,7.6097,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,905,0 +72,4.6927,6.9809,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,7981,0 +73,4.1940,6.1322,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,799,0 +74,3.7032,6.2486,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,953,0 +75,3.0580,6.0933,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +76,2.9237,6.0036,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6166,0 +77,3.2741,6.2892,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +78,3.0619,5.8750,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1704,0 +79,3.2696,5.8396,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +80,3.5862,6.0435,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8085,0 +81,3.1508,6.1166,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +82,2.8286,5.8350,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,935,0 +83,3.0968,5.9060,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,979,0 +84,3.0271,6.1230,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,8303,0 +85,3.6752,6.0330,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1034,0 +86,4.2858,6.0796,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,878,0 +87,5.2143,6.0788,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,884,0 +88,5.1849,6.0750,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,8164,0 +89,5.0696,6.2882,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,862,0 +90,4.8953,6.0867,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +91,4.7169,6.1031,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +92,4.8368,6.3597,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,6509,0 +93,4.9794,6.7256,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +94,4.3723,5.9544,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1105,0 +95,3.3653,6.1135,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1043,0 +96,3.1199,6.1242,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,22161,0 +97,3.0695,6.2941,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2391,0 +98,3.0287,5.8464,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1101,0 +99,3.1284,6.0722,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +100,3.2135,6.1996,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7662,0 +101,3.1593,6.1011,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1930,0 +102,2.9793,5.8832,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +103,2.8952,5.9070,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +104,3.6810,5.9686,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7559,0 +105,3.3053,6.1524,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,865,0 +106,3.7081,5.9081,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1728,0 +107,3.2296,6.3032,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,918,0 +108,3.7690,6.0770,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6497,0 +109,3.7640,6.1344,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,854,0 +110,3.0684,5.8712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1228,0 +111,2.8978,5.9858,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1131,0 +112,3.2320,5.8569,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,8165,0 +113,2.9628,6.0429,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +114,3.2766,6.0388,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1289,0 +115,3.4217,6.0001,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1273,0 +116,4.1209,6.0578,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8367,0 +117,4.4856,5.9124,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +118,4.4387,6.1176,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +119,4.4643,6.0457,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +120,4.4710,5.8684,0.0400,0.0000,0,0,0.0000,0,0.0000,0,1,0,106449,0 +121,4.5878,6.0768,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,16792,0 +122,4.5967,6.1164,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6111,0 +123,4.6241,6.0875,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6099,0 +124,4.7405,6.5729,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11820,0 +125,5.0022,6.2681,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3761,0 +126,4.6295,6.2800,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,4311,0 +127,4.3906,6.0898,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,3567,0 +128,3.9870,6.2657,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8140,0 +129,4.1428,6.3379,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2336,0 +130,4.1525,6.1359,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +131,4.1285,5.9723,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1540,0 +132,4.1190,5.9927,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7697,0 +133,4.1374,5.9485,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1818,0 +134,4.2085,6.0255,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,793,0 +135,4.2705,5.9943,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,844,0 +136,4.3972,6.1365,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7711,0 +137,4.5138,6.0810,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +138,4.4561,5.9420,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,888,0 +139,4.4571,6.0277,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +140,4.7480,6.2048,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6701,0 +141,4.5967,6.2488,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,845,0 +142,4.5997,5.9667,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1350,0 +143,4.7725,6.5134,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +144,4.6419,6.6293,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,8280,0 +145,4.6688,6.6029,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2829,0 +146,4.6330,6.5302,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +147,4.6809,6.5308,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +148,4.6992,6.6878,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,8289,0 +149,4.7207,6.5573,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1261,0 +150,4.7106,6.7173,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1296,0 +151,4.5524,6.8003,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +152,4.3910,6.5181,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,8230,0 +153,4.4280,6.5093,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1398,0 +154,4.4170,6.1341,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1047,0 +155,4.0333,6.1060,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1191,0 +156,4.1998,6.3011,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7208,0 +157,4.2751,6.3994,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +158,4.2059,6.0810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +159,4.0953,6.1691,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2051,0 +160,4.0408,5.8590,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7773,0 +161,3.0856,5.9335,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2843,0 +162,3.2402,6.2434,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2318,0 +163,3.0800,6.0672,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2123,0 +164,2.8779,6.0723,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +165,3.0489,6.0628,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2357,0 +166,4.5710,5.9997,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2350,0 +167,3.1442,5.8189,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2646,0 +168,5.0708,5.9534,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8167,0 +169,4.8164,5.8838,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +170,3.3065,6.1863,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +171,4.6233,6.1611,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1836,0 +172,4.6303,5.9680,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,7081,0 +173,4.6181,6.2003,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1561,0 +174,3.4634,5.9010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3163,0 +175,3.1386,6.1963,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2381,0 +176,3.0997,6.0056,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,9507,0 +177,3.8281,6.1088,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4152,0 +178,3.0688,6.2340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +179,3.5871,5.9374,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2863,0 +180,2.9309,5.8884,0.0498,0.0000,0,0,0.0000,0,0.0000,0,1,0,122025,0 +181,3.0160,5.8962,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,17106,0 +182,3.1895,10.7780,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19495,0 +183,3.1077,15.6603,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8772,0 +184,3.0314,15.6850,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14207,0 +185,3.0875,15.7255,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,6640,0 +186,4.4932,15.8291,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3744,0 +187,3.7460,16.0682,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2817,0 +188,3.9111,15.8022,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,9395,0 +189,2.9595,16.5804,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1752,0 +190,3.0217,15.8308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2141,0 +191,3.1546,15.7617,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +192,3.0200,15.7939,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22620,0 +193,2.9514,15.8288,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3151,0 +194,3.0775,16.1140,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1694,0 +195,2.9011,15.7329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1396,0 +196,2.9447,15.6920,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,8404,0 +197,6.9693,16.0178,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1446,0 +198,6.2632,16.0484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1233,0 +199,5.8663,16.0277,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1410,0 +200,3.4390,16.5791,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7634,0 +201,4.2542,16.3483,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,964,0 +202,3.0646,16.1392,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1259,0 +203,3.2182,15.7318,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +204,3.0712,15.8757,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,6597,0 +205,3.0273,16.4801,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1023,0 +206,3.3381,15.7157,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2185,0 +207,5.3353,15.6723,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1763,0 +208,5.1085,16.3171,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,8547,0 +209,4.2545,16.2474,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3281,0 +210,5.3274,16.2413,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1905,0 +211,4.8862,15.9366,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +212,4.7565,15.9900,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8369,0 +213,3.1012,16.0452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1939,0 +214,2.9227,16.0361,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2001,0 +215,3.5228,15.9772,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +216,2.9866,15.8640,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8641,0 +217,2.9407,15.6737,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2056,0 +218,2.9098,15.8954,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +219,2.8802,15.7170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +220,2.9364,15.8884,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,7535,0 +221,2.9768,16.6387,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1919,0 +222,3.0093,15.8402,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,3098,0 +223,3.1727,16.0565,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3012,0 +224,3.0239,15.8780,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,8546,0 +225,2.9203,16.2327,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3520,0 +226,2.9514,15.9640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2837,0 +227,4.5135,15.9814,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2677,0 +228,4.6127,15.9949,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9054,0 +229,3.8194,15.8071,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2878,0 +230,5.1206,15.8534,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +231,5.0559,15.9624,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2858,0 +232,5.1774,16.1851,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,8543,0 +233,5.0622,16.1375,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2133,0 +234,5.3998,16.5957,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1932,0 +235,5.0886,17.0668,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2217,0 +236,4.7860,16.5558,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7517,0 +237,4.8915,17.1271,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2058,0 +238,3.5858,18.5623,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4140,0 +239,4.7558,16.5167,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2891,0 +240,4.8516,16.0705,0.0510,0.0000,0,0,0.0000,0,0.0000,0,1,0,96632,0 +241,4.9141,16.3002,0.0171,0.0000,0,0,0.0000,0,0.0000,0,0,0,18924,0 +242,4.8130,16.6017,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,10045,0 +243,5.0363,16.3774,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7222,0 +244,4.9280,16.9003,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12148,0 +245,5.0803,16.5789,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3865,0 +246,4.8795,16.2040,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +247,3.9017,15.8594,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2090,0 +248,2.9962,15.7982,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +249,2.9958,15.7383,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +250,2.9740,15.9565,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,840,0 +251,2.9376,15.7602,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,920,0 +252,3.5547,15.6575,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,6491,0 +253,3.0260,16.4352,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +254,3.0398,15.9616,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1312,0 +255,2.9802,15.7262,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1181,0 +256,3.2640,15.7072,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,20204,0 +257,3.5769,15.8444,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1535,0 +258,2.8727,15.6759,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1019,0 +259,3.8947,15.8734,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,923,0 +260,4.1036,15.8170,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,7410,0 +261,4.1594,15.8308,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1966,0 +262,4.0914,15.7727,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +263,4.0437,15.9544,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +264,4.1294,15.8918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,7705,0 +265,4.3632,15.8330,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +266,4.2421,15.9412,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,949,0 +267,4.0747,15.7927,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1832,0 +268,3.0560,15.9889,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6537,0 +269,2.9509,16.5297,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +270,2.9495,15.7564,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1001,0 +271,3.0340,15.8072,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1005,0 +272,3.4155,15.8440,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8851,0 +273,2.9565,15.7731,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +274,2.9176,15.6425,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1056,0 +275,4.5011,15.9739,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +276,4.5243,15.8827,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,8237,0 +277,4.5426,15.8085,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1443,0 +278,4.4722,15.8720,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +279,4.5130,15.9197,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +280,4.5419,15.8002,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,8402,0 +281,4.5163,15.9340,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1509,0 +282,4.8393,16.4175,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1031,0 +283,4.8192,16.2070,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1057,0 +284,3.6654,15.8928,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,7216,0 +285,3.4561,16.9112,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1090,0 +286,2.9947,15.9133,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1838,0 +287,3.4681,15.8905,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +288,3.5114,15.9712,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,6961,0 +289,3.5430,15.9380,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +290,3.2020,15.9992,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1874,0 +291,5.1316,15.8687,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1391,0 +292,5.1432,15.9003,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,8709,0 +293,5.0571,15.9664,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2190,0 +294,5.2323,16.1001,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1841,0 +295,5.2655,16.1113,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2086,0 +296,4.7269,16.0344,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,8007,0 +297,4.5719,15.8733,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +298,4.6782,16.1728,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1207,0 +299,4.6529,15.9972,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1286,0 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.txt b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.txt new file mode 100644 index 0000000..2bd6715 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.009 +avg_encode_latency_ms=10.122 +p95_encode_latency_ms=16.482 +max_encode_latency_ms=30.765 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=1726537 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.csv new file mode 100644 index 0000000..54e04f3 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.5460,59.0985,0.0337,0.0000,0,0,0.0000,0,0.0000,0,1,0,90693,0 +1,4.6389,37.0643,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,33357,0 +2,4.6089,39.9517,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,17305,0 +3,7.3055,30.1378,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,26405,0 +4,5.9289,23.4370,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,41778,0 +5,4.7092,14.1213,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,23133,0 +6,4.8497,12.1957,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,8457,0 +7,5.0067,11.8226,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,4764,0 +8,4.6086,11.6695,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,15756,0 +9,4.4235,11.4393,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3289,0 +10,4.4126,11.4290,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3719,0 +11,4.4722,11.8548,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2494,0 +12,4.5472,12.2199,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,14706,0 +13,4.4402,11.6591,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4041,0 +14,4.4584,11.6595,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3899,0 +15,4.6014,11.7459,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3819,0 +16,5.0791,11.8996,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,14869,0 +17,5.3448,11.3687,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4305,0 +18,5.3633,11.7010,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3429,0 +19,5.5894,11.5414,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2602,0 +20,5.5506,11.4362,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12816,0 +21,5.3788,11.7117,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +22,5.0304,12.2124,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1709,0 +23,4.5898,11.8743,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +24,5.1966,11.5344,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,12365,0 +25,4.5126,11.7017,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1589,0 +26,4.8592,11.4871,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1405,0 +27,5.2922,11.9837,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +28,4.8885,12.0188,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12458,0 +29,4.6560,11.8047,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +30,5.1360,11.6701,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +31,5.1037,11.8325,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1917,0 +32,5.8224,11.8812,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,11420,0 +33,5.3545,11.1677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +34,5.7083,11.7904,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +35,4.8792,12.2082,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +36,4.6490,11.8102,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13744,0 +37,4.9506,11.5089,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1574,0 +38,5.6905,11.8747,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1524,0 +39,5.6674,12.0555,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +40,5.7218,12.0572,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13192,0 +41,5.4034,11.6008,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1525,0 +42,5.4300,11.4802,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1576,0 +43,5.2434,11.6921,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1577,0 +44,5.2371,12.1398,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,12022,0 +45,4.8197,11.6734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2036,0 +46,4.7227,11.5198,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +47,4.6832,11.5642,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +48,5.3600,12.0261,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13914,0 +49,4.5593,11.6358,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2537,0 +50,4.3397,11.6630,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +51,4.4165,11.6887,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +52,4.9469,11.6975,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,14057,0 +53,4.8150,12.0480,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 +54,4.8335,12.1337,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1879,0 +55,4.7491,11.7027,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1885,0 +56,4.7314,11.3632,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12868,0 +57,4.6758,12.1376,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1980,0 +58,5.0016,11.8451,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1810,0 +59,4.9285,11.4484,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +60,5.0388,11.8620,0.0488,0.0000,0,0,0.0000,0,0.0000,0,1,0,207878,0 +61,4.8454,12.1979,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,17948,0 +62,4.8976,11.6676,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,20836,0 +63,4.8164,11.7806,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,15768,0 +64,4.8715,11.4260,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,24247,0 +65,5.0995,11.8332,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,11212,0 +66,4.5549,11.6041,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,7185,0 +67,4.4036,11.7275,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2282,0 +68,4.8820,11.7978,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12714,0 +69,4.4945,12.1138,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1530,0 +70,4.5691,11.8029,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2020,0 +71,4.5526,11.9843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1993,0 +72,5.1770,11.7918,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13454,0 +73,5.3502,11.3960,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1631,0 +74,5.0360,11.8788,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1558,0 +75,5.1241,11.8048,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +76,4.9255,12.1077,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,12080,0 +77,4.9058,11.6263,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2923,0 +78,5.0955,11.8396,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1421,0 +79,4.9075,12.1064,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +80,4.7441,11.6882,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,14283,0 +81,4.4943,11.3572,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2727,0 +82,4.6486,11.8628,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1975,0 +83,4.4501,11.5192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1611,0 +84,4.6035,11.8818,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,14178,0 +85,4.4528,11.7175,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +86,4.6924,11.9639,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1580,0 +87,4.5899,11.4510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1491,0 +88,4.6114,11.4853,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,12751,0 +89,4.5096,11.9406,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1661,0 +90,4.5454,11.5600,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1494,0 +91,5.4322,11.8493,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1495,0 +92,5.6556,12.0448,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12518,0 +93,5.4340,11.4345,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2043,0 +94,5.5749,11.5580,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1837,0 +95,5.4632,11.4601,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +96,5.4082,11.7302,0.0540,0.0000,0,0,0.0000,0,0.0000,0,0,0,35268,0 +97,5.6058,11.8525,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1936,0 +98,5.4750,11.6433,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +99,5.4078,11.8368,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +100,4.5572,11.7906,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,13723,0 +101,4.6360,11.9464,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1470,0 +102,4.6873,11.5781,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1517,0 +103,4.8679,12.1856,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1499,0 +104,4.7117,11.7374,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13197,0 +105,4.4139,11.6490,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1546,0 +106,4.5435,11.6557,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1488,0 +107,4.4760,11.5608,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 +108,4.9361,11.9378,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,12006,0 +109,4.9738,12.0099,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1809,0 +110,4.5959,11.8634,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1570,0 +111,4.9056,11.8019,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1588,0 +112,4.4694,11.7662,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13796,0 +113,4.4803,11.6431,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2094,0 +114,4.5524,11.7218,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1680,0 +115,4.4626,11.8543,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1600,0 +116,4.6074,11.6598,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13929,0 +117,5.4369,11.9439,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1640,0 +118,5.9642,11.7460,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +119,5.6827,11.4542,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1753,0 +120,5.3158,11.6595,0.0434,0.0000,0,0,0.0000,0,0.0000,0,1,0,205935,0 +121,5.2898,11.6344,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,15333,0 +122,5.2392,11.6200,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,14018,0 +123,5.3365,11.4320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12086,0 +124,5.2610,12.1357,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,18993,0 +125,5.3494,11.6430,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,7924,0 +126,5.3715,11.5723,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5805,0 +127,5.2758,11.5160,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3839,0 +128,5.3087,11.5625,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13229,0 +129,5.7523,11.5098,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,4210,0 +130,5.5855,11.6013,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3466,0 +131,5.4010,11.4080,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1662,0 +132,5.5186,11.5920,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,13684,0 +133,5.3960,11.5970,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +134,5.7392,11.3170,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1406,0 +135,5.6582,11.5836,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1364,0 +136,5.7657,11.4717,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13089,0 +137,5.5362,11.4898,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1632,0 +138,5.4612,11.2945,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1331,0 +139,5.2408,11.2866,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1316,0 +140,5.2190,11.7967,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12838,0 +141,5.5720,11.2405,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1432,0 +142,5.5195,11.3811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1567,0 +143,5.4406,11.3085,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1634,0 +144,5.7074,11.2217,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13774,0 +145,5.8851,11.2865,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +146,5.5470,11.4246,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1771,0 +147,4.3983,11.5010,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1573,0 +148,4.5810,11.3864,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12817,0 +149,4.4082,12.0130,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +150,4.3873,11.5017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1629,0 +151,4.7587,11.3726,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1497,0 +152,4.4348,11.2150,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12342,0 +153,4.6963,11.3684,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1466,0 +154,4.8118,11.2548,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1404,0 +155,6.0198,11.3405,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1355,0 +156,5.8907,11.6099,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12461,0 +157,5.6627,11.2699,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1549,0 +158,5.7027,11.8975,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1551,0 +159,5.7382,11.3312,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1687,0 +160,5.6969,11.4092,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11548,0 +161,5.6588,11.5275,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1987,0 +162,4.7245,11.7401,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1489,0 +163,5.2827,11.6277,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1468,0 +164,5.1776,11.4414,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13654,0 +165,5.1582,11.5712,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1401,0 +166,5.5744,11.5015,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1412,0 +167,5.5250,11.6196,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1417,0 +168,5.5410,11.4272,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13103,0 +169,5.7475,11.9735,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1529,0 +170,5.3855,11.4060,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1413,0 +171,5.6533,11.3897,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1415,0 +172,5.6532,11.7081,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12883,0 +173,5.6508,11.3465,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1500,0 +174,5.6048,11.2628,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1559,0 +175,5.5601,11.2827,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1626,0 +176,5.5383,11.5324,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,13481,0 +177,5.6095,11.4102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2212,0 +178,5.6114,11.3222,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1593,0 +179,5.3890,11.6180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1595,0 +180,5.6541,11.4782,0.0500,0.0000,0,0,0.0000,0,0.0000,0,1,0,241418,0 +181,5.7858,11.4883,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,19215,0 +182,5.6124,18.3032,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,23656,0 +183,5.6920,23.0993,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,19003,0 +184,5.6444,25.4269,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,26245,0 +185,5.6057,27.6873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11018,0 +186,5.5690,29.9668,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5102,0 +187,5.4667,33.5450,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4147,0 +188,4.6474,35.5070,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,13635,0 +189,4.6997,36.1577,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,3295,0 +190,5.2045,37.9193,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3129,0 +191,4.6527,39.6706,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2966,0 +192,5.3188,39.7196,0.0125,0.0000,0,0,0.0000,0,0.0000,0,0,0,36424,0 +193,4.6752,40.7957,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3407,0 +194,5.3249,40.3588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2564,0 +195,4.5314,41.3957,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +196,4.4874,40.9729,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,13653,0 +197,4.6153,41.3715,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1465,0 +198,4.3871,41.5141,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1400,0 +199,4.6028,41.4312,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1456,0 +200,4.4578,41.0187,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,13125,0 +201,4.4138,41.2738,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1601,0 +202,4.4962,43.0342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1372,0 +203,4.4447,41.3230,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +204,4.5729,41.6498,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,12858,0 +205,4.5503,41.7796,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1433,0 +206,4.7329,43.6356,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1439,0 +207,4.8050,40.8392,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +208,4.7006,41.5448,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13636,0 +209,4.5213,41.7749,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2275,0 +210,4.5122,41.7097,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +211,4.6798,41.8415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1553,0 +212,4.6472,41.8768,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,12678,0 +213,5.4691,40.9929,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1719,0 +214,4.9360,41.7233,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1698,0 +215,5.2322,41.3202,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1780,0 +216,5.2285,41.8869,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,12452,0 +217,4.8929,42.0594,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1671,0 +218,5.4071,41.6412,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1556,0 +219,5.2378,41.7530,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1603,0 +220,5.1427,42.2562,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,12502,0 +221,5.2105,41.9364,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1914,0 +222,5.3259,42.2863,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +223,5.4269,41.6931,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1859,0 +224,5.0769,41.5400,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,11650,0 +225,4.6622,41.5688,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2099,0 +226,4.3954,41.5170,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2021,0 +227,4.5408,42.1678,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1639,0 +228,4.4651,41.9791,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,13841,0 +229,5.6840,40.9823,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1767,0 +230,5.2238,41.5684,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1813,0 +231,4.9449,41.4467,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1825,0 +232,4.7923,41.6840,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,13418,0 +233,4.6673,41.5894,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1946,0 +234,4.9777,41.3094,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +235,4.6094,41.7712,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1797,0 +236,4.7363,42.0221,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,13117,0 +237,4.6762,41.9094,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2009,0 +238,4.5294,42.0036,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,1978,0 +239,4.6174,41.7656,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2030,0 +240,4.6185,41.5518,0.0278,0.0000,0,0,0.0000,0,0.0000,0,1,0,202606,0 +241,4.6798,41.4901,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,18838,0 +242,4.6905,41.5248,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,22006,0 +243,4.7860,41.4551,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,16616,0 +244,4.7770,41.7580,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,22139,0 +245,4.6554,41.7646,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,5492,0 +246,4.7199,41.7490,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,3374,0 +247,4.7781,41.6581,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2783,0 +248,4.6320,42.0724,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,13534,0 +249,4.6973,41.8205,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,2293,0 +250,4.6984,41.8835,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1624,0 +251,4.6991,41.8678,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +252,4.6213,43.0452,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,12484,0 +253,4.9944,42.2016,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1891,0 +254,5.1245,41.9289,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1807,0 +255,4.7897,42.1576,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1770,0 +256,4.5937,44.2318,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,34556,0 +257,4.7876,42.7070,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2549,0 +258,10.7186,36.6063,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1861,0 +259,4.6492,43.6538,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1452,0 +260,4.7854,41.1856,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,13717,0 +261,4.3974,41.9930,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1379,0 +262,4.6301,40.5596,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1471,0 +263,4.8573,39.9424,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1423,0 +264,4.3617,42.8211,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,13183,0 +265,4.7846,43.2505,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1422,0 +266,5.2008,41.8471,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +267,5.5049,39.6692,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1374,0 +268,5.2497,40.9115,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,11975,0 +269,5.2328,43.2864,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +270,5.2597,42.6116,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1451,0 +271,5.4112,40.4933,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1512,0 +272,5.2359,41.5100,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,13683,0 +273,5.6549,42.4057,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2374,0 +274,5.1356,40.8972,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1647,0 +275,4.5563,40.9142,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1472,0 +276,4.4484,41.4625,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,13913,0 +277,4.4583,43.5985,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1519,0 +278,4.8626,40.6877,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1564,0 +279,4.4953,40.8688,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1479,0 +280,4.3965,40.1213,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12510,0 +281,4.3843,43.0758,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1486,0 +282,4.5811,43.0114,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1449,0 +283,4.5892,40.6959,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +284,4.6487,42.1520,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,12528,0 +285,4.7156,41.0372,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1699,0 +286,4.8234,40.7508,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1641,0 +287,4.6005,43.2080,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1714,0 +288,5.0585,42.5760,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,11401,0 +289,4.7475,41.2717,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +290,4.4680,41.7494,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +291,5.1867,40.7888,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1493,0 +292,4.6713,41.9622,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,13732,0 +293,4.5312,42.0200,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1504,0 +294,4.8697,41.6610,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1520,0 +295,4.6490,41.7939,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1531,0 +296,4.5291,41.7303,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13210,0 +297,4.4204,40.2291,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1457,0 +298,4.9776,37.4366,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1514,0 +299,4.4210,43.9449,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.txt b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.txt new file mode 100644 index 0000000..51d3c23 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.023 +avg_encode_latency_ms=23.536 +p95_encode_latency_ms=42.616 +max_encode_latency_ms=59.099 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2756134 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.csv new file mode 100644 index 0000000..d888f41 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.5433,41.3757,0.0409,0.0000,0,0,0.0000,0,0.0000,0,1,0,153496,0 +1,7.8095,12.5949,0.0147,0.0000,0,0,0.0000,0,0.0000,0,0,0,56279,0 +2,7.5274,15.8795,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,43034,0 +3,7.3990,19.4473,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,48044,0 +4,7.1473,23.2581,0.0145,0.0000,0,0,0.0000,0,0.0000,0,0,0,70342,0 +5,7.2821,26.5004,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,37020,0 +6,7.5898,19.9033,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,8676,0 +7,7.3202,15.5364,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,6603,0 +8,7.5931,12.5481,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,29933,0 +9,7.6855,12.5940,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4169,0 +10,7.7037,12.5854,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3523,0 +11,7.7442,12.5263,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3430,0 +12,7.8376,12.8256,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,23344,0 +13,8.0188,13.1648,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3946,0 +14,7.7247,12.4974,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2472,0 +15,7.7388,12.7719,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2688,0 +16,7.8516,12.5188,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,20827,0 +17,7.8213,12.6480,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5522,0 +18,7.7887,12.5679,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3458,0 +19,7.7749,12.7298,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2730,0 +20,7.9112,12.7652,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,20017,0 +21,8.0817,12.8203,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2136,0 +22,7.6701,12.5665,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2082,0 +23,7.8391,12.6065,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2006,0 +24,7.9512,12.5506,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19546,0 +25,7.9437,12.5870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1738,0 +26,7.9803,12.6439,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1857,0 +27,8.2322,12.8704,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1743,0 +28,7.9868,12.6701,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,19791,0 +29,8.0836,13.1376,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1744,0 +30,7.8968,12.9345,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +31,8.1853,12.7971,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2221,0 +32,7.9023,12.7948,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,17769,0 +33,7.9197,12.5942,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3165,0 +34,7.8083,12.6638,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2219,0 +35,7.8580,12.4872,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1833,0 +36,8.0047,12.8446,0.0143,0.0000,0,0,0.0000,0,0.0000,0,0,0,21873,0 +37,7.5983,12.6539,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1756,0 +38,7.6984,12.7429,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +39,7.8936,12.6399,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +40,7.8358,12.5077,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,20932,0 +41,7.8558,12.8105,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1826,0 +42,7.8098,12.6602,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1848,0 +43,7.7495,12.6580,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1988,0 +44,7.8009,12.5932,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,19065,0 +45,7.7726,13.1445,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1967,0 +46,7.8050,12.5407,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2302,0 +47,7.9386,12.5514,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2171,0 +48,7.8741,12.6409,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21841,0 +49,8.2307,12.7202,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3735,0 +50,7.9879,12.5790,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +51,8.2112,12.6456,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +52,7.9662,12.7246,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22514,0 +53,7.9182,12.6763,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2116,0 +54,8.0518,12.4414,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2159,0 +55,7.8703,12.8108,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2147,0 +56,7.9805,12.5045,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,22263,0 +57,7.8714,12.5189,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2072,0 +58,8.0325,12.7784,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2054,0 +59,7.8332,12.6295,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2140,0 +60,7.8124,12.3644,0.0769,0.0000,0,0,0.0000,0,0.0000,0,1,0,426470,0 +61,7.8194,13.1789,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,26158,0 +62,7.9509,12.6612,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,38640,0 +63,7.9726,12.5562,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,32855,0 +64,7.7924,12.5276,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,49433,0 +65,7.7486,12.4918,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,19009,0 +66,7.9785,12.5586,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,11962,0 +67,7.7686,12.5120,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3507,0 +68,7.9880,12.6462,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,25509,0 +69,7.8332,12.5094,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,2206,0 +70,8.0166,12.7851,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,2835,0 +71,7.3466,12.5672,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1805,0 +72,8.0721,12.7057,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,20918,0 +73,7.7685,12.7550,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1702,0 +74,7.4911,12.8030,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1801,0 +75,7.5768,12.8333,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +76,7.8488,12.6898,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,19054,0 +77,7.7150,13.4451,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1977,0 +78,7.4504,12.9103,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,2985,0 +79,7.5438,12.7722,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1811,0 +80,7.2810,12.6527,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,21660,0 +81,7.3369,12.5474,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3440,0 +82,7.3715,12.4863,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2018,0 +83,7.4902,12.7878,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +84,7.4665,12.6396,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,22400,0 +85,7.6783,12.8947,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2010,0 +86,7.4309,12.7483,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +87,7.4023,12.9812,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,1737,0 +88,7.3764,12.5245,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22046,0 +89,7.4662,12.4847,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1739,0 +90,7.5127,12.6610,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1700,0 +91,7.7941,12.6760,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1762,0 +92,7.5159,12.9691,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,19854,0 +93,7.3282,13.6156,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1817,0 +94,7.4351,12.5492,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2433,0 +95,7.4493,12.7480,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2337,0 +96,7.3991,12.6244,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,57102,0 +97,7.4088,12.4859,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,3006,0 +98,7.6548,12.9711,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +99,7.5670,12.8444,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1732,0 +100,7.7834,12.6372,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21822,0 +101,7.5138,12.8055,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1754,0 +102,7.6497,12.4974,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +103,7.6766,12.6530,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1858,0 +104,7.2993,12.5909,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,20939,0 +105,7.4832,12.7028,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +106,7.4623,12.7878,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1800,0 +107,7.5953,12.5203,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +108,7.5538,12.5002,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,19051,0 +109,7.5427,13.1046,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1957,0 +110,7.8874,12.6619,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2201,0 +111,8.1004,12.5804,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1916,0 +112,8.1394,12.7044,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21572,0 +113,7.8996,12.6590,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2927,0 +114,8.0052,12.6685,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1996,0 +115,7.8716,12.7759,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1961,0 +116,8.1918,12.9461,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22407,0 +117,8.1028,12.8543,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +118,7.5623,12.7592,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2012,0 +119,7.4472,12.5252,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2102,0 +120,7.5107,12.4867,0.0638,0.0000,0,0,0.0000,0,0.0000,0,1,0,362034,0 +121,7.5628,12.6762,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,20154,0 +122,7.8165,12.5202,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,27874,0 +123,7.5567,12.6263,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,16829,0 +124,7.5896,12.7723,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,39597,0 +125,7.4999,13.1809,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,12604,0 +126,7.8527,12.7791,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,8328,0 +127,7.3917,12.8763,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,6339,0 +128,7.4952,12.7461,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,25094,0 +129,7.3118,12.8551,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6364,0 +130,7.3805,12.8675,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +131,7.6860,12.5769,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2031,0 +132,7.6764,12.5358,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21774,0 +133,7.7914,12.7063,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1644,0 +134,7.9577,12.5563,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1645,0 +135,7.7746,12.8807,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1726,0 +136,7.9335,12.6171,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20852,0 +137,7.7192,12.7534,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1646,0 +138,7.6343,12.5683,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +139,7.8382,13.6006,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1758,0 +140,7.6848,12.5487,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,18960,0 +141,7.5172,13.3570,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1691,0 +142,7.3551,12.5881,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1941,0 +143,7.2016,12.4576,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +144,7.4279,12.5410,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21352,0 +145,7.7482,12.6036,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3252,0 +146,7.6755,12.6090,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +147,7.8961,12.6201,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1735,0 +148,7.9154,12.6051,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,22296,0 +149,7.7820,12.4879,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1681,0 +150,7.5576,12.5128,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1708,0 +151,7.3849,12.6276,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1689,0 +152,7.3077,12.5834,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,21997,0 +153,7.3378,12.6660,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +154,7.4080,12.5162,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +155,7.2703,12.7026,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1705,0 +156,7.3492,12.7165,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19788,0 +157,7.4311,13.0720,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +158,7.7797,12.7707,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1865,0 +159,7.3875,12.6640,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1945,0 +160,7.3571,12.6413,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,17344,0 +161,7.5170,12.7221,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2276,0 +162,7.3185,12.6012,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1907,0 +163,7.3051,12.5962,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1781,0 +164,7.3055,12.7055,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,21856,0 +165,7.3900,12.8206,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1772,0 +166,7.3571,12.7323,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1824,0 +167,7.3386,12.5415,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1854,0 +168,7.8550,12.7260,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,20992,0 +169,7.7294,12.7146,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1820,0 +170,7.7645,12.5775,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +171,7.5852,12.6850,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1843,0 +172,7.4577,12.6991,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19057,0 +173,7.4383,13.1439,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1943,0 +174,7.4665,12.4516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2039,0 +175,7.6523,12.8475,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1938,0 +176,7.9767,12.6949,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,21562,0 +177,8.1235,12.5392,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,2439,0 +178,8.0843,12.6693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2117,0 +179,8.0844,12.5753,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2004,0 +180,8.0111,12.4831,0.0379,0.0000,0,0,0.0000,0,0.0000,0,1,0,373696,0 +181,7.9063,12.5906,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,18464,0 +182,7.8896,23.5884,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,36667,0 +183,7.6873,29.6219,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,44395,0 +184,7.8297,35.3073,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,51329,0 +185,7.6756,39.0026,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,17546,0 +186,7.9059,41.3757,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,10833,0 +187,7.9283,42.9212,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,8362,0 +188,7.7985,44.2026,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,25863,0 +189,7.9181,45.4905,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,5775,0 +190,7.9393,45.6638,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,6599,0 +191,7.9928,45.7024,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,6077,0 +192,8.0982,45.7927,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,66138,0 +193,8.0062,45.9875,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,5866,0 +194,7.9633,46.0027,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,4622,0 +195,7.9635,46.0550,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +196,7.6750,46.3066,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21780,0 +197,7.7566,45.5408,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1642,0 +198,7.4850,46.1660,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1715,0 +199,7.3906,47.6166,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +200,7.7974,45.5778,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,20963,0 +201,7.6571,46.3217,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1633,0 +202,7.8119,46.0062,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1674,0 +203,8.0145,45.8537,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1663,0 +204,7.9330,45.9253,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,18957,0 +205,7.5765,47.0363,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1828,0 +206,7.6306,46.6052,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2267,0 +207,7.6896,46.5205,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1666,0 +208,7.5628,46.6663,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,21245,0 +209,7.6962,46.2166,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2711,0 +210,7.5707,46.2716,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1768,0 +211,7.4553,46.2709,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1748,0 +212,7.6433,46.1631,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22379,0 +213,7.5275,46.3621,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +214,7.6392,46.3922,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1842,0 +215,7.6413,46.0335,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1720,0 +216,8.0102,45.8805,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21982,0 +217,7.7578,47.3875,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1846,0 +218,7.8581,45.7886,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1899,0 +219,7.7411,46.3114,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +220,7.7793,46.1223,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,19908,0 +221,7.7761,46.8639,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1934,0 +222,7.6461,46.7719,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2334,0 +223,7.5407,46.5815,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2250,0 +224,7.5582,46.5455,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,17711,0 +225,7.6263,46.5292,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2627,0 +226,7.6904,46.3108,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2271,0 +227,7.8210,46.3606,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1927,0 +228,7.7860,46.2479,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,21937,0 +229,8.0785,45.9398,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +230,7.6835,46.3812,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +231,7.8942,46.0248,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2125,0 +232,7.9992,45.9877,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,21121,0 +233,7.6128,46.3015,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1937,0 +234,7.7024,46.1655,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,2095,0 +235,7.5722,46.3492,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2156,0 +236,7.5448,46.2767,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,19240,0 +237,7.6252,46.7178,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2367,0 +238,7.5655,46.6461,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,2798,0 +239,7.4629,46.5731,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2447,0 +240,7.3816,46.2349,0.0264,0.0000,0,0,0.0000,0,0.0000,0,1,0,305575,0 +241,7.4615,46.1618,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,26931,0 +242,7.7138,46.0668,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,23584,0 +243,7.8557,46.0689,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,24272,0 +244,8.0158,45.9098,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,38917,0 +245,8.0808,45.8462,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,8982,0 +246,7.9539,46.0707,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,4721,0 +247,7.8169,46.1482,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4158,0 +248,7.9291,46.0979,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,27536,0 +249,8.0223,45.8706,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3231,0 +250,7.9268,46.0187,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2722,0 +251,7.6596,46.2402,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1736,0 +252,7.7562,46.0285,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,19843,0 +253,7.8425,46.7377,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1765,0 +254,7.7396,46.5531,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1962,0 +255,7.7290,46.3700,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1985,0 +256,7.3831,46.8129,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,55855,0 +257,7.5916,46.2398,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2988,0 +258,7.7196,45.9882,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2071,0 +259,7.4310,46.2834,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1742,0 +260,7.3448,46.2302,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,21875,0 +261,7.3207,46.2677,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1648,0 +262,7.6871,45.7908,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1655,0 +263,7.5850,46.1199,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1650,0 +264,7.3060,46.4736,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,20883,0 +265,7.9428,45.9585,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1685,0 +266,7.9833,45.9108,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,1718,0 +267,7.9758,45.9403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1679,0 +268,7.8080,46.0686,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,18997,0 +269,7.8931,46.5992,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1814,0 +270,7.6758,46.8717,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2013,0 +271,7.6603,46.3966,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1676,0 +272,7.7235,46.1168,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,21410,0 +273,7.5312,46.3434,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3212,0 +274,7.5181,46.2395,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1827,0 +275,7.5798,46.2985,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +276,7.4638,46.3737,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,22325,0 +277,7.7172,45.8870,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1769,0 +278,7.7200,45.9824,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1760,0 +279,7.4075,46.3397,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1747,0 +280,7.3932,46.3260,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,22021,0 +281,7.5356,46.1668,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1725,0 +282,7.6863,46.0271,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1766,0 +283,7.5584,46.1382,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1791,0 +284,7.6138,46.2642,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,19841,0 +285,7.6590,47.0032,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1873,0 +286,7.6967,46.7521,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,2121,0 +287,7.8434,46.4962,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +288,7.7258,46.4595,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,17674,0 +289,7.6055,46.4151,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2934,0 +290,7.4768,46.1183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2297,0 +291,7.4428,46.1502,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1870,0 +292,7.2498,47.4906,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,21908,0 +293,7.3099,45.5049,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1949,0 +294,7.4004,46.8143,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +295,7.5750,47.8750,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1948,0 +296,7.7756,45.6033,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,21021,0 +297,8.1581,42.5890,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1893,0 +298,7.9577,41.5975,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1911,0 +299,7.7290,48.4867,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1929,0 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.txt b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.txt new file mode 100644 index 0000000..bde082d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=4096x2304 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=120 +data_rate_limit_mbps=120 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=length-prefixed +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=7.707 +avg_encode_latency_ms=25.900 +p95_encode_latency_ms=46.669 +max_encode_latency_ms=48.487 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=4452432 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.csv diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.csv new file mode 100644 index 0000000..5ada605 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.csv @@ -0,0 +1,2401 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.2644,24.2037,0.0181,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1,2.9532,23.5212,0.0099,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2,2.8573,24.7288,0.0204,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +3,2.9853,26.3080,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +4,5.2644,5.9518,0.0114,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +5,2.9532,5.7971,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +6,2.8573,10.6463,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +7,2.9853,10.6293,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +8,5.2644,5.7415,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +9,2.9532,5.5770,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +10,2.8573,10.4200,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +11,2.9853,10.4078,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +12,5.2644,5.7142,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +13,2.9532,5.5670,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +14,2.8573,10.4197,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +15,2.9853,10.4169,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +16,5.2644,5.8017,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +17,2.9532,5.5955,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +18,2.8573,10.4225,0.0137,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +19,2.9853,10.3872,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +20,5.2644,5.6977,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +21,2.9532,5.5977,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +22,2.8573,10.3885,0.0198,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +23,2.9853,10.3733,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +24,5.2644,5.7237,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +25,2.9532,5.5986,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +26,2.8573,10.5148,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +27,2.9853,10.3992,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +28,5.2644,5.7509,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +29,2.9532,5.5470,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +30,2.8573,10.4085,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +31,2.9853,10.3641,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +32,5.2644,5.8310,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +33,2.9532,5.5980,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +34,2.8573,10.4445,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +35,2.9853,10.4653,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +36,5.2644,5.7607,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +37,2.9532,5.5709,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +38,2.8573,10.4506,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +39,2.9853,10.4497,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +40,5.2644,5.7827,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +41,2.9532,5.5610,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +42,2.8573,10.4025,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +43,2.9853,10.3906,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +44,5.2644,5.7525,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +45,2.9532,5.5380,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +46,2.8573,10.3338,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +47,2.9853,10.2614,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +48,5.2644,5.7201,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +49,2.9532,5.4066,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +50,2.8573,10.3721,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +51,2.9853,10.2400,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +52,5.2644,5.8248,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +53,2.9532,5.5091,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +54,2.8573,10.4567,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +55,2.9853,10.2867,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +56,5.2644,5.7085,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +57,2.9532,5.5310,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +58,2.8573,10.4495,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +59,2.9853,10.3912,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +60,5.2644,5.6691,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +61,2.9532,5.4710,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +62,2.8573,10.3037,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +63,2.9853,10.2558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +64,5.2644,5.6191,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +65,2.9532,5.4062,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +66,2.8573,10.3309,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +67,2.9853,10.2584,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +68,5.2644,5.7905,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +69,2.9532,5.4285,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +70,2.8573,10.4486,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +71,2.9853,10.2771,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +72,5.2644,5.8208,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +73,2.9532,5.5656,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +74,2.8573,10.5378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +75,2.9853,10.3413,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +76,5.2644,5.8491,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +77,2.9532,5.5949,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +78,2.8573,10.5204,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +79,2.9853,10.4778,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +80,5.2644,5.8488,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +81,2.9532,5.5743,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +82,2.8573,10.4220,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +83,2.9853,10.2614,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +84,5.2644,5.8288,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +85,2.9532,5.5347,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +86,2.8573,10.3689,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +87,2.9853,10.3044,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +88,5.2644,5.7861,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +89,2.9532,5.5045,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +90,2.8573,10.3937,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +91,2.9853,10.3023,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +92,5.2644,5.7874,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +93,2.9532,5.4697,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +94,2.8573,10.5558,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +95,2.9853,10.5221,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +96,5.2644,5.8045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +97,2.9532,5.6080,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +98,2.8573,10.4742,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +99,2.9853,10.3781,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +100,5.2644,5.8668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +101,2.9532,5.6395,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +102,2.8573,10.5491,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +103,2.9853,10.5205,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +104,5.2644,5.9005,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +105,2.9532,5.6131,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +106,2.8573,10.4656,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +107,2.9853,10.4481,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +108,5.2644,5.8208,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +109,2.9532,5.5771,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +110,2.8573,10.5388,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +111,2.9853,10.5196,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +112,5.2644,5.9400,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +113,2.9532,5.6133,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +114,2.8573,10.4088,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +115,2.9853,10.3220,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +116,5.2644,5.9203,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +117,2.9532,5.6343,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +118,2.8573,10.3353,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +119,2.9853,10.2405,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +120,5.2644,6.0603,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +121,2.9532,5.7640,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +122,2.8573,10.6020,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +123,2.9853,10.5864,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +124,5.2644,5.8216,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +125,2.9532,5.5039,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +126,2.8573,10.4026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +127,2.9853,10.3713,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +128,5.2644,5.7929,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +129,2.9532,5.5565,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +130,2.8573,10.5135,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +131,2.9853,10.4755,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +132,5.2644,5.8447,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +133,2.9532,5.6075,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +134,2.8573,10.6364,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +135,2.9853,10.5405,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +136,5.2644,5.8387,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +137,2.9532,5.6119,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +138,2.8573,10.4668,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +139,2.9853,10.4033,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +140,5.2644,6.0245,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +141,2.9532,5.6484,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +142,2.8573,10.4466,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +143,2.9853,10.3949,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +144,5.2644,5.8875,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +145,2.9532,5.6322,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +146,2.8573,10.4838,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +147,2.9853,10.4458,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +148,5.2644,5.7904,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +149,2.9532,5.5965,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +150,2.8573,10.3455,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +151,2.9853,10.3077,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +152,5.2644,5.9160,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +153,2.9532,5.6647,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +154,2.8573,10.5556,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +155,2.9853,10.4845,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +156,5.2644,5.9174,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +157,2.9532,5.6688,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +158,2.8573,10.5205,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +159,2.9853,10.3884,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +160,5.2644,5.9192,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +161,2.9532,5.6547,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +162,2.8573,10.4925,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +163,2.9853,10.4401,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +164,5.2644,5.8634,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +165,2.9532,5.5871,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +166,2.8573,10.4913,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +167,2.9853,10.4339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +168,5.2644,6.2773,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +169,2.9532,5.9424,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +170,2.8573,10.9213,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +171,2.9853,10.8210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +172,5.2644,6.5373,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +173,2.9532,6.0643,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +174,2.8573,11.0069,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +175,2.9853,10.8493,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +176,5.2644,6.7316,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +177,2.9532,6.2168,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +178,2.8573,11.2676,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +179,2.9853,11.2191,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +180,5.2644,6.5096,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +181,2.9532,5.9181,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +182,2.8573,10.8664,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +183,2.9853,10.4654,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +184,5.2644,6.8231,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +185,2.9532,6.2098,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +186,2.8573,11.1319,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +187,2.9853,11.0798,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +188,5.2644,6.5541,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +189,2.9532,6.0658,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +190,2.8573,11.0527,0.0235,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +191,2.9853,10.9409,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +192,5.2644,6.6258,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +193,2.9532,6.1415,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +194,2.8573,11.1224,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +195,2.9853,11.1030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +196,5.2644,6.6495,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +197,2.9532,6.0678,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +198,2.8573,11.0665,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +199,2.9853,10.8940,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +200,5.2644,6.6719,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +201,2.9532,6.1145,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +202,2.8573,11.0317,0.0227,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +203,2.9853,10.9157,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +204,5.2644,6.7721,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +205,2.9532,6.1910,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +206,2.8573,11.2709,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +207,2.9853,11.1434,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +208,5.2644,6.7554,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +209,2.9532,6.2177,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +210,2.8573,10.9808,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +211,2.9853,10.8643,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +212,5.2644,6.5788,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +213,2.9532,6.0773,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +214,2.8573,11.1121,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +215,2.9853,10.9985,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +216,5.2644,6.6293,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +217,2.9532,6.1741,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +218,2.8573,11.0911,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +219,2.9853,10.9685,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +220,5.2644,6.5503,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +221,2.9532,6.1032,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +222,2.8573,11.0312,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +223,2.9853,10.9408,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +224,5.2644,6.5832,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +225,2.9532,6.0625,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +226,2.8573,11.1632,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +227,2.9853,11.0671,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +228,5.2644,6.5693,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +229,2.9532,6.1283,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +230,2.8573,10.9584,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +231,2.9853,10.8488,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +232,5.2644,6.5653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +233,2.9532,6.0413,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +234,2.8573,11.0518,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +235,2.9853,10.9946,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +236,5.2644,6.5479,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +237,2.9532,6.0850,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +238,2.8573,11.1910,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +239,2.9853,11.0297,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +240,5.2644,6.2020,0.0413,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +241,2.9532,5.8018,0.0315,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +242,2.8573,10.3869,0.0271,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +243,2.9853,10.4011,0.0756,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +244,5.2644,5.9235,0.0213,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +245,2.9532,5.6902,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +246,2.8573,10.5449,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +247,2.9853,10.5285,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +248,5.2644,5.9319,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +249,2.9532,5.7026,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +250,2.8573,10.6856,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +251,2.9853,10.6653,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +252,5.2644,6.3314,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +253,2.9532,5.9230,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +254,2.8573,10.9660,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +255,2.9853,10.8414,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +256,5.2644,5.8653,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +257,2.9532,5.6167,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +258,2.8573,10.5286,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +259,2.9853,10.4965,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +260,5.2644,5.8684,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +261,2.9532,5.6315,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +262,2.8573,10.4729,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +263,2.9853,10.3985,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +264,5.2644,5.7582,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +265,2.9532,5.6070,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +266,2.8573,10.4798,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +267,2.9853,10.3631,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +268,5.2644,6.1608,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +269,2.9532,5.8785,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +270,2.8573,10.6782,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +271,2.9853,10.5987,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +272,5.2644,6.0484,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +273,2.9532,5.7360,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +274,2.8573,10.5861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +275,2.9853,10.5383,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +276,5.2644,5.9556,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +277,2.9532,5.6770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +278,2.8573,10.5510,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +279,2.9853,10.4738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +280,5.2644,5.8739,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +281,2.9532,5.6502,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +282,2.8573,10.5423,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +283,2.9853,10.5026,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +284,5.2644,5.8003,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +285,2.9532,5.6325,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +286,2.8573,10.6130,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +287,2.9853,10.5244,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +288,5.2644,5.9933,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +289,2.9532,5.7042,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +290,2.8573,10.5960,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +291,2.9853,10.5625,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +292,5.2644,5.9071,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +293,2.9532,5.6758,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +294,2.8573,10.6493,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +295,2.9853,10.5407,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +296,5.2644,6.1166,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +297,2.9532,5.8544,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +298,2.8573,10.8035,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +299,2.9853,10.7320,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +300,5.2644,6.0270,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +301,2.9532,5.8229,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +302,2.8573,10.8950,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +303,2.9853,10.8531,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +304,5.2644,6.2387,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +305,2.9532,6.0690,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +306,2.8573,10.9921,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +307,2.9853,10.9616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +308,5.2644,6.1725,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +309,2.9532,6.0478,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +310,2.8573,10.9151,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +311,2.9853,10.9160,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +312,5.2644,6.8928,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +313,2.9532,7.0075,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +314,2.8573,11.3167,0.0172,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +315,2.9853,11.3080,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +316,5.2644,7.1547,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +317,2.9532,6.0825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +318,2.8573,10.1698,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +319,2.9853,10.3056,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +320,5.2644,7.1935,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +321,2.9532,6.2795,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +322,2.8573,11.0113,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +323,2.9853,10.9140,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +324,5.2644,7.1044,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +325,2.9532,6.3395,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +326,2.8573,10.7124,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +327,2.9853,10.9400,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +328,5.2644,7.0761,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +329,2.9532,6.1863,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +330,2.8573,10.2177,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +331,2.9853,10.2097,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +332,5.2644,7.8762,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +333,2.9532,6.3170,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +334,2.8573,10.5953,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +335,2.9853,11.7109,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +336,5.2644,7.5481,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +337,2.9532,6.5811,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +338,2.8573,13.1171,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +339,2.9853,12.9040,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +340,5.2644,7.0426,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +341,2.9532,6.1125,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +342,2.8573,10.9626,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +343,2.9853,10.9313,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +344,5.2644,7.0933,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +345,2.9532,6.2608,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +346,2.8573,10.4794,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +347,2.9853,10.2985,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +348,5.2644,7.2294,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +349,2.9532,6.3693,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +350,2.8573,10.5928,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +351,2.9853,10.7516,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +352,5.2644,7.1136,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +353,2.9532,6.1180,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +354,2.8573,10.1589,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +355,2.9853,14.2078,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +356,5.2644,7.2719,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +357,2.9532,6.3746,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +358,2.8573,11.0577,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +359,2.9853,8.0897,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +360,5.2644,7.7165,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +361,2.9532,6.2413,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +362,2.8573,10.4029,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +363,2.9853,11.0457,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +364,5.2644,7.0937,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +365,2.9532,6.3265,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +366,2.8573,10.5118,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +367,2.9853,10.7795,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +368,5.2644,7.1975,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +369,2.9532,6.3502,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +370,2.8573,10.5960,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +371,2.9853,10.8047,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +372,5.2644,7.2316,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +373,2.9532,6.4270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +374,2.8573,10.6166,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +375,2.9853,10.4763,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +376,5.2644,8.2480,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +377,2.9532,7.1089,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +378,2.8573,10.6199,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +379,2.9853,10.6648,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +380,5.2644,7.0367,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +381,2.9532,6.2233,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +382,2.8573,11.1061,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +383,2.9853,10.8534,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +384,5.2644,8.3387,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +385,2.9532,7.4702,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +386,2.8573,10.1509,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +387,2.9853,6.3529,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +388,5.2644,6.1906,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +389,2.9532,5.7197,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +390,2.8573,10.5193,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +391,2.9853,10.3440,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +392,5.2644,6.6243,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +393,2.9532,6.0615,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +394,2.8573,10.4096,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +395,2.9853,10.3680,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +396,5.2644,6.5451,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +397,2.9532,6.0219,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +398,2.8573,11.0345,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +399,2.9853,11.5307,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +400,5.2644,6.1759,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +401,2.9532,5.7855,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +402,2.8573,10.3517,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +403,2.9853,10.3940,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +404,5.2644,6.7256,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +405,2.9532,6.1725,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +406,2.8573,10.2703,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +407,2.9853,10.0962,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +408,5.2644,6.5519,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +409,2.9532,5.9826,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +410,2.8573,10.4260,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +411,2.9853,10.2115,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +412,5.2644,5.9770,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +413,2.9532,5.6975,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +414,2.8573,10.6315,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +415,2.9853,10.5192,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +416,5.2644,5.9169,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +417,2.9532,5.6278,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +418,2.8573,10.5419,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +419,2.9853,10.4780,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +420,5.2644,5.8797,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +421,2.9532,5.6052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +422,2.8573,10.5072,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +423,2.9853,10.3707,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +424,5.2644,5.9746,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +425,2.9532,5.6709,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +426,2.8573,10.4927,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +427,2.9853,10.4086,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +428,5.2644,5.9130,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +429,2.9532,5.6232,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +430,2.8573,10.5570,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +431,2.9853,10.4416,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +432,5.2644,5.8443,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +433,2.9532,5.4994,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +434,2.8573,10.0917,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +435,2.9853,10.0088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +436,5.2644,5.7357,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +437,2.9532,5.4363,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +438,2.8573,10.3126,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +439,2.9853,10.2306,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +440,5.2644,5.7432,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +441,2.9532,5.4807,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +442,2.8573,10.1365,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +443,2.9853,10.0462,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +444,5.2644,5.7751,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +445,2.9532,5.4489,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +446,2.8573,10.3101,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +447,2.9853,10.1350,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +448,5.2644,5.8181,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +449,2.9532,5.5607,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +450,2.8573,10.4345,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +451,2.9853,10.3424,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +452,5.2644,5.7467,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +453,2.9532,5.4602,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +454,2.8573,10.1707,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +455,2.9853,10.1092,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +456,5.2644,5.7759,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +457,2.9532,5.4624,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +458,2.8573,10.3439,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +459,2.9853,10.2047,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +460,5.2644,5.7616,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +461,2.9532,5.4510,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +462,2.8573,10.3242,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +463,2.9853,10.2090,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +464,5.2644,5.6880,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +465,2.9532,5.4308,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +466,2.8573,10.2469,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +467,2.9853,10.1953,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +468,5.2644,5.7555,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +469,2.9532,5.4139,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +470,2.8573,10.2276,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +471,2.9853,10.1000,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +472,5.2644,5.7343,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +473,2.9532,5.5124,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +474,2.8573,10.2995,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +475,2.9853,10.1963,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +476,5.2644,5.7416,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +477,2.9532,5.4083,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +478,2.8573,10.2583,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +479,2.9853,10.1645,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +480,5.2644,5.6941,0.0296,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +481,2.9532,5.3901,0.0269,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +482,2.8573,10.0591,0.0110,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +483,2.9853,10.0151,0.0232,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +484,5.2644,5.8029,0.0155,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +485,2.9532,5.4705,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +486,2.8573,10.4970,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +487,2.9853,10.4200,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +488,5.2644,5.7825,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +489,2.9532,5.4758,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +490,2.8573,10.4403,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +491,2.9853,10.3488,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +492,5.2644,5.7592,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +493,2.9532,5.4321,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +494,2.8573,10.3544,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +495,2.9853,10.2406,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +496,5.2644,5.6679,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +497,2.9532,5.3783,0.0163,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +498,2.8573,10.3898,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +499,2.9853,10.2865,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +500,5.2644,5.8354,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +501,2.9532,5.5462,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +502,2.8573,10.3432,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +503,2.9853,10.1449,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +504,5.2644,5.7933,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +505,2.9532,5.5209,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +506,2.8573,10.2959,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +507,2.9853,10.1731,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +508,5.2644,5.7707,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +509,2.9532,5.4458,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +510,2.8573,10.3857,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +511,2.9853,10.2437,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +512,5.2644,5.8474,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +513,2.9532,5.5518,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +514,2.8573,10.4178,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +515,2.9853,10.3362,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +516,5.2644,5.7951,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +517,2.9532,5.5188,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +518,2.8573,10.5586,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +519,2.9853,10.4452,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +520,5.2644,5.7795,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +521,2.9532,5.4574,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +522,2.8573,10.3662,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +523,2.9853,10.3028,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +524,5.2644,5.7990,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +525,2.9532,5.4591,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +526,2.8573,10.4388,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +527,2.9853,10.3704,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +528,5.2644,5.7865,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +529,2.9532,5.4797,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +530,2.8573,10.3567,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +531,2.9853,10.3358,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +532,5.2644,5.7513,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +533,2.9532,5.5313,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +534,2.8573,10.6266,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +535,2.9853,10.6357,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +536,5.2644,5.9256,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +537,2.9532,5.6696,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +538,2.8573,10.6140,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +539,2.9853,10.6577,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +540,5.2644,5.8396,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +541,2.9532,5.5804,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +542,2.8573,10.8070,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +543,2.9853,10.7393,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +544,5.2644,5.8229,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +545,2.9532,5.6266,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +546,2.8573,10.5318,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +547,2.9853,10.5703,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +548,5.2644,5.9008,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +549,2.9532,5.6440,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +550,2.8573,10.7102,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +551,2.9853,10.6519,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +552,5.2644,5.9030,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +553,2.9532,5.6330,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +554,2.8573,10.5206,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +555,2.9853,10.4585,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +556,5.2644,5.9000,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +557,2.9532,5.6053,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +558,2.8573,10.6735,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +559,2.9853,10.6978,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +560,5.2644,5.8592,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +561,2.9532,5.7103,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +562,2.8573,10.7522,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +563,2.9853,10.6773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +564,5.2644,5.6408,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +565,2.9532,5.5690,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +566,2.8573,10.6366,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +567,2.9853,10.6215,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +568,5.2644,5.7948,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +569,2.9532,5.7629,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +570,2.8573,10.8036,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +571,2.9853,10.8235,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +572,5.2644,5.8276,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +573,2.9532,5.7485,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +574,2.8573,10.6757,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +575,2.9853,10.6834,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +576,5.2644,5.9244,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +577,2.9532,5.7300,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +578,2.8573,10.7224,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +579,2.9853,10.7145,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +580,5.2644,5.9741,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +581,2.9532,5.7603,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +582,2.8573,10.6990,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +583,2.9853,10.6427,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +584,5.2644,5.8584,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +585,2.9532,5.7841,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +586,2.8573,10.5594,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +587,2.9853,10.5982,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +588,5.2644,5.9584,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +589,2.9532,5.9196,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +590,2.8573,11.1620,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +591,2.9853,11.1628,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +592,5.2644,7.0981,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +593,2.9532,6.4923,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +594,2.8573,11.2165,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +595,2.9853,11.2378,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +596,5.2644,7.0080,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +597,2.9532,6.2683,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +598,2.8573,10.8429,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +599,2.9853,10.8904,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +600,5.2644,7.8010,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +601,2.9532,6.6089,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +602,2.8573,11.7500,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +603,2.9853,11.6033,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +604,5.2644,7.5838,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +605,2.9532,6.7979,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +606,2.8573,10.6455,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +607,2.9853,10.7082,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +608,5.2644,6.8835,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +609,2.9532,6.1001,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +610,2.8573,10.6013,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +611,2.9853,10.5793,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +612,5.2644,6.6110,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +613,2.9532,6.0773,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +614,2.8573,10.6114,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +615,2.9853,10.4342,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +616,5.2644,6.2312,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +617,2.9532,5.8447,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +618,2.8573,11.1796,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +619,2.9853,11.1990,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +620,5.2644,6.1045,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +621,2.9532,5.9397,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +622,2.8573,11.0715,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +623,2.9853,11.0482,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +624,5.2644,6.1401,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +625,2.9532,5.8072,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +626,2.8573,11.5229,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +627,2.9853,11.2737,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +628,5.2644,6.2719,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +629,2.9532,6.0696,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +630,2.8573,10.5940,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +631,2.9853,10.4993,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +632,5.2644,8.0493,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +633,2.9532,6.4527,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +634,2.8573,5.7662,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +635,2.9853,10.0390,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +636,5.2644,6.4314,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +637,2.9532,6.0180,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +638,2.8573,10.8299,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +639,2.9853,10.6325,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +640,5.2644,6.3847,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +641,2.9532,5.7715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +642,2.8573,10.1548,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +643,2.9853,10.4463,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +644,5.2644,6.8237,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +645,2.9532,6.4839,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +646,2.8573,10.2648,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +647,2.9853,10.2363,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +648,5.2644,7.1621,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +649,2.9532,5.9618,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +650,2.8573,8.9985,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +651,2.9853,9.6526,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +652,5.2644,7.7249,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +653,2.9532,7.1383,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +654,2.8573,10.3737,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +655,2.9853,10.2521,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +656,5.2644,5.8952,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +657,2.9532,5.6088,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +658,2.8573,10.6555,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +659,2.9853,10.4819,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +660,5.2644,5.7939,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +661,2.9532,5.5269,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +662,2.8573,10.7395,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +663,2.9853,10.5539,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +664,5.2644,5.9415,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +665,2.9532,5.7045,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +666,2.8573,10.5352,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +667,2.9853,10.4867,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +668,5.2644,6.1311,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +669,2.9532,5.8348,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +670,2.8573,10.7646,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +671,2.9853,10.7349,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +672,5.2644,5.9988,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +673,2.9532,5.7612,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +674,2.8573,10.6710,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +675,2.9853,10.6501,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +676,5.2644,5.8457,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +677,2.9532,5.6493,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +678,2.8573,10.5247,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +679,2.9853,10.5210,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +680,5.2644,6.1883,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +681,2.9532,5.9396,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +682,2.8573,10.7274,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +683,2.9853,10.7744,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +684,5.2644,6.1396,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +685,2.9532,5.9023,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +686,2.8573,10.8014,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +687,2.9853,10.7069,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +688,5.2644,6.2137,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +689,2.9532,6.0000,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +690,2.8573,9.9061,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +691,2.9853,10.0736,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +692,5.2644,6.3405,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +693,2.9532,6.1764,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +694,2.8573,9.7732,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +695,2.9853,10.5696,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +696,5.2644,6.4935,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +697,2.9532,6.2632,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +698,2.8573,9.9659,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +699,2.9853,10.5147,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +700,5.2644,6.4402,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +701,2.9532,6.2418,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +702,2.8573,9.3721,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +703,2.9853,10.3646,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +704,5.2644,7.4834,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +705,2.9532,6.7595,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +706,2.8573,11.7406,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +707,2.9853,11.5767,0.0159,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +708,5.2644,6.0222,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +709,2.9532,5.7445,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +710,2.8573,11.1057,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +711,2.9853,10.9189,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +712,5.2644,6.6485,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +713,2.9532,6.0370,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +714,2.8573,11.0065,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +715,2.9853,10.8123,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +716,5.2644,6.5895,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +717,2.9532,6.1769,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +718,2.8573,10.4860,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +719,2.9853,9.9370,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +720,5.2644,41.9086,0.0180,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +721,2.9532,26.1861,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +722,2.8573,26.2931,0.0063,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +723,2.9853,25.7206,0.0102,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +724,5.2644,5.9553,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +725,2.9532,5.7654,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +726,2.8573,10.8137,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +727,2.9853,10.8477,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +728,5.2644,5.9271,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +729,2.9532,5.8640,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +730,2.8573,10.7447,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +731,2.9853,10.7758,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +732,5.2644,5.8087,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +733,2.9532,5.6532,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +734,2.8573,10.5047,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +735,2.9853,10.4958,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +736,5.2644,5.9236,0.0264,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +737,2.9532,5.6698,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +738,2.8573,10.5380,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +739,2.9853,10.5310,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +740,5.2644,5.8849,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +741,2.9532,5.6283,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +742,2.8573,10.4953,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +743,2.9853,10.4911,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +744,5.2644,6.1401,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +745,2.9532,5.9228,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +746,2.8573,11.0399,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +747,2.9853,10.9490,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +748,5.2644,5.8641,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +749,2.9532,5.7922,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +750,2.8573,10.7895,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +751,2.9853,10.8069,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +752,5.2644,5.7181,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +753,2.9532,5.6597,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +754,2.8573,10.5225,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +755,2.9853,10.5467,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +756,5.2644,5.8925,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +757,2.9532,5.6668,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +758,2.8573,10.5339,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +759,2.9853,10.4120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +760,5.2644,5.6770,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +761,2.9532,5.5491,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +762,2.8573,10.6068,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +763,2.9853,10.6256,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +764,5.2644,5.8457,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +765,2.9532,5.8093,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +766,2.8573,10.8698,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +767,2.9853,10.8823,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +768,5.2644,5.9401,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +769,2.9532,5.9143,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +770,2.8573,11.0042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +771,2.9853,11.0380,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +772,5.2644,5.7685,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +773,2.9532,5.6925,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +774,2.8573,10.8615,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +775,2.9853,10.9371,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +776,5.2644,5.7345,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +777,2.9532,5.6919,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +778,2.8573,10.5371,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +779,2.9853,10.5500,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +780,5.2644,5.7686,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +781,2.9532,5.7405,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +782,2.8573,10.7291,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +783,2.9853,10.7575,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +784,5.2644,5.9001,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +785,2.9532,5.7795,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +786,2.8573,10.7209,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +787,2.9853,10.6958,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +788,5.2644,5.7970,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +789,2.9532,5.6807,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +790,2.8573,10.9248,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +791,2.9853,10.9533,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +792,5.2644,6.0889,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +793,2.9532,5.9210,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +794,2.8573,11.1261,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +795,2.9853,11.0551,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +796,5.2644,6.2443,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +797,2.9532,5.8679,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +798,2.8573,10.8365,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +799,2.9853,10.7020,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +800,5.2644,6.2902,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +801,2.9532,6.0385,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +802,2.8573,11.1235,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +803,2.9853,11.0911,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +804,5.2644,6.2367,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +805,2.9532,6.0964,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +806,2.8573,11.1961,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +807,2.9853,11.0895,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +808,5.2644,6.0342,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +809,2.9532,5.7480,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +810,2.8573,10.6979,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +811,2.9853,10.6277,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +812,5.2644,5.8961,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +813,2.9532,5.6787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +814,2.8573,10.6933,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +815,2.9853,10.6876,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +816,5.2644,5.7309,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +817,2.9532,5.6215,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +818,2.8573,10.5968,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +819,2.9853,10.6092,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +820,5.2644,5.7690,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +821,2.9532,5.7039,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +822,2.8573,10.6147,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +823,2.9853,10.6312,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +824,5.2644,5.9596,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +825,2.9532,5.8770,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +826,2.8573,10.6849,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +827,2.9853,10.6450,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +828,5.2644,5.9264,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +829,2.9532,5.8481,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +830,2.8573,10.8279,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +831,2.9853,10.7943,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +832,5.2644,6.2347,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +833,2.9532,6.0516,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +834,2.8573,11.0900,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +835,2.9853,10.9757,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +836,5.2644,6.6383,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +837,2.9532,6.4636,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +838,2.8573,11.6235,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +839,2.9853,11.5132,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +840,5.2644,10.1929,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +841,2.9532,8.1516,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +842,2.8573,11.3045,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +843,2.9853,11.1726,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +844,5.2644,6.6026,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +845,2.9532,6.2230,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +846,2.8573,11.1349,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +847,2.9853,10.9576,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +848,5.2644,6.2388,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +849,2.9532,5.9473,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +850,2.8573,10.9830,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +851,2.9853,10.9380,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +852,5.2644,5.8947,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +853,2.9532,5.7918,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +854,2.8573,10.8271,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +855,2.9853,10.8320,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +856,5.2644,13.9232,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +857,2.9532,12.6951,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +858,2.8573,7.1002,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +859,2.9853,5.9653,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +860,5.2644,5.7336,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +861,2.9532,5.5693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +862,2.8573,10.7850,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +863,2.9853,10.7261,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +864,5.2644,6.5363,0.0135,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +865,2.9532,6.1765,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +866,2.8573,11.2511,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +867,2.9853,11.1393,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +868,5.2644,7.0689,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +869,2.9532,6.3068,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +870,2.8573,11.1698,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +871,2.9853,11.0417,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +872,5.2644,7.0032,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +873,2.9532,6.2154,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +874,2.8573,12.3357,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +875,2.9853,12.0827,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +876,5.2644,6.2933,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +877,2.9532,5.8523,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +878,2.8573,10.7381,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +879,2.9853,10.4940,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +880,5.2644,6.0970,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +881,2.9532,5.7428,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +882,2.8573,10.6441,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +883,2.9853,10.5896,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +884,5.2644,5.8710,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +885,2.9532,5.6244,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +886,2.8573,10.7872,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +887,2.9853,10.6001,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +888,5.2644,5.7166,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +889,2.9532,5.6031,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +890,2.8573,16.0275,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +891,2.9853,15.9544,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +892,5.2644,5.6677,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +893,2.9532,5.4800,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +894,2.8573,10.3906,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +895,2.9853,10.3468,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +896,5.2644,6.5467,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +897,2.9532,5.9919,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +898,2.8573,12.0378,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +899,2.9853,12.1324,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +900,5.2644,6.7762,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +901,2.9532,6.3114,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +902,2.8573,11.0421,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +903,2.9853,10.7177,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +904,5.2644,6.3104,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +905,2.9532,7.3460,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +906,2.8573,8.4257,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +907,2.9853,9.4478,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +908,5.2644,6.4951,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +909,2.9532,6.1474,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +910,2.8573,10.6738,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +911,2.9853,10.7167,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +912,5.2644,7.0836,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +913,2.9532,6.3129,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +914,2.8573,12.9358,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +915,2.9853,12.7691,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +916,5.2644,6.8819,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +917,2.9532,6.6100,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +918,2.8573,10.6399,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +919,2.9853,10.4990,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +920,5.2644,6.0404,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +921,2.9532,5.8420,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +922,2.8573,10.4416,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +923,2.9853,10.5726,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +924,5.2644,6.0548,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +925,2.9532,5.7389,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +926,2.8573,10.5825,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +927,2.9853,10.6085,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +928,5.2644,5.7310,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +929,2.9532,5.6631,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +930,2.8573,10.5230,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +931,2.9853,10.5180,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +932,5.2644,5.7425,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +933,2.9532,5.5843,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +934,2.8573,10.5521,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +935,2.9853,10.4998,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +936,5.2644,5.9078,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +937,2.9532,5.5838,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +938,2.8573,10.5850,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +939,2.9853,10.5723,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +940,5.2644,5.7716,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +941,2.9532,5.6194,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +942,2.8573,10.7204,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +943,2.9853,10.7434,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +944,5.2644,5.7770,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +945,2.9532,5.7000,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +946,2.8573,10.6577,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +947,2.9853,10.6749,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +948,5.2644,5.6950,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +949,2.9532,5.6121,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +950,2.8573,10.6341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +951,2.9853,10.6258,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +952,5.2644,5.7889,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +953,2.9532,5.5629,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +954,2.8573,10.4640,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +955,2.9853,10.4686,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +956,5.2644,6.0074,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +957,2.9532,5.8533,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +958,2.8573,10.8233,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +959,2.9853,10.8340,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +960,5.2644,6.1585,0.0575,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +961,2.9532,5.7628,0.0717,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +962,2.8573,10.6117,0.0671,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +963,2.9853,10.5563,0.0355,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +964,5.2644,6.5843,0.0251,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +965,2.9532,6.4819,0.0133,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +966,2.8573,10.2223,0.0248,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +967,2.9853,10.3291,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +968,5.2644,6.8377,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +969,2.9532,6.2111,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +970,2.8573,10.3819,0.0803,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +971,2.9853,10.2469,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +972,5.2644,6.4957,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +973,2.9532,5.8910,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +974,2.8573,10.5035,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +975,2.9853,10.5155,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +976,5.2644,6.9867,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +977,2.9532,6.8397,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +978,2.8573,10.0265,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +979,2.9853,9.9980,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +980,5.2644,5.9853,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +981,2.9532,5.6718,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +982,2.8573,10.5505,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +983,2.9853,10.5420,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +984,5.2644,5.8102,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +985,2.9532,5.5983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +986,2.8573,10.5747,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +987,2.9853,10.5337,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +988,5.2644,6.2010,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +989,2.9532,5.9206,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +990,2.8573,11.1908,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +991,2.9853,11.0982,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +992,5.2644,6.6935,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +993,2.9532,6.1049,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +994,2.8573,11.1333,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +995,2.9853,10.9021,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +996,5.2644,7.5057,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +997,2.9532,7.5703,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +998,2.8573,8.0862,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +999,2.9853,9.8045,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1000,5.2644,7.0979,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1001,2.9532,6.3640,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1002,2.8573,10.6640,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1003,2.9853,10.4642,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1004,5.2644,7.1383,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1005,2.9532,6.1218,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1006,2.8573,9.7277,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1007,2.9853,10.0538,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1008,5.2644,6.5198,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1009,2.9532,6.0323,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1010,2.8573,11.5535,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1011,2.9853,11.4330,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1012,5.2644,7.1804,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1013,2.9532,6.4802,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1014,2.8573,10.9823,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1015,2.9853,10.9460,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1016,5.2644,7.2457,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1017,2.9532,6.2810,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1018,2.8573,10.3010,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1019,2.9853,10.8319,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1020,5.2644,12.6304,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1021,2.9532,11.6910,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1022,2.8573,11.3577,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1023,2.9853,11.0953,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1024,5.2644,7.4611,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1025,2.9532,6.2996,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1026,2.8573,11.2255,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1027,2.9853,11.0091,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1028,5.2644,7.1813,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1029,2.9532,6.2750,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1030,2.8573,10.8780,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1031,2.9853,10.7364,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1032,5.2644,7.3572,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1033,2.9532,6.4052,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1034,2.8573,10.6829,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1035,2.9853,10.9614,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1036,5.2644,7.4523,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1037,2.9532,6.1346,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1038,2.8573,8.7175,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1039,2.9853,8.8966,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1040,5.2644,6.5370,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1041,2.9532,6.1368,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1042,2.8573,10.6571,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1043,2.9853,10.5920,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1044,5.2644,6.8594,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1045,2.9532,6.3449,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1046,2.8573,11.4654,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1047,2.9853,11.3829,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1048,5.2644,6.6054,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1049,2.9532,6.3317,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1050,2.8573,11.4803,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1051,2.9853,11.4106,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1052,5.2644,6.6696,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1053,2.9532,6.3092,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1054,2.8573,11.7785,0.0138,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1055,2.9853,11.8417,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1056,5.2644,7.0873,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1057,2.9532,6.2727,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1058,2.8573,12.8939,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1059,2.9853,12.6421,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1060,5.2644,8.0349,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1061,2.9532,6.5458,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1062,2.8573,10.8613,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1063,2.9853,10.9551,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1064,5.2644,7.1916,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1065,2.9532,6.2908,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1066,2.8573,10.7591,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1067,2.9853,10.8129,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1068,5.2644,7.0453,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1069,2.9532,6.3023,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1070,2.8573,10.8120,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1071,2.9853,10.7704,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1072,5.2644,7.0746,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1073,2.9532,6.2663,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1074,2.8573,10.8534,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1075,2.9853,10.7881,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1076,5.2644,7.7075,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1077,2.9532,6.6608,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1078,2.8573,11.7300,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1079,2.9853,11.5750,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1080,5.2644,7.5798,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1081,2.9532,6.4070,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1082,2.8573,10.9979,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1083,2.9853,10.7335,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1084,5.2644,7.2920,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1085,2.9532,6.2948,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1086,2.8573,11.3628,0.0170,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1087,2.9853,11.4102,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1088,5.2644,7.2535,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1089,2.9532,6.1899,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1090,2.8573,11.0783,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1091,2.9853,10.9320,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1092,5.2644,7.3311,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1093,2.9532,6.2927,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1094,2.8573,10.6923,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1095,2.9853,10.5702,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1096,5.2644,7.4469,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1097,2.9532,6.4157,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1098,2.8573,22.5655,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1099,2.9853,22.2194,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1100,5.2644,7.1508,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1101,2.9532,6.0245,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1102,2.8573,10.8406,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1103,2.9853,10.7730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1104,5.2644,5.9403,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1105,2.9532,5.7387,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1106,2.8573,10.5248,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1107,2.9853,10.4247,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1108,5.2644,6.0007,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1109,2.9532,5.7238,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1110,2.8573,10.7125,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1111,2.9853,10.6497,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1112,5.2644,6.8841,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1113,2.9532,6.1764,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1114,2.8573,10.4509,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1115,2.9853,10.2476,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1116,5.2644,7.0743,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1117,2.9532,6.4507,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1118,2.8573,11.2052,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1119,2.9853,10.8700,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1120,5.2644,7.2775,0.0119,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1121,2.9532,6.8007,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1122,2.8573,10.9413,0.0096,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1123,2.9853,10.9301,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1124,5.2644,7.2086,0.0107,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1125,2.9532,6.2144,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1126,2.8573,11.1613,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1127,2.9853,10.3275,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1128,5.2644,6.7639,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1129,2.9532,6.0650,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1130,2.8573,10.4687,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1131,2.9853,10.2780,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1132,5.2644,6.0917,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1133,2.9532,6.0045,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1134,2.8573,10.1779,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1135,2.9853,10.0344,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1136,5.2644,6.5572,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1137,2.9532,6.0313,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1138,2.8573,10.5244,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1139,2.9853,10.3940,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1140,5.2644,6.5075,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1141,2.9532,6.0364,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1142,2.8573,10.7514,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1143,2.9853,10.3945,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1144,5.2644,6.6242,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1145,2.9532,5.9018,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1146,2.8573,10.6870,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1147,2.9853,10.9135,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1148,5.2644,7.3572,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1149,2.9532,6.0412,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1150,2.8573,10.6815,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1151,2.9853,11.0481,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1152,5.2644,6.8725,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1153,2.9532,6.2043,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1154,2.8573,10.8402,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1155,2.9853,10.7598,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1156,5.2644,8.8701,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1157,2.9532,7.6566,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1158,2.8573,11.2909,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1159,2.9853,11.1527,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1160,5.2644,7.2778,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1161,2.9532,6.3336,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1162,2.8573,10.8366,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1163,2.9853,10.8669,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1164,5.2644,7.1689,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1165,2.9532,6.2195,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1166,2.8573,11.8433,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1167,2.9853,11.2243,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1168,5.2644,7.5762,0.0109,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1169,2.9532,6.5420,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1170,2.8573,10.3864,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1171,2.9853,10.5882,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1172,5.2644,7.0142,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1173,2.9532,6.3085,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1174,2.8573,10.1591,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1175,2.9853,10.6236,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1176,5.2644,6.8054,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1177,2.9532,6.2435,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1178,2.8573,11.4735,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1179,2.9853,11.3322,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1180,5.2644,6.4795,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1181,2.9532,6.0410,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1182,2.8573,10.9730,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1183,2.9853,10.8815,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1184,5.2644,6.0870,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1185,2.9532,5.9740,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1186,2.8573,10.9560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1187,2.9853,10.9271,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1188,5.2644,6.2329,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1189,2.9532,6.0495,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1190,2.8573,11.0091,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1191,2.9853,10.9283,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1192,5.2644,6.3020,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1193,2.9532,6.0795,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1194,2.8573,11.0971,0.0200,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1195,2.9853,11.0967,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1196,5.2644,6.6832,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1197,2.9532,6.0811,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1198,2.8573,11.1895,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1199,2.9853,10.8717,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1200,5.2644,6.8119,0.0427,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1201,2.9532,6.2202,0.0372,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1202,2.8573,11.0515,0.0348,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1203,2.9853,10.9964,0.0260,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1204,5.2644,6.9249,0.0212,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1205,2.9532,6.3113,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1206,2.8573,11.5430,0.0190,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1207,2.9853,11.4104,0.0129,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1208,5.2644,6.4915,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1209,2.9532,6.0945,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1210,2.8573,11.1556,0.0169,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1211,2.9853,11.1090,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1212,5.2644,6.1154,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1213,2.9532,5.9357,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1214,2.8573,10.9639,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1215,2.9853,10.9900,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1216,5.2644,6.1521,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1217,2.9532,5.9675,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1218,2.8573,11.0378,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1219,2.9853,10.9642,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1220,5.2644,7.1289,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1221,2.9532,6.4202,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1222,2.8573,11.2507,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1223,2.9853,10.9460,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1224,5.2644,5.9993,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1225,2.9532,5.6158,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1226,2.8573,10.5433,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1227,2.9853,10.4335,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1228,5.2644,6.2052,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1229,2.9532,5.9010,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1230,2.8573,10.8807,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1231,2.9853,10.8693,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1232,5.2644,5.8042,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1233,2.9532,5.7276,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1234,2.8573,10.5025,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1235,2.9853,10.4834,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1236,5.2644,5.7412,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1237,2.9532,5.6454,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1238,2.8573,10.4049,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1239,2.9853,10.3746,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1240,5.2644,6.0076,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1241,2.9532,5.6403,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1242,2.8573,10.4821,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1243,2.9853,10.3025,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1244,5.2644,5.9605,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1245,2.9532,5.6579,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1246,2.8573,10.6843,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1247,2.9853,10.5825,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1248,5.2644,5.8279,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1249,2.9532,5.6452,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1250,2.8573,10.5071,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1251,2.9853,10.4825,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1252,5.2644,5.7288,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1253,2.9532,5.5908,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1254,2.8573,10.6711,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1255,2.9853,10.6779,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1256,5.2644,5.6751,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1257,2.9532,5.6083,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1258,2.8573,10.5922,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1259,2.9853,10.6192,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1260,5.2644,5.9528,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1261,2.9532,5.7637,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1262,2.8573,10.6257,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1263,2.9853,10.5297,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1264,5.2644,5.8862,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1265,2.9532,5.6365,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1266,2.8573,10.7041,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1267,2.9853,10.5786,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1268,5.2644,5.7642,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1269,2.9532,5.5486,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1270,2.8573,10.4990,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1271,2.9853,10.4218,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1272,5.2644,5.8508,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1273,2.9532,5.6842,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1274,2.8573,10.5369,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1275,2.9853,10.5424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1276,5.2644,5.7823,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1277,2.9532,5.6948,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1278,2.8573,10.4793,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1279,2.9853,10.4586,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +1280,5.2644,5.7644,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1281,2.9532,5.6791,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1282,2.8573,10.6444,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +1283,2.9853,10.6653,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1284,5.2644,5.9077,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1285,2.9532,5.7583,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1286,2.8573,10.6250,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +1287,2.9853,10.5769,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1288,5.2644,5.9880,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1289,2.9532,5.7557,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1290,2.8573,10.3841,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1291,2.9853,10.3761,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1292,5.2644,5.7932,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1293,2.9532,5.6042,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1294,2.8573,10.5440,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1295,2.9853,10.4881,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1296,5.2644,5.8048,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1297,2.9532,5.6448,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1298,2.8573,10.4451,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1299,2.9853,10.4291,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +1300,5.2644,5.8440,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1301,2.9532,5.6400,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1302,2.8573,10.6879,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1303,2.9853,10.6731,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +1304,5.2644,5.7595,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1305,2.9532,5.6260,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1306,2.8573,10.6528,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +1307,2.9853,10.6175,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1308,5.2644,5.9192,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1309,2.9532,5.6107,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1310,2.8573,10.3896,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1311,2.9853,10.3285,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1312,5.2644,5.8708,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1313,2.9532,5.5991,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1314,2.8573,10.5974,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1315,2.9853,10.6065,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1316,5.2644,5.7510,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1317,2.9532,5.6274,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1318,2.8573,10.6146,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +1319,2.9853,10.6147,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1320,5.2644,5.8166,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1321,2.9532,5.6006,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1322,2.8573,10.6357,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1323,2.9853,10.6034,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +1324,5.2644,5.8607,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1325,2.9532,5.7027,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1326,2.8573,10.5734,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +1327,2.9853,10.5921,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +1328,5.2644,6.0364,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1329,2.9532,5.7694,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1330,2.8573,10.7969,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +1331,2.9853,10.8417,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +1332,5.2644,5.9669,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1333,2.9532,5.6995,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1334,2.8573,10.6802,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1335,2.9853,10.6013,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1336,5.2644,5.7976,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1337,2.9532,5.6350,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1338,2.8573,10.9259,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1339,2.9853,10.8768,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1340,5.2644,6.0979,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1341,2.9532,5.6310,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1342,2.8573,10.7078,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1343,2.9853,10.6625,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1344,5.2644,6.4877,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1345,2.9532,6.1074,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1346,2.8573,11.3089,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1347,2.9853,11.3093,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1348,5.2644,6.3045,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1349,2.9532,6.1373,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1350,2.8573,11.2065,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1351,2.9853,11.2323,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +1352,5.2644,6.1803,0.0372,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1353,2.9532,6.0329,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1354,2.8573,11.1843,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +1355,2.9853,11.1790,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +1356,5.2644,6.1843,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1357,2.9532,5.7843,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1358,2.8573,10.6427,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +1359,2.9853,10.5220,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +1360,5.2644,5.8769,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1361,2.9532,5.6418,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1362,2.8573,10.7700,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1363,2.9853,10.7890,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1364,5.2644,5.7456,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1365,2.9532,5.6036,0.0003,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1366,2.8573,10.5634,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1367,2.9853,10.4877,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1368,5.2644,5.7847,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1369,2.9532,5.5929,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1370,2.8573,10.5537,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1371,2.9853,10.4738,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1372,5.2644,5.9757,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1373,2.9532,5.6683,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1374,2.8573,10.6214,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +1375,2.9853,10.5421,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1376,5.2644,5.8282,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1377,2.9532,5.5830,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1378,2.8573,10.5350,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1379,2.9853,10.5287,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +1380,5.2644,5.8831,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1381,2.9532,5.6588,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1382,2.8573,10.5676,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1383,2.9853,10.5482,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1384,5.2644,5.8848,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1385,2.9532,5.7037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1386,2.8573,10.5417,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1387,2.9853,10.5382,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +1388,5.2644,5.7810,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1389,2.9532,5.6406,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1390,2.8573,10.5034,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1391,2.9853,10.4464,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1392,5.2644,5.8420,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1393,2.9532,5.6183,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1394,2.8573,10.6132,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +1395,2.9853,10.5110,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1396,5.2644,5.7262,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1397,2.9532,5.4740,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1398,2.8573,10.4030,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1399,2.9853,10.3542,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1400,5.2644,5.7372,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1401,2.9532,5.4632,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1402,2.8573,10.5883,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +1403,2.9853,10.6075,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1404,5.2644,5.6928,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1405,2.9532,5.5061,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1406,2.8573,10.6762,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +1407,2.9853,10.6773,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1408,5.2644,5.7985,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1409,2.9532,5.4875,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1410,2.8573,10.4763,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +1411,2.9853,10.4715,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1412,5.2644,5.8566,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1413,2.9532,5.5539,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1414,2.8573,10.5622,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1415,2.9853,10.5797,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +1416,5.2644,5.8460,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1417,2.9532,5.5809,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1418,2.8573,10.6448,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1419,2.9853,10.6813,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1420,5.2644,5.7580,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1421,2.9532,5.4795,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +1422,2.8573,10.5335,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1423,2.9853,10.5251,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +1424,5.2644,5.7428,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +1425,2.9532,5.4871,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +1426,2.8573,10.4550,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +1427,2.9853,10.4629,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1428,5.2644,6.0215,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +1429,2.9532,5.7363,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +1430,2.8573,10.9201,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +1431,2.9853,10.8297,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +1432,5.2644,6.5100,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +1433,2.9532,6.1053,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +1434,2.8573,10.2560,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1435,2.9853,10.3275,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +1436,5.2644,6.3922,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1437,2.9532,6.1055,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +1438,2.8573,10.1233,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +1439,2.9853,10.0113,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +1440,5.2644,31.2258,0.0105,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +1441,2.9532,38.5358,0.0081,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +1442,2.8573,28.7059,0.0069,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +1443,2.9853,28.4009,0.0103,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +1444,5.2644,6.0158,0.0150,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +1445,2.9532,5.8988,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +1446,2.8573,10.8669,0.0214,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +1447,2.9853,10.8678,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +1448,5.2644,5.7876,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +1449,2.9532,5.6464,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +1450,2.8573,10.7335,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +1451,2.9853,10.7149,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +1452,5.2644,6.0153,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +1453,2.9532,5.7897,0.0245,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +1454,2.8573,10.9697,0.0118,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +1455,2.9853,10.9360,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +1456,5.2644,5.8209,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +1457,2.9532,5.7658,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +1458,2.8573,10.5458,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +1459,2.9853,10.5690,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +1460,5.2644,5.8276,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +1461,2.9532,5.6322,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +1462,2.8573,10.5131,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +1463,2.9853,10.4853,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +1464,5.2644,5.8030,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +1465,2.9532,5.7194,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +1466,2.8573,10.7759,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +1467,2.9853,10.7520,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +1468,5.2644,5.9279,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +1469,2.9532,5.7517,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +1470,2.8573,10.7149,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +1471,2.9853,10.7052,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +1472,5.2644,5.8833,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +1473,2.9532,5.7446,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +1474,2.8573,10.9207,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +1475,2.9853,10.9029,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +1476,5.2644,5.9208,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +1477,2.9532,5.7114,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +1478,2.8573,10.6151,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +1479,2.9853,10.5863,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +1480,5.2644,5.9038,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +1481,2.9532,5.7444,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +1482,2.8573,10.7761,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +1483,2.9853,10.7468,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +1484,5.2644,5.8989,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +1485,2.9532,5.7803,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +1486,2.8573,10.8324,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +1487,2.9853,10.8263,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +1488,5.2644,5.9092,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +1489,2.9532,5.8165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +1490,2.8573,10.6869,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +1491,2.9853,10.6515,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +1492,5.2644,5.8660,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +1493,2.9532,5.7519,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +1494,2.8573,10.5518,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +1495,2.9853,10.4463,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1496,5.2644,5.9238,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1497,2.9532,5.6861,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1498,2.8573,10.5505,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +1499,2.9853,10.5182,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1500,5.2644,6.0241,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +1501,2.9532,5.8425,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1502,2.8573,10.8806,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +1503,2.9853,10.8660,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +1504,5.2644,5.9172,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +1505,2.9532,5.8175,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1506,2.8573,11.0875,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +1507,2.9853,11.1035,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +1508,5.2644,6.0575,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +1509,2.9532,5.9690,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +1510,2.8573,11.1149,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +1511,2.9853,11.1193,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +1512,5.2644,6.1452,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1513,2.9532,6.0807,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +1514,2.8573,11.1810,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +1515,2.9853,11.1774,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +1516,5.2644,6.1489,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +1517,2.9532,6.1025,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +1518,2.8573,11.1441,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +1519,2.9853,11.1156,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +1520,5.2644,6.2631,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +1521,2.9532,6.0747,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1522,2.8573,11.1836,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +1523,2.9853,11.0502,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1524,5.2644,6.2476,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +1525,2.9532,5.8757,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1526,2.8573,11.1511,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1527,2.9853,11.0843,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1528,5.2644,5.9605,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1529,2.9532,5.7665,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +1530,2.8573,10.6773,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1531,2.9853,10.6188,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +1532,5.2644,5.8272,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +1533,2.9532,5.7681,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +1534,2.8573,10.8787,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1535,2.9853,10.8861,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1536,5.2644,5.7770,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +1537,2.9532,5.6829,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1538,2.8573,10.5226,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +1539,2.9853,10.4820,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +1540,5.2644,5.8239,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +1541,2.9532,5.8287,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1542,2.8573,10.6077,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +1543,2.9853,10.5275,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1544,5.2644,5.8872,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +1545,2.9532,5.7907,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +1546,2.8573,10.7182,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1547,2.9853,10.7154,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +1548,5.2644,6.1638,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +1549,2.9532,6.1171,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1550,2.8573,11.1185,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +1551,2.9853,11.1354,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1552,5.2644,6.1169,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +1553,2.9532,6.1143,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1554,2.8573,11.0855,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +1555,2.9853,11.1335,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1556,5.2644,6.1037,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +1557,2.9532,6.0014,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +1558,2.8573,11.0082,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +1559,2.9853,10.9596,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1560,5.2644,6.1513,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +1561,2.9532,6.0160,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1562,2.8573,11.0110,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +1563,2.9853,10.9129,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1564,5.2644,6.2337,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +1565,2.9532,5.9649,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1566,2.8573,11.0545,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +1567,2.9853,10.9882,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +1568,5.2644,6.1890,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +1569,2.9532,5.9991,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1570,2.8573,11.0693,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1571,2.9853,11.0355,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1572,5.2644,6.1135,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +1573,2.9532,6.0095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1574,2.8573,11.0906,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1575,2.9853,11.0478,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +1576,5.2644,6.2772,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +1577,2.9532,6.0740,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1578,2.8573,11.2195,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +1579,2.9853,11.1438,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1580,5.2644,6.3297,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +1581,2.9532,6.0957,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1582,2.8573,11.1136,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +1583,2.9853,11.0816,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1584,5.2644,6.4793,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1585,2.9532,6.1792,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1586,2.8573,11.2828,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1587,2.9853,11.2196,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1588,5.2644,6.6811,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1589,2.9532,6.1941,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1590,2.8573,11.4230,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +1591,2.9853,11.4001,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +1592,5.2644,6.4296,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +1593,2.9532,6.1535,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1594,2.8573,11.3908,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +1595,2.9853,11.3515,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1596,5.2644,6.4147,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +1597,2.9532,6.0680,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1598,2.8573,11.4026,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +1599,2.9853,11.3252,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +1600,5.2644,7.0243,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1601,2.9532,6.3635,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1602,2.8573,11.4543,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1603,2.9853,11.3498,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +1604,5.2644,6.7198,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1605,2.9532,6.1314,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1606,2.8573,11.1545,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +1607,2.9853,11.0261,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1608,5.2644,6.6825,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1609,2.9532,6.1792,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1610,2.8573,11.2462,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +1611,2.9853,11.2560,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1612,5.2644,6.7186,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1613,2.9532,6.2341,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1614,2.8573,11.2284,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1615,2.9853,11.1141,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1616,5.2644,6.5621,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1617,2.9532,6.0717,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1618,2.8573,11.1659,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1619,2.9853,10.9618,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +1620,5.2644,6.2179,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1621,2.9532,5.8595,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1622,2.8573,11.0204,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +1623,2.9853,10.9945,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +1624,5.2644,5.8447,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1625,2.9532,5.5687,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1626,2.8573,10.7489,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +1627,2.9853,10.7446,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +1628,5.2644,6.0401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1629,2.9532,5.8008,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1630,2.8573,10.8794,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +1631,2.9853,10.9013,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +1632,5.2644,5.9771,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1633,2.9532,5.7603,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1634,2.8573,10.9045,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +1635,2.9853,10.9297,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1636,5.2644,5.9460,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1637,2.9532,5.8172,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1638,2.8573,10.8382,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +1639,2.9853,10.8616,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1640,5.2644,5.9147,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1641,2.9532,5.7083,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1642,2.8573,10.7975,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +1643,2.9853,10.8362,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1644,5.2644,5.8291,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1645,2.9532,5.6586,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1646,2.8573,10.5621,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +1647,2.9853,10.5925,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1648,5.2644,6.0445,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1649,2.9532,5.7998,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1650,2.8573,10.3958,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +1651,2.9853,10.4426,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1652,5.2644,5.8113,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1653,2.9532,5.7295,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1654,2.8573,10.4430,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +1655,2.9853,10.4951,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1656,5.2644,5.8647,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1657,2.9532,5.7165,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1658,2.8573,10.3769,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1659,2.9853,10.3409,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +1660,5.2644,6.1865,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1661,2.9532,5.7882,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1662,2.8573,10.6122,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1663,2.9853,10.5795,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1664,5.2644,6.7690,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1665,2.9532,6.5340,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1666,2.8573,12.0129,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1667,2.9853,11.9664,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1668,5.2644,6.6412,0.0124,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1669,2.9532,6.0632,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1670,2.8573,11.0150,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1671,2.9853,11.0611,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1672,5.2644,6.5845,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1673,2.9532,6.1109,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1674,2.8573,9.9186,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1675,2.9853,10.1857,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1676,5.2644,6.2078,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1677,2.9532,5.8575,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1678,2.8573,10.9823,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +1679,2.9853,10.9143,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 +1680,5.2644,5.9547,0.0285,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1681,2.9532,5.7593,0.0157,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1682,2.8573,10.3309,0.0445,0.0000,0,0,0.0000,0,0.0000,0,1,0,127235,0 +1683,2.9853,10.3079,0.0199,0.0000,0,0,0.0000,0,0.0000,0,1,0,121749,0 +1684,5.2644,6.0497,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1685,2.9532,5.8083,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1686,2.8573,10.6656,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,14145,0 +1687,2.9853,10.6442,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,15320,0 +1688,5.2644,6.8152,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1689,2.9532,6.0931,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1690,2.8573,9.7265,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,8684,0 +1691,2.9853,10.5348,0.0203,0.0000,0,0,0.0000,0,0.0000,0,0,0,6454,0 +1692,5.2644,6.0517,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1693,2.9532,5.7648,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1694,2.8573,10.6985,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,9494,0 +1695,2.9853,10.5507,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,5011,0 +1696,5.2644,6.2371,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1697,2.9532,6.0338,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1698,2.8573,11.0081,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,7271,0 +1699,2.9853,10.9553,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4535,0 +1700,5.2644,6.7515,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1701,2.9532,6.3115,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1702,2.8573,11.3763,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,2973,0 +1703,2.9853,11.3412,0.0196,0.0000,0,0,0.0000,0,0.0000,0,0,0,5039,0 +1704,5.2644,6.8040,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1705,2.9532,6.2130,0.0056,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1706,2.8573,11.1631,0.0052,0.0000,0,0,0.0000,0,0.0000,0,0,0,2069,0 +1707,2.9853,11.0079,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,5057,0 +1708,5.2644,5.9951,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1709,2.9532,5.6654,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1710,2.8573,10.6431,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1729,0 +1711,2.9853,10.5446,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,4360,0 +1712,5.2644,6.1368,0.0061,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1713,2.9532,5.9012,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1714,2.8573,10.3408,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,1241,0 +1715,2.9853,10.3727,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,4954,0 +1716,5.2644,6.3846,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1717,2.9532,5.9151,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1718,2.8573,11.1810,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1484,0 +1719,2.9853,11.1113,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,1684,0 +1720,5.2644,6.4360,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1721,2.9532,5.9684,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1722,2.8573,14.2320,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1723,2.9853,13.9887,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1808,0 +1724,5.2644,6.1335,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1725,2.9532,5.7204,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1726,2.8573,10.3401,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,1741,0 +1727,2.9853,10.3268,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +1728,5.2644,6.2996,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1729,2.9532,5.9616,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1730,2.8573,10.9695,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1571,0 +1731,2.9853,10.9705,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1652,0 +1732,5.2644,6.3501,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1733,2.9532,6.0701,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1734,2.8573,11.0770,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1582,0 +1735,2.9853,11.1185,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1894,0 +1736,5.2644,6.0478,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1737,2.9532,5.9238,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1738,2.8573,10.9964,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,1338,0 +1739,2.9853,11.1139,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1695,0 +1740,5.2644,6.1699,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1741,2.9532,5.8296,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1742,2.8573,9.8505,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,1776,0 +1743,2.9853,10.4640,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,2000,0 +1744,5.2644,6.6477,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1745,2.9532,6.2302,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1746,2.8573,11.5348,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1747,2.9853,11.5729,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +1748,5.2644,6.4568,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1749,2.9532,6.1715,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1750,2.8573,11.6088,0.0095,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1751,2.9853,11.8319,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +1752,5.2644,8.1839,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1753,2.9532,7.1479,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1754,2.8573,10.1043,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1755,2.9853,10.0644,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,890,0 +1756,5.2644,6.1179,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1757,2.9532,5.8153,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1758,2.8573,11.0506,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1759,2.9853,11.0834,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,1087,0 +1760,5.2644,6.4979,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +1761,2.9532,6.1840,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1762,2.8573,11.3551,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,877,0 +1763,2.9853,11.3463,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1376,0 +1764,5.2644,7.2697,0.0112,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +1765,2.9532,6.3502,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1766,2.8573,11.4672,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +1767,2.9853,11.4738,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,1236,0 +1768,5.2644,7.3744,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +1769,2.9532,6.3368,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1770,2.8573,11.2990,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1097,0 +1771,2.9853,11.2707,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,1496,0 +1772,5.2644,7.6210,0.0103,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1773,2.9532,6.8253,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1774,2.8573,10.9397,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,992,0 +1775,2.9853,10.8848,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1776,5.2644,8.6569,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +1777,2.9532,7.7888,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1778,2.8573,15.1730,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,898,0 +1779,2.9853,14.6803,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1780,5.2644,6.1830,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +1781,2.9532,5.8962,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1782,2.8573,10.9597,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1783,2.9853,10.8219,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +1784,5.2644,5.9554,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +1785,2.9532,5.6530,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1786,2.8573,10.4357,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1367,0 +1787,2.9853,10.4011,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +1788,5.2644,6.3213,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +1789,2.9532,5.9469,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1790,2.8573,10.8954,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +1791,2.9853,10.9092,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,995,0 +1792,5.2644,6.0424,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +1793,2.9532,5.8037,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1794,2.8573,10.6766,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +1795,2.9853,10.6657,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,889,0 +1796,5.2644,5.8448,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1797,2.9532,5.7893,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1798,2.8573,10.2194,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +1799,2.9853,10.2893,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,1114,0 +1800,5.2644,6.0245,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +1801,2.9532,5.7683,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1802,2.8573,10.7263,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,725,0 +1803,2.9853,10.7430,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,772,0 +1804,5.2644,5.9931,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1805,2.9532,5.7510,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1806,2.8573,10.6474,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,806,0 +1807,2.9853,10.6431,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +1808,5.2644,5.9050,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1809,2.9532,5.7362,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1810,2.8573,10.7523,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,766,0 +1811,2.9853,10.7562,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +1812,5.2644,5.7032,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1813,2.9532,5.6278,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1814,2.8573,10.5596,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,930,0 +1815,2.9853,10.5555,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,822,0 +1816,5.2644,5.9616,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1817,2.9532,5.6330,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1818,2.8573,10.7013,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,895,0 +1819,2.9853,10.6957,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,916,0 +1820,5.2644,5.9988,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1821,2.9532,5.6866,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1822,2.8573,10.8487,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +1823,2.9853,10.8029,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,834,0 +1824,5.2644,5.8828,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1825,2.9532,5.7531,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1826,2.8573,10.3940,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,883,0 +1827,2.9853,10.3732,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,951,0 +1828,5.2644,6.3590,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1829,2.9532,6.1150,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1830,2.8573,10.9580,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,1009,0 +1831,2.9853,10.7612,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +1832,5.2644,6.7134,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1833,2.9532,6.2890,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1834,2.8573,10.2897,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1835,2.9853,10.2182,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +1836,5.2644,6.3869,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1837,2.9532,5.9455,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1838,2.8573,10.4954,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1839,2.9853,10.3419,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,711,0 +1840,5.2644,6.3113,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1841,2.9532,5.9769,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1842,2.8573,10.0975,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1843,2.9853,10.1177,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +1844,5.2644,6.3152,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1845,2.9532,5.9078,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1846,2.8573,10.5641,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1847,2.9853,10.3814,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +1848,5.2644,6.5825,0.0140,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1849,2.9532,6.0343,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1850,2.8573,10.8152,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1851,2.9853,10.6205,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1852,5.2644,6.9011,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1853,2.9532,6.0545,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1854,2.8573,11.4670,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1855,2.9853,11.0747,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,821,0 +1856,5.2644,6.7326,0.0334,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1857,2.9532,6.0873,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1858,2.8573,10.5102,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +1859,2.9853,11.3260,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1860,5.2644,6.4623,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1861,2.9532,5.9377,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1862,2.8573,10.1384,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1863,2.9853,10.0254,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1864,5.2644,7.0935,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1865,2.9532,6.2464,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1866,2.8573,9.9500,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1867,2.9853,9.8955,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1868,5.2644,6.5401,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1869,2.9532,5.9683,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1870,2.8573,10.7973,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1871,2.9853,10.2351,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +1872,5.2644,6.5886,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1873,2.9532,6.0402,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1874,2.8573,10.9507,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,931,0 +1875,2.9853,10.7448,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +1876,5.2644,6.5651,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1877,2.9532,6.1878,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1878,2.8573,11.8036,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1879,2.9853,11.5785,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +1880,5.2644,6.4807,0.0058,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1881,2.9532,5.9430,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1882,2.8573,11.3819,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1883,2.9853,11.3585,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,781,0 +1884,5.2644,6.8862,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1885,2.9532,6.2332,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1886,2.8573,11.2604,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1887,2.9853,11.3745,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1888,5.2644,7.1159,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1889,2.9532,6.3035,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1890,2.8573,10.8760,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +1891,2.9853,11.0965,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1892,5.2644,7.3111,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1893,2.9532,6.5421,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1894,2.8573,14.6467,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +1895,2.9853,14.3497,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +1896,5.2644,7.3071,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1897,2.9532,6.5875,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1898,2.8573,11.7796,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +1899,2.9853,11.6065,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +1900,5.2644,7.2800,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1901,2.9532,6.2424,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1902,2.8573,12.5126,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1903,2.9853,12.3519,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +1904,5.2644,7.3192,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1905,2.9532,6.3510,0.0097,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1906,2.8573,11.5233,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1907,2.9853,11.5465,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,730,0 +1908,5.2644,7.5769,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1909,2.9532,6.4885,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1910,2.8573,13.0220,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +1911,2.9853,12.8185,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1912,5.2644,7.4928,0.0073,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1913,2.9532,6.3460,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1914,2.8573,12.8575,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +1915,2.9853,13.4534,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,750,0 +1916,5.2644,7.4435,0.0116,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1917,2.9532,6.3158,0.0117,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1918,2.8573,14.6781,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,869,0 +1919,2.9853,14.6820,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +1920,5.2644,6.5168,0.0288,0.0000,0,0,0.0000,0,0.0000,0,1,0,114511,0 +1921,2.9532,6.0461,0.0351,0.0000,0,0,0.0000,0,0.0000,0,1,0,78514,0 +1922,2.8573,10.7281,0.0298,0.0000,0,0,0.0000,0,0.0000,0,1,0,109057,0 +1923,2.9853,10.6988,0.0280,0.0000,0,0,0.0000,0,0.0000,0,1,0,110017,0 +1924,5.2644,7.4311,0.0134,0.0000,0,0,0.0000,0,0.0000,0,0,0,13627,0 +1925,2.9532,6.4876,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,9905,0 +1926,2.8573,11.5457,0.0351,0.0000,0,0,0.0000,0,0.0000,0,0,0,16976,0 +1927,2.9853,11.1170,0.0352,0.0000,0,0,0.0000,0,0.0000,0,0,0,18111,0 +1928,5.2644,7.0056,0.0256,0.0000,0,0,0.0000,0,0.0000,0,0,0,6718,0 +1929,2.9532,6.3405,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,5100,0 +1930,2.8573,10.4398,0.0160,0.0000,0,0,0.0000,0,0.0000,0,0,0,19718,0 +1931,2.9853,10.5209,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,16497,0 +1932,5.2644,6.9848,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,8111,0 +1933,2.9532,6.2722,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,4323,0 +1934,2.8573,8.8580,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,14471,0 +1935,2.9853,10.7225,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,11600,0 +1936,5.2644,8.7413,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,5563,0 +1937,2.9532,8.5047,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,5033,0 +1938,2.8573,11.5740,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,11526,0 +1939,2.9853,11.3264,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,11502,0 +1940,5.2644,7.1251,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,4043,0 +1941,2.9532,7.3359,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,3216,0 +1942,2.8573,7.1461,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,7446,0 +1943,2.9853,10.9999,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,3814,0 +1944,5.2644,7.1253,0.1638,0.0000,0,0,0.0000,0,0.0000,0,0,0,3170,0 +1945,2.9532,6.6060,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,2351,0 +1946,2.8573,11.4214,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,6708,0 +1947,2.9853,11.1271,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,3433,0 +1948,5.2644,6.7841,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,2365,0 +1949,2.9532,6.0889,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1707,0 +1950,2.8573,9.7765,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,4540,0 +1951,2.9853,10.0768,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,3115,0 +1952,5.2644,5.9576,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,2164,0 +1953,2.9532,5.6895,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1336,0 +1954,2.8573,10.5195,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3571,0 +1955,2.9853,10.3835,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,3093,0 +1956,5.2644,5.9842,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1745,0 +1957,2.9532,5.6339,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,980,0 +1958,2.8573,10.8618,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,2877,0 +1959,2.9853,10.7745,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,3130,0 +1960,5.2644,6.9683,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,1602,0 +1961,2.9532,6.3456,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,804,0 +1962,2.8573,10.3869,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,3019,0 +1963,2.9853,10.0410,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,2592,0 +1964,5.2644,6.4770,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,1409,0 +1965,2.9532,5.8316,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,742,0 +1966,2.8573,10.3094,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,943,0 +1967,2.9853,10.0038,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,2083,0 +1968,5.2644,6.2190,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1193,0 +1969,2.9532,5.8529,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,679,0 +1970,2.8573,10.9108,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +1971,2.9853,10.8279,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,859,0 +1972,5.2644,6.7276,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,1068,0 +1973,2.9532,5.9786,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +1974,2.8573,10.5165,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,791,0 +1975,2.9853,10.4905,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1976,5.2644,6.1693,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,994,0 +1977,2.9532,6.0333,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +1978,2.8573,9.5077,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,837,0 +1979,2.9853,10.3342,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,770,0 +1980,5.2644,6.1340,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,961,0 +1981,2.9532,5.7915,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1982,2.8573,10.2575,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1120,0 +1983,2.9853,10.2693,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1002,0 +1984,5.2644,6.0515,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,903,0 +1985,2.9532,5.6550,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1986,2.8573,10.4879,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,1033,0 +1987,2.9853,10.4277,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,1154,0 +1988,5.2644,5.7730,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,850,0 +1989,2.9532,5.6210,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1990,2.8573,10.2053,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,1323,0 +1991,2.9853,10.2197,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1020,0 +1992,5.2644,5.7413,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,818,0 +1993,2.9532,5.4983,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1994,2.8573,10.4198,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,1158,0 +1995,2.9853,10.3578,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1397,0 +1996,5.2644,5.9267,0.0179,0.0000,0,0,0.0000,0,0.0000,0,0,0,757,0 +1997,2.9532,5.6498,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +1998,2.8573,10.4549,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,1102,0 +1999,2.9853,10.3993,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,718,0 +2000,5.2644,5.8627,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,826,0 +2001,2.9532,5.6115,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2002,2.8573,10.3264,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,947,0 +2003,2.9853,10.3800,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2004,5.2644,5.9023,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,810,0 +2005,2.9532,5.5775,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2006,2.8573,10.3791,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1271,0 +2007,2.9853,10.3095,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2008,5.2644,5.8893,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2009,2.9532,5.6129,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2010,2.8573,10.4716,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2011,2.9853,10.4486,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +2012,5.2644,5.8701,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +2013,2.9532,5.6566,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2014,2.8573,10.2754,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2015,2.9853,10.2678,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2016,5.2644,5.8406,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,657,0 +2017,2.9532,5.5720,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2018,2.8573,10.4175,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2019,2.9853,10.3120,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,917,0 +2020,5.2644,5.8402,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,666,0 +2021,2.9532,5.6247,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2022,2.8573,10.4566,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,732,0 +2023,2.9853,10.3870,0.0070,0.0000,0,0,0.0000,0,0.0000,0,0,0,1093,0 +2024,5.2644,5.8728,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,640,0 +2025,2.9532,5.6536,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2026,2.8573,10.4638,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,773,0 +2027,2.9853,10.3630,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2028,5.2644,5.9705,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,654,0 +2029,2.9532,5.6019,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2030,2.8573,10.3072,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2031,2.9853,10.2447,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2032,5.2644,5.9673,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,628,0 +2033,2.9532,5.7028,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2034,2.8573,10.5541,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,842,0 +2035,2.9853,10.4585,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2036,5.2644,5.9066,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +2037,2.9532,5.5851,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2038,2.8573,10.5510,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,777,0 +2039,2.9853,10.4593,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2040,5.2644,6.1551,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,610,0 +2041,2.9532,5.6975,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2042,2.8573,10.5348,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,753,0 +2043,2.9853,10.3830,0.0033,0.0000,0,0,0.0000,0,0.0000,0,0,0,851,0 +2044,5.2644,5.7519,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2045,2.9532,5.5486,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2046,2.8573,10.4028,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,761,0 +2047,2.9853,10.2954,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,798,0 +2048,5.2644,6.1740,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2049,2.9532,5.8937,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2050,2.8573,10.8899,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1003,0 +2051,2.9853,10.8834,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,969,0 +2052,5.2644,5.8558,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2053,2.9532,5.6151,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2054,2.8573,10.5728,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2055,2.9853,10.6466,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2056,5.2644,5.6441,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2057,2.9532,5.5516,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2058,2.8573,10.4867,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2059,2.9853,10.4968,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2060,5.2644,6.0005,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2061,2.9532,5.8023,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2062,2.8573,10.6722,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2063,2.9853,10.6903,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2064,5.2644,5.9378,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2065,2.9532,5.7940,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2066,2.8573,10.7146,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2067,2.9853,10.7511,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,734,0 +2068,5.2644,5.9247,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2069,2.9532,5.7737,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2070,2.8573,10.9596,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +2071,2.9853,10.9422,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,788,0 +2072,5.2644,6.1010,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2073,2.9532,5.9517,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2074,2.8573,11.0384,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,714,0 +2075,2.9853,11.0414,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,848,0 +2076,5.2644,6.1759,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2077,2.9532,5.9935,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2078,2.8573,11.1904,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,756,0 +2079,2.9853,11.1974,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,958,0 +2080,5.2644,6.2389,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2081,2.9532,6.0484,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2082,2.8573,11.1619,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,727,0 +2083,2.9853,11.1233,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2084,5.2644,6.2529,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2085,2.9532,6.0209,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2086,2.8573,11.3439,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,720,0 +2087,2.9853,11.2305,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2088,5.2644,6.5598,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2089,2.9532,6.1139,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2090,2.8573,11.4543,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,719,0 +2091,2.9853,11.2817,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2092,5.2644,6.4377,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2093,2.9532,6.1298,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2094,2.8573,10.4748,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,875,0 +2095,2.9853,10.4972,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2096,5.2644,5.8412,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2097,2.9532,5.5756,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2098,2.8573,10.4358,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,702,0 +2099,2.9853,10.3781,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,737,0 +2100,5.2644,5.7939,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2101,2.9532,5.5993,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2102,2.8573,10.3205,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2103,2.9853,10.2777,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,733,0 +2104,5.2644,5.8465,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2105,2.9532,5.5682,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2106,2.8573,10.3777,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2107,2.9853,10.3332,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,857,0 +2108,5.2644,5.9958,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2109,2.9532,5.6090,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2110,2.8573,10.4008,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2111,2.9853,10.3669,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2112,5.2644,5.9265,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2113,2.9532,5.6449,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2114,2.8573,10.5463,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,713,0 +2115,2.9853,10.5369,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2116,5.2644,5.8683,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2117,2.9532,5.7128,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2118,2.8573,10.6415,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2119,2.9853,10.6789,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2120,5.2644,5.9684,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2121,2.9532,5.8520,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2122,2.8573,10.9130,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,740,0 +2123,2.9853,10.9233,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2124,5.2644,5.9452,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2125,2.9532,5.8232,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2126,2.8573,10.8266,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,760,0 +2127,2.9853,10.8903,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2128,5.2644,5.9239,0.0232,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2129,2.9532,5.7496,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2130,2.8573,10.7295,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,739,0 +2131,2.9853,10.7688,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2132,5.2644,6.1338,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2133,2.9532,5.9568,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2134,2.8573,11.2196,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2135,2.9853,11.2755,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,790,0 +2136,5.2644,6.4010,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2137,2.9532,6.0207,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2138,2.8573,11.2060,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2139,2.9853,11.1715,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2140,5.2644,6.2790,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2141,2.9532,6.0813,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,599,0 +2142,2.8573,11.1436,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2143,2.9853,11.1015,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,695,0 +2144,5.2644,6.2245,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +2145,2.9532,6.0324,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,597,0 +2146,2.8573,11.1627,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,693,0 +2147,2.9853,11.1067,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,697,0 +2148,5.2644,6.2321,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +2149,2.9532,6.0152,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,587,0 +2150,2.8573,10.9685,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1072,0 +2151,2.9853,10.9148,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1480,0 +2152,5.2644,6.2905,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +2153,2.9532,6.0189,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,588,0 +2154,2.8573,11.0679,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,1334,0 +2155,2.9853,11.0516,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,1403,0 +2156,5.2644,6.3696,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2157,2.9532,6.1484,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,774,0 +2158,2.8573,11.4403,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,820,0 +2159,2.9853,11.1105,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,867,0 +2160,5.2644,43.0983,0.0087,0.0000,0,0,0.0000,0,0.0000,0,1,0,60271,0 +2161,2.9532,29.9167,0.0077,0.0000,0,0,0.0000,0,0.0000,0,1,0,43482,0 +2162,2.8573,26.4366,0.0038,0.0000,0,0,0.0000,0,0.0000,0,1,0,59828,0 +2163,2.9853,28.1728,0.0107,0.0000,0,0,0.0000,0,0.0000,0,1,0,68126,0 +2164,5.2644,5.9562,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,16498,0 +2165,2.9532,5.7644,0.0315,0.0000,0,0,0.0000,0,0.0000,0,0,0,14403,0 +2166,2.8573,10.8052,0.0234,0.0000,0,0,0.0000,0,0.0000,0,0,0,17862,0 +2167,2.9853,10.7965,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,17138,0 +2168,5.2644,5.8177,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,9226,0 +2169,2.9532,5.7341,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,6914,0 +2170,2.8573,10.8395,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,11125,0 +2171,2.9853,10.8454,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,9621,0 +2172,5.2644,5.8788,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,17369,0 +2173,2.9532,5.8269,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,16755,0 +2174,2.8573,10.8781,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,19658,0 +2175,2.9853,10.8900,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,15622,0 +2176,5.2644,5.8195,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,23309,0 +2177,2.9532,5.7512,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,20346,0 +2178,2.8573,10.7724,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,22802,0 +2179,2.9853,10.7419,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,21407,0 +2180,5.2644,5.7554,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,13027,0 +2181,2.9532,5.7982,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,11737,0 +2182,2.8573,10.5875,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,12722,0 +2183,2.9853,10.6638,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,16214,0 +2184,5.2644,5.8640,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,7002,0 +2185,2.9532,5.7363,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,5132,0 +2186,2.8573,10.7460,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,7491,0 +2187,2.9853,10.7347,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4790,0 +2188,5.2644,5.8730,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,3933,0 +2189,2.9532,5.8124,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3799,0 +2190,2.8573,10.7571,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,4399,0 +2191,2.9853,10.8701,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,3276,0 +2192,5.2644,5.7781,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,3260,0 +2193,2.9532,5.6774,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2850,0 +2194,2.8573,10.5194,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,3280,0 +2195,2.9853,10.4890,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,2761,0 +2196,5.2644,5.8922,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,3090,0 +2197,2.9532,5.7203,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,2691,0 +2198,2.8573,10.9940,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,3020,0 +2199,2.9853,11.0125,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,2648,0 +2200,5.2644,6.3605,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,2664,0 +2201,2.9532,6.0730,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,2213,0 +2202,2.8573,11.3123,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1084,0 +2203,2.9853,11.2687,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,2638,0 +2204,5.2644,6.2615,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,1673,0 +2205,2.9532,6.0823,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1302,0 +2206,2.8573,11.1665,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,959,0 +2207,2.9853,11.1498,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,2173,0 +2208,5.2644,6.2841,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1538,0 +2209,2.9532,6.0881,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,1107,0 +2210,2.8573,11.2717,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,819,0 +2211,2.9853,11.2419,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,1668,0 +2212,5.2644,6.1481,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,1248,0 +2213,2.9532,6.0756,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,944,0 +2214,2.8573,11.2950,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,945,0 +2215,2.9853,11.2897,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,743,0 +2216,5.2644,6.3655,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2217,2.9532,6.1268,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2218,2.8573,11.3401,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1250,0 +2219,2.9853,11.3100,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2220,5.2644,6.5173,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,1168,0 +2221,2.9532,6.2983,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2222,2.8573,11.6113,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,1108,0 +2223,2.9853,11.4642,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,792,0 +2224,5.2644,6.9788,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,1037,0 +2225,2.9532,6.4539,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2226,2.8573,11.7385,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,1361,0 +2227,2.9853,11.6807,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,925,0 +2228,5.2644,6.4763,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,987,0 +2229,2.9532,6.2185,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,676,0 +2230,2.8573,11.4820,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,1198,0 +2231,2.9853,11.4635,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1094,0 +2232,5.2644,6.3738,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,879,0 +2233,2.9532,6.2155,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,648,0 +2234,2.8573,11.5422,0.0026,0.0000,0,0,0.0000,0,0.0000,0,0,0,1117,0 +2235,2.9853,11.4270,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,1077,0 +2236,5.2644,6.3897,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,746,0 +2237,2.9532,6.2573,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,643,0 +2238,2.8573,11.4106,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1064,0 +2239,2.9853,11.1817,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,1295,0 +2240,5.2644,6.8354,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,687,0 +2241,2.9532,6.3975,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2242,2.8573,7.8239,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,1368,0 +2243,2.9853,10.7432,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2244,5.2644,6.3762,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,716,0 +2245,2.9532,6.1960,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,620,0 +2246,2.8573,11.2555,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2247,2.9853,11.1880,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,715,0 +2248,5.2644,7.1017,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2249,2.9532,8.0390,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,613,0 +2250,2.8573,11.9618,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2251,2.9853,11.7567,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,724,0 +2252,5.2644,7.0534,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,685,0 +2253,2.9532,6.4811,0.0110,0.0000,0,0,0.0000,0,0.0000,0,0,0,617,0 +2254,2.8573,11.5134,0.0128,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2255,2.9853,10.6015,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2256,5.2644,7.0252,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,664,0 +2257,2.9532,6.8724,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2258,2.8573,12.3624,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,785,0 +2259,2.9853,12.8433,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,906,0 +2260,5.2644,7.0234,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,636,0 +2261,2.9532,6.9345,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2262,2.8573,11.4864,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,868,0 +2263,2.9853,11.3283,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2264,5.2644,6.7025,0.0389,0.0000,0,0,0.0000,0,0.0000,0,0,0,635,0 +2265,2.9532,6.2885,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,608,0 +2266,2.8573,11.0195,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2267,2.9853,10.9963,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,966,0 +2268,5.2644,6.6698,0.0388,0.0000,0,0,0.0000,0,0.0000,0,0,0,650,0 +2269,2.9532,6.1759,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2270,2.8573,11.3531,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,1017,0 +2271,2.9853,11.2480,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2272,5.2644,6.3696,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,646,0 +2273,2.9532,6.1430,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,607,0 +2274,2.8573,11.4889,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,933,0 +2275,2.9853,11.4925,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2276,5.2644,6.6845,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,651,0 +2277,2.9532,6.7074,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,609,0 +2278,2.8573,11.9593,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,926,0 +2279,2.9853,11.9952,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2280,5.2644,7.2100,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,638,0 +2281,2.9532,6.8679,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2282,2.8573,9.9352,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,856,0 +2283,2.9853,11.0254,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,752,0 +2284,5.2644,7.1602,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,623,0 +2285,2.9532,6.3994,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2286,2.8573,11.4480,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,1082,0 +2287,2.9853,11.4445,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,805,0 +2288,5.2644,7.5888,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,626,0 +2289,2.9532,6.3144,0.0091,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2290,2.8573,11.6540,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,712,0 +2291,2.9853,11.6523,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,775,0 +2292,5.2644,7.0012,0.0104,0.0000,0,0,0.0000,0,0.0000,0,0,0,622,0 +2293,2.9532,6.5817,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2294,2.8573,10.6998,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,709,0 +2295,2.9853,10.7605,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,911,0 +2296,5.2644,6.9723,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,611,0 +2297,2.9532,6.4017,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2298,2.8573,10.6834,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,723,0 +2299,2.9853,14.0825,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2300,5.2644,7.6917,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,618,0 +2301,2.9532,6.4280,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2302,2.8573,11.7098,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,744,0 +2303,2.9853,11.7356,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2304,5.2644,7.6899,0.0081,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2305,2.9532,6.8956,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2306,2.8573,11.3800,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,786,0 +2307,2.9853,11.1364,0.0079,0.0000,0,0,0.0000,0,0.0000,0,0,0,704,0 +2308,5.2644,7.0646,0.0102,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2309,2.9532,6.2645,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2310,2.8573,9.7920,0.0092,0.0000,0,0,0.0000,0,0.0000,0,0,0,780,0 +2311,2.9853,9.4155,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,741,0 +2312,5.2644,7.4746,0.0100,0.0000,0,0,0.0000,0,0.0000,0,0,0,605,0 +2313,2.9532,6.2981,0.0101,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2314,2.8573,10.8080,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,808,0 +2315,2.9853,10.8894,0.0018,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2316,5.2644,7.1833,0.0078,0.0000,0,0,0.0000,0,0.0000,0,0,0,606,0 +2317,2.9532,6.4949,0.0020,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2318,2.8573,11.7486,0.0088,0.0000,0,0,0.0000,0,0.0000,0,0,0,795,0 +2319,2.9853,11.1718,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,738,0 +2320,5.2644,7.5747,0.0062,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2321,2.9532,6.3507,0.0012,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2322,2.8573,10.8704,0.0068,0.0000,0,0,0.0000,0,0.0000,0,0,0,771,0 +2323,2.9853,10.9346,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,836,0 +2324,5.2644,7.0148,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2325,2.9532,6.1988,0.0021,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2326,2.8573,11.3102,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,779,0 +2327,2.9853,11.0554,0.0066,0.0000,0,0,0.0000,0,0.0000,0,0,0,698,0 +2328,5.2644,7.1323,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2329,2.9532,6.3545,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2330,2.8573,11.7203,0.3050,0.0000,0,0,0.0000,0,0.0000,0,0,0,967,0 +2331,2.9853,11.9458,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2332,5.2644,7.4546,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2333,2.9532,6.6325,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2334,2.8573,11.5193,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,710,0 +2335,2.9853,11.4503,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,700,0 +2336,5.2644,7.4445,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2337,2.9532,6.3407,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2338,2.8573,12.5124,0.0060,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2339,2.9853,12.5181,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,721,0 +2340,5.2644,7.3759,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2341,2.9532,6.3084,0.0072,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2342,2.8573,13.8835,0.0084,0.0000,0,0,0.0000,0,0.0000,0,0,0,708,0 +2343,2.9853,13.6758,0.0016,0.0000,0,0,0.0000,0,0.0000,0,0,0,783,0 +2344,5.2644,7.6056,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2345,2.9532,6.4209,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2346,2.8573,13.8289,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,751,0 +2347,2.9853,13.5408,0.0071,0.0000,0,0,0.0000,0,0.0000,0,0,0,755,0 +2348,5.2644,6.9997,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2349,2.9532,7.1519,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2350,2.8573,9.8154,0.0028,0.0000,0,0,0.0000,0,0.0000,0,0,0,762,0 +2351,2.9853,10.9026,0.0019,0.0000,0,0,0.0000,0,0.0000,0,0,0,801,0 +2352,5.2644,7.5773,0.0093,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2353,2.9532,6.5148,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2354,2.8573,13.6390,0.0418,0.0000,0,0,0.0000,0,0.0000,0,0,0,747,0 +2355,2.9853,13.3634,0.0017,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2356,5.2644,6.7199,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2357,2.9532,6.1675,0.0011,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2358,2.8573,10.9728,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,830,0 +2359,2.9853,10.8291,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2360,5.2644,7.2024,0.0099,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2361,2.9532,6.2475,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2362,2.8573,11.2447,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,769,0 +2363,2.9853,11.1508,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2364,5.2644,6.7110,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2365,2.9532,6.0512,0.0023,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2366,2.8573,12.5160,0.0075,0.0000,0,0,0.0000,0,0.0000,0,0,0,728,0 +2367,2.9853,12.1914,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,717,0 +2368,5.2644,9.8655,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2369,2.9532,9.1722,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2370,2.8573,10.0866,0.0014,0.0000,0,0,0.0000,0,0.0000,0,0,0,726,0 +2371,2.9853,10.2900,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,731,0 +2372,5.2644,5.8710,0.0029,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2373,2.9532,5.6572,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2374,2.8573,10.5606,0.0025,0.0000,0,0,0.0000,0,0.0000,0,0,0,833,0 +2375,2.9853,10.5220,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,722,0 +2376,5.2644,5.7793,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2377,2.9532,5.5329,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2378,2.8573,10.4172,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2379,2.9853,10.3613,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,758,0 +2380,5.2644,5.8647,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2381,2.9532,5.5875,0.0027,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2382,2.8573,10.8165,0.0007,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2383,2.9853,10.7512,0.0004,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2384,5.2644,5.8206,0.0031,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2385,2.9532,5.5860,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2386,2.8573,10.5533,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2387,2.9853,10.5394,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,705,0 +2388,5.2644,6.0640,0.0032,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2389,2.9532,5.6911,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2390,2.8573,10.7710,0.0013,0.0000,0,0,0.0000,0,0.0000,0,0,0,696,0 +2391,2.9853,10.7724,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2392,5.2644,5.8228,0.0015,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2393,2.9532,5.5838,0.0008,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2394,2.8573,10.6901,0.0010,0.0000,0,0,0.0000,0,0.0000,0,0,0,701,0 +2395,2.9853,10.7160,0.0006,0.0000,0,0,0.0000,0,0.0000,0,0,0,707,0 +2396,5.2644,5.8291,0.0024,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2397,2.9532,5.6585,0.0009,0.0000,0,0,0.0000,0,0.0000,0,0,0,601,0 +2398,2.8573,10.5746,0.0022,0.0000,0,0,0.0000,0,0.0000,0,0,0,703,0 +2399,2.9853,10.5423,0.0005,0.0000,0,0,0.0000,0,0.0000,0,0,0,736,0 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.txt b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.txt new file mode 100644 index 0000000..b93897b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.txt @@ -0,0 +1,76 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic-tiled +source=synthetic-nv12-tiled +resolution=5120x2880 +tile_columns=2 +tile_rows=2 +tile_resolution=2560x1440 +tile_reuse_buffers=on +tile_max_inflight_logical_frames=1 +tile_reset_every_frames=180 +tile_reset_stagger_frames=0 +tile_segment_hints=on +warmup_frames=30 +target_fps=60 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=30 +data_rate_limit_mbps=30 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=on +more_frames_before_start=auto +more_frames_after_end=auto +source_frame_count=auto +max_frame_delay_count=0 +payload_format=length-prefixed +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +frames_requested=600 +frames_submitted=600 +frames_skipped=0 +frames_encoded=600 +failed_frames=0 +steady_frames_encoded=570 +elapsed_seconds=9.996 +effective_logical_fps=60.025 +tile_frames_requested=2400 +tile_frames_encoded=2400 +failed_tile_frames=0 +avg_encode_latency_ms=12.643 +p95_encode_latency_ms=14.417 +max_encode_latency_ms=127.892 +avg_steady_encode_latency_ms=12.576 +p95_steady_encode_latency_ms=14.448 +max_steady_encode_latency_ms=127.892 +avg_tile_encode_latency_ms=8.631 +p95_tile_encode_latency_ms=11.463 +avg_max_tile_encode_latency_ms=11.082 +p95_max_tile_encode_latency_ms=11.963 +avg_steady_max_tile_encode_latency_ms=11.088 +p95_steady_max_tile_encode_latency_ms=11.980 +payload_bytes=7840914 +send_target=none +csv=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.csv +logical_csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_logical.csv diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_deadline.md b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_deadline.md new file mode 100644 index 0000000..0605037 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_deadline.md @@ -0,0 +1,25 @@ +# Tiled Deadline Analysis — segment_hints_tiled_first_logical.csv + +| Metric | Value | +|---|---:| +| logical_frames | 600 | +| avg_group_latency_ms | 12.643 | +| p95_group_latency_ms | 14.417 | +| max_group_latency_ms | 127.892 | +| effective_logical_fps | 60.025 | +| tile_reset_every_frames | 180 | +| tile_max_inflight_logical_frames | 1 | + +| Budget ms | Late frames | Late % | First late frame IDs | +|---:|---:|---:|---| +| 8.33 | 600 | 100.000% | 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... | +| 12.00 | 205 | 34.167% | 0, 44, 46, 48, 49, 50, 51, 52, 54, 56, 58, 78, ... | +| 16.67 | 9 | 1.500% | 0, 88, 158, 180, 214, 274, 360, 444, 540 | +| 20.00 | 5 | 0.833% | 0, 180, 274, 360, 540 | +| 33.33 | 4 | 0.667% | 0, 180, 360, 540 | +| 50.00 | 4 | 0.667% | 0, 180, 360, 540 | + +| Window | Avg ms | P95 ms | Max ms | +|---:|---:|---:|---:| +| 0-299 | 12.572 | 13.897 | 120.435 | +| 300-599 | 12.714 | 14.504 | 127.892 | diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_logical.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_logical.csv new file mode 100644 index 0000000..948008b --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_logical.csv @@ -0,0 +1,601 @@ +frame_id,completed_tiles,failed_tiles,group_latency_ms,max_tile_encode_latency_ms,payload_bytes +0,4,0,99.1385,26.3080,231707 +1,4,0,11.1911,10.6463,65901 +2,4,0,10.9267,10.4200,36886 +3,4,0,10.8847,10.4197,69404 +4,4,0,10.9390,10.4225,87864 +5,4,0,10.8908,10.3885,53700 +6,4,0,10.9864,10.5148,24415 +7,4,0,10.9548,10.4085,15407 +8,4,0,11.0427,10.4653,12151 +9,4,0,10.9897,10.4506,11449 +10,4,0,10.9232,10.4025,8599 +11,4,0,10.7469,10.3338,6107 +12,4,0,10.8893,10.3721,5132 +13,4,0,10.9622,10.4567,3880 +14,4,0,10.9359,10.4495,4001 +15,4,0,10.8214,10.3037,3860 +16,4,0,10.7472,10.3309,4045 +17,4,0,11.0144,10.4486,3955 +18,4,0,10.9908,10.5378,3721 +19,4,0,11.0085,10.5204,3748 +20,4,0,10.9866,10.4220,3386 +21,4,0,10.9135,10.3689,2761 +22,4,0,10.8611,10.3937,2750 +23,4,0,11.0868,10.5558,2836 +24,4,0,10.9548,10.4742,2977 +25,4,0,11.1199,10.5491,2960 +26,4,0,11.0895,10.4656,3010 +27,4,0,11.1170,10.5388,2978 +28,4,0,11.0693,10.4088,2889 +29,4,0,11.0685,10.3353,2914 +30,4,0,11.2398,10.6020,2847 +31,4,0,11.0188,10.4026,3111 +32,4,0,11.0595,10.5135,2714 +33,4,0,11.1957,10.6364,2843 +34,4,0,10.9936,10.4668,2633 +35,4,0,11.1061,10.4466,2659 +36,4,0,11.1125,10.4838,2696 +37,4,0,10.9042,10.3455,2728 +38,4,0,11.1495,10.5556,2772 +39,4,0,11.1159,10.5205,2740 +40,4,0,11.1117,10.4925,2809 +41,4,0,11.1107,10.4913,2679 +42,4,0,11.6560,10.9213,2865 +43,4,0,11.8025,11.0069,2612 +44,4,0,12.2144,11.2676,2626 +45,4,0,11.8362,10.8664,2693 +46,4,0,12.0953,11.1319,2708 +47,4,0,11.9339,11.0527,2765 +48,4,0,12.0335,11.1224,2645 +49,4,0,12.0113,11.0665,2733 +50,4,0,12.0275,11.0317,2667 +51,4,0,12.2709,11.2709,2647 +52,4,0,12.0809,10.9808,2659 +53,4,0,11.9913,11.1121,2757 +54,4,0,12.0097,11.0911,2656 +55,4,0,11.8544,11.0312,2594 +56,4,0,12.0472,11.1632,2603 +57,4,0,11.8195,10.9584,2605 +58,4,0,12.0157,11.0518,2610 +59,4,0,11.9608,11.1910,2641 +60,4,0,11.3531,10.4011,442009 +61,4,0,11.1458,10.5449,52997 +62,4,0,11.2416,10.6856,26956 +63,4,0,11.6752,10.9660,26939 +64,4,0,11.1120,10.5286,22402 +65,4,0,10.9943,10.4729,15271 +66,4,0,11.0952,10.4798,12647 +67,4,0,11.2614,10.6782,10161 +68,4,0,11.2338,10.5861,9695 +69,4,0,11.1055,10.5510,5893 +70,4,0,11.0815,10.5423,5590 +71,4,0,11.1508,10.6130,5226 +72,4,0,11.3200,10.5960,5095 +73,4,0,11.2071,10.6493,5164 +74,4,0,11.5621,10.8035,4634 +75,4,0,11.4755,10.8950,5338 +76,4,0,11.7583,10.9921,2984 +77,4,0,11.6730,10.9160,2918 +78,4,0,12.1145,11.3167,3051 +79,4,0,12.6580,10.3056,3217 +80,4,0,12.8557,11.0113,3680 +81,4,0,13.0725,10.9400,3433 +82,4,0,12.6015,10.2177,3891 +83,4,0,14.3549,11.7109,2978 +84,4,0,15.6271,13.1171,2906 +85,4,0,12.4413,10.9626,2925 +86,4,0,12.6766,10.4794,3487 +87,4,0,12.9415,10.7516,2969 +88,4,0,16.7482,14.2078,2822 +89,4,0,12.8643,11.0577,3027 +90,4,0,13.2617,11.0457,2708 +91,4,0,12.9012,10.7795,2735 +92,4,0,12.9467,10.8047,2688 +93,4,0,12.6765,10.6166,2954 +94,4,0,12.9795,10.6648,3013 +95,4,0,13.0364,11.1061,2878 +96,4,0,14.6470,10.1509,3036 +97,4,0,11.3465,10.5193,2909 +98,4,0,12.1222,10.4096,2598 +99,4,0,13.4266,11.5307,2609 +100,4,0,11.3485,10.3940,2615 +101,4,0,11.7784,10.2703,2652 +102,4,0,11.9372,10.4260,2667 +103,4,0,11.2569,10.6315,2728 +104,4,0,11.1140,10.5419,2632 +105,4,0,11.0650,10.5072,2620 +106,4,0,11.1389,10.4927,2603 +107,4,0,11.1234,10.5570,2633 +108,4,0,10.8926,10.0917,2885 +109,4,0,10.8313,10.3126,2631 +110,4,0,10.8077,10.1365,2679 +111,4,0,10.8217,10.3101,2594 +112,4,0,10.9757,10.4345,2610 +113,4,0,10.7779,10.1707,2618 +114,4,0,10.9802,10.3439,2639 +115,4,0,10.8513,10.3242,2683 +116,4,0,10.9063,10.2469,2662 +117,4,0,10.7980,10.2276,2669 +118,4,0,10.9012,10.2995,2661 +119,4,0,10.7771,10.2583,2767 +120,4,0,10.5980,10.0591,412099 +121,4,0,11.0387,10.4970,58619 +122,4,0,10.9580,10.4403,48033 +123,4,0,10.8626,10.3544,38505 +124,4,0,10.8944,10.3898,33624 +125,4,0,10.9878,10.3432,18519 +126,4,0,10.9944,10.2959,15662 +127,4,0,10.8751,10.3857,11727 +128,4,0,10.8880,10.4178,10164 +129,4,0,11.0491,10.5586,8732 +130,4,0,10.8760,10.3662,8017 +131,4,0,10.9863,10.4388,5177 +132,4,0,10.8900,10.3567,3438 +133,4,0,11.1794,10.6357,3236 +134,4,0,11.3319,10.6577,3208 +135,4,0,11.3293,10.8070,3684 +136,4,0,11.1976,10.5703,3691 +137,4,0,11.2205,10.7102,3794 +138,4,0,11.0166,10.5206,3974 +139,4,0,11.2437,10.6978,3178 +140,4,0,11.1250,10.7522,3070 +141,4,0,11.0814,10.6366,3397 +142,4,0,11.2500,10.8235,2792 +143,4,0,11.1058,10.6834,2888 +144,4,0,11.2228,10.7224,2885 +145,4,0,11.2769,10.6990,3092 +146,4,0,11.3204,10.5982,2712 +147,4,0,12.0080,11.1628,2692 +148,4,0,12.8687,11.2378,2781 +149,4,0,12.5797,10.8904,2731 +150,4,0,13.7873,11.7500,2815 +151,4,0,12.8348,10.7082,2761 +152,4,0,12.7222,10.6013,3174 +153,4,0,11.9294,10.6114,2599 +154,4,0,11.9078,11.1990,2594 +155,4,0,11.5847,11.0715,2600 +156,4,0,12.0260,11.5229,2646 +157,4,0,11.6071,10.5940,2717 +158,4,0,18.3660,10.0390,2764 +159,4,0,11.7159,10.8299,2916 +160,4,0,12.0803,10.4463,2625 +161,4,0,11.7937,10.2648,2618 +162,4,0,12.4133,9.6526,2617 +163,4,0,11.3774,10.3737,2801 +164,4,0,11.1164,10.6555,2641 +165,4,0,11.2219,10.7395,2631 +166,4,0,11.1398,10.5352,2755 +167,4,0,11.3129,10.7646,2594 +168,4,0,11.2022,10.6710,2611 +169,4,0,11.0832,10.5247,2613 +170,4,0,11.3638,10.7744,2654 +171,4,0,11.2581,10.8014,2706 +172,4,0,11.9311,10.0736,2658 +173,4,0,12.7931,10.5696,2713 +174,4,0,12.8424,10.5147,2681 +175,4,0,13.2206,10.3646,2588 +176,4,0,13.3133,11.7406,2584 +177,4,0,11.5344,11.1057,3726 +178,4,0,12.0240,11.0065,3913 +179,4,0,11.8242,10.4860,3241 +180,4,0,120.4349,41.9086,231707 +181,4,0,11.2848,10.8477,65901 +182,4,0,11.2530,10.7758,36886 +183,4,0,11.0969,10.5047,69404 +184,4,0,11.2132,10.5380,87864 +185,4,0,11.1525,10.4953,53700 +186,4,0,11.5720,11.0399,24415 +187,4,0,11.2672,10.8069,15407 +188,4,0,11.0200,10.5467,12151 +189,4,0,11.0844,10.5339,11449 +190,4,0,11.1457,10.6256,8599 +191,4,0,11.3029,10.8823,6107 +192,4,0,11.4780,11.0380,5132 +193,4,0,11.3556,10.9371,3880 +194,4,0,11.0348,10.5500,4001 +195,4,0,11.1507,10.7575,3860 +196,4,0,11.2833,10.7209,4045 +197,4,0,11.3216,10.9533,3955 +198,4,0,11.5702,11.1261,3721 +199,4,0,11.6743,10.8365,3748 +200,4,0,11.9015,11.1235,3386 +201,4,0,11.6628,11.1961,2761 +202,4,0,11.2118,10.6979,2750 +203,4,0,11.1985,10.6933,2836 +204,4,0,11.0452,10.6092,2977 +205,4,0,11.0596,10.6312,2960 +206,4,0,11.3605,10.6849,3010 +207,4,0,11.5128,10.8279,2978 +208,4,0,11.8409,11.0900,2889 +209,4,0,12.2542,11.6235,2914 +210,4,0,14.2095,11.3045,2847 +211,4,0,11.9685,11.1349,3111 +212,4,0,11.5201,10.9830,2714 +213,4,0,11.2724,10.8320,2843 +214,4,0,17.5488,13.9232,2633 +215,4,0,11.1950,10.7850,2659 +216,4,0,11.8565,11.2511,2696 +217,4,0,13.2504,11.1698,2728 +218,4,0,13.7707,12.3357,2772 +219,4,0,11.5213,10.7381,2740 +220,4,0,11.3348,10.6441,2809 +221,4,0,11.2224,10.7872,2679 +222,4,0,16.3436,16.0275,2865 +223,4,0,10.8155,10.3906,2612 +224,4,0,13.2502,12.1324,2626 +225,4,0,12.1363,11.0421,2693 +226,4,0,13.5664,9.4478,2708 +227,4,0,11.9219,10.7167,2765 +228,4,0,14.6587,12.9358,2645 +229,4,0,12.3138,10.6399,2733 +230,4,0,11.7170,10.5726,2667 +231,4,0,11.3096,10.6085,2647 +232,4,0,11.0326,10.5230,2659 +233,4,0,10.9422,10.5521,2757 +234,4,0,11.2430,10.5850,2656 +235,4,0,11.2022,10.7434,2594 +236,4,0,11.1385,10.6749,2603 +237,4,0,11.1426,10.6341,2605 +238,4,0,11.0108,10.4686,2610 +239,4,0,11.2748,10.8340,2641 +240,4,0,11.0488,10.6117,442009 +241,4,0,12.1435,10.3291,52997 +242,4,0,12.0765,10.3819,26956 +243,4,0,12.2572,10.5155,26939 +244,4,0,11.5839,10.0265,22402 +245,4,0,11.1545,10.5505,15271 +246,4,0,11.0282,10.5747,12647 +247,4,0,11.7433,11.1908,10161 +248,4,0,12.1450,11.1333,9695 +249,4,0,15.6346,9.8045,5893 +250,4,0,12.7513,10.6640,5590 +251,4,0,13.1921,10.0538,5226 +252,4,0,12.4313,11.5535,5095 +253,4,0,12.5871,10.9823,5164 +254,4,0,13.5118,10.8319,4634 +255,4,0,13.0816,12.6304,5338 +256,4,0,12.9023,11.2255,2984 +257,4,0,12.9475,10.8780,2918 +258,4,0,13.4246,10.9614,3051 +259,4,0,14.6222,8.8966,3217 +260,4,0,11.9723,10.6571,3680 +261,4,0,12.5677,11.4654,3433 +262,4,0,12.1975,11.4803,3891 +263,4,0,12.7710,11.8417,2978 +264,4,0,14.6587,12.8939,2906 +265,4,0,13.2797,10.9551,2925 +266,4,0,13.0889,10.8129,3487 +267,4,0,12.8160,10.8120,2969 +268,4,0,12.9368,10.8534,2822 +269,4,0,13.5791,11.7300,3027 +270,4,0,13.0107,10.9979,2708 +271,4,0,13.0694,11.4102,2735 +272,4,0,12.7662,11.0783,2688 +273,4,0,12.8183,10.6923,2954 +274,4,0,24.6835,22.5655,3013 +275,4,0,12.4366,10.8406,2878 +276,4,0,11.2094,10.5248,3036 +277,4,0,11.5443,10.7125,2909 +278,4,0,12.3762,10.4509,2598 +279,4,0,13.0318,11.2052,2609 +280,4,0,13.8806,10.9413,2615 +281,4,0,13.2748,11.1613,2652 +282,4,0,12.3270,10.4687,2667 +283,4,0,11.9015,10.1779,2728 +284,4,0,12.1707,10.5244,2632 +285,4,0,12.0928,10.7514,2620 +286,4,0,12.6901,10.9135,2603 +287,4,0,13.3472,11.0481,2633 +288,4,0,12.9612,10.8402,2885 +289,4,0,13.0921,11.2909,2631 +290,4,0,13.0511,10.8669,2679 +291,4,0,13.5490,11.8433,2594 +292,4,0,13.4945,10.5882,2610 +293,4,0,13.0527,10.6236,2618 +294,4,0,12.4585,11.4735,2639 +295,4,0,11.8552,10.9730,2683 +296,4,0,11.6227,10.9560,2662 +297,4,0,11.7110,11.0091,2669 +298,4,0,11.8787,11.0971,2661 +299,4,0,12.1403,11.1895,2767 +300,4,0,12.1052,11.0515,412099 +301,4,0,12.5409,11.5430,58619 +302,4,0,11.9812,11.1556,48033 +303,4,0,11.6472,10.9900,38505 +304,4,0,11.6175,11.0378,33624 +305,4,0,12.3990,11.2507,18519 +306,4,0,11.1553,10.5433,15662 +307,4,0,11.4807,10.8807,11727 +308,4,0,11.0735,10.5025,10164 +309,4,0,11.0690,10.4049,8732 +310,4,0,11.1993,10.4821,8017 +311,4,0,11.3803,10.6843,5177 +312,4,0,11.1205,10.5071,3438 +313,4,0,11.1273,10.6779,3236 +314,4,0,11.0479,10.6192,3208 +315,4,0,11.1932,10.6257,3684 +316,4,0,11.3028,10.7041,3691 +317,4,0,10.9185,10.4990,3794 +318,4,0,11.2470,10.5424,3974 +319,4,0,11.0928,10.4793,3178 +320,4,0,11.2485,10.6653,3070 +321,4,0,11.2390,10.6250,3397 +322,4,0,11.2285,10.3841,2792 +323,4,0,11.1540,10.5440,2888 +324,4,0,10.9777,10.4451,2885 +325,4,0,11.2451,10.6879,3092 +326,4,0,11.1382,10.6528,2712 +327,4,0,11.0698,10.3896,2692 +328,4,0,11.1753,10.6065,2781 +329,4,0,11.0809,10.6147,2731 +330,4,0,11.0745,10.6357,2815 +331,4,0,11.0615,10.5921,2761 +332,4,0,11.3923,10.8417,3174 +333,4,0,11.3102,10.6802,2599 +334,4,0,11.3083,10.9259,2594 +335,4,0,11.6270,10.7078,2600 +336,4,0,12.0319,11.3093,2646 +337,4,0,11.7293,11.2323,2717 +338,4,0,11.6888,11.1843,2764 +339,4,0,11.3552,10.6427,2916 +340,4,0,11.2749,10.7890,2625 +341,4,0,10.9901,10.5634,2618 +342,4,0,10.9676,10.5537,2617 +343,4,0,11.1730,10.6214,2801 +344,4,0,11.0491,10.5350,2641 +345,4,0,11.1240,10.5676,2631 +346,4,0,11.0893,10.5417,2755 +347,4,0,10.9527,10.5034,2594 +348,4,0,11.0351,10.6132,2611 +349,4,0,10.8939,10.4030,2613 +350,4,0,11.1207,10.6075,2654 +351,4,0,11.1770,10.6773,2706 +352,4,0,11.0388,10.4763,2658 +353,4,0,11.1211,10.5797,2713 +354,4,0,11.2224,10.6813,2681 +355,4,0,11.0474,10.5335,2588 +356,4,0,11.0146,10.4629,2584 +357,4,0,11.5309,10.9201,3726 +358,4,0,11.9921,10.3275,3913 +359,4,0,11.9908,10.1233,3241 +360,4,0,127.1477,38.5358,231707 +361,4,0,11.3990,10.8678,65901 +362,4,0,11.1747,10.7335,36886 +363,4,0,11.5303,10.9697,69404 +364,4,0,11.2053,10.5690,87864 +365,4,0,11.1203,10.5131,53700 +366,4,0,11.3195,10.7759,24415 +367,4,0,11.2074,10.7149,15407 +368,4,0,11.3920,10.9207,12151 +369,4,0,11.1523,10.6151,11449 +370,4,0,11.2715,10.7761,8599 +371,4,0,11.3538,10.8324,6107 +372,4,0,11.3018,10.6869,5132 +373,4,0,11.1261,10.5518,3880 +374,4,0,11.1365,10.5505,4001 +375,4,0,11.3879,10.8806,3860 +376,4,0,11.5464,11.1035,4045 +377,4,0,11.6455,11.1193,3955 +378,4,0,11.8008,11.1810,3721 +379,4,0,11.7322,11.1441,3748 +380,4,0,11.7728,11.1836,3386 +381,4,0,11.9399,11.1511,2761 +382,4,0,11.1658,10.6773,2750 +383,4,0,11.3775,10.8861,2836 +384,4,0,11.0106,10.5226,2977 +385,4,0,11.2842,10.6077,2960 +386,4,0,11.3645,10.7182,3010 +387,4,0,11.7876,11.1354,2978 +388,4,0,11.8245,11.1335,2889 +389,4,0,11.6418,11.0082,2914 +390,4,0,11.6998,11.0110,2847 +391,4,0,11.7108,11.0545,3111 +392,4,0,11.6662,11.0693,2714 +393,4,0,11.6848,11.0906,2843 +394,4,0,11.8091,11.2195,2633 +395,4,0,11.8400,11.1136,2659 +396,4,0,11.9873,11.2828,2696 +397,4,0,12.3624,11.4230,2728 +398,4,0,12.0928,11.3908,2772 +399,4,0,12.2077,11.4026,2740 +400,4,0,12.5776,11.4543,2809 +401,4,0,12.1637,11.1545,2679 +402,4,0,12.2092,11.2560,2865 +403,4,0,12.1110,11.2284,2612 +404,4,0,12.0187,11.1659,2626 +405,4,0,11.6298,11.0204,2693 +406,4,0,11.3390,10.7489,2708 +407,4,0,11.4147,10.9013,2765 +408,4,0,11.4258,10.9297,2645 +409,4,0,11.2722,10.8616,2733 +410,4,0,11.3540,10.8362,2667 +411,4,0,11.0915,10.5925,2647 +412,4,0,11.4206,10.4426,2659 +413,4,0,11.2400,10.4951,2757 +414,4,0,11.2014,10.3769,2656 +415,4,0,11.6897,10.6122,2594 +416,4,0,13.0010,12.0129,2603 +417,4,0,12.4015,11.0611,2605 +418,4,0,12.2360,10.1857,2610 +419,4,0,11.6685,10.9823,2641 +420,4,0,11.0798,10.3309,442009 +421,4,0,11.2985,10.6656,52997 +422,4,0,13.1949,10.5348,26956 +423,4,0,11.4081,10.6985,26939 +424,4,0,11.7952,11.0081,22402 +425,4,0,12.4435,11.3763,15271 +426,4,0,12.0887,11.1631,12647 +427,4,0,11.2165,10.6431,10161 +428,4,0,11.4263,10.3727,9695 +429,4,0,12.3695,11.1810,5893 +430,4,0,15.7557,14.2320,5590 +431,4,0,11.4329,10.3401,5226 +432,4,0,11.6235,10.9705,5095 +433,4,0,11.7960,11.1185,5164 +434,4,0,11.6766,11.1139,4634 +435,4,0,12.0992,10.4640,5338 +436,4,0,12.3543,11.5729,2984 +437,4,0,12.6707,11.8319,2918 +438,4,0,12.7929,10.1043,3051 +439,4,0,11.6631,11.0834,3217 +440,4,0,12.0755,11.3551,3680 +441,4,0,13.1893,11.4738,3433 +442,4,0,13.0865,11.2990,3891 +443,4,0,12.6234,10.9397,2978 +444,4,0,16.7526,15.1730,2906 +445,4,0,11.5313,10.9597,2925 +446,4,0,11.1820,10.4357,3487 +447,4,0,11.6453,10.9092,2969 +448,4,0,11.2715,10.6766,2822 +449,4,0,11.0324,10.2893,3027 +450,4,0,11.2689,10.7430,2708 +451,4,0,11.1952,10.6474,2735 +452,4,0,11.2582,10.7562,2688 +453,4,0,10.9687,10.5596,2954 +454,4,0,11.3458,10.7013,3013 +455,4,0,11.4917,10.8487,2878 +456,4,0,11.2350,10.3940,3036 +457,4,0,11.8035,10.9580,2909 +458,4,0,11.9268,10.2897,2598 +459,4,0,12.0075,10.4954,2609 +460,4,0,11.8222,10.1177,2615 +461,4,0,12.0130,10.5641,2652 +462,4,0,11.9499,10.8152,2667 +463,4,0,13.0745,11.4670,2728 +464,4,0,13.1773,11.3260,2632 +465,4,0,11.8455,10.1384,2620 +466,4,0,13.1324,9.9500,2603 +467,4,0,11.9969,10.7973,2633 +468,4,0,12.3745,10.9507,2885 +469,4,0,13.1446,11.8036,2631 +470,4,0,12.5293,11.3819,2679 +471,4,0,12.7385,11.3745,2594 +472,4,0,13.0655,11.0965,2610 +473,4,0,16.1986,14.6467,2618 +474,4,0,13.2912,11.7796,2639 +475,4,0,14.1080,12.5126,2683 +476,4,0,13.1257,11.5465,2662 +477,4,0,14.9724,13.0220,2669 +478,4,0,15.2762,13.4534,2661 +479,4,0,16.4916,14.6820,2767 +480,4,0,12.2293,10.7281,412099 +481,4,0,13.7022,11.5457,58619 +482,4,0,13.1165,10.5209,48033 +483,4,0,14.4926,10.7225,38505 +484,4,0,14.7133,11.5740,33624 +485,4,0,16.6199,10.9999,18519 +486,4,0,12.9711,11.4214,15662 +487,4,0,12.6242,10.0768,11727 +488,4,0,11.1210,10.5195,10164 +489,4,0,11.4695,10.8618,8732 +490,4,0,11.7403,10.3869,8017 +491,4,0,11.5822,10.3094,5177 +492,4,0,12.1097,10.9108,3438 +493,4,0,12.1951,10.5165,3236 +494,4,0,12.3097,10.3342,3208 +495,4,0,11.4443,10.2693,3684 +496,4,0,11.2540,10.4879,3691 +497,4,0,11.0862,10.2197,3794 +498,4,0,10.9291,10.4198,3974 +499,4,0,11.1142,10.4549,3178 +500,4,0,11.0435,10.3800,3070 +501,4,0,10.9628,10.3791,3397 +502,4,0,11.0676,10.4716,2792 +503,4,0,10.9941,10.2754,2888 +504,4,0,10.9411,10.4175,2885 +505,4,0,11.0175,10.4566,3092 +506,4,0,11.0931,10.4638,2712 +507,4,0,11.0885,10.3072,2692 +508,4,0,11.1730,10.5541,2781 +509,4,0,11.1112,10.5510,2731 +510,4,0,11.3310,10.5348,2815 +511,4,0,10.9439,10.4028,2761 +512,4,0,11.4709,10.8899,3174 +513,4,0,11.2084,10.6466,2599 +514,4,0,10.8435,10.4968,2594 +515,4,0,11.2255,10.6903,2600 +516,4,0,11.1965,10.7511,2646 +517,4,0,11.4592,10.9596,2717 +518,4,0,11.5703,11.0414,2764 +519,4,0,11.7409,11.1974,2916 +520,4,0,11.7311,11.1619,2625 +521,4,0,11.8930,11.3439,2618 +522,4,0,12.2657,11.4543,2617 +523,4,0,11.7830,10.4972,2801 +524,4,0,11.0518,10.4358,2641 +525,4,0,11.0368,10.3205,2631 +526,4,0,10.9012,10.3777,2755 +527,4,0,11.0884,10.4008,2594 +528,4,0,11.2196,10.5463,2611 +529,4,0,11.2583,10.6789,2613 +530,4,0,11.3313,10.9233,2654 +531,4,0,11.2558,10.8903,2706 +532,4,0,11.2873,10.7688,2658 +533,4,0,11.7315,11.2755,2713 +534,4,0,11.9863,11.2060,2681 +535,4,0,11.8310,11.1436,2588 +536,4,0,11.7875,11.1627,2584 +537,4,0,11.6671,10.9685,3726 +538,4,0,11.8749,11.0679,3913 +539,4,0,12.1815,11.4403,3241 +540,4,0,127.8925,43.0983,231707 +541,4,0,11.3366,10.8052,65901 +542,4,0,11.3714,10.8454,36886 +543,4,0,11.3451,10.8900,69404 +544,4,0,11.2631,10.7724,87864 +545,4,0,11.1687,10.6638,53700 +546,4,0,11.1832,10.7460,24415 +547,4,0,11.3137,10.8701,15407 +548,4,0,11.0247,10.5194,12151 +549,4,0,11.5106,11.0125,11449 +550,4,0,12.0188,11.3123,8599 +551,4,0,11.8835,11.1665,6107 +552,4,0,11.8622,11.2717,5132 +553,4,0,11.9008,11.2950,3880 +554,4,0,12.0489,11.3401,4001 +555,4,0,12.1357,11.6113,3860 +556,4,0,12.7992,11.7385,4045 +557,4,0,12.1450,11.4820,3955 +558,4,0,12.0143,11.5422,3721 +559,4,0,12.2969,11.4106,3748 +560,4,0,15.0916,10.7432,3386 +561,4,0,11.8382,11.2555,2761 +562,4,0,12.6452,11.9618,2750 +563,4,0,13.4065,11.5134,2836 +564,4,0,13.7831,12.8433,2977 +565,4,0,12.1484,11.4864,2960 +566,4,0,12.1036,11.0195,3010 +567,4,0,12.3456,11.3531,2978 +568,4,0,12.1851,11.4925,2889 +569,4,0,12.4895,11.9952,2914 +570,4,0,14.4764,11.0254,2847 +571,4,0,13.0707,11.4480,3111 +572,4,0,13.6147,11.6540,2714 +573,4,0,13.0740,10.7605,2843 +574,4,0,16.1713,14.0825,2633 +575,4,0,13.5664,11.7356,2659 +576,4,0,12.9462,11.3800,2696 +577,4,0,13.0539,9.7920,2728 +578,4,0,12.8937,10.8894,2772 +579,4,0,13.3085,11.7486,2740 +580,4,0,13.3748,10.9346,2809 +581,4,0,12.6524,11.3102,2679 +582,4,0,13.3596,11.9458,2865 +583,4,0,13.1126,11.5193,2612 +584,4,0,14.4139,12.5181,2626 +585,4,0,15.4705,13.8835,2693 +586,4,0,15.5521,13.8289,2708 +587,4,0,13.7261,10.9026,2765 +588,4,0,15.9138,13.6390,2645 +589,4,0,12.3763,10.9728,2733 +590,4,0,12.9298,11.2447,2667 +591,4,0,14.3740,12.5160,2647 +592,4,0,11.6393,10.2900,2659 +593,4,0,11.0893,10.5606,2757 +594,4,0,10.9055,10.4172,2656 +595,4,0,11.3755,10.8165,2594 +596,4,0,11.0328,10.5533,2603 +597,4,0,11.5437,10.7724,2605 +598,4,0,11.3038,10.7160,2610 +599,4,0,11.0768,10.5746,2641 diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.csv b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.csv new file mode 100644 index 0000000..59c7c7d --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.csv @@ -0,0 +1,5 @@ +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +segment_hints_tiled_first,tiled,5120x2880,60,10,30,0,600,60.025,12.643,14.417,127.892,14.448,9,4,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.csv,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_logical.csv,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first_deadline.md,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/segment_hints_tiled_first.txt +post_tiled_4096_fallback,single,4096x2304,60,5,120,0,300,,25.900,46.669,48.487,,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.csv,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_4096_fallback.txt +post_tiled_3200_fallback,single,3200x1800,60,5,60,0,300,,23.536,42.616,59.099,,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.csv,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_3200_fallback.txt +post_tiled_2560_fallback,single,2560x1440,60,5,25,0,300,,10.122,16.482,30.765,,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.csv,,,benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/post_tiled_2560_fallback.txt diff --git a/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.md b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.md new file mode 100644 index 0000000..4ce13e9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/summary.md @@ -0,0 +1,10 @@ +# Clean Session Encoder Probe + +| Case | P95 ms | Result | +|---|---:|---| +| `segment_hints_tiled_first` | 14.417 | pass | +| `post_tiled_4096_fallback` | 46.669 | fail | +| `post_tiled_3200_fallback` | 42.616 | fail | +| `post_tiled_2560_fallback` | 16.482 | pass | + +Decision: high-detail fallback switching remains unsafe; keep product emergency fallback at `2560x1440@60` until a stronger reset boundary is proven. diff --git a/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.csv b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.csv new file mode 100644 index 0000000..2b8403b --- /dev/null +++ b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.2926,117.2223,0.0233,0.0000,0,0,0.0000,0,0.0000,0,1,0,19689,0 +1,5.0553,75.4897,0.0187,0.0000,0,0,0.0000,0,0.0000,0,0,0,23933,0 +2,5.5248,80.4201,0.0333,0.0000,0,0,0.0000,0,0.0000,0,0,0,46353,0 +3,8.7048,82.4669,0.0076,0.0000,0,0,0.0000,0,0.0000,0,0,0,32538,0 +4,14.6728,77.7800,0.0192,0.0000,0,0,0.0000,0,0.0000,0,0,0,36468,0 +5,5.9335,45.7440,0.0080,0.0000,0,0,0.0000,0,0.0000,0,0,0,34895,0 +6,5.5889,45.8671,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,39983,0 +7,6.0495,45.0180,0.0108,0.0000,0,0,0.0000,0,0.0000,0,0,0,38280,0 +8,5.0731,45.4949,0.0048,0.0000,0,0,0.0000,0,0.0000,0,0,0,33435,0 +9,4.7495,45.7189,0.0123,0.0000,0,0,0.0000,0,0.0000,0,0,0,43779,0 +10,5.4371,45.0007,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,35516,0 +11,5.1643,45.9303,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,42192,0 +12,5.1978,40.7082,0.0106,0.0000,0,0,0.0000,0,0.0000,0,0,0,38973,0 +13,10.7094,26.4618,0.0064,0.0000,0,0,0.0000,0,0.0000,0,0,0,40252,0 +14,8.9834,24.1384,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,39972,0 +15,7.2020,18.7296,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,40127,0 +16,6.4340,12.1268,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,30981,0 +17,5.5987,11.9019,0.0059,0.0000,0,0,0.0000,0,0.0000,0,0,0,39920,0 +18,7.3000,12.4099,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,46863,0 +19,4.4488,12.2020,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,46017,0 +20,4.9713,11.8703,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,36543,0 +21,5.1617,12.0540,0.0083,0.0000,0,0,0.0000,0,0.0000,0,0,0,38148,0 +22,5.2245,12.0418,0.0098,0.0000,0,0,0.0000,0,0.0000,0,0,0,46292,0 +23,5.5230,12.0777,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,38526,0 +24,5.3987,11.7586,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,38153,0 +25,5.2376,11.8746,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,47263,0 +26,5.4149,12.2139,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,37654,0 +27,5.4007,12.0847,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,39362,0 +28,5.2488,11.9252,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,37460,0 +29,5.3880,12.0882,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,39421,0 +30,5.3347,11.7715,0.0035,0.0000,0,0,0.0000,0,0.0000,0,0,0,39052,0 +31,5.3182,12.2142,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,40899,0 +32,5.4822,12.0501,0.0086,0.0000,0,0,0.0000,0,0.0000,0,0,0,28316,0 +33,5.2073,12.1291,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,32770,0 +34,5.2184,12.0083,0.0077,0.0000,0,0,0.0000,0,0.0000,0,0,0,48682,0 +35,5.2640,11.8521,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44676,0 +36,5.1959,11.8420,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,44231,0 +37,5.5217,12.0385,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44286,0 +38,5.3093,11.8213,0.0089,0.0000,0,0,0.0000,0,0.0000,0,0,0,38462,0 +39,5.3500,11.7377,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,38798,0 +40,5.0593,11.9630,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,36732,0 +41,5.3419,11.9278,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,39863,0 +42,5.2838,11.9062,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,46648,0 +43,5.4012,11.8628,0.0036,0.0000,0,0,0.0000,0,0.0000,0,0,0,38351,0 +44,5.3027,12.0828,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,38126,0 +45,5.3849,11.9295,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,37446,0 +46,5.4629,12.0433,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,38734,0 +47,5.6348,11.9942,0.0065,0.0000,0,0,0.0000,0,0.0000,0,0,0,39086,0 +48,5.4932,12.0340,0.0069,0.0000,0,0,0.0000,0,0.0000,0,0,0,38602,0 +49,5.5894,11.9027,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45289,0 +50,5.4162,11.9375,0.0082,0.0000,0,0,0.0000,0,0.0000,0,0,0,44386,0 +51,5.4173,12.0430,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,44958,0 +52,5.5248,12.0217,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,43806,0 +53,5.3327,11.7772,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,35980,0 +54,5.5088,11.6334,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,37972,0 +55,5.5501,12.0880,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,46656,0 +56,5.4490,11.9087,0.0094,0.0000,0,0,0.0000,0,0.0000,0,0,0,36771,0 +57,5.5328,11.9028,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,38263,0 +58,5.4456,11.8000,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46326,0 +59,5.4196,11.8734,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,38205,0 diff --git a/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.txt b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.txt new file mode 100644 index 0000000..eca4c0a --- /dev/null +++ b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.txt @@ -0,0 +1,225 @@ +supported_properties=Optional({ + AVCaptureDeviceReactionEffectsInProgress = { + }; + AllowCompressedPixelFormats = { + }; + AllowFrameReordering = { + }; + AllowPixelTransfer = { + }; + AllowQpModulation = { + }; + AllowTemporalCompression = { + }; + AlphaChannelMode = { + }; + AmbientViewingEnvironment = { + }; + AuxiliaryTypeInfo = { + }; + AverageBitRate = { + }; + AverageBitRateIntraLayer = { + }; + AverageTemporalBitRates = { + }; + BaseLayerBitRateFraction = { + }; + BaseLayerFrameRateFraction = { + }; + CalculateMeanSquaredError = { + }; + CallerID = { + }; + ChromaLocationBottomField = { + }; + ChromaLocationTopField = { + }; + CleanAperture = { + }; + ClientPID = { + }; + ColorPrimaries = { + }; + CommandLineParametersExtraOptions = { + }; + ComponentRange = { + }; + ConnectionID = { + }; + ContentLightLevelInfo = { + }; + DataRateLimits = { + }; + Depth = { + }; + EnableFrameDropping = { + }; + EnableLTR = { + }; + EncoderID = { + }; + EncoderUsage = { + }; + EncodesDisparity = { + }; + ExpectedFrameRate = { + }; + FaceRect = { + }; + FieldCount = { + }; + FieldDetail = { + }; + FigThreadPriority = { + }; + GammaLevel = { + }; + H264EntropyMode = { + }; + HDRMetadataInsertionMode = { + }; + HasAdditionalViews = { + }; + HasEyeViewsReversed = { + }; + HasLeftStereoEyeView = { + }; + HasRightStereoEyeView = { + }; + HeroEye = { + }; + HorizontalDisparityAdjustment = { + }; + HorizontalFieldOfView = { + }; + ICCProfile = { + }; + InsertTrailingBytes = { + }; + MasteringDisplayColorVolume = { + }; + MaxAllowedFrameQP = { + }; + MaxKeyFrameInterval = { + }; + MaxKeyFrameIntervalDuration = { + }; + MaxRefreshFrameIntervalDuration = { + }; + MaximizePowerEfficiency = { + }; + MinAllowedFrameQP = { + }; + MinAndMaxDisparity = { + }; + MinNumberOfTemporalLayers = { + }; + NegotiatedFLB = { + }; + NegotiationDetails = { + }; + NegotiationDetailsBitField = { + }; + NumberOfPendingFrames = { + }; + NumberOfSlices = { + }; + NumberOfSubFrameSections = { + }; + NumberOfTemporalLayers = { + }; + PixelAspectRatio = { + }; + PixelBufferPoolIsShared = { + }; + PixelTransferProperties = { + }; + PoolPixelBufferAttributes = { + }; + PoolPixelBufferAttributesSeed = { + }; + PowerLogSessionID = { + }; + PrepareEncodedSampleBuffersForPaddedWrites = { + }; + PreserveDynamicHDRMetadata = { + }; + ProfileLevel = { + SupportedValueList = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_MainStill_AutoLevel", + "HEVC_Main444_AutoLevel", + "HEVC_Main42210_AutoLevel", + "HEVC_Main44410_AutoLevel", + "HEVC_Monochrome_AutoLevel", + "HEVC_Monochrome10_AutoLevel" + ); + }; + ProjectionKind = { + }; + RealTime = { + }; + ReferenceBufferCount = { + }; + RemoteMLScale = { + }; + RequestedMaxEncoderLatency = { + }; + SliceDeltaQP = { + }; + SliceMaxQP = { + }; + SliceQP = { + }; + SourceFrameCount = { + }; + StereoCameraBaseline = { + }; + SupportsBaseFrameQP = { + }; + ThermalLevel = { + }; + TransferFunction = { + }; + TransportIdentifier = { + }; + UsingCellular = { + }; + UsingMetalRegistryID = { + }; + VideoEncoderPixelBufferAttributes = { + }; + ViewPackingKind = { + }; + WarpKind = { + }; + YCbCrMatrix = { + }; +}) +iBridge Primary synthetic encoder +resolution=2560x1440 +target_fps=60 +duration_seconds=1 +codec=hevc +bitrate_mbps=20 +low_latency_rate_control=on +max_keyframe_interval=60 +max_keyframe_interval_duration=1.000 +sender_queue_depth=4 +frames_requested=60 +frames_encoded=60 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.814 +avg_encode_latency_ms=23.149 +p95_encode_latency_ms=77.912 +max_encode_latency_ms=117.222 +avg_send_ms=0.000 +p95_send_ms=0.000 +payload_bytes=2361360 +bytes_sent=0 +send_target=none +csv=benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.csv diff --git a/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.csv b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.csv new file mode 100644 index 0000000..c6a011f --- /dev/null +++ b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.csv @@ -0,0 +1,2 @@ +codec,resolution,bitrate_mbps,max_keyframe_interval,max_keyframe_interval_duration,frames_requested,frames_encoded,failed_frames,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log +hevc,2560x1440,20,60,1,60,60,0,23.149,77.912,117.222,2361360,benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.csv,benchmarks/runs/2026-05-15_encoder_matrix_smoke/hevc_2560x1440_20mbps_kfi60_kfd1.txt diff --git a/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.md b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.md new file mode 100644 index 0000000..eeb40b9 --- /dev/null +++ b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/summary.md @@ -0,0 +1,13 @@ +# Plan C Encoder Low-Latency Matrix + +- Duration per case: `1` seconds +- FPS target: `60` +- Output CSV: `summary.csv` +- Encoder list: `video_encoders.txt` + +## Reading Rules + +- HEVC is the primary Plan C codec path. +- H.264 results are kept only for modes that produce payloads. +- Treat 5120x2880 H.264 as out of scope for this matrix because prior 5K H.264 produced status -10279 for every frame. +- Use average, p95, max encode latency, failed frames, and achieved payload bytes together; a low average with high p95 still needs follow-up. diff --git a/benchmarks/runs/2026-05-15_encoder_matrix_smoke/video_encoders.txt b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/video_encoders.txt new file mode 100644 index 0000000..db987b6 --- /dev/null +++ b/benchmarks/runs/2026-05-15_encoder_matrix_smoke/video_encoders.txt @@ -0,0 +1,212 @@ +video_encoder_list=Optional(<__NSArrayM 0x151e2ace0>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/runs/2026-05-15_primary_lowlatency_smoke/primary_stats.csv b/benchmarks/runs/2026-05-15_primary_lowlatency_smoke/primary_stats.csv new file mode 100644 index 0000000..00e23dd --- /dev/null +++ b/benchmarks/runs/2026-05-15_primary_lowlatency_smoke/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.9693,128.0622,0.0443,0.0000,0,0,0.0000,0,0.0000,0,1,0,55276,0 +1,5.1312,69.6952,0.0238,0.0000,0,0,0.0000,0,0.0000,0,0,0,61016,0 +2,5.7802,73.2290,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,59331,0 +3,5.6647,77.5651,0.0206,0.0000,0,0,0.0000,0,0.0000,0,0,0,49745,0 +4,8.3503,79.0343,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,48577,0 +5,5.3813,44.4260,0.0120,0.0000,0,0,0.0000,0,0.0000,0,0,0,47455,0 +6,5.2768,44.3295,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,46838,0 +7,5.2040,44.2765,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,47765,0 +8,5.2701,44.0617,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,39873,0 +9,5.2512,44.1449,0.0055,0.0000,0,0,0.0000,0,0.0000,0,0,0,46100,0 +10,5.1387,44.3242,0.0221,0.0000,0,0,0.0000,0,0.0000,0,0,0,46354,0 +11,5.2293,44.3378,0.0063,0.0000,0,0,0.0000,0,0.0000,0,0,0,46523,0 +12,4.9681,44.5259,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,44430,0 +13,5.1723,44.4403,0.0030,0.0000,0,0,0.0000,0,0.0000,0,0,0,46806,0 +14,5.6095,36.1564,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,45316,0 +15,5.5186,28.3946,0.0040,0.0000,0,0,0.0000,0,0.0000,0,0,0,44745,0 +16,5.5037,21.8449,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,37312,0 +17,5.7551,14.7052,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,44329,0 +18,5.5792,12.1433,0.0132,0.0000,0,0,0.0000,0,0.0000,0,0,0,44118,0 +19,5.6578,12.2267,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,44889,0 +20,5.6000,12.0591,0.0085,0.0000,0,0,0.0000,0,0.0000,0,0,0,43983,0 +21,5.7307,11.9987,0.0038,0.0000,0,0,0.0000,0,0.0000,0,0,0,43478,0 +22,5.6177,12.0412,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44760,0 +23,5.6258,12.0417,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,45135,0 +24,5.6484,11.7227,0.0074,0.0000,0,0,0.0000,0,0.0000,0,0,0,40820,0 +25,5.7283,11.8218,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,44469,0 +26,5.8503,11.8562,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,44695,0 +27,5.5565,12.2142,0.0053,0.0000,0,0,0.0000,0,0.0000,0,0,0,44861,0 +28,5.5549,12.3280,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,44536,0 +29,5.7797,12.4949,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45486,0 +30,5.4519,11.9358,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,45019,0 +31,5.7302,12.3577,0.0049,0.0000,0,0,0.0000,0,0.0000,0,0,0,45776,0 +32,5.3589,12.1143,0.0087,0.0000,0,0,0.0000,0,0.0000,0,0,0,31929,0 +33,5.5572,12.2420,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,46782,0 +34,5.5081,12.3370,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44077,0 +35,5.5512,12.2167,0.0057,0.0000,0,0,0.0000,0,0.0000,0,0,0,44353,0 +36,5.5443,12.1709,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44295,0 +37,5.5255,13.1404,0.0050,0.0000,0,0,0.0000,0,0.0000,0,0,0,44234,0 +38,5.5196,11.8075,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,45500,0 +39,5.6185,11.9075,0.0067,0.0000,0,0,0.0000,0,0.0000,0,0,0,44562,0 +40,5.5450,12.1192,0.0122,0.0000,0,0,0.0000,0,0.0000,0,0,0,38888,0 +41,5.6208,12.3146,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,44944,0 +42,5.5835,12.0194,0.0051,0.0000,0,0,0.0000,0,0.0000,0,0,0,45091,0 +43,5.6748,11.8367,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,45334,0 +44,5.7352,12.0816,0.0041,0.0000,0,0,0.0000,0,0.0000,0,0,0,43404,0 +45,5.6072,12.0783,0.0090,0.0000,0,0,0.0000,0,0.0000,0,0,0,44946,0 +46,5.8177,11.7094,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,45528,0 +47,5.6130,11.8242,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,43927,0 +48,5.8445,11.8239,0.0034,0.0000,0,0,0.0000,0,0.0000,0,0,0,36797,0 +49,5.8466,11.7113,0.0039,0.0000,0,0,0.0000,0,0.0000,0,0,0,44953,0 +50,5.6336,11.7284,0.0037,0.0000,0,0,0.0000,0,0.0000,0,0,0,42791,0 +51,5.6635,11.7959,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,44471,0 +52,5.6904,11.7858,0.0054,0.0000,0,0,0.0000,0,0.0000,0,0,0,43568,0 +53,5.6584,11.8599,0.0044,0.0000,0,0,0.0000,0,0.0000,0,0,0,43006,0 +54,6.0229,11.8236,0.0047,0.0000,0,0,0.0000,0,0.0000,0,0,0,45076,0 +55,5.8918,11.8162,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,44388,0 +56,5.8584,11.7578,0.0042,0.0000,0,0,0.0000,0,0.0000,0,0,0,40267,0 +57,6.1624,11.8018,0.0046,0.0000,0,0,0.0000,0,0.0000,0,0,0,44885,0 +58,6.1088,11.9048,0.0045,0.0000,0,0,0.0000,0,0.0000,0,0,0,44360,0 +59,5.1034,12.1210,0.0043,0.0000,0,0,0.0000,0,0.0000,0,0,0,43877,0 diff --git a/benchmarks/runs/2026-05-15_sender_queue_loopback_smoke/primary_stats.csv b/benchmarks/runs/2026-05-15_sender_queue_loopback_smoke/primary_stats.csv new file mode 100644 index 0000000..18ccb6d --- /dev/null +++ b/benchmarks/runs/2026-05-15_sender_queue_loopback_smoke/primary_stats.csv @@ -0,0 +1,61 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,3.7900,100.1350,0.0168,0.0074,1,0,0.0797,18049,100.3326,0,1,0,17969,0 +1,1.5745,48.0388,0.0037,0.0025,1,0,0.0432,12267,51.6926,0,0,0,12187,0 +2,1.9463,49.6385,0.0051,0.0017,1,0,0.0235,13900,50.4017,0,0,0,13820,0 +3,2.7993,50.5688,0.0033,0.0016,1,0,0.0420,12074,50.6248,0,0,0,11994,0 +4,3.4843,49.2693,0.0135,0.0024,1,0,0.0821,12536,49.3588,0,0,0,12456,0 +5,8.9084,10.7647,0.0055,0.0020,1,0,0.1115,12004,10.8480,0,0,0,11924,0 +6,1.6167,12.8663,0.0040,0.0020,1,0,0.0382,12481,12.9395,0,0,0,12401,0 +7,1.4242,13.3190,0.0037,0.0022,1,0,0.0580,12030,13.3643,0,0,0,11950,0 +8,1.5031,5.2084,0.0027,0.0017,1,0,0.0354,9788,5.2545,0,0,0,9708,0 +9,1.5839,5.5512,0.0030,0.0018,1,0,0.0361,11922,5.6018,0,0,0,11842,0 +10,1.6048,4.7713,0.0027,0.0016,1,0,0.0329,11925,4.8075,0,0,0,11845,0 +11,1.5400,4.5210,0.0028,0.0019,1,0,0.0297,11282,4.5598,0,0,0,11202,0 +12,1.6609,4.6081,0.0030,0.0018,1,0,0.0297,10913,4.6485,0,0,0,10833,0 +13,1.6954,4.9208,0.0043,0.0021,1,0,0.0475,11273,4.9754,0,0,0,11193,0 +14,1.8097,4.7968,0.0043,0.0033,1,0,0.0457,11466,4.8470,0,0,0,11386,0 +15,1.8453,4.8719,0.0038,0.0032,1,0,0.0409,10848,4.9212,0,0,0,10768,0 +16,1.8295,5.0540,0.0046,0.0025,1,0,0.0364,9108,5.0993,0,0,0,9028,0 +17,1.8244,5.0994,0.0037,0.0023,1,0,0.0353,10898,5.1419,0,0,0,10818,0 +18,1.8234,4.7464,0.0030,0.0021,1,0,0.0287,11499,4.7878,0,0,0,11419,0 +19,1.8466,4.9461,0.0053,0.0025,1,0,0.0447,11034,5.0006,0,0,0,10954,0 +20,2.0550,5.2698,0.0049,0.0027,1,0,0.0475,11008,5.3202,0,0,0,10928,0 +21,2.0670,4.8947,0.0052,0.0023,1,0,0.0335,10527,4.9429,0,0,0,10447,0 +22,2.0942,6.1290,0.0041,0.0022,1,0,0.0367,10975,6.1802,0,0,0,10895,0 +23,2.0798,5.1140,0.0030,0.0026,1,0,0.0298,11120,5.1570,0,0,0,11040,0 +24,2.2037,6.3033,0.0035,0.0025,1,0,0.0413,9949,6.3462,0,0,0,9869,0 +25,2.2849,6.9172,0.0038,0.0027,1,0,0.0372,10921,6.9690,0,0,0,10841,0 +26,2.3157,6.3779,0.0043,0.0029,1,0,0.0390,11215,6.4430,0,0,0,11135,0 +27,2.4520,6.2992,0.0040,0.0030,1,0,0.0372,11103,6.3574,0,0,0,11023,0 +28,2.7211,5.4646,0.0051,0.0035,1,0,0.0437,10856,5.5322,0,0,0,10776,0 +29,2.7251,5.8476,0.0087,0.0039,1,0,0.0490,11275,5.9192,0,0,0,11195,0 +30,2.8216,7.8548,0.0056,0.0037,1,0,0.0571,11267,7.9254,0,0,0,11187,0 +31,2.8158,8.0970,0.0063,0.0040,1,0,0.0501,11279,8.1535,0,0,0,11199,0 +32,2.7188,8.0078,0.0043,0.0030,1,0,0.0457,8072,8.0703,0,0,0,7992,0 +33,2.6976,8.0030,0.0044,0.0032,1,0,0.0397,11295,8.0620,0,0,0,11215,0 +34,2.7101,7.9922,0.0044,0.0030,1,0,0.0428,10940,8.0499,0,0,0,10860,0 +35,2.7536,8.0021,0.0041,0.0027,1,0,0.0403,10857,8.0556,0,0,0,10777,0 +36,2.7258,8.0792,0.0053,0.0035,1,0,0.0470,10949,8.1359,0,0,0,10869,0 +37,2.7973,7.8234,0.0044,0.0037,1,0,0.0457,10869,7.8858,0,0,0,10789,0 +38,3.0493,7.8159,0.0044,0.0033,1,0,0.0406,11066,7.8760,0,0,0,10986,0 +39,3.1683,8.1242,0.0047,0.0033,1,0,0.0430,10970,8.1875,0,0,0,10890,0 +40,2.8725,7.9028,0.0052,0.0028,1,0,0.0493,9781,7.9716,0,0,0,9701,0 +41,2.3686,5.6053,0.0043,0.0027,1,0,0.0406,11197,5.6612,0,0,0,11117,0 +42,1.8800,4.4407,0.0040,0.0024,1,0,0.0324,10836,4.4848,0,0,0,10756,0 +43,1.5000,4.2722,0.0030,0.0018,1,0,0.0488,11084,4.3009,0,0,0,11004,0 +44,1.3630,4.2243,0.0031,0.0016,1,0,0.0324,10473,4.2508,0,0,0,10393,0 +45,1.2377,4.1579,0.0028,0.0042,1,0,0.0299,11131,4.2180,0,0,0,11051,0 +46,1.2831,4.2125,0.0030,0.0023,1,0,0.0307,11382,4.2433,0,0,0,11302,0 +47,1.2156,4.1325,0.0030,0.0018,1,0,0.0266,10839,4.1582,0,0,0,10759,0 +48,1.2335,3.9886,0.0028,0.0020,1,0,0.0273,8783,4.0156,0,0,0,8703,0 +49,1.3109,4.0475,0.0027,0.0019,1,0,0.0258,11057,4.0722,0,0,0,10977,0 +50,1.4294,4.4138,0.0038,0.0019,1,0,0.0423,12513,4.4564,0,0,0,12433,0 +51,1.4396,4.2395,0.0029,0.0017,1,0,0.0344,12057,4.2763,0,0,0,11977,0 +52,1.6056,4.4220,0.0025,0.0017,1,0,0.0236,11639,4.4577,0,0,0,11559,0 +53,1.7796,4.4844,0.0026,0.0020,1,0,0.0238,11804,4.5225,0,0,0,11724,0 +54,1.8053,4.5205,0.0035,0.0022,1,0,0.0290,12091,4.5607,0,0,0,12011,0 +55,2.0202,4.5003,0.0034,0.0022,1,0,0.0265,12245,4.5423,0,0,0,12165,0 +56,2.0268,4.5580,0.0034,0.0021,1,0,0.0264,10943,4.5998,0,0,0,10863,0 +57,2.0225,4.6348,0.0037,0.0025,1,0,0.0281,12110,4.6813,0,0,0,12030,0 +58,2.3072,4.7334,0.0033,0.0026,1,0,0.0280,11837,4.7770,0,0,0,11757,0 +59,2.3135,4.6478,0.0035,0.0022,1,0,0.0276,11694,4.6926,0,0,0,11614,0 diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_ethernet.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_ethernet.txt new file mode 100644 index 0000000..243b9c3 --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_ethernet.txt @@ -0,0 +1 @@ +nc: connectx to 169.254.63.68 port 5201 (tcp) failed: Connection refused diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_wifi.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_wifi.txt new file mode 100644 index 0000000..1894ac6 --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_iperf3_wifi.txt @@ -0,0 +1 @@ +nc: connectx to 192.168.31.249 port 5201 (tcp) failed: Connection refused diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_ethernet.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_ethernet.txt new file mode 100644 index 0000000..bec5223 --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_ethernet.txt @@ -0,0 +1 @@ +nc: connectx to 169.254.63.68 port 22 (tcp) failed: Connection refused diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_wifi.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_wifi.txt new file mode 100644 index 0000000..e6bdc0e --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/nc_ssh_wifi.txt @@ -0,0 +1 @@ +nc: connectx to 192.168.31.249 port 22 (tcp) failed: Connection refused diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_ethernet_linklocal.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_ethernet_linklocal.txt new file mode 100644 index 0000000..5a9326b --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_ethernet_linklocal.txt @@ -0,0 +1,105 @@ +PING 169.254.63.68 (169.254.63.68): 56 data bytes +64 bytes from 169.254.63.68: icmp_seq=0 ttl=255 time=0.842 ms +64 bytes from 169.254.63.68: icmp_seq=1 ttl=255 time=0.658 ms +64 bytes from 169.254.63.68: icmp_seq=2 ttl=255 time=0.533 ms +64 bytes from 169.254.63.68: icmp_seq=3 ttl=255 time=0.733 ms +64 bytes from 169.254.63.68: icmp_seq=4 ttl=255 time=0.682 ms +64 bytes from 169.254.63.68: icmp_seq=5 ttl=255 time=0.653 ms +64 bytes from 169.254.63.68: icmp_seq=6 ttl=255 time=0.667 ms +64 bytes from 169.254.63.68: icmp_seq=7 ttl=255 time=0.634 ms +64 bytes from 169.254.63.68: icmp_seq=8 ttl=255 time=0.640 ms +64 bytes from 169.254.63.68: icmp_seq=9 ttl=255 time=0.460 ms +64 bytes from 169.254.63.68: icmp_seq=10 ttl=255 time=0.695 ms +64 bytes from 169.254.63.68: icmp_seq=11 ttl=255 time=0.544 ms +64 bytes from 169.254.63.68: icmp_seq=12 ttl=255 time=0.840 ms +64 bytes from 169.254.63.68: icmp_seq=13 ttl=255 time=0.670 ms +64 bytes from 169.254.63.68: icmp_seq=14 ttl=255 time=1.065 ms +64 bytes from 169.254.63.68: icmp_seq=15 ttl=255 time=0.743 ms +64 bytes from 169.254.63.68: icmp_seq=16 ttl=255 time=0.477 ms +64 bytes from 169.254.63.68: icmp_seq=17 ttl=255 time=0.663 ms +64 bytes from 169.254.63.68: icmp_seq=18 ttl=255 time=0.491 ms +64 bytes from 169.254.63.68: icmp_seq=19 ttl=255 time=1.164 ms +64 bytes from 169.254.63.68: icmp_seq=20 ttl=255 time=0.649 ms +64 bytes from 169.254.63.68: icmp_seq=21 ttl=255 time=1.379 ms +64 bytes from 169.254.63.68: icmp_seq=22 ttl=255 time=0.766 ms +64 bytes from 169.254.63.68: icmp_seq=23 ttl=255 time=0.478 ms +64 bytes from 169.254.63.68: icmp_seq=24 ttl=255 time=1.048 ms +64 bytes from 169.254.63.68: icmp_seq=25 ttl=255 time=0.605 ms +64 bytes from 169.254.63.68: icmp_seq=26 ttl=255 time=1.022 ms +64 bytes from 169.254.63.68: icmp_seq=27 ttl=255 time=0.600 ms +64 bytes from 169.254.63.68: icmp_seq=28 ttl=255 time=1.137 ms +64 bytes from 169.254.63.68: icmp_seq=29 ttl=255 time=0.832 ms +64 bytes from 169.254.63.68: icmp_seq=30 ttl=255 time=0.681 ms +64 bytes from 169.254.63.68: icmp_seq=31 ttl=255 time=0.601 ms +64 bytes from 169.254.63.68: icmp_seq=32 ttl=255 time=0.480 ms +64 bytes from 169.254.63.68: icmp_seq=33 ttl=255 time=0.654 ms +64 bytes from 169.254.63.68: icmp_seq=34 ttl=255 time=0.593 ms +64 bytes from 169.254.63.68: icmp_seq=35 ttl=255 time=0.895 ms +64 bytes from 169.254.63.68: icmp_seq=36 ttl=255 time=0.554 ms +64 bytes from 169.254.63.68: icmp_seq=37 ttl=255 time=1.353 ms +64 bytes from 169.254.63.68: icmp_seq=38 ttl=255 time=0.696 ms +64 bytes from 169.254.63.68: icmp_seq=39 ttl=255 time=0.679 ms +64 bytes from 169.254.63.68: icmp_seq=40 ttl=255 time=1.197 ms +64 bytes from 169.254.63.68: icmp_seq=41 ttl=255 time=0.612 ms +64 bytes from 169.254.63.68: icmp_seq=42 ttl=255 time=0.807 ms +64 bytes from 169.254.63.68: icmp_seq=43 ttl=255 time=0.750 ms +64 bytes from 169.254.63.68: icmp_seq=44 ttl=255 time=0.627 ms +64 bytes from 169.254.63.68: icmp_seq=45 ttl=255 time=1.269 ms +64 bytes from 169.254.63.68: icmp_seq=46 ttl=255 time=0.694 ms +64 bytes from 169.254.63.68: icmp_seq=47 ttl=255 time=0.825 ms +64 bytes from 169.254.63.68: icmp_seq=48 ttl=255 time=0.425 ms +64 bytes from 169.254.63.68: icmp_seq=49 ttl=255 time=0.677 ms +64 bytes from 169.254.63.68: icmp_seq=50 ttl=255 time=1.151 ms +64 bytes from 169.254.63.68: icmp_seq=51 ttl=255 time=1.140 ms +64 bytes from 169.254.63.68: icmp_seq=52 ttl=255 time=0.879 ms +64 bytes from 169.254.63.68: icmp_seq=53 ttl=255 time=0.576 ms +64 bytes from 169.254.63.68: icmp_seq=54 ttl=255 time=1.028 ms +64 bytes from 169.254.63.68: icmp_seq=55 ttl=255 time=1.046 ms +64 bytes from 169.254.63.68: icmp_seq=56 ttl=255 time=0.838 ms +64 bytes from 169.254.63.68: icmp_seq=57 ttl=255 time=0.825 ms +64 bytes from 169.254.63.68: icmp_seq=58 ttl=255 time=1.185 ms +64 bytes from 169.254.63.68: icmp_seq=59 ttl=255 time=0.727 ms +64 bytes from 169.254.63.68: icmp_seq=60 ttl=255 time=1.125 ms +64 bytes from 169.254.63.68: icmp_seq=61 ttl=255 time=0.702 ms +64 bytes from 169.254.63.68: icmp_seq=62 ttl=255 time=0.964 ms +64 bytes from 169.254.63.68: icmp_seq=63 ttl=255 time=0.861 ms +64 bytes from 169.254.63.68: icmp_seq=64 ttl=255 time=1.120 ms +64 bytes from 169.254.63.68: icmp_seq=65 ttl=255 time=0.829 ms +64 bytes from 169.254.63.68: icmp_seq=66 ttl=255 time=0.651 ms +64 bytes from 169.254.63.68: icmp_seq=67 ttl=255 time=1.029 ms +64 bytes from 169.254.63.68: icmp_seq=68 ttl=255 time=1.202 ms +64 bytes from 169.254.63.68: icmp_seq=69 ttl=255 time=0.926 ms +64 bytes from 169.254.63.68: icmp_seq=70 ttl=255 time=0.457 ms +64 bytes from 169.254.63.68: icmp_seq=71 ttl=255 time=1.093 ms +64 bytes from 169.254.63.68: icmp_seq=72 ttl=255 time=0.599 ms +64 bytes from 169.254.63.68: icmp_seq=73 ttl=255 time=0.791 ms +64 bytes from 169.254.63.68: icmp_seq=74 ttl=255 time=0.678 ms +64 bytes from 169.254.63.68: icmp_seq=75 ttl=255 time=0.746 ms +64 bytes from 169.254.63.68: icmp_seq=76 ttl=255 time=1.112 ms +64 bytes from 169.254.63.68: icmp_seq=77 ttl=255 time=0.735 ms +64 bytes from 169.254.63.68: icmp_seq=78 ttl=255 time=0.850 ms +64 bytes from 169.254.63.68: icmp_seq=79 ttl=255 time=0.858 ms +64 bytes from 169.254.63.68: icmp_seq=80 ttl=255 time=0.625 ms +64 bytes from 169.254.63.68: icmp_seq=81 ttl=255 time=1.076 ms +64 bytes from 169.254.63.68: icmp_seq=82 ttl=255 time=1.018 ms +64 bytes from 169.254.63.68: icmp_seq=83 ttl=255 time=1.096 ms +64 bytes from 169.254.63.68: icmp_seq=84 ttl=255 time=0.830 ms +64 bytes from 169.254.63.68: icmp_seq=85 ttl=255 time=1.050 ms +64 bytes from 169.254.63.68: icmp_seq=86 ttl=255 time=1.320 ms +64 bytes from 169.254.63.68: icmp_seq=87 ttl=255 time=0.750 ms +64 bytes from 169.254.63.68: icmp_seq=88 ttl=255 time=0.943 ms +64 bytes from 169.254.63.68: icmp_seq=89 ttl=255 time=0.517 ms +64 bytes from 169.254.63.68: icmp_seq=90 ttl=255 time=0.733 ms +64 bytes from 169.254.63.68: icmp_seq=91 ttl=255 time=1.342 ms +64 bytes from 169.254.63.68: icmp_seq=92 ttl=255 time=0.816 ms +64 bytes from 169.254.63.68: icmp_seq=93 ttl=255 time=0.631 ms +64 bytes from 169.254.63.68: icmp_seq=94 ttl=255 time=0.658 ms +64 bytes from 169.254.63.68: icmp_seq=95 ttl=255 time=0.434 ms +64 bytes from 169.254.63.68: icmp_seq=96 ttl=255 time=0.573 ms +64 bytes from 169.254.63.68: icmp_seq=97 ttl=255 time=0.686 ms +64 bytes from 169.254.63.68: icmp_seq=98 ttl=255 time=0.762 ms +64 bytes from 169.254.63.68: icmp_seq=99 ttl=255 time=1.018 ms + +--- 169.254.63.68 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 0.425/0.810/1.379/0.235 ms diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_wifi5_local.txt b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_wifi5_local.txt new file mode 100644 index 0000000..8fb0f71 --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/ping_100_wifi5_local.txt @@ -0,0 +1,107 @@ +PING 192.168.31.249 (192.168.31.249): 56 data bytes +Request timeout for icmp_seq 0 +Request timeout for icmp_seq 1 +64 bytes from 192.168.31.249: icmp_seq=0 ttl=64 time=409.182 ms +64 bytes from 192.168.31.249: icmp_seq=1 ttl=64 time=204.142 ms +64 bytes from 192.168.31.249: icmp_seq=2 ttl=64 time=5.192 ms +64 bytes from 192.168.31.249: icmp_seq=3 ttl=64 time=208.885 ms +64 bytes from 192.168.31.249: icmp_seq=4 ttl=64 time=7.605 ms +64 bytes from 192.168.31.249: icmp_seq=5 ttl=64 time=105.695 ms +64 bytes from 192.168.31.249: icmp_seq=6 ttl=64 time=20.024 ms +64 bytes from 192.168.31.249: icmp_seq=7 ttl=64 time=106.455 ms +64 bytes from 192.168.31.249: icmp_seq=8 ttl=64 time=4.351 ms +64 bytes from 192.168.31.249: icmp_seq=9 ttl=64 time=4.430 ms +64 bytes from 192.168.31.249: icmp_seq=10 ttl=64 time=109.518 ms +64 bytes from 192.168.31.249: icmp_seq=11 ttl=64 time=49.597 ms +64 bytes from 192.168.31.249: icmp_seq=12 ttl=64 time=113.088 ms +64 bytes from 192.168.31.249: icmp_seq=13 ttl=64 time=5.314 ms +64 bytes from 192.168.31.249: icmp_seq=14 ttl=64 time=24.589 ms +64 bytes from 192.168.31.249: icmp_seq=15 ttl=64 time=4.946 ms +64 bytes from 192.168.31.249: icmp_seq=16 ttl=64 time=142.386 ms +64 bytes from 192.168.31.249: icmp_seq=17 ttl=64 time=5.675 ms +64 bytes from 192.168.31.249: icmp_seq=18 ttl=64 time=5.948 ms +64 bytes from 192.168.31.249: icmp_seq=19 ttl=64 time=54.823 ms +64 bytes from 192.168.31.249: icmp_seq=20 ttl=64 time=5.464 ms +64 bytes from 192.168.31.249: icmp_seq=21 ttl=64 time=5.422 ms +64 bytes from 192.168.31.249: icmp_seq=22 ttl=64 time=4.789 ms +64 bytes from 192.168.31.249: icmp_seq=23 ttl=64 time=5.041 ms +64 bytes from 192.168.31.249: icmp_seq=24 ttl=64 time=125.921 ms +64 bytes from 192.168.31.249: icmp_seq=25 ttl=64 time=5.102 ms +64 bytes from 192.168.31.249: icmp_seq=26 ttl=64 time=23.715 ms +64 bytes from 192.168.31.249: icmp_seq=27 ttl=64 time=4.748 ms +64 bytes from 192.168.31.249: icmp_seq=28 ttl=64 time=23.163 ms +64 bytes from 192.168.31.249: icmp_seq=29 ttl=64 time=125.779 ms +64 bytes from 192.168.31.249: icmp_seq=30 ttl=64 time=5.790 ms +64 bytes from 192.168.31.249: icmp_seq=31 ttl=64 time=25.635 ms +64 bytes from 192.168.31.249: icmp_seq=32 ttl=64 time=6.369 ms +64 bytes from 192.168.31.249: icmp_seq=33 ttl=64 time=28.160 ms +64 bytes from 192.168.31.249: icmp_seq=34 ttl=64 time=146.622 ms +64 bytes from 192.168.31.249: icmp_seq=35 ttl=64 time=4.374 ms +64 bytes from 192.168.31.249: icmp_seq=36 ttl=64 time=3.899 ms +64 bytes from 192.168.31.249: icmp_seq=37 ttl=64 time=58.889 ms +64 bytes from 192.168.31.249: icmp_seq=38 ttl=64 time=32.280 ms +64 bytes from 192.168.31.249: icmp_seq=39 ttl=64 time=242.399 ms +64 bytes from 192.168.31.249: icmp_seq=40 ttl=64 time=40.348 ms +64 bytes from 192.168.31.249: icmp_seq=41 ttl=64 time=40.055 ms +64 bytes from 192.168.31.249: icmp_seq=42 ttl=64 time=94.636 ms +64 bytes from 192.168.31.249: icmp_seq=43 ttl=64 time=41.157 ms +64 bytes from 192.168.31.249: icmp_seq=44 ttl=64 time=44.707 ms +64 bytes from 192.168.31.249: icmp_seq=45 ttl=64 time=9.279 ms +64 bytes from 192.168.31.249: icmp_seq=46 ttl=64 time=49.327 ms +64 bytes from 192.168.31.249: icmp_seq=47 ttl=64 time=151.930 ms +64 bytes from 192.168.31.249: icmp_seq=48 ttl=64 time=5.229 ms +64 bytes from 192.168.31.249: icmp_seq=49 ttl=64 time=48.234 ms +64 bytes from 192.168.31.249: icmp_seq=50 ttl=64 time=31.648 ms +64 bytes from 192.168.31.249: icmp_seq=51 ttl=64 time=52.181 ms +64 bytes from 192.168.31.249: icmp_seq=52 ttl=64 time=256.206 ms +64 bytes from 192.168.31.249: icmp_seq=53 ttl=64 time=53.064 ms +64 bytes from 192.168.31.249: icmp_seq=54 ttl=64 time=54.021 ms +64 bytes from 192.168.31.249: icmp_seq=55 ttl=64 time=60.934 ms +64 bytes from 192.168.31.249: icmp_seq=56 ttl=64 time=51.419 ms +64 bytes from 192.168.31.249: icmp_seq=57 ttl=64 time=258.592 ms +64 bytes from 192.168.31.249: icmp_seq=58 ttl=64 time=55.287 ms +64 bytes from 192.168.31.249: icmp_seq=59 ttl=64 time=5.163 ms +64 bytes from 192.168.31.249: icmp_seq=60 ttl=64 time=54.800 ms +64 bytes from 192.168.31.249: icmp_seq=61 ttl=64 time=5.445 ms +64 bytes from 192.168.31.249: icmp_seq=62 ttl=64 time=155.085 ms +64 bytes from 192.168.31.249: icmp_seq=63 ttl=64 time=11.030 ms +64 bytes from 192.168.31.249: icmp_seq=64 ttl=64 time=54.975 ms +64 bytes from 192.168.31.249: icmp_seq=65 ttl=64 time=112.136 ms +64 bytes from 192.168.31.249: icmp_seq=66 ttl=64 time=5.676 ms +64 bytes from 192.168.31.249: icmp_seq=67 ttl=64 time=57.870 ms +64 bytes from 192.168.31.249: icmp_seq=68 ttl=64 time=29.848 ms +64 bytes from 192.168.31.249: icmp_seq=69 ttl=64 time=100.966 ms +64 bytes from 192.168.31.249: icmp_seq=70 ttl=64 time=145.563 ms +64 bytes from 192.168.31.249: icmp_seq=71 ttl=64 time=6.983 ms +64 bytes from 192.168.31.249: icmp_seq=72 ttl=64 time=63.979 ms +64 bytes from 192.168.31.249: icmp_seq=73 ttl=64 time=58.649 ms +64 bytes from 192.168.31.249: icmp_seq=74 ttl=64 time=71.846 ms +64 bytes from 192.168.31.249: icmp_seq=75 ttl=64 time=6.436 ms +64 bytes from 192.168.31.249: icmp_seq=76 ttl=64 time=5.046 ms +64 bytes from 192.168.31.249: icmp_seq=77 ttl=64 time=4.758 ms +64 bytes from 192.168.31.249: icmp_seq=78 ttl=64 time=25.828 ms +64 bytes from 192.168.31.249: icmp_seq=79 ttl=64 time=5.438 ms +64 bytes from 192.168.31.249: icmp_seq=80 ttl=64 time=6.593 ms +64 bytes from 192.168.31.249: icmp_seq=81 ttl=64 time=4.626 ms +64 bytes from 192.168.31.249: icmp_seq=82 ttl=64 time=4.540 ms +64 bytes from 192.168.31.249: icmp_seq=83 ttl=64 time=173.351 ms +64 bytes from 192.168.31.249: icmp_seq=84 ttl=64 time=4.719 ms +64 bytes from 192.168.31.249: icmp_seq=85 ttl=64 time=70.159 ms +64 bytes from 192.168.31.249: icmp_seq=86 ttl=64 time=20.942 ms +64 bytes from 192.168.31.249: icmp_seq=87 ttl=64 time=5.679 ms +64 bytes from 192.168.31.249: icmp_seq=88 ttl=64 time=135.105 ms +64 bytes from 192.168.31.249: icmp_seq=89 ttl=64 time=4.214 ms +64 bytes from 192.168.31.249: icmp_seq=90 ttl=64 time=4.255 ms +64 bytes from 192.168.31.249: icmp_seq=91 ttl=64 time=46.816 ms +64 bytes from 192.168.31.249: icmp_seq=92 ttl=64 time=4.831 ms +64 bytes from 192.168.31.249: icmp_seq=93 ttl=64 time=4.414 ms +64 bytes from 192.168.31.249: icmp_seq=94 ttl=64 time=5.278 ms +64 bytes from 192.168.31.249: icmp_seq=95 ttl=64 time=4.050 ms +64 bytes from 192.168.31.249: icmp_seq=96 ttl=64 time=10.550 ms +64 bytes from 192.168.31.249: icmp_seq=97 ttl=64 time=5.351 ms +64 bytes from 192.168.31.249: icmp_seq=98 ttl=64 time=3.829 ms +64 bytes from 192.168.31.249: icmp_seq=99 ttl=64 time=3.706 ms + +--- 192.168.31.249 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 3.706/53.842/409.182/70.703 ms diff --git a/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/summary.md b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/summary.md new file mode 100644 index 0000000..875b6c5 --- /dev/null +++ b/benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/summary.md @@ -0,0 +1,61 @@ +# MBP To 2017 iMac LAN/Wi-Fi Probe + +Date: 2026-05-16 + +## Setup + +- Source: MacBook Pro M1 Max, macOS Tahoe 26.5. +- Receiver candidate: 2017 21.5-inch iMac, macOS Sequoia through OCLP. +- Wi-Fi: both machines on 5GHz local network. +- Ethernet: MacBook Pro USB 10/100/1000 LAN adapter directly connected to the + 2017 iMac Ethernet port. + +## Discovered Interfaces + +| Path | MacBook Pro interface | MacBook Pro IP | iMac IP | Link / note | +|---|---|---|---|---| +| Ethernet direct | `en9` | `169.254.6.144` | `169.254.63.68` | `1000baseT ` | +| Wi-Fi 5GHz local | `en0` | `192.168.31.29` | `192.168.31.249` | local router path | + +## Ping Results + +| Path | Packets | Loss | Min / Avg / Max / Stddev | +|---|---:|---:|---| +| Ethernet direct | 100/100 | 0.0% | `0.425 / 0.810 / 1.379 / 0.235 ms` | +| Wi-Fi 5GHz local | 100/100 | 0.0% | `3.706 / 53.842 / 409.182 / 70.703 ms` | + +## Port Checks + +| Target | Port | Result | +|---|---:|---| +| `169.254.63.68` | 22 | refused | +| `192.168.31.249` | 22 | refused | +| `169.254.63.68` | 5201 | refused | +| `192.168.31.249` | 5201 | refused | + +## Interpretation + +- Direct Ethernet is already good enough for the next transport gate. The ping + path is stable and low-jitter. +- Current 5GHz Wi-Fi is reachable but far too jittery for display-profile + decisions in this room/network state. +- Remote Login is not enabled on the iMac yet, and `iperf3` server is not + running. Throughput measurement is blocked until the receiver opens SSH or + starts `iperf3 -s` locally. + +## Next Action + +On the 2017 iMac: + +```bash +sudo systemsetup -setremotelogin on +brew install iperf3 +iperf3 -s +``` + +Then run from the MacBook Pro: + +```bash +RUN_ROOT=benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi DURATION=20 \ + scripts/mac_network_matrix.sh --case 1gbe-2017-imac --receiver-ip 169.254.63.68 +``` diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ifconfig.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ifconfig.txt new file mode 100644 index 0000000..6928db6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ifconfig.txt @@ -0,0 +1,142 @@ +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi0: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2d + media: none + status: inactive +anpi2: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2f + media: none + status: inactive +anpi1: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2e + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0d + nd6 options=201 + media: none + status: inactive +en5: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0e + nd6 options=201 + media: none + status: inactive +en6: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0f + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:40 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:44 + media: autoselect + status: inactive +en3: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:48 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:fa:2e:69:8f:40 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 10 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 11 priority 0 path cost 0 + member: en3 flags=3 + ifmaxaddr 0 port 12 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8863 mtu 1500 + options=6460 + ether 2a:2b:c8:69:10:f4 + nd6 options=201 + media: autoselect (none) + status: inactive +en0: flags=8863 mtu 1500 + options=6460 + ether e6:3e:a3:f5:84:20 + inet6 fe80::1415:f62c:195d:793%en0 prefixlen 64 secured scopeid 0xe + inet6 fde8:dc6b:87dd:3503:804:b337:5310:edb7 prefixlen 64 autoconf secured + inet 192.168.31.29 netmask 0xffffff00 broadcast 192.168.31.255 + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8863 mtu 1500 + options=6460 + ether ce:c7:43:11:96:33 + inet6 fe80::ccc7:43ff:fe11:9633%awdl0 prefixlen 64 scopeid 0x10 + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether ce:c7:43:11:96:33 + inet6 fe80::ccc7:43ff:fe11:9633%llw0 prefixlen 64 scopeid 0x11 + nd6 options=201 + media: autoselect (none) +utun0: flags=8051 mtu 1500 + inet6 fe80::cc42:7360:7a85:8035%utun0 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::cdfb:e373:305f:c20%utun1 prefixlen 64 scopeid 0x13 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::8258:8a80:b028:26f0%utun2 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::78fb:2df9:6247:9fe9%utun4 prefixlen 64 scopeid 0x16 + inet 100.102.202.93 --> 100.102.202.93 netmask 0xffffffff + inet6 fd7a:115c:a1e0::d35:ca5d prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::c969:6fd7:bc4:c2d3%utun5 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::5a01:a532:ce34:a7aa%utun6 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::4aa0:1dd9:bb64:c638%utun7 prefixlen 64 scopeid 0x19 + nd6 options=201 +en9: flags=8863 mtu 1500 + options=6464 + ether 00:e0:4c:68:56:f1 + inet6 fe80::107e:b068:5415:c9f5%en9 prefixlen 64 secured scopeid 0x1a + inet 169.254.6.144 netmask 0xffff0000 broadcast 169.254.255.255 + nd6 options=201 + media: autoselect (1000baseT ) + status: active +utun8: flags=8051 mtu 1380 + inet6 fe80::909f:dede:8665:435e%utun8 prefixlen 64 scopeid 0x1b + nd6 options=201 +utun9: flags=8051 mtu 1380 + inet6 fe80::7f90:7bb1:a8e:2999%utun9 prefixlen 64 scopeid 0x1c + nd6 options=201 diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_from_receiver_reverse.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_from_receiver_reverse.json new file mode 100644 index 0000000..d528cf8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_from_receiver_reverse.json @@ -0,0 +1,501 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "169.254.6.144", + "local_port": 54965, + "remote_host": "169.254.70.114", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:30:10 UTC", + "timesecs": 1778949010, + "timemillisecs": 1778949010507 + }, + "connecting_to": { + "host": "169.254.70.114", + "port": 5201 + }, + "cookie": "b5rhycnhmqr5y35uto2dsnu3rlkcbsvahrql", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 1, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005073, + "seconds": 1.0050729513168335, + "bytes": 111149056, + "bits_per_second": 884704385.721446, + "omitted": false, + "sender": false + }], + "sum": { + "start": 0, + "end": 1.005073, + "seconds": 1.0050729513168335, + "bytes": 111149056, + "bits_per_second": 884704385.721446, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005073, + "end": 2.004381, + "seconds": 0.99930799007415771, + "bytes": 117440512, + "bits_per_second": 940174706.228736, + "omitted": false, + "sender": false + }], + "sum": { + "start": 1.005073, + "end": 2.004381, + "seconds": 0.99930799007415771, + "bytes": 117440512, + "bits_per_second": 940174706.228736, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 2.004381, + "end": 3.004122, + "seconds": 0.999741017818451, + "bytes": 117571584, + "bits_per_second": 940816326.6647166, + "omitted": false, + "sender": false + }], + "sum": { + "start": 2.004381, + "end": 3.004122, + "seconds": 0.999741017818451, + "bytes": 117571584, + "bits_per_second": 940816326.6647166, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 3.004122, + "end": 4.003101, + "seconds": 0.99897897243499756, + "bytes": 117440512, + "bits_per_second": 940484356.45239151, + "omitted": false, + "sender": false + }], + "sum": { + "start": 3.004122, + "end": 4.003101, + "seconds": 0.99897897243499756, + "bytes": 117440512, + "bits_per_second": 940484356.45239151, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 4.003101, + "end": 5.002903, + "seconds": 0.999801993370056, + "bytes": 117440512, + "bits_per_second": 939710164.84286451, + "omitted": false, + "sender": false + }], + "sum": { + "start": 4.003101, + "end": 5.002903, + "seconds": 0.999801993370056, + "bytes": 117440512, + "bits_per_second": 939710164.84286451, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 5.002903, + "end": 6.001017, + "seconds": 0.998113989830017, + "bytes": 117309440, + "bits_per_second": 940248838.872428, + "omitted": false, + "sender": false + }], + "sum": { + "start": 5.002903, + "end": 6.001017, + "seconds": 0.998113989830017, + "bytes": 117309440, + "bits_per_second": 940248838.872428, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 6.001017, + "end": 7.000634, + "seconds": 0.99961698055267334, + "bytes": 117440512, + "bits_per_second": 939884089.88465869, + "omitted": false, + "sender": false + }], + "sum": { + "start": 6.001017, + "end": 7.000634, + "seconds": 0.99961698055267334, + "bytes": 117440512, + "bits_per_second": 939884089.88465869, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 7.000634, + "end": 8.002278, + "seconds": 1.0016440153121948, + "bytes": 117833728, + "bits_per_second": 941122604.02832472, + "omitted": false, + "sender": false + }], + "sum": { + "start": 7.000634, + "end": 8.002278, + "seconds": 1.0016440153121948, + "bytes": 117833728, + "bits_per_second": 941122604.02832472, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002278, + "end": 9.005065, + "seconds": 1.0027869939804077, + "bytes": 117833728, + "bits_per_second": 940049910.557992, + "omitted": false, + "sender": false + }], + "sum": { + "start": 8.002278, + "end": 9.005065, + "seconds": 1.0027869939804077, + "bytes": 117833728, + "bits_per_second": 940049910.557992, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 9.005065, + "end": 10.000073, + "seconds": 0.99500799179077148, + "bytes": 116916224, + "bits_per_second": 940022391.49520266, + "omitted": false, + "sender": false + }], + "sum": { + "start": 9.005065, + "end": 10.000073, + "seconds": 0.99500799179077148, + "bytes": 116916224, + "bits_per_second": 940022391.49520266, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 10.000073, + "end": 11.000152, + "seconds": 1.0000790357589722, + "bytes": 117571584, + "bits_per_second": 940498338.999965, + "omitted": false, + "sender": false + }], + "sum": { + "start": 10.000073, + "end": 11.000152, + "seconds": 1.0000790357589722, + "bytes": 117571584, + "bits_per_second": 940498338.999965, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 11.000152, + "end": 12.00171, + "seconds": 1.0015579462051392, + "bytes": 117702656, + "bits_per_second": 940156534.694536, + "omitted": false, + "sender": false + }], + "sum": { + "start": 11.000152, + "end": 12.00171, + "seconds": 1.0015579462051392, + "bytes": 117702656, + "bits_per_second": 940156534.694536, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 12.00171, + "end": 13.001795, + "seconds": 1.00008499622345, + "bytes": 117571584, + "bits_per_second": 940492733.66945624, + "omitted": false, + "sender": false + }], + "sum": { + "start": 12.00171, + "end": 13.001795, + "seconds": 1.00008499622345, + "bytes": 117571584, + "bits_per_second": 940492733.66945624, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 13.001795, + "end": 14.003446, + "seconds": 1.0016510486602783, + "bytes": 117702656, + "bits_per_second": 940069148.092473, + "omitted": false, + "sender": false + }], + "sum": { + "start": 13.001795, + "end": 14.003446, + "seconds": 1.0016510486602783, + "bytes": 117702656, + "bits_per_second": 940069148.092473, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 14.003446, + "end": 15.004218, + "seconds": 1.0007719993591309, + "bytes": 117571584, + "bits_per_second": 939847110.63291037, + "omitted": false, + "sender": false + }], + "sum": { + "start": 14.003446, + "end": 15.004218, + "seconds": 1.0007719993591309, + "bytes": 117571584, + "bits_per_second": 939847110.63291037, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 15.004218, + "end": 16.002024, + "seconds": 0.99780601263046265, + "bytes": 117309440, + "bits_per_second": 940539050.79800749, + "omitted": false, + "sender": false + }], + "sum": { + "start": 15.004218, + "end": 16.002024, + "seconds": 0.99780601263046265, + "bytes": 117309440, + "bits_per_second": 940539050.79800749, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 16.002024, + "end": 17.000579, + "seconds": 0.99855500459671021, + "bytes": 117309440, + "bits_per_second": 939833575.19601572, + "omitted": false, + "sender": false + }], + "sum": { + "start": 16.002024, + "end": 17.000579, + "seconds": 0.99855500459671021, + "bytes": 117309440, + "bits_per_second": 939833575.19601572, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 17.000579, + "end": 18.001814, + "seconds": 1.0012350082397461, + "bytes": 117702656, + "bits_per_second": 940459772.431897, + "omitted": false, + "sender": false + }], + "sum": { + "start": 17.000579, + "end": 18.001814, + "seconds": 1.0012350082397461, + "bytes": 117702656, + "bits_per_second": 940459772.431897, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 18.001814, + "end": 19.001941, + "seconds": 1.0001269578933716, + "bytes": 117571584, + "bits_per_second": 940453274.03351426, + "omitted": false, + "sender": false + }], + "sum": { + "start": 18.001814, + "end": 19.001941, + "seconds": 1.0001269578933716, + "bytes": 117571584, + "bits_per_second": 940453274.03351426, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 19.001941, + "end": 20.005092, + "seconds": 1.0031510591506958, + "bytes": 117964800, + "bits_per_second": 940754028.410224, + "omitted": false, + "sender": false + }], + "sum": { + "start": 19.001941, + "end": 20.005092, + "seconds": 1.0031510591506958, + "bytes": 117964800, + "bits_per_second": 940754028.410224, + "omitted": false, + "sender": false + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 20.00521, + "seconds": 20.00521, + "bytes": 2348548096, + "bits_per_second": 939174583.42101872, + "retransmits": 739, + "reorder": 0, + "max_snd_cwnd": 0, + "max_snd_wnd": 0, + "max_rtt": 0, + "min_rtt": 0, + "mean_rtt": 0, + "sender": false + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 20.005092, + "seconds": 20.005092, + "bytes": 2344353792, + "bits_per_second": 937502828.57984352, + "sender": false + } + }], + "sum_sent": { + "start": 0, + "end": 20.00521, + "seconds": 20.00521, + "bytes": 2348548096, + "bits_per_second": 939174583.42101872, + "retransmits": 739, + "sender": false + }, + "sum_received": { + "start": 0, + "end": 20.005092, + "seconds": 20.005092, + "bytes": 2344353792, + "bits_per_second": 937502828.57984352, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 8.732571001367015, + "host_user": 0.2471933597560034, + "host_system": 8.48538763770304, + "remote_total": 3.0783942303102165, + "remote_user": 0.087012224550223977, + "remote_system": 2.9913020266945129 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_to_receiver.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_to_receiver.json new file mode 100644 index 0000000..075c910 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_tcp_to_receiver.json @@ -0,0 +1,661 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "169.254.6.144", + "local_port": 54963, + "remote_host": "169.254.70.114", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:29:50 UTC", + "timesecs": 1778948990, + "timemillisecs": 1778948990479 + }, + "connecting_to": { + "host": "169.254.70.114", + "port": 5201 + }, + "cookie": "o6iribzibhrujhb5ky7fxghp7ouzhpv45wgh", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.001253, + "seconds": 1.0012530088424683, + "bytes": 113115136, + "bits_per_second": 903788632.851315, + "retransmits": 0, + "snd_cwnd": 535760, + "snd_wnd": -1, + "rtt": 4, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.001253, + "seconds": 1.0012530088424683, + "bytes": 113115136, + "bits_per_second": 903788632.851315, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.001253, + "end": 2.003356, + "seconds": 1.0021029710769653, + "bytes": 118489088, + "bits_per_second": 945923454.3345114, + "retransmits": 0, + "snd_cwnd": 792056, + "snd_wnd": -1, + "rtt": 6, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.001253, + "end": 2.003356, + "seconds": 1.0021029710769653, + "bytes": 118489088, + "bits_per_second": 945923454.3345114, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003356, + "end": 3.003891, + "seconds": 1.0005350112915039, + "bytes": 118095872, + "bits_per_second": 944261785.282738, + "retransmits": 0, + "snd_cwnd": 984640, + "snd_wnd": -1, + "rtt": 8, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.003356, + "end": 3.003891, + "seconds": 1.0005350112915039, + "bytes": 118095872, + "bits_per_second": 944261785.282738, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.003891, + "end": 4.001742, + "seconds": 0.997851014137268, + "bytes": 117833728, + "bits_per_second": 944699970.88194859, + "retransmits": 0, + "snd_cwnd": 1143920, + "snd_wnd": -1, + "rtt": 9, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.003891, + "end": 4.001742, + "seconds": 0.997851014137268, + "bytes": 117833728, + "bits_per_second": 944699970.88194859, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.001742, + "end": 5.002381, + "seconds": 1.0006389617919922, + "bytes": 117964800, + "bits_per_second": 943115785.04792964, + "retransmits": 0, + "snd_cwnd": 1284376, + "snd_wnd": -1, + "rtt": 11, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.001742, + "end": 5.002381, + "seconds": 1.0006389617919922, + "bytes": 117964800, + "bits_per_second": 943115785.04792964, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.002381, + "end": 6.000307, + "seconds": 0.99792599678039551, + "bytes": 117702656, + "bits_per_second": 943578232.2917217, + "retransmits": 0, + "snd_cwnd": 1410352, + "snd_wnd": -1, + "rtt": 12, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.002381, + "end": 6.000307, + "seconds": 0.99792599678039551, + "bytes": 117702656, + "bits_per_second": 943578232.2917217, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.000307, + "end": 7.0011, + "seconds": 1.0007929801940918, + "bytes": 117964800, + "bits_per_second": 942970642.95652544, + "retransmits": 0, + "snd_cwnd": 1526192, + "snd_wnd": -1, + "rtt": 12, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.000307, + "end": 7.0011, + "seconds": 1.0007929801940918, + "bytes": 117964800, + "bits_per_second": 942970642.95652544, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.0011, + "end": 8.00046, + "seconds": 0.99936002492904663, + "bytes": 117833728, + "bits_per_second": 943273495.52222526, + "retransmits": 0, + "snd_cwnd": 1634792, + "snd_wnd": -1, + "rtt": 14, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.0011, + "end": 8.00046, + "seconds": 0.99936002492904663, + "bytes": 117833728, + "bits_per_second": 943273495.52222526, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.00046, + "end": 9.004707, + "seconds": 1.0042469501495361, + "bytes": 117440512, + "bits_per_second": 935550858.14311051, + "retransmits": 0, + "snd_cwnd": 1249624, + "snd_wnd": -1, + "rtt": 10, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.00046, + "end": 9.004707, + "seconds": 1.0042469501495361, + "bytes": 117440512, + "bits_per_second": 935550858.14311051, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.004707, + "end": 10.001925, + "seconds": 0.99721801280975342, + "bytes": 117571584, + "bits_per_second": 943196632.95075274, + "retransmits": 0, + "snd_cwnd": 1379944, + "snd_wnd": -1, + "rtt": 11, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.004707, + "end": 10.001925, + "seconds": 0.99721801280975342, + "bytes": 117571584, + "bits_per_second": 943196632.95075274, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.001925, + "end": 11.00095, + "seconds": 0.999024987220764, + "bytes": 117833728, + "bits_per_second": 943589836.148602, + "retransmits": 0, + "snd_cwnd": 1481304, + "snd_wnd": -1, + "rtt": 12, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.001925, + "end": 11.00095, + "seconds": 0.999024987220764, + "bytes": 117833728, + "bits_per_second": 943589836.148602, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.00095, + "end": 12.002721, + "seconds": 1.0017709732055664, + "bytes": 117964800, + "bits_per_second": 942050054.59501, + "retransmits": 0, + "snd_cwnd": 1558048, + "snd_wnd": -1, + "rtt": 13, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.00095, + "end": 12.002721, + "seconds": 1.0017709732055664, + "bytes": 117964800, + "bits_per_second": 942050054.59501, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.002721, + "end": 13.001402, + "seconds": 0.99868100881576538, + "bytes": 117702656, + "bits_per_second": 942864878.46261668, + "retransmits": 0, + "snd_cwnd": 1614520, + "snd_wnd": -1, + "rtt": 13, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.002721, + "end": 13.001402, + "seconds": 0.99868100881576538, + "bytes": 117702656, + "bits_per_second": 942864878.46261668, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.001402, + "end": 14.002198, + "seconds": 1.0007959604263306, + "bytes": 117833728, + "bits_per_second": 941920092.881301, + "retransmits": 0, + "snd_cwnd": 1652168, + "snd_wnd": -1, + "rtt": 14, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.001402, + "end": 14.002198, + "seconds": 1.0007959604263306, + "bytes": 117833728, + "bits_per_second": 941920092.881301, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.002198, + "end": 15.003414, + "seconds": 1.0012160539627075, + "bytes": 117833728, + "bits_per_second": 941524878.93997729, + "retransmits": 0, + "snd_cwnd": 1675336, + "snd_wnd": -1, + "rtt": 14, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.002198, + "end": 15.003414, + "seconds": 1.0012160539627075, + "bytes": 117833728, + "bits_per_second": 941524878.93997729, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.003414, + "end": 16.005045, + "seconds": 1.0016310214996338, + "bytes": 116916224, + "bits_per_second": 933806733.141743, + "retransmits": 0, + "snd_cwnd": 1216320, + "snd_wnd": -1, + "rtt": 10, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.003414, + "end": 16.005045, + "seconds": 1.0016310214996338, + "bytes": 116916224, + "bits_per_second": 933806733.141743, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.005045, + "end": 17.001326, + "seconds": 0.99628102779388428, + "bytes": 117702656, + "bits_per_second": 945136183.19630134, + "retransmits": 0, + "snd_cwnd": 1294512, + "snd_wnd": -1, + "rtt": 11, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.005045, + "end": 17.001326, + "seconds": 0.99628102779388428, + "bytes": 117702656, + "bits_per_second": 945136183.19630134, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.001326, + "end": 18.000988, + "seconds": 0.99966198205947876, + "bytes": 117702656, + "bits_per_second": 941939640.4973762, + "retransmits": 0, + "snd_cwnd": 1350984, + "snd_wnd": -1, + "rtt": 11, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.001326, + "end": 18.000988, + "seconds": 0.99966198205947876, + "bytes": 117702656, + "bits_per_second": 941939640.4973762, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.000988, + "end": 19.002948, + "seconds": 1.0019600391387939, + "bytes": 117964800, + "bits_per_second": 941872293.44110978, + "retransmits": 0, + "snd_cwnd": 1413248, + "snd_wnd": -1, + "rtt": 12, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.000988, + "end": 19.002948, + "seconds": 1.0019600391387939, + "bytes": 117964800, + "bits_per_second": 941872293.44110978, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.002948, + "end": 20.000944, + "seconds": 0.99799597263336182, + "bytes": 117440512, + "bits_per_second": 941410708.823729, + "retransmits": 0, + "snd_cwnd": 1514608, + "snd_wnd": -1, + "rtt": 12, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.002948, + "end": 20.000944, + "seconds": 0.99799597263336182, + "bytes": 117440512, + "bits_per_second": 941410708.823729, + "retransmits": 0, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 20.000944, + "seconds": 20.000944, + "bytes": 2350907392, + "bits_per_second": 940318573.7633183, + "retransmits": 0, + "reorder": -1, + "max_snd_cwnd": 1675336, + "max_snd_wnd": 0, + "max_rtt": 14, + "min_rtt": 4, + "mean_rtt": 10, + "sender": true + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 20.004822, + "seconds": 20.000944, + "bytes": 2348417024, + "bits_per_second": 939140382.853694, + "sender": true + } + }], + "sum_sent": { + "start": 0, + "end": 20.000944, + "seconds": 20.000944, + "bytes": 2350907392, + "bits_per_second": 940318573.7633183, + "retransmits": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.004822, + "seconds": 20.004822, + "bytes": 2348417024, + "bits_per_second": 939140382.853694, + "sender": true + }, + "cpu_utilization_percent": { + "host_total": 3.4800217805973226, + "host_user": 0.049332763008135827, + "host_system": 3.4306990151093024, + "remote_total": 7.4801181774542354, + "remote_user": 0.582239360082572, + "remote_system": 6.8978788173716641 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_120mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_120mbps.json new file mode 100644 index 0000000..a7e4262 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_120mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "169.254.6.144", + "local_port": 61190, + "remote_host": "169.254.70.114", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:31:10 UTC", + "timesecs": 1778949070, + "timemillisecs": 1778949070596 + }, + "connecting_to": { + "host": "169.254.70.114", + "port": 5201 + }, + "cookie": "5nlff46kwfyxyi2hdmglbn32ebtjlkmgeauz", + "target_bitrate": 120000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 120000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005046, + "seconds": 1.005046010017395, + "bytes": 15076576, + "bits_per_second": 120007051.21739897, + "packets": 10412, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.005046, + "seconds": 1.005046010017395, + "bytes": 15076576, + "bits_per_second": 120007051.21739897, + "packets": 10412, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005046, + "end": 2.004122, + "seconds": 0.999076008796692, + "bytes": 14985352, + "bits_per_second": 119993689.11319308, + "packets": 10349, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.005046, + "end": 2.004122, + "seconds": 0.999076008796692, + "bytes": 14985352, + "bits_per_second": 119993689.11319308, + "packets": 10349, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.004122, + "end": 3.00353, + "seconds": 0.99940800666809082, + "bytes": 14991144, + "bits_per_second": 120000191.31308517, + "packets": 10353, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.004122, + "end": 3.00353, + "seconds": 0.99940800666809082, + "bytes": 14991144, + "bits_per_second": 120000191.31308517, + "packets": 10353, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.00353, + "end": 4.005045, + "seconds": 1.0015150308609009, + "bytes": 15023000, + "bits_per_second": 120002192.9742682, + "packets": 10375, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.00353, + "end": 4.005045, + "seconds": 1.0015150308609009, + "bytes": 15023000, + "bits_per_second": 120002192.9742682, + "packets": 10375, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.005045, + "end": 5.004257, + "seconds": 0.99921202659606934, + "bytes": 14988248, + "bits_per_second": 120000541.23495042, + "packets": 10351, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.005045, + "end": 5.004257, + "seconds": 0.99921202659606934, + "bytes": 14988248, + "bits_per_second": 120000541.23495042, + "packets": 10351, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.004257, + "end": 6.000225, + "seconds": 0.995967984199524, + "bytes": 14939016, + "bits_per_second": 119995953.58083111, + "packets": 10317, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.004257, + "end": 6.000225, + "seconds": 0.995967984199524, + "bytes": 14939016, + "bits_per_second": 119995953.58083111, + "packets": 10317, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.000225, + "end": 7.004326, + "seconds": 1.004101037979126, + "bytes": 15062096, + "bits_per_second": 120004624.47734764, + "packets": 10402, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.000225, + "end": 7.004326, + "seconds": 1.004101037979126, + "bytes": 15062096, + "bits_per_second": 120004624.47734764, + "packets": 10402, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.004326, + "end": 8.005059, + "seconds": 1.0007330179214478, + "bytes": 15009968, + "bits_per_second": 119991787.86906542, + "packets": 10366, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.004326, + "end": 8.005059, + "seconds": 1.0007330179214478, + "bytes": 15009968, + "bits_per_second": 119991787.86906542, + "packets": 10366, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.005059, + "end": 9.000252, + "seconds": 0.9951930046081543, + "bytes": 14928880, + "bits_per_second": 120007917.50643845, + "packets": 10310, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.005059, + "end": 9.000252, + "seconds": 0.9951930046081543, + "bytes": 14928880, + "bits_per_second": 120007917.50643845, + "packets": 10310, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.000252, + "end": 10.005062, + "seconds": 1.0048099756240845, + "bytes": 15072232, + "bits_per_second": 120000655.77086797, + "packets": 10409, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.000252, + "end": 10.005062, + "seconds": 1.0048099756240845, + "bytes": 15072232, + "bits_per_second": 120000655.77086797, + "packets": 10409, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.005062, + "end": 11.005005, + "seconds": 0.99994301795959473, + "bytes": 14998384, + "bits_per_second": 119993909.4977994, + "packets": 10358, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.005062, + "end": 11.005005, + "seconds": 0.99994301795959473, + "bytes": 14998384, + "bits_per_second": 119993909.4977994, + "packets": 10358, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.005005, + "end": 12.00092, + "seconds": 0.9959149956703186, + "bytes": 14939016, + "bits_per_second": 120002338.07059026, + "packets": 10317, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.005005, + "end": 12.00092, + "seconds": 0.9959149956703186, + "bytes": 14939016, + "bits_per_second": 120002338.07059026, + "packets": 10317, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.00092, + "end": 13.003523, + "seconds": 1.0026030540466309, + "bytes": 15038928, + "bits_per_second": 119999059.96137564, + "packets": 10386, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.00092, + "end": 13.003523, + "seconds": 1.0026030540466309, + "bytes": 15038928, + "bits_per_second": 119999059.96137564, + "packets": 10386, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.003523, + "end": 14.000582, + "seconds": 0.99705898761749268, + "bytes": 14956392, + "bits_per_second": 120004069.45421612, + "packets": 10329, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.003523, + "end": 14.000582, + "seconds": 0.99705898761749268, + "bytes": 14956392, + "bits_per_second": 120004069.45421612, + "packets": 10329, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.000582, + "end": 15.00022, + "seconds": 0.999638020992279, + "bytes": 14994040, + "bits_per_second": 119995755.94466758, + "packets": 10355, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.000582, + "end": 15.00022, + "seconds": 0.999638020992279, + "bytes": 14994040, + "bits_per_second": 119995755.94466758, + "packets": 10355, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.00022, + "end": 16.000395, + "seconds": 1.0001749992370605, + "bytes": 15002728, + "bits_per_second": 120000823.94736257, + "packets": 10361, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.00022, + "end": 16.000395, + "seconds": 1.0001749992370605, + "bytes": 15002728, + "bits_per_second": 120000823.94736257, + "packets": 10361, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.000395, + "end": 17.005044, + "seconds": 1.0046490430831909, + "bytes": 15069336, + "bits_per_second": 119996817.6250155, + "packets": 10407, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.000395, + "end": 17.005044, + "seconds": 1.0046490430831909, + "bytes": 15069336, + "bits_per_second": 119996817.6250155, + "packets": 10407, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.005044, + "end": 18.002377, + "seconds": 0.997332990169525, + "bytes": 14960736, + "bits_per_second": 120005945.03512411, + "packets": 10332, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.005044, + "end": 18.002377, + "seconds": 0.997332990169525, + "bytes": 14960736, + "bits_per_second": 120005945.03512411, + "packets": 10332, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.002377, + "end": 19.00027, + "seconds": 0.99789297580719, + "bytes": 14967976, + "bits_per_second": 119996643.83160922, + "packets": 10337, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.002377, + "end": 19.00027, + "seconds": 0.99789297580719, + "bytes": 14967976, + "bits_per_second": 119996643.83160922, + "packets": 10337, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.00027, + "end": 20.001193, + "seconds": 1.0009230375289917, + "bytes": 15012864, + "bits_per_second": 119992154.73799226, + "packets": 10368, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.00027, + "end": 20.001193, + "seconds": 1.0009230375289917, + "bytes": 15012864, + "bits_per_second": 119992154.73799226, + "packets": 10368, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.001193, + "seconds": 20.001193, + "bytes": 300016912, + "bits_per_second": 119999606.823453, + "jitter_ms": 0.023815206063716458, + "lost_packets": 0, + "packets": 207194, + "lost_percent": 0, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.001226, + "seconds": 20.001226, + "bytes": 300016912, + "bits_per_second": 119999606.823453, + "jitter_ms": 0.023815206063716458, + "lost_packets": 0, + "packets": 207194, + "lost_percent": 0, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.001193, + "seconds": 20.001193, + "bytes": 300016912, + "bits_per_second": 119999606.823453, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 207194, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.001226, + "seconds": 20.001226, + "bytes": 300016912, + "bits_per_second": 119999408.83623834, + "jitter_ms": 0.023815206063716458, + "lost_packets": 0, + "packets": 207194, + "lost_percent": 0, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 8.9987305389592755, + "host_user": 1.1159288939841305, + "host_system": 7.88283164051031, + "remote_total": 5.9369030993884575, + "remote_user": 1.8219474036504546, + "remote_system": 4.1149556957380033 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_30mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_30mbps.json new file mode 100644 index 0000000..3754596 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_30mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "169.254.6.144", + "local_port": 57461, + "remote_host": "169.254.70.114", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:30:30 UTC", + "timesecs": 1778949030, + "timemillisecs": 1778949030534 + }, + "connecting_to": { + "host": "169.254.70.114", + "port": 5201 + }, + "cookie": "dugbi2pww6nolh44xjq6gcgyma6rkqwo54rr", + "target_bitrate": 30000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 30000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005067, + "seconds": 1.005066990852356, + "bytes": 3769144, + "bits_per_second": 30001136.515714593, + "packets": 2603, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.005067, + "seconds": 1.005066990852356, + "bytes": 3769144, + "bits_per_second": 30001136.515714593, + "packets": 2603, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005067, + "end": 2.003702, + "seconds": 0.99863499402999878, + "bytes": 3745976, + "bits_per_second": 30008770.1504077, + "packets": 2587, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.005067, + "end": 2.003702, + "seconds": 0.99863499402999878, + "bytes": 3745976, + "bits_per_second": 30008770.1504077, + "packets": 2587, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003702, + "end": 3.00204, + "seconds": 0.998337984085083, + "bytes": 3743080, + "bits_per_second": 29994491.3219369, + "packets": 2585, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.003702, + "end": 3.00204, + "seconds": 0.998337984085083, + "bytes": 3743080, + "bits_per_second": 29994491.3219369, + "packets": 2585, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.00204, + "end": 4.001865, + "seconds": 0.99982500076293945, + "bytes": 3748872, + "bits_per_second": 29996225.316545092, + "packets": 2589, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.00204, + "end": 4.001865, + "seconds": 0.99982500076293945, + "bytes": 3748872, + "bits_per_second": 29996225.316545092, + "packets": 2589, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.001865, + "end": 5.001893, + "seconds": 1.0000280141830444, + "bytes": 3750320, + "bits_per_second": 30001719.526337542, + "packets": 2590, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.001865, + "end": 5.001893, + "seconds": 1.0000280141830444, + "bytes": 3750320, + "bits_per_second": 30001719.526337542, + "packets": 2590, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.001893, + "end": 6.002356, + "seconds": 1.0004630088806152, + "bytes": 3751768, + "bits_per_second": 30000253.61615501, + "packets": 2591, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.001893, + "end": 6.002356, + "seconds": 1.0004630088806152, + "bytes": 3751768, + "bits_per_second": 30000253.61615501, + "packets": 2591, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.002356, + "end": 7.004298, + "seconds": 1.0019420385360718, + "bytes": 3757560, + "bits_per_second": 30002214.543189634, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.002356, + "end": 7.004298, + "seconds": 1.0019420385360718, + "bytes": 3757560, + "bits_per_second": 30002214.543189634, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.004298, + "end": 8.002213, + "seconds": 0.997915029525757, + "bytes": 3741632, + "bits_per_second": 29995595.931875288, + "packets": 2584, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.004298, + "end": 8.002213, + "seconds": 0.997915029525757, + "bytes": 3741632, + "bits_per_second": 29995595.931875288, + "packets": 2584, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002213, + "end": 9.00525, + "seconds": 1.0030369758605957, + "bytes": 3761904, + "bits_per_second": 30004110.241477977, + "packets": 2598, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.002213, + "end": 9.00525, + "seconds": 1.0030369758605957, + "bytes": 3761904, + "bits_per_second": 30004110.241477977, + "packets": 2598, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.00525, + "end": 10.003731, + "seconds": 0.99848097562789917, + "bytes": 3744528, + "bits_per_second": 30001797.461550929, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.00525, + "end": 10.003731, + "seconds": 0.99848097562789917, + "bytes": 3744528, + "bits_per_second": 30001797.461550929, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.003731, + "end": 11.005052, + "seconds": 1.0013209581375122, + "bytes": 3754664, + "bits_per_second": 29997686.312159415, + "packets": 2593, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.003731, + "end": 11.005052, + "seconds": 1.0013209581375122, + "bytes": 3754664, + "bits_per_second": 29997686.312159415, + "packets": 2593, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.005052, + "end": 12.000242, + "seconds": 0.99519002437591553, + "bytes": 3731496, + "bits_per_second": 29996249.227598712, + "packets": 2577, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.005052, + "end": 12.000242, + "seconds": 0.99519002437591553, + "bytes": 3731496, + "bits_per_second": 29996249.227598712, + "packets": 2577, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.000242, + "end": 13.002164, + "seconds": 1.0019220113754272, + "bytes": 3757560, + "bits_per_second": 30002814.249717213, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.000242, + "end": 13.002164, + "seconds": 1.0019220113754272, + "bytes": 3757560, + "bits_per_second": 30002814.249717213, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.002164, + "end": 14.004042, + "seconds": 1.001878023147583, + "bytes": 3757560, + "bits_per_second": 30004131.546432674, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.002164, + "end": 14.004042, + "seconds": 1.001878023147583, + "bytes": 3757560, + "bits_per_second": 30004131.546432674, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.004042, + "end": 15.00182, + "seconds": 0.99777799844741821, + "bytes": 3741632, + "bits_per_second": 29999715.414227426, + "packets": 2584, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.004042, + "end": 15.00182, + "seconds": 0.99777799844741821, + "bytes": 3741632, + "bits_per_second": 29999715.414227426, + "packets": 2584, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.00182, + "end": 16.003926, + "seconds": 1.0021059513092041, + "bytes": 3756112, + "bits_per_second": 29985747.47584578, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.00182, + "end": 16.003926, + "seconds": 1.0021059513092041, + "bytes": 3756112, + "bits_per_second": 29985747.47584578, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.003926, + "end": 17.003166, + "seconds": 0.999239981174469, + "bytes": 3748872, + "bits_per_second": 30013787.043178294, + "packets": 2588, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.003926, + "end": 17.003166, + "seconds": 0.999239981174469, + "bytes": 3748872, + "bits_per_second": 30013787.043178294, + "packets": 2588, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.003166, + "end": 18.004727, + "seconds": 1.0015610456466675, + "bytes": 3754664, + "bits_per_second": 29990495.467608888, + "packets": 2593, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.003166, + "end": 18.004727, + "seconds": 1.0015610456466675, + "bytes": 3754664, + "bits_per_second": 29990495.467608888, + "packets": 2593, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.004727, + "end": 19.002223, + "seconds": 0.997496008872986, + "bytes": 3741632, + "bits_per_second": 30008196.257165641, + "packets": 2584, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.004727, + "end": 19.002223, + "seconds": 0.997496008872986, + "bytes": 3741632, + "bits_per_second": 30008196.257165641, + "packets": 2584, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.002223, + "end": 20.003911, + "seconds": 1.0016880035400391, + "bytes": 3754664, + "bits_per_second": 29986694.353776757, + "packets": 2593, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.002223, + "end": 20.003911, + "seconds": 1.0016880035400391, + "bytes": 3754664, + "bits_per_second": 29986694.353776757, + "packets": 2593, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.003911, + "seconds": 20.003911, + "bytes": 75013640, + "bits_per_second": 29999589.580257583, + "jitter_ms": 0.031309405970252044, + "lost_packets": 0, + "packets": 51805, + "lost_percent": 0, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.005114, + "seconds": 20.005114, + "bytes": 75013640, + "bits_per_second": 29999589.580257583, + "jitter_ms": 0.031309405970252044, + "lost_packets": 0, + "packets": 51805, + "lost_percent": 0, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.003911, + "seconds": 20.003911, + "bytes": 75013640, + "bits_per_second": 29999589.580257583, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 51805, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.005114, + "seconds": 20.005114, + "bytes": 75013640, + "bits_per_second": 29997785.566230718, + "jitter_ms": 0.031309405970252044, + "lost_packets": 0, + "packets": 51805, + "lost_percent": 0, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 10.614941566316267, + "host_user": 0.607022276606642, + "host_system": 10.0079892525139, + "remote_total": 2.7756106965872331, + "remote_user": 0.652427097886359, + "remote_system": 2.1231785999872934 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_60mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_60mbps.json new file mode 100644 index 0000000..28c74e9 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/iperf3_udp_60mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "169.254.6.144", + "local_port": 57428, + "remote_host": "169.254.70.114", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:30:50 UTC", + "timesecs": 1778949050, + "timemillisecs": 1778949050571 + }, + "connecting_to": { + "host": "169.254.70.114", + "port": 5201 + }, + "cookie": "vr5wywtncuhbytuoa6whr6hxscdd6haxyirm", + "target_bitrate": 60000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 60000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.000587, + "seconds": 1.000586986541748, + "bytes": 7504984, + "bits_per_second": 60004650.077961937, + "packets": 5183, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.000587, + "seconds": 1.000586986541748, + "bytes": 7504984, + "bits_per_second": 60004650.077961937, + "packets": 5183, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.000587, + "end": 2.003287, + "seconds": 1.0026999711990356, + "bytes": 7519464, + "bits_per_second": 59993730.6551085, + "packets": 5193, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.000587, + "end": 2.003287, + "seconds": 1.0026999711990356, + "bytes": 7519464, + "bits_per_second": 59993730.6551085, + "packets": 5193, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003287, + "end": 3.00221, + "seconds": 0.99892300367355347, + "bytes": 7491952, + "bits_per_second": 60000236.033794321, + "packets": 5174, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.003287, + "end": 3.00221, + "seconds": 0.99892300367355347, + "bytes": 7491952, + "bits_per_second": 60000236.033794321, + "packets": 5174, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.00221, + "end": 4.002002, + "seconds": 0.999791979789734, + "bytes": 7499192, + "bits_per_second": 60006018.464578234, + "packets": 5179, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.00221, + "end": 4.002002, + "seconds": 0.999791979789734, + "bytes": 7499192, + "bits_per_second": 60006018.464578234, + "packets": 5179, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.002002, + "end": 5.001927, + "seconds": 0.99992501735687256, + "bytes": 7499192, + "bits_per_second": 59998034.8112326, + "packets": 5179, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.002002, + "end": 5.001927, + "seconds": 0.99992501735687256, + "bytes": 7499192, + "bits_per_second": 59998034.8112326, + "packets": 5179, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.001927, + "end": 6.000189, + "seconds": 0.99826198816299438, + "bytes": 7486160, + "bits_per_second": 59993549.499173544, + "packets": 5171, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.001927, + "end": 6.000189, + "seconds": 0.99826198816299438, + "bytes": 7486160, + "bits_per_second": 59993549.499173544, + "packets": 5171, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.000189, + "end": 7.001711, + "seconds": 1.0015219449996948, + "bytes": 7510776, + "bits_per_second": 59994899.063363321, + "packets": 5187, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.000189, + "end": 7.001711, + "seconds": 1.0015219449996948, + "bytes": 7510776, + "bits_per_second": 59994899.063363321, + "packets": 5187, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.001711, + "end": 8.002197, + "seconds": 1.0004860162734985, + "bytes": 7503536, + "bits_per_second": 59999127.447664723, + "packets": 5182, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.001711, + "end": 8.002197, + "seconds": 1.0004860162734985, + "bytes": 7503536, + "bits_per_second": 59999127.447664723, + "packets": 5182, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002197, + "end": 9.005063, + "seconds": 1.00286602973938, + "bytes": 7520912, + "bits_per_second": 59995347.549698137, + "packets": 5195, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.002197, + "end": 9.005063, + "seconds": 1.00286602973938, + "bytes": 7520912, + "bits_per_second": 59995347.549698137, + "packets": 5195, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.005063, + "end": 10.0021, + "seconds": 0.99703699350357056, + "bytes": 7477472, + "bits_per_second": 59997549.127835624, + "packets": 5164, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.005063, + "end": 10.0021, + "seconds": 0.99703699350357056, + "bytes": 7477472, + "bits_per_second": 59997549.127835624, + "packets": 5164, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.0021, + "end": 11.005069, + "seconds": 1.0029690265655518, + "bytes": 7523808, + "bits_per_second": 60012285.928817853, + "packets": 5195, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.0021, + "end": 11.005069, + "seconds": 1.0029690265655518, + "bytes": 7523808, + "bits_per_second": 60012285.928817853, + "packets": 5195, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.005069, + "end": 12.003555, + "seconds": 0.9984859824180603, + "bytes": 7487608, + "bits_per_second": 59991692.477180772, + "packets": 5171, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.005069, + "end": 12.003555, + "seconds": 0.9984859824180603, + "bytes": 7487608, + "bits_per_second": 59991692.477180772, + "packets": 5171, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.003555, + "end": 13.002908, + "seconds": 0.999352991580963, + "bytes": 7496296, + "bits_per_second": 60009194.454031378, + "packets": 5177, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.003555, + "end": 13.002908, + "seconds": 0.999352991580963, + "bytes": 7496296, + "bits_per_second": 60009194.454031378, + "packets": 5177, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.002908, + "end": 14.000595, + "seconds": 0.99768698215484619, + "bytes": 7481816, + "bits_per_second": 59993293.558590569, + "packets": 5167, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.002908, + "end": 14.000595, + "seconds": 0.99768698215484619, + "bytes": 7481816, + "bits_per_second": 59993293.558590569, + "packets": 5167, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.000595, + "end": 15.002647, + "seconds": 1.0020519495010376, + "bytes": 7515120, + "bits_per_second": 59997847.446868069, + "packets": 5190, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.000595, + "end": 15.002647, + "seconds": 1.0020519495010376, + "bytes": 7515120, + "bits_per_second": 59997847.446868069, + "packets": 5190, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.002647, + "end": 16.002288, + "seconds": 0.99964100122451782, + "bytes": 7497744, + "bits_per_second": 60003493.180576481, + "packets": 5178, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.002647, + "end": 16.002288, + "seconds": 0.99964100122451782, + "bytes": 7497744, + "bits_per_second": 60003493.180576481, + "packets": 5178, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.002288, + "end": 17.002304, + "seconds": 1.0000159740448, + "bytes": 7499192, + "bits_per_second": 59992577.67587655, + "packets": 5180, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.002288, + "end": 17.002304, + "seconds": 1.0000159740448, + "bytes": 7499192, + "bits_per_second": 59992577.67587655, + "packets": 5180, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.002304, + "end": 18.00506, + "seconds": 1.0027559995651245, + "bytes": 7520912, + "bits_per_second": 60001930.7050702, + "packets": 5194, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.002304, + "end": 18.00506, + "seconds": 1.0027559995651245, + "bytes": 7520912, + "bits_per_second": 60001930.7050702, + "packets": 5194, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.00506, + "end": 19.000147, + "seconds": 0.99508702754974365, + "bytes": 7462992, + "bits_per_second": 59998707.999452285, + "packets": 5154, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.00506, + "end": 19.000147, + "seconds": 0.99508702754974365, + "bytes": 7462992, + "bits_per_second": 59998707.999452285, + "packets": 5154, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.000147, + "end": 20.002526, + "seconds": 1.0023789405822754, + "bytes": 7515120, + "bits_per_second": 59978275.246960126, + "packets": 5190, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.000147, + "end": 20.002526, + "seconds": 1.0023789405822754, + "bytes": 7515120, + "bits_per_second": 59978275.246960126, + "packets": 5190, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.002526, + "seconds": 20.002526, + "bytes": 150017144, + "bits_per_second": 59999279.690975033, + "jitter_ms": 0.00712178650626433, + "lost_packets": 0, + "packets": 103603, + "lost_percent": 0, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.002929, + "seconds": 20.002929, + "bytes": 150017144, + "bits_per_second": 59999279.690975033, + "jitter_ms": 0.00712178650626433, + "lost_packets": 0, + "packets": 103603, + "lost_percent": 0, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.002526, + "seconds": 20.002526, + "bytes": 150017144, + "bits_per_second": 59999279.690975033, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 103603, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.002929, + "seconds": 20.002929, + "bytes": 150017144, + "bits_per_second": 59998070.882519253, + "jitter_ms": 0.00712178650626433, + "lost_packets": 0, + "packets": 103603, + "lost_percent": 0, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 9.28948814763846, + "host_user": 0.55152477482600049, + "host_system": 8.738013360103194, + "remote_total": 3.6510854810855689, + "remote_user": 1.1247953299636932, + "remote_system": 2.5263551416072687 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/metadata.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/metadata.txt new file mode 100644 index 0000000..0ae58f0 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/metadata.txt @@ -0,0 +1,7 @@ +case=1gbe-2017-imac-retry +receiver_ip=169.254.70.114 +duration_seconds=20 +timestamp=2026-05-17_0128 +hostname=Gabriels-MacBook-Pro.local +whoami=gabriel +pwd=/Users/gabriel/Development/iBridge diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_hardware_ports.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_hardware_ports.txt new file mode 100644 index 0000000..504c6ac --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_hardware_ports.txt @@ -0,0 +1,39 @@ + +Hardware Port: Ethernet Adapter (en4) +Device: en4 +Ethernet Address: 2a:a4:91:dd:96:0d + +Hardware Port: Ethernet Adapter (en5) +Device: en5 +Ethernet Address: 2a:a4:91:dd:96:0e + +Hardware Port: USB 10/100/1000 LAN +Device: en9 +Ethernet Address: 00:e0:4c:68:56:f1 + +Hardware Port: Ethernet Adapter (en6) +Device: en6 +Ethernet Address: 2a:a4:91:dd:96:0f + +Hardware Port: Thunderbolt Bridge +Device: bridge0 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Wi-Fi +Device: en0 +Ethernet Address: f8:4d:89:6c:4d:9e + +Hardware Port: Thunderbolt 1 +Device: en1 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Thunderbolt 2 +Device: en2 +Ethernet Address: 36:fa:2e:69:8f:44 + +Hardware Port: Thunderbolt 3 +Device: en3 +Ethernet Address: 36:fa:2e:69:8f:48 + +VLAN Configurations +=================== diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_services.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_services.txt new file mode 100644 index 0000000..e6c0f7d --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/networksetup_services.txt @@ -0,0 +1,9 @@ +An asterisk (*) denotes that a network service is disabled. +USB 10/100/1000 LAN +Thunderbolt Bridge +Wi-Fi +iPhone USB +TunnelBear +hide.me VPN (Wireguard) +*Betternet VPN (Hydra) +Tailscale diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ping_100.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ping_100.txt new file mode 100644 index 0000000..229d385 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/ping_100.txt @@ -0,0 +1,105 @@ +PING 169.254.70.114 (169.254.70.114): 56 data bytes +64 bytes from 169.254.70.114: icmp_seq=0 ttl=255 time=0.828 ms +64 bytes from 169.254.70.114: icmp_seq=1 ttl=255 time=1.186 ms +64 bytes from 169.254.70.114: icmp_seq=2 ttl=255 time=1.331 ms +64 bytes from 169.254.70.114: icmp_seq=3 ttl=255 time=1.124 ms +64 bytes from 169.254.70.114: icmp_seq=4 ttl=255 time=1.490 ms +64 bytes from 169.254.70.114: icmp_seq=5 ttl=255 time=1.685 ms +64 bytes from 169.254.70.114: icmp_seq=6 ttl=255 time=0.828 ms +64 bytes from 169.254.70.114: icmp_seq=7 ttl=255 time=1.400 ms +64 bytes from 169.254.70.114: icmp_seq=8 ttl=255 time=1.544 ms +64 bytes from 169.254.70.114: icmp_seq=9 ttl=255 time=1.350 ms +64 bytes from 169.254.70.114: icmp_seq=10 ttl=255 time=1.186 ms +64 bytes from 169.254.70.114: icmp_seq=11 ttl=255 time=1.299 ms +64 bytes from 169.254.70.114: icmp_seq=12 ttl=255 time=1.627 ms +64 bytes from 169.254.70.114: icmp_seq=13 ttl=255 time=1.302 ms +64 bytes from 169.254.70.114: icmp_seq=14 ttl=255 time=2.140 ms +64 bytes from 169.254.70.114: icmp_seq=15 ttl=255 time=1.723 ms +64 bytes from 169.254.70.114: icmp_seq=16 ttl=255 time=1.773 ms +64 bytes from 169.254.70.114: icmp_seq=17 ttl=255 time=1.575 ms +64 bytes from 169.254.70.114: icmp_seq=18 ttl=255 time=1.373 ms +64 bytes from 169.254.70.114: icmp_seq=19 ttl=255 time=1.586 ms +64 bytes from 169.254.70.114: icmp_seq=20 ttl=255 time=1.573 ms +64 bytes from 169.254.70.114: icmp_seq=21 ttl=255 time=1.785 ms +64 bytes from 169.254.70.114: icmp_seq=22 ttl=255 time=1.529 ms +64 bytes from 169.254.70.114: icmp_seq=23 ttl=255 time=1.841 ms +64 bytes from 169.254.70.114: icmp_seq=24 ttl=255 time=1.466 ms +64 bytes from 169.254.70.114: icmp_seq=25 ttl=255 time=1.722 ms +64 bytes from 169.254.70.114: icmp_seq=26 ttl=255 time=1.469 ms +64 bytes from 169.254.70.114: icmp_seq=27 ttl=255 time=2.372 ms +64 bytes from 169.254.70.114: icmp_seq=28 ttl=255 time=1.474 ms +64 bytes from 169.254.70.114: icmp_seq=29 ttl=255 time=1.803 ms +64 bytes from 169.254.70.114: icmp_seq=30 ttl=255 time=1.438 ms +64 bytes from 169.254.70.114: icmp_seq=31 ttl=255 time=1.871 ms +64 bytes from 169.254.70.114: icmp_seq=32 ttl=255 time=1.367 ms +64 bytes from 169.254.70.114: icmp_seq=33 ttl=255 time=1.442 ms +64 bytes from 169.254.70.114: icmp_seq=34 ttl=255 time=1.680 ms +64 bytes from 169.254.70.114: icmp_seq=35 ttl=255 time=1.471 ms +64 bytes from 169.254.70.114: icmp_seq=36 ttl=255 time=1.528 ms +64 bytes from 169.254.70.114: icmp_seq=37 ttl=255 time=1.454 ms +64 bytes from 169.254.70.114: icmp_seq=38 ttl=255 time=1.278 ms +64 bytes from 169.254.70.114: icmp_seq=39 ttl=255 time=1.440 ms +64 bytes from 169.254.70.114: icmp_seq=40 ttl=255 time=1.711 ms +64 bytes from 169.254.70.114: icmp_seq=41 ttl=255 time=1.659 ms +64 bytes from 169.254.70.114: icmp_seq=42 ttl=255 time=1.181 ms +64 bytes from 169.254.70.114: icmp_seq=43 ttl=255 time=1.687 ms +64 bytes from 169.254.70.114: icmp_seq=44 ttl=255 time=1.541 ms +64 bytes from 169.254.70.114: icmp_seq=45 ttl=255 time=1.651 ms +64 bytes from 169.254.70.114: icmp_seq=46 ttl=255 time=1.468 ms +64 bytes from 169.254.70.114: icmp_seq=47 ttl=255 time=1.846 ms +64 bytes from 169.254.70.114: icmp_seq=48 ttl=255 time=1.358 ms +64 bytes from 169.254.70.114: icmp_seq=49 ttl=255 time=1.496 ms +64 bytes from 169.254.70.114: icmp_seq=50 ttl=255 time=1.500 ms +64 bytes from 169.254.70.114: icmp_seq=51 ttl=255 time=1.866 ms +64 bytes from 169.254.70.114: icmp_seq=52 ttl=255 time=1.479 ms +64 bytes from 169.254.70.114: icmp_seq=53 ttl=255 time=1.457 ms +64 bytes from 169.254.70.114: icmp_seq=54 ttl=255 time=1.405 ms +64 bytes from 169.254.70.114: icmp_seq=55 ttl=255 time=1.443 ms +64 bytes from 169.254.70.114: icmp_seq=56 ttl=255 time=1.665 ms +64 bytes from 169.254.70.114: icmp_seq=57 ttl=255 time=1.517 ms +64 bytes from 169.254.70.114: icmp_seq=58 ttl=255 time=1.592 ms +64 bytes from 169.254.70.114: icmp_seq=59 ttl=255 time=1.429 ms +64 bytes from 169.254.70.114: icmp_seq=60 ttl=255 time=1.667 ms +64 bytes from 169.254.70.114: icmp_seq=61 ttl=255 time=2.011 ms +64 bytes from 169.254.70.114: icmp_seq=62 ttl=255 time=1.370 ms +64 bytes from 169.254.70.114: icmp_seq=63 ttl=255 time=1.564 ms +64 bytes from 169.254.70.114: icmp_seq=64 ttl=255 time=1.417 ms +64 bytes from 169.254.70.114: icmp_seq=65 ttl=255 time=1.560 ms +64 bytes from 169.254.70.114: icmp_seq=66 ttl=255 time=1.227 ms +64 bytes from 169.254.70.114: icmp_seq=67 ttl=255 time=1.651 ms +64 bytes from 169.254.70.114: icmp_seq=68 ttl=255 time=1.582 ms +64 bytes from 169.254.70.114: icmp_seq=69 ttl=255 time=1.539 ms +64 bytes from 169.254.70.114: icmp_seq=70 ttl=255 time=1.635 ms +64 bytes from 169.254.70.114: icmp_seq=71 ttl=255 time=0.826 ms +64 bytes from 169.254.70.114: icmp_seq=72 ttl=255 time=1.463 ms +64 bytes from 169.254.70.114: icmp_seq=73 ttl=255 time=1.357 ms +64 bytes from 169.254.70.114: icmp_seq=74 ttl=255 time=1.549 ms +64 bytes from 169.254.70.114: icmp_seq=75 ttl=255 time=1.509 ms +64 bytes from 169.254.70.114: icmp_seq=76 ttl=255 time=1.639 ms +64 bytes from 169.254.70.114: icmp_seq=77 ttl=255 time=1.349 ms +64 bytes from 169.254.70.114: icmp_seq=78 ttl=255 time=1.742 ms +64 bytes from 169.254.70.114: icmp_seq=79 ttl=255 time=1.685 ms +64 bytes from 169.254.70.114: icmp_seq=80 ttl=255 time=1.192 ms +64 bytes from 169.254.70.114: icmp_seq=81 ttl=255 time=1.416 ms +64 bytes from 169.254.70.114: icmp_seq=82 ttl=255 time=1.503 ms +64 bytes from 169.254.70.114: icmp_seq=83 ttl=255 time=1.700 ms +64 bytes from 169.254.70.114: icmp_seq=84 ttl=255 time=1.383 ms +64 bytes from 169.254.70.114: icmp_seq=85 ttl=255 time=1.290 ms +64 bytes from 169.254.70.114: icmp_seq=86 ttl=255 time=1.719 ms +64 bytes from 169.254.70.114: icmp_seq=87 ttl=255 time=1.506 ms +64 bytes from 169.254.70.114: icmp_seq=88 ttl=255 time=1.262 ms +64 bytes from 169.254.70.114: icmp_seq=89 ttl=255 time=1.586 ms +64 bytes from 169.254.70.114: icmp_seq=90 ttl=255 time=1.488 ms +64 bytes from 169.254.70.114: icmp_seq=91 ttl=255 time=1.448 ms +64 bytes from 169.254.70.114: icmp_seq=92 ttl=255 time=1.588 ms +64 bytes from 169.254.70.114: icmp_seq=93 ttl=255 time=1.609 ms +64 bytes from 169.254.70.114: icmp_seq=94 ttl=255 time=1.651 ms +64 bytes from 169.254.70.114: icmp_seq=95 ttl=255 time=1.512 ms +64 bytes from 169.254.70.114: icmp_seq=96 ttl=255 time=1.653 ms +64 bytes from 169.254.70.114: icmp_seq=97 ttl=255 time=1.442 ms +64 bytes from 169.254.70.114: icmp_seq=98 ttl=255 time=1.670 ms +64 bytes from 169.254.70.114: icmp_seq=99 ttl=255 time=1.528 ms + +--- 169.254.70.114 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 0.826/1.518/2.372/0.231 ms diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/summary.md b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/summary.md new file mode 100644 index 0000000..fa7f5a6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/1gbe-2017-imac-retry/summary.md @@ -0,0 +1,13 @@ +# Network Matrix Result: 1gbe-2017-imac-retry + +- Receiver IP: `169.254.70.114` +- Duration: `20` seconds +- Status: raw command artifacts captured; summarize min/avg/max/loss and iperf throughput after the physical path is confirmed. + +## Required Notes + +- Interface actually used: +- Physical path: +- Tailscale direct/relay status, if applicable: +- Link speed, if visible: +- Observed blockers: diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/ping_20_ethernet_current.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/ping_20_ethernet_current.txt new file mode 100644 index 0000000..a323571 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/ping_20_ethernet_current.txt @@ -0,0 +1,25 @@ +PING 169.254.70.114 (169.254.70.114): 56 data bytes +64 bytes from 169.254.70.114: icmp_seq=0 ttl=255 time=0.745 ms +64 bytes from 169.254.70.114: icmp_seq=1 ttl=255 time=0.859 ms +64 bytes from 169.254.70.114: icmp_seq=2 ttl=255 time=1.432 ms +64 bytes from 169.254.70.114: icmp_seq=3 ttl=255 time=1.291 ms +64 bytes from 169.254.70.114: icmp_seq=4 ttl=255 time=1.311 ms +64 bytes from 169.254.70.114: icmp_seq=5 ttl=255 time=1.463 ms +64 bytes from 169.254.70.114: icmp_seq=6 ttl=255 time=0.928 ms +64 bytes from 169.254.70.114: icmp_seq=7 ttl=255 time=1.569 ms +64 bytes from 169.254.70.114: icmp_seq=8 ttl=255 time=1.226 ms +64 bytes from 169.254.70.114: icmp_seq=9 ttl=255 time=0.917 ms +64 bytes from 169.254.70.114: icmp_seq=10 ttl=255 time=1.389 ms +64 bytes from 169.254.70.114: icmp_seq=11 ttl=255 time=1.468 ms +64 bytes from 169.254.70.114: icmp_seq=12 ttl=255 time=1.888 ms +64 bytes from 169.254.70.114: icmp_seq=13 ttl=255 time=1.416 ms +64 bytes from 169.254.70.114: icmp_seq=14 ttl=255 time=1.343 ms +64 bytes from 169.254.70.114: icmp_seq=15 ttl=255 time=1.787 ms +64 bytes from 169.254.70.114: icmp_seq=16 ttl=255 time=1.507 ms +64 bytes from 169.254.70.114: icmp_seq=17 ttl=255 time=1.941 ms +64 bytes from 169.254.70.114: icmp_seq=18 ttl=255 time=0.948 ms +64 bytes from 169.254.70.114: icmp_seq=19 ttl=255 time=2.115 ms + +--- 169.254.70.114 ping statistics --- +20 packets transmitted, 20 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 0.745/1.377/2.115/0.365 ms diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/summary.md b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/summary.md new file mode 100644 index 0000000..c5762ec --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/summary.md @@ -0,0 +1,47 @@ +# MBP To 2017 iMac iPerf Matrix + +Date: 2026-05-17 + +## Setup + +- Source: MacBook Pro M1 Max, macOS Tahoe 26.5. +- Receiver: 2017 21.5-inch iMac, macOS Sequoia through OCLP. +- Receiver `iperf3 -s` was started manually on the iMac for the first matrix. +- Remote Login was repaired later by generating OpenSSH host keys and adding + the MacBook Pro public key to the iMac user's `authorized_keys`. +- Direct Ethernet current iMac link-local IP: `169.254.70.114`. +- Wi-Fi 5GHz iMac local IP: `192.168.31.249`. + +## Results + +| Path | Ping loss | Ping min/avg/max/stddev | TCP to iMac | TCP reverse | UDP 30M | UDP 60M | UDP 120M | +|---|---:|---|---:|---:|---:|---:|---:| +| 1GbE direct | 0.0% | `0.826/1.518/2.372/0.231 ms` | `939.14 Mbps` | `937.50 Mbps` | `30.00 Mbps, 0% loss` | `60.00 Mbps, 0% loss` | `120.00 Mbps, 0% loss` | +| 5GHz Wi-Fi | 0.0% | `3.663/56.773/261.386/70.416 ms` | `86.54 Mbps` | `68.66 Mbps` | `29.60 Mbps, 0.023% loss` | `59.28 Mbps, 0.017% loss` | `103.72 Mbps, 8.202% loss` | + +## Interpretation + +- The 1GbE direct path is the correct next display-transport path. +- The 5GHz Wi-Fi path is reachable, but jitter and the 120 Mbps UDP loss make it + unsuitable for high-detail fixed-profile display tests in the current + environment. +- Tailscale can remain a management/reachability path, but do not use it to + choose display profiles while direct Ethernet is available. + +## SSH Status + +SSH is now working from the MacBook Pro to the 2017 iMac. + +- `100.89.104.119:22`: open and authenticated. +- `192.168.31.249:22`: open. +- `169.254.70.114:22`: open and authenticated. + +The iMac's SSH non-login shell does not include Homebrew in `PATH`; use +`/usr/local/bin/iperf3` explicitly when starting the server remotely. + +Follow-up remote prep completed: + +- `caffeinate -dimsu` is running to prevent system/display sleep during tests. +- `/usr/local/bin/iperf3 -s` is listening on TCP `5201`. +- A short post-repair 1GbE TCP check reached `937.86 Mbps` received over + `169.254.70.114`. diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ifconfig.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ifconfig.txt new file mode 100644 index 0000000..6928db6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ifconfig.txt @@ -0,0 +1,142 @@ +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi0: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2d + media: none + status: inactive +anpi2: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2f + media: none + status: inactive +anpi1: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:2e + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0d + nd6 options=201 + media: none + status: inactive +en5: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0e + nd6 options=201 + media: none + status: inactive +en6: flags=8863 mtu 1500 + options=400 + ether 2a:a4:91:dd:96:0f + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:40 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:44 + media: autoselect + status: inactive +en3: flags=8963 mtu 1500 + options=460 + ether 36:fa:2e:69:8f:48 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:fa:2e:69:8f:40 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 10 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 11 priority 0 path cost 0 + member: en3 flags=3 + ifmaxaddr 0 port 12 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8863 mtu 1500 + options=6460 + ether 2a:2b:c8:69:10:f4 + nd6 options=201 + media: autoselect (none) + status: inactive +en0: flags=8863 mtu 1500 + options=6460 + ether e6:3e:a3:f5:84:20 + inet6 fe80::1415:f62c:195d:793%en0 prefixlen 64 secured scopeid 0xe + inet6 fde8:dc6b:87dd:3503:804:b337:5310:edb7 prefixlen 64 autoconf secured + inet 192.168.31.29 netmask 0xffffff00 broadcast 192.168.31.255 + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8863 mtu 1500 + options=6460 + ether ce:c7:43:11:96:33 + inet6 fe80::ccc7:43ff:fe11:9633%awdl0 prefixlen 64 scopeid 0x10 + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether ce:c7:43:11:96:33 + inet6 fe80::ccc7:43ff:fe11:9633%llw0 prefixlen 64 scopeid 0x11 + nd6 options=201 + media: autoselect (none) +utun0: flags=8051 mtu 1500 + inet6 fe80::cc42:7360:7a85:8035%utun0 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::cdfb:e373:305f:c20%utun1 prefixlen 64 scopeid 0x13 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::8258:8a80:b028:26f0%utun2 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::78fb:2df9:6247:9fe9%utun4 prefixlen 64 scopeid 0x16 + inet 100.102.202.93 --> 100.102.202.93 netmask 0xffffffff + inet6 fd7a:115c:a1e0::d35:ca5d prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::c969:6fd7:bc4:c2d3%utun5 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::5a01:a532:ce34:a7aa%utun6 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::4aa0:1dd9:bb64:c638%utun7 prefixlen 64 scopeid 0x19 + nd6 options=201 +en9: flags=8863 mtu 1500 + options=6464 + ether 00:e0:4c:68:56:f1 + inet6 fe80::107e:b068:5415:c9f5%en9 prefixlen 64 secured scopeid 0x1a + inet 169.254.6.144 netmask 0xffff0000 broadcast 169.254.255.255 + nd6 options=201 + media: autoselect (1000baseT ) + status: active +utun8: flags=8051 mtu 1380 + inet6 fe80::909f:dede:8665:435e%utun8 prefixlen 64 scopeid 0x1b + nd6 options=201 +utun9: flags=8051 mtu 1380 + inet6 fe80::7f90:7bb1:a8e:2999%utun9 prefixlen 64 scopeid 0x1c + nd6 options=201 diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_from_receiver_reverse.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_from_receiver_reverse.json new file mode 100644 index 0000000..3a1e70d --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_from_receiver_reverse.json @@ -0,0 +1,301 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.29", + "local_port": 54860, + "remote_host": "192.168.31.249", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:25:33 UTC", + "timesecs": 1778948733, + "timemillisecs": 1778948733828 + }, + "connecting_to": { + "host": "192.168.31.249", + "port": 5201 + }, + "cookie": "ugxq2evruouyvwctftw474cfe5nui2qvnejj", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 10, + "bytes": 0, + "blocks": 0, + "reverse": 1, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.000666, + "seconds": 1.00066602230072, + "bytes": 11272192, + "bits_per_second": 90117515.724841744, + "omitted": false, + "sender": false + }], + "sum": { + "start": 0, + "end": 1.000666, + "seconds": 1.00066602230072, + "bytes": 11272192, + "bits_per_second": 90117515.724841744, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 1.000666, + "end": 2.005421, + "seconds": 1.0047550201416016, + "bytes": 9437184, + "bits_per_second": 75140178.9357171, + "omitted": false, + "sender": false + }], + "sum": { + "start": 1.000666, + "end": 2.005421, + "seconds": 1.0047550201416016, + "bytes": 9437184, + "bits_per_second": 75140178.9357171, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 2.005421, + "end": 3.003543, + "seconds": 0.998121976852417, + "bytes": 7995392, + "bits_per_second": 64083486.270594, + "omitted": false, + "sender": false + }], + "sum": { + "start": 2.005421, + "end": 3.003543, + "seconds": 0.998121976852417, + "bytes": 7995392, + "bits_per_second": 64083486.270594, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 3.003543, + "end": 4.003704, + "seconds": 1.0001610517501831, + "bytes": 7733248, + "bits_per_second": 61856021.979400851, + "omitted": false, + "sender": false + }], + "sum": { + "start": 3.003543, + "end": 4.003704, + "seconds": 1.0001610517501831, + "bytes": 7733248, + "bits_per_second": 61856021.979400851, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 4.003704, + "end": 5.002795, + "seconds": 0.99909102916717529, + "bytes": 5898240, + "bits_per_second": 47228849.6467968, + "omitted": false, + "sender": false + }], + "sum": { + "start": 4.003704, + "end": 5.002795, + "seconds": 0.99909102916717529, + "bytes": 5898240, + "bits_per_second": 47228849.6467968, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 5.002795, + "end": 6.003662, + "seconds": 1.0008670091629028, + "bytes": 9568256, + "bits_per_second": 76479739.365193963, + "omitted": false, + "sender": false + }], + "sum": { + "start": 5.002795, + "end": 6.003662, + "seconds": 1.0008670091629028, + "bytes": 9568256, + "bits_per_second": 76479739.365193963, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 6.003662, + "end": 7.001709, + "seconds": 0.99804699420928955, + "bytes": 10747904, + "bits_per_second": 86151486.351723224, + "omitted": false, + "sender": false + }], + "sum": { + "start": 6.003662, + "end": 7.001709, + "seconds": 0.99804699420928955, + "bytes": 10747904, + "bits_per_second": 86151486.351723224, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 7.001709, + "end": 8.005073, + "seconds": 1.0033639669418335, + "bytes": 7864320, + "bits_per_second": 62703627.071398757, + "omitted": false, + "sender": false + }], + "sum": { + "start": 7.001709, + "end": 8.005073, + "seconds": 1.0033639669418335, + "bytes": 7864320, + "bits_per_second": 62703627.071398757, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 8.005073, + "end": 9.005082, + "seconds": 1.0000089406967163, + "bytes": 7208960, + "bits_per_second": 57671164.37961, + "omitted": false, + "sender": false + }], + "sum": { + "start": 8.005073, + "end": 9.005082, + "seconds": 1.0000089406967163, + "bytes": 7208960, + "bits_per_second": 57671164.37961, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 9.005082, + "end": 10.002779, + "seconds": 0.99769699573516846, + "bytes": 8126464, + "bits_per_second": 65161779.8569145, + "omitted": false, + "sender": false + }], + "sum": { + "start": 9.005082, + "end": 10.002779, + "seconds": 0.99769699573516846, + "bytes": 8126464, + "bits_per_second": 65161779.8569145, + "omitted": false, + "sender": false + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 10.01161, + "seconds": 10.01161, + "bytes": 86245376, + "bits_per_second": 68916288.988484368, + "retransmits": 507, + "reorder": 0, + "max_snd_cwnd": 0, + "max_snd_wnd": 0, + "max_rtt": 0, + "min_rtt": 0, + "mean_rtt": 0, + "sender": false + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 10.002779, + "seconds": 10.002779, + "bytes": 85852160, + "bits_per_second": 68662646.650495827, + "sender": false + } + }], + "sum_sent": { + "start": 0, + "end": 10.01161, + "seconds": 10.01161, + "bytes": 86245376, + "bits_per_second": 68916288.988484368, + "retransmits": 507, + "sender": false + }, + "sum_received": { + "start": 0, + "end": 10.002779, + "seconds": 10.002779, + "bytes": 85852160, + "bits_per_second": 68662646.650495827, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 2.8613346165110176, + "host_user": 0.047999463746639437, + "host_system": 2.8134748020770242, + "remote_total": 0.36212909735015, + "remote_user": 0.018608371489817387, + "remote_system": 0.34352072586033255 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_to_receiver.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_to_receiver.json new file mode 100644 index 0000000..950d895 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_tcp_to_receiver.json @@ -0,0 +1,381 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.29", + "local_port": 54848, + "remote_host": "192.168.31.249", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:25:23 UTC", + "timesecs": 1778948723, + "timemillisecs": 1778948723721 + }, + "connecting_to": { + "host": "192.168.31.249", + "port": 5201 + }, + "cookie": "emlevbjtgzrs6zukgnshzwjduyr34g3grm5d", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 10, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005082, + "seconds": 1.0050820112228394, + "bytes": 13631488, + "bits_per_second": 108500503.2249272, + "retransmits": 3, + "snd_cwnd": 980296, + "snd_wnd": -1, + "rtt": 198, + "rttvar": 6, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.005082, + "seconds": 1.0050820112228394, + "bytes": 13631488, + "bits_per_second": 108500503.2249272, + "retransmits": 3, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005082, + "end": 2.003525, + "seconds": 0.99844300746917725, + "bytes": 11796480, + "bits_per_second": 94519005.385405868, + "retransmits": 157, + "snd_cwnd": 737032, + "snd_wnd": -1, + "rtt": 165, + "rttvar": 16, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.005082, + "end": 2.003525, + "seconds": 0.99844300746917725, + "bytes": 11796480, + "bits_per_second": 94519005.385405868, + "retransmits": 157, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003525, + "end": 3.002791, + "seconds": 0.999266028404236, + "bytes": 13107200, + "bits_per_second": 104934619.02978019, + "retransmits": 165, + "snd_cwnd": 558928, + "snd_wnd": -1, + "rtt": 38, + "rttvar": 1, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.003525, + "end": 3.002791, + "seconds": 0.999266028404236, + "bytes": 13107200, + "bits_per_second": 104934619.02978019, + "retransmits": 165, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.002791, + "end": 4.001069, + "seconds": 0.998278021812439, + "bytes": 11534336, + "bits_per_second": 92433857.0856937, + "retransmits": 0, + "snd_cwnd": 600920, + "snd_wnd": -1, + "rtt": 40, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.002791, + "end": 4.001069, + "seconds": 0.998278021812439, + "bytes": 11534336, + "bits_per_second": 92433857.0856937, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.001069, + "end": 5.005093, + "seconds": 1.0040240287780762, + "bytes": 9961472, + "bits_per_second": 79372379.26166667, + "retransmits": 336, + "snd_cwnd": 331592, + "snd_wnd": -1, + "rtt": 32, + "rttvar": 5, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.001069, + "end": 5.005093, + "seconds": 1.0040240287780762, + "bytes": 9961472, + "bits_per_second": 79372379.26166667, + "retransmits": 336, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.005093, + "end": 6.004408, + "seconds": 0.99931502342224121, + "bytes": 9437184, + "bits_per_second": 75549221.4471592, + "retransmits": 13, + "snd_cwnd": 202720, + "snd_wnd": -1, + "rtt": 14, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.005093, + "end": 6.004408, + "seconds": 0.99931502342224121, + "bytes": 9437184, + "bits_per_second": 75549221.4471592, + "retransmits": 13, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.004408, + "end": 7.001563, + "seconds": 0.99715501070022583, + "bytes": 9437184, + "bits_per_second": 75712874.317287832, + "retransmits": 0, + "snd_cwnd": 253400, + "snd_wnd": -1, + "rtt": 19, + "rttvar": 3, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.004408, + "end": 7.001563, + "seconds": 0.99715501070022583, + "bytes": 9437184, + "bits_per_second": 75712874.317287832, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.001563, + "end": 8.002602, + "seconds": 1.0010390281677246, + "bytes": 10223616, + "bits_per_second": 81704035.2060042, + "retransmits": 0, + "snd_cwnd": 305528, + "snd_wnd": -1, + "rtt": 15, + "rttvar": 2, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.001563, + "end": 8.002602, + "seconds": 1.0010390281677246, + "bytes": 10223616, + "bits_per_second": 81704035.2060042, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002602, + "end": 9.007985, + "seconds": 1.0053830146789551, + "bytes": 10878976, + "bits_per_second": 86565822.904608667, + "retransmits": 3, + "snd_cwnd": 247608, + "snd_wnd": -1, + "rtt": 19, + "rttvar": 4, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.002602, + "end": 9.007985, + "seconds": 1.0053830146789551, + "bytes": 10878976, + "bits_per_second": 86565822.904608667, + "retransmits": 3, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.007985, + "end": 10.004673, + "seconds": 0.99668800830841064, + "bytes": 8519680, + "bits_per_second": 68383926.9980558, + "retransmits": 0, + "snd_cwnd": 291048, + "snd_wnd": -1, + "rtt": 22, + "rttvar": 8, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.007985, + "end": 10.004673, + "seconds": 0.99668800830841064, + "bytes": 8519680, + "bits_per_second": 68383926.9980558, + "retransmits": 0, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 10.004673, + "seconds": 10.004673, + "bytes": 108527616, + "bits_per_second": 86781539.7864578, + "retransmits": 677, + "reorder": -1, + "max_snd_cwnd": 980296, + "max_snd_wnd": 0, + "max_rtt": 198, + "min_rtt": 14, + "mean_rtt": 56, + "sender": true + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 10.008829, + "seconds": 10.004673, + "bytes": 108265472, + "bits_per_second": 86535974.987683371, + "sender": true + } + }], + "sum_sent": { + "start": 0, + "end": 10.004673, + "seconds": 10.004673, + "bytes": 108527616, + "bits_per_second": 86781539.7864578, + "retransmits": 677, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 10.008829, + "seconds": 10.008829, + "bytes": 108265472, + "bits_per_second": 86535974.987683371, + "sender": true + }, + "cpu_utilization_percent": { + "host_total": 0.90323913852270643, + "host_user": 0.024978991542215095, + "host_system": 0.87832989286832364, + "remote_total": 1.8631019000592077, + "remote_user": 0.12640817932456949, + "remote_system": 1.7365438533073645 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_120mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_120mbps.json new file mode 100644 index 0000000..74bde5a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_120mbps.json @@ -0,0 +1,328 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.29", + "local_port": 52923, + "remote_host": "192.168.31.249", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:26:04 UTC", + "timesecs": 1778948764, + "timemillisecs": 1778948764287 + }, + "connecting_to": { + "host": "192.168.31.249", + "port": 5201 + }, + "cookie": "kt4jlb4cd7mmiw53d7d464octjp7npho4z5d", + "target_bitrate": 120000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 10, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 120000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.0042, + "seconds": 1.0041999816894531, + "bytes": 15063544, + "bits_per_second": 120004335.98620297, + "packets": 10403, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.0042, + "seconds": 1.0041999816894531, + "bytes": 15063544, + "bits_per_second": 120004335.98620297, + "packets": 10403, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.0042, + "end": 2.005044, + "seconds": 1.0008440017700195, + "bytes": 13912384, + "bits_per_second": 111205214.60204047, + "packets": 9609, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.0042, + "end": 2.005044, + "seconds": 1.0008440017700195, + "bytes": 13912384, + "bits_per_second": 111205214.60204047, + "packets": 9609, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.005044, + "end": 3.005041, + "seconds": 0.99999701976776123, + "bytes": 16100312, + "bits_per_second": 128802879.862495, + "packets": 11118, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.005044, + "end": 3.005041, + "seconds": 0.99999701976776123, + "bytes": 16100312, + "bits_per_second": 128802879.862495, + "packets": 11118, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.005041, + "end": 4.005045, + "seconds": 1.0000040531158447, + "bytes": 14999832, + "bits_per_second": 119998169.63351732, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.005041, + "end": 4.005045, + "seconds": 1.0000040531158447, + "bytes": 14999832, + "bits_per_second": 119998169.63351732, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.005045, + "end": 5.005049, + "seconds": 1.0000040531158447, + "bytes": 14999832, + "bits_per_second": 119998169.63351732, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.005045, + "end": 5.005049, + "seconds": 1.0000040531158447, + "bytes": 14999832, + "bits_per_second": 119998169.63351732, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.005049, + "end": 6.005059, + "seconds": 1.0000100135803223, + "bytes": 14999832, + "bits_per_second": 119997454.39585194, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.005049, + "end": 6.005059, + "seconds": 1.0000100135803223, + "bytes": 14999832, + "bits_per_second": 119997454.39585194, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.005059, + "end": 7.005041, + "seconds": 0.99998199939727783, + "bytes": 14999832, + "bits_per_second": 120000816.08701672, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.005059, + "end": 7.005041, + "seconds": 0.99998199939727783, + "bytes": 14999832, + "bits_per_second": 120000816.08701672, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.005041, + "end": 8.000741, + "seconds": 0.99570000171661377, + "bytes": 14936120, + "bits_per_second": 120004981.21321462, + "packets": 10315, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.005041, + "end": 8.000741, + "seconds": 0.99570000171661377, + "bytes": 14936120, + "bits_per_second": 120004981.21321462, + "packets": 10315, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.000741, + "end": 9.005043, + "seconds": 1.0043020248413086, + "bytes": 15063544, + "bits_per_second": 119992142.82082297, + "packets": 10404, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.000741, + "end": 9.005043, + "seconds": 1.0043020248413086, + "bytes": 15063544, + "bits_per_second": 119992142.82082297, + "packets": 10404, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.005043, + "end": 10.000257, + "seconds": 0.99521398544311523, + "bytes": 14925984, + "bits_per_second": 119982108.11600894, + "packets": 10308, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.005043, + "end": 10.000257, + "seconds": 0.99521398544311523, + "bytes": 14925984, + "bits_per_second": 119982108.11600894, + "packets": 10308, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 10.000257, + "seconds": 10.000257, + "bytes": 150002664, + "bits_per_second": 119999047.22448634, + "jitter_ms": 0.013948565291633132, + "lost_packets": 8497, + "packets": 103593, + "lost_percent": 8.20229166063344, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 10.414314, + "seconds": 10.414314, + "bytes": 150002664, + "bits_per_second": 119999047.22448634, + "jitter_ms": 0.013948565291633132, + "lost_packets": 8497, + "packets": 103593, + "lost_percent": 8.20229166063344, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 10.000257, + "seconds": 10.000257, + "bytes": 150002664, + "bits_per_second": 119999047.22448634, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 103593, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 10.414314, + "seconds": 10.414314, + "bytes": 135021656, + "bits_per_second": 103720057.60533051, + "jitter_ms": 0.013948565291633132, + "lost_packets": 8497, + "packets": 101744, + "lost_percent": 8.20229166063344, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 21.391050080820584, + "host_user": 3.5744472436877817, + "host_system": 17.816612816214651, + "remote_total": 2.4168200288333037, + "remote_user": 0.724385381472826, + "remote_system": 1.6924346473604777 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_30mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_30mbps.json new file mode 100644 index 0000000..caab6b0 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_30mbps.json @@ -0,0 +1,328 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.29", + "local_port": 64430, + "remote_host": "192.168.31.249", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:25:43 UTC", + "timesecs": 1778948743, + "timemillisecs": 1778948743906 + }, + "connecting_to": { + "host": "192.168.31.249", + "port": 5201 + }, + "cookie": "hps3umadfdwfxhygy6rery5spmuayiyh472x", + "target_bitrate": 30000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 10, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 30000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005074, + "seconds": 1.0050740242004395, + "bytes": 3769144, + "bits_per_second": 30000926.572535347, + "packets": 2603, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.005074, + "seconds": 1.0050740242004395, + "bytes": 3769144, + "bits_per_second": 30000926.572535347, + "packets": 2603, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005074, + "end": 2.003633, + "seconds": 0.99855899810791, + "bytes": 3744528, + "bits_per_second": 29999453.268922176, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.005074, + "end": 2.003633, + "seconds": 0.99855899810791, + "bytes": 3744528, + "bits_per_second": 29999453.268922176, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003633, + "end": 3.003559, + "seconds": 0.999925971031189, + "bytes": 3748872, + "bits_per_second": 29993196.365398277, + "packets": 2589, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.003633, + "end": 3.003559, + "seconds": 0.999925971031189, + "bytes": 3748872, + "bits_per_second": 29993196.365398277, + "packets": 2589, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.003559, + "end": 4.003782, + "seconds": 1.0002230405807495, + "bytes": 3751768, + "bits_per_second": 30007451.120675232, + "packets": 2591, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.003559, + "end": 4.003782, + "seconds": 1.0002230405807495, + "bytes": 3751768, + "bits_per_second": 30007451.120675232, + "packets": 2591, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.003782, + "end": 5.004051, + "seconds": 1.0002690553665161, + "bytes": 3751768, + "bits_per_second": 30006070.705648582, + "packets": 2591, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.003782, + "end": 5.004051, + "seconds": 1.0002690553665161, + "bytes": 3751768, + "bits_per_second": 30006070.705648582, + "packets": 2591, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.004051, + "end": 6.004384, + "seconds": 1.0003329515457153, + "bytes": 3750320, + "bits_per_second": 29992573.9261513, + "packets": 2590, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.004051, + "end": 6.004384, + "seconds": 1.0003329515457153, + "bytes": 3750320, + "bits_per_second": 29992573.9261513, + "packets": 2590, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.004384, + "end": 7.00288, + "seconds": 0.99849599599838257, + "bytes": 3743080, + "bits_per_second": 29989744.696030315, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.004384, + "end": 7.00288, + "seconds": 0.99849599599838257, + "bytes": 3743080, + "bits_per_second": 29989744.696030315, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.00288, + "end": 8.003827, + "seconds": 1.0009469985961914, + "bytes": 3750320, + "bits_per_second": 29974174.498827614, + "packets": 2590, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.00288, + "end": 8.003827, + "seconds": 1.0009469985961914, + "bytes": 3750320, + "bits_per_second": 29974174.498827614, + "packets": 2590, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.003827, + "end": 9.004833, + "seconds": 1.001006007194519, + "bytes": 3759008, + "bits_per_second": 30041841.69112213, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.003827, + "end": 9.004833, + "seconds": 1.001006007194519, + "bytes": 3759008, + "bits_per_second": 30041841.69112213, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.004833, + "end": 10.000343, + "seconds": 0.99550998210906982, + "bytes": 3732944, + "bits_per_second": 29998244.655198339, + "packets": 2578, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.004833, + "end": 10.000343, + "seconds": 0.99550998210906982, + "bytes": 3732944, + "bits_per_second": 29998244.655198339, + "packets": 2578, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 10.000343, + "seconds": 10.000343, + "bytes": 37501752, + "bits_per_second": 30000372.587220255, + "jitter_ms": 0.50263634433477, + "lost_packets": 6, + "packets": 25899, + "lost_percent": 0.023166917641607783, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 10.13278, + "seconds": 10.13278, + "bytes": 37501752, + "bits_per_second": 30000372.587220255, + "jitter_ms": 0.50263634433477, + "lost_packets": 6, + "packets": 25899, + "lost_percent": 0.023166917641607783, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 10.000343, + "seconds": 10.000343, + "bytes": 37501752, + "bits_per_second": 30000372.587220255, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 25899, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 10.13278, + "seconds": 10.13278, + "bytes": 37493064, + "bits_per_second": 29601403.760863256, + "jitter_ms": 0.50263634433477, + "lost_packets": 6, + "packets": 25899, + "lost_percent": 0.023166917641607783, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 8.8503684067707535, + "host_user": 0.58635989430905833, + "host_system": 8.2640085124616967, + "remote_total": 1.0716595401325342, + "remote_user": 0.323168675475232, + "remote_system": 0.74849086465730219 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_60mbps.json b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_60mbps.json new file mode 100644 index 0000000..0e1d55b --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/iperf3_udp_60mbps.json @@ -0,0 +1,328 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.29", + "local_port": 53908, + "remote_host": "192.168.31.249", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabriels-MacBook-Pro.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:56 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T6000 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 16:25:54 UTC", + "timesecs": 1778948754, + "timemillisecs": 1778948754100 + }, + "connecting_to": { + "host": "192.168.31.249", + "port": 5201 + }, + "cookie": "r2nvepgejbw6m3kbdmcwyywmlex64bjnvj66", + "target_bitrate": 60000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 10, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 60000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.000143, + "seconds": 1.0001430511474609, + "bytes": 7500640, + "bits_per_second": 59996537.426477462, + "packets": 5181, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.000143, + "seconds": 1.0001430511474609, + "bytes": 7500640, + "bits_per_second": 59996537.426477462, + "packets": 5181, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.000143, + "end": 2.00431, + "seconds": 1.0041669607162476, + "bytes": 7531048, + "bits_per_second": 59998373.1361031, + "packets": 5201, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.000143, + "end": 2.00431, + "seconds": 1.0041669607162476, + "bytes": 7531048, + "bits_per_second": 59998373.1361031, + "packets": 5201, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.00431, + "end": 3.004, + "seconds": 0.99968999624252319, + "bytes": 7497744, + "bits_per_second": 60000552.396693662, + "packets": 5178, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.00431, + "end": 3.004, + "seconds": 0.99968999624252319, + "bytes": 7497744, + "bits_per_second": 60000552.396693662, + "packets": 5178, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.004, + "end": 4.004066, + "seconds": 1.0000660419464111, + "bytes": 7500640, + "bits_per_second": 60001157.406777933, + "packets": 5180, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.004, + "end": 4.004066, + "seconds": 1.0000660419464111, + "bytes": 7500640, + "bits_per_second": 60001157.406777933, + "packets": 5180, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.004066, + "end": 5.003955, + "seconds": 0.99988901615142822, + "bytes": 7497744, + "bits_per_second": 59988609.766782388, + "packets": 5179, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.004066, + "end": 5.003955, + "seconds": 0.99988901615142822, + "bytes": 7497744, + "bits_per_second": 59988609.766782388, + "packets": 5179, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.003955, + "end": 6.002048, + "seconds": 0.998093008995056, + "bytes": 7484712, + "bits_per_second": 59992100.395822525, + "packets": 5169, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.003955, + "end": 6.002048, + "seconds": 0.998093008995056, + "bytes": 7484712, + "bits_per_second": 59992100.395822525, + "packets": 5169, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.002048, + "end": 7.000281, + "seconds": 0.99823302030563354, + "bytes": 7487608, + "bits_per_second": 60006894.964925, + "packets": 5171, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.002048, + "end": 7.000281, + "seconds": 0.99823302030563354, + "bytes": 7487608, + "bits_per_second": 60006894.964925, + "packets": 5171, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.000281, + "end": 8.00506, + "seconds": 1.0047789812088013, + "bytes": 7535392, + "bits_per_second": 59996414.263638616, + "packets": 5204, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.000281, + "end": 8.00506, + "seconds": 1.0047789812088013, + "bytes": 7535392, + "bits_per_second": 59996414.263638616, + "packets": 5204, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.00506, + "end": 9.005019, + "seconds": 0.99995899200439453, + "bytes": 7499192, + "bits_per_second": 59995996.315553255, + "packets": 5179, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.00506, + "end": 9.005019, + "seconds": 0.99995899200439453, + "bytes": 7499192, + "bits_per_second": 59995996.315553255, + "packets": 5179, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.005019, + "end": 10.001372, + "seconds": 0.99635297060012817, + "bytes": 7473128, + "bits_per_second": 60003859.840945721, + "packets": 5161, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.005019, + "end": 10.001372, + "seconds": 0.99635297060012817, + "bytes": 7473128, + "bits_per_second": 60003859.840945721, + "packets": 5161, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 10.001372, + "seconds": 10.001372, + "bytes": 75010744, + "bits_per_second": 60000363.1501758, + "jitter_ms": 0.182481713525552, + "lost_packets": 9, + "packets": 51803, + "lost_percent": 0.017373511186610815, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 10.121741, + "seconds": 10.121741, + "bytes": 75010744, + "bits_per_second": 60000363.1501758, + "jitter_ms": 0.182481713525552, + "lost_packets": 9, + "packets": 51803, + "lost_percent": 0.017373511186610815, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 10.001372, + "seconds": 10.001372, + "bytes": 75010744, + "bits_per_second": 60000363.1501758, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 51803, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 10.121741, + "seconds": 10.121741, + "bytes": 74997712, + "bits_per_second": 59276531.181740373, + "jitter_ms": 0.182481713525552, + "lost_packets": 9, + "packets": 51803, + "lost_percent": 0.017373511186610815, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 8.9114428424929955, + "host_user": 0.578894866478607, + "host_system": 8.3326078761488844, + "remote_total": 1.7196309141735655, + "remote_user": 0.516431669773009, + "remote_system": 1.2033375601982461 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/metadata.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/metadata.txt new file mode 100644 index 0000000..0fe5ec1 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/metadata.txt @@ -0,0 +1,7 @@ +case=wifi5-2017-imac +receiver_ip=192.168.31.249 +duration_seconds=10 +timestamp=2026-05-17_0123 +hostname=Gabriels-MacBook-Pro.local +whoami=gabriel +pwd=/Users/gabriel/Development/iBridge diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_hardware_ports.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_hardware_ports.txt new file mode 100644 index 0000000..504c6ac --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_hardware_ports.txt @@ -0,0 +1,39 @@ + +Hardware Port: Ethernet Adapter (en4) +Device: en4 +Ethernet Address: 2a:a4:91:dd:96:0d + +Hardware Port: Ethernet Adapter (en5) +Device: en5 +Ethernet Address: 2a:a4:91:dd:96:0e + +Hardware Port: USB 10/100/1000 LAN +Device: en9 +Ethernet Address: 00:e0:4c:68:56:f1 + +Hardware Port: Ethernet Adapter (en6) +Device: en6 +Ethernet Address: 2a:a4:91:dd:96:0f + +Hardware Port: Thunderbolt Bridge +Device: bridge0 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Wi-Fi +Device: en0 +Ethernet Address: f8:4d:89:6c:4d:9e + +Hardware Port: Thunderbolt 1 +Device: en1 +Ethernet Address: 36:fa:2e:69:8f:40 + +Hardware Port: Thunderbolt 2 +Device: en2 +Ethernet Address: 36:fa:2e:69:8f:44 + +Hardware Port: Thunderbolt 3 +Device: en3 +Ethernet Address: 36:fa:2e:69:8f:48 + +VLAN Configurations +=================== diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_services.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_services.txt new file mode 100644 index 0000000..e6c0f7d --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/networksetup_services.txt @@ -0,0 +1,9 @@ +An asterisk (*) denotes that a network service is disabled. +USB 10/100/1000 LAN +Thunderbolt Bridge +Wi-Fi +iPhone USB +TunnelBear +hide.me VPN (Wireguard) +*Betternet VPN (Hydra) +Tailscale diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ping_100.txt b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ping_100.txt new file mode 100644 index 0000000..9f77d1b --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/ping_100.txt @@ -0,0 +1,105 @@ +PING 192.168.31.249 (192.168.31.249): 56 data bytes +64 bytes from 192.168.31.249: icmp_seq=0 ttl=64 time=5.486 ms +64 bytes from 192.168.31.249: icmp_seq=1 ttl=64 time=71.790 ms +64 bytes from 192.168.31.249: icmp_seq=2 ttl=64 time=5.653 ms +64 bytes from 192.168.31.249: icmp_seq=3 ttl=64 time=10.038 ms +64 bytes from 192.168.31.249: icmp_seq=4 ttl=64 time=6.237 ms +64 bytes from 192.168.31.249: icmp_seq=5 ttl=64 time=3.663 ms +64 bytes from 192.168.31.249: icmp_seq=6 ttl=64 time=58.808 ms +64 bytes from 192.168.31.249: icmp_seq=7 ttl=64 time=51.209 ms +64 bytes from 192.168.31.249: icmp_seq=8 ttl=64 time=97.081 ms +64 bytes from 192.168.31.249: icmp_seq=9 ttl=64 time=140.708 ms +64 bytes from 192.168.31.249: icmp_seq=10 ttl=64 time=5.496 ms +64 bytes from 192.168.31.249: icmp_seq=11 ttl=64 time=62.874 ms +64 bytes from 192.168.31.249: icmp_seq=12 ttl=64 time=4.794 ms +64 bytes from 192.168.31.249: icmp_seq=13 ttl=64 time=101.262 ms +64 bytes from 192.168.31.249: icmp_seq=14 ttl=64 time=6.809 ms +64 bytes from 192.168.31.249: icmp_seq=15 ttl=64 time=5.915 ms +64 bytes from 192.168.31.249: icmp_seq=16 ttl=64 time=6.142 ms +64 bytes from 192.168.31.249: icmp_seq=17 ttl=64 time=6.154 ms +64 bytes from 192.168.31.249: icmp_seq=18 ttl=64 time=17.947 ms +64 bytes from 192.168.31.249: icmp_seq=19 ttl=64 time=119.926 ms +64 bytes from 192.168.31.249: icmp_seq=20 ttl=64 time=142.053 ms +64 bytes from 192.168.31.249: icmp_seq=21 ttl=64 time=162.050 ms +64 bytes from 192.168.31.249: icmp_seq=22 ttl=64 time=198.853 ms +64 bytes from 192.168.31.249: icmp_seq=23 ttl=64 time=6.207 ms +64 bytes from 192.168.31.249: icmp_seq=24 ttl=64 time=4.962 ms +64 bytes from 192.168.31.249: icmp_seq=25 ttl=64 time=7.353 ms +64 bytes from 192.168.31.249: icmp_seq=26 ttl=64 time=4.582 ms +64 bytes from 192.168.31.249: icmp_seq=27 ttl=64 time=7.028 ms +64 bytes from 192.168.31.249: icmp_seq=28 ttl=64 time=5.494 ms +64 bytes from 192.168.31.249: icmp_seq=29 ttl=64 time=15.677 ms +64 bytes from 192.168.31.249: icmp_seq=30 ttl=64 time=29.055 ms +64 bytes from 192.168.31.249: icmp_seq=31 ttl=64 time=259.747 ms +64 bytes from 192.168.31.249: icmp_seq=32 ttl=64 time=179.590 ms +64 bytes from 192.168.31.249: icmp_seq=33 ttl=64 time=5.043 ms +64 bytes from 192.168.31.249: icmp_seq=34 ttl=64 time=15.153 ms +64 bytes from 192.168.31.249: icmp_seq=35 ttl=64 time=36.989 ms +64 bytes from 192.168.31.249: icmp_seq=36 ttl=64 time=58.589 ms +64 bytes from 192.168.31.249: icmp_seq=37 ttl=64 time=78.137 ms +64 bytes from 192.168.31.249: icmp_seq=38 ttl=64 time=101.620 ms +64 bytes from 192.168.31.249: icmp_seq=39 ttl=64 time=3.820 ms +64 bytes from 192.168.31.249: icmp_seq=40 ttl=64 time=41.192 ms +64 bytes from 192.168.31.249: icmp_seq=41 ttl=64 time=4.420 ms +64 bytes from 192.168.31.249: icmp_seq=42 ttl=64 time=49.032 ms +64 bytes from 192.168.31.249: icmp_seq=43 ttl=64 time=95.903 ms +64 bytes from 192.168.31.249: icmp_seq=44 ttl=64 time=141.427 ms +64 bytes from 192.168.31.249: icmp_seq=45 ttl=64 time=247.079 ms +64 bytes from 192.168.31.249: icmp_seq=46 ttl=64 time=62.307 ms +64 bytes from 192.168.31.249: icmp_seq=47 ttl=64 time=4.897 ms +64 bytes from 192.168.31.249: icmp_seq=48 ttl=64 time=105.206 ms +64 bytes from 192.168.31.249: icmp_seq=49 ttl=64 time=123.676 ms +64 bytes from 192.168.31.249: icmp_seq=50 ttl=64 time=4.586 ms +64 bytes from 192.168.31.249: icmp_seq=51 ttl=64 time=5.785 ms +64 bytes from 192.168.31.249: icmp_seq=52 ttl=64 time=5.113 ms +64 bytes from 192.168.31.249: icmp_seq=53 ttl=64 time=19.582 ms +64 bytes from 192.168.31.249: icmp_seq=54 ttl=64 time=65.342 ms +64 bytes from 192.168.31.249: icmp_seq=55 ttl=64 time=140.351 ms +64 bytes from 192.168.31.249: icmp_seq=56 ttl=64 time=155.450 ms +64 bytes from 192.168.31.249: icmp_seq=57 ttl=64 time=5.458 ms +64 bytes from 192.168.31.249: icmp_seq=58 ttl=64 time=4.373 ms +64 bytes from 192.168.31.249: icmp_seq=59 ttl=64 time=5.386 ms +64 bytes from 192.168.31.249: icmp_seq=60 ttl=64 time=5.875 ms +64 bytes from 192.168.31.249: icmp_seq=61 ttl=64 time=4.819 ms +64 bytes from 192.168.31.249: icmp_seq=62 ttl=64 time=5.662 ms +64 bytes from 192.168.31.249: icmp_seq=63 ttl=64 time=5.536 ms +64 bytes from 192.168.31.249: icmp_seq=64 ttl=64 time=5.874 ms +64 bytes from 192.168.31.249: icmp_seq=65 ttl=64 time=137.310 ms +64 bytes from 192.168.31.249: icmp_seq=66 ttl=64 time=261.386 ms +64 bytes from 192.168.31.249: icmp_seq=67 ttl=64 time=179.532 ms +64 bytes from 192.168.31.249: icmp_seq=68 ttl=64 time=200.164 ms +64 bytes from 192.168.31.249: icmp_seq=69 ttl=64 time=17.978 ms +64 bytes from 192.168.31.249: icmp_seq=70 ttl=64 time=38.917 ms +64 bytes from 192.168.31.249: icmp_seq=71 ttl=64 time=55.156 ms +64 bytes from 192.168.31.249: icmp_seq=72 ttl=64 time=78.272 ms +64 bytes from 192.168.31.249: icmp_seq=73 ttl=64 time=5.576 ms +64 bytes from 192.168.31.249: icmp_seq=74 ttl=64 time=19.745 ms +64 bytes from 192.168.31.249: icmp_seq=75 ttl=64 time=13.443 ms +64 bytes from 192.168.31.249: icmp_seq=76 ttl=64 time=56.877 ms +64 bytes from 192.168.31.249: icmp_seq=77 ttl=64 time=82.583 ms +64 bytes from 192.168.31.249: icmp_seq=78 ttl=64 time=196.257 ms +64 bytes from 192.168.31.249: icmp_seq=79 ttl=64 time=226.915 ms +64 bytes from 192.168.31.249: icmp_seq=80 ttl=64 time=240.644 ms +64 bytes from 192.168.31.249: icmp_seq=81 ttl=64 time=56.087 ms +64 bytes from 192.168.31.249: icmp_seq=82 ttl=64 time=4.428 ms +64 bytes from 192.168.31.249: icmp_seq=83 ttl=64 time=4.810 ms +64 bytes from 192.168.31.249: icmp_seq=84 ttl=64 time=7.960 ms +64 bytes from 192.168.31.249: icmp_seq=85 ttl=64 time=5.572 ms +64 bytes from 192.168.31.249: icmp_seq=86 ttl=64 time=4.855 ms +64 bytes from 192.168.31.249: icmp_seq=87 ttl=64 time=3.957 ms +64 bytes from 192.168.31.249: icmp_seq=88 ttl=64 time=11.797 ms +64 bytes from 192.168.31.249: icmp_seq=89 ttl=64 time=54.756 ms +64 bytes from 192.168.31.249: icmp_seq=90 ttl=64 time=94.330 ms +64 bytes from 192.168.31.249: icmp_seq=91 ttl=64 time=147.254 ms +64 bytes from 192.168.31.249: icmp_seq=92 ttl=64 time=5.002 ms +64 bytes from 192.168.31.249: icmp_seq=93 ttl=64 time=4.797 ms +64 bytes from 192.168.31.249: icmp_seq=94 ttl=64 time=6.037 ms +64 bytes from 192.168.31.249: icmp_seq=95 ttl=64 time=6.457 ms +64 bytes from 192.168.31.249: icmp_seq=96 ttl=64 time=4.788 ms +64 bytes from 192.168.31.249: icmp_seq=97 ttl=64 time=8.926 ms +64 bytes from 192.168.31.249: icmp_seq=98 ttl=64 time=6.684 ms +64 bytes from 192.168.31.249: icmp_seq=99 ttl=64 time=3.686 ms + +--- 192.168.31.249 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 3.663/56.773/261.386/70.416 ms diff --git a/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/summary.md b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/summary.md new file mode 100644 index 0000000..085432f --- /dev/null +++ b/benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/wifi5-2017-imac/summary.md @@ -0,0 +1,13 @@ +# Network Matrix Result: wifi5-2017-imac + +- Receiver IP: `192.168.31.249` +- Duration: `10` seconds +- Status: raw command artifacts captured; summarize min/avg/max/loss and iperf throughput after the physical path is confirmed. + +## Required Notes + +- Interface actually used: +- Physical path: +- Tailscale direct/relay status, if applicable: +- Link speed, if visible: +- Observed blockers: diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/airport_I.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/airport_I.txt new file mode 100644 index 0000000..a2a3fb0 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/airport_I.txt @@ -0,0 +1 @@ +zsh:1: no such file or directory: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ifconfig.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ifconfig.txt new file mode 100644 index 0000000..09e0904 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ifconfig.txt @@ -0,0 +1,122 @@ +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi1: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:ca + media: none + status: inactive +anpi0: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:c9 + media: none + status: inactive +en3: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:a9 + nd6 options=201 + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:aa + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:3b:68:bd:27:00 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:3b:68:bd:27:04 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:3b:68:bd:27:00 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 8 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 9 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8863 mtu 1500 + options=6460 + ether 2e:35:de:30:2f:98 + nd6 options=201 + media: autoselect (none) + status: inactive +en0: flags=8863 mtu 1500 + options=6460 + ether 4e:e6:38:73:27:1a + inet6 fe80::8a:7b09:9a96:9617%en0 prefixlen 64 secured scopeid 0xb + inet 192.168.31.11 netmask 0xffffff00 broadcast 192.168.31.255 + inet6 fde8:dc6b:87dd:3503:dc:a6af:4d98:ec5 prefixlen 64 autoconf secured + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8863 mtu 1500 + options=6460 + ether 96:cb:f3:e4:40:41 + inet6 fe80::94cb:f3ff:fee4:4041%awdl0 prefixlen 64 scopeid 0xd + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether 96:cb:f3:e4:40:41 + inet6 fe80::94cb:f3ff:fee4:4041%llw0 prefixlen 64 scopeid 0xe + nd6 options=201 + media: autoselect (none) +utun0: flags=8051 mtu 1500 + inet6 fe80::a0eb:45f5:8662:b4bf%utun0 prefixlen 64 scopeid 0xf + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::6805:aa7a:fc48:5c2c%utun1 prefixlen 64 scopeid 0x10 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::c449:16b9:1878:d977%utun2 prefixlen 64 scopeid 0x11 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::80a2:1fd6:5113:418d%utun4 prefixlen 64 scopeid 0x13 + inet 100.94.11.28 --> 100.94.11.28 netmask 0xffffffff + inet6 fd7a:115c:a1e0::4535:b1c prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::5fa:9803:3272:6284%utun5 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::bbf0:8cb3:e86a:51b5%utun6 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::3ef4:2857:b6cc:6733%utun7 prefixlen 64 scopeid 0x16 + nd6 options=201 +utun8: flags=8051 mtu 1380 + inet6 fe80::e101:5c8b:d941:aed1%utun8 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun9: flags=8051 mtu 1380 + inet6 fe80::a4fe:bd64:36d9:edfd%utun9 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun10: flags=8051 mtu 1380 + inet6 fe80::a572:44b3:b1:f5ae%utun10 prefixlen 64 scopeid 0x19 + nd6 options=201 +utun11: flags=8051 mtu 1380 + inet6 fe80::15a7:a05a:4c5b:6dd8%utun11 prefixlen 64 scopeid 0x1a + nd6 options=201 diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/iperf3_missing.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/iperf3_missing.txt new file mode 100644 index 0000000..042d4eb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/iperf3_missing.txt @@ -0,0 +1 @@ +iperf3 not installed; install it on both machines before cable benchmarks. diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/metadata.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/metadata.txt new file mode 100644 index 0000000..c648568 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/metadata.txt @@ -0,0 +1,7 @@ +case=wifi5-2015-imac +receiver_ip=192.168.31.187 +duration_seconds=10 +timestamp=2026-05-17_0153 +hostname=Gabrielui-MacBookAir.local +whoami=gabrieljang +pwd=/Users/gabrieljang/development/iBridge diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_hardware_ports.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_hardware_ports.txt new file mode 100644 index 0000000..d8190c6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_hardware_ports.txt @@ -0,0 +1,27 @@ + +Hardware Port: Ethernet Adapter (en3) +Device: en3 +Ethernet Address: da:7d:c3:d6:62:a9 + +Hardware Port: Ethernet Adapter (en4) +Device: en4 +Ethernet Address: da:7d:c3:d6:62:aa + +Hardware Port: Thunderbolt Bridge +Device: bridge0 +Ethernet Address: 36:3b:68:bd:27:00 + +Hardware Port: Wi-Fi +Device: en0 +Ethernet Address: 1c:91:80:c8:4e:a9 + +Hardware Port: Thunderbolt 1 +Device: en1 +Ethernet Address: 36:3b:68:bd:27:00 + +Hardware Port: Thunderbolt 2 +Device: en2 +Ethernet Address: 36:3b:68:bd:27:04 + +VLAN Configurations +=================== diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_services.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_services.txt new file mode 100644 index 0000000..a5640e8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/networksetup_services.txt @@ -0,0 +1,6 @@ +An asterisk (*) denotes that a network service is disabled. +Thunderbolt Bridge +Wi-Fi +iPhone USB +TunnelBear +Tailscale diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ping_100.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ping_100.txt new file mode 100644 index 0000000..f0d787f --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ping_100.txt @@ -0,0 +1,105 @@ +PING 192.168.31.187 (192.168.31.187): 56 data bytes +64 bytes from 192.168.31.187: icmp_seq=0 ttl=64 time=3.819 ms +64 bytes from 192.168.31.187: icmp_seq=1 ttl=64 time=13.752 ms +64 bytes from 192.168.31.187: icmp_seq=2 ttl=64 time=384.086 ms +64 bytes from 192.168.31.187: icmp_seq=3 ttl=64 time=4.880 ms +64 bytes from 192.168.31.187: icmp_seq=4 ttl=64 time=6.295 ms +64 bytes from 192.168.31.187: icmp_seq=5 ttl=64 time=6.770 ms +64 bytes from 192.168.31.187: icmp_seq=6 ttl=64 time=6.288 ms +64 bytes from 192.168.31.187: icmp_seq=7 ttl=64 time=4.947 ms +64 bytes from 192.168.31.187: icmp_seq=8 ttl=64 time=5.144 ms +64 bytes from 192.168.31.187: icmp_seq=9 ttl=64 time=4.766 ms +64 bytes from 192.168.31.187: icmp_seq=10 ttl=64 time=5.172 ms +64 bytes from 192.168.31.187: icmp_seq=11 ttl=64 time=339.848 ms +64 bytes from 192.168.31.187: icmp_seq=12 ttl=64 time=379.629 ms +64 bytes from 192.168.31.187: icmp_seq=13 ttl=64 time=420.666 ms +64 bytes from 192.168.31.187: icmp_seq=14 ttl=64 time=5.490 ms +64 bytes from 192.168.31.187: icmp_seq=15 ttl=64 time=52.608 ms +64 bytes from 192.168.31.187: icmp_seq=16 ttl=64 time=5.653 ms +64 bytes from 192.168.31.187: icmp_seq=17 ttl=64 time=5.290 ms +64 bytes from 192.168.31.187: icmp_seq=18 ttl=64 time=4.764 ms +64 bytes from 192.168.31.187: icmp_seq=19 ttl=64 time=36.606 ms +64 bytes from 192.168.31.187: icmp_seq=20 ttl=64 time=53.475 ms +64 bytes from 192.168.31.187: icmp_seq=21 ttl=64 time=5.179 ms +64 bytes from 192.168.31.187: icmp_seq=22 ttl=64 time=5.316 ms +64 bytes from 192.168.31.187: icmp_seq=23 ttl=64 time=72.432 ms +64 bytes from 192.168.31.187: icmp_seq=24 ttl=64 time=7.061 ms +64 bytes from 192.168.31.187: icmp_seq=25 ttl=64 time=19.597 ms +64 bytes from 192.168.31.187: icmp_seq=26 ttl=64 time=28.715 ms +64 bytes from 192.168.31.187: icmp_seq=27 ttl=64 time=66.456 ms +64 bytes from 192.168.31.187: icmp_seq=28 ttl=64 time=115.008 ms +64 bytes from 192.168.31.187: icmp_seq=29 ttl=64 time=89.763 ms +64 bytes from 192.168.31.187: icmp_seq=30 ttl=64 time=108.941 ms +64 bytes from 192.168.31.187: icmp_seq=31 ttl=64 time=331.195 ms +64 bytes from 192.168.31.187: icmp_seq=32 ttl=64 time=6.316 ms +64 bytes from 192.168.31.187: icmp_seq=33 ttl=64 time=206.593 ms +64 bytes from 192.168.31.187: icmp_seq=34 ttl=64 time=5.344 ms +64 bytes from 192.168.31.187: icmp_seq=35 ttl=64 time=5.524 ms +64 bytes from 192.168.31.187: icmp_seq=36 ttl=64 time=9.673 ms +64 bytes from 192.168.31.187: icmp_seq=37 ttl=64 time=51.593 ms +64 bytes from 192.168.31.187: icmp_seq=38 ttl=64 time=7.087 ms +64 bytes from 192.168.31.187: icmp_seq=39 ttl=64 time=6.449 ms +64 bytes from 192.168.31.187: icmp_seq=40 ttl=64 time=5.398 ms +64 bytes from 192.168.31.187: icmp_seq=41 ttl=64 time=39.696 ms +64 bytes from 192.168.31.187: icmp_seq=42 ttl=64 time=86.572 ms +64 bytes from 192.168.31.187: icmp_seq=43 ttl=64 time=5.296 ms +64 bytes from 192.168.31.187: icmp_seq=44 ttl=64 time=5.472 ms +64 bytes from 192.168.31.187: icmp_seq=45 ttl=64 time=15.608 ms +64 bytes from 192.168.31.187: icmp_seq=46 ttl=64 time=20.917 ms +64 bytes from 192.168.31.187: icmp_seq=47 ttl=64 time=6.114 ms +64 bytes from 192.168.31.187: icmp_seq=48 ttl=64 time=57.514 ms +64 bytes from 192.168.31.187: icmp_seq=49 ttl=64 time=64.020 ms +64 bytes from 192.168.31.187: icmp_seq=50 ttl=64 time=8.490 ms +64 bytes from 192.168.31.187: icmp_seq=51 ttl=64 time=30.060 ms +64 bytes from 192.168.31.187: icmp_seq=52 ttl=64 time=34.269 ms +64 bytes from 192.168.31.187: icmp_seq=53 ttl=64 time=59.293 ms +64 bytes from 192.168.31.187: icmp_seq=54 ttl=64 time=91.615 ms +64 bytes from 192.168.31.187: icmp_seq=55 ttl=64 time=329.934 ms +64 bytes from 192.168.31.187: icmp_seq=56 ttl=64 time=3.882 ms +64 bytes from 192.168.31.187: icmp_seq=57 ttl=64 time=4.534 ms +64 bytes from 192.168.31.187: icmp_seq=58 ttl=64 time=4.204 ms +64 bytes from 192.168.31.187: icmp_seq=59 ttl=64 time=70.727 ms +64 bytes from 192.168.31.187: icmp_seq=60 ttl=64 time=47.521 ms +64 bytes from 192.168.31.187: icmp_seq=61 ttl=64 time=11.267 ms +64 bytes from 192.168.31.187: icmp_seq=62 ttl=64 time=7.535 ms +64 bytes from 192.168.31.187: icmp_seq=63 ttl=64 time=31.819 ms +64 bytes from 192.168.31.187: icmp_seq=64 ttl=64 time=44.777 ms +64 bytes from 192.168.31.187: icmp_seq=65 ttl=64 time=66.703 ms +64 bytes from 192.168.31.187: icmp_seq=66 ttl=64 time=9.630 ms +64 bytes from 192.168.31.187: icmp_seq=67 ttl=64 time=29.765 ms +64 bytes from 192.168.31.187: icmp_seq=68 ttl=64 time=5.232 ms +64 bytes from 192.168.31.187: icmp_seq=69 ttl=64 time=8.973 ms +64 bytes from 192.168.31.187: icmp_seq=70 ttl=64 time=5.399 ms +64 bytes from 192.168.31.187: icmp_seq=71 ttl=64 time=13.782 ms +64 bytes from 192.168.31.187: icmp_seq=72 ttl=64 time=18.889 ms +64 bytes from 192.168.31.187: icmp_seq=73 ttl=64 time=6.290 ms +64 bytes from 192.168.31.187: icmp_seq=74 ttl=64 time=8.710 ms +64 bytes from 192.168.31.187: icmp_seq=75 ttl=64 time=26.958 ms +64 bytes from 192.168.31.187: icmp_seq=76 ttl=64 time=32.683 ms +64 bytes from 192.168.31.187: icmp_seq=77 ttl=64 time=146.695 ms +64 bytes from 192.168.31.187: icmp_seq=78 ttl=64 time=10.480 ms +64 bytes from 192.168.31.187: icmp_seq=79 ttl=64 time=12.809 ms +64 bytes from 192.168.31.187: icmp_seq=80 ttl=64 time=22.027 ms +64 bytes from 192.168.31.187: icmp_seq=81 ttl=64 time=13.323 ms +64 bytes from 192.168.31.187: icmp_seq=82 ttl=64 time=5.893 ms +64 bytes from 192.168.31.187: icmp_seq=83 ttl=64 time=7.178 ms +64 bytes from 192.168.31.187: icmp_seq=84 ttl=64 time=5.212 ms +64 bytes from 192.168.31.187: icmp_seq=85 ttl=64 time=4.586 ms +64 bytes from 192.168.31.187: icmp_seq=86 ttl=64 time=8.545 ms +64 bytes from 192.168.31.187: icmp_seq=87 ttl=64 time=12.192 ms +64 bytes from 192.168.31.187: icmp_seq=88 ttl=64 time=58.878 ms +64 bytes from 192.168.31.187: icmp_seq=89 ttl=64 time=98.857 ms +64 bytes from 192.168.31.187: icmp_seq=90 ttl=64 time=140.610 ms +64 bytes from 192.168.31.187: icmp_seq=91 ttl=64 time=16.687 ms +64 bytes from 192.168.31.187: icmp_seq=92 ttl=64 time=12.395 ms +64 bytes from 192.168.31.187: icmp_seq=93 ttl=64 time=19.022 ms +64 bytes from 192.168.31.187: icmp_seq=94 ttl=64 time=183.440 ms +64 bytes from 192.168.31.187: icmp_seq=95 ttl=64 time=34.749 ms +64 bytes from 192.168.31.187: icmp_seq=96 ttl=64 time=11.322 ms +64 bytes from 192.168.31.187: icmp_seq=97 ttl=64 time=40.397 ms +64 bytes from 192.168.31.187: icmp_seq=98 ttl=64 time=33.788 ms +64 bytes from 192.168.31.187: icmp_seq=99 ttl=64 time=27.745 ms + +--- 192.168.31.187 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 3.819/51.446/420.666/88.334 ms diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/port_probe.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/port_probe.txt new file mode 100644 index 0000000..10412eb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/port_probe.txt @@ -0,0 +1,7 @@ +Sun May 17 01:55:39 KST 2026 +Connection to 192.168.31.187 port 22 [tcp/ssh] succeeded! +Connection to 192.168.31.187 port 5201 [tcp/targus-getdata1] succeeded! +nc: connectx to 192.168.31.187 port 48320 (tcp) failed: Connection refused +Connection to 100.84.32.31 port 22 [tcp/ssh] succeeded! +Connection to 100.84.32.31 port 5201 [tcp/targus-getdata1] succeeded! +nc: connectx to 100.84.32.31 port 48320 (tcp) failed: Connection refused diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/summary.md b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/summary.md new file mode 100644 index 0000000..742d9e8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/summary.md @@ -0,0 +1,24 @@ +# Network Matrix Result: wifi5-2015-imac + +- Receiver IP: `192.168.31.187` +- Duration: `10` seconds +- Status: partial Wi-Fi matrix captured from MacBook Air to 2015 27-inch iMac. + +## Required Notes + +- Interface actually used: MacBook Air Wi-Fi `en0`, local IP `192.168.31.11`. +- Physical path: same LAN / 5GHz Wi-Fi candidate, no Ethernet cable attached for this run. +- Receiver identity: Tailscale shows `gabriels-imac27-2015`, macOS, Tailscale IP `100.84.32.31`; local endpoint observed as `192.168.31.187:41641`. +- Tailscale direct/relay status, if applicable: `tailscale ping` reached the receiver via `192.168.31.187:41641` in the captured spot check, so this path appears local-direct rather than DERP for the spot check. +- Ping result: 100/100 received, min/avg/max/stddev `3.819/51.446/420.666/88.334 ms`. +- Port probe: TCP `22` and `5201` open on both `192.168.31.187` and `100.84.32.31`; TCP `48320` refused, so the iBridge receiver is not listening. +- Link speed, if visible: not captured; Tahoe 26 does not expose the old `airport -I` path on this MacBook Air. +- Observed blockers: MacBook Air local `iperf3` is missing. `brew install iperf3` failed because the local Homebrew install cannot auto-update cleanly and reports unsupported macOS `26.5`; do not reset Homebrew without user approval. SSH port is open but MacBook Air key is not authorized for `gabrieljang` or `gabriel` on the 2015 iMac. + +## Read + +The 2015 iMac Wi-Fi path is reachable and appears to be on the same LAN, but +the latency spikes are far beyond a 60Hz display budget. Treat this as a +reachability/prep result only. Do not choose high-detail receiver profiles from +this Wi-Fi path until packet loss/throughput can be measured and the jitter is +reduced. diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_netcheck.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_netcheck.txt new file mode 100644 index 0000000..8ccd4eb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_netcheck.txt @@ -0,0 +1,40 @@ +2026/05/17 01:54:55 portmap: monitor: gateway and self IP changed: gw=192.168.31.1 self=192.168.31.11 + +Report: + * Time: 2026-05-16T16:54:57.768162Z + * UDP: true + * IPv4: yes, 14.4.153.167:64145 + * IPv6: no, but OS has support + * MappingVariesByDestIP: false + * PortMapping: + * CaptivePortal: false + * Nearest DERP: Tokyo + * DERP latency: + - tok: 38.9ms (Tokyo) + - hkg: 70.7ms (Hong Kong) + - sin: 93.5ms (Singapore) + - sea: 123.7ms (Seattle) + - lax: 133.9ms (Los Angeles) + - blr: 136.2ms (Bengaluru) + - sfo: 144.8ms (San Francisco) + - syd: 162.6ms (Sydney) + - dfw: 171.9ms (Dallas) + - den: 173.2ms (Denver) + - ord: 183.3ms (Chicago) + - hnl: 188.1ms (Honolulu) + - mia: 192.3ms (Miami) + - iad: 196.4ms (Ashburn) + - tor: 198.7ms (Toronto) + - nyc: 200.6ms (New York City) + - nue: 224.3ms (Nuremberg) + - fra: 258.7ms (Frankfurt) + - ams: 269.1ms (Amsterdam) + - lhr: 269.9ms (London) + - par: 272ms (Paris) + - mad: 276.4ms (Madrid) + - hel: 285.1ms (Helsinki) + - waw: 295.3ms (Warsaw) + - sao: 353ms (São Paulo) + - dbi: 356.8ms (Dubai) + - jnb: 392.1ms (Johannesburg) + - nai: 435.4ms (Nairobi) diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping.txt new file mode 100644 index 0000000..3938fe4 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping.txt @@ -0,0 +1 @@ +pong from gabriels-imac27-2015 (100.84.32.31) via 192.168.31.187:41641 in 6ms diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping_10.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping_10.txt new file mode 100644 index 0000000..4345099 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping_10.txt @@ -0,0 +1,3 @@ +Sun May 17 01:55:39 KST 2026 +target=100.84.32.31 / 192.168.31.187 +pong from gabriels-imac27-2015 (100.84.32.31) via 192.168.31.187:41641 in 22ms diff --git a/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_status.txt b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_status.txt new file mode 100644 index 0000000..46b36cb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_status.txt @@ -0,0 +1,8 @@ +100.94.11.28 gabriel-m1-macbookair woosu91@ macOS - +100.89.104.119 gabriel-imac21-2017 woosu91@ macOS - +100.84.32.31 gabriels-imac27-2015 woosu91@ macOS idle, tx 7852 rx 7852 +100.110.60.104 gabriels-ipad-air-1st-gen-wifi woosu91@ iOS - +100.70.76.98 gabriels-ipad-air-5th-gen-wifi woosu91@ iOS - +100.114.210.8 gabriels-m1-mac-mini woosu91@ macOS - +100.102.202.93 gabriels-m1max-macbook-pro woosu91@ macOS - +100.88.12.67 iphone-14-pro woosu91@ iOS offline, last seen 1d ago diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ifconfig.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ifconfig.txt new file mode 100644 index 0000000..3ca7fde --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ifconfig.txt @@ -0,0 +1,128 @@ +lo0: flags=8049 mtu 16384 + options=1203 + inet 127.0.0.1 netmask 0xff000000 + inet6 ::1 prefixlen 128 + inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1 + nd6 options=201 +gif0: flags=8010 mtu 1280 +stf0: flags=0<> mtu 1280 +anpi1: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:ca + media: none + status: inactive +anpi0: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:c9 + media: none + status: inactive +en3: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:a9 + nd6 options=201 + media: none + status: inactive +en4: flags=8863 mtu 1500 + options=400 + ether da:7d:c3:d6:62:aa + nd6 options=201 + media: none + status: inactive +en1: flags=8963 mtu 1500 + options=460 + ether 36:3b:68:bd:27:00 + media: autoselect + status: inactive +en2: flags=8963 mtu 1500 + options=460 + ether 36:3b:68:bd:27:04 + media: autoselect + status: inactive +bridge0: flags=8863 mtu 1500 + options=63 + ether 36:3b:68:bd:27:00 + Configuration: + id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0 + maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200 + root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0 + ipfilter disabled flags 0x0 + member: en1 flags=3 + ifmaxaddr 0 port 8 priority 0 path cost 0 + member: en2 flags=3 + ifmaxaddr 0 port 9 priority 0 path cost 0 + nd6 options=201 + media: + status: inactive +ap1: flags=8863 mtu 1500 + options=6460 + ether 2e:35:de:30:2f:98 + nd6 options=201 + media: autoselect (none) + status: inactive +en0: flags=8863 mtu 1500 + options=6460 + ether 4e:e6:38:73:27:1a + inet6 fe80::8a:7b09:9a96:9617%en0 prefixlen 64 secured scopeid 0xb + inet 192.168.31.11 netmask 0xffffff00 broadcast 192.168.31.255 + inet6 fde8:dc6b:87dd:3503:dc:a6af:4d98:ec5 prefixlen 64 autoconf secured + nd6 options=201 + media: autoselect + status: active +awdl0: flags=8863 mtu 1500 + options=6460 + ether 3e:4d:6d:39:e7:d9 + inet6 fe80::3c4d:6dff:fe39:e7d9%awdl0 prefixlen 64 scopeid 0xd + nd6 options=201 + media: autoselect + status: active +llw0: flags=8863 mtu 1500 + options=400 + ether 3e:4d:6d:39:e7:d9 + inet6 fe80::3c4d:6dff:fe39:e7d9%llw0 prefixlen 64 optimistic scopeid 0xe + nd6 options=201 + media: autoselect (none) +utun0: flags=8051 mtu 1500 + inet6 fe80::a0eb:45f5:8662:b4bf%utun0 prefixlen 64 scopeid 0xf + nd6 options=201 +utun1: flags=8051 mtu 1380 + inet6 fe80::6805:aa7a:fc48:5c2c%utun1 prefixlen 64 scopeid 0x10 + nd6 options=201 +utun2: flags=8051 mtu 2000 + inet6 fe80::c449:16b9:1878:d977%utun2 prefixlen 64 scopeid 0x11 + nd6 options=201 +utun3: flags=8051 mtu 1000 + inet6 fe80::ce81:b1c:bd2c:69e%utun3 prefixlen 64 scopeid 0x12 + nd6 options=201 +utun4: flags=8051 mtu 1280 + options=6460 + inet6 fe80::80a2:1fd6:5113:418d%utun4 prefixlen 64 scopeid 0x13 + inet 100.94.11.28 --> 100.94.11.28 netmask 0xffffffff + inet6 fd7a:115c:a1e0::4535:b1c prefixlen 48 + nd6 options=201 +utun5: flags=8051 mtu 1380 + inet6 fe80::5fa:9803:3272:6284%utun5 prefixlen 64 scopeid 0x14 + nd6 options=201 +utun6: flags=8051 mtu 1380 + inet6 fe80::bbf0:8cb3:e86a:51b5%utun6 prefixlen 64 scopeid 0x15 + nd6 options=201 +utun7: flags=8051 mtu 1380 + inet6 fe80::3ef4:2857:b6cc:6733%utun7 prefixlen 64 scopeid 0x16 + nd6 options=201 +utun8: flags=8051 mtu 1380 + inet6 fe80::e101:5c8b:d941:aed1%utun8 prefixlen 64 scopeid 0x17 + nd6 options=201 +utun9: flags=8051 mtu 1380 + inet6 fe80::a4fe:bd64:36d9:edfd%utun9 prefixlen 64 scopeid 0x18 + nd6 options=201 +utun10: flags=8051 mtu 1380 + inet6 fe80::a572:44b3:b1:f5ae%utun10 prefixlen 64 scopeid 0x19 + nd6 options=201 +utun11: flags=8051 mtu 1380 + inet6 fe80::15a7:a05a:4c5b:6dd8%utun11 prefixlen 64 scopeid 0x1a + nd6 options=201 +utun12: flags=8051 mtu 1380 + inet6 fe80::eb0:6c6f:ebc7:17dc%utun12 prefixlen 64 scopeid 0x1b + nd6 options=201 +utun13: flags=8051 mtu 1380 + inet6 fe80::45f7:1658:18a7:11e4%utun13 prefixlen 64 scopeid 0x1c + nd6 options=201 diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_from_receiver_reverse.json b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_from_receiver_reverse.json new file mode 100644 index 0000000..069f64a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_from_receiver_reverse.json @@ -0,0 +1,501 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.11", + "local_port": 53297, + "remote_host": "192.168.31.187", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabrielui-MacBookAir.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:00 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T8103 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 17:10:58 UTC", + "timesecs": 1778951458, + "timemillisecs": 1778951458101 + }, + "connecting_to": { + "host": "192.168.31.187", + "port": 5201 + }, + "cookie": "sx3gdukyuex54efef5faxl3gr2zxhzfllucg", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 1, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.002809, + "seconds": 1.0028090476989746, + "bytes": 21626880, + "bits_per_second": 172530393.89402878, + "omitted": false, + "sender": false + }], + "sum": { + "start": 0, + "end": 1.002809, + "seconds": 1.0028090476989746, + "bytes": 21626880, + "bits_per_second": 172530393.89402878, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 1.002809, + "end": 2.003691, + "seconds": 1.0008820295333862, + "bytes": 18874368, + "bits_per_second": 150861879.36693621, + "omitted": false, + "sender": false + }], + "sum": { + "start": 1.002809, + "end": 2.003691, + "seconds": 1.0008820295333862, + "bytes": 18874368, + "bits_per_second": 150861879.36693621, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 2.003691, + "end": 3.003524, + "seconds": 0.99983298778533936, + "bytes": 19922944, + "bits_per_second": 159410175.44644076, + "omitted": false, + "sender": false + }], + "sum": { + "start": 2.003691, + "end": 3.003524, + "seconds": 0.99983298778533936, + "bytes": 19922944, + "bits_per_second": 159410175.44644076, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 3.003524, + "end": 4.001768, + "seconds": 0.99824398756027222, + "bytes": 14155776, + "bits_per_second": 113445419.56799152, + "omitted": false, + "sender": false + }], + "sum": { + "start": 3.003524, + "end": 4.001768, + "seconds": 0.99824398756027222, + "bytes": 14155776, + "bits_per_second": 113445419.56799152, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 4.001768, + "end": 5.005005, + "seconds": 1.0032370090484619, + "bytes": 7340032, + "bits_per_second": 58530791.298951656, + "omitted": false, + "sender": false + }], + "sum": { + "start": 4.001768, + "end": 5.005005, + "seconds": 1.0032370090484619, + "bytes": 7340032, + "bits_per_second": 58530791.298951656, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 5.005005, + "end": 6.001687, + "seconds": 0.99668198823928833, + "bytes": 8781824, + "bits_per_second": 70488473.584347472, + "omitted": false, + "sender": false + }], + "sum": { + "start": 5.005005, + "end": 6.001687, + "seconds": 0.99668198823928833, + "bytes": 8781824, + "bits_per_second": 70488473.584347472, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 6.001687, + "end": 7.002047, + "seconds": 1.0003600120544434, + "bytes": 14680064, + "bits_per_second": 117398247.21583179, + "omitted": false, + "sender": false + }], + "sum": { + "start": 6.001687, + "end": 7.002047, + "seconds": 1.0003600120544434, + "bytes": 14680064, + "bits_per_second": 117398247.21583179, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 7.002047, + "end": 8.002634, + "seconds": 1.000586986541748, + "bytes": 19660800, + "bits_per_second": 157194129.16174024, + "omitted": false, + "sender": false + }], + "sum": { + "start": 7.002047, + "end": 8.002634, + "seconds": 1.000586986541748, + "bytes": 19660800, + "bits_per_second": 157194129.16174024, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002634, + "end": 9.004992, + "seconds": 1.0023579597473145, + "bytes": 21757952, + "bits_per_second": 173654146.51256913, + "omitted": false, + "sender": false + }], + "sum": { + "start": 8.002634, + "end": 9.004992, + "seconds": 1.0023579597473145, + "bytes": 21757952, + "bits_per_second": 173654146.51256913, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 9.004992, + "end": 10.004332, + "seconds": 0.999339997768402, + "bytes": 10616832, + "bits_per_second": 84990750.0847211, + "omitted": false, + "sender": false + }], + "sum": { + "start": 9.004992, + "end": 10.004332, + "seconds": 0.999339997768402, + "bytes": 10616832, + "bits_per_second": 84990750.0847211, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 10.004332, + "end": 11.001817, + "seconds": 0.99748498201370239, + "bytes": 20578304, + "bits_per_second": 165041514.37714431, + "omitted": false, + "sender": false + }], + "sum": { + "start": 10.004332, + "end": 11.001817, + "seconds": 0.99748498201370239, + "bytes": 20578304, + "bits_per_second": 165041514.37714431, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 11.001817, + "end": 12.001662, + "seconds": 0.999845027923584, + "bytes": 19529728, + "bits_per_second": 156262040.252843, + "omitted": false, + "sender": false + }], + "sum": { + "start": 11.001817, + "end": 12.001662, + "seconds": 0.999845027923584, + "bytes": 19529728, + "bits_per_second": 156262040.252843, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 12.001662, + "end": 13.002506, + "seconds": 1.0008440017700195, + "bytes": 18219008, + "bits_per_second": 145629152.73732325, + "omitted": false, + "sender": false + }], + "sum": { + "start": 12.001662, + "end": 13.002506, + "seconds": 1.0008440017700195, + "bytes": 18219008, + "bits_per_second": 145629152.73732325, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 13.002506, + "end": 14.00145, + "seconds": 0.9989439845085144, + "bytes": 14942208, + "bits_per_second": 119664031.07058415, + "omitted": false, + "sender": false + }], + "sum": { + "start": 13.002506, + "end": 14.00145, + "seconds": 0.9989439845085144, + "bytes": 14942208, + "bits_per_second": 119664031.07058415, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 14.00145, + "end": 15.000845, + "seconds": 0.99939501285552979, + "bytes": 19267584, + "bits_per_second": 154233981.576094, + "omitted": false, + "sender": false + }], + "sum": { + "start": 14.00145, + "end": 15.000845, + "seconds": 0.99939501285552979, + "bytes": 19267584, + "bits_per_second": 154233981.576094, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 15.000845, + "end": 16.004999, + "seconds": 1.0041539669036865, + "bytes": 16252928, + "bits_per_second": 129485545.33019258, + "omitted": false, + "sender": false + }], + "sum": { + "start": 15.000845, + "end": 16.004999, + "seconds": 1.0041539669036865, + "bytes": 16252928, + "bits_per_second": 129485545.33019258, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 16.004999, + "end": 17.002377, + "seconds": 0.99737799167633057, + "bytes": 16121856, + "bits_per_second": 129313910.14877634, + "omitted": false, + "sender": false + }], + "sum": { + "start": 16.004999, + "end": 17.002377, + "seconds": 0.99737799167633057, + "bytes": 16121856, + "bits_per_second": 129313910.14877634, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 17.002377, + "end": 18.004986, + "seconds": 1.0026090145111084, + "bytes": 17301504, + "bits_per_second": 138051852.71298641, + "omitted": false, + "sender": false + }], + "sum": { + "start": 17.002377, + "end": 18.004986, + "seconds": 1.0026090145111084, + "bytes": 17301504, + "bits_per_second": 138051852.71298641, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 18.004986, + "end": 19.001306, + "seconds": 0.99632000923156738, + "bytes": 14680064, + "bits_per_second": 117874288.29275289, + "omitted": false, + "sender": false + }], + "sum": { + "start": 18.004986, + "end": 19.001306, + "seconds": 0.99632000923156738, + "bytes": 14680064, + "bits_per_second": 117874288.29275289, + "omitted": false, + "sender": false + } + }, { + "streams": [{ + "socket": 5, + "start": 19.001306, + "end": 20.002321, + "seconds": 1.0010149478912354, + "bytes": 9306112, + "bits_per_second": 74373410.863480136, + "omitted": false, + "sender": false + }], + "sum": { + "start": 19.001306, + "end": 20.002321, + "seconds": 1.0010149478912354, + "bytes": 9306112, + "bits_per_second": 74373410.863480136, + "omitted": false, + "sender": false + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 20.050285, + "seconds": 20.050285, + "bytes": 327811072, + "bits_per_second": 130795576.02298422, + "retransmits": 11, + "reorder": 0, + "max_snd_cwnd": 0, + "max_snd_wnd": 0, + "max_rtt": 0, + "min_rtt": 0, + "mean_rtt": 0, + "sender": false + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 20.002321, + "seconds": 20.002321, + "bytes": 323616768, + "bits_per_second": 129431686.65276396, + "sender": false + } + }], + "sum_sent": { + "start": 0, + "end": 20.050285, + "seconds": 20.050285, + "bytes": 327811072, + "bits_per_second": 130795576.02298422, + "retransmits": 11, + "sender": false + }, + "sum_received": { + "start": 0, + "end": 20.002321, + "seconds": 20.002321, + "bytes": 323616768, + "bits_per_second": 129431686.65276396, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 1.8676049657987508, + "host_user": 0.039823184064055051, + "host_system": 1.8277967622428077, + "remote_total": 0.82633705153336168, + "remote_user": 0.021999678508438755, + "remote_system": 0.80432739810834675 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_to_receiver.json b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_to_receiver.json new file mode 100644 index 0000000..8c640a8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_to_receiver.json @@ -0,0 +1,661 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.11", + "local_port": 53286, + "remote_host": "192.168.31.187", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabrielui-MacBookAir.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:00 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T8103 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 17:10:37 UTC", + "timesecs": 1778951437, + "timemillisecs": 1778951437966 + }, + "connecting_to": { + "host": "192.168.31.187", + "port": 5201 + }, + "cookie": "prmlqbjrstekvhlzdl3kv5yszsxz6wc7bhxk", + "tcp_mss_default": 1448, + "target_bitrate": 0, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 131072, + "rcvbuf_actual": 131072, + "test_start": { + "protocol": "TCP", + "num_streams": 1, + "blksize": 131072, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 0, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.004983, + "seconds": 1.0049829483032227, + "bytes": 9437184, + "bits_per_second": 75123137.2905055, + "retransmits": 571, + "snd_cwnd": 831152, + "snd_wnd": -1, + "rtt": 49, + "rttvar": 15, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.004983, + "seconds": 1.0049829483032227, + "bytes": 9437184, + "bits_per_second": 75123137.2905055, + "retransmits": 571, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.004983, + "end": 2.002295, + "seconds": 0.99731200933456421, + "bytes": 14024704, + "bits_per_second": 112500031.03327869, + "retransmits": 0, + "snd_cwnd": 887624, + "snd_wnd": -1, + "rtt": 51, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.004983, + "end": 2.002295, + "seconds": 0.99731200933456421, + "bytes": 14024704, + "bits_per_second": 112500031.03327869, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.002295, + "end": 3.000146, + "seconds": 0.997851014137268, + "bytes": 21495808, + "bits_per_second": 172336813.37557238, + "retransmits": 0, + "snd_cwnd": 928168, + "snd_wnd": -1, + "rtt": 35, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.002295, + "end": 3.000146, + "seconds": 0.997851014137268, + "bytes": 21495808, + "bits_per_second": 172336813.37557238, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.000146, + "end": 4.004981, + "seconds": 1.00483500957489, + "bytes": 22151168, + "bits_per_second": 176356657.8706, + "retransmits": 0, + "snd_cwnd": 952784, + "snd_wnd": -1, + "rtt": 33, + "rttvar": 18, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.000146, + "end": 4.004981, + "seconds": 1.00483500957489, + "bytes": 22151168, + "bits_per_second": 176356657.8706, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.004981, + "end": 5.001699, + "seconds": 0.99671798944473267, + "bytes": 24117248, + "bits_per_second": 193573293.59278941, + "retransmits": 0, + "snd_cwnd": 965816, + "snd_wnd": -1, + "rtt": 29, + "rttvar": 1, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.004981, + "end": 5.001699, + "seconds": 0.99671798944473267, + "bytes": 24117248, + "bits_per_second": 193573293.59278941, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.001699, + "end": 6.00091, + "seconds": 0.999211013317108, + "bytes": 23592960, + "bits_per_second": 188892713.83571169, + "retransmits": 0, + "snd_cwnd": 970160, + "snd_wnd": -1, + "rtt": 26, + "rttvar": 1, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.001699, + "end": 6.00091, + "seconds": 0.999211013317108, + "bytes": 23592960, + "bits_per_second": 188892713.83571169, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.00091, + "end": 7.003174, + "seconds": 1.0022640228271484, + "bytes": 24772608, + "bits_per_second": 197733191.540667, + "retransmits": 0, + "snd_cwnd": 971608, + "snd_wnd": -1, + "rtt": 32, + "rttvar": 1, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.00091, + "end": 7.003174, + "seconds": 1.0022640228271484, + "bytes": 24772608, + "bits_per_second": 197733191.540667, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.003174, + "end": 8.004352, + "seconds": 1.0011780261993408, + "bytes": 23592960, + "bits_per_second": 188521596.62004, + "retransmits": 0, + "snd_cwnd": 971608, + "snd_wnd": -1, + "rtt": 37, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.003174, + "end": 8.004352, + "seconds": 1.0011780261993408, + "bytes": 23592960, + "bits_per_second": 188521596.62004, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.004352, + "end": 9.002815, + "seconds": 0.998462975025177, + "bytes": 24510464, + "bits_per_second": 196385561.51273972, + "retransmits": 0, + "snd_cwnd": 996224, + "snd_wnd": -1, + "rtt": 46, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.004352, + "end": 9.002815, + "seconds": 0.998462975025177, + "bytes": 24510464, + "bits_per_second": 196385561.51273972, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.002815, + "end": 10.00208, + "seconds": 0.99926501512527466, + "bytes": 23461888, + "bits_per_second": 187833158.5304918, + "retransmits": 0, + "snd_cwnd": 1029528, + "snd_wnd": -1, + "rtt": 62, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.002815, + "end": 10.00208, + "seconds": 0.99926501512527466, + "bytes": 23461888, + "bits_per_second": 187833158.5304918, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.00208, + "end": 11.003039, + "seconds": 1.000959038734436, + "bytes": 25034752, + "bits_per_second": 200086125.65527335, + "retransmits": 0, + "snd_cwnd": 1064280, + "snd_wnd": -1, + "rtt": 44, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.00208, + "end": 11.003039, + "seconds": 1.000959038734436, + "bytes": 25034752, + "bits_per_second": 200086125.65527335, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.003039, + "end": 12.001993, + "seconds": 0.99895399808883667, + "bytes": 22413312, + "bits_per_second": 179494247.32574555, + "retransmits": 0, + "snd_cwnd": 1094688, + "snd_wnd": -1, + "rtt": 40, + "rttvar": 2, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.003039, + "end": 12.001993, + "seconds": 0.99895399808883667, + "bytes": 22413312, + "bits_per_second": 179494247.32574555, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.001993, + "end": 13.001976, + "seconds": 0.999983012676239, + "bytes": 16777216, + "bits_per_second": 134220008.03873175, + "retransmits": 1, + "snd_cwnd": 1116408, + "snd_wnd": -1, + "rtt": 24, + "rttvar": 10, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.001993, + "end": 13.001976, + "seconds": 0.999983012676239, + "bytes": 16777216, + "bits_per_second": 134220008.03873175, + "retransmits": 1, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.001976, + "end": 14.00498, + "seconds": 1.00300395488739, + "bytes": 23199744, + "bits_per_second": 185042093.89766321, + "retransmits": 0, + "snd_cwnd": 1145368, + "snd_wnd": -1, + "rtt": 90, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.001976, + "end": 14.00498, + "seconds": 1.00300395488739, + "bytes": 23199744, + "bits_per_second": 185042093.89766321, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.00498, + "end": 15.004976, + "seconds": 0.9999960064888, + "bytes": 17170432, + "bits_per_second": 137364004.56469071, + "retransmits": 0, + "snd_cwnd": 1167088, + "snd_wnd": -1, + "rtt": 50, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.00498, + "end": 15.004976, + "seconds": 0.9999960064888, + "bytes": 17170432, + "bits_per_second": 137364004.56469071, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.004976, + "end": 16.004485, + "seconds": 0.99950897693634033, + "bytes": 14286848, + "bits_per_second": 114350932.94542721, + "retransmits": 0, + "snd_cwnd": 1184464, + "snd_wnd": -1, + "rtt": 116, + "rttvar": 5, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.004976, + "end": 16.004485, + "seconds": 0.99950897693634033, + "bytes": 14286848, + "bits_per_second": 114350932.94542721, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.004485, + "end": 17.002866, + "seconds": 0.998381018638611, + "bytes": 8912896, + "bits_per_second": 71418793.695846468, + "retransmits": 0, + "snd_cwnd": 1196048, + "snd_wnd": -1, + "rtt": 88, + "rttvar": 4, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.004485, + "end": 17.002866, + "seconds": 0.998381018638611, + "bytes": 8912896, + "bits_per_second": 71418793.695846468, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.002866, + "end": 18.000347, + "seconds": 0.99748098850250244, + "bytes": 11534336, + "bits_per_second": 92507716.000211775, + "retransmits": 0, + "snd_cwnd": 1209080, + "snd_wnd": -1, + "rtt": 41, + "rttvar": 10, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.002866, + "end": 18.000347, + "seconds": 0.99748098850250244, + "bytes": 11534336, + "bits_per_second": 92507716.000211775, + "retransmits": 0, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.000347, + "end": 19.0018, + "seconds": 1.0014530420303345, + "bytes": 11141120, + "bits_per_second": 88999639.7827111, + "retransmits": 752, + "snd_cwnd": 871456, + "snd_wnd": -1, + "rtt": 32, + "rttvar": 1, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.000347, + "end": 19.0018, + "seconds": 1.0014530420303345, + "bytes": 11141120, + "bits_per_second": 88999639.7827111, + "retransmits": 752, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.0018, + "end": 20.005025, + "seconds": 1.0032249689102173, + "bytes": 25427968, + "bits_per_second": 202769817.64217356, + "retransmits": 0, + "snd_cwnd": 997432, + "snd_wnd": -1, + "rtt": 36, + "rttvar": 0, + "pmtu": -1, + "reorder": -1, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.0018, + "end": 20.005025, + "seconds": 1.0032249689102173, + "bytes": 25427968, + "bits_per_second": 202769817.64217356, + "retransmits": 0, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "sender": { + "socket": 5, + "start": 0, + "end": 20.005025, + "seconds": 20.005025, + "bytes": 387055616, + "bits_per_second": 154783357.08153325, + "retransmits": 1324, + "reorder": -1, + "max_snd_cwnd": 1209080, + "max_snd_wnd": 0, + "max_rtt": 116, + "min_rtt": 24, + "mean_rtt": 48, + "sender": true + }, + "receiver": { + "socket": 5, + "start": 0, + "end": 20.040048, + "seconds": 20.005025, + "bytes": 386007040, + "bits_per_second": 154094257.6584647, + "sender": true + } + }], + "sum_sent": { + "start": 0, + "end": 20.005025, + "seconds": 20.005025, + "bytes": 387055616, + "bits_per_second": 154783357.08153325, + "retransmits": 1324, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.040048, + "seconds": 20.040048, + "bytes": 386007040, + "bits_per_second": 154094257.6584647, + "sender": true + }, + "cpu_utilization_percent": { + "host_total": 1.3838552796367316, + "host_user": 0.020909798354470249, + "host_system": 1.3629454812822615, + "remote_total": 3.7717849309639657, + "remote_user": 0.25496361946843216, + "remote_system": 3.5168263014871073 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_120mbps.json b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_120mbps.json new file mode 100644 index 0000000..06c1046 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_120mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.11", + "local_port": 50222, + "remote_host": "192.168.31.187", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabrielui-MacBookAir.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:00 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T8103 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 17:11:58 UTC", + "timesecs": 1778951518, + "timemillisecs": 1778951518493 + }, + "connecting_to": { + "host": "192.168.31.187", + "port": 5201 + }, + "cookie": "fpxgvd5bizjzoapdomuxp5pzvflilidablnd", + "target_bitrate": 120000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 120000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.005019, + "seconds": 1.005018949508667, + "bytes": 15075128, + "bits_per_second": 119998756.30102234, + "packets": 10411, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.005019, + "seconds": 1.005018949508667, + "bytes": 15075128, + "bits_per_second": 119998756.30102234, + "packets": 10411, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.005019, + "end": 2.001557, + "seconds": 0.996537983417511, + "bytes": 14949152, + "bits_per_second": 120008688.06813464, + "packets": 10324, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.005019, + "end": 2.001557, + "seconds": 0.996537983417511, + "bytes": 14949152, + "bits_per_second": 120008688.06813464, + "packets": 10324, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.001557, + "end": 3.00029, + "seconds": 0.99873298406600952, + "bytes": 14981008, + "bits_per_second": 120000106.04644139, + "packets": 10346, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.001557, + "end": 3.00029, + "seconds": 0.99873298406600952, + "bytes": 14981008, + "bits_per_second": 120000106.04644139, + "packets": 10346, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.00029, + "end": 4.00008, + "seconds": 0.9997900128364563, + "bytes": 14996936, + "bits_per_second": 120000686.60380323, + "packets": 10357, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.00029, + "end": 4.00008, + "seconds": 0.9997900128364563, + "bytes": 14996936, + "bits_per_second": 120000686.60380323, + "packets": 10357, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.00008, + "end": 5.001234, + "seconds": 1.0011539459228516, + "bytes": 15017208, + "bits_per_second": 119999191.42231274, + "packets": 10371, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.00008, + "end": 5.001234, + "seconds": 1.0011539459228516, + "bytes": 15017208, + "bits_per_second": 119999191.42231274, + "packets": 10371, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.001234, + "end": 6.003253, + "seconds": 1.0020190477371216, + "bytes": 15030240, + "bits_per_second": 119999635.00848071, + "packets": 10380, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.001234, + "end": 6.003253, + "seconds": 1.0020190477371216, + "bytes": 15030240, + "bits_per_second": 119999635.00848071, + "packets": 10380, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.003253, + "end": 7.004986, + "seconds": 1.0017329454422, + "bytes": 15025896, + "bits_per_second": 119999215.90572862, + "packets": 10377, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.003253, + "end": 7.004986, + "seconds": 1.0017329454422, + "bytes": 15025896, + "bits_per_second": 119999215.90572862, + "packets": 10377, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.004986, + "end": 8.004986, + "seconds": 1, + "bytes": 14999832, + "bits_per_second": 119998656, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.004986, + "end": 8.004986, + "seconds": 1, + "bytes": 14999832, + "bits_per_second": 119998656, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.004986, + "end": 9.000315, + "seconds": 0.99532902240753174, + "bytes": 14930328, + "bits_per_second": 120003156.0529488, + "packets": 10311, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.004986, + "end": 9.000315, + "seconds": 0.99532902240753174, + "bytes": 14930328, + "bits_per_second": 120003156.0529488, + "packets": 10311, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.000315, + "end": 10.000407, + "seconds": 1.0000920295715332, + "bytes": 15001280, + "bits_per_second": 119999196.52535944, + "packets": 10360, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.000315, + "end": 10.000407, + "seconds": 1.0000920295715332, + "bytes": 15001280, + "bits_per_second": 119999196.52535944, + "packets": 10360, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.000407, + "end": 11.004986, + "seconds": 1.0045789480209351, + "bytes": 15067888, + "bits_per_second": 119993659.27135468, + "packets": 10406, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.000407, + "end": 11.004986, + "seconds": 1.0045789480209351, + "bytes": 15067888, + "bits_per_second": 119993659.27135468, + "packets": 10406, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.004986, + "end": 12.000188, + "seconds": 0.99520200490951538, + "bytes": 14928880, + "bits_per_second": 120006832.1916803, + "packets": 10310, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.004986, + "end": 12.000188, + "seconds": 0.99520200490951538, + "bytes": 14928880, + "bits_per_second": 120006832.1916803, + "packets": 10310, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.000188, + "end": 13.004812, + "seconds": 1.0046240091323853, + "bytes": 15069336, + "bits_per_second": 119999807.79288124, + "packets": 10407, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.000188, + "end": 13.004812, + "seconds": 1.0046240091323853, + "bytes": 15069336, + "bits_per_second": 119999807.79288124, + "packets": 10407, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.004812, + "end": 14.000839, + "seconds": 0.99602699279785156, + "bytes": 14940464, + "bits_per_second": 120000474.75044475, + "packets": 10318, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.004812, + "end": 14.000839, + "seconds": 0.99602699279785156, + "bytes": 14940464, + "bits_per_second": 120000474.75044475, + "packets": 10318, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.000839, + "end": 15.005004, + "seconds": 1.0041650533676147, + "bytes": 15062096, + "bits_per_second": 119996974.19851092, + "packets": 10402, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.000839, + "end": 15.005004, + "seconds": 1.0041650533676147, + "bytes": 15062096, + "bits_per_second": 119996974.19851092, + "packets": 10402, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.005004, + "end": 16.004988, + "seconds": 0.9999840259552002, + "bytes": 14999832, + "bits_per_second": 120000572.89452742, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.005004, + "end": 16.004988, + "seconds": 0.9999840259552002, + "bytes": 14999832, + "bits_per_second": 120000572.89452742, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.004988, + "end": 17.004986, + "seconds": 0.99999797344207764, + "bytes": 14999832, + "bits_per_second": 119998899.18471982, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.004988, + "end": 17.004986, + "seconds": 0.99999797344207764, + "bytes": 14999832, + "bits_per_second": 119998899.18471982, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.004986, + "end": 18.004991, + "seconds": 1.0000050067901611, + "bytes": 14999832, + "bits_per_second": 119998055.1949179, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.004986, + "end": 18.004991, + "seconds": 1.0000050067901611, + "bytes": 14999832, + "bits_per_second": 119998055.1949179, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.004991, + "end": 19.004987, + "seconds": 0.9999960064888, + "bytes": 14999832, + "bits_per_second": 119999135.21789047, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.004991, + "end": 19.004987, + "seconds": 0.9999960064888, + "bytes": 14999832, + "bits_per_second": 119999135.21789047, + "packets": 10359, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.004987, + "end": 20.005014, + "seconds": 1.0000269412994385, + "bytes": 14999832, + "bits_per_second": 119995423.1673732, + "packets": 10359, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.004987, + "end": 20.005014, + "seconds": 1.0000269412994385, + "bytes": 14999832, + "bits_per_second": 119995423.1673732, + "packets": 10359, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.005014, + "seconds": 20.005014, + "bytes": 300074832, + "bits_per_second": 119999848.83789635, + "jitter_ms": 0.18804729652541471, + "lost_packets": 6, + "packets": 207234, + "lost_percent": 0.0028952778019050926, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.013235, + "seconds": 20.013235, + "bytes": 300074832, + "bits_per_second": 119999848.83789635, + "jitter_ms": 0.18804729652541471, + "lost_packets": 6, + "packets": 207234, + "lost_percent": 0.0028952778019050926, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.005014, + "seconds": 20.005014, + "bytes": 300074832, + "bits_per_second": 119999848.83789635, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 207234, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.013235, + "seconds": 20.013235, + "bytes": 300066144, + "bits_per_second": 119947082.61807747, + "jitter_ms": 0.18804729652541471, + "lost_packets": 6, + "packets": 207234, + "lost_percent": 0.0028952778019050926, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 5.8445688497926325, + "host_user": 0.69569724775176922, + "host_system": 5.1488666092731377, + "remote_total": 4.0686773493302129, + "remote_user": 1.20935464909323, + "remote_system": 2.8593826605552444 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_30mbps.json b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_30mbps.json new file mode 100644 index 0000000..6acc23f --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_30mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.11", + "local_port": 54421, + "remote_host": "192.168.31.187", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabrielui-MacBookAir.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:00 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T8103 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 17:11:18 UTC", + "timesecs": 1778951478, + "timemillisecs": 1778951478355 + }, + "connecting_to": { + "host": "192.168.31.187", + "port": 5201 + }, + "cookie": "ho4z2ao6bocdyppklyg2ohzm7tir3q7ga5ey", + "target_bitrate": 30000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 30000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.002486, + "seconds": 1.002485990524292, + "bytes": 3759008, + "bits_per_second": 29997490.522807762, + "packets": 2597, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.002486, + "seconds": 1.002485990524292, + "bytes": 3759008, + "bits_per_second": 29997490.522807762, + "packets": 2597, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.002486, + "end": 2.001406, + "seconds": 0.9989200234413147, + "bytes": 3745976, + "bits_per_second": 30000207.520878244, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.002486, + "end": 2.001406, + "seconds": 0.9989200234413147, + "bytes": 3745976, + "bits_per_second": 30000207.520878244, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.001406, + "end": 3.000165, + "seconds": 0.99875897169113159, + "bytes": 3745976, + "bits_per_second": 30005045.110390868, + "packets": 2587, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.001406, + "end": 3.000165, + "seconds": 0.99875897169113159, + "bytes": 3745976, + "bits_per_second": 30005045.110390868, + "packets": 2587, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.000165, + "end": 4.001969, + "seconds": 1.001803994178772, + "bytes": 3756112, + "bits_per_second": 29994785.581417609, + "packets": 2594, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.000165, + "end": 4.001969, + "seconds": 1.001803994178772, + "bytes": 3756112, + "bits_per_second": 29994785.581417609, + "packets": 2594, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.001969, + "end": 5.002061, + "seconds": 1.0000920295715332, + "bytes": 3750320, + "bits_per_second": 29999799.131339859, + "packets": 2591, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.001969, + "end": 5.002061, + "seconds": 1.0000920295715332, + "bytes": 3750320, + "bits_per_second": 29999799.131339859, + "packets": 2591, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.002061, + "end": 6.001928, + "seconds": 0.999867022037506, + "bytes": 3748872, + "bits_per_second": 29994964.6692868, + "packets": 2589, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.002061, + "end": 6.001928, + "seconds": 0.999867022037506, + "bytes": 3748872, + "bits_per_second": 29994964.6692868, + "packets": 2589, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.001928, + "end": 7.000687, + "seconds": 0.99875897169113159, + "bytes": 3745976, + "bits_per_second": 30005045.110390868, + "packets": 2587, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.001928, + "end": 7.000687, + "seconds": 0.99875897169113159, + "bytes": 3745976, + "bits_per_second": 30005045.110390868, + "packets": 2587, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.000687, + "end": 8.00155, + "seconds": 1.0008629560470581, + "bytes": 3753216, + "bits_per_second": 29999839.4571297, + "packets": 2592, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.000687, + "end": 8.00155, + "seconds": 1.0008629560470581, + "bytes": 3753216, + "bits_per_second": 29999839.4571297, + "packets": 2592, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.00155, + "end": 9.000837, + "seconds": 0.99928700923919678, + "bytes": 3747424, + "bits_per_second": 30000782.280582923, + "packets": 2587, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.00155, + "end": 9.000837, + "seconds": 0.99928700923919678, + "bytes": 3747424, + "bits_per_second": 30000782.280582923, + "packets": 2587, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.000837, + "end": 10.000177, + "seconds": 0.999339997768402, + "bytes": 3747424, + "bits_per_second": 29999191.533358149, + "packets": 2589, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.000837, + "end": 10.000177, + "seconds": 0.999339997768402, + "bytes": 3747424, + "bits_per_second": 29999191.533358149, + "packets": 2589, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.000177, + "end": 11.001814, + "seconds": 1.0016369819641113, + "bytes": 3754664, + "bits_per_second": 29988221.821742039, + "packets": 2594, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.000177, + "end": 11.001814, + "seconds": 1.0016369819641113, + "bytes": 3754664, + "bits_per_second": 29988221.821742039, + "packets": 2594, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.001814, + "end": 12.001607, + "seconds": 0.999792993068695, + "bytes": 3750320, + "bits_per_second": 30008772.023808878, + "packets": 2589, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.001814, + "end": 12.001607, + "seconds": 0.999792993068695, + "bytes": 3750320, + "bits_per_second": 30008772.023808878, + "packets": 2589, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.001607, + "end": 13.000086, + "seconds": 0.99847900867462158, + "bytes": 3744528, + "bits_per_second": 30001856.563578449, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.001607, + "end": 13.000086, + "seconds": 0.99847900867462158, + "bytes": 3744528, + "bits_per_second": 30001856.563578449, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.000086, + "end": 14.002867, + "seconds": 1.00278103351593, + "bytes": 3760456, + "bits_per_second": 30000216.392726671, + "packets": 2597, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.000086, + "end": 14.002867, + "seconds": 1.00278103351593, + "bytes": 3760456, + "bits_per_second": 30000216.392726671, + "packets": 2597, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.002867, + "end": 15.000605, + "seconds": 0.997738003730774, + "bytes": 3740184, + "bits_per_second": 29989307.702138912, + "packets": 2584, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.002867, + "end": 15.000605, + "seconds": 0.997738003730774, + "bytes": 3740184, + "bits_per_second": 29989307.702138912, + "packets": 2584, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.000605, + "end": 16.002651, + "seconds": 1.00204598903656, + "bytes": 3759008, + "bits_per_second": 30010662.513517439, + "packets": 2595, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.000605, + "end": 16.002651, + "seconds": 1.00204598903656, + "bytes": 3759008, + "bits_per_second": 30010662.513517439, + "packets": 2595, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.002651, + "end": 17.000715, + "seconds": 0.99806398153305054, + "bytes": 3741632, + "bits_per_second": 29991119.360927239, + "packets": 2584, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.002651, + "end": 17.000715, + "seconds": 0.99806398153305054, + "bytes": 3741632, + "bits_per_second": 29991119.360927239, + "packets": 2584, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.000715, + "end": 18.001936, + "seconds": 1.0012209415435791, + "bytes": 3754664, + "bits_per_second": 30000682.919887364, + "packets": 2593, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.000715, + "end": 18.001936, + "seconds": 1.0012209415435791, + "bytes": 3754664, + "bits_per_second": 30000682.919887364, + "packets": 2593, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.001936, + "end": 19.000548, + "seconds": 0.99861198663711548, + "bytes": 3744528, + "bits_per_second": 29997861.4325263, + "packets": 2586, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.001936, + "end": 19.000548, + "seconds": 0.99861198663711548, + "bytes": 3744528, + "bits_per_second": 29997861.4325263, + "packets": 2586, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.000548, + "end": 20.000796, + "seconds": 1.0002479553222656, + "bytes": 3751768, + "bits_per_second": 30006703.678119361, + "packets": 2591, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.000548, + "end": 20.000796, + "seconds": 1.0002479553222656, + "bytes": 3751768, + "bits_per_second": 30006703.678119361, + "packets": 2591, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.000796, + "seconds": 20.000796, + "bytes": 75003504, + "bits_per_second": 30000207.591737848, + "jitter_ms": 0.602982264438281, + "lost_packets": 0, + "packets": 51798, + "lost_percent": 0, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.00923, + "seconds": 20.00923, + "bytes": 75003504, + "bits_per_second": 30000207.591737848, + "jitter_ms": 0.602982264438281, + "lost_packets": 0, + "packets": 51798, + "lost_percent": 0, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.000796, + "seconds": 20.000796, + "bytes": 75003504, + "bits_per_second": 30000207.591737848, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 51798, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.00923, + "seconds": 20.00923, + "bytes": 75003504, + "bits_per_second": 29987562.3399801, + "jitter_ms": 0.602982264438281, + "lost_packets": 0, + "packets": 51798, + "lost_percent": 0, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 7.8430506726789364, + "host_user": 0.59264199626104652, + "host_system": 7.2504186666743919, + "remote_total": 1.4912048703859853, + "remote_user": 0.40987530970666775, + "remote_system": 1.0812645907474021 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_60mbps.json b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_60mbps.json new file mode 100644 index 0000000..51d33fb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_60mbps.json @@ -0,0 +1,548 @@ +{ + "start": { + "connected": [{ + "socket": 5, + "local_host": "192.168.31.11", + "local_port": 50593, + "remote_host": "192.168.31.187", + "remote_port": 5201 + }], + "version": "iperf 3.21", + "system_info": "Darwin Gabrielui-MacBookAir.local 25.5.0 Darwin Kernel Version 25.5.0: Mon Apr 27 20:38:00 PDT 2026; root:xnu-12377.121.6~2/RELEASE_ARM64_T8103 arm64", + "timestamp": { + "time": "Sat, 16 May 2026 17:11:38 UTC", + "timesecs": 1778951498, + "timemillisecs": 1778951498419 + }, + "connecting_to": { + "host": "192.168.31.187", + "port": 5201 + }, + "cookie": "sd3u4yd5who76vyjpow5uaznc2mcgbjzrrls", + "target_bitrate": 60000000, + "fq_rate": 0, + "sock_bufsize": 0, + "sndbuf_actual": 9216, + "rcvbuf_actual": 786896, + "test_start": { + "protocol": "UDP", + "num_streams": 1, + "blksize": 1448, + "omit": 0, + "duration": 20, + "bytes": 0, + "blocks": 0, + "reverse": 0, + "tos": 0, + "target_bitrate": 60000000, + "bidir": 0, + "fqrate": 0, + "interval": 1, + "gso": 0, + "gro": 0 + } + }, + "intervals": [{ + "streams": [{ + "socket": 5, + "start": 0, + "end": 1.000349, + "seconds": 1.0003490447998047, + "bytes": 7503536, + "bits_per_second": 60007342.749063343, + "packets": 5182, + "omitted": false, + "sender": true + }], + "sum": { + "start": 0, + "end": 1.000349, + "seconds": 1.0003490447998047, + "bytes": 7503536, + "bits_per_second": 60007342.749063343, + "packets": 5182, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 1.000349, + "end": 2.001451, + "seconds": 1.0011019706726074, + "bytes": 7507880, + "bits_per_second": 59996925.148040235, + "packets": 5185, + "omitted": false, + "sender": true + }], + "sum": { + "start": 1.000349, + "end": 2.001451, + "seconds": 1.0011019706726074, + "bytes": 7507880, + "bits_per_second": 59996925.148040235, + "packets": 5185, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 2.001451, + "end": 3.004972, + "seconds": 1.0035209655761719, + "bytes": 7526704, + "bits_per_second": 60002365.735755533, + "packets": 5198, + "omitted": false, + "sender": true + }], + "sum": { + "start": 2.001451, + "end": 3.004972, + "seconds": 1.0035209655761719, + "bytes": 7526704, + "bits_per_second": 60002365.735755533, + "packets": 5198, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 3.004972, + "end": 4.002912, + "seconds": 0.99794000387191772, + "bytes": 7483264, + "bits_per_second": 59989690.5302171, + "packets": 5169, + "omitted": false, + "sender": true + }], + "sum": { + "start": 3.004972, + "end": 4.002912, + "seconds": 0.99794000387191772, + "bytes": 7483264, + "bits_per_second": 59989690.5302171, + "packets": 5169, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 4.002912, + "end": 5.004638, + "seconds": 1.0017260313034058, + "bytes": 7513672, + "bits_per_second": 60005804.103730924, + "packets": 5188, + "omitted": false, + "sender": true + }], + "sum": { + "start": 4.002912, + "end": 5.004638, + "seconds": 1.0017260313034058, + "bytes": 7513672, + "bits_per_second": 60005804.103730924, + "packets": 5188, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 5.004638, + "end": 6.00212, + "seconds": 0.99748200178146362, + "bytes": 7481816, + "bits_per_second": 60005622.049422614, + "packets": 5167, + "omitted": false, + "sender": true + }], + "sum": { + "start": 5.004638, + "end": 6.00212, + "seconds": 0.99748200178146362, + "bytes": 7481816, + "bits_per_second": 60005622.049422614, + "packets": 5167, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 6.00212, + "end": 7.003313, + "seconds": 1.0011930465698242, + "bytes": 7507880, + "bits_per_second": 59991467.385616869, + "packets": 5185, + "omitted": false, + "sender": true + }], + "sum": { + "start": 6.00212, + "end": 7.003313, + "seconds": 1.0011930465698242, + "bytes": 7507880, + "bits_per_second": 59991467.385616869, + "packets": 5185, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 7.003313, + "end": 8.002837, + "seconds": 0.99952399730682373, + "bytes": 7496296, + "bits_per_second": 59998927.651149638, + "packets": 5177, + "omitted": false, + "sender": true + }], + "sum": { + "start": 7.003313, + "end": 8.002837, + "seconds": 0.99952399730682373, + "bytes": 7496296, + "bits_per_second": 59998927.651149638, + "packets": 5177, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 8.002837, + "end": 9.004978, + "seconds": 1.002140998840332, + "bytes": 7516568, + "bits_per_second": 60004075.344272718, + "packets": 5191, + "omitted": false, + "sender": true + }], + "sum": { + "start": 8.002837, + "end": 9.004978, + "seconds": 1.002140998840332, + "bytes": 7516568, + "bits_per_second": 60004075.344272718, + "packets": 5191, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 9.004978, + "end": 10.001096, + "seconds": 0.99611800909042358, + "bytes": 7470232, + "bits_per_second": 59994755.093896769, + "packets": 5160, + "omitted": false, + "sender": true + }], + "sum": { + "start": 9.004978, + "end": 10.001096, + "seconds": 0.99611800909042358, + "bytes": 7470232, + "bits_per_second": 59994755.093896769, + "packets": 5160, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 10.001096, + "end": 11.002161, + "seconds": 1.0010650157928467, + "bytes": 7509328, + "bits_per_second": 60010711.6443588, + "packets": 5185, + "omitted": false, + "sender": true + }], + "sum": { + "start": 10.001096, + "end": 11.002161, + "seconds": 1.0010650157928467, + "bytes": 7509328, + "bits_per_second": 60010711.6443588, + "packets": 5185, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 11.002161, + "end": 12.002844, + "seconds": 1.0006829500198364, + "bytes": 7504984, + "bits_per_second": 59998895.752955355, + "packets": 5183, + "omitted": false, + "sender": true + }], + "sum": { + "start": 11.002161, + "end": 12.002844, + "seconds": 1.0006829500198364, + "bytes": 7504984, + "bits_per_second": 59998895.752955355, + "packets": 5183, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 12.002844, + "end": 13.001177, + "seconds": 0.998332977294922, + "bytes": 7486160, + "bits_per_second": 59989283.497651957, + "packets": 5171, + "omitted": false, + "sender": true + }], + "sum": { + "start": 12.002844, + "end": 13.001177, + "seconds": 0.998332977294922, + "bytes": 7486160, + "bits_per_second": 59989283.497651957, + "packets": 5171, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 13.001177, + "end": 14.003025, + "seconds": 1.0018479824066162, + "bytes": 7513672, + "bits_per_second": 59998499.827894688, + "packets": 5189, + "omitted": false, + "sender": true + }], + "sum": { + "start": 13.001177, + "end": 14.003025, + "seconds": 1.0018479824066162, + "bytes": 7513672, + "bits_per_second": 59998499.827894688, + "packets": 5189, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 14.003025, + "end": 15.000016, + "seconds": 0.996990978717804, + "bytes": 7477472, + "bits_per_second": 60000318.234506167, + "packets": 5164, + "omitted": false, + "sender": true + }], + "sum": { + "start": 14.003025, + "end": 15.000016, + "seconds": 0.996990978717804, + "bytes": 7477472, + "bits_per_second": 60000318.234506167, + "packets": 5164, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 15.000016, + "end": 16.003167, + "seconds": 1.0031510591506958, + "bytes": 7523808, + "bits_per_second": 60001396.051916085, + "packets": 5196, + "omitted": false, + "sender": true + }], + "sum": { + "start": 15.000016, + "end": 16.003167, + "seconds": 1.0031510591506958, + "bytes": 7523808, + "bits_per_second": 60001396.051916085, + "packets": 5196, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 16.003167, + "end": 17.004979, + "seconds": 1.0018119812011719, + "bytes": 7512224, + "bits_per_second": 59989092.891405419, + "packets": 5189, + "omitted": false, + "sender": true + }], + "sum": { + "start": 16.003167, + "end": 17.004979, + "seconds": 1.0018119812011719, + "bytes": 7512224, + "bits_per_second": 59989092.891405419, + "packets": 5189, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 17.004979, + "end": 18.004268, + "seconds": 0.99928897619247437, + "bytes": 7494848, + "bits_per_second": 60001446.456916839, + "packets": 5175, + "omitted": false, + "sender": true + }], + "sum": { + "start": 17.004979, + "end": 18.004268, + "seconds": 0.99928897619247437, + "bytes": 7494848, + "bits_per_second": 60001446.456916839, + "packets": 5175, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 18.004268, + "end": 19.004969, + "seconds": 1.0007009506225586, + "bytes": 7506432, + "bits_per_second": 60009392.379052542, + "packets": 5184, + "omitted": false, + "sender": true + }], + "sum": { + "start": 18.004268, + "end": 19.004969, + "seconds": 1.0007009506225586, + "bytes": 7506432, + "bits_per_second": 60009392.379052542, + "packets": 5184, + "omitted": false, + "sender": true + } + }, { + "streams": [{ + "socket": 5, + "start": 19.004969, + "end": 20.005006, + "seconds": 1.0000369548797607, + "bytes": 7499192, + "bits_per_second": 59991319.028018631, + "packets": 5179, + "omitted": false, + "sender": true + }], + "sum": { + "start": 19.004969, + "end": 20.005006, + "seconds": 1.0000369548797607, + "bytes": 7499192, + "bits_per_second": 59991319.028018631, + "packets": 5179, + "omitted": false, + "sender": true + } + }], + "end": { + "streams": [{ + "udp": { + "socket": 5, + "start": 0, + "end": 20.005006, + "seconds": 20.005006, + "bytes": 150037416, + "bits_per_second": 59999948.412912242, + "jitter_ms": 0.24592151493672387, + "lost_packets": 345, + "packets": 103617, + "lost_percent": 0.3329569472190857, + "out_of_order": 0, + "sender": true + } + }], + "sum": { + "start": 0, + "end": 20.012008, + "seconds": 20.012008, + "bytes": 150037416, + "bits_per_second": 59999948.412912242, + "jitter_ms": 0.24592151493672387, + "lost_packets": 345, + "packets": 103617, + "lost_percent": 0.3329569472190857, + "sender": true + }, + "sum_sent": { + "start": 0, + "end": 20.005006, + "seconds": 20.005006, + "bytes": 150037416, + "bits_per_second": 59999948.412912242, + "jitter_ms": 0, + "lost_packets": 0, + "packets": 103617, + "lost_percent": 0, + "sender": true + }, + "sum_received": { + "start": 0, + "end": 20.012008, + "seconds": 20.012008, + "bytes": 149537856, + "bits_per_second": 59779250.937736981, + "jitter_ms": 0.24592151493672387, + "lost_packets": 345, + "packets": 103617, + "lost_percent": 0.3329569472190857, + "sender": false + }, + "cpu_utilization_percent": { + "host_total": 8.6360975699396736, + "host_user": 0.71330133920523753, + "host_system": 7.92280122430322, + "remote_total": 2.0983861420266576, + "remote_user": 0.63613685477237059, + "remote_system": 1.4622542842445996 + } + } +} diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/metadata.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/metadata.txt new file mode 100644 index 0000000..176b361 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/metadata.txt @@ -0,0 +1,7 @@ +case=wifi5-2015-imac +receiver_ip=192.168.31.187 +duration_seconds=20 +timestamp=2026-05-17_0208 +hostname=Gabrielui-MacBookAir.local +whoami=gabrieljang +pwd=/Users/gabrieljang/development/iBridge diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_hardware_ports.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_hardware_ports.txt new file mode 100644 index 0000000..d8190c6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_hardware_ports.txt @@ -0,0 +1,27 @@ + +Hardware Port: Ethernet Adapter (en3) +Device: en3 +Ethernet Address: da:7d:c3:d6:62:a9 + +Hardware Port: Ethernet Adapter (en4) +Device: en4 +Ethernet Address: da:7d:c3:d6:62:aa + +Hardware Port: Thunderbolt Bridge +Device: bridge0 +Ethernet Address: 36:3b:68:bd:27:00 + +Hardware Port: Wi-Fi +Device: en0 +Ethernet Address: 1c:91:80:c8:4e:a9 + +Hardware Port: Thunderbolt 1 +Device: en1 +Ethernet Address: 36:3b:68:bd:27:00 + +Hardware Port: Thunderbolt 2 +Device: en2 +Ethernet Address: 36:3b:68:bd:27:04 + +VLAN Configurations +=================== diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_services.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_services.txt new file mode 100644 index 0000000..a5640e8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/networksetup_services.txt @@ -0,0 +1,6 @@ +An asterisk (*) denotes that a network service is disabled. +Thunderbolt Bridge +Wi-Fi +iPhone USB +TunnelBear +Tailscale diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ping_100.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ping_100.txt new file mode 100644 index 0000000..1ec6a9a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/ping_100.txt @@ -0,0 +1,105 @@ +PING 192.168.31.187 (192.168.31.187): 56 data bytes +64 bytes from 192.168.31.187: icmp_seq=0 ttl=64 time=115.460 ms +64 bytes from 192.168.31.187: icmp_seq=1 ttl=64 time=129.615 ms +64 bytes from 192.168.31.187: icmp_seq=2 ttl=64 time=5.273 ms +64 bytes from 192.168.31.187: icmp_seq=3 ttl=64 time=5.863 ms +64 bytes from 192.168.31.187: icmp_seq=4 ttl=64 time=5.314 ms +64 bytes from 192.168.31.187: icmp_seq=5 ttl=64 time=4.662 ms +64 bytes from 192.168.31.187: icmp_seq=6 ttl=64 time=22.287 ms +64 bytes from 192.168.31.187: icmp_seq=7 ttl=64 time=51.111 ms +64 bytes from 192.168.31.187: icmp_seq=8 ttl=64 time=6.005 ms +64 bytes from 192.168.31.187: icmp_seq=9 ttl=64 time=14.993 ms +64 bytes from 192.168.31.187: icmp_seq=10 ttl=64 time=41.042 ms +64 bytes from 192.168.31.187: icmp_seq=11 ttl=64 time=53.849 ms +64 bytes from 192.168.31.187: icmp_seq=12 ttl=64 time=5.538 ms +64 bytes from 192.168.31.187: icmp_seq=13 ttl=64 time=5.087 ms +64 bytes from 192.168.31.187: icmp_seq=14 ttl=64 time=11.976 ms +64 bytes from 192.168.31.187: icmp_seq=15 ttl=64 time=5.525 ms +64 bytes from 192.168.31.187: icmp_seq=16 ttl=64 time=49.444 ms +64 bytes from 192.168.31.187: icmp_seq=17 ttl=64 time=67.871 ms +64 bytes from 192.168.31.187: icmp_seq=18 ttl=64 time=5.861 ms +64 bytes from 192.168.31.187: icmp_seq=19 ttl=64 time=5.767 ms +64 bytes from 192.168.31.187: icmp_seq=20 ttl=64 time=4.605 ms +64 bytes from 192.168.31.187: icmp_seq=21 ttl=64 time=49.743 ms +64 bytes from 192.168.31.187: icmp_seq=22 ttl=64 time=6.026 ms +64 bytes from 192.168.31.187: icmp_seq=23 ttl=64 time=5.209 ms +64 bytes from 192.168.31.187: icmp_seq=24 ttl=64 time=6.416 ms +64 bytes from 192.168.31.187: icmp_seq=25 ttl=64 time=28.791 ms +64 bytes from 192.168.31.187: icmp_seq=26 ttl=64 time=49.008 ms +64 bytes from 192.168.31.187: icmp_seq=27 ttl=64 time=5.735 ms +64 bytes from 192.168.31.187: icmp_seq=28 ttl=64 time=5.725 ms +64 bytes from 192.168.31.187: icmp_seq=29 ttl=64 time=5.238 ms +64 bytes from 192.168.31.187: icmp_seq=30 ttl=64 time=25.703 ms +64 bytes from 192.168.31.187: icmp_seq=31 ttl=64 time=4.781 ms +64 bytes from 192.168.31.187: icmp_seq=32 ttl=64 time=5.579 ms +64 bytes from 192.168.31.187: icmp_seq=33 ttl=64 time=3.690 ms +64 bytes from 192.168.31.187: icmp_seq=34 ttl=64 time=77.531 ms +64 bytes from 192.168.31.187: icmp_seq=35 ttl=64 time=26.035 ms +64 bytes from 192.168.31.187: icmp_seq=36 ttl=64 time=49.217 ms +64 bytes from 192.168.31.187: icmp_seq=37 ttl=64 time=71.239 ms +64 bytes from 192.168.31.187: icmp_seq=38 ttl=64 time=91.380 ms +64 bytes from 192.168.31.187: icmp_seq=39 ttl=64 time=9.010 ms +64 bytes from 192.168.31.187: icmp_seq=40 ttl=64 time=30.209 ms +64 bytes from 192.168.31.187: icmp_seq=41 ttl=64 time=51.029 ms +64 bytes from 192.168.31.187: icmp_seq=42 ttl=64 time=49.549 ms +64 bytes from 192.168.31.187: icmp_seq=43 ttl=64 time=7.469 ms +64 bytes from 192.168.31.187: icmp_seq=44 ttl=64 time=11.718 ms +64 bytes from 192.168.31.187: icmp_seq=45 ttl=64 time=25.336 ms +64 bytes from 192.168.31.187: icmp_seq=46 ttl=64 time=5.101 ms +64 bytes from 192.168.31.187: icmp_seq=47 ttl=64 time=65.851 ms +64 bytes from 192.168.31.187: icmp_seq=48 ttl=64 time=6.035 ms +64 bytes from 192.168.31.187: icmp_seq=49 ttl=64 time=5.747 ms +64 bytes from 192.168.31.187: icmp_seq=50 ttl=64 time=5.490 ms +64 bytes from 192.168.31.187: icmp_seq=51 ttl=64 time=38.906 ms +64 bytes from 192.168.31.187: icmp_seq=52 ttl=64 time=59.896 ms +64 bytes from 192.168.31.187: icmp_seq=53 ttl=64 time=5.760 ms +64 bytes from 192.168.31.187: icmp_seq=54 ttl=64 time=5.532 ms +64 bytes from 192.168.31.187: icmp_seq=55 ttl=64 time=5.442 ms +64 bytes from 192.168.31.187: icmp_seq=56 ttl=64 time=37.015 ms +64 bytes from 192.168.31.187: icmp_seq=57 ttl=64 time=5.000 ms +64 bytes from 192.168.31.187: icmp_seq=58 ttl=64 time=5.320 ms +64 bytes from 192.168.31.187: icmp_seq=59 ttl=64 time=5.894 ms +64 bytes from 192.168.31.187: icmp_seq=60 ttl=64 time=5.429 ms +64 bytes from 192.168.31.187: icmp_seq=61 ttl=64 time=5.019 ms +64 bytes from 192.168.31.187: icmp_seq=62 ttl=64 time=57.091 ms +64 bytes from 192.168.31.187: icmp_seq=63 ttl=64 time=5.677 ms +64 bytes from 192.168.31.187: icmp_seq=64 ttl=64 time=93.686 ms +64 bytes from 192.168.31.187: icmp_seq=65 ttl=64 time=10.389 ms +64 bytes from 192.168.31.187: icmp_seq=66 ttl=64 time=6.264 ms +64 bytes from 192.168.31.187: icmp_seq=67 ttl=64 time=5.495 ms +64 bytes from 192.168.31.187: icmp_seq=68 ttl=64 time=5.084 ms +64 bytes from 192.168.31.187: icmp_seq=69 ttl=64 time=90.102 ms +64 bytes from 192.168.31.187: icmp_seq=70 ttl=64 time=5.806 ms +64 bytes from 192.168.31.187: icmp_seq=71 ttl=64 time=29.551 ms +64 bytes from 192.168.31.187: icmp_seq=72 ttl=64 time=5.383 ms +64 bytes from 192.168.31.187: icmp_seq=73 ttl=64 time=5.272 ms +64 bytes from 192.168.31.187: icmp_seq=74 ttl=64 time=12.200 ms +64 bytes from 192.168.31.187: icmp_seq=75 ttl=64 time=5.603 ms +64 bytes from 192.168.31.187: icmp_seq=76 ttl=64 time=5.848 ms +64 bytes from 192.168.31.187: icmp_seq=77 ttl=64 time=211.272 ms +64 bytes from 192.168.31.187: icmp_seq=78 ttl=64 time=31.760 ms +64 bytes from 192.168.31.187: icmp_seq=79 ttl=64 time=6.186 ms +64 bytes from 192.168.31.187: icmp_seq=80 ttl=64 time=5.830 ms +64 bytes from 192.168.31.187: icmp_seq=81 ttl=64 time=23.017 ms +64 bytes from 192.168.31.187: icmp_seq=82 ttl=64 time=5.298 ms +64 bytes from 192.168.31.187: icmp_seq=83 ttl=64 time=4.993 ms +64 bytes from 192.168.31.187: icmp_seq=84 ttl=64 time=5.751 ms +64 bytes from 192.168.31.187: icmp_seq=85 ttl=64 time=9.666 ms +64 bytes from 192.168.31.187: icmp_seq=86 ttl=64 time=5.976 ms +64 bytes from 192.168.31.187: icmp_seq=87 ttl=64 time=5.464 ms +64 bytes from 192.168.31.187: icmp_seq=88 ttl=64 time=6.005 ms +64 bytes from 192.168.31.187: icmp_seq=89 ttl=64 time=5.079 ms +64 bytes from 192.168.31.187: icmp_seq=90 ttl=64 time=9.707 ms +64 bytes from 192.168.31.187: icmp_seq=91 ttl=64 time=7.160 ms +64 bytes from 192.168.31.187: icmp_seq=92 ttl=64 time=5.899 ms +64 bytes from 192.168.31.187: icmp_seq=93 ttl=64 time=72.152 ms +64 bytes from 192.168.31.187: icmp_seq=94 ttl=64 time=90.706 ms +64 bytes from 192.168.31.187: icmp_seq=95 ttl=64 time=109.972 ms +64 bytes from 192.168.31.187: icmp_seq=96 ttl=64 time=29.458 ms +64 bytes from 192.168.31.187: icmp_seq=97 ttl=64 time=15.067 ms +64 bytes from 192.168.31.187: icmp_seq=98 ttl=64 time=258.942 ms +64 bytes from 192.168.31.187: icmp_seq=99 ttl=64 time=194.739 ms + +--- 192.168.31.187 ping statistics --- +100 packets transmitted, 100 packets received, 0.0% packet loss +round-trip min/avg/max/stddev = 3.690/30.495/258.942/44.687 ms diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/summary.md b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/summary.md new file mode 100644 index 0000000..8a3bc9d --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/summary.md @@ -0,0 +1,31 @@ +# Network Matrix Result: wifi5-2015-imac + +- Receiver IP: `192.168.31.187` +- Duration: `20` seconds +- Status: MacBook Air to 2015 27-inch iMac Wi-Fi throughput matrix captured. + +## Required Notes + +- Interface actually used: MacBook Air Wi-Fi `en0`, local IP `192.168.31.11`. +- Physical path: same-LAN Wi-Fi from MacBook Air to 2015 iMac, no Ethernet cable attached. +- Receiver identity: `gabriels-imac27-2015`, local IP `192.168.31.187`, Tailscale IP `100.84.32.31`. +- Tailscale direct/relay status, if applicable: artifacts captured; earlier spot check reached the iMac through local endpoint `192.168.31.187:41641`. +- Ping: 100/100 received, min/avg/max/stddev `3.690/30.495/258.942/44.687 ms`. +- TCP to receiver: `154.09 Mbps` received. +- TCP reverse from receiver: `129.43 Mbps` received. +- UDP 30 Mbps: `29.99 Mbps` received, `0%` loss, `0.603 ms` iperf jitter. +- UDP 60 Mbps: `59.78 Mbps` received, `0.333%` loss, `0.246 ms` iperf jitter. +- UDP 120 Mbps: `119.95 Mbps` received, `0.003%` loss, `0.188 ms` iperf jitter. +- Link speed, if visible: not interpreted from current artifacts. +- Observed blockers: SSH auth from MacBook Air to the 2015 iMac is still not confirmed; TCP `48320` was refused in the prior port probe, so no iBridge receiver was listening yet. + +## Read + +The throughput result is much better than the ICMP latency spikes suggest: +120Mbps UDP was essentially lossless over the 20-second iperf run. However, +ICMP still shows repeated 100-250ms latency spikes, so this path should not be +treated as a smooth low-latency display transport yet. + +For MacBook Air, this keeps only the conservative `2560x1440@60` HEVC profile +in scope for a live smoke test. Do not use this Wi-Fi path for 5K, tiled 5K, or +high-detail fallback decisions. diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_netcheck.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_netcheck.txt new file mode 100644 index 0000000..9bd08f8 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_netcheck.txt @@ -0,0 +1,40 @@ +2026/05/17 02:12:18 portmap: monitor: gateway and self IP changed: gw=192.168.31.1 self=192.168.31.11 + +Report: + * Time: 2026-05-16T17:12:19.5361Z + * UDP: true + * IPv4: yes, 14.4.153.167:53528 + * IPv6: no, but OS has support + * MappingVariesByDestIP: false + * PortMapping: + * CaptivePortal: false + * Nearest DERP: Tokyo + * DERP latency: + - tok: 38.9ms (Tokyo) + - hkg: 68.5ms (Hong Kong) + - sin: 91.8ms (Singapore) + - sea: 125.1ms (Seattle) + - blr: 137.2ms (Bengaluru) + - sfo: 143.9ms (San Francisco) + - lax: 146.7ms (Los Angeles) + - syd: 165.6ms (Sydney) + - den: 165.6ms (Denver) + - dfw: 173.5ms (Dallas) + - hnl: 182.2ms (Honolulu) + - ord: 190.6ms (Chicago) + - tor: 202.3ms (Toronto) + - iad: 202.5ms (Ashburn) + - mia: 203.5ms (Miami) + - nyc: 209.7ms (New York City) + - nue: 234.9ms (Nuremberg) + - fra: 252.9ms (Frankfurt) + - ams: 271.4ms (Amsterdam) + - lhr: 273ms (London) + - hel: 273.4ms (Helsinki) + - mad: 277.9ms (Madrid) + - par: 278.1ms (Paris) + - waw: 292.3ms (Warsaw) + - sao: 357.3ms (São Paulo) + - dbi: 363.7ms (Dubai) + - jnb: 385.8ms (Johannesburg) + - nai: 438.4ms (Nairobi) diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_ping.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_ping.txt new file mode 100644 index 0000000..da88eb1 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_ping.txt @@ -0,0 +1 @@ +pong from gabriels-imac27-2015 (100.84.32.31) via 192.168.31.187:41641 in 9ms diff --git a/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_status.txt b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_status.txt new file mode 100644 index 0000000..39bbba3 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/tailscale_status.txt @@ -0,0 +1,8 @@ +100.94.11.28 gabriel-m1-macbookair woosu91@ macOS - +100.89.104.119 gabriel-imac21-2017 woosu91@ macOS - +100.84.32.31 gabriels-imac27-2015 woosu91@ macOS idle, tx 18408 rx 18760 +100.110.60.104 gabriels-ipad-air-1st-gen-wifi woosu91@ iOS - +100.70.76.98 gabriels-ipad-air-5th-gen-wifi woosu91@ iOS - +100.114.210.8 gabriels-m1-mac-mini woosu91@ macOS - +100.102.202.93 gabriels-m1max-macbook-pro woosu91@ macOS - +100.88.12.67 iphone-14-pro woosu91@ iOS offline, last seen 1d ago diff --git a/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_console.txt b/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_console.txt new file mode 100644 index 0000000..fa1a9f9 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=600 +frames_submitted=600 +frames_skipped=0 +frames_encoded=600 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.217 +avg_encode_latency_ms=9.709 +p95_encode_latency_ms=9.874 +max_encode_latency_ms=30.457 +avg_send_ms=0.057 +p95_send_ms=0.100 +payload_bytes=2449652 +bytes_sent=2497652 +send_target=192.168.31.187:48320 +csv=benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_stats.csv b/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_stats.csv new file mode 100644 index 0000000..23afcb0 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/primary_stats.csv @@ -0,0 +1,601 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.1808,30.4575,0.1060,0.0069,1,0,0.0849,17217,30.6014,0,1,0,17137,0 +1,3.5390,9.8163,0.0505,0.0040,1,0,0.0278,10368,9.8883,0,0,0,10288,0 +2,3.2672,14.8963,0.0437,0.0050,1,0,0.0221,9190,14.9694,0,0,0,9110,0 +3,3.4996,13.5450,0.0135,0.0015,1,0,0.0097,12189,13.5727,0,0,0,12109,0 +4,3.5749,9.9193,0.0308,0.0025,1,0,0.0261,16295,9.9666,0,0,0,16215,0 +5,3.6421,9.7993,0.0368,0.0034,1,0,0.0680,6286,9.8541,0,0,0,6206,0 +6,3.7423,9.9409,0.0353,0.0029,1,0,0.0603,3560,9.9936,0,0,0,3480,0 +7,3.6493,9.9804,0.0350,0.0036,1,0,0.0616,2871,10.0339,0,0,0,2791,0 +8,3.7200,9.8701,0.0328,0.0033,1,0,0.0671,8536,9.9144,0,0,0,8456,0 +9,3.3549,9.9507,0.0332,0.0020,1,0,0.0607,1041,9.9940,0,0,0,961,0 +10,3.4550,9.7613,0.0293,0.0031,1,0,0.0545,828,9.8140,0,0,0,748,0 +11,3.6385,9.8239,0.0295,0.0031,1,0,0.0498,904,9.8760,0,0,0,824,0 +12,3.5735,9.8013,0.0307,0.0035,1,0,0.0623,6173,9.8492,0,0,0,6093,0 +13,3.6078,9.7867,0.0250,0.0030,1,0,0.0553,962,9.8346,0,0,0,882,0 +14,3.5514,9.8346,0.0270,0.0028,1,0,0.0505,1056,9.8781,0,0,0,976,0 +15,3.6100,9.8283,0.0284,0.0035,1,0,0.0525,1160,9.8803,0,0,0,1080,0 +16,3.5791,9.8046,0.0322,0.0030,1,0,0.0630,8356,9.8539,0,0,0,8276,0 +17,3.5315,9.8475,0.0262,0.0027,1,0,0.0551,1936,9.8961,0,0,0,1856,0 +18,3.5431,9.7664,0.0287,0.0027,1,0,0.0527,1358,9.8120,0,0,0,1278,0 +19,3.6129,9.8433,0.0240,0.0030,1,0,0.0487,964,9.8892,0,0,0,884,0 +20,3.6118,9.7789,0.0274,0.0028,1,0,0.0622,8170,9.8283,0,0,0,8090,0 +21,3.6444,9.8931,0.0253,0.0026,1,0,0.0484,963,9.9395,0,0,0,883,0 +22,3.5708,9.8373,0.0250,0.0024,1,0,0.0527,1224,9.8844,0,0,0,1144,0 +23,3.6941,9.8347,0.0240,0.0025,1,0,0.0481,979,9.8810,0,0,0,899,0 +24,3.4944,9.7622,0.0368,0.0023,1,0,0.0688,8213,9.8173,0,0,0,8133,0 +25,3.5252,9.7749,0.0339,0.0023,1,0,0.0550,1013,9.8274,0,0,0,933,0 +26,3.7810,9.7493,0.0369,0.0022,1,0,0.0643,852,9.7974,0,0,0,772,0 +27,3.2975,9.8362,0.0321,0.0027,1,0,0.0513,857,9.8808,0,0,0,777,0 +28,3.2639,9.7567,0.0285,0.0017,1,0,0.0610,6535,9.8018,0,0,0,6455,0 +29,3.2337,9.6826,0.0278,0.0025,1,0,0.0550,1045,9.7329,0,0,0,965,0 +30,3.6577,9.8839,0.0270,0.0026,1,0,0.0462,1002,9.9337,0,0,0,922,0 +31,3.6001,9.9200,0.0291,0.0020,1,0,0.0524,990,9.9652,0,0,0,910,0 +32,3.5436,9.7918,0.0270,0.0025,1,0,0.0580,6956,9.8406,0,0,0,6876,0 +33,3.5346,9.8495,0.0274,0.0030,1,0,0.0574,1494,9.8938,0,0,0,1414,0 +34,3.6169,9.7880,0.0320,0.0043,1,0,0.0553,1120,9.8459,0,0,0,1040,0 +35,3.6607,9.7418,0.0283,0.0037,1,0,0.0568,1060,9.7895,0,0,0,980,0 +36,3.7355,9.7367,0.0246,0.0025,1,0,0.0645,7642,9.7778,0,0,0,7562,0 +37,3.5660,9.6547,0.0252,0.0026,1,0,0.0555,2144,9.7020,0,0,0,2064,0 +38,3.5740,9.7770,0.0228,0.0032,1,0,0.0548,1106,9.8170,0,0,0,1026,0 +39,3.6203,9.7127,0.0249,0.0032,1,0,0.0504,1081,9.7539,0,0,0,1001,0 +40,3.5578,9.7558,0.0248,0.0025,1,0,0.0563,7649,9.8025,0,0,0,7569,0 +41,3.6131,9.7545,0.0243,0.0024,1,0,0.0397,1049,9.7999,0,0,0,969,0 +42,3.5661,9.7485,0.0263,0.0031,1,0,0.0498,2134,9.7976,0,0,0,2054,0 +43,3.6012,9.7875,0.0249,0.0025,1,0,0.0502,1039,9.8333,0,0,0,959,0 +44,3.6337,9.8116,0.0255,0.0026,1,0,0.0590,6266,9.8586,0,0,0,6186,0 +45,3.5648,9.8041,0.0245,0.0027,1,0,0.0487,999,9.8503,0,0,0,919,0 +46,3.5967,9.7935,0.0238,0.0018,1,0,0.0411,1178,9.8374,0,0,0,1098,0 +47,3.4981,9.6754,0.0241,0.0030,1,0,0.0407,1137,9.7212,0,0,0,1057,0 +48,3.5656,9.7133,0.0271,0.0023,1,0,0.0614,8293,9.7558,0,0,0,8213,0 +49,3.6096,9.7710,0.0268,0.0031,1,0,0.0531,2639,9.8140,0,0,0,2559,0 +50,3.6143,9.7120,0.0250,0.0024,1,0,0.0479,2254,9.7586,0,0,0,2174,0 +51,3.5888,9.7263,0.0224,0.0021,1,0,0.0410,1229,9.7694,0,0,0,1149,0 +52,3.5289,9.7235,0.0265,0.0025,1,0,0.0548,8484,9.7715,0,0,0,8404,0 +53,3.5609,9.8318,0.0255,0.0024,1,0,0.0481,1737,9.8790,0,0,0,1657,0 +54,3.6404,9.8076,0.0240,0.0022,1,0,0.0476,1794,9.8528,0,0,0,1714,0 +55,5.1916,9.7467,0.0239,0.0038,1,0,0.0585,2096,9.7927,0,0,0,2016,0 +56,3.5718,9.7437,0.0232,0.0019,1,0,0.0529,8436,9.7869,0,0,0,8356,0 +57,3.5244,10.0139,0.0498,0.0065,1,0,0.0989,2005,10.0985,0,0,0,1925,0 +58,4.4222,9.6370,0.0252,0.0023,1,0,0.0489,1810,9.6837,0,0,0,1730,0 +59,3.4427,9.5350,0.0226,0.0023,1,0,0.0421,2038,9.5798,0,0,0,1958,0 +60,3.5060,8.7256,0.1043,0.0063,1,0,0.1635,57676,8.8644,0,1,0,57596,0 +61,5.1786,9.6526,0.0246,0.0034,1,0,0.0547,3690,9.7002,0,0,0,3610,0 +62,4.5633,9.6365,0.0208,0.0022,1,0,0.0465,3104,9.6778,0,0,0,3024,0 +63,3.5814,9.6096,0.0220,0.0020,1,0,0.0419,2450,9.6521,0,0,0,2370,0 +64,4.5965,9.5101,0.0177,0.0020,1,0,0.0389,7577,9.5473,0,0,0,7497,0 +65,3.4525,9.6192,0.0195,0.0017,1,0,0.0434,2031,9.6586,0,0,0,1951,0 +66,5.1327,9.5877,0.0177,0.0020,1,0,0.0209,2159,9.6207,0,0,0,2079,0 +67,3.5927,9.6917,0.0233,0.0019,1,0,0.0502,3230,9.7350,0,0,0,3150,0 +68,3.5786,9.8738,0.0485,0.0059,1,0,0.1036,8058,9.9569,0,0,0,7978,0 +69,4.7602,9.5619,0.0231,0.0025,1,0,0.0465,2224,9.6062,0,0,0,2144,0 +70,4.3673,9.5506,0.0198,0.0022,1,0,0.0371,944,9.5911,0,0,0,864,0 +71,3.5074,9.6619,0.0446,0.0056,1,0,0.0813,876,9.7391,0,0,0,796,0 +72,5.6203,9.5511,0.0202,0.0022,1,0,0.0487,7608,9.5914,0,0,0,7528,0 +73,4.4696,9.6373,0.0392,0.0057,1,0,0.0705,903,9.7216,0,0,0,823,0 +74,4.4014,9.5959,0.0217,0.0022,1,0,0.0375,916,9.6388,0,0,0,836,0 +75,5.1024,9.5108,0.0092,0.0018,1,0,0.0189,1121,9.5397,0,0,0,1041,0 +76,3.4408,9.7462,0.0457,0.0056,1,0,0.0978,6520,9.8252,0,0,0,6440,0 +77,5.0271,9.5304,0.0203,0.0029,1,0,0.0470,917,9.5717,0,0,0,837,0 +78,4.4367,9.5461,0.0168,0.0018,1,0,0.0326,1275,9.5824,0,0,0,1195,0 +79,3.4328,9.7341,0.0430,0.0056,1,0,0.0827,1197,9.8113,0,0,0,1117,0 +80,4.9801,9.5371,0.0221,0.0025,1,0,0.0441,8480,9.5804,0,0,0,8400,0 +81,4.4569,9.5622,0.0139,0.0015,1,0,0.0282,2331,9.5950,0,0,0,2251,0 +82,3.4455,9.7424,0.0452,0.0058,1,0,0.0842,1329,9.8210,0,0,0,1249,0 +83,4.5712,9.5892,0.0206,0.0020,1,0,0.0386,1229,9.6308,0,0,0,1149,0 +84,5.2081,9.4840,0.0189,0.0024,1,0,0.0382,8359,9.5237,0,0,0,8279,0 +85,3.4455,9.8382,0.0502,0.0066,1,0,0.0898,1287,9.9242,0,0,0,1207,0 +86,5.1200,9.5415,0.0301,0.0039,1,0,0.0696,1268,9.5896,0,0,0,1188,0 +87,4.5371,9.4875,0.0097,0.0015,1,0,0.0211,1349,9.5167,0,0,0,1269,0 +88,3.4308,9.7548,0.0478,0.0054,1,0,0.0995,8352,9.8370,0,0,0,8272,0 +89,4.9889,9.5301,0.0215,0.0027,1,0,0.0320,1178,9.5729,0,0,0,1098,0 +90,4.4138,9.4814,0.0129,0.0019,1,0,0.0252,969,9.5130,0,0,0,889,0 +91,3.4410,9.7906,0.0452,0.0056,1,0,0.0813,1057,9.8700,0,0,0,977,0 +92,4.4468,9.5834,0.0221,0.0026,1,0,0.0461,6948,9.6270,0,0,0,6868,0 +93,5.1154,9.4987,0.0094,0.0015,1,0,0.0180,1189,9.5262,0,0,0,1109,0 +94,3.4912,9.8425,0.0478,0.0070,1,0,0.1089,1706,9.9154,0,0,0,1626,0 +95,5.2722,9.7713,0.0360,0.0052,1,0,0.0724,1626,9.8371,0,0,0,1546,0 +96,3.0877,10.0538,0.0572,0.0063,1,0,0.1367,22752,10.1355,0,0,0,22672,0 +97,5.5139,9.5275,0.0252,0.0026,1,0,0.0578,3102,9.5689,0,0,0,3022,0 +98,3.4799,9.8396,0.0460,0.0063,1,0,0.1047,2140,9.9200,0,0,0,2060,0 +99,5.3112,9.6280,0.0288,0.0032,1,0,0.0581,1797,9.6732,0,0,0,1717,0 +100,4.4599,9.7040,0.0386,0.0055,1,0,0.0874,8477,9.7749,0,0,0,8397,0 +101,4.4900,9.5538,0.0198,0.0025,1,0,0.0419,2468,9.5947,0,0,0,2388,0 +102,5.1777,9.4709,0.0107,0.0018,1,0,0.0230,1732,9.5009,0,0,0,1652,0 +103,3.4936,9.8295,0.0460,0.0054,1,0,0.0893,1876,9.9114,0,0,0,1796,0 +104,5.2569,9.5741,0.0301,0.0038,1,0,0.0707,8146,9.6220,0,0,0,8066,0 +105,4.4089,9.5474,0.0178,0.0020,1,0,0.0443,1473,9.5857,0,0,0,1393,0 +106,3.4370,9.7578,0.0464,0.0055,1,0,0.0899,1458,9.8390,0,0,0,1378,0 +107,4.8792,9.5702,0.0214,0.0028,1,0,0.0419,1972,9.6131,0,0,0,1892,0 +108,5.2833,9.5018,0.0112,0.0018,1,0,0.0355,7060,9.5271,0,0,0,6980,0 +109,3.4625,9.7298,0.0450,0.0059,1,0,0.0912,1974,9.8098,0,0,0,1894,0 +110,5.1201,9.4875,0.0200,0.0025,1,0,0.0425,2786,9.5280,0,0,0,2706,0 +111,4.4282,9.5721,0.0164,0.0018,1,0,0.0399,2015,9.6085,0,0,0,1935,0 +112,3.4460,9.5902,0.0206,0.0021,1,0,0.0460,9201,9.6313,0,0,0,9121,0 +113,4.7524,9.5077,0.0124,0.0020,1,0,0.0287,3670,9.5407,0,0,0,3590,0 +114,4.5937,9.8033,0.0406,0.0046,1,0,0.0808,2753,9.8605,0,0,0,2673,0 +115,3.6750,9.7438,0.0316,0.0042,1,0,0.0764,2628,9.7885,0,0,0,2548,0 +116,3.6155,9.7413,0.0305,0.0043,1,0,0.0742,8833,9.7920,0,0,0,8753,0 +117,3.7077,9.7653,0.0320,0.0038,1,0,0.0628,2668,9.8160,0,0,0,2588,0 +118,3.5837,9.6847,0.0283,0.0034,1,0,0.0606,2613,9.7324,0,0,0,2533,0 +119,3.4321,9.6554,0.0273,0.0038,1,0,0.0549,2829,9.7003,0,0,0,2749,0 +120,3.2809,8.5397,0.0572,0.0043,1,0,0.0738,38278,8.6150,0,1,0,38198,0 +121,3.2100,9.6995,0.0256,0.0032,1,0,0.0519,3159,9.7350,0,0,0,3079,0 +122,3.2461,9.6549,0.0225,0.0030,1,0,0.0535,1558,9.6860,0,0,0,1478,0 +123,3.1486,9.6552,0.0255,0.0030,1,0,0.0507,1993,9.6903,0,0,0,1913,0 +124,3.1730,9.6814,0.0265,0.0029,1,0,0.0590,6808,9.7169,0,0,0,6728,0 +125,3.2015,9.6542,0.0278,0.0030,1,0,0.0435,1293,9.6913,0,0,0,1213,0 +126,3.2406,9.6552,0.0245,0.0022,1,0,0.0589,2166,9.6881,0,0,0,2086,0 +127,3.3519,9.8067,0.0327,0.0020,1,0,0.0712,1433,9.8489,0,0,0,1353,0 +128,3.3625,9.7841,0.0273,0.0025,1,0,0.0607,8466,9.8215,0,0,0,8386,0 +129,3.1173,9.6187,0.0268,0.0023,1,0,0.0471,2232,9.6707,0,0,0,2152,0 +130,3.4480,9.6423,0.0190,0.0020,1,0,0.0474,1366,9.6765,0,0,0,1286,0 +131,3.4790,9.6102,0.0203,0.0020,1,0,0.0404,1423,9.6515,0,0,0,1343,0 +132,3.4638,9.5540,0.0198,0.0019,1,0,0.0435,7738,9.5941,0,0,0,7658,0 +133,3.4416,9.6363,0.0198,0.0022,1,0,0.0385,2273,9.6766,0,0,0,2193,0 +134,3.4663,9.6303,0.0213,0.0019,1,0,0.0344,946,9.6722,0,0,0,866,0 +135,3.4959,9.6169,0.0205,0.0018,1,0,0.0331,919,9.6572,0,0,0,839,0 +136,3.4639,9.7250,0.0251,0.0027,1,0,0.0572,7894,9.7718,0,0,0,7814,0 +137,3.4744,9.6382,0.0223,0.0023,1,0,0.0158,907,9.6814,0,0,0,827,0 +138,3.4969,9.6369,0.0188,0.0022,1,0,0.0429,1946,9.6758,0,0,0,1866,0 +139,3.4244,9.6282,0.0182,0.0024,1,0,0.0345,1080,9.6668,0,0,0,1000,0 +140,3.4339,9.6645,0.0196,0.0020,1,0,0.0425,6577,9.7038,0,0,0,6497,0 +141,3.4709,9.6057,0.0191,0.0020,1,0,0.0145,881,9.6446,0,0,0,801,0 +142,3.4059,9.6015,0.0189,0.0024,1,0,0.0384,1705,9.6408,0,0,0,1625,0 +143,3.5028,9.5797,0.0195,0.0027,1,0,0.0373,1112,9.6204,0,0,0,1032,0 +144,3.5192,9.6323,0.0214,0.0027,1,0,0.0477,8508,9.6750,0,0,0,8428,0 +145,3.4587,9.6917,0.0229,0.0030,1,0,0.0486,3179,9.7366,0,0,0,3099,0 +146,3.4714,9.6285,0.0203,0.0021,1,0,0.0398,2193,9.6689,0,0,0,2113,0 +147,3.4526,9.5625,0.0194,0.0021,1,0,0.0339,1074,9.6020,0,0,0,994,0 +148,3.4588,9.5305,0.0202,0.0023,1,0,0.0508,8266,9.5716,0,0,0,8186,0 +149,3.4914,9.6428,0.0192,0.0022,1,0,0.0375,1153,9.6824,0,0,0,1073,0 +150,3.4425,9.5990,0.0201,0.0023,1,0,0.0385,1883,9.6403,0,0,0,1803,0 +151,4.7684,9.5180,0.0120,0.0016,1,0,0.0251,1277,9.5483,0,0,0,1197,0 +152,3.4665,9.7923,0.0473,0.0057,1,0,0.1014,8345,9.8743,0,0,0,8265,0 +153,4.8659,9.5218,0.0191,0.0025,1,0,0.0369,1908,9.5614,0,0,0,1828,0 +154,4.4280,9.6785,0.0243,0.0032,1,0,0.0529,1053,9.7219,0,0,0,973,0 +155,3.5421,9.6779,0.0235,0.0038,1,0,0.0465,1286,9.7198,0,0,0,1206,0 +156,4.6318,9.7233,0.0190,0.0021,1,0,0.0530,7222,9.7634,0,0,0,7142,0 +157,4.4602,9.6646,0.0213,0.0026,1,0,0.0418,1372,9.7071,0,0,0,1292,0 +158,3.4981,9.8501,0.0478,0.0065,1,0,0.1027,1931,9.9334,0,0,0,1851,0 +159,4.3701,9.6356,0.0276,0.0025,1,0,0.0575,2620,9.6860,0,0,0,2540,0 +160,5.0086,9.4753,0.0138,0.0021,1,0,0.0351,7446,9.5084,0,0,0,7366,0 +161,3.5203,9.7559,0.0450,0.0056,1,0,0.0885,2764,9.8354,0,0,0,2684,0 +162,4.9710,9.5796,0.0290,0.0040,1,0,0.0596,2301,9.6265,0,0,0,2221,0 +163,4.4131,9.5745,0.0194,0.0021,1,0,0.0384,2280,9.6145,0,0,0,2200,0 +164,3.5090,9.6233,0.0206,0.0020,1,0,0.0461,8583,9.6647,0,0,0,8503,0 +165,4.8417,9.5810,0.0154,0.0020,1,0,0.0380,2729,9.6164,0,0,0,2649,0 +166,4.3954,9.6057,0.0181,0.0018,1,0,0.0382,2586,9.6430,0,0,0,2506,0 +167,3.4568,9.7738,0.0465,0.0054,1,0,0.0917,2328,9.8529,0,0,0,2248,0 +168,5.4290,9.5043,0.0227,0.0024,1,0,0.0500,8031,9.5480,0,0,0,7951,0 +169,4.4527,9.6342,0.0390,0.0054,1,0,0.0783,2025,9.7071,0,0,0,1945,0 +170,4.6387,9.5751,0.0193,0.0023,1,0,0.0311,1592,9.6153,0,0,0,1512,0 +171,5.1782,9.4725,0.0092,0.0015,1,0,0.0202,1593,9.4998,0,0,0,1513,0 +172,3.5233,9.7258,0.0469,0.0059,1,0,0.0942,7132,9.8060,0,0,0,7052,0 +173,5.2745,9.4477,0.0193,0.0027,1,0,0.0500,1780,9.4829,0,0,0,1700,0 +174,4.4819,9.4793,0.0096,0.0015,1,0,0.0262,2999,9.5077,0,0,0,2919,0 +175,3.4366,9.6188,0.0206,0.0020,1,0,0.0363,2632,9.6596,0,0,0,2552,0 +176,4.4636,9.5220,0.0153,0.0018,1,0,0.0333,9908,9.5568,0,0,0,9828,0 +177,3.4926,9.6031,0.0187,0.0047,1,0,0.0420,4771,9.6447,0,0,0,4691,0 +178,3.4724,9.7163,0.0459,0.0057,1,0,0.0934,2791,9.7960,0,0,0,2711,0 +179,4.4815,9.5737,0.0208,0.0025,1,0,0.0406,2771,9.6153,0,0,0,2691,0 +180,5.1246,8.3892,0.0375,0.0015,1,0,0.0580,56756,8.4453,0,1,0,56676,0 +181,3.5246,9.7473,0.0442,0.0055,1,0,0.0921,3421,9.8251,0,0,0,3341,0 +182,5.1235,9.4849,0.0203,0.0025,1,0,0.0396,2558,9.5259,0,0,0,2478,0 +183,4.4005,9.5174,0.0156,0.0019,1,0,0.0323,1740,9.5521,0,0,0,1660,0 +184,3.4546,9.5349,0.0206,0.0023,1,0,0.0431,8267,9.5760,0,0,0,8187,0 +185,4.7943,9.5190,0.0128,0.0017,1,0,0.0300,1562,9.5506,0,0,0,1482,0 +186,4.4763,9.6209,0.0209,0.0019,1,0,0.0397,1573,9.6613,0,0,0,1493,0 +187,3.5457,9.8449,0.0469,0.0058,1,0,0.0935,1756,9.9254,0,0,0,1676,0 +188,4.4522,9.6439,0.0253,0.0025,1,0,0.0484,7028,9.6906,0,0,0,6948,0 +189,4.9979,9.4608,0.0095,0.0015,1,0,0.0078,947,9.4885,0,0,0,867,0 +190,3.5270,9.7193,0.0455,0.0063,1,0,0.0844,1815,9.7998,0,0,0,1735,0 +191,4.9120,9.5160,0.0195,0.0023,1,0,0.0342,1329,9.5560,0,0,0,1249,0 +192,4.6766,9.5851,0.0268,0.0021,1,0,0.0592,21729,9.6271,0,0,0,21649,0 +193,3.4913,9.7187,0.0464,0.0058,1,0,0.0982,3052,9.8000,0,0,0,2972,0 +194,4.5947,9.5253,0.0219,0.0027,1,0,0.0442,1897,9.5683,0,0,0,1817,0 +195,5.1153,9.4438,0.0091,0.0016,1,0,0.0261,1319,9.4706,0,0,0,1239,0 +196,3.4945,9.7268,0.0467,0.0057,1,0,0.0997,8736,9.8075,0,0,0,8656,0 +197,5.1678,9.5498,0.0264,0.0029,1,0,0.0576,2347,9.5924,0,0,0,2267,0 +198,4.6635,9.5612,0.0196,0.0022,1,0,0.0392,1744,9.6007,0,0,0,1664,0 +199,3.4792,9.5737,0.0179,0.0022,1,0,0.0407,1377,9.6065,0,0,0,1297,0 +200,3.5090,9.7236,0.0462,0.0057,1,0,0.1020,7897,9.8038,0,0,0,7817,0 +201,4.4152,9.5548,0.0218,0.0024,1,0,0.0376,925,9.5970,0,0,0,845,0 +202,5.0239,9.4865,0.0110,0.0015,1,0,0.0293,1371,9.5111,0,0,0,1291,0 +203,3.4632,9.7105,0.0444,0.0056,1,0,0.0831,1003,9.7881,0,0,0,923,0 +204,5.1422,9.5214,0.0223,0.0026,1,0,0.0513,6638,9.5653,0,0,0,6558,0 +205,3.5276,9.8455,0.0499,0.0060,1,0,0.0906,985,9.9411,0,0,0,905,0 +206,5.4259,9.5137,0.0324,0.0037,1,0,0.0612,1789,9.5702,0,0,0,1709,0 +207,4.5052,9.5518,0.0164,0.0019,1,0,0.0345,1628,9.5881,0,0,0,1548,0 +208,3.5221,9.7194,0.0462,0.0057,1,0,0.1032,8894,9.7995,0,0,0,8814,0 +209,4.9089,9.5227,0.0202,0.0023,1,0,0.0428,3186,9.5639,0,0,0,3106,0 +210,4.4392,9.5143,0.0118,0.0022,1,0,0.0265,1648,9.5449,0,0,0,1568,0 +211,3.4567,9.5798,0.0186,0.0020,1,0,0.1485,1828,9.6188,0,0,0,1748,0 +212,4.5111,9.5307,0.0180,0.0023,1,0,0.0458,8446,9.5687,0,0,0,8366,0 +213,5.0803,9.4856,0.0099,0.0021,1,0,0.0318,1933,9.5143,0,0,0,1853,0 +214,3.4783,9.7965,0.0476,0.0072,1,0,0.1109,1775,9.8694,0,0,0,1695,0 +215,5.2419,9.7110,0.0306,0.0043,1,0,0.0580,2088,9.7627,0,0,0,2008,0 +216,3.2025,9.8966,0.0445,0.0055,1,0,0.1127,8887,9.9652,0,0,0,8807,0 +217,5.6100,9.6290,0.0209,0.0027,1,0,0.0538,1566,9.6723,0,0,0,1486,0 +218,3.5320,9.6145,0.0213,0.0027,1,0,0.0536,1488,9.6588,0,0,0,1408,0 +219,4.6018,9.5538,0.0189,0.0018,1,0,0.0452,1642,9.5930,0,0,0,1562,0 +220,5.1722,9.4442,0.0103,0.0016,1,0,0.0265,7311,9.4730,0,0,0,7231,0 +221,3.5222,9.7355,0.0464,0.0056,1,0,0.0940,2005,9.8157,0,0,0,1925,0 +222,5.2578,9.4914,0.0215,0.0026,1,0,0.0406,2714,9.5344,0,0,0,2634,0 +223,4.4017,9.5767,0.0163,0.0018,1,0,0.0330,2616,9.6124,0,0,0,2536,0 +224,3.4745,9.6908,0.0462,0.0055,1,0,0.0988,8221,9.7709,0,0,0,8141,0 +225,4.8893,9.5254,0.0200,0.0023,1,0,0.0396,3300,9.5663,0,0,0,3220,0 +226,4.3900,9.5442,0.0178,0.0019,1,0,0.0392,2734,9.5819,0,0,0,2654,0 +227,3.5113,9.7481,0.0450,0.0054,1,0,0.0922,2414,9.8264,0,0,0,2334,0 +228,4.6065,9.5333,0.0233,0.0024,1,0,0.0506,8862,9.5793,0,0,0,8782,0 +229,5.1632,9.4893,0.0121,0.0014,1,0,0.0269,2773,9.5203,0,0,0,2693,0 +230,3.5638,9.7466,0.0450,0.0059,1,0,0.0894,2445,9.8253,0,0,0,2365,0 +231,5.0738,9.4621,0.0190,0.0022,1,0,0.0379,2634,9.5024,0,0,0,2554,0 +232,4.4466,9.5155,0.0170,0.0021,1,0,0.0333,8380,9.5521,0,0,0,8300,0 +233,3.4335,9.4992,0.0195,0.0022,1,0,0.0362,1985,9.5391,0,0,0,1905,0 +234,3.5254,9.7544,0.0454,0.0064,1,0,0.1001,1943,9.8245,0,0,0,1863,0 +235,4.5150,9.7607,0.0288,0.0044,1,0,0.0705,2161,9.8082,0,0,0,2081,0 +236,4.9657,9.4841,0.0120,0.0019,1,0,0.0339,7719,9.5152,0,0,0,7639,0 +237,3.4057,9.4674,0.0183,0.0021,1,0,0.0457,2124,9.5070,0,0,0,2044,0 +238,4.7105,9.5685,0.0162,0.0023,1,0,0.0375,3741,9.6047,0,0,0,3661,0 +239,4.4480,9.5278,0.0169,0.0018,1,0,0.0372,2982,9.5648,0,0,0,2902,0 +240,3.4423,8.4335,0.0538,0.0022,1,0,0.0595,36422,8.5085,0,1,0,36342,0 +241,4.8762,9.7902,0.0331,0.0039,1,0,0.0623,5681,9.8421,0,0,0,5601,0 +242,3.6108,9.6715,0.0260,0.0022,1,0,0.0515,4067,9.7190,0,0,0,3987,0 +243,3.5700,9.7058,0.0248,0.0026,1,0,0.0569,3011,9.7520,0,0,0,2931,0 +244,4.5200,9.7793,0.0251,0.0021,1,0,0.0557,9487,9.8250,0,0,0,9407,0 +245,3.5499,9.8554,0.0513,0.0060,1,0,0.0917,1089,9.9404,0,0,0,1009,0 +246,4.7037,9.6950,0.0257,0.0022,1,0,0.0477,1164,9.7419,0,0,0,1084,0 +247,4.5178,9.6200,0.0230,0.0020,1,0,0.0464,970,9.6644,0,0,0,890,0 +248,3.6064,9.7112,0.0262,0.0024,1,0,0.0520,8288,9.7588,0,0,0,8208,0 +249,3.5848,9.6792,0.0238,0.0027,1,0,0.0410,912,9.7245,0,0,0,832,0 +250,4.8120,9.7872,0.0233,0.0026,1,0,0.0475,830,9.8323,0,0,0,750,0 +251,3.5936,9.7534,0.0227,0.0025,1,0,0.0477,1337,9.7976,0,0,0,1257,0 +252,3.6503,9.7040,0.0230,0.0021,1,0,0.0535,6595,9.7479,0,0,0,6515,0 +253,5.3901,9.6134,0.0171,0.0021,1,0,0.0307,867,9.6504,0,0,0,787,0 +254,3.5499,9.9339,0.0504,0.0062,1,0,0.0910,1089,10.0184,0,0,0,1009,0 +255,5.8437,9.5347,0.0238,0.0022,1,0,0.0476,964,9.5791,0,0,0,884,0 +256,3.6217,9.8483,0.0577,0.0056,1,0,0.1263,19961,9.9403,0,0,0,19881,0 +257,4.6490,9.7287,0.0257,0.0024,1,0,0.0489,1908,9.7758,0,0,0,1828,0 +258,5.2475,9.5314,0.0142,0.0019,1,0,0.0256,926,9.5650,0,0,0,846,0 +259,3.5739,9.7460,0.0247,0.0027,1,0,0.0483,889,9.7930,0,0,0,809,0 +260,5.1973,9.8243,0.0263,0.0030,1,0,0.0544,7528,9.8730,0,0,0,7448,0 +261,3.6480,9.8825,0.0479,0.0060,1,0,0.0961,1970,9.9640,0,0,0,1890,0 +262,5.4043,9.6712,0.0227,0.0025,1,0,0.0473,1025,9.7150,0,0,0,945,0 +263,4.5333,9.6040,0.0221,0.0021,1,0,0.0384,934,9.6468,0,0,0,854,0 +264,3.5323,9.8464,0.0267,0.0032,1,0,0.0564,7589,9.8952,0,0,0,7509,0 +265,3.5876,9.7971,0.0248,0.0034,1,0,0.0512,934,9.8449,0,0,0,854,0 +266,3.5930,9.7745,0.0248,0.0027,1,0,0.0453,894,9.8207,0,0,0,814,0 +267,3.5447,9.7267,0.0204,0.0019,1,0,0.0385,1146,9.7672,0,0,0,1066,0 +268,4.5583,9.7620,0.0265,0.0021,1,0,0.0480,6572,9.8094,0,0,0,6492,0 +269,3.5723,9.8242,0.0504,0.0060,1,0,0.0914,877,9.9054,0,0,0,797,0 +270,4.5623,9.7195,0.0246,0.0028,1,0,0.0420,1059,9.7664,0,0,0,979,0 +271,5.3592,9.5585,0.0102,0.0015,1,0,0.0185,1225,9.5873,0,0,0,1145,0 +272,3.5115,9.7585,0.0250,0.0027,1,0,0.0505,6758,9.8047,0,0,0,6678,0 +273,5.2720,9.6212,0.0265,0.0024,1,0,0.0451,2907,9.6690,0,0,0,2827,0 +274,3.6800,9.8502,0.0478,0.0060,1,0,0.0983,1058,9.9209,0,0,0,978,0 +275,5.4831,9.7893,0.0291,0.0028,1,0,0.0524,1048,9.8373,0,0,0,968,0 +276,3.3866,9.8120,0.0240,0.0024,1,0,0.1961,8339,9.8589,0,0,0,8259,0 +277,5.8167,9.6479,0.0201,0.0037,1,0,0.0546,1014,9.6852,0,0,0,934,0 +278,3.5675,9.8127,0.0249,0.0020,1,0,0.0486,1097,9.8533,0,0,0,1017,0 +279,5.7567,9.7188,0.0151,0.0015,1,0,0.0275,1168,9.7477,0,0,0,1088,0 +280,3.7151,9.7659,0.0278,0.0022,1,0,0.0608,8257,9.8112,0,0,0,8177,0 +281,3.6208,9.7483,0.0245,0.0023,1,0,0.0502,1213,9.7948,0,0,0,1133,0 +282,3.5479,9.6375,0.0225,0.0019,1,0,0.0398,976,9.6751,0,0,0,896,0 +283,3.5923,9.7155,0.0236,0.0021,1,0,0.0432,1023,9.7600,0,0,0,943,0 +284,3.5987,9.7339,0.0267,0.0022,1,0,0.0428,6883,9.7815,0,0,0,6803,0 +285,4.9264,9.6585,0.0249,0.0022,1,0,0.0283,1048,9.6976,0,0,0,968,0 +286,3.9827,9.7085,0.0263,0.0019,1,0,0.0504,2010,9.7557,0,0,0,1930,0 +287,3.5035,9.6823,0.0251,0.0020,1,0,0.0291,1489,9.7280,0,0,0,1409,0 +288,3.5876,9.7667,0.0283,0.0023,1,0,0.0358,7057,9.8162,0,0,0,6977,0 +289,3.6241,9.7559,0.0235,0.0022,1,0,0.0253,1352,9.7997,0,0,0,1272,0 +290,4.8120,9.7771,0.0226,0.0024,1,0,0.0163,1373,9.8204,0,0,0,1293,0 +291,3.7452,9.8416,0.0258,0.0019,1,0,0.0520,1120,9.8882,0,0,0,1040,0 +292,3.5631,9.7096,0.0269,0.0022,1,0,0.0586,8678,9.7575,0,0,0,8598,0 +293,3.5791,9.6297,0.0246,0.0025,1,0,0.0478,1762,9.6758,0,0,0,1682,0 +294,4.8826,9.7052,0.0211,0.0022,1,0,0.0247,1184,9.7470,0,0,0,1104,0 +295,3.5795,9.7257,0.0238,0.0022,1,0,0.0270,1405,9.7707,0,0,0,1325,0 +296,3.5754,9.6784,0.0291,0.0021,1,0,0.0495,7761,9.7260,0,0,0,7681,0 +297,3.8251,9.7447,0.0248,0.0022,1,0,0.0538,1342,9.7778,0,0,0,1262,0 +298,3.5235,9.6702,0.0238,0.0027,1,0,0.0527,1112,9.7033,0,0,0,1032,0 +299,3.5655,9.6677,0.0240,0.0022,1,0,0.0327,1121,9.7004,0,0,0,1041,0 +300,3.5025,8.5378,0.0415,0.0024,1,0,0.0851,48619,8.6007,0,1,0,48539,0 +301,3.5026,9.6768,0.0281,0.0027,1,0,0.1515,3512,9.7273,0,0,0,3432,0 +302,3.6519,9.6365,0.0225,0.0022,1,0,0.0506,3682,9.6795,0,0,0,3602,0 +303,3.5588,9.6765,0.0199,0.0018,1,0,0.0375,2310,9.7162,0,0,0,2230,0 +304,3.5605,9.6727,0.0231,0.0023,1,0,0.0590,12262,9.7165,0,0,0,12182,0 +305,3.4678,9.6287,0.0196,0.0021,1,0,0.0437,3301,9.6685,0,0,0,3221,0 +306,3.6208,9.6759,0.0206,0.0018,1,0,0.0467,1933,9.7167,0,0,0,1853,0 +307,3.4471,9.5328,0.0211,0.0019,1,0,0.0431,1612,9.5749,0,0,0,1532,0 +308,3.5721,9.6410,0.0305,0.0021,1,0,0.0569,8717,9.6880,0,0,0,8637,0 +309,3.6008,9.6190,0.0304,0.0027,1,0,0.0600,1546,9.6600,0,0,0,1466,0 +310,3.5430,9.6258,0.0238,0.0027,1,0,0.0408,1270,9.6714,0,0,0,1190,0 +311,3.5360,9.6770,0.0254,0.0028,1,0,0.0451,1309,9.7245,0,0,0,1229,0 +312,3.6388,9.7601,0.0282,0.0035,1,0,0.0501,8686,9.8111,0,0,0,8606,0 +313,3.7022,9.7313,0.0246,0.0025,1,0,0.0469,973,9.7780,0,0,0,893,0 +314,3.5575,9.8243,0.0263,0.0032,1,0,0.0429,908,9.8726,0,0,0,828,0 +315,3.6441,9.7335,0.0245,0.0027,1,0,0.0446,901,9.7801,0,0,0,821,0 +316,3.5770,9.9295,0.0288,0.0031,1,0,0.0496,6487,9.9808,0,0,0,6407,0 +317,3.5537,9.8307,0.0261,0.0025,1,0,0.0554,956,9.8792,0,0,0,876,0 +318,3.5947,9.8123,0.0252,0.0025,1,0,0.0462,1214,9.8589,0,0,0,1134,0 +319,3.5959,9.6693,0.0217,0.0020,1,0,0.0405,1062,9.7115,0,0,0,982,0 +320,3.6023,9.7977,0.0505,0.0060,1,0,0.1070,7229,9.8830,0,0,0,7149,0 +321,4.7542,9.6362,0.0213,0.0022,1,0,0.0508,1579,9.6788,0,0,0,1499,0 +322,5.2913,9.4760,0.0099,0.0019,1,0,0.0221,1025,9.5050,0,0,0,945,0 +323,3.5513,9.6122,0.0191,0.0018,1,0,0.0351,966,9.6511,0,0,0,886,0 +324,5.2258,9.4724,0.0165,0.0020,1,0,0.0390,7624,9.5087,0,0,0,7544,0 +325,3.5166,9.8924,0.0510,0.0070,1,0,0.0963,1992,9.9908,0,0,0,1912,0 +326,4.5596,9.5680,0.0263,0.0028,1,0,0.0512,834,9.6165,0,0,0,754,0 +327,5.1195,9.5147,0.0104,0.0016,1,0,0.0233,870,9.5440,0,0,0,790,0 +328,3.5089,9.7319,0.0462,0.0055,1,0,0.1011,7652,9.8116,0,0,0,7572,0 +329,5.1149,9.4717,0.0198,0.0022,1,0,0.0333,897,9.5123,0,0,0,817,0 +330,4.4360,9.4425,0.0094,0.0014,1,0,0.0186,1057,9.4702,0,0,0,977,0 +331,3.4265,9.7192,0.0450,0.0057,1,0,0.0900,1963,9.8092,0,0,0,1883,0 +332,4.6605,9.5275,0.0205,0.0022,1,0,0.0439,6794,9.5684,0,0,0,6714,0 +333,4.4580,9.5292,0.0122,0.0022,1,0,0.0251,892,9.5609,0,0,0,812,0 +334,3.5182,9.8147,0.0458,0.0073,1,0,0.0999,995,9.8872,0,0,0,915,0 +335,4.7170,9.7573,0.0275,0.0033,1,0,0.0653,1925,9.8038,0,0,0,1845,0 +336,5.3985,9.7015,0.0196,0.0042,1,0,0.0579,7739,9.7402,0,0,0,7659,0 +337,3.6007,9.6605,0.0208,0.0021,1,0,0.0480,2740,9.7024,0,0,0,2660,0 +338,5.0655,9.6837,0.0212,0.0032,1,0,0.0559,1737,9.7217,0,0,0,1657,0 +339,3.4751,9.6629,0.0451,0.0055,1,0,0.0890,1080,9.7406,0,0,0,1000,0 +340,5.1224,9.4852,0.0291,0.0038,1,0,0.0699,8358,9.5245,0,0,0,8278,0 +341,4.9227,9.5825,0.0220,0.0025,1,0,0.0386,1112,9.6258,0,0,0,1032,0 +342,3.4482,9.5280,0.0201,0.0022,1,0,0.0383,1128,9.5684,0,0,0,1048,0 +343,3.4657,9.7655,0.0470,0.0055,1,0,0.0838,1278,9.8456,0,0,0,1198,0 +344,4.2628,9.5786,0.0217,0.0023,1,0,0.0495,8378,9.6218,0,0,0,8298,0 +345,4.8656,9.4845,0.0117,0.0017,1,0,0.0107,1126,9.5148,0,0,0,1046,0 +346,3.5200,9.5694,0.0186,0.0025,1,0,0.0319,935,9.6088,0,0,0,855,0 +347,3.5133,9.7450,0.0452,0.0057,1,0,0.0836,1065,9.8241,0,0,0,985,0 +348,4.4457,9.5424,0.0220,0.0027,1,0,0.0431,7151,9.5858,0,0,0,7071,0 +349,5.1417,9.4765,0.0093,0.0036,1,0,0.0217,1857,9.5067,0,0,0,1777,0 +350,3.4749,9.7157,0.0454,0.0057,1,0,0.0918,2071,9.8073,0,0,0,1991,0 +351,5.0156,9.4722,0.0205,0.0024,1,0,0.0397,1879,9.5132,0,0,0,1799,0 +352,4.4040,9.5809,0.0208,0.0019,1,0,0.0454,22798,9.6218,0,0,0,22718,0 +353,3.4674,9.5477,0.0192,0.0021,1,0,0.0366,2975,9.5869,0,0,0,2895,0 +354,4.6242,9.4605,0.0135,0.0019,1,0,0.0284,2392,9.4929,0,0,0,2312,0 +355,5.1883,9.4473,0.0084,0.0015,1,0,0.0306,1760,9.4735,0,0,0,1680,0 +356,3.4938,9.5687,0.0238,0.0028,1,0,0.0456,8755,9.6141,0,0,0,8675,0 +357,3.4909,9.5415,0.0199,0.0023,1,0,0.0375,2508,9.5820,0,0,0,2428,0 +358,4.3856,9.4913,0.0168,0.0019,1,0,0.0335,2126,9.5271,0,0,0,2046,0 +359,5.2353,9.4291,0.0097,0.0015,1,0,0.0200,2633,9.4572,0,0,0,2553,0 +360,3.4898,8.4731,0.0338,0.0025,1,0,0.0714,46353,8.5222,0,1,0,46273,0 +361,5.1585,9.5100,0.0117,0.0018,1,0,0.0270,4322,9.5415,0,0,0,4242,0 +362,4.4691,9.5613,0.0389,0.0059,1,0,0.0793,4228,9.6465,0,0,0,4148,0 +363,4.3655,9.5820,0.0203,0.0022,1,0,0.0409,4656,9.6231,0,0,0,4576,0 +364,4.9812,9.4791,0.0118,0.0018,1,0,0.0277,8846,9.5093,0,0,0,8766,0 +365,3.4409,9.7218,0.0470,0.0059,1,0,0.0846,1021,9.8027,0,0,0,941,0 +366,5.0501,9.5817,0.0212,0.0022,1,0,0.0438,1643,9.6234,0,0,0,1563,0 +367,4.4849,9.6111,0.0266,0.0023,1,0,0.0543,1585,9.6548,0,0,0,1505,0 +368,3.6125,9.7047,0.0226,0.0018,1,0,0.0517,8729,9.7425,0,0,0,8649,0 +369,3.4323,9.5790,0.0210,0.0021,1,0,0.0408,2297,9.6206,0,0,0,2217,0 +370,3.4723,9.5715,0.0185,0.0023,1,0,0.0341,1068,9.6106,0,0,0,988,0 +371,4.7886,9.4746,0.0125,0.0018,1,0,0.0106,1028,9.5060,0,0,0,948,0 +372,4.4255,9.4190,0.0128,0.0021,1,0,0.0330,8299,9.4516,0,0,0,8219,0 +373,3.4355,9.7388,0.0450,0.0055,1,0,0.0833,1036,9.8178,0,0,0,956,0 +374,4.4837,9.5505,0.0213,0.0022,1,0,0.0388,849,9.5922,0,0,0,769,0 +375,4.9774,9.4874,0.0107,0.0015,1,0,0.0300,1193,9.5175,0,0,0,1113,0 +376,3.4522,9.7703,0.0473,0.0056,1,0,0.1024,8387,9.8514,0,0,0,8307,0 +377,4.9814,9.4594,0.0202,0.0020,1,0,0.0387,857,9.5004,0,0,0,777,0 +378,4.3529,9.5711,0.0177,0.0022,1,0,0.0355,831,9.6089,0,0,0,751,0 +379,3.4715,9.7061,0.0438,0.0055,1,0,0.0830,824,9.7836,0,0,0,744,0 +380,4.5592,9.5473,0.0209,0.0025,1,0,0.0448,6482,9.5893,0,0,0,6402,0 +381,5.2782,9.4318,0.0097,0.0014,1,0,0.0186,887,9.4600,0,0,0,807,0 +382,3.4670,9.7094,0.0457,0.0053,1,0,0.0798,1079,9.7881,0,0,0,999,0 +383,5.2070,9.4999,0.0228,0.0025,1,0,0.0211,979,9.5441,0,0,0,899,0 +384,4.4882,9.6037,0.0425,0.0058,1,0,0.1146,7730,9.6795,0,0,0,7650,0 +385,4.5454,9.6343,0.0230,0.0031,1,0,0.0532,1545,9.6740,0,0,0,1465,0 +386,5.1255,9.4778,0.0094,0.0015,1,0,0.0088,940,9.5055,0,0,0,860,0 +387,3.4708,9.7390,0.0452,0.0055,1,0,0.0819,886,9.8187,0,0,0,806,0 +388,5.0531,9.4845,0.0277,0.0030,1,0,0.0634,7514,9.5340,0,0,0,7434,0 +389,4.3839,9.5151,0.0147,0.0018,1,0,0.0352,2052,9.5491,0,0,0,1972,0 +390,3.4630,9.6497,0.0422,0.0055,1,0,0.0773,870,9.7257,0,0,0,790,0 +391,4.8780,9.5064,0.0202,0.0022,1,0,0.0322,1014,9.5470,0,0,0,934,0 +392,4.4465,9.5276,0.0145,0.0018,1,0,0.0410,7593,9.5622,0,0,0,7513,0 +393,3.4583,9.7382,0.0458,0.0053,1,0,0.0833,1045,9.8180,0,0,0,965,0 +394,4.5820,9.7269,0.0333,0.0040,1,0,0.0676,2148,9.7885,0,0,0,2068,0 +395,5.2429,9.6920,0.0265,0.0033,1,0,0.0146,856,9.7397,0,0,0,776,0 +396,3.5408,9.6185,0.0236,0.0023,1,0,0.0604,6145,9.6576,0,0,0,6065,0 +397,5.3821,9.6121,0.0211,0.0023,1,0,0.0360,1090,9.6482,0,0,0,1010,0 +398,3.4773,9.8934,0.0460,0.0065,1,0,0.0965,972,9.9752,0,0,0,892,0 +399,5.2263,9.5107,0.0259,0.0029,1,0,0.0520,1546,9.5591,0,0,0,1466,0 +400,4.4449,9.6395,0.0417,0.0056,1,0,0.0933,8128,9.7144,0,0,0,8048,0 +401,4.3672,9.5831,0.0210,0.0024,1,0,0.0397,2646,9.6250,0,0,0,2566,0 +402,4.9472,9.5123,0.0140,0.0021,1,0,0.0272,1901,9.5458,0,0,0,1821,0 +403,3.4612,9.7447,0.0451,0.0054,1,0,0.0835,1097,9.8236,0,0,0,1017,0 +404,4.9310,9.5159,0.0212,0.0022,1,0,0.0419,8451,9.5576,0,0,0,8371,0 +405,4.4325,9.4817,0.0103,0.0015,1,0,0.0215,1518,9.5104,0,0,0,1438,0 +406,3.4270,9.7055,0.0467,0.0048,1,0,0.0924,1713,9.7849,0,0,0,1633,0 +407,4.6122,9.5307,0.0206,0.0020,1,0,0.0410,1760,9.5719,0,0,0,1680,0 +408,5.2350,9.4511,0.0110,0.0018,1,0,0.0251,8371,9.4807,0,0,0,8291,0 +409,3.4628,9.7462,0.0441,0.0054,1,0,0.0899,1615,9.8232,0,0,0,1535,0 +410,5.0602,9.7250,0.0215,0.0027,1,0,0.0180,1208,9.7683,0,0,0,1128,0 +411,4.4425,9.5000,0.0134,0.0022,1,0,0.0317,1376,9.5330,0,0,0,1296,0 +412,3.4938,9.5870,0.0209,0.0024,1,0,0.0406,6701,9.6287,0,0,0,6621,0 +413,3.4290,9.7285,0.0453,0.0060,1,0,0.0917,1657,9.8072,0,0,0,1577,0 +414,4.5423,9.5774,0.0204,0.0023,1,0,0.0391,2007,9.6188,0,0,0,1927,0 +415,5.0399,9.4893,0.0105,0.0016,1,0,0.0219,1626,9.5181,0,0,0,1546,0 +416,3.3974,9.5233,0.0235,0.0025,1,0,0.0420,7765,9.5697,0,0,0,7685,0 +417,3.4425,9.6508,0.0442,0.0057,1,0,0.0907,2307,9.7143,0,0,0,2227,0 +418,4.6743,9.4778,0.0211,0.0024,1,0,0.0386,1800,9.5202,0,0,0,1720,0 +419,5.3471,9.4390,0.0096,0.0016,1,0,0.0334,1665,9.4635,0,0,0,1585,0 +420,3.4987,8.4507,0.0398,0.0022,1,0,0.0710,55099,8.5120,0,1,0,55019,0 +421,5.6039,9.4377,0.0174,0.0018,1,0,0.0330,6056,9.4747,0,0,0,5976,0 +422,3.4615,9.5856,0.0202,0.0020,1,0,0.0420,4325,9.6256,0,0,0,4245,0 +423,5.9205,9.4621,0.0112,0.0017,1,0,0.0258,2939,9.4923,0,0,0,2859,0 +424,3.4402,9.5646,0.0208,0.0020,1,0,0.0563,8824,9.6054,0,0,0,8744,0 +425,4.4760,9.5016,0.0164,0.0020,1,0,0.0150,1042,9.5378,0,0,0,962,0 +426,5.3024,9.5164,0.0098,0.0015,1,0,0.0342,1664,9.5445,0,0,0,1584,0 +427,3.5010,9.7080,0.0486,0.0053,1,0,0.0847,1173,9.7913,0,0,0,1093,0 +428,5.1960,9.5076,0.0304,0.0027,1,0,0.0587,6472,9.5598,0,0,0,6392,0 +429,3.4658,9.7201,0.0447,0.0055,1,0,0.0826,1108,9.7998,0,0,0,1028,0 +430,5.5619,9.4597,0.0218,0.0020,1,0,0.0389,2856,9.5013,0,0,0,2776,0 +431,5.1363,9.4614,0.0115,0.0018,1,0,0.0254,1921,9.4915,0,0,0,1841,0 +432,3.4285,9.7589,0.0457,0.0055,1,0,0.1027,8914,9.8389,0,0,0,8834,0 +433,4.9255,9.4390,0.0170,0.0021,1,0,0.0380,2304,9.4762,0,0,0,2224,0 +434,4.4589,9.4728,0.0105,0.0013,1,0,0.0119,1280,9.5015,0,0,0,1200,0 +435,3.4541,9.6747,0.0445,0.0057,1,0,0.0316,1419,9.7536,0,0,0,1339,0 +436,4.7656,9.5203,0.0210,0.0021,1,0,0.0481,8415,9.5620,0,0,0,8335,0 +437,4.3558,9.6204,0.0185,0.0020,1,0,0.0137,945,9.6590,0,0,0,865,0 +438,3.4979,9.7012,0.0448,0.0059,1,0,0.0338,996,9.7801,0,0,0,916,0 +439,5.1822,9.4955,0.0225,0.0021,1,0,0.0384,845,9.5388,0,0,0,765,0 +440,4.3938,9.6589,0.0416,0.0054,1,0,0.0913,8226,9.7329,0,0,0,8146,0 +441,4.4917,9.5161,0.0193,0.0021,1,0,0.0129,922,9.5556,0,0,0,842,0 +442,4.8597,9.5130,0.0119,0.0016,1,0,0.0097,835,9.5435,0,0,0,755,0 +443,3.4606,9.7175,0.0428,0.0057,1,0,0.0331,909,9.7944,0,0,0,829,0 +444,5.0141,9.4944,0.0213,0.0024,1,0,0.0498,6437,9.5364,0,0,0,6357,0 +445,3.4865,9.8291,0.0492,0.0065,1,0,0.0344,893,9.9134,0,0,0,813,0 +446,4.9329,9.5013,0.0252,0.0028,1,0,0.0206,1320,9.5495,0,0,0,1240,0 +447,4.6608,9.5656,0.0171,0.0020,1,0,0.0139,1251,9.6024,0,0,0,1171,0 +448,3.4552,9.5799,0.0250,0.0018,1,0,0.0563,21784,9.6250,0,0,0,21704,0 +449,4.5612,9.5440,0.0178,0.0020,1,0,0.0328,2667,9.5817,0,0,0,2587,0 +450,5.2680,9.4620,0.0089,0.0015,1,0,0.0190,1012,9.4905,0,0,0,932,0 +451,3.5295,9.6911,0.0440,0.0056,1,0,0.0816,1020,9.7676,0,0,0,940,0 +452,5.0089,9.4772,0.0200,0.0018,1,0,0.0414,7606,9.5172,0,0,0,7526,0 +453,28.9622,9.9481,0.0320,0.0053,1,0,0.0749,2002,10.0219,0,0,0,1922,0 +454,7.5407,10.2896,0.0234,0.0032,1,0,0.0643,865,10.3321,0,0,0,785,0 +455,4.0419,14.6187,0.0258,0.0029,1,0,0.0204,864,14.6619,0,0,0,784,0 +456,3.1188,13.3845,0.0244,0.0032,1,0,0.0673,7758,13.4268,0,0,0,7678,0 +457,3.2698,9.6692,0.0243,0.0025,1,0,0.0181,890,9.7100,0,0,0,810,0 +458,3.4996,9.7096,0.0235,0.0027,1,0,0.0573,1718,9.7563,0,0,0,1638,0 +459,3.4461,9.5505,0.0171,0.0022,1,0,0.0356,1051,9.5879,0,0,0,971,0 +460,3.5114,9.6337,0.0210,0.0022,1,0,0.0481,6710,9.6755,0,0,0,6630,0 +461,3.4589,9.5694,0.0197,0.0024,1,0,0.0375,864,9.6096,0,0,0,784,0 +462,3.4805,9.5546,0.0185,0.0020,1,0,0.0352,1177,9.5931,0,0,0,1097,0 +463,3.4797,9.6011,0.0200,0.0021,1,0,0.0155,1073,9.6412,0,0,0,993,0 +464,3.4903,9.6044,0.0225,0.0020,1,0,0.0520,8238,9.6478,0,0,0,8158,0 +465,3.5112,9.6187,0.0191,0.0022,1,0,0.0405,2161,9.6582,0,0,0,2081,0 +466,3.4746,9.6198,0.0195,0.0023,1,0,0.0340,972,9.6594,0,0,0,892,0 +467,3.5172,9.5974,0.0185,0.0019,1,0,0.0381,979,9.6360,0,0,0,899,0 +468,3.4552,9.5834,0.0192,0.0022,1,0,0.0419,8323,9.6228,0,0,0,8243,0 +469,3.4778,9.6049,0.0203,0.0023,1,0,0.0144,1038,9.6455,0,0,0,958,0 +470,5.3018,9.4734,0.0146,0.0024,1,0,0.0430,1061,9.5034,0,0,0,981,0 +471,3.4561,9.6651,0.0457,0.0057,1,0,0.0831,1213,9.7613,0,0,0,1133,0 +472,5.1831,9.5092,0.0270,0.0023,1,0,0.0565,8152,9.5577,0,0,0,8072,0 +473,4.4343,9.5775,0.0366,0.0053,1,0,0.0800,1739,9.6465,0,0,0,1659,0 +474,4.4310,9.5325,0.0175,0.0021,1,0,0.0128,981,9.5702,0,0,0,901,0 +475,5.1002,9.4354,0.0081,0.0018,1,0,0.0073,1049,9.4627,0,0,0,969,0 +476,3.4329,9.7532,0.0470,0.0056,1,0,0.0931,7404,9.8333,0,0,0,7324,0 +477,5.0228,9.4613,0.0223,0.0023,1,0,0.0385,1134,9.5043,0,0,0,1054,0 +478,4.3940,9.4784,0.0147,0.0016,1,0,0.0301,2606,9.5117,0,0,0,2526,0 +479,3.5115,9.7225,0.0447,0.0056,1,0,0.0915,2009,9.8006,0,0,0,1929,0 +480,4.9112,8.3834,0.0355,0.0025,1,0,0.0608,36686,8.4398,0,1,0,36606,0 +481,4.3998,9.7027,0.0282,0.0023,1,0,0.0637,3917,9.7481,0,0,0,3837,0 +482,3.6537,9.7373,0.0246,0.0022,1,0,0.0573,4026,9.7826,0,0,0,3946,0 +483,3.5756,9.6819,0.0242,0.0028,1,0,0.0499,4381,9.7277,0,0,0,4301,0 +484,4.9915,9.6703,0.0219,0.0024,1,0,0.0484,9211,9.7127,0,0,0,9131,0 +485,4.4707,9.7524,0.0246,0.0024,1,0,0.0425,3998,9.7978,0,0,0,3918,0 +486,3.5933,9.9960,0.0500,0.0057,1,0,0.0997,1825,10.0805,0,0,0,1745,0 +487,4.7080,9.7831,0.0266,0.0026,1,0,0.0469,1698,9.8318,0,0,0,1618,0 +488,4.5270,9.6891,0.0456,0.0057,1,0,0.0969,7930,9.7690,0,0,0,7850,0 +489,4.6457,9.6963,0.0258,0.0028,1,0,0.0379,934,9.7445,0,0,0,854,0 +490,5.2355,9.6671,0.0199,0.0029,1,0,0.0608,1670,9.7031,0,0,0,1590,0 +491,3.5816,9.9761,0.0335,0.0032,1,0,2.8175,1314,10.4652,0,0,0,1234,0 +492,21.0287,9.7858,0.0359,0.0035,1,0,0.0818,6690,9.8427,0,0,0,6610,0 +493,6.2618,11.8153,0.0310,0.0029,1,0,0.0214,951,11.8650,0,0,0,871,0 +494,3.5446,14.1380,0.0069,0.0038,1,0,0.0398,1284,14.1609,0,0,0,1204,0 +495,3.6158,9.7406,0.0231,0.0026,1,0,0.0505,1229,9.7852,0,0,0,1149,0 +496,3.6372,9.8198,0.0274,0.0027,1,0,0.0609,8569,9.8705,0,0,0,8489,0 +497,3.6625,9.7524,0.0235,0.0021,1,0,0.0487,3046,9.7966,0,0,0,2966,0 +498,3.6993,9.7254,0.0248,0.0027,1,0,0.0526,1797,9.7720,0,0,0,1717,0 +499,3.5754,9.7754,0.0223,0.0023,1,0,0.0490,1490,9.8187,0,0,0,1410,0 +500,3.5632,9.7670,0.0244,0.0024,1,0,0.0532,8381,9.8126,0,0,0,8301,0 +501,3.5887,9.7113,0.0241,0.0023,1,0,0.0433,1434,9.7565,0,0,0,1354,0 +502,3.5390,9.6773,0.0212,0.0022,1,0,0.0438,1683,9.7190,0,0,0,1603,0 +503,3.5085,9.7295,0.0225,0.0022,1,0,0.0417,1797,9.7722,0,0,0,1717,0 +504,3.6097,9.6515,0.0248,0.0027,1,0,0.0522,8516,9.6981,0,0,0,8436,0 +505,3.6045,9.7545,0.0267,0.0036,1,0,0.0595,1580,9.7986,0,0,0,1500,0 +506,3.6088,9.6629,0.0242,0.0025,1,0,0.0445,1325,9.7088,0,0,0,1245,0 +507,3.6327,9.6387,0.0218,0.0022,1,0,0.0429,1540,9.6810,0,0,0,1460,0 +508,3.5449,9.8764,0.0511,0.0062,1,0,0.1063,7270,9.9610,0,0,0,7190,0 +509,4.5820,9.6211,0.0239,0.0031,1,0,0.0529,1508,9.6672,0,0,0,1428,0 +510,5.2398,9.5475,0.0148,0.0018,1,0,0.0306,2333,9.5817,0,0,0,2253,0 +511,3.6010,9.8065,0.0222,0.0024,1,0,0.0506,1858,9.8500,0,0,0,1778,0 +512,5.3485,9.7357,0.0208,0.0020,1,0,0.0500,21105,9.7776,0,0,0,21025,0 +513,3.5745,9.8900,0.0510,0.0060,1,0,0.1025,3245,9.9753,0,0,0,3165,0 +514,5.3337,9.8385,0.0333,0.0052,1,0,0.0658,2022,9.8937,0,0,0,1942,0 +515,3.5065,9.9021,0.0482,0.0053,1,0,0.1044,2257,9.9753,0,0,0,2177,0 +516,5.6337,9.6958,0.0286,0.0034,1,0,0.0657,8839,9.7418,0,0,0,8759,0 +517,3.5734,9.6310,0.0223,0.0024,1,0,0.0529,2789,9.6754,0,0,0,2709,0 +518,4.4396,9.7180,0.0242,0.0031,1,0,0.0511,2553,9.7646,0,0,0,2473,0 +519,5.5000,9.6436,0.0154,0.0022,1,0,0.0303,2497,9.6790,0,0,0,2417,0 +520,3.6314,9.7677,0.0252,0.0024,1,0,0.0503,8259,9.8145,0,0,0,8179,0 +521,5.4178,9.6280,0.0173,0.0020,1,0,0.0348,2041,9.6649,0,0,0,1961,0 +522,3.6347,9.7568,0.0471,0.0056,1,0,0.0980,1756,9.8372,0,0,0,1676,0 +523,5.3316,9.8033,0.0219,0.0023,1,0,0.0442,1843,9.8462,0,0,0,1763,0 +524,3.5555,9.9148,0.0531,0.0056,1,0,0.1077,7230,10.0025,0,0,0,7150,0 +525,4.6598,9.6498,0.0240,0.0025,1,0,0.0501,1833,9.6948,0,0,0,1753,0 +526,5.2715,9.5134,0.0096,0.0014,1,0,0.0230,3126,9.5414,0,0,0,3046,0 +527,3.5231,9.6295,0.0228,0.0022,1,0,0.0424,2579,9.6728,0,0,0,2499,0 +528,5.1539,9.6153,0.0191,0.0022,1,0,0.0524,9597,9.6550,0,0,0,9517,0 +529,3.5317,9.8446,0.0505,0.0056,1,0,0.1029,4477,9.9292,0,0,0,4397,0 +530,5.1917,9.6528,0.0315,0.0031,1,0,0.0620,3058,9.7013,0,0,0,2978,0 +531,4.6341,9.5671,0.0131,0.0016,1,0,0.0344,2920,9.6006,0,0,0,2840,0 +532,3.5351,9.6309,0.0239,0.0028,1,0,0.0512,9369,9.6764,0,0,0,9289,0 +533,4.9205,9.6755,0.0212,0.0022,1,0,0.0394,2954,9.7167,0,0,0,2874,0 +534,4.5276,9.7487,0.0245,0.0025,1,0,0.0430,2827,9.7940,0,0,0,2747,0 +535,3.6438,9.8358,0.0498,0.0063,1,0,0.0999,3018,9.9320,0,0,0,2938,0 +536,5.3727,9.5619,0.0270,0.0029,1,0,0.0521,9203,9.6106,0,0,0,9123,0 +537,4.5308,9.6593,0.0374,0.0052,1,0,0.0762,2349,9.7412,0,0,0,2269,0 +538,4.4406,9.6593,0.0230,0.0022,1,0,0.0385,1992,9.7030,0,0,0,1912,0 +539,5.0987,9.5152,0.0140,0.0020,1,0,0.0343,2005,9.5480,0,0,0,1925,0 +540,3.4702,8.5106,0.0414,0.0026,1,0,0.0850,57155,8.5736,0,1,0,57075,0 +541,5.0905,9.5810,0.0235,0.0028,1,0,0.0427,3779,9.6266,0,0,0,3699,0 +542,4.5911,9.4777,0.0100,0.0015,1,0,0.0235,3187,9.5067,0,0,0,3107,0 +543,3.5423,9.6613,0.0204,0.0022,1,0,0.0383,2649,9.7025,0,0,0,2569,0 +544,4.8893,9.5756,0.0248,0.0019,1,0,0.0478,7743,9.6207,0,0,0,7663,0 +545,4.4647,9.5749,0.0190,0.0020,1,0,0.0483,2074,9.6142,0,0,0,1994,0 +546,3.5946,9.7560,0.0479,0.0054,1,0,0.0969,2458,9.8383,0,0,0,2378,0 +547,4.7484,9.7612,0.0239,0.0023,1,0,0.0447,2610,9.8062,0,0,0,2530,0 +548,5.0775,9.6763,0.0149,0.0018,1,0,0.0392,8278,9.7114,0,0,0,8198,0 +549,3.4768,9.7318,0.0454,0.0057,1,0,0.0919,2285,9.8110,0,0,0,2205,0 +550,5.1727,9.4581,0.0192,0.0020,1,0,0.0425,966,9.4972,0,0,0,886,0 +551,4.3975,9.6600,0.0397,0.0057,1,0,0.0722,861,9.7334,0,0,0,781,0 +552,4.5534,9.5070,0.0200,0.0022,1,0,0.0424,7741,9.5476,0,0,0,7661,0 +553,4.9713,9.4485,0.0097,0.0015,1,0,0.0212,921,9.4765,0,0,0,841,0 +554,3.4682,9.7165,0.0470,0.0057,1,0,0.0912,1913,9.7967,0,0,0,1833,0 +555,5.1986,9.5031,0.0242,0.0028,1,0,0.0457,940,9.5434,0,0,0,860,0 +556,4.3926,9.5187,0.0188,0.0019,1,0,0.0398,6321,9.5579,0,0,0,6241,0 +557,3.4853,9.5578,0.0207,0.0022,1,0,0.0339,990,9.5983,0,0,0,910,0 +558,4.6668,9.4396,0.0109,0.0018,1,0,0.0231,1437,9.4697,0,0,0,1357,0 +559,4.4046,9.5243,0.0168,0.0018,1,0,0.0319,987,9.5609,0,0,0,907,0 +560,3.4393,9.7199,0.0467,0.0056,1,0,0.1015,8408,9.8000,0,0,0,8328,0 +561,5.6144,9.4967,0.0202,0.0022,1,0,0.0423,2962,9.5370,0,0,0,2882,0 +562,4.4705,9.6295,0.0392,0.0051,1,0,0.0795,2258,9.7138,0,0,0,2178,0 +563,4.5200,9.5721,0.0175,0.0024,1,0,0.0346,1466,9.6102,0,0,0,1386,0 +564,5.0778,9.4742,0.0165,0.0021,1,0,0.0339,8516,9.5110,0,0,0,8436,0 +565,3.4725,9.6934,0.0249,0.0030,1,0,0.0493,1898,9.7420,0,0,0,1818,0 +566,3.5193,9.6315,0.0193,0.0020,1,0,0.0459,1953,9.6714,0,0,0,1873,0 +567,4.7486,9.4972,0.0112,0.0018,1,0,0.0310,2144,9.5280,0,0,0,2064,0 +568,3.4293,9.5615,0.0188,0.0019,1,0,0.0457,8468,9.6001,0,0,0,8388,0 +569,3.4808,9.7003,0.0462,0.0055,1,0,0.0905,1842,9.7800,0,0,0,1762,0 +570,4.4140,9.5328,0.0217,0.0024,1,0,0.0396,1404,9.5753,0,0,0,1324,0 +571,5.0398,9.4527,0.0086,0.0016,1,0,0.0223,1616,9.4795,0,0,0,1536,0 +572,3.4543,9.7022,0.0462,0.0056,1,0,0.1001,7364,9.7828,0,0,0,7284,0 +573,5.2237,9.4680,0.0182,0.0024,1,0,0.0362,1540,9.5072,0,0,0,1460,0 +574,4.4915,9.6787,0.0271,0.0039,1,0,0.0453,2462,9.7256,0,0,0,2382,0 +575,3.5003,9.6966,0.0255,0.0030,1,0,0.0485,2330,9.7414,0,0,0,2250,0 +576,5.0502,9.6557,0.0206,0.0025,1,0,0.0450,8080,9.6974,0,0,0,8000,0 +577,4.4063,9.6703,0.0223,0.0024,1,0,0.0462,3032,9.7142,0,0,0,2952,0 +578,3.5086,9.8057,0.0465,0.0066,1,0,0.1060,2332,9.8882,0,0,0,2252,0 +579,4.4588,9.5694,0.0257,0.0024,1,0,0.0492,2077,9.6166,0,0,0,1997,0 +580,5.0576,9.4838,0.0114,0.0016,1,0,0.0288,9027,9.5140,0,0,0,8947,0 +581,3.4694,9.7295,0.0459,0.0062,1,0,0.0918,2468,9.8105,0,0,0,2388,0 +582,5.0565,9.5331,0.0206,0.0022,1,0,0.0375,2259,9.5751,0,0,0,2179,0 +583,4.4034,9.4930,0.0151,0.0017,1,0,0.0320,2348,9.5274,0,0,0,2268,0 +584,3.4488,9.7155,0.0465,0.0061,1,0,0.1040,8256,9.7966,0,0,0,8176,0 +585,4.7695,9.5111,0.0199,0.0023,1,0,0.0398,1849,9.5519,0,0,0,1769,0 +586,4.3805,9.5541,0.0194,0.0025,1,0,0.0448,1890,9.5948,0,0,0,1810,0 +587,4.4335,9.6242,0.0383,0.0055,1,0,0.0791,1825,9.6958,0,0,0,1745,0 +588,4.4828,9.5726,0.0189,0.0028,1,0,0.0428,7257,9.6138,0,0,0,7177,0 +589,4.9635,9.4827,0.0105,0.0016,1,0,0.0297,1741,9.5120,0,0,0,1661,0 +590,3.4964,9.6783,0.0459,0.0062,1,0,0.0912,2883,9.7593,0,0,0,2803,0 +591,5.1733,9.4917,0.0178,0.0021,1,0,0.0374,2366,9.5301,0,0,0,2286,0 +592,4.3847,9.5386,0.0180,0.0020,1,0,0.0365,9442,9.5760,0,0,0,9362,0 +593,3.4797,9.5684,0.0193,0.0022,1,0,0.0333,4331,9.6078,0,0,0,4251,0 +594,4.6631,9.4573,0.0124,0.0019,1,0,0.0294,3593,9.4885,0,0,0,3513,0 +595,4.3704,9.5922,0.0166,0.0021,1,0,0.0358,3610,9.6288,0,0,0,3530,0 +596,3.4899,9.7276,0.0420,0.0061,1,0,0.1016,9444,9.7937,0,0,0,9364,0 +597,4.5281,9.4983,0.0184,0.0029,1,0,0.0415,3085,9.5389,0,0,0,3005,0 +598,5.1205,9.4563,0.0088,0.0014,1,0,0.0209,3009,9.4838,0,0,0,2929,0 +599,3.4573,9.6592,0.0452,0.0090,1,0,0.1001,3144,9.7562,0,0,0,3064,0 diff --git a/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_console.txt b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_console.txt new file mode 100644 index 0000000..28ebf9c --- /dev/null +++ b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=600 +frames_submitted=600 +frames_skipped=0 +frames_encoded=600 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=3.932 +avg_encode_latency_ms=9.665 +p95_encode_latency_ms=9.864 +max_encode_latency_ms=29.712 +avg_send_ms=0.056 +p95_send_ms=0.106 +payload_bytes=2449652 +bytes_sent=2497652 +send_target=192.168.31.187:48320 +csv=benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_stats.csv b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_stats.csv new file mode 100644 index 0000000..baed824 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/primary_stats.csv @@ -0,0 +1,601 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,6.2820,29.7125,0.1192,0.0089,1,0,0.1247,17217,29.8768,0,1,0,17137,0 +1,3.2286,9.6625,0.0470,0.0022,1,0,0.0230,10368,9.7263,0,0,0,10288,0 +2,2.9025,15.2014,0.0366,0.0039,1,0,0.0238,9190,15.2569,0,0,0,9110,0 +3,3.3563,13.3319,0.0293,0.0028,1,0,0.0901,12189,13.3789,0,0,0,12109,0 +4,3.4828,9.8628,0.0362,0.0038,1,0,0.0824,16295,9.9168,0,0,0,16215,0 +5,3.9533,9.8685,0.0340,0.0027,1,0,0.0698,6286,9.9201,0,0,0,6206,0 +6,3.7758,9.6461,0.0355,0.0039,1,0,0.0660,3560,9.7012,0,0,0,3480,0 +7,3.8282,9.6838,0.0338,0.0035,1,0,0.0636,2871,9.7365,0,0,0,2791,0 +8,3.8955,9.7613,0.0316,0.0039,1,0,0.0727,8536,9.8138,0,0,0,8456,0 +9,4.0913,9.7536,0.0401,0.0047,1,0,0.0698,1041,9.8142,0,0,0,961,0 +10,3.9168,9.8265,0.0261,0.0050,1,0,0.0679,828,9.8728,0,0,0,748,0 +11,3.8426,9.8919,0.0289,0.0041,1,0,0.0583,904,9.9403,0,0,0,824,0 +12,3.8372,9.6532,0.0317,0.0033,1,0,0.0760,6173,9.7026,0,0,0,6093,0 +13,3.8043,9.7280,0.0247,0.0039,1,0,0.0526,962,9.7704,0,0,0,882,0 +14,3.7632,9.6130,0.0210,0.0033,1,0,0.0488,1056,9.6509,0,0,0,976,0 +15,3.8065,9.6463,0.0296,0.0033,1,0,0.0495,1160,9.6937,0,0,0,1080,0 +16,3.9552,9.6844,0.0286,0.0034,1,0,0.0723,8356,9.7371,0,0,0,8276,0 +17,3.8595,9.6969,0.0261,0.0040,1,0,0.0561,1936,9.7411,0,0,0,1856,0 +18,3.5603,9.6810,0.0271,0.0032,1,0,0.0569,1358,9.7247,0,0,0,1278,0 +19,3.6197,9.6876,0.0348,0.0024,1,0,0.0613,964,9.7404,0,0,0,884,0 +20,3.6045,9.6261,0.0275,0.0027,1,0,0.0746,8170,9.6768,0,0,0,8090,0 +21,3.5309,9.5875,0.0264,0.0034,1,0,0.0498,963,9.6370,0,0,0,883,0 +22,3.5240,9.6319,0.0262,0.0027,1,0,0.0456,1224,9.6813,0,0,0,1144,0 +23,3.4615,9.5752,0.0219,0.0027,1,0,0.0421,979,9.6194,0,0,0,899,0 +24,3.4877,9.5568,0.0249,0.0034,1,0,0.0642,8213,9.5984,0,0,0,8133,0 +25,3.5768,9.5717,0.0276,0.0030,1,0,0.0444,1013,9.6225,0,0,0,933,0 +26,3.4808,9.5820,0.0213,0.0035,1,0,0.0385,852,9.6262,0,0,0,772,0 +27,3.4738,9.5872,0.0275,0.0032,1,0,0.0568,857,9.6316,0,0,0,777,0 +28,3.4841,9.5892,0.0297,0.0031,1,0,0.0605,6535,9.6418,0,0,0,6455,0 +29,3.5208,9.6253,0.0270,0.0027,1,0,0.0449,1045,9.6747,0,0,0,965,0 +30,3.5353,9.6179,0.0283,0.0034,1,0,0.0458,1002,9.6694,0,0,0,922,0 +31,3.4642,9.5941,0.0198,0.0028,1,0,0.0577,990,9.6307,0,0,0,910,0 +32,3.5270,9.6767,0.0307,0.0027,1,0,0.0705,6956,9.7249,0,0,0,6876,0 +33,3.5445,9.6265,0.0237,0.0035,1,0,0.0543,1494,9.6741,0,0,0,1414,0 +34,3.5550,9.6785,0.0229,0.0040,1,0,0.0514,1120,9.7207,0,0,0,1040,0 +35,3.4768,9.6133,0.0265,0.0030,1,0,0.0508,1060,9.6625,0,0,0,980,0 +36,3.4395,9.5876,0.0236,0.0022,1,0,0.0565,7642,9.6328,0,0,0,7562,0 +37,3.4949,9.5785,0.0250,0.0029,1,0,0.0603,2144,9.6204,0,0,0,2064,0 +38,3.4180,9.5750,0.0264,0.0025,1,0,0.0476,1106,9.6235,0,0,0,1026,0 +39,3.5391,9.7110,0.0184,0.0019,1,0,0.0483,1081,9.7507,0,0,0,1001,0 +40,3.6317,9.9235,0.0306,0.0026,1,0,0.0708,7649,9.9644,0,0,0,7569,0 +41,3.5405,9.6661,0.0285,0.0026,1,0,0.0610,1049,9.7045,0,0,0,969,0 +42,3.4523,9.5967,0.0246,0.0028,1,0,0.0529,2134,9.6441,0,0,0,2054,0 +43,3.4946,9.5777,0.0195,0.0025,1,0,0.0478,1039,9.6189,0,0,0,959,0 +44,3.4713,9.7092,0.0288,0.0030,1,0,0.0667,6266,9.7596,0,0,0,6186,0 +45,3.4810,9.5784,0.0234,0.0037,1,0,0.0576,999,9.6185,0,0,0,919,0 +46,3.5014,9.5650,0.0198,0.0030,1,0,0.0445,1178,9.6079,0,0,0,1098,0 +47,3.5243,9.5934,0.0228,0.0024,1,0,0.0428,1137,9.6382,0,0,0,1057,0 +48,3.7540,9.5802,0.0215,0.0025,1,0,0.0703,8293,9.6178,0,0,0,8213,0 +49,3.6998,9.7450,0.0488,0.0066,1,0,0.1449,2639,9.8172,0,0,0,2559,0 +50,3.4555,9.5074,0.0222,0.0037,1,0,0.0572,2254,9.5525,0,0,0,2174,0 +51,3.4676,9.5303,0.0164,0.0022,1,0,0.0425,1229,9.5671,0,0,0,1149,0 +52,3.5110,9.5942,0.0208,0.0029,1,0,0.0620,8484,9.6365,0,0,0,8404,0 +53,3.4942,9.6381,0.0253,0.0028,1,0,0.0549,1737,9.6855,0,0,0,1657,0 +54,5.2814,9.6595,0.0312,0.0024,1,0,0.0536,1794,9.7070,0,0,0,1714,0 +55,3.5532,9.7317,0.0328,0.0026,1,0,0.0597,2096,9.7746,0,0,0,2016,0 +56,3.5567,9.6830,0.0272,0.0022,1,0,0.0663,8436,9.7197,0,0,0,8356,0 +57,3.6047,9.6386,0.0340,0.0022,1,0,0.0572,2005,9.6892,0,0,0,1925,0 +58,3.5209,9.6270,0.0288,0.0023,1,0,0.0571,1810,9.6706,0,0,0,1730,0 +59,3.3626,9.7216,0.0295,0.0023,1,0,0.0273,2038,9.7613,0,0,0,1958,0 +60,3.1668,8.4645,0.0552,0.0029,1,0,0.0931,57676,8.5374,0,1,0,57596,0 +61,3.4844,9.6325,0.0215,0.0024,1,0,0.0600,3690,9.6771,0,0,0,3610,0 +62,3.5341,9.5724,0.0209,0.0029,1,0,0.0580,3104,9.6100,0,0,0,3024,0 +63,3.4488,9.6124,0.0238,0.0034,1,0,0.0540,2450,9.6588,0,0,0,2370,0 +64,3.5420,9.6040,0.0242,0.0030,1,0,0.0663,7577,9.6452,0,0,0,7497,0 +65,3.8064,9.6019,0.0209,0.0035,1,0,0.0609,2031,9.6465,0,0,0,1951,0 +66,3.7955,9.5896,0.0235,0.0026,1,0,0.0471,2159,9.6363,0,0,0,2079,0 +67,3.8931,9.7115,0.0296,0.0030,1,0,0.0600,3230,9.7596,0,0,0,3150,0 +68,3.6212,9.7784,0.0323,0.0036,1,0,0.0687,8058,9.8302,0,0,0,7978,0 +69,3.3864,9.7106,0.0268,0.0031,1,0,0.0704,2224,9.7545,0,0,0,2144,0 +70,3.6840,9.8353,0.0308,0.0032,1,0,0.0542,944,9.8834,0,0,0,864,0 +71,3.9264,9.7555,0.0242,0.0037,1,0,0.0555,876,9.7980,0,0,0,796,0 +72,3.7243,9.6306,0.0248,0.0027,1,0,0.0661,7608,9.6722,0,0,0,7528,0 +73,3.8343,9.7036,0.0258,0.0029,1,0,0.0524,903,9.7528,0,0,0,823,0 +74,3.8287,9.5788,0.0277,0.0029,1,0,0.0527,916,9.6245,0,0,0,836,0 +75,3.7746,9.5531,0.0267,0.0034,1,0,0.0533,1121,9.5975,0,0,0,1041,0 +76,3.4595,9.5614,0.0253,0.0023,1,0,0.0570,6520,9.6083,0,0,0,6440,0 +77,3.4258,9.6729,0.0248,0.0025,1,0,0.0430,917,9.7199,0,0,0,837,0 +78,3.5214,9.6645,0.0266,0.0036,1,0,0.0579,1275,9.7082,0,0,0,1195,0 +79,3.8013,9.5823,0.0208,0.0035,1,0,0.0530,1197,9.6205,0,0,0,1117,0 +80,3.7587,9.5878,0.0296,0.0025,1,0,0.0593,8480,9.6408,0,0,0,8400,0 +81,3.7713,9.5894,0.0210,0.0027,1,0,0.0548,2331,9.6274,0,0,0,2251,0 +82,3.8095,9.5969,0.0249,0.0028,1,0,0.0511,1329,9.6449,0,0,0,1249,0 +83,3.7692,9.6165,0.0293,0.0030,1,0,0.0561,1229,9.6632,0,0,0,1149,0 +84,3.8340,9.5847,0.0260,0.0029,1,0,0.0565,8359,9.6338,0,0,0,8279,0 +85,3.5246,9.5642,0.0234,0.0029,1,0,0.0457,1287,9.6098,0,0,0,1207,0 +86,3.5590,9.6176,0.0238,0.0030,1,0,0.0487,1268,9.6598,0,0,0,1188,0 +87,3.5374,9.6183,0.0247,0.0026,1,0,0.0463,1349,9.6655,0,0,0,1269,0 +88,3.5017,9.6871,0.0290,0.0031,1,0,0.0638,8352,9.7386,0,0,0,8272,0 +89,17.5475,19.1976,0.0408,0.0049,1,0,0.0742,1178,19.2756,0,0,0,1098,0 +90,6.3386,11.7426,0.0286,0.0037,1,0,0.0567,969,11.7903,0,0,0,889,0 +91,4.0707,15.5218,0.0310,0.0024,1,0,0.0348,1057,15.5698,0,0,0,977,0 +92,3.7775,11.9705,0.0095,0.0015,1,0,0.0356,6948,11.9995,0,0,0,6868,0 +93,3.5315,9.5648,0.0212,0.0022,1,0,0.0430,1189,9.6069,0,0,0,1109,0 +94,3.5157,9.6168,0.0232,0.0024,1,0,0.0431,1706,9.6615,0,0,0,1626,0 +95,3.5167,9.5634,0.0182,0.0022,1,0,0.0400,1626,9.6027,0,0,0,1546,0 +96,3.4980,9.6021,0.0340,0.0019,1,0,0.0778,22752,9.6514,0,0,0,22672,0 +97,3.5169,9.5552,0.0213,0.0022,1,0,0.0509,3102,9.5984,0,0,0,3022,0 +98,3.5270,9.5366,0.0190,0.0020,1,0,0.0401,2140,9.5762,0,0,0,2060,0 +99,3.7954,9.5795,0.0271,0.0025,1,0,0.0495,1797,9.6297,0,0,0,1717,0 +100,3.7034,9.7983,0.0280,0.0025,1,0,0.0714,8477,9.8495,0,0,0,8397,0 +101,3.5611,9.5535,0.0200,0.0023,1,0,0.0472,2468,9.5952,0,0,0,2388,0 +102,3.4820,9.5854,0.0179,0.0023,1,0,0.0422,1732,9.6248,0,0,0,1652,0 +103,3.4311,9.5661,0.0267,0.0026,1,0,0.0510,1876,9.6097,0,0,0,1796,0 +104,3.4937,9.5356,0.0220,0.0025,1,0,0.0494,8146,9.5798,0,0,0,8066,0 +105,3.4332,9.6535,0.0408,0.0063,1,0,0.1184,1473,9.7168,0,0,0,1393,0 +106,4.9724,9.4941,0.0242,0.0030,1,0,0.0653,1458,9.5615,0,0,0,1378,0 +107,3.5122,9.5457,0.0160,0.0018,1,0,0.0345,1972,9.5819,0,0,0,1892,0 +108,5.5724,9.4612,0.0114,0.0016,1,0,0.0278,7060,9.4925,0,0,0,6980,0 +109,3.7815,9.5560,0.0195,0.0025,1,0,0.0440,1974,9.5984,0,0,0,1894,0 +110,3.8332,9.5973,0.0196,0.0022,1,0,0.0469,2786,9.6393,0,0,0,2706,0 +111,3.8702,9.6506,0.0278,0.0045,1,0,0.0675,2015,9.6978,0,0,0,1935,0 +112,4.0239,9.6250,0.0273,0.0027,1,0,0.0779,9201,9.6702,0,0,0,9121,0 +113,5.2989,9.5292,0.0143,0.0017,1,0,0.0317,3670,9.5637,0,0,0,3590,0 +114,3.5210,9.7428,0.0188,0.0027,1,0,0.0451,2753,9.7840,0,0,0,2673,0 +115,3.7386,9.7669,0.0333,0.0029,1,0,0.0748,2628,9.8174,0,0,0,2548,0 +116,3.5973,9.6102,0.0247,0.0032,1,0,0.0661,8833,9.6516,0,0,0,8753,0 +117,3.5469,9.7750,0.0202,0.0024,1,0,0.0488,2668,9.8175,0,0,0,2588,0 +118,3.5550,9.7114,0.0213,0.0046,1,0,0.0481,2613,9.7502,0,0,0,2533,0 +119,3.5524,9.8005,0.0182,0.0020,1,0,0.0547,2829,9.8407,0,0,0,2749,0 +120,3.4866,8.5299,0.0434,0.0027,1,0,0.0893,38278,8.5900,0,1,0,38198,0 +121,3.5598,9.5632,0.0149,0.0020,1,0,0.0378,3159,9.5997,0,0,0,3079,0 +122,3.4524,9.6423,0.0203,0.0023,1,0,0.0531,1558,9.6785,0,0,0,1478,0 +123,3.5797,9.5534,0.0269,0.0021,1,0,0.0470,1993,9.6025,0,0,0,1913,0 +124,3.5057,9.7867,0.0486,0.0063,1,0,0.1168,6808,9.8701,0,0,0,6728,0 +125,3.7797,9.6576,0.0248,0.0024,1,0,0.0469,1293,9.7052,0,0,0,1213,0 +126,3.8058,9.6512,0.0205,0.0025,1,0,0.0542,2166,9.6943,0,0,0,2086,0 +127,3.8611,9.8471,0.0280,0.0040,1,0,0.0509,1433,9.8946,0,0,0,1353,0 +128,3.9280,9.9327,0.0345,0.0037,1,0,0.0675,8466,9.9875,0,0,0,8386,0 +129,3.5017,9.6816,0.0246,0.0024,1,0,0.0501,2232,9.7299,0,0,0,2152,0 +130,4.0081,9.7935,0.0284,0.0029,1,0,0.0615,1366,9.8395,0,0,0,1286,0 +131,3.8264,9.7430,0.0234,0.0028,1,0,0.0553,1423,9.7836,0,0,0,1343,0 +132,3.9912,9.6761,0.0284,0.0024,1,0,0.0626,7738,9.7211,0,0,0,7658,0 +133,3.9495,9.6651,0.0327,0.0023,1,0,0.1061,2273,9.7144,0,0,0,2193,0 +134,5.0482,9.5192,0.0126,0.0019,1,0,0.0341,946,9.5526,0,0,0,866,0 +135,3.7865,9.7929,0.0552,0.0059,1,0,0.1259,919,9.8737,0,0,0,839,0 +136,5.4936,9.5308,0.0247,0.0027,1,0,0.0625,7894,9.5784,0,0,0,7814,0 +137,3.5065,9.8001,0.0186,0.0025,1,0,0.0443,907,9.8402,0,0,0,827,0 +138,3.7728,9.7445,0.0238,0.0025,1,0,0.0584,1946,9.7851,0,0,0,1866,0 +139,3.7070,9.8000,0.0353,0.0032,1,0,0.0523,1080,9.8610,0,0,0,1000,0 +140,3.5957,9.7123,0.0359,0.0037,1,0,0.0723,6577,9.7767,0,0,0,6497,0 +141,3.6502,9.8640,0.0340,0.0028,1,0,0.0636,881,9.9099,0,0,0,801,0 +142,3.5108,9.8876,0.0337,0.0037,1,0,0.0635,1705,9.9496,0,0,0,1625,0 +143,3.5806,9.7423,0.0257,0.0035,1,0,0.0560,1112,9.7877,0,0,0,1032,0 +144,3.4160,9.7125,0.0278,0.0033,1,0,0.0736,8508,9.7519,0,0,0,8428,0 +145,3.1033,9.8192,0.0391,0.0033,1,0,0.0830,3179,9.8752,0,0,0,3099,0 +146,3.5086,9.8121,0.0398,0.0045,1,0,0.0799,2193,9.8662,0,0,0,2113,0 +147,3.1778,9.6475,0.0204,0.0025,1,0,0.0568,1074,9.6825,0,0,0,994,0 +148,3.0952,9.7224,0.0216,0.0026,1,0,0.0636,8266,9.7528,0,0,0,8186,0 +149,3.4286,9.6719,0.0376,0.0032,1,0,0.0676,1153,9.7253,0,0,0,1073,0 +150,3.1436,9.5653,0.0273,0.0034,1,0,0.0654,1883,9.6034,0,0,0,1803,0 +151,3.2047,9.7091,0.0257,0.0029,1,0,0.0574,1277,9.7446,0,0,0,1197,0 +152,3.2451,9.8093,0.0278,0.0061,1,0,0.0610,8345,9.8510,0,0,0,8265,0 +153,3.0819,9.6384,0.0300,0.0021,1,0,0.0517,1908,9.6778,0,0,0,1828,0 +154,3.2960,9.9205,0.0339,0.0023,1,0,0.0568,1053,9.9809,0,0,0,973,0 +155,3.3733,9.6898,0.0326,0.0025,1,0,0.0553,1286,9.7330,0,0,0,1206,0 +156,3.0290,9.7094,0.0263,0.0025,1,0,0.0584,7222,9.7444,0,0,0,7142,0 +157,3.3067,9.6541,0.0268,0.0031,1,0,0.0467,1372,9.6918,0,0,0,1292,0 +158,3.7374,9.7397,0.0337,0.0025,1,0,0.0740,1931,9.7900,0,0,0,1851,0 +159,3.9574,10.0217,0.0390,0.0029,1,0,0.0932,2620,10.0740,0,0,0,2540,0 +160,3.7212,10.2033,0.0395,0.0028,1,0,0.0740,7446,10.2545,0,0,0,7366,0 +161,3.6363,9.8905,0.0395,0.0035,1,0,0.0814,2764,9.9487,0,0,0,2684,0 +162,3.7446,9.6601,0.0275,0.0029,1,0,0.0673,2301,9.6986,0,0,0,2221,0 +163,3.9805,9.8335,0.0293,0.0027,1,0,0.0630,2280,9.8812,0,0,0,2200,0 +164,3.9650,9.8553,0.0303,0.0025,1,0,0.0587,8583,9.9023,0,0,0,8503,0 +165,3.7946,9.6455,0.0280,0.0029,1,0,0.0337,2729,9.6964,0,0,0,2649,0 +166,3.8593,9.8105,0.0255,0.0028,1,0,0.0583,2586,9.8532,0,0,0,2506,0 +167,3.8931,9.9025,0.0315,0.0028,1,0,0.0720,2328,9.9459,0,0,0,2248,0 +168,3.7882,9.6510,0.0290,0.0026,1,0,0.0461,8031,9.6968,0,0,0,7951,0 +169,3.8604,9.7124,0.0372,0.0029,1,0,0.0376,2025,9.7716,0,0,0,1945,0 +170,3.8352,9.7582,0.0251,0.0028,1,0,0.0477,1592,9.8003,0,0,0,1512,0 +171,3.7537,9.6425,0.0227,0.0033,1,0,0.0499,1593,9.6825,0,0,0,1513,0 +172,3.8114,9.6939,0.0322,0.0030,1,0,0.0716,7132,9.7368,0,0,0,7052,0 +173,3.7752,9.6729,0.0304,0.0025,1,0,0.0596,1780,9.7144,0,0,0,1700,0 +174,3.8957,9.8515,0.0353,0.0034,1,0,0.0420,2999,9.9060,0,0,0,2919,0 +175,3.8925,9.9343,0.0241,0.0022,1,0,0.0381,2632,9.9747,0,0,0,2552,0 +176,3.7375,9.7015,0.0238,0.0032,1,0,0.0610,9908,9.7377,0,0,0,9828,0 +177,3.7543,9.6845,0.0340,0.0024,1,0,0.0756,4771,9.7306,0,0,0,4691,0 +178,3.4683,9.6301,0.0233,0.0024,1,0,0.0423,2791,9.6698,0,0,0,2711,0 +179,3.6653,9.5822,0.0250,0.0027,1,0,0.0659,2771,9.6176,0,0,0,2691,0 +180,3.7309,8.4835,0.0496,0.0024,1,0,0.0853,56756,8.5500,0,1,0,56676,0 +181,3.7736,9.6262,0.0235,0.0029,1,0,0.0537,3421,9.6672,0,0,0,3341,0 +182,3.7365,9.6214,0.0198,0.0020,1,0,0.0512,2558,9.6637,0,0,0,2478,0 +183,3.6982,9.6037,0.0244,0.0024,1,0,0.0548,1740,9.6446,0,0,0,1660,0 +184,3.4813,9.6306,0.0313,0.0022,1,0,0.0690,8267,9.6833,0,0,0,8187,0 +185,3.4718,9.6100,0.0274,0.0039,1,0,0.0566,1562,9.6614,0,0,0,1482,0 +186,3.4377,9.5652,0.0182,0.0022,1,0,0.0532,1573,9.6018,0,0,0,1493,0 +187,3.5445,9.7210,0.0339,0.0037,1,0,0.0639,1756,9.7890,0,0,0,1676,0 +188,5.3254,9.8832,0.0319,0.0037,1,0,0.0693,7028,9.9347,0,0,0,6948,0 +189,3.5332,9.8457,0.0253,0.0033,1,0,0.0607,947,9.8893,0,0,0,867,0 +190,3.0816,9.7212,0.0267,0.0023,1,0,0.0593,1815,9.7642,0,0,0,1735,0 +191,3.5430,9.7524,0.0210,0.0032,1,0,0.0558,1329,9.7961,0,0,0,1249,0 +192,3.5796,9.6983,0.0332,0.0034,1,0,0.0937,21729,9.7505,0,0,0,21649,0 +193,3.8462,9.9122,0.0199,0.0027,1,0,0.0491,3052,9.9487,0,0,0,2972,0 +194,3.7712,9.5875,0.0232,0.0027,1,0,0.0560,1897,9.6326,0,0,0,1817,0 +195,3.5067,9.7438,0.0263,0.0025,1,0,0.0570,1319,9.7866,0,0,0,1239,0 +196,3.4700,9.6092,0.0286,0.0028,1,0,0.0649,8736,9.6548,0,0,0,8656,0 +197,3.4875,9.5761,0.0165,0.0022,1,0,0.0532,2347,9.6134,0,0,0,2267,0 +198,3.5938,9.6830,0.0176,0.0020,1,0,0.0318,1744,9.7211,0,0,0,1664,0 +199,3.4386,9.6216,0.0240,0.0030,1,0,0.0503,1377,9.6682,0,0,0,1297,0 +200,3.4658,9.5871,0.0251,0.0022,1,0,0.0607,7897,9.6349,0,0,0,7817,0 +201,3.5701,9.6364,0.0237,0.0024,1,0,0.0552,925,9.6755,0,0,0,845,0 +202,3.4627,9.5621,0.0214,0.0025,1,0,0.0501,1371,9.6057,0,0,0,1291,0 +203,4.8961,9.6290,0.0121,0.0018,1,0,0.0309,1003,9.6556,0,0,0,923,0 +204,4.4288,11.5445,0.0445,0.0056,1,0,0.0998,6638,11.7872,0,0,0,6558,0 +205,5.1489,9.4708,0.0168,0.0024,1,0,0.0345,985,9.5098,0,0,0,905,0 +206,5.2043,9.5487,0.0215,0.0031,1,0,0.0605,1789,9.5909,0,0,0,1709,0 +207,3.4560,9.9849,0.0273,0.0019,1,0,0.0579,1628,10.0303,0,0,0,1548,0 +208,3.5837,9.7297,0.0367,0.0040,1,0,0.0857,8894,9.7783,0,0,0,8814,0 +209,3.6613,9.7963,0.0270,0.0030,1,0,0.0600,3186,9.8401,0,0,0,3106,0 +210,3.6992,9.6657,0.0336,0.0032,1,0,0.0614,1648,9.7162,0,0,0,1568,0 +211,3.5565,9.9056,0.0368,0.0044,1,0,0.0733,1828,9.9605,0,0,0,1748,0 +212,4.7976,9.7778,0.0218,0.0029,1,0,0.0617,8446,9.8166,0,0,0,8366,0 +213,3.5955,10.0045,0.0903,0.0070,1,0,0.1405,1933,10.1193,0,0,0,1853,0 +214,3.5600,9.6157,0.0215,0.0026,1,0,0.0565,1775,9.6599,0,0,0,1695,0 +215,3.5511,9.6876,0.0213,0.0039,1,0,0.0639,2088,9.7261,0,0,0,2008,0 +216,3.6219,10.1076,0.0350,0.0032,1,0,0.0788,8887,10.1593,0,0,0,8807,0 +217,3.7111,9.8471,0.0327,0.0031,1,0,0.0642,1566,9.8966,0,0,0,1486,0 +218,4.5957,9.7270,0.0246,0.0023,1,0,0.0522,1488,9.7737,0,0,0,1408,0 +219,3.4742,9.5974,0.0182,0.0023,1,0,0.0459,1642,9.6370,0,0,0,1562,0 +220,5.2006,9.5938,0.0120,0.0015,1,0,0.0323,7311,9.6258,0,0,0,7231,0 +221,3.4710,9.5384,0.0196,0.0026,1,0,0.0423,2005,9.5807,0,0,0,1925,0 +222,3.4544,9.6327,0.0181,0.0513,1,0,0.1201,2714,9.7813,0,0,0,2634,0 +223,4.8891,9.5231,0.0145,0.0025,1,0,0.0495,2616,9.5550,0,0,0,2536,0 +224,4.4801,9.6439,0.0451,0.0060,1,0,0.1087,8221,9.7171,0,0,0,8141,0 +225,4.7955,9.4184,0.0190,0.0021,1,0,0.0527,3300,9.4594,0,0,0,3220,0 +226,3.4620,9.6057,0.0152,0.0025,1,0,0.0455,2734,9.6362,0,0,0,2654,0 +227,3.4327,9.5674,0.0262,0.0042,1,0,0.0430,2414,9.6171,0,0,0,2334,0 +228,4.9012,9.4849,0.0187,0.0023,1,0,0.0783,8862,9.5151,0,0,0,8782,0 +229,3.4313,9.5236,0.0419,0.0057,1,0,0.0808,2773,9.5895,0,0,0,2693,0 +230,5.1117,9.3970,0.0142,0.0031,1,0,0.0529,2445,9.4229,0,0,0,2365,0 +231,3.4342,9.5174,0.0431,0.0060,1,0,0.0958,2634,9.6015,0,0,0,2554,0 +232,5.0855,9.4175,0.0199,0.0021,1,0,0.0519,8380,9.4598,0,0,0,8300,0 +233,3.4107,9.4290,0.0124,0.0019,1,0,0.0244,1985,9.4620,0,0,0,1905,0 +234,4.3133,9.4257,0.0152,0.0026,1,0,0.0515,1943,9.4599,0,0,0,1863,0 +235,3.4398,9.5023,0.0219,0.0027,1,0,0.0419,2161,9.5462,0,0,0,2081,0 +236,3.4466,9.5626,0.0192,0.0020,1,0,0.0478,7719,9.6023,0,0,0,7639,0 +237,3.4169,9.5730,0.0186,0.0021,1,0,0.0408,2124,9.6126,0,0,0,2044,0 +238,4.4761,9.3670,0.0103,0.0017,1,0,0.0235,3741,9.3967,0,0,0,3661,0 +239,3.4247,9.5829,0.0379,0.0047,1,0,0.1001,2982,9.6783,0,0,0,2902,0 +240,4.4649,8.2617,0.0298,0.0022,1,0,0.0638,36422,8.3131,0,1,0,36342,0 +241,3.4276,9.4816,0.0150,0.0021,1,0,0.0408,5681,9.5178,0,0,0,5601,0 +242,4.8783,9.3891,0.0105,0.0015,1,0,0.0240,4067,9.4186,0,0,0,3987,0 +243,5.1133,9.4812,0.0220,0.0027,1,0,0.0576,3011,9.5395,0,0,0,2931,0 +244,3.4336,9.4644,0.0120,0.0016,1,0,0.0432,9487,9.4910,0,0,0,9407,0 +245,4.3405,9.4258,0.0096,0.0015,1,0,0.0233,1089,9.4527,0,0,0,1009,0 +246,3.4887,9.4485,0.0153,0.0020,1,0,0.0355,1164,9.4842,0,0,0,1084,0 +247,4.4959,9.6037,0.0298,0.0030,1,0,0.0519,970,9.6593,0,0,0,890,0 +248,3.4995,9.5873,0.0253,0.0034,1,0,0.0640,8288,9.6312,0,0,0,8208,0 +249,3.6728,9.6988,0.0140,0.0020,1,0,0.0376,912,9.7339,0,0,0,832,0 +250,3.4865,9.6071,0.0210,0.0022,1,0,0.0491,830,9.6439,0,0,0,750,0 +251,3.5288,9.6194,0.0210,0.0037,1,0,0.0623,1337,9.6577,0,0,0,1257,0 +252,3.4215,9.5492,0.0209,0.0029,1,0,0.0582,6595,9.5925,0,0,0,6515,0 +253,4.3982,9.6961,0.0464,0.0062,1,0,0.0966,867,9.7656,0,0,0,787,0 +254,5.2205,9.5300,0.0267,0.0027,1,0,0.0484,1089,9.5801,0,0,0,1009,0 +255,3.4054,9.5547,0.0128,0.0020,1,0,0.0308,964,9.5880,0,0,0,884,0 +256,4.5158,9.4180,0.0152,0.0014,1,0,0.0386,19961,9.4528,0,0,0,19881,0 +257,3.4266,9.5015,0.0174,0.0021,1,0,0.0497,1908,9.5407,0,0,0,1828,0 +258,3.4188,9.5300,0.0177,0.0020,1,0,0.0374,926,9.5688,0,0,0,846,0 +259,4.4630,9.4190,0.0101,0.0020,1,0,0.0210,889,9.4487,0,0,0,809,0 +260,3.3877,9.5590,0.0300,0.0029,1,0,0.0738,7528,9.6060,0,0,0,7448,0 +261,4.7995,9.4119,0.0104,0.0019,1,0,0.0251,1970,9.4418,0,0,0,1890,0 +262,4.8418,9.3786,0.0088,0.0017,1,0,0.0172,1025,9.4065,0,0,0,945,0 +263,3.4254,9.5097,0.0204,0.0026,1,0,0.0570,934,9.5526,0,0,0,854,0 +264,5.4209,9.3628,0.0100,0.0014,1,0,0.0295,7589,9.3912,0,0,0,7509,0 +265,4.3533,9.5300,0.0211,0.0023,1,0,0.0500,934,9.5676,0,0,0,854,0 +266,3.4604,9.5362,0.0166,0.0021,1,0,0.0417,894,9.5735,0,0,0,814,0 +267,3.4982,9.5585,0.0240,0.0030,1,0,0.0490,1146,9.6058,0,0,0,1066,0 +268,4.9890,9.4505,0.0208,0.0037,1,0,0.0544,6572,9.4936,0,0,0,6492,0 +269,3.4572,9.4685,0.0112,0.0018,1,0,0.0282,877,9.4997,0,0,0,797,0 +270,4.6365,9.4495,0.0087,0.0015,1,0,0.0173,1059,9.4769,0,0,0,979,0 +271,3.4164,9.6883,0.0350,0.0062,1,0,0.0915,1225,9.7585,0,0,0,1145,0 +272,4.5036,9.4202,0.0189,0.0026,1,0,0.0489,6758,9.4609,0,0,0,6678,0 +273,3.4255,9.4992,0.0182,0.0024,1,0,0.0448,2907,9.5390,0,0,0,2827,0 +274,4.8516,9.4627,0.0123,0.0020,1,0,0.0270,1058,9.4947,0,0,0,978,0 +275,3.4496,9.6098,0.0440,0.0065,1,0,0.0890,1048,9.6897,0,0,0,968,0 +276,5.0107,9.4157,0.0195,0.0023,1,0,0.0567,8339,9.4570,0,0,0,8259,0 +277,5.1941,9.5736,0.0319,0.0027,1,0,0.0488,1014,9.6286,0,0,0,934,0 +278,3.4521,9.4907,0.0159,0.0019,1,0,0.0290,1097,9.5271,0,0,0,1017,0 +279,3.4608,9.5664,0.0211,0.0025,1,0,0.0440,1168,9.6102,0,0,0,1088,0 +280,3.4918,9.8756,0.0338,0.0022,1,0,0.0845,8257,9.9275,0,0,0,8177,0 +281,3.6057,9.6659,0.0205,0.0020,1,0,0.0439,1213,9.7073,0,0,0,1133,0 +282,3.4706,9.6615,0.0242,0.0029,1,0,0.0602,976,9.7022,0,0,0,896,0 +283,3.4470,9.5608,0.0169,0.0035,1,0,0.0443,1023,9.6005,0,0,0,943,0 +284,3.4668,9.5559,0.0195,0.0025,1,0,0.0599,6883,9.5909,0,0,0,6803,0 +285,3.8080,9.5484,0.0204,0.0022,1,0,0.0392,1048,9.5908,0,0,0,968,0 +286,3.4307,9.5243,0.0188,0.0023,1,0,0.0471,2010,9.5647,0,0,0,1930,0 +287,3.6088,9.4770,0.0150,0.0020,1,0,0.0328,1489,9.5120,0,0,0,1409,0 +288,3.4567,9.5596,0.0165,0.0024,1,0,0.0576,7057,9.5973,0,0,0,6977,0 +289,3.4544,9.5218,0.0207,0.0025,1,0,0.0408,1352,9.5637,0,0,0,1272,0 +290,3.4364,9.5322,0.0175,0.0027,1,0,0.0400,1373,9.5715,0,0,0,1293,0 +291,5.0062,9.5190,0.0184,0.0027,1,0,0.0525,1120,9.5557,0,0,0,1040,0 +292,3.4440,9.5725,0.0204,0.0027,1,0,0.0560,8678,9.6147,0,0,0,8598,0 +293,3.4379,9.5664,0.0185,0.0022,1,0,0.0428,1762,9.6062,0,0,0,1682,0 +294,4.4565,9.5007,0.0189,0.0023,1,0,0.0388,1184,9.5401,0,0,0,1104,0 +295,3.4601,9.5978,0.0176,0.0039,1,0,0.0510,1405,9.6326,0,0,0,1325,0 +296,3.5029,9.5195,0.0189,0.0025,1,0,0.0524,7761,9.5600,0,0,0,7681,0 +297,3.3900,9.5088,0.0159,0.0019,1,0,0.0329,1342,9.5453,0,0,0,1262,0 +298,3.4451,9.5621,0.0192,0.0027,1,0,0.0449,1112,9.5975,0,0,0,1032,0 +299,3.4893,9.5706,0.0223,0.0032,1,0,0.0519,1121,9.6096,0,0,0,1041,0 +300,3.4396,8.4293,0.0379,0.0025,1,0,0.0858,48619,8.4830,0,1,0,48539,0 +301,4.2735,9.4760,0.0128,0.0017,1,0,0.0290,3512,9.5087,0,0,0,3432,0 +302,3.4770,9.5650,0.0200,0.0020,1,0,0.0502,3682,9.6062,0,0,0,3602,0 +303,3.4453,9.5732,0.0190,0.0023,1,0,0.0527,2310,9.6135,0,0,0,2230,0 +304,5.3301,9.4510,0.0116,0.0018,1,0,0.0345,12262,9.4767,0,0,0,12182,0 +305,3.4487,9.7074,0.0447,0.0066,1,0,0.1028,3301,9.7770,0,0,0,3221,0 +306,4.6986,9.4160,0.0197,0.0035,1,0,0.0456,1933,9.4595,0,0,0,1853,0 +307,3.4908,9.7790,0.0563,0.0086,1,0,0.0982,1612,9.8645,0,0,0,1532,0 +308,3.6894,9.6297,0.0298,0.0033,1,0,0.0663,8717,9.6949,0,0,0,8637,0 +309,3.4980,9.5976,0.0203,0.0023,1,0,0.0496,1546,9.6399,0,0,0,1466,0 +310,3.4989,9.6305,0.0201,0.0028,1,0,0.0457,1270,9.6668,0,0,0,1190,0 +311,3.8297,9.7833,0.0276,0.0030,1,0,0.0517,1309,9.8275,0,0,0,1229,0 +312,4.8582,9.4748,0.0157,0.0020,1,0,0.0524,8686,9.5068,0,0,0,8606,0 +313,3.7496,9.6535,0.0477,0.0063,1,0,0.0974,973,9.7295,0,0,0,893,0 +314,4.0547,9.4581,0.0171,0.0027,1,0,0.0536,908,9.4980,0,0,0,828,0 +315,3.7325,9.8181,0.0280,0.0037,1,0,0.0442,901,9.8640,0,0,0,821,0 +316,3.7467,9.5654,0.0192,0.0027,1,0,0.0629,6487,9.6081,0,0,0,6407,0 +317,3.7190,9.5989,0.0230,0.0022,1,0,0.0456,956,9.6443,0,0,0,876,0 +318,3.7179,9.5399,0.0223,0.0026,1,0,0.0474,1214,9.5784,0,0,0,1134,0 +319,4.7363,9.4661,0.0150,0.0020,1,0,0.0316,1062,9.5027,0,0,0,982,0 +320,4.5561,9.5448,0.0195,0.0022,1,0,0.0562,7229,9.5872,0,0,0,7149,0 +321,3.6832,9.4790,0.0166,0.0023,1,0,0.0576,1579,9.5123,0,0,0,1499,0 +322,5.5532,9.4400,0.0111,0.0018,1,0,0.0243,1025,9.4716,0,0,0,945,0 +323,3.7317,9.5465,0.0168,0.0026,1,0,0.0461,966,9.5865,0,0,0,886,0 +324,3.7257,9.5246,0.0210,0.0026,1,0,0.0556,7624,9.5686,0,0,0,7544,0 +325,4.0710,9.5627,0.0209,0.0021,1,0,0.0485,1992,9.6050,0,0,0,1912,0 +326,3.7209,9.4929,0.0189,0.0020,1,0,0.0396,834,9.5331,0,0,0,754,0 +327,3.7066,9.5286,0.0211,0.0024,1,0,0.0392,870,9.5720,0,0,0,790,0 +328,3.6993,9.4962,0.0187,0.0026,1,0,0.0577,7652,9.5377,0,0,0,7572,0 +329,3.6606,9.5730,0.0220,0.0024,1,0,0.0163,897,9.6167,0,0,0,817,0 +330,3.7143,9.7400,0.0616,0.0070,1,0,0.1091,1057,9.8254,0,0,0,977,0 +331,5.3662,9.4584,0.0222,0.0026,1,0,0.0449,1963,9.5042,0,0,0,1883,0 +332,3.9728,9.5563,0.0193,0.0022,1,0,0.0459,6794,9.5970,0,0,0,6714,0 +333,3.7094,9.5635,0.0268,0.0028,1,0,0.0181,892,9.6134,0,0,0,812,0 +334,3.7758,9.7840,0.0553,0.0045,1,0,0.1013,995,9.8607,0,0,0,915,0 +335,4.7823,9.4650,0.0216,0.0028,1,0,0.0449,1925,9.5096,0,0,0,1845,0 +336,4.8623,9.5431,0.0251,0.0038,1,0,0.0615,7739,9.5912,0,0,0,7659,0 +337,3.6944,9.5218,0.0170,0.0021,1,0,0.0410,2740,9.5602,0,0,0,2660,0 +338,5.3845,9.3908,0.0090,0.0019,1,0,0.0234,1737,9.4202,0,0,0,1657,0 +339,3.7320,9.7056,0.0157,0.0025,1,0,0.0415,1080,9.7430,0,0,0,1000,0 +340,3.4373,9.7115,0.0203,0.0024,1,0,0.0508,8358,9.7530,0,0,0,8278,0 +341,4.6671,9.5183,0.0201,0.0021,1,0,0.0341,1112,9.5595,0,0,0,1032,0 +342,3.4686,9.7034,0.0286,0.0023,1,0,0.0513,1128,9.7499,0,0,0,1048,0 +343,3.4612,9.5457,0.0170,0.0025,1,0,0.0395,1278,9.5849,0,0,0,1198,0 +344,3.4527,9.5475,0.0290,0.0031,1,0,0.0622,8378,9.5990,0,0,0,8298,0 +345,4.6004,9.4492,0.0150,0.0018,1,0,0.0595,1126,9.4766,0,0,0,1046,0 +346,3.4293,9.6206,0.0426,0.0053,1,0,0.0870,935,9.6849,0,0,0,855,0 +347,4.8900,9.4297,0.0165,0.0023,1,0,0.0350,1065,9.4687,0,0,0,985,0 +348,3.4278,9.6164,0.0423,0.0065,1,0,0.1116,7151,9.6834,0,0,0,7071,0 +349,5.0121,9.5127,0.0288,0.0036,1,0,0.0497,1857,9.5675,0,0,0,1777,0 +350,3.4663,9.7220,0.0408,0.0060,1,0,0.0982,2071,9.7835,0,0,0,1991,0 +351,5.4277,9.6677,0.0294,0.0035,1,0,0.0558,1879,9.7152,0,0,0,1799,0 +352,3.4898,9.6578,0.0278,0.0026,1,0,0.0839,22798,9.7025,0,0,0,22718,0 +353,3.4167,9.6012,0.0130,0.0021,1,0,0.0355,2975,9.6291,0,0,0,2895,0 +354,3.6126,9.6227,0.0228,0.0024,1,0,0.0535,2392,9.6677,0,0,0,2312,0 +355,3.5333,9.7056,0.0198,0.0031,1,0,0.0497,1760,9.7487,0,0,0,1680,0 +356,3.4992,9.7224,0.0225,0.0027,1,0,0.0588,8755,9.7611,0,0,0,8675,0 +357,4.4115,9.5448,0.0173,0.0044,1,0,0.0458,2508,9.5794,0,0,0,2428,0 +358,3.5775,9.5690,0.0227,0.0023,1,0,0.0514,2126,9.6135,0,0,0,2046,0 +359,5.0785,9.3997,0.0108,0.0019,1,0,0.0247,2633,9.4302,0,0,0,2553,0 +360,3.4905,8.6635,0.0915,0.0055,1,0,0.1787,46353,8.7791,0,1,0,46273,0 +361,5.6089,9.6788,0.0219,0.0025,1,0,0.0545,4322,9.7235,0,0,0,4242,0 +362,3.4808,9.5567,0.0199,0.0024,1,0,0.0508,4228,9.5927,0,0,0,4148,0 +363,3.5923,9.6683,0.0235,0.0023,1,0,0.0368,4656,9.7149,0,0,0,4576,0 +364,5.2425,9.6017,0.0143,0.0018,1,0,0.0423,8846,9.6355,0,0,0,8766,0 +365,3.5328,9.6948,0.0462,0.0058,1,0,0.1018,1021,9.7647,0,0,0,941,0 +366,4.8436,9.4250,0.0199,0.0023,1,0,0.0452,1643,9.4668,0,0,0,1563,0 +367,4.5323,9.6798,0.0255,0.0038,1,0,0.0833,1585,9.7248,0,0,0,1505,0 +368,3.4873,9.9076,0.0304,0.0037,1,0,0.0741,8729,9.9589,0,0,0,8649,0 +369,3.2607,9.6858,0.0215,0.0024,1,0,0.0505,2297,9.7298,0,0,0,2217,0 +370,3.5136,9.6533,0.0205,0.0035,1,0,0.0514,1068,9.6913,0,0,0,988,0 +371,3.4498,9.6738,0.0276,0.0035,1,0,0.0527,1028,9.7193,0,0,0,948,0 +372,4.0680,9.8517,0.0296,0.0022,1,0,0.0645,8299,9.8981,0,0,0,8219,0 +373,3.8365,9.6193,0.0202,0.0031,1,0,0.0533,1036,9.6632,0,0,0,956,0 +374,4.9075,9.6254,0.0287,0.0026,1,0,0.1850,849,9.6765,0,0,0,769,0 +375,3.7590,9.7318,0.0203,0.0020,1,0,0.0550,1193,9.7735,0,0,0,1113,0 +376,3.7799,9.5799,0.0258,0.0023,1,0,0.0644,8387,9.6273,0,0,0,8307,0 +377,3.5526,9.5472,0.0205,0.0025,1,0,0.0415,857,9.5896,0,0,0,777,0 +378,4.8400,9.6499,0.0160,0.0018,1,0,0.0317,831,9.6860,0,0,0,751,0 +379,3.4865,9.8764,0.0498,0.0048,1,0,0.0952,824,9.9825,0,0,0,744,0 +380,3.3810,9.6234,0.0215,0.0025,1,0,0.0533,6482,9.6674,0,0,0,6402,0 +381,3.4891,9.5447,0.0176,0.0020,1,0,0.0396,887,9.5829,0,0,0,807,0 +382,3.5462,9.7234,0.0225,0.0022,1,0,0.0393,1079,9.7676,0,0,0,999,0 +383,3.5305,9.7201,0.0164,0.0024,1,0,0.0418,979,9.7582,0,0,0,899,0 +384,5.0895,9.5565,0.0124,0.0015,1,0,0.0418,7730,9.5827,0,0,0,7650,0 +385,3.4615,9.6192,0.0450,0.0061,1,0,0.1032,1545,9.6887,0,0,0,1465,0 +386,3.6284,9.5917,0.0201,0.0021,1,0,0.0488,940,9.6273,0,0,0,860,0 +387,3.4764,9.5047,0.0186,0.0022,1,0,0.0428,886,9.5388,0,0,0,806,0 +388,3.7455,9.5301,0.0114,0.0016,1,0,0.0344,7514,9.5607,0,0,0,7434,0 +389,3.4646,9.7092,0.0200,0.0023,1,0,0.0472,2052,9.7508,0,0,0,1972,0 +390,5.3906,9.5327,0.0096,0.0015,1,0,0.0274,870,9.5562,0,0,0,790,0 +391,3.4508,9.6891,0.0436,0.0056,1,0,0.0922,1014,9.7567,0,0,0,934,0 +392,3.9091,9.4418,0.0188,0.0022,1,0,0.0526,7593,9.4758,0,0,0,7513,0 +393,3.4857,9.6050,0.0190,0.0027,1,0,0.0416,1045,9.6464,0,0,0,965,0 +394,3.5892,9.5276,0.0240,0.0025,1,0,0.0498,2148,9.5733,0,0,0,2068,0 +395,3.4024,9.5527,0.0153,0.0022,1,0,0.0346,856,9.5830,0,0,0,776,0 +396,3.5170,9.6792,0.0377,0.0052,1,0,0.1154,6145,9.7457,0,0,0,6065,0 +397,3.3976,9.4492,0.0198,0.0022,1,0,0.0442,1090,9.4913,0,0,0,1010,0 +398,3.4600,9.5615,0.0175,0.0023,1,0,0.0442,972,9.6012,0,0,0,892,0 +399,3.4428,9.6415,0.0192,0.0020,1,0,0.0527,1546,9.6815,0,0,0,1466,0 +400,3.5823,9.7472,0.0245,0.0026,1,0,0.0594,8128,9.7885,0,0,0,8048,0 +401,4.6301,9.5164,0.0206,0.0024,1,0,0.0450,2646,9.5580,0,0,0,2566,0 +402,3.4958,9.6788,0.0223,0.0023,1,0,0.0533,1901,9.7230,0,0,0,1821,0 +403,3.5985,9.4165,0.0103,0.0018,1,0,0.0210,1097,9.4460,0,0,0,1017,0 +404,3.4935,9.5211,0.0217,0.0022,1,0,0.0529,8451,9.5642,0,0,0,8371,0 +405,3.5602,9.4953,0.0227,0.0021,1,0,0.0464,1518,9.5393,0,0,0,1438,0 +406,4.8767,9.5679,0.0111,0.0015,1,0,0.0251,1713,9.5985,0,0,0,1633,0 +407,4.4582,9.5484,0.0182,0.0020,1,0,0.0436,1760,9.5881,0,0,0,1680,0 +408,3.6222,9.6537,0.0196,0.0019,1,0,0.0490,8371,9.6938,0,0,0,8291,0 +409,5.4549,9.3810,0.0097,0.0016,1,0,0.0240,1615,9.4099,0,0,0,1535,0 +410,3.4892,9.5157,0.0183,0.0022,1,0,0.0349,1208,9.5554,0,0,0,1128,0 +411,4.6682,9.4489,0.0113,0.0020,1,0,0.0233,1376,9.4807,0,0,0,1296,0 +412,3.5163,9.6255,0.0220,0.0024,1,0,0.0540,6701,9.6692,0,0,0,6621,0 +413,3.6840,9.6900,0.0196,0.0022,1,0,0.0612,1657,9.7253,0,0,0,1577,0 +414,3.5323,9.6999,0.0190,0.0021,1,0,0.0507,2007,9.7403,0,0,0,1927,0 +415,3.4597,9.6273,0.0263,0.0032,1,0,0.0562,1626,9.6705,0,0,0,1546,0 +416,4.4269,9.5231,0.0174,0.0021,1,0,0.0515,7765,9.5610,0,0,0,7685,0 +417,3.5064,9.7241,0.0454,0.0067,1,0,0.1038,2307,9.7945,0,0,0,2227,0 +418,4.4455,9.5777,0.0399,0.0055,1,0,0.1015,1800,9.6413,0,0,0,1720,0 +419,4.6736,9.4124,0.0188,0.0024,1,0,0.0595,1665,9.4529,0,0,0,1585,0 +420,3.5256,8.3905,0.0312,0.0024,1,0,0.0853,55099,8.4440,0,1,0,55019,0 +421,5.0687,9.4287,0.0118,0.0015,1,0,0.0277,6056,9.4593,0,0,0,5976,0 +422,3.4817,9.6282,0.0439,0.0056,1,0,0.1301,4325,9.6972,0,0,0,4245,0 +423,4.6821,9.4377,0.0238,0.0032,1,0,0.0752,2939,9.4875,0,0,0,2859,0 +424,3.4882,9.6455,0.0425,0.0063,1,0,0.1039,8824,9.7122,0,0,0,8744,0 +425,4.8408,9.4088,0.0175,0.0031,1,0,0.0530,1042,9.4507,0,0,0,962,0 +426,3.4664,9.4784,0.0168,0.0026,1,0,0.0395,1664,9.5173,0,0,0,1584,0 +427,5.6912,9.6228,0.0232,0.0035,1,0,0.0439,1173,9.6640,0,0,0,1093,0 +428,3.5383,9.7036,0.0588,0.0069,1,0,0.1241,6472,9.7859,0,0,0,6392,0 +429,4.9596,9.5757,0.0297,0.0027,1,0,0.0599,1108,9.6227,0,0,0,1028,0 +430,3.5609,9.6695,0.0244,0.0035,1,0,0.0640,2856,9.7109,0,0,0,2776,0 +431,3.5678,9.8997,0.0290,0.0037,1,0,0.0634,1921,9.9462,0,0,0,1841,0 +432,3.4912,9.5387,0.0216,0.0021,1,0,0.0563,8914,9.5818,0,0,0,8834,0 +433,4.2554,9.4603,0.0120,0.0019,1,0,0.0245,2304,9.4923,0,0,0,2224,0 +434,4.4278,9.5161,0.0160,0.0021,1,0,0.0178,1280,9.5530,0,0,0,1200,0 +435,3.5008,9.6557,0.0405,0.0060,1,0,0.0975,1419,9.7205,0,0,0,1339,0 +436,3.9845,9.4392,0.0179,0.0027,1,0,0.0579,8415,9.4793,0,0,0,8335,0 +437,4.3687,9.5039,0.0170,0.0023,1,0,0.0414,945,9.5421,0,0,0,865,0 +438,3.4136,9.5647,0.0215,0.0030,1,0,0.0393,996,9.6084,0,0,0,916,0 +439,5.2844,9.4022,0.0112,0.0014,1,0,0.0175,845,9.4318,0,0,0,765,0 +440,3.4940,9.4930,0.0173,0.0026,1,0,0.0426,8226,9.5310,0,0,0,8146,0 +441,3.4809,9.5347,0.0209,0.0022,1,0,0.0464,922,9.5764,0,0,0,842,0 +442,3.4920,9.4903,0.0177,0.0026,1,0,0.0385,835,9.5290,0,0,0,755,0 +443,3.4424,9.5396,0.0200,0.0020,1,0,0.0380,909,9.5807,0,0,0,829,0 +444,3.4681,9.5132,0.0184,0.0025,1,0,0.0443,6437,9.5529,0,0,0,6357,0 +445,3.5506,9.5423,0.0208,0.0025,1,0,0.0474,893,9.5787,0,0,0,813,0 +446,4.5706,9.4217,0.0102,0.0015,1,0,0.0238,1320,9.4528,0,0,0,1240,0 +447,4.4741,9.4639,0.0145,0.0022,1,0,0.0374,1251,9.4989,0,0,0,1171,0 +448,3.4898,9.5690,0.0219,0.0021,1,0,0.0641,21784,9.6121,0,0,0,21704,0 +449,4.3657,9.4247,0.0099,0.0015,1,0,0.0238,2667,9.4530,0,0,0,2587,0 +450,3.4411,9.6179,0.0480,0.0051,1,0,0.1894,1012,9.6960,0,0,0,932,0 +451,4.7837,9.4658,0.0178,0.0027,1,0,0.0582,1020,9.5027,0,0,0,940,0 +452,3.4737,9.6056,0.0431,0.0061,1,0,0.1085,7606,9.6731,0,0,0,7526,0 +453,4.7534,9.4067,0.0159,0.0022,1,0,0.0398,2002,9.4433,0,0,0,1922,0 +454,3.4982,9.5943,0.0425,0.0059,1,0,0.0937,865,9.6616,0,0,0,785,0 +455,4.4751,9.3960,0.0160,0.0027,1,0,0.0307,864,9.4340,0,0,0,784,0 +456,3.4989,9.5859,0.0468,0.0070,1,0,0.1169,7758,9.6560,0,0,0,7678,0 +457,5.0866,9.4836,0.0253,0.0034,1,0,0.0531,890,9.5302,0,0,0,810,0 +458,3.4945,9.5716,0.0355,0.0073,1,0,0.1072,1718,9.6414,0,0,0,1638,0 +459,5.0274,9.4721,0.0184,0.0022,1,0,0.0368,1051,9.5118,0,0,0,971,0 +460,3.4760,9.6315,0.0448,0.0060,1,0,0.1194,6710,9.6969,0,0,0,6630,0 +461,3.6093,9.4579,0.0187,0.0027,1,0,0.0460,864,9.4982,0,0,0,784,0 +462,3.4065,9.6122,0.0422,0.0063,1,0,0.0925,1177,9.6792,0,0,0,1097,0 +463,5.1271,9.4635,0.0170,0.0024,1,0,0.0368,1073,9.5020,0,0,0,993,0 +464,5.1577,9.5724,0.0218,0.0024,1,0,0.0645,8238,9.6070,0,0,0,8158,0 +465,3.4844,9.4637,0.0129,0.0017,1,0,0.0290,2161,9.4965,0,0,0,2081,0 +466,4.7820,9.3966,0.0091,0.0024,1,0,0.0180,972,9.4255,0,0,0,892,0 +467,4.3669,9.4346,0.0154,0.0023,1,0,0.0302,979,9.4709,0,0,0,899,0 +468,3.4500,9.5130,0.0217,0.0022,1,0,0.0434,8323,9.5558,0,0,0,8243,0 +469,5.3483,9.3895,0.0104,0.0014,1,0,0.0194,1038,9.4188,0,0,0,958,0 +470,4.3572,9.4606,0.0150,0.0023,1,0,0.0387,1061,9.4963,0,0,0,981,0 +471,3.4113,9.4972,0.0158,0.0018,1,0,0.0402,1213,9.5325,0,0,0,1133,0 +472,4.3823,9.4709,0.0178,0.0022,1,0,0.0442,8152,9.5098,0,0,0,8072,0 +473,4.9903,9.5737,0.0214,0.0034,1,0,0.0668,1739,9.6122,0,0,0,1659,0 +474,3.4381,9.4633,0.0107,0.0016,1,0,0.0210,981,9.4932,0,0,0,901,0 +475,3.4532,9.5702,0.0264,0.0030,1,0,0.0428,1049,9.6188,0,0,0,969,0 +476,3.4809,9.6221,0.0422,0.0068,1,0,0.1088,7404,9.7237,0,0,0,7324,0 +477,4.9620,9.5207,0.0158,0.0023,1,0,0.0327,1134,9.5586,0,0,0,1054,0 +478,3.4151,9.6339,0.0422,0.0059,1,0,0.0987,2606,9.7000,0,0,0,2526,0 +479,4.5157,9.4005,0.0165,0.0022,1,0,0.0367,2009,9.4392,0,0,0,1929,0 +480,3.4119,8.3865,0.0298,0.0022,1,0,0.0645,36686,8.4377,0,1,0,36606,0 +481,4.7487,9.4389,0.0107,0.0017,1,0,0.0258,3917,9.4690,0,0,0,3837,0 +482,3.4227,9.4911,0.0168,0.0018,1,0,0.0404,4026,9.5285,0,0,0,3946,0 +483,3.4420,9.4876,0.0168,0.0026,1,0,0.0442,4381,9.5253,0,0,0,4301,0 +484,4.4385,9.4532,0.0121,0.0018,1,0,0.0337,9211,9.4851,0,0,0,9131,0 +485,3.4196,9.4711,0.0172,0.0027,1,0,0.0507,3998,9.5041,0,0,0,3918,0 +486,4.4985,9.4659,0.0152,0.0025,1,0,0.0515,1825,9.5050,0,0,0,1745,0 +487,3.5243,9.6058,0.0248,0.0029,1,0,0.0495,1698,9.6479,0,0,0,1618,0 +488,5.5571,9.6436,0.0230,0.0027,1,0,0.0621,7930,9.6999,0,0,0,7850,0 +489,3.4939,9.5490,0.0177,0.0021,1,0,0.0409,934,9.5877,0,0,0,854,0 +490,3.7291,9.6578,0.0143,0.0026,1,0,0.0311,1670,9.6942,0,0,0,1590,0 +491,3.7804,9.7367,0.0251,0.0032,1,0,0.0569,1314,9.7795,0,0,0,1234,0 +492,3.7008,9.5467,0.0210,0.0025,1,0,0.0619,6690,9.5911,0,0,0,6610,0 +493,3.7493,9.5647,0.0194,0.0022,1,0,0.0391,951,9.6053,0,0,0,871,0 +494,3.5016,9.5002,0.0164,0.0025,1,0,0.0346,1284,9.5385,0,0,0,1204,0 +495,5.1098,9.4324,0.0226,0.0018,1,0,0.0489,1229,9.4711,0,0,0,1149,0 +496,3.4303,9.4334,0.0111,0.0017,1,0,0.0360,8569,9.4648,0,0,0,8489,0 +497,5.8490,9.4549,0.0204,0.0023,1,0,0.0540,3046,9.4987,0,0,0,2966,0 +498,3.4158,9.4569,0.0085,0.0022,1,0,0.0296,1797,9.4853,0,0,0,1717,0 +499,5.0643,9.4417,0.0185,0.0020,1,0,0.0449,1490,9.4821,0,0,0,1410,0 +500,3.4350,9.4197,0.0116,0.0017,1,0,0.0293,8381,9.4508,0,0,0,8301,0 +501,4.3783,9.3814,0.0136,0.0022,1,0,0.0238,1434,9.4100,0,0,0,1354,0 +502,3.4218,9.5838,0.0420,0.0057,1,0,0.0952,1683,9.6504,0,0,0,1603,0 +503,4.5737,9.3938,0.0165,0.0019,1,0,0.0351,1797,9.4317,0,0,0,1717,0 +504,3.4620,9.4647,0.0200,0.0018,1,0,0.0410,8516,9.5053,0,0,0,8436,0 +505,3.4740,9.4925,0.0202,0.0020,1,0,0.0400,1580,9.5332,0,0,0,1500,0 +506,4.9022,9.4273,0.0140,0.0022,1,0,0.0527,1325,9.4664,0,0,0,1245,0 +507,3.4810,9.4556,0.0112,0.0017,1,0,0.0365,1540,9.4863,0,0,0,1460,0 +508,5.1974,9.4930,0.0217,0.0029,1,0,0.0480,7270,9.5364,0,0,0,7190,0 +509,3.4627,9.4890,0.0135,0.0021,1,0,0.0298,1508,9.5231,0,0,0,1428,0 +510,3.3912,9.4120,0.0090,0.0020,1,0,0.0312,2333,9.4393,0,0,0,2253,0 +511,3.4886,9.6835,0.0512,0.0073,1,0,0.1136,1858,9.7617,0,0,0,1778,0 +512,4.8926,9.4240,0.0204,0.0027,1,0,0.0559,21105,9.4664,0,0,0,21025,0 +513,4.4080,9.5098,0.0155,0.0022,1,0,0.0552,3245,9.5405,0,0,0,3165,0 +514,3.5467,9.5697,0.0200,0.0027,1,0,0.0431,2022,9.6121,0,0,0,1942,0 +515,4.4755,9.5997,0.0498,0.0049,1,0,0.0996,2257,9.6825,0,0,0,2177,0 +516,4.9928,9.4254,0.0231,0.0022,1,0,0.0457,8839,9.4699,0,0,0,8759,0 +517,3.4518,9.5055,0.0185,0.0024,1,0,0.0498,2789,9.5398,0,0,0,2709,0 +518,3.4422,9.5448,0.0211,0.0030,1,0,0.0618,2553,9.5818,0,0,0,2473,0 +519,3.5885,9.6225,0.0265,0.0028,1,0,0.0501,2497,9.6710,0,0,0,2417,0 +520,5.4376,9.6081,0.0163,0.0019,1,0,0.0404,8259,9.6451,0,0,0,8179,0 +521,3.4965,9.6698,0.0471,0.0057,1,0,0.1180,2041,9.7415,0,0,0,1961,0 +522,5.3854,9.4525,0.0230,0.0030,1,0,0.0572,1756,9.4921,0,0,0,1676,0 +523,5.3720,9.6055,0.0299,0.0038,1,0,0.0620,1843,9.6541,0,0,0,1763,0 +524,3.5061,9.5426,0.0147,0.0022,1,0,0.0377,7230,9.5784,0,0,0,7150,0 +525,4.8293,9.5323,0.0226,0.0021,1,0,0.0456,1833,9.5765,0,0,0,1753,0 +526,3.5192,9.6490,0.0508,0.0072,1,0,0.1141,3126,9.7785,0,0,0,3046,0 +527,5.3079,9.5594,0.0264,0.0026,1,0,0.0631,2579,9.6025,0,0,0,2499,0 +528,3.5232,9.5231,0.0128,0.0018,1,0,0.0410,9597,9.5561,0,0,0,9517,0 +529,3.4903,9.5906,0.0268,0.0026,1,0,0.0648,4477,9.6395,0,0,0,4397,0 +530,5.6065,9.3957,0.0097,0.0016,1,0,0.0338,3058,9.4243,0,0,0,2978,0 +531,3.5227,9.6461,0.0475,0.0059,1,0,0.1129,2920,9.7188,0,0,0,2840,0 +532,4.6791,9.4619,0.0227,0.0025,1,0,0.0690,9369,9.5070,0,0,0,9289,0 +533,4.4344,9.5353,0.0183,0.0020,1,0,0.0521,2954,9.5755,0,0,0,2874,0 +534,3.4405,9.4959,0.0203,0.0021,1,0,0.0515,2827,9.5380,0,0,0,2747,0 +535,4.0265,9.5780,0.0257,0.0031,1,0,0.0672,3018,9.6205,0,0,0,2938,0 +536,3.4751,9.5718,0.0199,0.0027,1,0,0.0555,9203,9.6140,0,0,0,9123,0 +537,5.6295,9.4251,0.0095,0.0015,1,0,0.0246,2349,9.4538,0,0,0,2269,0 +538,3.5231,9.6826,0.0480,0.0061,1,0,0.1105,1992,9.7555,0,0,0,1912,0 +539,4.8039,9.4904,0.0215,0.0024,1,0,0.0510,2005,9.5336,0,0,0,1925,0 +540,3.4653,8.3961,0.0388,0.0023,1,0,0.0853,57155,8.4570,0,1,0,57075,0 +541,5.1956,9.4665,0.0161,0.0018,1,0,0.0387,3779,9.5027,0,0,0,3699,0 +542,4.4029,9.5160,0.0171,0.0020,1,0,0.0411,3187,9.5530,0,0,0,3107,0 +543,3.4870,9.5079,0.0218,0.0024,1,0,0.0428,2649,9.5518,0,0,0,2569,0 +544,5.6525,9.3977,0.0121,0.0021,1,0,0.0366,7743,9.4295,0,0,0,7663,0 +545,3.5002,9.5020,0.0170,0.0028,1,0,0.0561,2074,9.5413,0,0,0,1994,0 +546,5.5498,9.4292,0.0095,0.0014,1,0,0.0207,2458,9.4575,0,0,0,2378,0 +547,3.5065,9.6045,0.0265,0.0032,1,0,0.0558,2610,9.6490,0,0,0,2530,0 +548,3.5131,9.6034,0.0290,0.0034,1,0,0.0654,8278,9.6505,0,0,0,8198,0 +549,3.4031,9.7967,0.0198,0.0030,1,0,0.0561,2285,9.8401,0,0,0,2205,0 +550,3.5902,9.6880,0.0238,0.0047,1,0,0.0465,966,9.7335,0,0,0,886,0 +551,6.2855,9.7020,0.0260,0.0032,1,0,0.0497,861,9.7446,0,0,0,781,0 +552,3.5459,9.6577,0.0518,0.0060,1,0,0.1243,7741,9.7347,0,0,0,7661,0 +553,4.1638,9.4968,0.0173,0.0026,1,0,0.0428,921,9.5296,0,0,0,841,0 +554,3.4504,9.6644,0.0371,0.0072,1,0,0.1108,1913,9.7270,0,0,0,1833,0 +555,4.8898,9.5103,0.0285,0.0035,1,0,0.0577,940,9.5578,0,0,0,860,0 +556,3.7772,9.5646,0.0237,0.0033,1,0,0.0585,6321,9.6057,0,0,0,6241,0 +557,3.7245,9.5169,0.0206,0.0027,1,0,0.0449,990,9.5595,0,0,0,910,0 +558,3.4523,9.5162,0.0197,0.0030,1,0,0.0472,1437,9.5587,0,0,0,1357,0 +559,3.5973,9.5101,0.0185,0.0029,1,0,0.0358,987,9.5501,0,0,0,907,0 +560,3.4615,9.5624,0.0198,0.0030,1,0,0.0643,8408,9.5981,0,0,0,8328,0 +561,3.4192,9.5411,0.0193,0.0026,1,0,0.0481,2962,9.5758,0,0,0,2882,0 +562,3.6722,9.4028,0.0120,0.0018,1,0,0.0305,2258,9.4350,0,0,0,2178,0 +563,4.3552,9.4994,0.0180,0.0025,1,0,0.0407,1466,9.5388,0,0,0,1386,0 +564,3.4210,9.5737,0.0253,0.0032,1,0,0.0599,8516,9.6155,0,0,0,8436,0 +565,4.5868,9.4108,0.0152,0.0021,1,0,0.0313,1898,9.4465,0,0,0,1818,0 +566,4.4263,9.4802,0.0179,0.0023,1,0,0.0518,1953,9.5203,0,0,0,1873,0 +567,3.4281,9.5453,0.0226,0.0027,1,0,0.0474,2144,9.5892,0,0,0,2064,0 +568,5.2528,9.4053,0.0113,0.0016,1,0,0.0285,8468,9.4350,0,0,0,8388,0 +569,3.6365,9.4792,0.0186,0.0022,1,0,0.0356,1842,9.5180,0,0,0,1762,0 +570,3.4218,9.5275,0.0225,0.0024,1,0,0.0403,1404,9.5712,0,0,0,1324,0 +571,3.4545,9.5137,0.0202,0.0026,1,0,0.0395,1616,9.5555,0,0,0,1536,0 +572,3.3859,9.5255,0.0238,0.0031,1,0,0.0446,7364,9.5718,0,0,0,7284,0 +573,4.4954,9.3944,0.0104,0.0016,1,0,0.0217,1540,9.4236,0,0,0,1460,0 +574,5.1534,9.5397,0.0235,0.0027,1,0,0.0636,2462,9.6000,0,0,0,2382,0 +575,3.5346,9.5011,0.0131,0.0022,1,0,0.0355,2330,9.5349,0,0,0,2250,0 +576,4.6568,9.3986,0.0109,0.0015,1,0,0.0276,8080,9.4284,0,0,0,8000,0 +577,4.7886,9.4825,0.0253,0.0037,1,0,0.0624,3032,9.5212,0,0,0,2952,0 +578,3.4405,9.6073,0.0410,0.0062,1,0,0.0930,2332,9.6828,0,0,0,2252,0 +579,4.0293,9.5705,0.0149,0.0019,1,0,0.0380,2077,9.6064,0,0,0,1997,0 +580,3.4709,9.7016,0.0472,0.0055,1,0,0.1090,9027,9.7814,0,0,0,8947,0 +581,5.3730,9.4404,0.0204,0.0024,1,0,0.0405,2468,9.4826,0,0,0,2388,0 +582,4.3192,9.4642,0.0175,0.0021,1,0,0.0351,2259,9.5023,0,0,0,2179,0 +583,3.4468,9.5907,0.0304,0.0035,1,0,0.0558,2348,9.6418,0,0,0,2268,0 +584,3.4152,9.5320,0.0668,0.0057,1,0,0.0963,8256,9.6502,0,0,0,8176,0 +585,4.5362,9.4386,0.0097,0.0018,1,0,0.0381,1849,9.4689,0,0,0,1769,0 +586,4.7373,9.4120,0.0183,0.0023,1,0,0.0508,1890,9.4551,0,0,0,1810,0 +587,3.4430,9.5871,0.0384,0.0057,1,0,0.0896,1825,9.6585,0,0,0,1745,0 +588,4.9247,9.3892,0.0121,0.0023,1,0,0.0423,7257,9.4208,0,0,0,7177,0 +589,3.4139,9.6222,0.0439,0.0056,1,0,0.1022,1741,9.7013,0,0,0,1661,0 +590,5.2768,9.3885,0.0166,0.0025,1,0,0.0373,2883,9.4263,0,0,0,2803,0 +591,3.5890,9.5623,0.0218,0.0030,1,0,0.0518,2366,9.6060,0,0,0,2286,0 +592,3.5027,9.5433,0.0231,0.0027,1,0,0.0543,9442,9.5886,0,0,0,9362,0 +593,3.5465,9.5575,0.0200,0.0026,1,0,0.0444,4331,9.5986,0,0,0,4251,0 +594,3.4930,9.6408,0.0135,0.0020,1,0,0.0399,3593,9.6699,0,0,0,3513,0 +595,3.6063,9.9045,0.0380,0.0042,1,0,0.0677,3610,9.9612,0,0,0,3530,0 +596,3.6757,9.8326,0.0285,0.0026,1,0,0.0638,9444,9.8843,0,0,0,9364,0 +597,3.5895,9.8130,0.0546,0.0064,1,0,0.1192,3085,9.8982,0,0,0,3005,0 +598,5.1585,9.5787,0.0258,0.0024,1,0,0.0520,3009,9.6267,0,0,0,2929,0 +599,4.4659,9.6549,0.0447,0.0054,1,0,0.1035,3144,9.7349,0,0,0,3064,0 diff --git a/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/receiver_console.txt b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/receiver_console.txt new file mode 100644 index 0000000..5540012 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/receiver_console.txt @@ -0,0 +1,15 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":9531282229960790212,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +received_frame=0 size=2560x1440 payload=17137 keyframe=true +received_frame=60 size=2560x1440 payload=57596 keyframe=true +received_frame=120 size=2560x1440 payload=38198 keyframe=true +received_frame=180 size=2560x1440 payload=56676 keyframe=true +received_frame=240 size=2560x1440 payload=36342 keyframe=true +received_frame=300 size=2560x1440 payload=48539 keyframe=true +received_frame=360 size=2560x1440 payload=46273 keyframe=true +received_frame=420 size=2560x1440 payload=55019 keyframe=true +received_frame=480 size=2560x1440 payload=36606 keyframe=true +received_frame=540 size=2560x1440 payload=57075 keyframe=true +client disconnected or failed: connection closed +receiver_frames_total=600 diff --git a/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_console.txt b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_console.txt new file mode 100644 index 0000000..84dc24a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=30 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=25 +data_rate_limit_mbps=25 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=4 +frames_requested=1800 +frames_submitted=1800 +frames_skipped=0 +frames_encoded=1800 +failed_frames=0 +sender_dropped_frames=2 +send_failed_frames=0 +avg_generate_ms=3.953 +avg_encode_latency_ms=9.582 +p95_encode_latency_ms=9.730 +max_encode_latency_ms=34.592 +avg_send_ms=0.169 +p95_send_ms=0.096 +payload_bytes=7221155 +bytes_sent=7356932 +send_target=192.168.31.187:48320 +csv=benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_stats.csv b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_stats.csv new file mode 100644 index 0000000..a43705b --- /dev/null +++ b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_stats.csv @@ -0,0 +1,1801 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.7914,34.5921,0.0893,0.0075,1,0,0.0825,17217,34.7235,0,1,0,17137,0 +1,3.0807,9.6823,0.0524,0.0048,1,0,0.0251,10368,9.7628,0,0,0,10288,0 +2,3.0746,15.0349,0.0276,0.0030,1,0,0.0233,9190,15.0814,0,0,0,9110,0 +3,3.0049,20.4602,0.0189,0.0026,1,0,0.0179,12189,20.5037,0,0,0,12109,0 +4,3.3633,10.2021,0.0282,0.0029,1,0,0.0245,16295,10.2477,0,0,0,16215,0 +5,3.4322,9.6120,0.0305,0.0025,1,0,0.0258,6286,9.6610,0,0,0,6206,0 +6,3.7310,9.6288,0.0318,0.0025,1,0,0.0187,3560,9.6787,0,0,0,3480,0 +7,3.7422,9.6192,0.0264,0.0024,1,0,0.0184,2871,9.6630,0,0,0,2791,0 +8,3.7287,9.6384,0.0252,0.0026,1,0,0.0198,8536,9.6817,0,0,0,8456,0 +9,3.7492,9.7506,0.0334,0.0039,1,0,0.0175,1041,9.8113,0,0,0,961,0 +10,3.1753,9.6555,0.0326,0.0034,1,0,0.0620,828,9.7165,0,0,0,748,0 +11,3.6700,9.6224,0.0288,0.0027,1,0,0.0533,904,9.6696,0,0,0,824,0 +12,3.7960,9.7029,0.0283,0.0030,1,0,0.0767,6173,9.7496,0,0,0,6093,0 +13,3.7726,9.7262,0.0216,0.0023,1,0,0.0248,962,9.7669,0,0,0,882,0 +14,3.7542,9.6157,0.0256,0.0028,1,0,0.0185,1056,9.6600,0,0,0,976,0 +15,3.7801,9.6304,0.0252,0.0029,1,0,0.0638,1160,9.6738,0,0,0,1080,0 +16,3.7201,9.6220,0.0251,0.0023,1,0,0.0622,8356,9.6643,0,0,0,8276,0 +17,3.7669,9.7250,0.0356,0.0024,1,0,0.0750,1936,9.7795,0,0,0,1856,0 +18,3.8062,9.7049,0.0280,0.0025,1,0,0.0234,1358,9.7505,0,0,0,1278,0 +19,3.7784,9.6702,0.0243,0.0023,1,0,0.0580,964,9.7118,0,0,0,884,0 +20,3.7804,9.6384,0.0297,0.0029,1,0,0.0792,8170,9.6872,0,0,0,8090,0 +21,3.7889,9.7541,0.0263,0.0030,1,0,0.0195,963,9.7990,0,0,0,883,0 +22,3.7585,9.6035,0.0259,0.0028,1,0,0.0560,1224,9.6476,0,0,0,1144,0 +23,3.9140,9.6783,0.0216,0.0036,1,0,0.0153,979,9.7181,0,0,0,899,0 +24,3.7201,9.6753,0.0373,0.0035,1,0,0.0935,8213,9.7338,0,0,0,8133,0 +25,3.7291,9.6529,0.0256,0.0024,1,0,0.0190,1013,9.6960,0,0,0,933,0 +26,3.7092,9.5493,0.0143,0.0022,1,0,0.0462,852,9.5859,0,0,0,772,0 +27,3.6683,9.6662,0.0285,0.0029,1,0,0.0483,857,9.7136,0,0,0,777,0 +28,3.4720,9.7738,0.0454,0.0042,1,0,0.1103,6535,9.8575,0,0,0,6455,0 +29,3.7524,9.7678,0.0272,0.0030,1,0,0.0225,1045,9.8144,0,0,0,965,0 +30,3.7735,9.7191,0.0354,0.0022,1,0,0.0602,1002,9.7725,0,0,0,922,0 +31,3.9407,9.8082,0.0262,0.0028,1,0,0.0227,990,9.8529,0,0,0,910,0 +32,3.5298,9.7351,0.0347,0.0029,1,0,0.0284,6956,9.7896,0,0,0,6876,0 +33,3.7588,9.6943,0.0259,0.0030,1,0,0.0187,1494,9.7389,0,0,0,1414,0 +34,3.8210,9.8934,0.0303,0.0026,1,0,0.0248,1120,9.9424,0,0,0,1040,0 +35,3.7780,9.7205,0.0314,0.0035,1,0,0.0256,1060,9.7720,0,0,0,980,0 +36,3.7764,9.6769,0.0342,0.0029,1,0,0.0285,7642,9.7299,0,0,0,7562,0 +37,3.7498,12.0021,0.0323,0.0028,1,0,0.0210,2144,12.0534,0,0,0,2064,0 +38,3.8371,9.8024,0.0308,0.0030,1,0,0.0205,1106,9.8529,0,0,0,1026,0 +39,3.7905,9.5984,0.0103,0.0020,1,0,0.0123,1081,9.6306,0,0,0,1001,0 +40,3.7292,9.6144,0.0222,0.0025,1,0,0.0565,7649,9.6545,0,0,0,7569,0 +41,3.7641,9.7500,0.0342,0.0035,1,0,0.0517,1049,9.8039,0,0,0,969,0 +42,3.7473,9.7654,0.0326,0.0027,1,0,0.0642,2134,9.8111,0,0,0,2054,0 +43,3.8069,9.6935,0.0217,0.0025,1,0,0.0480,1039,9.7327,0,0,0,959,0 +44,3.7741,9.7281,0.0294,0.0028,1,0,0.0543,6266,9.7769,0,0,0,6186,0 +45,3.7638,9.6889,0.0319,0.0032,1,0,0.0628,999,9.7406,0,0,0,919,0 +46,3.7961,9.6211,0.0259,0.0027,1,0,0.0601,1178,9.6650,0,0,0,1098,0 +47,3.8827,10.0667,0.0452,0.0039,1,0,0.0599,1137,10.1377,0,0,0,1057,0 +48,3.8578,9.7487,0.0293,0.0026,1,0,0.0698,8293,9.7965,0,0,0,8213,0 +49,3.3212,13.4347,0.0205,0.0030,1,0,0.0505,2639,13.4795,0,0,0,2559,0 +50,3.1593,9.7300,0.0506,0.0053,1,0,0.1077,2254,9.8126,0,0,0,2174,0 +51,3.3371,9.8757,0.0335,0.0022,1,0,0.0222,1229,9.9320,0,0,0,1149,0 +52,3.1110,9.7755,0.0539,0.0028,1,0,0.0910,8484,9.8683,0,0,0,8404,0 +53,3.0801,9.8114,0.0447,0.0029,1,0,0.0992,1737,9.8699,0,0,0,1657,0 +54,3.0641,9.7542,0.0527,0.0031,1,0,0.0863,1794,9.8240,0,0,0,1714,0 +55,3.0979,9.8029,0.0353,0.0018,1,0,0.0630,2096,9.8636,0,0,0,2016,0 +56,3.0922,9.7984,0.0452,0.0030,1,0,0.0742,8436,9.8658,0,0,0,8356,0 +57,3.2506,9.8886,0.0387,0.0028,1,0,0.0800,2005,9.9582,0,0,0,1925,0 +58,3.0961,9.8220,0.0439,0.0030,1,0,0.0769,1810,9.8976,0,0,0,1730,0 +59,3.2047,10.0150,0.0286,0.0021,1,0,0.0506,2038,10.0605,0,0,0,1958,0 +60,3.0905,8.6007,0.0622,0.0029,1,0,0.1381,57676,8.6885,0,1,0,57596,0 +61,3.1032,9.7684,0.0487,0.0036,1,0,0.0789,3690,9.8324,0,0,0,3610,0 +62,3.1449,9.7776,0.0451,0.0030,1,0,0.0840,3104,9.8580,0,0,0,3024,0 +63,3.0417,9.7327,0.0275,0.0030,1,0,0.0635,2450,9.7735,0,0,0,2370,0 +64,3.0542,9.6800,0.0376,0.0026,1,0,0.0744,7577,9.7352,0,0,0,7497,0 +65,3.0815,9.8186,0.0314,0.0020,1,0,0.0708,2031,9.8669,0,0,0,1951,0 +66,3.2984,10.1318,0.0345,0.0034,1,0,0.0784,2159,10.1893,0,0,0,2079,0 +67,3.1104,9.7523,0.0338,0.0025,1,0,0.0243,3230,9.7975,0,0,0,3150,0 +68,3.1229,9.7203,0.0406,0.0042,1,0,0.0597,8058,9.7843,0,0,0,7978,0 +69,3.2500,9.8559,0.0333,0.0028,1,0,0.0201,2224,9.9072,0,0,0,2144,0 +70,3.1999,9.7693,0.0384,0.0037,1,0,0.0208,944,9.8241,0,0,0,864,0 +71,3.1733,9.6187,0.0354,0.0036,1,0,0.0216,876,9.6682,0,0,0,796,0 +72,3.2525,9.8622,0.0389,0.0038,1,0,0.0276,7608,9.9278,0,0,0,7528,0 +73,3.2424,9.9389,0.0385,0.0028,1,0,0.0265,903,10.0046,0,0,0,823,0 +74,3.1121,9.7732,0.0528,0.0032,1,0,0.0560,916,9.8409,0,0,0,836,0 +75,3.1958,9.7413,0.0321,0.0039,1,0,0.0199,1121,9.8010,0,0,0,1041,0 +76,3.0059,9.7293,0.0381,0.0037,1,0,0.0328,6520,9.7873,0,0,0,6440,0 +77,3.4328,9.8238,0.0322,0.0035,1,0,0.0436,917,9.8837,0,0,0,837,0 +78,3.4845,9.7879,0.0398,0.0027,1,0,0.0677,1275,9.8467,0,0,0,1195,0 +79,3.4370,9.8041,0.0227,0.0028,1,0,0.0252,1197,9.8435,0,0,0,1117,0 +80,3.5290,9.6414,0.0256,0.0032,1,0,0.0537,8480,9.6855,0,0,0,8400,0 +81,3.7440,9.5578,0.0260,0.0026,1,0,0.0449,2331,9.6007,0,0,0,2251,0 +82,3.6300,9.5985,0.0257,0.0035,1,0,0.0190,1329,9.6430,0,0,0,1249,0 +83,3.7580,9.6715,0.0243,0.0028,1,0,0.0715,1229,9.7139,0,0,0,1149,0 +84,3.7507,9.6436,0.0233,0.0023,1,0,0.0605,8359,9.6844,0,0,0,8279,0 +85,3.7735,9.8280,0.0390,0.0036,1,0,0.0863,1287,9.8816,0,0,0,1207,0 +86,3.7028,9.7205,0.0232,0.0023,1,0,0.0499,1268,9.7613,0,0,0,1188,0 +87,3.7185,9.5887,0.0159,0.0021,1,0,0.0456,1349,9.6267,0,0,0,1269,0 +88,3.6722,9.5324,0.0239,0.0020,1,0,0.0538,8352,9.5732,0,0,0,8272,0 +89,3.7347,9.5712,0.0156,0.0019,1,0,0.0400,1178,9.6027,0,0,0,1098,0 +90,3.7509,9.6337,0.0214,0.0025,1,0,0.0505,969,9.6727,0,0,0,889,0 +91,3.7345,9.6478,0.0214,0.0031,1,0,0.0555,1057,9.6874,0,0,0,977,0 +92,3.7106,9.5675,0.0204,0.0026,1,0,0.0424,6948,9.6051,0,0,0,6868,0 +93,3.8023,9.6902,0.0201,0.0021,1,0,0.0425,1189,9.7271,0,0,0,1109,0 +94,3.6961,9.5981,0.0216,0.0027,1,0,0.0470,1706,9.6371,0,0,0,1626,0 +95,3.6815,9.5139,0.0182,0.0020,1,0,0.0404,1626,9.5478,0,0,0,1546,0 +96,3.7060,9.6675,0.0404,0.0022,1,0,0.0519,22752,9.7248,0,0,0,22672,0 +97,3.7632,9.5457,0.0240,0.0022,1,0,0.0160,3102,9.5861,0,0,0,3022,0 +98,3.7453,9.6767,0.0243,0.0027,1,0,0.0189,2140,9.7189,0,0,0,2060,0 +99,3.6841,9.5681,0.0214,0.0025,1,0,0.0180,1797,9.6066,0,0,0,1717,0 +100,3.6745,9.5403,0.0207,0.0021,1,0,0.0207,8477,9.5846,0,0,0,8397,0 +101,3.7080,9.5234,0.0196,0.0023,1,0,0.0175,2468,9.5602,0,0,0,2388,0 +102,3.6825,9.6710,0.0253,0.0023,1,0,0.0179,1732,9.7137,0,0,0,1652,0 +103,3.7283,9.6148,0.0216,0.0026,1,0,0.0179,1876,9.6538,0,0,0,1796,0 +104,3.7062,9.6393,0.0277,0.0027,1,0,0.0425,8146,9.6850,0,0,0,8066,0 +105,3.7198,9.5310,0.0219,0.0025,1,0,0.0388,1473,9.5701,0,0,0,1393,0 +106,3.7142,9.5927,0.0250,0.0029,1,0,0.0461,1458,9.6351,0,0,0,1378,0 +107,3.6760,9.6269,0.0348,0.0033,1,0,0.0371,1972,9.6815,0,0,0,1892,0 +108,3.7475,9.7184,0.0247,0.0021,1,0,0.0553,7060,9.7604,0,0,0,6980,0 +109,3.7988,9.6265,0.0269,0.0025,1,0,0.0318,1974,9.6713,0,0,0,1894,0 +110,3.7589,9.5720,0.0203,0.0028,1,0,0.0401,2786,9.6094,0,0,0,2706,0 +111,3.7321,9.7883,0.0270,0.0027,1,0,0.0535,2015,9.8329,0,0,0,1935,0 +112,3.7118,9.6284,0.0262,0.0026,1,0,0.0507,9201,9.6787,0,0,0,9121,0 +113,3.7064,9.6376,0.0222,0.0026,1,0,0.0525,3670,9.6778,0,0,0,3590,0 +114,3.7076,9.5629,0.0108,0.0021,1,0,0.0294,2753,9.5942,0,0,0,2673,0 +115,4.5594,9.5557,0.0221,0.0023,1,0,0.0508,2628,9.5949,0,0,0,2548,0 +116,3.6691,9.5618,0.0205,0.0022,1,0,0.0556,8833,9.5987,0,0,0,8753,0 +117,3.6745,9.5457,0.0179,0.0020,1,0,0.0433,2668,9.5798,0,0,0,2588,0 +118,4.7858,9.5521,0.0169,0.0022,1,0,0.0471,2613,9.5856,0,0,0,2533,0 +119,3.6775,9.6649,0.0288,0.0027,1,0,0.0504,2829,9.7116,0,0,0,2749,0 +120,5.0599,8.4556,0.0519,0.0027,1,0,0.0720,38278,8.5259,0,1,0,38198,0 +121,3.7340,9.6671,0.0214,0.0025,1,0,0.0186,3159,9.7067,0,0,0,3079,0 +122,3.7039,9.5362,0.0189,0.0023,1,0,0.0146,1558,9.5776,0,0,0,1478,0 +123,5.2603,9.9898,0.0178,0.0019,1,0,0.0143,1993,10.0297,0,0,0,1913,0 +124,3.6885,9.5507,0.0193,0.0021,1,0,0.0212,6808,9.5863,0,0,0,6728,0 +125,5.1496,9.4947,0.0187,0.0022,1,0,0.0147,1293,9.5295,0,0,0,1213,0 +126,3.6775,9.5128,0.0194,0.0021,1,0,0.0156,2166,9.5485,0,0,0,2086,0 +127,5.1335,9.5287,0.0183,0.0023,1,0,0.0167,1433,9.5697,0,0,0,1353,0 +128,3.6846,9.5404,0.0298,0.0023,1,0,0.0165,8466,9.5947,0,0,0,8386,0 +129,5.2337,10.3548,0.0757,0.0071,1,0,0.0223,2232,10.4527,0,0,0,2152,0 +130,3.8797,9.7222,0.0275,0.0029,1,0,0.0201,1366,9.7686,0,0,0,1286,0 +131,4.8685,9.6445,0.0240,0.0027,1,0,0.0203,1423,9.6876,0,0,0,1343,0 +132,3.0668,9.6040,0.0278,0.0032,1,0,0.0253,7738,9.6603,0,0,0,7658,0 +133,5.2475,9.6275,0.0218,0.0023,1,0,0.0179,2273,9.6656,0,0,0,2193,0 +134,3.7251,9.6178,0.0323,0.0035,1,0,0.0305,946,9.6876,0,0,0,866,0 +135,3.8458,9.6945,0.0328,0.0038,1,0,0.0385,919,9.7516,0,0,0,839,0 +136,3.7952,9.7055,0.0306,0.0037,1,0,0.0691,7894,9.7656,0,0,0,7814,0 +137,3.7926,9.7010,0.0371,0.0032,1,0,0.0224,907,9.7749,0,0,0,827,0 +138,3.8039,9.7307,0.0311,0.0032,1,0,0.0701,1946,9.7743,0,0,0,1866,0 +139,3.5055,9.7227,0.0297,0.0025,1,0,0.0178,1080,9.7713,0,0,0,1000,0 +140,3.0321,9.5734,0.0277,0.0023,1,0,0.0585,6577,9.6109,0,0,0,6497,0 +141,3.0252,9.6705,0.0230,0.0031,1,0,0.0272,881,9.7040,0,0,0,801,0 +142,3.0078,9.6205,0.0258,0.0030,1,0,0.0556,1705,9.6570,0,0,0,1625,0 +143,3.0297,9.5651,0.0225,0.0028,1,0,0.0192,1112,9.5979,0,0,0,1032,0 +144,3.0565,9.5361,0.0250,0.0031,1,0,0.0684,8508,9.5712,0,0,0,8428,0 +145,3.0524,9.5844,0.0230,0.0040,1,0,0.0528,3179,9.6185,0,0,0,3099,0 +146,3.0725,9.5683,0.0221,0.0021,1,0,0.0515,2193,9.5996,0,0,0,2113,0 +147,3.1331,9.8458,0.0262,0.0024,1,0,0.0155,1074,9.8813,0,0,0,994,0 +148,3.1082,9.5372,0.0264,0.0024,1,0,0.0690,8266,9.5731,0,0,0,8186,0 +149,3.0121,9.5292,0.0188,0.0021,1,0,0.0159,1153,9.5562,0,0,0,1073,0 +150,2.9733,9.5338,0.0207,0.0021,1,0,0.0583,1883,9.5641,0,0,0,1803,0 +151,2.9914,9.5352,0.0267,0.0025,1,0,0.0246,1277,9.5720,0,0,0,1197,0 +152,3.2153,9.5619,0.0200,0.0021,1,0,0.0620,8345,9.5984,0,0,0,8265,0 +153,3.5505,9.6751,0.0206,0.0024,1,0,0.0505,1908,9.7188,0,0,0,1828,0 +154,3.6848,9.5419,0.0168,0.0022,1,0,0.0182,1053,9.5750,0,0,0,973,0 +155,3.6832,9.5081,0.0200,0.0024,1,0,0.0517,1286,9.5450,0,0,0,1206,0 +156,3.6789,9.5323,0.0217,0.0018,1,0,0.0539,7222,9.5767,0,0,0,7142,0 +157,3.6695,9.5020,0.0194,0.0022,1,0,0.0160,1372,9.5380,0,0,0,1292,0 +158,3.6725,9.5252,0.0170,0.0020,1,0,0.0462,1931,9.5640,0,0,0,1851,0 +159,3.6921,9.5223,0.0214,0.0022,1,0,0.0527,2620,9.5604,0,0,0,2540,0 +160,3.6786,9.5163,0.0220,0.0021,1,0,0.0586,7446,9.5612,0,0,0,7366,0 +161,3.6666,9.5005,0.0207,0.0024,1,0,0.0505,2764,9.5378,0,0,0,2684,0 +162,3.7221,9.6019,0.0290,0.0027,1,0,0.0672,2301,9.6497,0,0,0,2221,0 +163,4.0868,10.0429,0.0383,0.0031,1,0,0.0566,2280,10.1074,0,0,0,2200,0 +164,3.7773,9.7260,0.0329,0.0035,1,0,0.0779,8583,9.7710,0,0,0,8503,0 +165,3.3225,9.6719,0.0275,0.0030,1,0,0.0612,2729,9.7110,0,0,0,2649,0 +166,3.0626,9.6691,0.0281,0.0037,1,0,0.0689,2586,9.7083,0,0,0,2506,0 +167,3.0755,9.7835,0.0344,0.0049,1,0,0.0633,2328,9.8436,0,0,0,2248,0 +168,3.0337,9.8782,0.0326,0.0026,1,0,0.0666,8031,9.9295,0,0,0,7951,0 +169,3.0588,9.7249,0.0369,0.0027,1,0,0.0799,2025,9.7738,0,0,0,1945,0 +170,3.0111,9.4807,0.0167,0.0019,1,0,0.0379,1592,9.5055,0,0,0,1512,0 +171,2.8960,9.5338,0.0217,0.0025,1,0,0.0499,1593,9.5648,0,0,0,1513,0 +172,2.9314,9.5065,0.0238,0.0020,1,0,0.0502,7132,9.5397,0,0,0,7052,0 +173,2.8975,9.5180,0.0247,0.0026,1,0,0.0505,1780,9.5523,0,0,0,1700,0 +174,3.0043,9.5584,0.0297,0.0027,1,0,0.0645,2999,9.5989,0,0,0,2919,0 +175,2.9764,9.5586,0.0268,0.0023,1,0,0.0536,2632,9.5956,0,0,0,2552,0 +176,3.0187,9.5633,0.0252,0.0022,1,0,0.0673,9908,9.5978,0,0,0,9828,0 +177,2.9925,9.5722,0.0266,0.0033,1,0,0.0929,4771,9.6093,0,0,0,4691,0 +178,3.0391,9.5790,0.0246,0.0024,1,0,0.0616,2791,9.6129,0,0,0,2711,0 +179,2.9800,9.5701,0.0193,0.0018,1,0,0.0487,2771,9.5982,0,0,0,2691,0 +180,3.1824,8.4078,0.0480,0.0028,1,0,0.0918,56756,8.4968,0,1,0,56676,0 +181,3.4321,9.4830,0.0209,0.0021,1,0,0.0539,3421,9.5203,0,0,0,3341,0 +182,3.6840,9.5077,0.0203,0.0020,1,0,0.0485,2558,9.5502,0,0,0,2478,0 +183,3.6673,9.4883,0.0225,0.0024,1,0,0.0479,1740,9.5340,0,0,0,1660,0 +184,3.6797,9.5389,0.0205,0.0025,1,0,0.0454,8267,9.5822,0,0,0,8187,0 +185,3.6662,9.4777,0.0197,0.0022,1,0,0.0429,1562,9.5194,0,0,0,1482,0 +186,3.6549,9.5122,0.0172,0.0024,1,0,0.0522,1573,9.5457,0,0,0,1493,0 +187,3.6747,9.4875,0.0192,0.0020,1,0,0.0454,1756,9.5291,0,0,0,1676,0 +188,3.6695,9.5173,0.0202,0.0022,1,0,0.0484,7028,9.5605,0,0,0,6948,0 +189,3.8082,9.6533,0.0245,0.0027,1,0,0.0176,947,9.6962,0,0,0,867,0 +190,3.8431,9.6865,0.0235,0.0030,1,0,0.0583,1815,9.7291,0,0,0,1735,0 +191,3.1308,9.6153,0.0234,0.0027,1,0,0.0187,1329,9.6562,0,0,0,1249,0 +192,3.6969,9.6418,0.0346,0.0034,1,0,0.0829,21729,9.6961,0,0,0,21649,0 +193,3.6996,9.5520,0.0245,0.0022,1,0,0.0579,3052,9.5938,0,0,0,2972,0 +194,3.6907,9.5380,0.0202,0.0020,1,0,0.0434,1897,9.5754,0,0,0,1817,0 +195,3.6895,9.5096,0.0188,0.0019,1,0,0.0163,1319,9.5501,0,0,0,1239,0 +196,3.6716,9.5020,0.0235,0.0020,1,0,0.0542,8736,9.5486,0,0,0,8656,0 +197,3.6765,9.5521,0.0234,0.0026,1,0,0.0569,2347,9.5929,0,0,0,2267,0 +198,3.7424,9.5319,0.0202,0.0020,1,0,0.0380,1744,9.5690,0,0,0,1664,0 +199,3.7166,9.5548,0.0201,0.0022,1,0,0.0387,1377,9.5917,0,0,0,1297,0 +200,3.6759,9.5077,0.0218,0.0022,1,0,0.0435,7897,9.5464,0,0,0,7817,0 +201,3.6817,9.4984,0.0166,0.0020,1,0,0.0284,925,9.5310,0,0,0,845,0 +202,3.6818,9.5594,0.0272,0.0034,1,0,0.0452,1371,9.5990,0,0,0,1291,0 +203,3.6823,9.5130,0.0205,0.0024,1,0,0.0336,1003,9.5510,0,0,0,923,0 +204,3.6663,9.5020,0.0224,0.0021,1,0,0.0525,6638,9.5466,0,0,0,6558,0 +205,3.6648,9.5142,0.0198,0.0021,1,0,0.0163,985,9.5563,0,0,0,905,0 +206,4.4837,9.5295,0.0152,0.0021,1,0,0.0454,1789,9.5664,0,0,0,1709,0 +207,3.6486,9.4857,0.0380,0.0066,1,0,0.2378,1628,9.5702,0,0,0,1548,0 +208,4.6260,9.4972,0.0176,0.0037,1,0,0.0567,8894,9.5323,0,0,0,8814,0 +209,3.7115,9.5047,0.0184,0.0019,1,0,0.0479,3186,9.5449,0,0,0,3106,0 +210,4.7332,9.4701,0.0187,0.0019,1,0,0.0451,1648,9.5053,0,0,0,1568,0 +211,3.6826,9.5168,0.0190,0.0019,1,0,0.0416,1828,9.5576,0,0,0,1748,0 +212,3.6677,9.5174,0.0200,0.0021,1,0,0.0540,8446,9.5542,0,0,0,8366,0 +213,4.4702,9.5117,0.0160,0.0021,1,0,0.0411,1933,9.5492,0,0,0,1853,0 +214,3.6974,9.6548,0.0462,0.0043,1,0,0.0997,1775,9.7354,0,0,0,1695,0 +215,5.3185,9.4685,0.0197,0.0025,1,0,0.0414,2088,9.5104,0,0,0,2008,0 +216,3.7015,9.5070,0.0214,0.0032,1,0,0.0650,8887,9.5519,0,0,0,8807,0 +217,4.5681,9.5419,0.0179,0.0020,1,0,0.0208,1566,9.5820,0,0,0,1486,0 +218,3.6682,9.5203,0.0181,0.0021,1,0,0.0292,1488,9.5552,0,0,0,1408,0 +219,4.5915,9.4985,0.0189,0.0020,1,0,0.0478,1642,9.5391,0,0,0,1562,0 +220,3.6786,9.5105,0.0207,0.0020,1,0,0.0449,7311,9.5536,0,0,0,7231,0 +221,4.6204,9.5177,0.0182,0.0018,1,0,0.0271,2005,9.5577,0,0,0,1925,0 +222,3.6742,9.5501,0.0269,0.0028,1,0,0.0415,2714,9.5955,0,0,0,2634,0 +223,3.7340,9.5379,0.0213,0.0023,1,0,0.0289,2616,9.5760,0,0,0,2536,0 +224,3.7046,9.5155,0.0229,0.0021,1,0,0.0427,8221,9.5613,0,0,0,8141,0 +225,3.6775,9.5118,0.0210,0.0020,1,0,0.0251,3300,9.5560,0,0,0,3220,0 +226,5.2579,9.4867,0.0178,0.0027,1,0,0.0371,2734,9.5222,0,0,0,2654,0 +227,3.6953,9.5572,0.0268,0.0021,1,0,0.0575,2414,9.6012,0,0,0,2334,0 +228,3.7488,9.6943,0.0230,0.0020,1,0,0.0618,8862,9.7339,0,0,0,8782,0 +229,5.0099,9.6567,0.0232,0.0023,1,0,0.0280,2773,9.6975,0,0,0,2693,0 +230,3.7149,9.5274,0.0168,0.0022,1,0,0.0306,2445,9.5612,0,0,0,2365,0 +231,3.6863,9.5505,0.0185,0.0021,1,0,0.0311,2634,9.5910,0,0,0,2554,0 +232,3.6786,9.5625,0.0199,0.0025,1,0,0.0364,8380,9.5990,0,0,0,8300,0 +233,3.7018,9.5308,0.0181,0.0021,1,0,0.0366,1985,9.5715,0,0,0,1905,0 +234,4.4842,9.4697,0.0167,0.0019,1,0,0.0358,1943,9.5081,0,0,0,1863,0 +235,3.6919,9.5452,0.0273,0.0022,1,0,0.0315,2161,9.5902,0,0,0,2081,0 +236,4.5853,9.4978,0.0211,0.0021,1,0,0.0346,7719,9.5409,0,0,0,7639,0 +237,3.6912,9.5352,0.0195,0.0022,1,0,0.0440,2124,9.5713,0,0,0,2044,0 +238,3.6875,9.5073,0.0180,0.0022,1,0,0.0293,3741,9.5420,0,0,0,3661,0 +239,4.9296,9.4850,0.0194,0.0019,1,0,0.0537,2982,9.5264,0,0,0,2902,0 +240,3.7031,8.3505,0.0263,0.0017,1,0,0.0138,36422,8.3970,0,1,0,36342,0 +241,5.2488,9.5725,0.0205,0.0022,1,0,0.0163,5681,9.6160,0,0,0,5601,0 +242,3.7197,9.5307,0.0209,0.0019,1,0,0.0143,4067,9.5739,0,0,0,3987,0 +243,4.9660,9.4720,0.0185,0.0020,1,0,0.0132,3011,9.5123,0,0,0,2931,0 +244,3.6977,9.4962,0.0197,0.0019,1,0,0.0170,9487,9.5379,0,0,0,9407,0 +245,4.7672,9.4810,0.0164,0.0027,1,0,0.0148,1089,9.5210,0,0,0,1009,0 +246,3.7031,9.5107,0.0203,0.0018,1,0,0.0162,1164,9.5539,0,0,0,1084,0 +247,3.6960,9.4972,0.0206,0.0022,1,0,0.0156,970,9.5344,0,0,0,890,0 +248,4.5320,9.5420,0.0209,0.0025,1,0,0.0142,8288,9.5857,0,0,0,8208,0 +249,3.7502,9.7062,0.0255,0.0027,1,0,0.0144,912,9.7504,0,0,0,832,0 +250,4.7272,9.6688,0.0295,0.0029,1,0,0.0129,830,9.7189,0,0,0,750,0 +251,2.9436,9.5550,0.0192,0.0046,1,0,0.0138,1337,9.5897,0,0,0,1257,0 +252,3.7021,9.5962,0.0237,0.0037,1,0,0.0181,6595,9.6473,0,0,0,6515,0 +253,3.7107,9.5710,0.0190,0.0020,1,0,0.0165,867,9.6063,0,0,0,787,0 +254,3.6793,9.5340,0.0218,0.0020,1,0,0.0101,1089,9.5727,0,0,0,1009,0 +255,3.7067,9.5466,0.0242,0.0041,1,0,0.0110,964,9.5897,0,0,0,884,0 +256,3.6772,9.5390,0.0275,0.0020,1,0,0.0164,19961,9.5895,0,0,0,19881,0 +257,3.6876,9.5737,0.0245,0.0019,1,0,0.0117,1908,9.6148,0,0,0,1828,0 +258,3.7304,9.5605,0.0224,0.0022,1,0,0.0143,926,9.6000,0,0,0,846,0 +259,5.0983,9.4843,0.0266,0.0026,1,0,0.0211,889,9.5289,0,0,0,809,0 +260,3.4597,9.5335,0.0223,0.0022,1,0,0.0114,7528,9.5783,0,0,0,7448,0 +261,5.1224,9.4711,0.0189,0.0018,1,0,0.0095,1970,9.5110,0,0,0,1890,0 +262,3.4149,9.4944,0.0198,0.0023,1,0,0.0138,1025,9.5307,0,0,0,945,0 +263,3.4065,9.5066,0.0244,0.0023,1,0,0.0481,934,9.5482,0,0,0,854,0 +264,3.4496,9.7399,0.0276,0.0023,1,0,0.0412,7589,9.7848,0,0,0,7509,0 +265,3.4668,9.7728,0.0414,0.0032,1,0,0.0673,934,9.8292,0,0,0,854,0 +266,3.4376,9.6593,0.0334,0.0025,1,0,0.0248,894,9.7123,0,0,0,814,0 +267,3.4438,9.6268,0.0339,0.0039,1,0,0.1334,1146,9.6859,0,0,0,1066,0 +268,3.4613,9.5531,0.0210,0.0031,1,0,0.0865,6572,9.6007,0,0,0,6492,0 +269,3.4517,9.7350,0.0418,0.0049,1,0,0.0563,877,9.7975,0,0,0,797,0 +270,3.4629,9.4868,0.0223,0.0024,1,0,0.0614,1059,9.5267,0,0,0,979,0 +271,3.4374,9.6615,0.0323,0.0030,1,0,0.0223,1225,9.7130,0,0,0,1145,0 +272,3.4897,9.6347,0.0253,0.0023,1,0,0.0654,6758,9.6768,0,0,0,6678,0 +273,3.4624,9.6883,0.0263,0.0026,1,0,0.0669,2907,9.7364,0,0,0,2827,0 +274,3.4523,9.5360,0.0209,0.0020,1,0,0.0162,1058,9.5727,0,0,0,978,0 +275,4.5875,9.5075,0.0210,0.0025,1,0,0.0533,1048,9.5455,0,0,0,968,0 +276,3.4623,9.7582,0.0408,0.0039,1,0,0.0958,8339,9.8190,0,0,0,8259,0 +277,3.4845,9.7029,0.0289,0.0022,1,0,0.0207,1014,9.7555,0,0,0,934,0 +278,4.4405,9.5725,0.0256,0.0026,1,0,0.0567,1097,9.6160,0,0,0,1017,0 +279,3.4922,9.5350,0.0356,0.0027,1,0,0.0268,1168,9.5891,0,0,0,1088,0 +280,4.5435,9.5783,0.0244,0.0025,1,0,0.0612,8257,9.6200,0,0,0,8177,0 +281,3.4633,9.4898,0.0095,0.0016,1,0,0.0100,1213,9.5191,0,0,0,1133,0 +282,3.4363,9.6366,0.0359,0.0030,1,0,0.0627,976,9.6923,0,0,0,896,0 +283,3.4705,9.6834,0.0264,0.0034,1,0,0.0407,1023,9.7232,0,0,0,943,0 +284,3.4342,9.5775,0.0240,0.0023,1,0,0.0379,6883,9.6241,0,0,0,6803,0 +285,3.4228,9.6268,0.0326,0.0029,1,0,0.0158,1048,9.6850,0,0,0,968,0 +286,3.4361,9.6357,0.0330,0.0030,1,0,0.1057,2010,9.6952,0,0,0,1930,0 +287,3.4975,9.6010,0.0238,0.0027,1,0,0.0163,1489,9.6420,0,0,0,1409,0 +288,3.4614,9.6384,0.0343,0.0033,1,0,0.0192,7057,9.6855,0,0,0,6977,0 +289,3.4412,9.5657,0.0237,0.0023,1,0,0.0176,1352,9.6067,0,0,0,1272,0 +290,3.4215,9.6143,0.0261,0.0024,1,0,0.0120,1373,9.6574,0,0,0,1293,0 +291,3.4626,9.6807,0.0348,0.0035,1,0,0.0245,1120,9.7314,0,0,0,1040,0 +292,3.4877,9.7345,0.0360,0.0025,1,0,0.0683,8678,9.7978,0,0,0,8598,0 +293,3.4598,9.6119,0.0270,0.0021,1,0,0.0488,1762,9.6562,0,0,0,1682,0 +294,3.4608,9.7725,0.0218,0.0023,1,0,0.0268,1184,9.8115,0,0,0,1104,0 +295,3.4564,9.6707,0.0364,0.0028,1,0,0.0247,1405,9.7263,0,0,0,1325,0 +296,4.8034,9.5264,0.0269,0.0020,1,0,0.0450,7761,9.5707,0,0,0,7681,0 +297,3.5014,9.6825,0.0286,0.0025,1,0,0.0769,1342,9.7292,0,0,0,1262,0 +298,3.4829,9.6362,0.0239,0.0025,1,0,0.0106,1112,9.6774,0,0,0,1032,0 +299,3.4205,9.6075,0.0214,0.0016,1,0,0.0326,1121,9.6501,0,0,0,1041,0 +300,3.4654,8.4050,0.0271,0.0018,1,0,0.0642,48619,8.4519,0,1,0,48539,0 +301,3.4370,9.5823,0.0264,0.0024,1,0,0.0616,3512,9.6270,0,0,0,3432,0 +302,3.4200,9.6564,0.0273,0.0025,1,0,0.0546,3682,9.7067,0,0,0,3602,0 +303,3.4757,9.6328,0.0267,0.0021,1,0,0.0213,2310,9.6760,0,0,0,2230,0 +304,4.4496,9.5638,0.0228,0.0024,1,0,0.0175,12262,9.6031,0,0,0,12182,0 +305,4.6692,9.5449,0.0246,0.0024,1,0,0.0158,3301,9.5864,0,0,0,3221,0 +306,3.4457,9.5943,0.0263,0.0022,1,0,0.0198,1933,9.6383,0,0,0,1853,0 +307,4.7329,9.5493,0.0219,0.0027,1,0,0.0185,1612,9.5888,0,0,0,1532,0 +308,3.4750,9.5911,0.0331,0.0034,1,0,0.0271,8717,9.6446,0,0,0,8637,0 +309,3.4916,9.6945,0.0248,0.0027,1,0,0.0171,1546,9.7370,0,0,0,1466,0 +310,3.0782,9.7925,0.0474,0.0033,1,0,0.0288,1270,9.8582,0,0,0,1190,0 +311,3.0386,9.7525,0.0424,0.0035,1,0,0.0193,1309,9.8252,0,0,0,1229,0 +312,3.7688,9.6359,0.0290,0.0034,1,0,0.0477,8686,9.6825,0,0,0,8606,0 +313,3.7349,9.6319,0.0235,0.0024,1,0,0.0168,973,9.6728,0,0,0,893,0 +314,3.4345,9.5773,0.0271,0.0025,1,0,0.0596,908,9.6223,0,0,0,828,0 +315,3.4326,9.6586,0.0355,0.0026,1,0,0.0497,901,9.7295,0,0,0,821,0 +316,3.4783,9.6476,0.0416,0.0032,1,0,0.0439,6487,9.7091,0,0,0,6407,0 +317,3.4589,9.6620,0.0380,0.0036,1,0,0.0572,956,9.7278,0,0,0,876,0 +318,3.4912,9.5709,0.0247,0.0022,1,0,0.0446,1214,9.6121,0,0,0,1134,0 +319,3.4747,9.5799,0.0259,0.0029,1,0,0.0347,1062,9.6234,0,0,0,982,0 +320,3.4289,9.5330,0.0230,0.0024,1,0,0.0510,7229,9.5724,0,0,0,7149,0 +321,3.4318,9.5933,0.0250,0.0027,1,0,0.0325,1579,9.6356,0,0,0,1499,0 +322,3.4225,9.5780,0.0253,0.0023,1,0,0.0144,1025,9.6203,0,0,0,945,0 +323,3.4268,9.5692,0.0253,0.0025,1,0,0.0349,966,9.6125,0,0,0,886,0 +324,3.4480,9.5610,0.0172,0.0022,1,0,0.0419,7624,9.5989,0,0,0,7544,0 +325,3.4593,9.6391,0.0248,0.0023,1,0,0.0456,1992,9.6816,0,0,0,1912,0 +326,4.4301,9.5618,0.0223,0.0017,1,0,0.0367,834,9.5995,0,0,0,754,0 +327,3.4818,9.4738,0.0165,0.0019,1,0,0.0141,870,9.5108,0,0,0,790,0 +328,4.5142,9.4561,0.0163,0.0018,1,0,0.0445,7652,9.4935,0,0,0,7572,0 +329,3.4463,9.5355,0.0215,0.0021,1,0,0.0462,897,9.5737,0,0,0,817,0 +330,4.6158,9.4728,0.0168,0.0019,1,0,0.0123,1057,9.5104,0,0,0,977,0 +331,3.4219,9.4920,0.0201,0.0020,1,0,0.0473,1963,9.5340,0,0,0,1883,0 +332,4.7645,9.4478,0.0162,0.0018,1,0,0.0409,6794,9.4846,0,0,0,6714,0 +333,3.4141,9.6000,0.0484,0.0059,1,0,0.0360,892,9.6849,0,0,0,812,0 +334,4.8806,9.4613,0.0190,0.0021,1,0,0.0430,995,9.5015,0,0,0,915,0 +335,3.3948,9.6140,0.0488,0.0059,1,0,0.0914,1925,9.6973,0,0,0,1845,0 +336,4.8639,9.4932,0.0205,0.0020,1,0,0.0424,7739,9.5351,0,0,0,7659,0 +337,3.3993,9.5900,0.0449,0.0057,1,0,0.0986,2740,9.6697,0,0,0,2660,0 +338,5.1356,9.4949,0.0182,0.0020,1,0,0.0420,1737,9.5341,0,0,0,1657,0 +339,3.3893,9.5358,0.0358,0.0064,1,0,0.0450,1080,9.5966,0,0,0,1000,0 +340,5.0709,9.4495,0.0221,0.0019,1,0,0.0470,8358,9.4934,0,0,0,8278,0 +341,3.4006,9.6026,0.0393,0.0054,1,0,0.0283,1112,9.6651,0,0,0,1032,0 +342,4.2635,9.4250,0.0152,0.0019,1,0,0.0377,1128,9.4617,0,0,0,1048,0 +343,3.3897,9.4880,0.0238,0.0021,1,0,0.0160,1278,9.5289,0,0,0,1198,0 +344,4.4455,9.4868,0.0210,0.0022,1,0,0.0474,8378,9.5296,0,0,0,8298,0 +345,4.4289,9.5933,0.0440,0.0056,1,0,0.0326,1126,9.6870,0,0,0,1046,0 +346,4.6784,9.5303,0.0220,0.0027,1,0,0.0565,935,9.5692,0,0,0,855,0 +347,3.4069,9.5429,0.0291,0.0025,1,0,0.0230,1065,9.5895,0,0,0,985,0 +348,3.4612,9.5808,0.0244,0.0020,1,0,0.0599,7151,9.6222,0,0,0,7071,0 +349,3.4577,9.5200,0.0228,0.0020,1,0,0.0560,1857,9.5593,0,0,0,1777,0 +350,4.7096,9.4965,0.0161,0.0033,1,0,0.0154,2071,9.5352,0,0,0,1991,0 +351,3.4213,9.4897,0.0174,0.0020,1,0,0.0139,1879,9.5288,0,0,0,1799,0 +352,4.8071,9.5306,0.0278,0.0019,1,0,0.0173,22798,9.5800,0,0,0,22718,0 +353,3.4005,9.5154,0.0187,0.0020,1,0,0.0184,2975,9.5506,0,0,0,2895,0 +354,4.8857,9.4833,0.0193,0.0018,1,0,0.0130,2392,9.5229,0,0,0,2312,0 +355,3.3925,9.6085,0.0460,0.0048,1,0,0.0365,1760,9.6761,0,0,0,1680,0 +356,5.0312,9.4762,0.0196,0.0018,1,0,0.0146,8755,9.5177,0,0,0,8675,0 +357,3.4235,9.4671,0.0195,0.0022,1,0,0.0138,2508,9.5085,0,0,0,2428,0 +358,4.1974,9.4854,0.0170,0.0019,1,0,0.0122,2126,9.5231,0,0,0,2046,0 +359,3.3894,9.5447,0.0462,0.0060,1,0,0.1084,2633,9.6131,0,0,0,2553,0 +360,4.6532,8.3689,0.0346,0.0032,1,0,0.0888,46353,8.4210,0,1,0,46273,0 +361,3.4135,9.4878,0.0210,0.0020,1,0,0.0492,4322,9.5251,0,0,0,4242,0 +362,4.5773,9.4885,0.0170,0.0017,1,0,0.0515,4228,9.5263,0,0,0,4148,0 +363,3.4225,9.4852,0.0190,0.0018,1,0,0.0473,4656,9.5196,0,0,0,4576,0 +364,4.5865,9.4742,0.0203,0.0016,1,0,0.0457,8846,9.5155,0,0,0,8766,0 +365,3.3975,9.4900,0.0199,0.0019,1,0,0.0166,1021,9.5262,0,0,0,941,0 +366,4.5890,9.4693,0.0172,0.0020,1,0,0.0452,1643,9.5083,0,0,0,1563,0 +367,3.4042,9.4735,0.0173,0.0018,1,0,0.0481,1585,9.5121,0,0,0,1505,0 +368,4.7857,9.5002,0.0196,0.0020,1,0,0.0545,8729,9.5363,0,0,0,8649,0 +369,3.4133,9.5827,0.0249,0.0026,1,0,0.0622,2297,9.6250,0,0,0,2217,0 +370,4.8828,9.6244,0.0253,0.0031,1,0,0.0169,1068,9.6690,0,0,0,988,0 +371,2.9701,9.5231,0.0245,0.0029,1,0,0.0653,1028,9.5663,0,0,0,948,0 +372,4.9142,9.6065,0.0270,0.0034,1,0,0.0667,8299,9.6532,0,0,0,8219,0 +373,3.7161,9.5704,0.0192,0.0027,1,0,0.0189,1036,9.6075,0,0,0,956,0 +374,3.7390,9.5190,0.0227,0.0029,1,0,0.0535,849,9.5597,0,0,0,769,0 +375,3.6947,9.5394,0.0179,0.0021,1,0,0.0170,1193,9.5739,0,0,0,1113,0 +376,5.2505,9.5184,0.0245,0.0025,1,0,0.0583,8387,9.5607,0,0,0,8307,0 +377,3.7057,9.5615,0.0289,0.0023,1,0,0.0205,857,9.6152,0,0,0,777,0 +378,5.1994,9.6270,0.0327,0.0025,1,0,0.0838,831,9.6860,0,0,0,751,0 +379,3.5035,9.5594,0.0300,0.0024,1,0,0.0193,824,9.6150,0,0,0,744,0 +380,4.3922,9.5371,0.0183,0.0018,1,0,0.0589,6482,9.5769,0,0,0,6402,0 +381,3.4223,9.5355,0.0180,0.0018,1,0,0.0126,887,9.5749,0,0,0,807,0 +382,4.4073,9.4951,0.0220,0.0018,1,0,0.0129,1079,9.5382,0,0,0,999,0 +383,3.4354,9.4742,0.0159,0.0019,1,0,0.0166,979,9.5061,0,0,0,899,0 +384,4.3973,9.4689,0.0231,0.0024,1,0,0.0187,7730,9.5087,0,0,0,7650,0 +385,3.4183,9.5741,0.0408,0.0056,1,0,0.0301,1545,9.6591,0,0,0,1465,0 +386,4.5125,9.4172,0.0195,0.0022,1,0,0.0149,940,9.4526,0,0,0,860,0 +387,4.3288,9.4823,0.0144,0.0018,1,0,0.0148,886,9.5120,0,0,0,806,0 +388,3.4058,9.4425,0.0204,0.0018,1,0,0.0162,7514,9.4784,0,0,0,7434,0 +389,4.3253,9.6415,0.0192,0.0020,1,0,0.0467,2052,9.6770,0,0,0,1972,0 +390,3.7045,9.6448,0.0435,0.0054,1,0,0.0932,870,9.7124,0,0,0,790,0 +391,4.5425,9.5600,0.0192,0.0024,1,0,0.0429,1014,9.5959,0,0,0,934,0 +392,3.5037,9.5293,0.0485,0.0054,1,0,0.1104,7593,9.6117,0,0,0,7513,0 +393,4.3135,9.5265,0.0190,0.0020,1,0,0.0459,1045,9.5617,0,0,0,965,0 +394,4.3631,9.5452,0.0422,0.0056,1,0,0.0910,2148,9.6113,0,0,0,2068,0 +395,4.5264,9.5013,0.0244,0.0025,1,0,0.0426,856,9.5422,0,0,0,776,0 +396,3.4154,9.5952,0.0429,0.0057,1,0,0.0935,6145,9.6624,0,0,0,6065,0 +397,4.5317,9.4263,0.0194,0.0022,1,0,0.0143,1090,9.4678,0,0,0,1010,0 +398,3.4035,9.4644,0.0179,0.0020,1,0,0.0503,972,9.4979,0,0,0,892,0 +399,4.5793,9.4397,0.0160,0.0022,1,0,0.0390,1546,9.4770,0,0,0,1466,0 +400,3.4047,9.6196,0.0495,0.0059,1,0,0.0913,8128,9.7049,0,0,0,8048,0 +401,4.7818,9.4311,0.0189,0.0019,1,0,0.0408,2646,9.4715,0,0,0,2566,0 +402,4.2553,9.4523,0.0197,0.0020,1,0,0.0325,1901,9.4925,0,0,0,1821,0 +403,3.3892,9.4634,0.0181,0.0020,1,0,0.0341,1097,9.5027,0,0,0,1017,0 +404,5.1356,9.4494,0.0190,0.0020,1,0,0.0342,8451,9.4897,0,0,0,8371,0 +405,3.3957,9.4663,0.0191,0.0020,1,0,0.0340,1518,9.5066,0,0,0,1438,0 +406,5.1308,9.5490,0.0358,0.0059,1,0,0.0738,1713,9.6085,0,0,0,1633,0 +407,4.6912,9.4877,0.0266,0.0022,1,0,0.0556,1760,9.5320,0,0,0,1680,0 +408,3.5310,9.6335,0.0255,0.0019,1,0,0.0485,8371,9.6750,0,0,0,8291,0 +409,3.4692,9.5794,0.0221,0.0023,1,0,0.0546,1615,9.6182,0,0,0,1535,0 +410,4.5207,9.5644,0.0168,0.0022,1,0,0.0469,1208,9.5973,0,0,0,1128,0 +411,3.4775,9.5502,0.0223,0.0022,1,0,0.0483,1376,9.5895,0,0,0,1296,0 +412,4.5295,9.4970,0.0178,0.0021,1,0,0.0408,6701,9.5359,0,0,0,6621,0 +413,3.4333,9.4969,0.0207,0.0020,1,0,0.0138,1657,9.5275,0,0,0,1577,0 +414,4.6335,9.4587,0.0166,0.0020,1,0,0.0124,2007,9.4966,0,0,0,1927,0 +415,4.3958,9.4842,0.0195,0.0020,1,0,0.0173,1626,9.5195,0,0,0,1546,0 +416,3.4118,9.4715,0.0208,0.0020,1,0,0.0150,7765,9.5140,0,0,0,7685,0 +417,4.4092,9.4925,0.0172,0.0020,1,0,0.0121,2307,9.5305,0,0,0,2227,0 +418,3.4084,9.5743,0.0387,0.0052,1,0,0.0290,1800,9.6468,0,0,0,1720,0 +419,4.4549,9.3997,0.0185,0.0021,1,0,0.0127,1665,9.4399,0,0,0,1585,0 +420,3.4134,8.6000,0.1019,0.0057,1,0,0.0471,55099,8.7278,0,1,0,55019,0 +421,4.6171,9.5115,0.0183,0.0022,1,0,0.0130,6056,9.5516,0,0,0,5976,0 +422,4.3353,9.4668,0.0177,0.0019,1,0,0.0485,4325,9.5050,0,0,0,4245,0 +423,3.4298,9.5260,0.0200,0.0030,1,0,0.0549,2939,9.5633,0,0,0,2859,0 +424,4.3489,9.5344,0.0184,0.0021,1,0,0.0490,8824,9.5682,0,0,0,8744,0 +425,3.4151,9.5119,0.0184,0.0019,1,0,0.0391,1042,9.5512,0,0,0,962,0 +426,4.4465,9.4512,0.0146,0.0018,1,0,0.0376,1664,9.4864,0,0,0,1584,0 +427,4.3985,9.5748,0.0425,0.0055,1,0,0.0840,1173,9.6520,0,0,0,1093,0 +428,4.5324,9.4697,0.0212,0.0022,1,0,0.0522,6472,9.5074,0,0,0,6392,0 +429,3.4090,9.7043,0.0558,0.0073,1,0,0.0373,1108,9.8383,0,0,0,1028,0 +430,3.3074,9.5867,0.0261,0.0026,1,0,0.0554,2856,9.6310,0,0,0,2776,0 +431,5.0049,9.5625,0.0200,0.0025,1,0,0.0447,1921,9.5990,0,0,0,1841,0 +432,3.4277,9.5759,0.0278,0.0035,1,0,0.0680,8914,9.6228,0,0,0,8834,0 +433,5.2398,9.5869,0.0189,0.0024,1,0,0.0492,2304,9.6232,0,0,0,2224,0 +434,3.7150,9.5081,0.0203,0.0022,1,0,0.0446,1280,9.5452,0,0,0,1200,0 +435,4.4928,9.4958,0.0170,0.0019,1,0,0.0409,1419,9.5290,0,0,0,1339,0 +436,3.6898,9.5439,0.0186,0.0022,1,0,0.0514,8415,9.5855,0,0,0,8335,0 +437,4.4075,9.5721,0.0224,0.0022,1,0,0.0495,945,9.6113,0,0,0,865,0 +438,3.7665,9.5573,0.0259,0.0023,1,0,0.0514,996,9.6001,0,0,0,916,0 +439,5.1490,9.4663,0.0223,0.0020,1,0,0.0437,845,9.5101,0,0,0,765,0 +440,3.4727,9.4719,0.0182,0.0018,1,0,0.0410,8226,9.5112,0,0,0,8146,0 +441,5.2031,9.5692,0.0420,0.0052,1,0,0.0866,922,9.6345,0,0,0,842,0 +442,5.0714,9.5379,0.0201,0.0018,1,0,0.0396,835,9.5796,0,0,0,755,0 +443,3.4093,9.4886,0.0163,0.0019,1,0,0.0440,909,9.5207,0,0,0,829,0 +444,4.9221,9.4497,0.0193,0.0018,1,0,0.0157,6437,9.4898,0,0,0,6357,0 +445,3.4118,9.6223,0.0450,0.0059,1,0,0.0344,893,9.6928,0,0,0,813,0 +446,5.0749,9.5074,0.0198,0.0019,1,0,0.0143,1320,9.5488,0,0,0,1240,0 +447,3.3976,9.4918,0.0189,0.0019,1,0,0.0151,1251,9.5316,0,0,0,1171,0 +448,5.0650,9.5303,0.0250,0.0018,1,0,0.0173,21784,9.5765,0,0,0,21704,0 +449,4.3737,9.5910,0.0460,0.0053,1,0,0.0336,2667,9.6576,0,0,0,2587,0 +450,4.4721,9.4844,0.0182,0.0021,1,0,0.0142,1012,9.5241,0,0,0,932,0 +451,4.3510,9.5578,0.0419,0.0056,1,0,0.0323,1020,9.6236,0,0,0,940,0 +452,4.4684,9.4700,0.0230,0.0021,1,0,0.0174,7606,9.5089,0,0,0,7526,0 +453,3.4022,9.6254,0.0386,0.0052,1,0,0.0252,2002,9.6976,0,0,0,1922,0 +454,4.4550,9.4250,0.0198,0.0019,1,0,0.0169,865,9.4662,0,0,0,785,0 +455,3.4299,9.5886,0.0446,0.0057,1,0,0.0965,864,9.6667,0,0,0,784,0 +456,4.6402,9.4551,0.0208,0.0019,1,0,0.0546,7758,9.4974,0,0,0,7678,0 +457,3.4265,9.4707,0.0221,0.0021,1,0,0.0452,890,9.5092,0,0,0,810,0 +458,3.4160,9.4897,0.0193,0.0019,1,0,0.0421,1718,9.5305,0,0,0,1638,0 +459,4.3237,9.5061,0.0172,0.0019,1,0,0.0436,1051,9.5445,0,0,0,971,0 +460,3.4124,9.4763,0.0180,0.0017,1,0,0.0466,6710,9.5157,0,0,0,6630,0 +461,4.4326,9.4575,0.0168,0.0020,1,0,0.0161,864,9.4898,0,0,0,784,0 +462,4.3515,9.6263,0.0412,0.0056,1,0,0.0977,1177,9.7012,0,0,0,1097,0 +463,4.4932,9.4632,0.0195,0.0020,1,0,0.0145,1073,9.5040,0,0,0,993,0 +464,4.3443,9.5961,0.0388,0.0055,1,0,0.1080,8238,9.6767,0,0,0,8158,0 +465,4.5014,9.4655,0.0177,0.0021,1,0,0.0462,2161,9.5054,0,0,0,2081,0 +466,3.3876,9.5770,0.0401,0.0058,1,0,0.0295,972,9.6447,0,0,0,892,0 +467,4.5043,9.4896,0.0253,0.0030,1,0,0.0595,979,9.5328,0,0,0,899,0 +468,3.4466,9.6258,0.0233,0.0020,1,0,0.0576,8323,9.6717,0,0,0,8243,0 +469,3.3953,9.5363,0.0195,0.0023,1,0,0.0175,1038,9.5719,0,0,0,958,0 +470,5.1312,9.4875,0.0139,0.0018,1,0,0.0427,1061,9.5215,0,0,0,981,0 +471,3.3975,9.5068,0.0202,0.0021,1,0,0.0147,1213,9.5488,0,0,0,1133,0 +472,5.1870,9.5125,0.0180,0.0018,1,0,0.0508,8152,9.5510,0,0,0,8072,0 +473,3.4197,9.4752,0.0196,0.0018,1,0,0.0440,1739,9.5102,0,0,0,1659,0 +474,4.4042,9.5092,0.0179,0.0020,1,0,0.0362,981,9.5483,0,0,0,901,0 +475,3.4127,9.4640,0.0192,0.0017,1,0,0.0398,1049,9.5040,0,0,0,969,0 +476,4.4825,9.5138,0.0203,0.0019,1,0,0.0465,7404,9.5549,0,0,0,7324,0 +477,3.4078,9.4723,0.0592,0.0063,1,0,0.0300,1134,9.6183,0,0,0,1054,0 +478,4.5468,9.4484,0.0194,0.0020,1,0,0.0369,2606,9.4894,0,0,0,2526,0 +479,5.0862,9.4648,0.0173,0.0017,1,0,0.0378,2009,9.5025,0,0,0,1929,0 +480,3.3968,8.3239,0.0229,0.0015,1,0,0.0630,36686,8.3657,0,1,0,36606,0 +481,4.8952,9.4981,0.0190,0.0018,1,0,0.0430,3917,9.5384,0,0,0,3837,0 +482,3.4187,9.4940,0.0214,0.0018,1,0,0.0405,4026,9.5371,0,0,0,3946,0 +483,4.9264,9.4613,0.0180,0.0020,1,0,0.0389,4381,9.5000,0,0,0,4301,0 +484,3.4066,9.6205,0.0475,0.0055,1,0,0.1070,9211,9.7018,0,0,0,9131,0 +485,4.9781,9.4569,0.0199,0.0020,1,0,0.0395,3998,9.4981,0,0,0,3918,0 +486,3.4217,9.5534,0.0472,0.0044,1,0,0.0963,1825,9.6345,0,0,0,1745,0 +487,4.9615,9.4850,0.0221,0.0020,1,0,0.0399,1698,9.5289,0,0,0,1618,0 +488,4.3407,9.5913,0.0449,0.0057,1,0,0.1017,7930,9.6606,0,0,0,7850,0 +489,5.2362,9.5803,0.0235,0.0034,1,0,0.0589,934,9.6226,0,0,0,854,0 +490,3.5143,9.6858,0.0231,0.0022,1,0,0.0606,1670,9.7266,0,0,0,1590,0 +491,4.5897,9.5831,0.0196,0.0021,1,0,0.0185,1314,9.6256,0,0,0,1234,0 +492,3.7241,9.6280,0.0284,0.0030,1,0,0.0615,6690,9.6753,0,0,0,6610,0 +493,4.6378,9.5783,0.0200,0.0023,1,0,0.0459,951,9.6149,0,0,0,871,0 +494,3.7256,9.5139,0.0192,0.0028,1,0,0.0457,1284,9.5509,0,0,0,1204,0 +495,4.6797,9.5153,0.0193,0.0022,1,0,0.0475,1229,9.5515,0,0,0,1149,0 +496,3.7643,9.5355,0.0214,0.0025,1,0,0.0514,8569,9.5730,0,0,0,8489,0 +497,4.5216,9.5552,0.0233,0.0021,1,0,0.0555,3046,9.5949,0,0,0,2966,0 +498,3.2356,9.8476,0.0243,0.0022,1,0,0.0543,1797,9.8896,0,0,0,1717,0 +499,4.5563,9.6955,0.0298,0.0026,1,0,0.0563,1490,9.7432,0,0,0,1410,0 +500,3.5175,9.5347,0.0231,0.0024,1,0,0.0523,8381,9.5744,0,0,0,8301,0 +501,4.6852,9.5974,0.0235,0.0026,1,0,0.0541,1434,9.6373,0,0,0,1354,0 +502,3.4628,9.5388,0.0252,0.0025,1,0,0.0480,1683,9.5812,0,0,0,1603,0 +503,3.5054,9.6317,0.0308,0.0042,1,0,0.0628,1797,9.6782,0,0,0,1717,0 +504,4.5214,9.9278,0.0363,0.0033,1,0,0.0861,8516,9.9770,0,0,0,8436,0 +505,3.4710,9.6558,0.0312,0.0032,1,0,0.0632,1580,9.7338,0,0,0,1500,0 +506,3.4744,9.7193,0.0280,0.0027,1,0,0.0524,1325,9.7652,0,0,0,1245,0 +507,3.4953,9.6672,0.0465,0.0038,1,0,0.0862,1540,9.7351,0,0,0,1460,0 +508,3.5065,9.6793,0.0404,0.0030,1,0,0.0839,7270,9.7491,0,0,0,7190,0 +509,3.4974,9.6314,0.0305,0.0021,1,0,0.0589,1508,9.6813,0,0,0,1428,0 +510,3.4800,9.7308,0.0364,0.0032,1,0,0.0794,2333,9.7864,0,0,0,2253,0 +511,3.5438,9.6426,0.0367,0.0026,1,0,0.0681,1858,9.7074,0,0,0,1778,0 +512,3.5528,9.6637,0.0360,0.0033,1,0,0.0910,21105,9.7198,0,0,0,21025,0 +513,3.5064,9.7171,0.0396,0.0025,1,0,0.0787,3245,9.7778,0,0,0,3165,0 +514,3.5362,9.6145,0.0256,0.0023,1,0,0.0591,2022,9.6578,0,0,0,1942,0 +515,3.5398,9.6917,0.0337,0.0026,1,0,0.0745,2257,9.7528,0,0,0,2177,0 +516,3.4682,9.6578,0.0365,0.0024,1,0,0.0825,8839,9.7135,0,0,0,8759,0 +517,3.4855,9.6780,0.0338,0.0029,1,0,0.0668,2789,9.7305,0,0,0,2709,0 +518,3.4661,9.6410,0.0302,0.0025,1,0,0.0588,2553,9.6892,0,0,0,2473,0 +519,4.4014,9.9351,0.0244,0.0027,1,0,0.0595,2497,9.9767,0,0,0,2417,0 +520,3.4871,9.6757,0.0445,0.0040,1,0,0.1042,8259,9.7354,0,0,0,8179,0 +521,3.5179,9.6320,0.0233,0.0018,1,0,0.0568,2041,9.6717,0,0,0,1961,0 +522,3.5107,9.6478,0.0245,0.0023,1,0,0.0531,1756,9.6893,0,0,0,1676,0 +523,3.4987,9.5778,0.0218,0.0020,1,0,0.0501,1843,9.6158,0,0,0,1763,0 +524,3.4584,9.5665,0.0289,0.0027,1,0,0.0616,7230,9.6131,0,0,0,7150,0 +525,4.7478,9.5178,0.0244,0.0022,1,0,0.0559,1833,9.5593,0,0,0,1753,0 +526,3.5343,9.5933,0.0315,0.0027,1,0,0.0716,3126,9.6669,0,0,0,3046,0 +527,3.4652,9.6927,0.0398,0.0035,1,0,0.0774,2579,9.7612,0,0,0,2499,0 +528,3.4741,9.6752,0.0386,0.0040,1,0,0.0725,9597,9.7347,0,0,0,9517,0 +529,3.4708,9.5886,0.0256,0.0024,1,0,0.0540,4477,9.6307,0,0,0,4397,0 +530,4.4071,9.5046,0.0246,0.0022,1,0,0.0506,3058,9.5462,0,0,0,2978,0 +531,3.4399,9.6367,0.0272,0.0026,1,0,0.0777,2920,9.6823,0,0,0,2840,0 +532,3.5068,9.6497,0.0283,0.0029,1,0,0.0647,9369,9.6962,0,0,0,9289,0 +533,3.4439,9.6459,0.0305,0.0026,1,0,0.0607,2954,9.6944,0,0,0,2874,0 +534,3.4748,9.6011,0.0340,0.0026,1,0,0.0628,2827,9.6540,0,0,0,2747,0 +535,5.0185,9.5555,0.0261,0.0027,1,0,0.0606,3018,9.5987,0,0,0,2938,0 +536,3.4876,9.7055,0.0403,0.0037,1,0,0.1008,9203,9.7661,0,0,0,9123,0 +537,3.4724,9.6470,0.0301,0.0026,1,0,0.0726,2349,9.6945,0,0,0,2269,0 +538,3.4495,9.6185,0.0338,0.0027,1,0,0.0788,1992,9.6785,0,0,0,1912,0 +539,4.4889,9.5557,0.0235,0.0020,1,0,0.0431,2005,9.5951,0,0,0,1925,0 +540,3.4811,8.3695,0.0385,0.0018,1,0,0.0703,57155,8.4290,0,1,0,57075,0 +541,3.5267,9.6899,0.0274,0.0025,1,0,0.0581,3779,9.7346,0,0,0,3699,0 +542,3.4919,9.6982,0.0416,0.0026,1,0,0.0687,3187,9.7680,0,0,0,3107,0 +543,3.4981,9.6888,0.0455,0.0032,1,0,0.0801,2649,9.7561,0,0,0,2569,0 +544,3.4771,9.5253,0.0258,0.0022,1,0,0.0562,7743,9.5679,0,0,0,7663,0 +545,4.6670,9.5469,0.0253,0.0028,1,0,0.0648,2074,9.5902,0,0,0,1994,0 +546,3.5418,9.6687,0.0395,0.0026,1,0,0.0798,2458,9.7269,0,0,0,2378,0 +547,4.7459,9.5371,0.0231,0.0020,1,0,0.0551,2610,9.5769,0,0,0,2530,0 +548,3.4779,9.5823,0.0300,0.0028,1,0,0.0863,8278,9.6303,0,0,0,8198,0 +549,4.9642,9.6100,0.0296,0.0032,1,0,0.0653,2285,9.6587,0,0,0,2205,0 +550,3.6500,9.7116,0.0405,0.0036,1,0,0.0730,966,9.7690,0,0,0,886,0 +551,3.5295,9.6344,0.0281,0.0028,1,0,0.0707,861,9.6744,0,0,0,781,0 +552,3.5208,9.7040,0.0260,0.0031,1,0,0.0605,7741,9.7484,0,0,0,7661,0 +553,3.5448,9.6420,0.0269,0.0022,1,0,0.0240,921,9.6873,0,0,0,841,0 +554,3.4591,9.5694,0.0253,0.0022,1,0,0.0526,1913,9.6121,0,0,0,1833,0 +555,3.4500,9.6514,0.0348,0.0051,1,0,0.0612,940,9.7136,0,0,0,860,0 +556,3.4602,9.6296,0.0293,0.0032,1,0,0.0554,6321,9.6913,0,0,0,6241,0 +557,3.4298,9.6708,0.0386,0.0030,1,0,0.0699,990,9.7296,0,0,0,910,0 +558,3.4668,9.5785,0.0244,0.0030,1,0,0.0588,1437,9.6208,0,0,0,1357,0 +559,3.4319,9.5300,0.0212,0.0027,1,0,0.0447,987,9.5682,0,0,0,907,0 +560,4.9171,9.4927,0.0205,0.0024,1,0,0.0508,8408,9.5357,0,0,0,8328,0 +561,3.4132,9.4834,0.0229,0.0025,1,0,0.0441,2962,9.5191,0,0,0,2882,0 +562,4.9800,9.5381,0.0203,0.0021,1,0,0.0422,2258,9.5805,0,0,0,2178,0 +563,3.4373,9.5423,0.0250,0.0024,1,0,0.0900,1466,9.5847,0,0,0,1386,0 +564,3.4731,9.5528,0.0187,0.0031,1,0,0.0424,8516,9.5869,0,0,0,8436,0 +565,3.4672,9.7612,0.0241,0.0030,1,0,0.0881,1898,9.8000,0,0,0,1818,0 +566,5.0790,9.6744,0.0262,0.0026,1,0,0.0474,1953,9.7179,0,0,0,1873,0 +567,3.4956,9.4856,0.0164,0.0019,1,0,0.0469,2144,9.5225,0,0,0,2064,0 +568,4.4158,9.4773,0.0200,0.0020,1,0,0.0448,8468,9.5190,0,0,0,8388,0 +569,3.4283,9.6799,0.0417,0.0051,1,0,0.1755,1842,9.7551,0,0,0,1762,0 +570,4.5273,9.4539,0.0196,0.0021,1,0,0.0148,1404,9.4955,0,0,0,1324,0 +571,3.4149,9.5533,0.0206,0.0023,1,0,0.0482,1616,9.5851,0,0,0,1536,0 +572,4.6702,9.4718,0.0170,0.0019,1,0,0.0489,7364,9.5098,0,0,0,7284,0 +573,3.4272,9.6759,0.0440,0.0056,1,0,0.0736,1540,9.7440,0,0,0,1460,0 +574,4.7867,9.4829,0.0203,0.0023,1,0,0.0481,2462,9.5255,0,0,0,2382,0 +575,3.3957,9.5885,0.0462,0.0055,1,0,0.0935,2330,9.6690,0,0,0,2250,0 +576,5.0046,9.4896,0.0193,0.0023,1,0,0.0485,8080,9.5249,0,0,0,8000,0 +577,3.3952,9.6020,0.0482,0.0055,1,0,0.1006,3032,9.6750,0,0,0,2952,0 +578,4.9300,9.4705,0.0219,0.0023,1,0,0.0511,2332,9.5086,0,0,0,2252,0 +579,3.3940,9.5785,0.0379,0.0057,1,0,0.0823,2077,9.6497,0,0,0,1997,0 +580,4.9761,9.4285,0.0218,0.0018,1,0,0.0495,9027,9.4720,0,0,0,8947,0 +581,3.3973,9.6116,0.0460,0.0056,1,0,0.0898,2468,9.6911,0,0,0,2388,0 +582,4.9177,9.5230,0.0237,0.0023,1,0,0.0511,2259,9.5635,0,0,0,2179,0 +583,3.3975,9.6045,0.0476,0.0055,1,0,0.0953,2348,9.6863,0,0,0,2268,0 +584,5.0317,9.5107,0.0230,0.0022,1,0,0.0537,8256,9.5500,0,0,0,8176,0 +585,3.3953,9.5404,0.0419,0.0052,1,0,0.1006,1849,9.6195,0,0,0,1769,0 +586,5.0878,9.4595,0.0188,0.0022,1,0,0.0466,1890,9.5000,0,0,0,1810,0 +587,3.3946,9.5342,0.0259,0.0023,1,0,0.0653,1825,9.5775,0,0,0,1745,0 +588,5.2799,9.7049,0.0254,0.0022,1,0,0.0514,7257,9.7530,0,0,0,7177,0 +589,3.4946,9.5689,0.0284,0.0020,1,0,0.0662,1741,9.6137,0,0,0,1661,0 +590,4.4343,9.5266,0.0143,0.0020,1,0,0.0367,2883,9.5617,0,0,0,2803,0 +591,3.4129,9.4914,0.0211,0.0018,1,0,0.0550,2366,9.5288,0,0,0,2286,0 +592,4.5748,9.4458,0.0198,0.0016,1,0,0.0445,9442,9.4868,0,0,0,9362,0 +593,3.4070,9.5016,0.0244,0.0022,1,0,0.0519,4331,9.5423,0,0,0,4251,0 +594,3.4043,9.4954,0.0182,0.0022,1,0,0.0401,3593,9.5347,0,0,0,3513,0 +595,4.3228,9.5365,0.0181,0.0022,1,0,0.0382,3610,9.5760,0,0,0,3530,0 +596,3.4147,9.5527,0.0497,0.0057,1,0,0.1135,9444,9.6397,0,0,0,9364,0 +597,4.3051,9.4786,0.0221,0.0022,1,0,0.0427,3085,9.5222,0,0,0,3005,0 +598,4.3640,9.5950,0.0444,0.0052,1,0,0.0800,3009,9.6747,0,0,0,2929,0 +599,4.5293,9.5198,0.0206,0.0019,1,0,0.0391,3144,9.5615,0,0,0,3064,0 +600,3.4190,8.3438,0.0466,0.0021,1,0,0.0507,40103,8.4104,0,1,0,40023,0 +601,5.1499,9.5439,0.0362,0.0053,1,0,0.0796,3159,9.6133,0,0,0,3079,0 +602,4.3029,9.3764,0.0182,0.0020,1,0,0.0356,2316,9.4162,0,0,0,2236,0 +603,4.3666,9.4373,0.0179,0.0018,1,0,0.0449,1458,9.4767,0,0,0,1378,0 +604,3.4008,9.4997,0.0213,0.0018,1,0,0.0454,7129,9.5423,0,0,0,7049,0 +605,3.3947,9.4644,0.0210,0.0025,1,0,0.0364,1509,9.5067,0,0,0,1429,0 +606,4.3068,9.5141,0.0178,0.0019,1,0,0.0382,2423,9.5526,0,0,0,2343,0 +607,3.4056,9.5792,0.0380,0.0052,1,0,0.0941,1049,9.6444,0,0,0,969,0 +608,3.3620,9.4470,0.0267,0.0019,1,0,0.0663,23548,9.4894,0,0,0,23468,0 +609,4.9907,9.6412,0.0248,0.0035,1,0,0.0539,2880,9.6846,0,0,0,2800,0 +610,3.5070,9.6031,0.0292,0.0027,1,0,0.0548,1141,9.6508,0,0,0,1061,0 +611,5.1153,9.5727,0.0193,0.0021,1,0,0.0425,1012,9.6147,0,0,0,932,0 +612,3.4576,9.5555,0.0295,0.0032,1,0,0.0626,8087,9.6032,0,0,0,8007,0 +613,5.1903,9.5895,0.0227,0.0019,1,0,0.0571,2899,9.6285,0,0,0,2819,0 +614,3.5070,9.6522,0.0288,0.0024,1,0,0.0546,899,9.6982,0,0,0,819,0 +615,4.3746,9.5078,0.0200,0.0022,1,0,0.0160,860,9.5492,0,0,0,780,0 +616,3.5145,9.5231,0.0229,0.0025,1,0,0.0568,7686,9.5689,0,0,0,7606,0 +617,4.4235,9.5025,0.0215,0.0021,1,0,0.0194,852,9.5408,0,0,0,772,0 +618,3.5210,9.5859,0.0198,0.0021,1,0,0.0430,883,9.6278,0,0,0,803,0 +619,4.5618,9.5613,0.0301,0.0030,1,0,0.0642,1581,9.6100,0,0,0,1501,0 +620,3.4433,9.5061,0.0201,0.0018,1,0,0.0405,7038,9.5474,0,0,0,6958,0 +621,4.6572,9.4940,0.0152,0.0018,1,0,0.0353,950,9.5298,0,0,0,870,0 +622,3.4421,9.5467,0.0174,0.0031,1,0,0.0293,2114,9.5911,0,0,0,2034,0 +623,4.7848,9.5055,0.0197,0.0020,1,0,0.0377,1639,9.5463,0,0,0,1559,0 +624,3.4290,9.5185,0.0220,0.0019,1,0,0.0471,8020,9.5619,0,0,0,7940,0 +625,3.4151,9.6385,0.0415,0.0056,1,0,0.0856,3716,9.7131,0,0,0,3636,0 +626,4.5313,9.4790,0.0215,0.0021,1,0,0.0383,2125,9.5221,0,0,0,2045,0 +627,3.4426,9.4751,0.0200,0.0017,1,0,0.0420,1754,9.5104,0,0,0,1674,0 +628,4.5873,9.4483,0.0198,0.0018,1,0,0.0365,8255,9.4897,0,0,0,8175,0 +629,4.3698,9.5477,0.0196,0.0021,1,0,0.0463,2407,9.5836,0,0,0,2327,0 +630,3.4326,9.5570,0.0206,0.0020,1,0,0.0476,1628,9.5932,0,0,0,1548,0 +631,5.2010,9.5828,0.0417,0.0052,1,0,0.0840,2285,9.6598,0,0,0,2205,0 +632,5.0216,9.4685,0.0213,0.0021,1,0,0.0462,9397,9.5113,0,0,0,9317,0 +633,4.3679,9.4351,0.0168,0.0017,1,0,0.0415,1693,9.4722,0,0,0,1613,0 +634,3.4058,9.4611,0.0213,0.0020,1,0,0.0398,1797,9.5040,0,0,0,1717,0 +635,4.4883,9.4592,0.0160,0.0020,1,0,0.0338,1070,9.4958,0,0,0,990,0 +636,3.4050,9.4499,0.0215,0.0019,1,0,0.0460,7490,9.4927,0,0,0,7410,0 +637,4.5232,9.4414,0.0179,0.0020,1,0,0.0323,1135,9.4805,0,0,0,1055,0 +638,4.3182,9.4808,0.0187,0.0017,1,0,0.0370,3479,9.5199,0,0,0,3399,0 +639,3.4093,9.4648,0.0195,0.0020,1,0,0.0382,2122,9.5050,0,0,0,2042,0 +640,5.1939,9.5635,0.0500,0.0039,1,0,0.1091,7552,9.6364,0,0,0,7472,0 +641,4.9934,9.4192,0.0193,0.0021,1,0,0.0394,4641,9.4601,0,0,0,4561,0 +642,4.3607,9.4715,0.0187,0.0019,1,0,0.0411,3024,9.5107,0,0,0,2944,0 +643,3.4065,9.4635,0.0215,0.0020,1,0,0.0372,2887,9.5060,0,0,0,2807,0 +644,4.4027,9.4511,0.0175,0.0020,1,0,0.0498,8786,9.4893,0,0,0,8706,0 +645,4.3765,9.5566,0.0426,0.0057,1,0,0.0946,2533,9.6340,0,0,0,2453,0 +646,4.5341,9.4571,0.0216,0.0019,1,0,0.0415,2914,9.5006,0,0,0,2834,0 +647,3.4131,9.5490,0.0360,0.0035,1,0,0.0644,3007,9.6139,0,0,0,2927,0 +648,4.5760,9.5455,0.0204,0.0020,1,0,0.0613,8078,9.5815,0,0,0,7998,0 +649,3.4375,9.5698,0.0255,0.0024,1,0,0.0603,2813,9.6135,0,0,0,2733,0 +650,4.6296,9.4443,0.0144,0.0020,1,0,0.0374,2231,9.4800,0,0,0,2151,0 +651,3.3983,9.5063,0.0232,0.0025,1,0,0.0420,1857,9.5523,0,0,0,1777,0 +652,3.4277,9.5805,0.0227,0.0025,1,0,0.0614,7208,9.6208,0,0,0,7128,0 +653,5.1440,9.4730,0.0171,0.0018,1,0,0.0464,2159,9.5116,0,0,0,2079,0 +654,3.4098,9.5065,0.0173,0.0019,1,0,0.0485,4844,9.5446,0,0,0,4764,0 +655,4.3082,9.4579,0.0175,0.0020,1,0,0.0375,3876,9.4965,0,0,0,3796,0 +656,3.3968,9.4787,0.0214,0.0019,1,0,0.0459,9460,9.5207,0,0,0,9380,0 +657,4.4428,9.4620,0.0156,0.0019,1,0,0.0466,6725,9.4983,0,0,0,6645,0 +658,3.3980,9.5495,0.0396,0.0054,1,0,0.0999,4462,9.6231,0,0,0,4382,0 +659,4.6010,9.4659,0.0193,0.0019,1,0,0.0495,3680,9.5008,0,0,0,3600,0 +660,3.3816,8.3033,0.0255,0.0021,1,0,0.0434,56955,8.3490,0,1,0,56875,0 +661,4.7445,9.4665,0.0215,0.0020,1,0,0.0348,3470,9.5093,0,0,0,3390,0 +662,4.3785,9.4792,0.0189,0.0022,1,0,0.0404,2442,9.5191,0,0,0,2362,0 +663,3.4345,9.4604,0.0202,0.0020,1,0,0.0389,2736,9.5019,0,0,0,2656,0 +664,4.3701,9.5311,0.0193,0.0018,1,0,0.0411,9301,9.5717,0,0,0,9221,0 +665,3.4053,9.4615,0.0172,0.0019,1,0,0.0383,1730,9.4992,0,0,0,1650,0 +666,4.3946,9.4482,0.0182,0.0018,1,0,0.0310,1016,9.4863,0,0,0,936,0 +667,4.3721,9.5501,0.0367,0.0053,1,0,0.0855,1309,9.6201,0,0,0,1229,0 +668,4.5312,9.4977,0.0225,0.0028,1,0,0.0418,6868,9.5424,0,0,0,6788,0 +669,4.4417,9.6480,0.0215,0.0031,1,0,0.0543,1424,9.6877,0,0,0,1344,0 +670,4.6284,9.6372,0.0278,0.0027,1,0,0.0574,1592,9.6770,0,0,0,1512,0 +671,2.9211,9.7649,0.0436,0.0063,1,0,0.0933,1673,9.8470,0,0,0,1593,0 +672,5.7080,9.5931,0.0225,0.0033,1,0,0.0682,7061,9.6341,0,0,0,6981,0 +673,3.7346,9.5627,0.0223,0.0025,1,0,0.0503,1759,9.6081,0,0,0,1679,0 +674,3.6925,9.5051,0.0199,0.0018,1,0,0.0143,1351,9.5465,0,0,0,1271,0 +675,4.5583,9.5028,0.0195,0.0025,1,0,0.0403,1636,9.5444,0,0,0,1556,0 +676,3.6082,9.4910,0.0220,0.0022,1,0,0.0636,8029,9.5297,0,0,0,7949,0 +677,5.0349,9.5184,0.0259,0.0022,1,0,0.0539,2212,9.5609,0,0,0,2132,0 +678,3.4358,9.5116,0.0214,0.0021,1,0,0.0493,1083,9.5552,0,0,0,1003,0 +679,4.5403,9.4678,0.0203,0.0025,1,0,0.0421,948,9.5103,0,0,0,868,0 +680,3.4447,9.4811,0.0192,0.0022,1,0,0.0575,7885,9.5168,0,0,0,7805,0 +681,4.6712,9.4540,0.0165,0.0019,1,0,0.0133,896,9.4914,0,0,0,816,0 +682,3.4584,9.5188,0.0131,0.0025,1,0,0.0724,1109,9.5602,0,0,0,1029,0 +683,4.7970,9.4648,0.0180,0.0022,1,0,0.0406,1891,9.5040,0,0,0,1811,0 +684,3.4198,9.6122,0.0465,0.0060,1,0,0.0939,6688,9.6934,0,0,0,6608,0 +685,4.3076,9.4695,0.0195,0.0023,1,0,0.0462,868,9.5050,0,0,0,788,0 +686,4.3098,9.4560,0.0157,0.0022,1,0,0.0356,1540,9.4932,0,0,0,1460,0 +687,3.4131,9.4411,0.0212,0.0020,1,0,0.0382,1946,9.4837,0,0,0,1866,0 +688,4.5131,9.4684,0.0189,0.0020,1,0,0.0414,8382,9.5022,0,0,0,8302,0 +689,3.4167,9.5491,0.0452,0.0057,1,0,0.0865,3353,9.6280,0,0,0,3273,0 +690,4.6121,9.4774,0.0182,0.0021,1,0,0.0371,1838,9.5170,0,0,0,1758,0 +691,4.3803,9.4452,0.0167,0.0022,1,0,0.0402,1957,9.4835,0,0,0,1877,0 +692,3.3985,9.4771,0.0204,0.0022,1,0,0.0395,8431,9.5193,0,0,0,8351,0 +693,4.3320,9.4743,0.0177,0.0020,1,0,0.0363,1611,9.5131,0,0,0,1531,0 +694,3.3969,9.4635,0.0213,0.0022,1,0,0.0377,1612,9.5060,0,0,0,1532,0 +695,4.3756,9.4420,0.0191,0.0020,1,0,0.0360,1738,9.4824,0,0,0,1658,0 +696,5.0535,9.4633,0.0190,0.0018,1,0,0.0426,8364,9.5027,0,0,0,8284,0 +697,3.4328,9.4659,0.0205,0.0020,1,0,0.0350,1828,9.5079,0,0,0,1748,0 +698,4.9055,9.4585,0.0184,0.0018,1,0,0.0336,1524,9.4973,0,0,0,1444,0 +699,3.4037,9.4482,0.0171,0.0018,1,0,0.0385,1560,9.4854,0,0,0,1480,0 +700,4.9018,9.4540,0.0202,0.0018,1,0,0.0362,7248,9.4950,0,0,0,7168,0 +701,3.4002,9.5917,0.0424,0.0053,1,0,0.0352,1439,9.6693,0,0,0,1359,0 +702,4.9722,9.4653,0.0239,0.0025,1,0,0.0466,2502,9.5060,0,0,0,2422,0 +703,3.3909,9.5489,0.0460,0.0056,1,0,0.0940,2216,9.6290,0,0,0,2136,0 +704,4.9506,9.5291,0.0315,0.0023,1,0,0.0558,23169,9.5829,0,0,0,23089,0 +705,3.3965,9.5439,0.0438,0.0048,1,0,0.0979,2955,9.6206,0,0,0,2875,0 +706,5.0664,9.4590,0.0208,0.0020,1,0,0.0404,2077,9.5019,0,0,0,1997,0 +707,3.4087,9.5221,0.0288,0.0023,1,0,0.0496,2030,9.5682,0,0,0,1950,0 +708,5.2581,9.5555,0.0197,0.0019,1,0,0.0603,8810,9.5909,0,0,0,8730,0 +709,3.4297,9.5615,0.0280,0.0022,1,0,0.0550,2479,9.6060,0,0,0,2399,0 +710,4.4049,9.4964,0.0143,0.0020,1,0,0.0357,2338,9.5312,0,0,0,2258,0 +711,3.4172,9.4620,0.0214,0.0018,1,0,0.0385,2489,9.5043,0,0,0,2409,0 +712,4.5102,9.4706,0.0186,0.0019,1,0,0.0407,8223,9.5099,0,0,0,8143,0 +713,4.3491,9.6195,0.0419,0.0049,1,0,0.0936,1905,9.6812,0,0,0,1825,0 +714,4.3996,9.4989,0.0206,0.0024,1,0,0.0398,1651,9.5422,0,0,0,1571,0 +715,4.9297,9.4648,0.0149,0.0018,1,0,0.0356,1759,9.5004,0,0,0,1679,0 +716,3.4072,9.4644,0.0195,0.0018,1,0,0.0437,7189,9.5047,0,0,0,7109,0 +717,4.8846,9.4635,0.0189,0.0021,1,0,0.0481,1713,9.4980,0,0,0,1633,0 +718,4.3414,9.4513,0.0169,0.0018,1,0,0.0365,3121,9.4893,0,0,0,3041,0 +719,3.4152,9.5024,0.0178,0.0020,1,0,0.0377,2273,9.5406,0,0,0,2193,0 +720,4.7281,8.3261,0.0277,0.0032,1,0,0.0635,36201,8.3762,0,1,0,36121,0 +721,3.4182,9.4817,0.0205,0.0018,1,0,0.0586,5821,9.5184,0,0,0,5741,0 +722,4.8309,9.4806,0.0186,0.0021,1,0,0.0460,3622,9.5210,0,0,0,3542,0 +723,3.4094,9.4928,0.0224,0.0018,1,0,0.0398,2381,9.5366,0,0,0,2301,0 +724,5.0378,9.4695,0.0194,0.0019,1,0,0.0503,9351,9.5112,0,0,0,9271,0 +725,3.3892,9.4796,0.0199,0.0018,1,0,0.0450,1399,9.5207,0,0,0,1319,0 +726,5.0792,9.4831,0.0155,0.0017,1,0,0.0343,1028,9.5190,0,0,0,948,0 +727,3.4176,9.4640,0.0213,0.0018,1,0,0.0357,1027,9.5070,0,0,0,947,0 +728,5.1566,9.4548,0.0185,0.0018,1,0,0.0425,8671,9.4942,0,0,0,8591,0 +729,3.4470,9.6532,0.0276,0.0028,1,0,0.0458,915,9.6994,0,0,0,835,0 +730,4.3743,9.6784,0.0249,0.0023,1,0,0.0508,915,9.7372,0,0,0,835,0 +731,3.2080,9.5586,0.0210,0.0023,1,0,0.0540,874,9.5972,0,0,0,794,0 +732,4.6771,9.5970,0.0378,0.0030,1,0,0.0833,6515,9.6508,0,0,0,6435,0 +733,3.7631,9.6010,0.0301,0.0025,1,0,0.0442,851,9.6500,0,0,0,771,0 +734,3.6018,9.5320,0.0232,0.0018,1,0,0.0395,1467,9.5711,0,0,0,1387,0 +735,3.4337,9.5318,0.0219,0.0018,1,0,0.0449,1083,9.5698,0,0,0,1003,0 +736,3.4297,9.5420,0.0191,0.0041,1,0,0.0546,7256,9.5796,0,0,0,7176,0 +737,4.9653,9.5510,0.0244,0.0024,1,0,0.0509,1797,9.5921,0,0,0,1717,0 +738,3.1515,9.7799,0.0394,0.0027,1,0,0.0851,970,9.8449,0,0,0,890,0 +739,5.1789,9.6366,0.0259,0.0021,1,0,0.0471,851,9.6797,0,0,0,771,0 +740,3.4202,9.4860,0.0182,0.0021,1,0,0.0500,7503,9.5258,0,0,0,7423,0 +741,5.1653,9.4754,0.0155,0.0024,1,0,0.0405,2014,9.5063,0,0,0,1934,0 +742,3.4144,9.4510,0.0090,0.0015,1,0,0.0283,843,9.4791,0,0,0,763,0 +743,5.2358,9.6650,0.0288,0.0032,1,0,0.0193,841,9.7215,0,0,0,761,0 +744,3.4244,9.5388,0.0255,0.0023,1,0,0.0738,7590,9.5810,0,0,0,7510,0 +745,3.4508,9.6038,0.0233,0.0023,1,0,0.0202,892,9.6442,0,0,0,812,0 +746,3.4409,9.6070,0.0333,0.0029,1,0,0.0636,808,9.6592,0,0,0,728,0 +747,3.4852,9.6170,0.0364,0.0033,1,0,0.0657,2061,9.6780,0,0,0,1981,0 +748,3.4781,9.5051,0.0158,0.0031,1,0,0.0641,6151,9.5378,0,0,0,6071,0 +749,3.4750,9.5346,0.0258,0.0023,1,0,0.0517,889,9.5768,0,0,0,809,0 +750,4.4165,9.5011,0.0238,0.0020,1,0,0.0518,1067,9.5415,0,0,0,987,0 +751,3.4616,9.5798,0.0335,0.0037,1,0,0.0710,935,9.6335,0,0,0,855,0 +752,3.4933,9.6752,0.0274,0.0025,1,0,0.0528,8273,9.7196,0,0,0,8193,0 +753,3.4906,9.5648,0.0213,0.0022,1,0,0.0479,2495,9.6032,0,0,0,2415,0 +754,3.4242,9.5028,0.0235,0.0020,1,0,0.0493,1845,9.5424,0,0,0,1765,0 +755,5.0536,9.6209,0.0294,0.0020,1,0,0.0512,1109,9.6668,0,0,0,1029,0 +756,3.4295,9.7085,0.0369,0.0024,1,0,0.0649,8325,9.7638,0,0,0,8245,0 +757,5.1459,9.7035,0.0232,0.0029,1,0,0.0515,1163,9.7443,0,0,0,1083,0 +758,3.4253,9.6600,0.0329,0.0024,1,0,0.0689,1244,9.7114,0,0,0,1164,0 +759,5.1330,9.6638,0.0372,0.0029,1,0,0.0794,1361,9.7307,0,0,0,1281,0 +760,3.4843,9.6173,0.0341,0.0032,1,0,0.0855,8530,9.6712,0,0,0,8450,0 +761,5.2010,9.6019,0.0241,0.0025,1,0,0.0568,2059,9.6431,0,0,0,1979,0 +762,3.4503,9.7151,0.0416,0.0035,1,0,0.0807,2638,9.7774,0,0,0,2558,0 +763,3.4904,9.6493,0.0408,0.0032,1,0,0.0757,1721,9.7095,0,0,0,1641,0 +764,3.4382,9.5229,0.0216,0.0020,1,0,0.0605,7146,9.5610,0,0,0,7066,0 +765,3.4072,9.5490,0.0243,0.0026,1,0,0.0542,1652,9.5907,0,0,0,1572,0 +766,3.4222,9.5613,0.0292,0.0031,1,0,0.0512,2456,9.6085,0,0,0,2376,0 +767,3.4295,9.5895,0.0289,0.0032,1,0,0.0607,1946,9.6376,0,0,0,1866,0 +768,3.4224,9.6152,0.0304,0.0025,1,0,0.0751,21035,9.6621,0,0,0,20955,0 +769,3.4334,9.5117,0.0245,0.0025,1,0,0.0475,3486,9.5527,0,0,0,3406,0 +770,3.4073,9.5682,0.0219,0.0025,1,0,0.0573,2433,9.6066,0,0,0,2353,0 +771,3.4205,9.5660,0.0245,0.0027,1,0,0.0504,2308,9.6077,0,0,0,2228,0 +772,5.2105,9.5407,0.0241,0.0027,1,0,0.0555,8610,9.5824,0,0,0,8530,0 +773,3.4403,9.6250,0.0316,0.0033,1,0,0.0745,3696,9.6843,0,0,0,3616,0 +774,4.3253,9.5852,0.0278,0.0024,1,0,0.0618,2278,9.6303,0,0,0,2198,0 +775,5.0122,9.5135,0.0199,0.0029,1,0,0.0554,2791,9.5506,0,0,0,2711,0 +776,3.4750,9.5527,0.0316,0.0035,1,0,0.1049,8451,9.5978,0,0,0,8371,0 +777,3.4298,9.5420,0.0252,0.0022,1,0,0.0486,2672,9.5836,0,0,0,2592,0 +778,3.4068,9.5586,0.0203,0.0025,1,0,0.0576,1975,9.6015,0,0,0,1895,0 +779,3.4130,9.4878,0.0191,0.0018,1,0,0.0498,2282,9.5227,0,0,0,2202,0 +780,4.6067,8.4119,0.0380,0.0025,1,0,0.0840,48693,8.4665,0,1,0,48613,0 +781,3.4217,9.6380,0.0243,0.0024,1,0,0.0622,3737,9.6799,0,0,0,3657,0 +782,3.4156,9.5457,0.0248,0.0023,1,0,0.0537,3462,9.5872,0,0,0,3382,0 +783,3.4201,9.7461,0.0687,0.0060,1,0,0.1557,2304,9.8422,0,0,0,2224,0 +784,4.7821,9.6803,0.0401,0.0033,1,0,0.0985,10904,9.7471,0,0,0,10824,0 +785,3.4580,9.5911,0.0339,0.0038,1,0,0.0788,3158,9.6514,0,0,0,3078,0 +786,3.4417,9.5533,0.0251,0.0027,1,0,0.0605,1954,9.5957,0,0,0,1874,0 +787,4.4138,9.5362,0.0220,0.0025,1,0,0.0494,1318,9.5752,0,0,0,1238,0 +788,3.4552,9.5639,0.0257,0.0024,1,0,0.0630,8573,9.6060,0,0,0,8493,0 +789,4.6287,9.7903,0.0369,0.0038,1,0,0.0836,1120,9.8469,0,0,0,1040,0 +790,3.4847,9.8309,0.0306,0.0043,1,0,0.1609,959,9.8836,0,0,0,879,0 +791,3.0714,9.6730,0.0304,0.0029,1,0,0.0597,929,9.7298,0,0,0,849,0 +792,3.6525,9.5869,0.0265,0.0028,1,0,0.0705,8273,9.6326,0,0,0,8193,0 +793,3.7134,9.6192,0.0240,0.0025,1,0,0.0524,882,9.6610,0,0,0,802,0 +794,3.7091,9.5258,0.0241,0.0025,1,0,0.0535,899,9.5672,0,0,0,819,0 +795,3.4594,9.6309,0.0319,0.0022,1,0,0.0687,958,9.6815,0,0,0,878,0 +796,3.4346,9.5771,0.0308,0.0024,1,0,0.0850,6580,9.6261,0,0,0,6500,0 +797,3.4779,9.5245,0.0259,0.0023,1,0,0.0542,971,9.5678,0,0,0,891,0 +798,3.4394,9.6116,0.0222,0.0020,1,0,0.0417,1436,9.6500,0,0,0,1356,0 +799,3.4521,9.6372,0.0237,0.0022,1,0,0.0594,1516,9.6777,0,0,0,1436,0 +800,4.4353,20.0504,0.0314,0.0047,1,0,0.2104,7413,20.1058,0,0,0,7333,0 +801,13.4756,9.7613,0.0363,0.0049,1,0,0.0719,1899,9.8258,0,0,0,1819,0 +802,6.3733,10.5546,0.0214,0.0022,1,0,0.0494,1422,10.5930,0,0,0,1342,0 +803,3.4736,9.6373,0.0242,0.0029,1,0,0.0221,1191,9.6796,0,0,0,1111,0 +804,3.4194,9.5527,0.0265,0.0025,1,0,0.0671,7620,9.6040,0,0,0,7540,0 +805,3.4588,9.5712,0.0226,0.0021,1,0,0.0526,2034,9.6100,0,0,0,1954,0 +806,3.4280,9.5953,0.0233,0.0024,1,0,0.0171,910,9.6353,0,0,0,830,0 +807,3.4152,9.6333,0.0162,0.0023,1,0,0.0545,868,9.6654,0,0,0,788,0 +808,3.3857,9.4757,0.0216,0.0020,1,0,0.0544,7579,9.5130,0,0,0,7499,0 +809,3.4187,9.5080,0.0192,0.0020,1,0,0.0170,910,9.5430,0,0,0,830,0 +810,3.3865,9.6310,0.0197,0.0020,1,0,0.0566,2065,9.6725,0,0,0,1985,0 +811,3.3887,9.5885,0.0232,0.0024,1,0,0.0165,847,9.6336,0,0,0,767,0 +812,3.3959,9.5999,0.0232,0.0021,1,0,0.0620,6172,9.6466,0,0,0,6092,0 +813,3.4455,9.4977,0.0223,0.0019,1,0,0.0161,876,9.5427,0,0,0,796,0 +814,3.4613,9.5256,0.0168,0.0019,1,0,0.0489,1026,9.5640,0,0,0,946,0 +815,3.4153,9.4672,0.0175,0.0019,1,0,0.0166,990,9.5003,0,0,0,910,0 +816,3.4170,9.5146,0.0208,0.0019,1,0,0.0579,8395,9.5568,0,0,0,8315,0 +817,4.4185,9.4930,0.0172,0.0019,1,0,0.0410,2956,9.5313,0,0,0,2876,0 +818,3.4138,9.4869,0.0192,0.0019,1,0,0.0393,1885,9.5277,0,0,0,1805,0 +819,4.3711,9.5159,0.0186,0.0021,1,0,0.0331,1054,9.5558,0,0,0,974,0 +820,4.3963,9.4429,0.0203,0.0018,1,0,0.0502,8369,9.4851,0,0,0,8289,0 +821,4.4458,9.4742,0.0180,0.0019,1,0,0.0341,1068,9.5127,0,0,0,988,0 +822,3.4119,9.5750,0.0392,0.0052,1,0,0.0753,1113,9.6475,0,0,0,1033,0 +823,4.3608,9.4299,0.0169,0.0019,1,0,0.0423,1136,9.4680,0,0,0,1056,0 +824,4.3745,9.6130,0.0463,0.0053,1,0,0.1016,8254,9.6922,0,0,0,8174,0 +825,4.5175,9.5234,0.0202,0.0022,1,0,0.0469,1097,9.5598,0,0,0,1017,0 +826,3.4165,9.4625,0.0093,0.0015,1,0,0.0204,1018,9.4805,0,0,0,938,0 +827,4.5157,9.4908,0.0249,0.0028,1,0,0.0520,975,9.5332,0,0,0,895,0 +828,3.4802,9.6545,0.0307,0.0021,1,0,0.0589,6812,9.7013,0,0,0,6732,0 +829,3.4222,9.5044,0.0204,0.0022,1,0,0.0459,1176,9.5410,0,0,0,1096,0 +830,5.1617,9.4911,0.0135,0.0022,1,0,0.0406,1900,9.5255,0,0,0,1820,0 +831,3.4263,9.5267,0.0221,0.0022,1,0,0.0512,1475,9.5647,0,0,0,1395,0 +832,5.1518,9.5361,0.0166,0.0020,1,0,0.0426,7195,9.5735,0,0,0,7115,0 +833,3.4233,9.4960,0.0220,0.0024,1,0,0.0488,2245,9.5350,0,0,0,2165,0 +834,4.2815,9.4832,0.0160,0.0021,1,0,0.0373,1632,9.5204,0,0,0,1552,0 +835,3.4097,9.5901,0.0477,0.0057,1,0,0.0936,1939,9.6591,0,0,0,1859,0 +836,5.0950,9.5207,0.0218,0.0021,1,0,0.0482,8376,9.5642,0,0,0,8296,0 +837,3.4026,9.4684,0.0201,0.0021,1,0,0.0398,2775,9.5095,0,0,0,2695,0 +838,4.2916,9.5136,0.0160,0.0021,1,0,0.0434,2131,9.5509,0,0,0,2051,0 +839,4.3804,9.5640,0.0428,0.0059,1,0,0.0751,2303,9.6293,0,0,0,2223,0 +840,4.8755,8.4043,0.0371,0.0020,1,0,0.0695,46421,8.4635,0,1,0,46341,0 +841,4.3803,9.6518,0.0445,0.0056,1,0,0.1020,4453,9.7217,0,0,0,4373,0 +842,4.5863,9.5159,0.0210,0.0028,1,0,0.0414,3863,9.5591,0,0,0,3783,0 +843,3.4212,9.4885,0.0167,0.0020,1,0,0.0470,4253,9.5269,0,0,0,4173,0 +844,4.6825,9.4391,0.0191,0.0016,1,0,0.0421,9221,9.4785,0,0,0,9141,0 +845,3.4053,9.5968,0.0441,0.0057,1,0,0.0338,1050,9.6747,0,0,0,970,0 +846,4.6868,9.4337,0.0180,0.0022,1,0,0.0424,1896,9.4738,0,0,0,1816,0 +847,5.1007,9.4602,0.0144,0.0017,1,0,0.0329,1380,9.4947,0,0,0,1300,0 +848,3.4088,9.4350,0.0225,0.0018,1,0,0.0379,9319,9.4784,0,0,0,9239,0 +849,4.3759,9.7015,0.0275,0.0027,1,0,0.0497,2362,9.7472,0,0,0,2282,0 +850,3.4984,9.6337,0.0269,0.0030,1,0,0.0163,1112,9.6864,0,0,0,1032,0 +851,4.4235,9.6109,0.0209,0.0023,1,0,0.0568,988,9.6492,0,0,0,908,0 +852,3.4910,9.6157,0.0398,0.0039,1,0,0.0606,8601,9.6816,0,0,0,8521,0 +853,3.5146,9.6005,0.0205,0.0022,1,0,0.0506,1105,9.6375,0,0,0,1025,0 +854,5.1571,9.5275,0.0193,0.0020,1,0,0.0413,1150,9.5630,0,0,0,1070,0 +855,3.4579,9.5511,0.0253,0.0024,1,0,0.0454,1268,9.5958,0,0,0,1188,0 +856,5.1822,9.4815,0.0220,0.0023,1,0,0.0568,8487,9.5202,0,0,0,8407,0 +857,3.4702,9.5518,0.0215,0.0024,1,0,0.0483,946,9.5902,0,0,0,866,0 +858,4.9706,9.6529,0.0215,0.0019,1,0,0.0498,813,9.6905,0,0,0,733,0 +859,3.4922,9.5635,0.0157,0.0018,1,0,0.0460,850,9.6009,0,0,0,770,0 +860,4.3266,9.5475,0.0211,0.0021,1,0,0.0528,6448,9.5846,0,0,0,6368,0 +861,3.4151,9.4595,0.0215,0.0021,1,0,0.0429,888,9.5030,0,0,0,808,0 +862,4.6038,9.4542,0.0201,0.0020,1,0,0.0421,1340,9.4961,0,0,0,1260,0 +863,3.4057,9.5555,0.0462,0.0056,1,0,0.0906,1232,9.6360,0,0,0,1152,0 +864,4.3438,9.5121,0.0255,0.0025,1,0,0.0598,22195,9.5542,0,0,0,22115,0 +865,3.3973,9.5111,0.0483,0.0067,1,0,0.0997,2566,9.5852,0,0,0,2486,0 +866,4.7922,9.4448,0.0195,0.0023,1,0,0.0428,1107,9.4806,0,0,0,1027,0 +867,4.3508,9.4430,0.0158,0.0020,1,0,0.0159,939,9.4805,0,0,0,859,0 +868,3.3834,9.4388,0.0209,0.0023,1,0,0.0539,7689,9.4813,0,0,0,7609,0 +869,4.5441,9.4489,0.0165,0.0020,1,0,0.0454,2030,9.4861,0,0,0,1950,0 +870,3.3955,9.5661,0.0190,0.0023,1,0,0.0158,871,9.6005,0,0,0,791,0 +871,3.3838,9.4972,0.0213,0.0023,1,0,0.0460,881,9.5350,0,0,0,801,0 +872,4.3207,9.4895,0.0214,0.0019,1,0,0.0350,7617,9.5326,0,0,0,7537,0 +873,3.4536,9.5002,0.0205,0.0018,1,0,0.0407,935,9.5365,0,0,0,855,0 +874,4.4583,9.4344,0.0156,0.0018,1,0,0.0345,1894,9.4706,0,0,0,1814,0 +875,5.0481,9.4418,0.0175,0.0017,1,0,0.0376,967,9.4801,0,0,0,887,0 +876,3.4202,9.4592,0.0200,0.0022,1,0,0.0385,6549,9.5012,0,0,0,6469,0 +877,4.9030,9.4657,0.0168,0.0019,1,0,0.0365,871,9.5035,0,0,0,791,0 +878,3.4297,9.6768,0.0415,0.0057,1,0,0.0910,1017,9.7523,0,0,0,937,0 +879,5.0563,9.5013,0.0193,0.0019,1,0,0.0368,1527,9.5424,0,0,0,1447,0 +880,3.4238,9.4914,0.0186,0.0031,1,0,0.0450,8521,9.5437,0,0,0,8441,0 +881,5.2625,9.5135,0.0184,0.0022,1,0,0.0417,2635,9.5540,0,0,0,2555,0 +882,3.4085,9.4844,0.0195,0.0020,1,0,0.0397,1663,9.5251,0,0,0,1583,0 +883,5.2040,9.4754,0.0177,0.0019,1,0,0.0325,1386,9.5142,0,0,0,1306,0 +884,3.3977,9.5792,0.0388,0.0056,1,0,0.0931,8399,9.6508,0,0,0,8319,0 +885,3.3469,9.3840,0.0197,0.0021,1,0,0.0517,1466,9.4195,0,0,0,1386,0 +886,4.8970,9.4533,0.0200,0.0020,1,0,0.0396,1719,9.4945,0,0,0,1639,0 +887,3.3942,9.5227,0.0302,0.0025,1,0,0.0687,1500,9.5844,0,0,0,1420,0 +888,5.0799,9.6627,0.0389,0.0032,1,0,0.0756,8318,9.7208,0,0,0,8238,0 +889,3.4746,9.6387,0.0237,0.0024,1,0,0.0681,1483,9.6800,0,0,0,1403,0 +890,5.2036,9.5497,0.0144,0.0017,1,0,0.0350,1126,9.5844,0,0,0,1046,0 +891,3.4362,9.4788,0.0159,0.0018,1,0,0.0334,1138,9.5154,0,0,0,1058,0 +892,4.3330,9.5033,0.0169,0.0019,1,0,0.0490,6765,9.5415,0,0,0,6685,0 +893,3.4290,9.4904,0.0165,0.0018,1,0,0.0345,1124,9.5275,0,0,0,1044,0 +894,4.5008,9.4315,0.0145,0.0017,1,0,0.0339,1675,9.4660,0,0,0,1595,0 +895,5.1610,9.5070,0.0138,0.0021,1,0,0.0332,1628,9.5418,0,0,0,1548,0 +896,3.4160,9.4905,0.0238,0.0020,1,0,0.0425,7194,9.5368,0,0,0,7114,0 +897,5.1270,9.4667,0.0154,0.0020,1,0,0.0338,2226,9.5030,0,0,0,2146,0 +898,3.3969,9.4570,0.0200,0.0017,1,0,0.0355,2257,9.4976,0,0,0,2177,0 +899,4.3178,9.4578,0.0184,0.0019,1,0,0.0335,1943,9.4968,0,0,0,1863,0 +900,3.4133,8.3525,0.0297,0.0022,1,0,0.0585,56128,8.4020,0,1,0,56048,0 +901,5.1137,9.4574,0.0188,0.0018,1,0,0.0481,6117,9.4975,0,0,0,6037,0 +902,3.4091,9.4483,0.0219,0.0021,1,0,0.0439,4733,9.4917,0,0,0,4653,0 +903,4.4558,9.4701,0.0159,0.0019,1,0,0.0372,3200,9.5057,0,0,0,3120,0 +904,3.4538,9.5312,0.0229,0.0022,1,0,0.0459,8961,9.5761,0,0,0,8881,0 +905,4.8163,9.4408,0.0161,0.0020,1,0,0.0330,1726,9.4779,0,0,0,1646,0 +906,3.4186,9.6384,0.0475,0.0057,1,0,0.0890,1438,9.7193,0,0,0,1358,0 +907,4.7627,9.5237,0.0213,0.0020,1,0,0.0365,1359,9.5660,0,0,0,1279,0 +908,4.4071,9.4436,0.0200,0.0020,1,0,0.0521,7490,9.4794,0,0,0,7410,0 +909,3.4538,9.6234,0.0239,0.0028,1,0,0.0557,1538,9.6647,0,0,0,1458,0 +910,4.6101,9.6280,0.0192,0.0024,1,0,0.0525,2346,9.6780,0,0,0,2266,0 +911,2.9396,9.4719,0.0210,0.0024,1,0,0.0587,1465,9.5098,0,0,0,1385,0 +912,4.6425,9.5112,0.0279,0.0027,1,0,0.0713,8845,9.5572,0,0,0,8765,0 +913,3.4815,9.5859,0.0208,0.0022,1,0,0.0501,2165,9.6288,0,0,0,2085,0 +914,3.4930,9.5244,0.0225,0.0023,1,0,0.0533,1078,9.5639,0,0,0,998,0 +915,4.4436,9.5620,0.0195,0.0020,1,0,0.0429,1231,9.6032,0,0,0,1151,0 +916,3.4223,9.5275,0.0208,0.0020,1,0,0.0490,8424,9.5696,0,0,0,8344,0 +917,4.4840,9.4844,0.0201,0.0023,1,0,0.0466,1157,9.5210,0,0,0,1077,0 +918,3.4931,9.5602,0.0261,0.0022,1,0,0.0600,922,9.6032,0,0,0,842,0 +919,4.6345,9.4649,0.0217,0.0023,1,0,0.0437,896,9.5033,0,0,0,816,0 +920,3.4871,9.5481,0.0217,0.0020,1,0,0.0519,8225,9.5857,0,0,0,8145,0 +921,3.4972,9.4845,0.0198,0.0020,1,0,0.0450,913,9.5265,0,0,0,833,0 +922,5.1555,9.4548,0.0156,0.0020,1,0,0.0159,868,9.4915,0,0,0,788,0 +923,3.4525,9.4375,0.0187,0.0023,1,0,0.0415,812,9.4781,0,0,0,732,0 +924,4.4621,9.4863,0.0184,0.0022,1,0,0.0426,6485,9.5260,0,0,0,6405,0 +925,3.4232,9.6129,0.0449,0.0063,1,0,0.0872,992,9.6833,0,0,0,912,0 +926,4.5267,9.4318,0.0177,0.0020,1,0,0.0424,1434,9.4715,0,0,0,1354,0 +927,5.1992,9.4370,0.0168,0.0021,1,0,0.0334,1214,9.4741,0,0,0,1134,0 +928,3.4271,9.4526,0.0215,0.0020,1,0,0.0528,7045,9.4898,0,0,0,6965,0 +929,5.1615,9.4575,0.0178,0.0018,1,0,0.0376,1823,9.4961,0,0,0,1743,0 +930,3.4120,9.4291,0.0177,0.0019,1,0,0.0373,1119,9.4683,0,0,0,1039,0 +931,5.1785,9.5405,0.0366,0.0052,1,0,0.0701,1151,9.6090,0,0,0,1071,0 +932,5.0374,9.4509,0.0193,0.0020,1,0,0.0457,7636,9.4915,0,0,0,7556,0 +933,3.4151,9.6000,0.0465,0.0053,1,0,0.0987,1996,9.6805,0,0,0,1916,0 +934,4.9889,9.4452,0.0193,0.0020,1,0,0.0168,935,9.4865,0,0,0,855,0 +935,3.4372,9.5724,0.0438,0.0060,1,0,0.0922,939,9.6525,0,0,0,859,0 +936,5.1514,9.5122,0.0203,0.0021,1,0,0.0430,7649,9.5547,0,0,0,7569,0 +937,3.4049,9.4466,0.0188,0.0019,1,0,0.0455,925,9.4817,0,0,0,845,0 +938,5.1359,9.4472,0.0182,0.0020,1,0,0.0345,2046,9.4868,0,0,0,1966,0 +939,3.4383,9.5318,0.0395,0.0055,1,0,0.0760,1903,9.5951,0,0,0,1823,0 +940,3.3662,9.4311,0.0203,0.0019,1,0,0.0385,6571,9.4726,0,0,0,6491,0 +941,4.9378,9.4342,0.0146,0.0016,1,0,0.0309,864,9.4689,0,0,0,784,0 +942,3.3835,9.4905,0.0188,0.0019,1,0,0.0348,1199,9.5307,0,0,0,1119,0 +943,4.8850,9.4467,0.0175,0.0020,1,0,0.0337,1020,9.4852,0,0,0,940,0 +944,3.4230,9.5884,0.0483,0.0054,1,0,0.0907,8121,9.6725,0,0,0,8041,0 +945,5.0011,9.5015,0.0198,0.0023,1,0,0.0410,2262,9.5428,0,0,0,2182,0 +946,3.4043,9.4298,0.0604,0.0060,1,0,0.0875,1131,9.5188,0,0,0,1051,0 +947,5.1000,9.4901,0.0262,0.0026,1,0,0.0545,1085,9.5339,0,0,0,1005,0 +948,3.4737,9.6095,0.0233,0.0020,1,0,0.0626,8320,9.6490,0,0,0,8240,0 +949,4.3228,9.5185,0.0312,0.0022,1,0,0.0241,1114,9.5688,0,0,0,1034,0 +950,3.4310,9.4684,0.0183,0.0020,1,0,0.0144,1161,9.5083,0,0,0,1081,0 +951,4.4550,9.4843,0.0128,0.0018,1,0,0.0421,1161,9.5177,0,0,0,1081,0 +952,3.3930,9.4863,0.0200,0.0023,1,0,0.0596,8256,9.5224,0,0,0,8176,0 +953,4.5750,9.4480,0.0162,0.0022,1,0,0.0377,1198,9.4857,0,0,0,1118,0 +954,3.4060,9.5796,0.0455,0.0053,1,0,0.0895,980,9.6597,0,0,0,900,0 +955,4.8715,9.5075,0.0187,0.0022,1,0,0.0372,994,9.5477,0,0,0,914,0 +956,4.4170,9.5063,0.0223,0.0024,1,0,0.0559,6903,9.5450,0,0,0,6823,0 +957,3.4038,9.4551,0.0225,0.0020,1,0,0.0408,1123,9.4941,0,0,0,1043,0 +958,4.3900,9.4828,0.0170,0.0020,1,0,0.0416,2011,9.5208,0,0,0,1931,0 +959,3.4392,9.4760,0.0203,0.0018,1,0,0.0639,2158,9.5195,0,0,0,2078,0 +960,4.3435,8.3765,0.0311,0.0021,1,0,0.0677,37233,8.4295,0,1,0,37153,0 +961,4.3794,9.5645,0.0355,0.0055,1,0,0.0963,4041,9.6353,0,0,0,3961,0 +962,4.4793,9.4867,0.0190,0.0020,1,0,0.0438,4162,9.5275,0,0,0,4082,0 +963,3.4450,9.5882,0.0445,0.0057,1,0,0.0938,4147,9.6573,0,0,0,4067,0 +964,4.5868,9.4309,0.0198,0.0020,1,0,0.0499,9690,9.4664,0,0,0,9610,0 +965,5.2150,9.4386,0.0152,0.0018,1,0,0.0134,1445,9.4743,0,0,0,1365,0 +966,3.4388,9.4715,0.0172,0.0018,1,0,0.0446,1907,9.5096,0,0,0,1827,0 +967,5.1601,9.4994,0.0165,0.0016,1,0,0.0371,1145,9.5363,0,0,0,1065,0 +968,3.4211,9.4408,0.0198,0.0018,1,0,0.0399,7804,9.4827,0,0,0,7724,0 +969,4.3085,9.5947,0.0245,0.0030,1,0,0.0496,926,9.6372,0,0,0,846,0 +970,4.3298,9.5777,0.0218,0.0021,1,0,0.0172,820,9.6163,0,0,0,740,0 +971,4.4924,9.5438,0.0180,0.0020,1,0,0.0569,813,9.5777,0,0,0,733,0 +972,3.4240,9.5725,0.0322,0.0031,1,0,0.0791,6105,9.6237,0,0,0,6025,0 +973,3.4563,9.5841,0.0178,0.0021,1,0,0.0183,826,9.6178,0,0,0,746,0 +974,3.4211,9.5004,0.0200,0.0020,1,0,0.0483,1072,9.5417,0,0,0,992,0 +975,4.3884,9.4678,0.0190,0.0017,1,0,0.0138,1063,9.5077,0,0,0,983,0 +976,3.3944,9.4851,0.0219,0.0024,1,0,0.0659,8475,9.5235,0,0,0,8395,0 +977,3.4096,9.5222,0.0233,0.0020,1,0,0.0507,2010,9.5663,0,0,0,1930,0 +978,4.4350,9.5595,0.0220,0.0019,1,0,0.0435,1471,9.6035,0,0,0,1391,0 +979,3.4883,9.5517,0.0234,0.0020,1,0,0.0445,1057,9.5912,0,0,0,977,0 +980,4.4455,9.5022,0.0162,0.0020,1,0,0.0459,8383,9.5395,0,0,0,8303,0 +981,3.4375,9.6016,0.0402,0.0056,1,0,0.0784,1132,9.6775,0,0,0,1052,0 +982,4.3257,9.4656,0.0205,0.0022,1,0,0.0444,1072,9.5028,0,0,0,992,0 +983,4.9403,9.5567,0.0378,0.0051,1,0,0.1050,1108,9.6120,0,0,0,1028,0 +984,3.5167,9.5848,0.0311,0.0023,1,0,0.0642,8365,9.6332,0,0,0,8285,0 +985,3.4956,9.6534,0.0239,0.0023,1,0,0.0691,916,9.6940,0,0,0,836,0 +986,3.4479,9.5275,0.0241,0.0024,1,0,0.0492,897,9.5689,0,0,0,817,0 +987,3.4377,9.5628,0.0246,0.0023,1,0,0.0550,859,9.6047,0,0,0,779,0 +988,3.4401,9.5343,0.0248,0.0025,1,0,0.0572,6434,9.5765,0,0,0,6354,0 +989,4.3953,9.5917,0.0357,0.0035,1,0,0.0773,851,9.6477,0,0,0,771,0 +990,3.4632,9.6029,0.0250,0.0025,1,0,0.0496,1101,9.6453,0,0,0,1021,0 +991,3.4386,9.5566,0.0235,0.0021,1,0,0.0517,948,9.5969,0,0,0,868,0 +992,3.4546,9.6040,0.0174,0.0028,1,0,0.0765,7015,9.6309,0,0,0,6935,0 +993,3.4597,9.6078,0.0232,0.0022,1,0,0.0510,1240,9.6481,0,0,0,1160,0 +994,3.4577,9.6186,0.0324,0.0028,1,0,0.0644,1093,9.6697,0,0,0,1013,0 +995,4.3936,9.5981,0.0290,0.0026,1,0,0.0212,935,9.6448,0,0,0,855,0 +996,3.4487,9.7032,0.0367,0.0029,1,0,0.0768,7539,9.7590,0,0,0,7459,0 +997,4.8720,9.6378,0.0355,0.0031,1,0,0.0797,2043,9.6935,0,0,0,1963,0 +998,3.4497,9.6922,0.0360,0.0025,1,0,0.0287,902,9.7634,0,0,0,822,0 +999,3.4689,9.6328,0.0405,0.0060,1,0,0.1620,919,9.6951,0,0,0,839,0 +1000,3.3999,9.5075,0.0277,0.0023,1,0,0.0580,7686,9.5519,0,0,0,7606,0 +1001,3.4582,9.6288,0.0253,0.0026,1,0,0.0512,964,9.6713,0,0,0,884,0 +1002,3.4497,9.5879,0.0246,0.0021,1,0,0.0494,886,9.6294,0,0,0,806,0 +1003,3.4345,9.6638,0.0310,0.0032,1,0,0.0612,2117,9.7190,0,0,0,2037,0 +1004,4.4238,9.5182,0.0238,0.0026,1,0,0.0480,6581,9.5591,0,0,0,6501,0 +1005,3.4609,9.6375,0.0325,0.0027,1,0,0.0648,925,9.6942,0,0,0,845,0 +1006,3.4576,9.5523,0.0267,0.0025,1,0,0.0539,1036,9.5973,0,0,0,956,0 +1007,3.4853,9.6091,0.0290,0.0025,1,0,0.0629,2339,9.6563,0,0,0,2259,0 +1008,3.4823,9.5906,0.0243,0.0022,1,0,0.0609,8314,9.6312,0,0,0,8234,0 +1009,3.4311,9.5838,0.0208,0.0024,1,0,0.0539,2729,9.6211,0,0,0,2649,0 +1010,3.4441,9.6495,0.0250,0.0021,1,0,0.0508,1186,9.6923,0,0,0,1106,0 +1011,3.4894,9.6050,0.0263,0.0027,1,0,0.0529,1896,9.6487,0,0,0,1816,0 +1012,3.4776,9.6150,0.0261,0.0025,1,0,0.0534,8352,9.6574,0,0,0,8272,0 +1013,3.4566,9.5566,0.0225,0.0023,1,0,0.0546,1787,9.5957,0,0,0,1707,0 +1014,3.4676,9.5799,0.0253,0.0024,1,0,0.0576,1864,9.6225,0,0,0,1784,0 +1015,4.9857,9.5590,0.0368,0.0032,1,0,0.0830,2407,9.6246,0,0,0,2327,0 +1016,3.5002,9.5926,0.0333,0.0024,1,0,0.0659,8493,9.6444,0,0,0,8413,0 +1017,3.4910,9.5577,0.0264,0.0022,1,0,0.0543,1979,9.6008,0,0,0,1899,0 +1018,3.5101,9.5657,0.0322,0.0026,1,0,0.0448,1837,9.6163,0,0,0,1757,0 +1019,3.5008,9.5876,0.0245,0.0030,1,0,0.0524,2241,9.6301,0,0,0,2161,0 +1020,4.5964,8.4899,0.0487,0.0024,1,0,0.1222,57008,8.5567,0,1,0,56928,0 +1021,3.4756,9.5800,0.0286,0.0032,1,0,0.0595,3815,9.6271,0,0,0,3735,0 +1022,3.5103,9.7067,0.0310,0.0023,1,0,0.0697,3376,9.7555,0,0,0,3296,0 +1023,3.4663,9.5292,0.0234,0.0022,1,0,0.0505,2917,9.5691,0,0,0,2837,0 +1024,3.4137,9.5450,0.0315,0.0022,1,0,0.0645,20868,9.5935,0,0,0,20788,0 +1025,4.9726,9.6611,0.0272,0.0022,1,0,0.0541,2713,9.7050,0,0,0,2633,0 +1026,3.4213,9.6884,0.0290,0.0026,1,0,0.0604,2252,9.7575,0,0,0,2172,0 +1027,5.0847,9.6273,0.0363,0.0034,1,0,0.0768,1958,9.6935,0,0,0,1878,0 +1028,3.4957,9.6986,0.0435,0.0037,1,0,0.0940,7795,9.7595,0,0,0,7715,0 +1029,5.3261,9.6668,0.0308,0.0031,1,0,0.0834,2054,9.7252,0,0,0,1974,0 +1030,3.5663,9.7172,0.0326,0.0032,1,0,0.0269,930,9.7753,0,0,0,850,0 +1031,2.9738,9.5868,0.0229,0.0023,1,0,0.0300,870,9.6269,0,0,0,790,0 +1032,3.5111,9.6916,0.0222,0.0026,1,0,0.0684,7741,9.7309,0,0,0,7661,0 +1033,3.5487,9.6753,0.0252,0.0023,1,0,0.0639,923,9.7278,0,0,0,843,0 +1034,3.4901,9.5557,0.0288,0.0022,1,0,0.0648,1979,9.6015,0,0,0,1899,0 +1035,3.4956,9.7033,0.0365,0.0028,1,0,0.0248,1069,9.7663,0,0,0,989,0 +1036,3.4865,9.5681,0.0258,0.0022,1,0,0.0629,6645,9.6108,0,0,0,6565,0 +1037,3.4698,9.6043,0.0253,0.0022,1,0,0.0195,888,9.6470,0,0,0,808,0 +1038,3.4771,9.5557,0.0240,0.0020,1,0,0.0577,1362,9.5968,0,0,0,1282,0 +1039,3.4392,9.5310,0.0248,0.0024,1,0,0.0502,982,9.5730,0,0,0,902,0 +1040,3.4377,9.5800,0.0245,0.0021,1,0,0.0570,8318,9.6267,0,0,0,8238,0 +1041,3.4950,9.5398,0.0215,0.0019,1,0,0.0525,2688,9.5770,0,0,0,2608,0 +1042,4.5873,9.4884,0.0182,0.0022,1,0,0.0395,1222,9.5218,0,0,0,1142,0 +1043,3.4725,9.5367,0.0246,0.0027,1,0,0.0534,1097,9.5742,0,0,0,1017,0 +1044,3.4792,9.5884,0.0157,0.0022,1,0,0.0485,8408,9.6248,0,0,0,8328,0 +1045,3.5309,9.5610,0.0275,0.0032,1,0,0.1003,1154,9.6112,0,0,0,1074,0 +1046,4.6123,9.5937,0.0355,0.0028,1,0,0.0724,1100,9.6477,0,0,0,1020,0 +1047,3.4619,9.5407,0.0192,0.0025,1,0,0.0445,1156,9.5767,0,0,0,1076,0 +1048,4.7988,9.4800,0.0180,0.0019,1,0,0.0470,8262,9.5188,0,0,0,8182,0 +1049,4.3374,9.5263,0.0179,0.0020,1,0,0.0350,1073,9.5649,0,0,0,993,0 +1050,3.4130,9.4823,0.0185,0.0020,1,0,0.0361,1018,9.5218,0,0,0,938,0 +1051,4.4580,9.4507,0.0167,0.0018,1,0,0.0160,996,9.4822,0,0,0,916,0 +1052,3.4172,9.5036,0.0201,0.0021,1,0,0.0550,7124,9.5397,0,0,0,7044,0 +1053,4.5783,9.4473,0.0180,0.0022,1,0,0.0345,1079,9.4867,0,0,0,999,0 +1054,3.4144,9.5185,0.0207,0.0019,1,0,0.0429,1553,9.5614,0,0,0,1473,0 +1055,3.4107,9.4993,0.0190,0.0018,1,0,0.0415,1439,9.5341,0,0,0,1359,0 +1056,4.3498,9.5293,0.0188,0.0022,1,0,0.0482,7333,9.5702,0,0,0,7253,0 +1057,4.3932,9.5814,0.0470,0.0056,1,0,0.0958,2307,9.6528,0,0,0,2227,0 +1058,4.5760,9.4953,0.0222,0.0020,1,0,0.0424,2342,9.5392,0,0,0,2262,0 +1059,3.4227,9.4647,0.0209,0.0021,1,0,0.0423,1774,9.5080,0,0,0,1694,0 +1060,4.5712,9.4617,0.0211,0.0021,1,0,0.0565,8785,9.4984,0,0,0,8705,0 +1061,4.5221,9.5843,0.0481,0.0040,1,0,0.1263,1997,9.6530,0,0,0,1917,0 +1062,4.9832,9.5190,0.0215,0.0022,1,0,0.0473,2002,9.5569,0,0,0,1922,0 +1063,3.4343,9.7253,0.0201,0.0019,1,0,0.0494,2323,9.7676,0,0,0,2243,0 +1064,3.4210,9.4849,0.0219,0.0020,1,0,0.0461,7983,9.5279,0,0,0,7903,0 +1065,4.4108,9.4744,0.0175,0.0018,1,0,0.0380,1610,9.5127,0,0,0,1530,0 +1066,3.4247,9.5232,0.0193,0.0021,1,0,0.0534,1454,9.5586,0,0,0,1374,0 +1067,4.4570,9.6515,0.0325,0.0027,1,0,0.0780,1587,9.7115,0,0,0,1507,0 +1068,3.4920,9.7279,0.0253,0.0021,1,0,0.0545,7227,9.7695,0,0,0,7147,0 +1069,4.6031,9.5633,0.0238,0.0021,1,0,0.0189,1401,9.6034,0,0,0,1321,0 +1070,3.4870,9.5422,0.0218,0.0025,1,0,0.0491,2654,9.5812,0,0,0,2574,0 +1071,3.4292,9.4963,0.0213,0.0025,1,0,0.0450,1934,9.5341,0,0,0,1854,0 +1072,4.4158,9.5483,0.0225,0.0022,1,0,0.0589,9158,9.5867,0,0,0,9078,0 +1073,3.4194,9.5275,0.0234,0.0031,1,0,0.0505,3411,9.5687,0,0,0,3331,0 +1074,4.5870,9.5563,0.0202,0.0022,1,0,0.0435,3811,9.5982,0,0,0,3731,0 +1075,3.4207,9.5095,0.0223,0.0022,1,0,0.0510,3319,9.5478,0,0,0,3239,0 +1076,4.6726,9.5075,0.0216,0.0020,1,0,0.0465,9237,9.5500,0,0,0,9157,0 +1077,3.4135,9.6285,0.0506,0.0059,1,0,0.1076,3282,9.7050,0,0,0,3202,0 +1078,4.8053,9.5307,0.0230,0.0022,1,0,0.0459,3254,9.5756,0,0,0,3174,0 +1079,3.4148,9.6336,0.0507,0.0055,1,0,0.1113,3335,9.7092,0,0,0,3255,0 +1080,5.0018,8.4560,0.0461,0.0034,1,0,0.0835,38400,8.5200,0,1,0,38320,0 +1081,4.3664,9.5227,0.0217,0.0018,1,0,0.0430,3072,9.5653,0,0,0,2992,0 +1082,3.4242,9.5375,0.0210,0.0020,1,0,0.0414,1980,9.5796,0,0,0,1900,0 +1083,3.4124,9.5557,0.0238,0.0019,1,0,0.0408,1506,9.6011,0,0,0,1426,0 +1084,5.2254,9.4870,0.0189,0.0019,1,0,0.0431,7722,9.5270,0,0,0,7642,0 +1085,3.4193,9.4973,0.0215,0.0022,1,0,0.0357,1105,9.5397,0,0,0,1025,0 +1086,4.4008,9.5639,0.0180,0.0020,1,0,0.0475,2678,9.5977,0,0,0,2598,0 +1087,3.4237,9.5887,0.0434,0.0056,1,0,0.0920,1567,9.6570,0,0,0,1487,0 +1088,4.4665,9.4815,0.0219,0.0023,1,0,0.0465,9156,9.5258,0,0,0,9076,0 +1089,3.4630,9.6561,0.0316,0.0025,1,0,0.0620,2363,9.7052,0,0,0,2283,0 +1090,4.7556,9.6695,0.0248,0.0027,1,0,0.0527,2314,9.7295,0,0,0,2234,0 +1091,2.9320,9.6563,0.0494,0.0059,1,0,0.0366,1143,9.7306,0,0,0,1063,0 +1092,4.7793,9.5875,0.0295,0.0030,1,0,0.0574,7643,9.6349,0,0,0,7563,0 +1093,3.4552,9.5660,0.0198,0.0029,1,0,0.0563,1974,9.6030,0,0,0,1894,0 +1094,3.4319,9.5354,0.0210,0.0024,1,0,0.0192,848,9.5731,0,0,0,768,0 +1095,4.6318,9.5407,0.0223,0.0022,1,0,0.0430,873,9.5850,0,0,0,793,0 +1096,3.4328,9.5269,0.0252,0.0027,1,0,0.0598,7575,9.5690,0,0,0,7495,0 +1097,3.4197,9.5271,0.0247,0.0024,1,0,0.0183,940,9.5680,0,0,0,860,0 +1098,4.4597,9.5615,0.0201,0.0021,1,0,0.0484,833,9.5974,0,0,0,753,0 +1099,3.4366,9.5805,0.0313,0.0038,1,0,0.0675,936,9.6310,0,0,0,856,0 +1100,4.5504,9.5322,0.0208,0.0020,1,0,0.0409,6534,9.5687,0,0,0,6454,0 +1101,3.4206,9.4668,0.0184,0.0018,1,0,0.0425,850,9.5065,0,0,0,770,0 +1102,4.7066,9.4779,0.0163,0.0021,1,0,0.0145,997,9.5155,0,0,0,917,0 +1103,3.4240,9.5212,0.0225,0.0019,1,0,0.0147,1008,9.5652,0,0,0,928,0 +1104,4.8563,9.5256,0.0197,0.0021,1,0,0.0627,7562,9.5613,0,0,0,7482,0 +1105,4.4306,9.5581,0.0209,0.0019,1,0,0.0469,2835,9.5940,0,0,0,2755,0 +1106,3.4269,9.5480,0.0188,0.0023,1,0,0.0445,1366,9.5884,0,0,0,1286,0 +1107,4.6087,9.4927,0.0203,0.0021,1,0,0.0412,1560,9.5347,0,0,0,1480,0 +1108,3.4282,9.5657,0.0172,0.0018,1,0,0.0458,8325,9.6036,0,0,0,8245,0 +1109,3.4238,9.4846,0.0202,0.0019,1,0,0.0472,1653,9.5266,0,0,0,1573,0 +1110,4.4142,9.5263,0.0187,0.0018,1,0,0.0375,1349,9.5662,0,0,0,1269,0 +1111,3.4076,9.6893,0.0448,0.0058,1,0,0.1014,1742,9.7590,0,0,0,1662,0 +1112,4.4462,9.6034,0.0243,0.0022,1,0,0.0555,9159,9.6496,0,0,0,9079,0 +1113,4.3807,9.5902,0.0438,0.0059,1,0,0.0821,1014,9.6567,0,0,0,934,0 +1114,4.6727,9.5121,0.0218,0.0024,1,0,0.0394,1438,9.5497,0,0,0,1358,0 +1115,3.4143,9.5112,0.0180,0.0022,1,0,0.0384,1357,9.5509,0,0,0,1277,0 +1116,4.6838,9.5280,0.0178,0.0018,1,0,0.0428,7019,9.5665,0,0,0,6939,0 +1117,4.3721,9.5014,0.0192,0.0021,1,0,0.0414,1760,9.5425,0,0,0,1680,0 +1118,3.4042,9.4860,0.0189,0.0020,1,0,0.0431,1664,9.5208,0,0,0,1584,0 +1119,4.4353,9.5309,0.0205,0.0017,1,0,0.0410,2496,9.5723,0,0,0,2416,0 +1120,3.4206,9.5415,0.0224,0.0019,1,0,0.0580,22927,9.5847,0,0,0,22847,0 +1121,4.5377,9.4760,0.0184,0.0018,1,0,0.0414,3229,9.5154,0,0,0,3149,0 +1122,3.4090,9.5284,0.0178,0.0020,1,0,0.0423,2237,9.5672,0,0,0,2157,0 +1123,4.3700,9.5092,0.0220,0.0019,1,0,0.0500,1984,9.5467,0,0,0,1904,0 +1124,3.4114,9.5245,0.0208,0.0019,1,0,0.0481,8659,9.5663,0,0,0,8579,0 +1125,4.7668,9.4949,0.0183,0.0018,1,0,0.0395,2844,9.5340,0,0,0,2764,0 +1126,3.4054,9.5931,0.0473,0.0057,1,0,0.1011,2530,9.6638,0,0,0,2450,0 +1127,4.8518,9.6525,0.0267,0.0031,1,0,0.0660,2834,9.7050,0,0,0,2754,0 +1128,3.5026,9.6462,0.0319,0.0025,1,0,0.0766,8768,9.6950,0,0,0,8688,0 +1129,3.4765,9.6266,0.0259,0.0022,1,0,0.0558,2048,9.6695,0,0,0,1968,0 +1130,4.7216,9.5667,0.0202,0.0022,1,0,0.0175,1306,9.6034,0,0,0,1226,0 +1131,3.4185,9.5380,0.0203,0.0020,1,0,0.0454,1560,9.5798,0,0,0,1480,0 +1132,4.6632,9.5228,0.0203,0.0022,1,0,0.0447,7015,9.5650,0,0,0,6935,0 +1133,3.4170,9.5512,0.0230,0.0020,1,0,0.0336,1547,9.5961,0,0,0,1467,0 +1134,4.8519,9.5337,0.0192,0.0020,1,0,0.0414,3446,9.5743,0,0,0,3366,0 +1135,3.4170,9.8634,0.0488,0.0057,1,0,0.1189,2433,9.9370,0,0,0,2353,0 +1136,4.9989,9.5265,0.0225,0.0020,1,0,0.0607,9373,9.5697,0,0,0,9293,0 +1137,3.4191,9.7178,0.0456,0.0053,1,0,0.0871,3756,9.7850,0,0,0,3676,0 +1138,5.0706,9.5422,0.0232,0.0021,1,0,0.0482,3204,9.5814,0,0,0,3124,0 +1139,3.4017,9.8690,0.0457,0.0060,1,0,0.1055,2982,9.9380,0,0,0,2902,0 +1140,5.1818,8.4585,0.0405,0.0022,1,0,0.0929,57341,8.5155,0,1,0,57261,0 +1141,3.4116,9.5416,0.0183,0.0023,1,0,0.0474,3380,9.5765,0,0,0,3300,0 +1142,4.3450,9.5900,0.0185,0.0021,1,0,0.0437,2229,9.6300,0,0,0,2149,0 +1143,3.4116,9.6333,0.0403,0.0055,1,0,0.0874,2526,9.6980,0,0,0,2446,0 +1144,4.5467,9.5328,0.0219,0.0027,1,0,0.0563,8939,9.5717,0,0,0,8859,0 +1145,3.4065,9.5273,0.0192,0.0020,1,0,0.0373,1376,9.5678,0,0,0,1296,0 +1146,4.6376,9.5328,0.0187,0.0020,1,0,0.0155,1174,9.5731,0,0,0,1094,0 +1147,4.3168,9.5642,0.0180,0.0023,1,0,0.0416,2126,9.6036,0,0,0,2046,0 +1148,3.4186,9.5744,0.0203,0.0020,1,0,0.0486,7137,9.6164,0,0,0,7057,0 +1149,5.3921,9.6746,0.0261,0.0027,1,0,0.0553,998,9.7190,0,0,0,918,0 +1150,3.2318,9.6985,0.0302,0.0031,1,0,0.0680,1793,9.7473,0,0,0,1713,0 +1151,4.5056,9.6538,0.0211,0.0021,1,0,0.0512,1445,9.6920,0,0,0,1365,0 +1152,3.4621,9.6521,0.0296,0.0035,1,0,0.0729,7248,9.7000,0,0,0,7168,0 +1153,3.4714,9.6036,0.0186,0.0023,1,0,0.0513,2190,9.6453,0,0,0,2110,0 +1154,3.4265,9.5840,0.0194,0.0022,1,0,0.0190,1197,9.6195,0,0,0,1117,0 +1155,3.4081,9.5523,0.0208,0.0019,1,0,0.0477,1612,9.5946,0,0,0,1532,0 +1156,5.0471,9.5518,0.0231,0.0019,1,0,0.0463,8067,9.5972,0,0,0,7987,0 +1157,3.4080,9.5720,0.0232,0.0021,1,0,0.0469,2159,9.6178,0,0,0,2079,0 +1158,5.0529,9.6982,0.0318,0.0028,1,0,0.0576,1193,9.7497,0,0,0,1113,0 +1159,3.4899,9.6446,0.0226,0.0018,1,0,0.0454,906,9.6832,0,0,0,826,0 +1160,5.0810,9.5843,0.0210,0.0021,1,0,0.0515,7807,9.6273,0,0,0,7727,0 +1161,3.4192,9.5590,0.0192,0.0020,1,0,0.0158,956,9.6001,0,0,0,876,0 +1162,5.1164,9.5245,0.0175,0.0019,1,0,0.0413,915,9.5630,0,0,0,835,0 +1163,3.4001,9.6837,0.0480,0.0057,1,0,0.1003,1879,9.7565,0,0,0,1799,0 +1164,4.4854,9.5486,0.0229,0.0022,1,0,0.0518,6622,9.5937,0,0,0,6542,0 +1165,3.4005,9.6991,0.0431,0.0061,1,0,0.1427,904,9.7647,0,0,0,824,0 +1166,4.4635,9.5268,0.0210,0.0019,1,0,0.0455,1181,9.5634,0,0,0,1101,0 +1167,5.1846,9.5125,0.0208,0.0018,1,0,0.0415,1915,9.5540,0,0,0,1835,0 +1168,3.4102,9.5061,0.0225,0.0023,1,0,0.0422,8809,9.5503,0,0,0,8729,0 +1169,5.1187,9.5260,0.0174,0.0021,1,0,0.0390,2954,9.5638,0,0,0,2874,0 +1170,3.4270,9.5614,0.0174,0.0021,1,0,0.0332,1385,9.6002,0,0,0,1305,0 +1171,4.3608,9.5434,0.0202,0.0022,1,0,0.0388,2087,9.5853,0,0,0,2007,0 +1172,4.3658,9.6368,0.0488,0.0059,1,0,0.1111,8518,9.7110,0,0,0,8438,0 +1173,4.5911,9.5678,0.0210,0.0023,1,0,0.0459,1139,9.6052,0,0,0,1059,0 +1174,3.4190,9.5339,0.0189,0.0017,1,0,0.0348,1132,9.5738,0,0,0,1052,0 +1175,4.5998,9.5106,0.0187,0.0020,1,0,0.0435,1260,9.5451,0,0,0,1180,0 +1176,4.2831,9.5489,0.0191,0.0020,1,0,0.0444,8225,9.5896,0,0,0,8145,0 +1177,3.4264,9.5486,0.0183,0.0020,1,0,0.0349,1850,9.5874,0,0,0,1770,0 +1178,5.2008,9.5384,0.0191,0.0018,1,0,0.0335,1118,9.5785,0,0,0,1038,0 +1179,3.4130,9.5390,0.0190,0.0020,1,0,0.0317,1190,9.5794,0,0,0,1110,0 +1180,4.3867,9.5797,0.0187,0.0022,1,0,0.0542,6858,9.6195,0,0,0,6778,0 +1181,4.3804,9.6345,0.0462,0.0055,1,0,0.0904,1136,9.7063,0,0,0,1056,0 +1182,4.6116,9.5611,0.0236,0.0020,1,0,0.0420,1621,9.6070,0,0,0,1541,0 +1183,3.3968,9.5850,0.0267,0.0027,1,0,0.0541,1597,9.6288,0,0,0,1517,0 +1184,4.6953,9.5143,0.0199,0.0019,1,0,0.0560,7321,9.5504,0,0,0,7241,0 +1185,3.4258,9.6394,0.0449,0.0055,1,0,0.0973,2341,9.7090,0,0,0,2261,0 +1186,4.9208,9.5386,0.0223,0.0023,1,0,0.0462,1572,9.5770,0,0,0,1492,0 +1187,4.3775,9.6416,0.0398,0.0046,1,0,0.0645,1606,9.7031,0,0,0,1526,0 +1188,3.4881,9.6584,0.0219,0.0025,1,0,0.0641,8764,9.6965,0,0,0,8684,0 +1189,4.4024,9.5415,0.0227,0.0022,1,0,0.0493,2199,9.5806,0,0,0,2119,0 +1190,3.4848,9.5943,0.0218,0.0018,1,0,0.0477,1794,9.6382,0,0,0,1714,0 +1191,3.4340,9.5687,0.0250,0.0021,1,0,0.0542,1753,9.6160,0,0,0,1673,0 +1192,5.2848,9.5374,0.0208,0.0020,1,0,0.0497,7838,9.5793,0,0,0,7758,0 +1193,3.4265,9.5213,0.0193,0.0024,1,0,0.0388,1487,9.5623,0,0,0,1407,0 +1194,4.4601,9.5443,0.0200,0.0020,1,0,0.0143,1202,9.5856,0,0,0,1122,0 +1195,3.4490,9.4995,0.0213,0.0022,1,0,0.0454,1428,9.5432,0,0,0,1348,0 +1196,4.5323,9.5052,0.0218,0.0018,1,0,0.0420,6719,9.5491,0,0,0,6639,0 +1197,3.4463,9.5081,0.0182,0.0030,1,0,0.0530,1282,9.5511,0,0,0,1202,0 +1198,4.5038,9.5697,0.0232,0.0020,1,0,0.0439,1960,9.6085,0,0,0,1880,0 +1199,4.4635,9.5154,0.0207,0.0022,1,0,0.0412,1563,9.5580,0,0,0,1483,0 +1200,3.4687,8.4720,0.0349,0.0021,1,0,0.0777,35943,8.5231,0,1,0,35863,0 +1201,4.4376,9.5684,0.0215,0.0021,1,0,0.0450,5385,9.6125,0,0,0,5305,0 +1202,3.4630,9.5846,0.0513,0.0057,1,0,0.1030,3820,9.6618,0,0,0,3740,0 +1203,4.4284,9.5395,0.0217,0.0022,1,0,0.0417,2679,9.5825,0,0,0,2599,0 +1204,3.4550,9.5095,0.0210,0.0018,1,0,0.0423,9345,9.5512,0,0,0,9265,0 +1205,4.5363,9.5242,0.0190,0.0018,1,0,0.0332,1145,9.5644,0,0,0,1065,0 +1206,4.4150,9.5917,0.0470,0.0060,1,0,0.0934,1086,9.6644,0,0,0,1006,0 +1207,4.8774,9.5660,0.0252,0.0025,1,0,0.0505,1025,9.6083,0,0,0,945,0 +1208,3.4742,9.4712,0.0208,0.0020,1,0,0.0425,8190,9.5139,0,0,0,8110,0 +1209,3.5453,9.6818,0.0267,0.0032,1,0,0.0582,923,9.7270,0,0,0,843,0 +1210,4.5128,9.6400,0.0250,0.0026,1,0,0.0567,969,9.6840,0,0,0,889,0 +1211,2.9732,9.5397,0.0223,0.0024,1,0,0.0536,870,9.5790,0,0,0,790,0 +1212,4.4160,9.6150,0.0266,0.0029,1,0,0.0631,6433,9.6592,0,0,0,6353,0 +1213,3.5067,9.5816,0.0204,0.0020,1,0,0.0421,851,9.6236,0,0,0,771,0 +1214,4.6078,9.5464,0.0214,0.0022,1,0,0.0503,1536,9.5841,0,0,0,1456,0 +1215,3.4676,9.5108,0.0189,0.0018,1,0,0.0151,991,9.5512,0,0,0,911,0 +1216,4.7955,9.5287,0.0201,0.0024,1,0,0.0458,20535,9.5705,0,0,0,20455,0 +1217,3.4678,9.5559,0.0291,0.0020,1,0,0.0597,2039,9.6018,0,0,0,1959,0 +1218,4.9081,9.6695,0.0332,0.0027,1,0,0.0746,1328,9.7279,0,0,0,1248,0 +1219,3.5304,9.5970,0.0215,0.0020,1,0,0.0427,905,9.6410,0,0,0,825,0 +1220,5.0747,9.5376,0.0202,0.0020,1,0,0.0445,7531,9.5800,0,0,0,7451,0 +1221,3.4643,9.4999,0.0211,0.0022,1,0,0.0375,2052,9.5426,0,0,0,1972,0 +1222,5.1418,9.5405,0.0197,0.0023,1,0,0.0341,1104,9.5818,0,0,0,1024,0 +1223,4.4433,9.6678,0.0374,0.0033,1,0,0.0204,845,9.7252,0,0,0,765,0 +1224,3.5035,9.6312,0.0311,0.0023,1,0,0.0789,7698,9.6803,0,0,0,7618,0 +1225,3.5201,9.5937,0.0226,0.0023,1,0,0.0206,917,9.6331,0,0,0,837,0 +1226,3.4902,9.6414,0.0266,0.0022,1,0,0.0560,922,9.6854,0,0,0,842,0 +1227,3.5365,9.7003,0.0292,0.0024,1,0,0.0551,2065,9.7473,0,0,0,1985,0 +1228,3.5066,9.6758,0.0390,0.0035,1,0,0.0786,6893,9.7445,0,0,0,6813,0 +1229,3.5155,9.6327,0.0318,0.0029,1,0,0.0652,881,9.6830,0,0,0,801,0 +1230,4.6954,9.5912,0.0264,0.0026,1,0,0.0477,1122,9.6344,0,0,0,1042,0 +1231,3.5064,9.6877,0.0347,0.0031,1,0,0.0628,932,9.7417,0,0,0,852,0 +1232,3.5108,9.6044,0.0264,0.0031,1,0,0.0997,8118,9.6422,0,0,0,8038,0 +1233,3.5010,9.6871,0.0268,0.0027,1,0,0.0604,2677,9.7309,0,0,0,2597,0 +1234,3.5045,9.7142,0.0323,0.0030,1,0,0.0610,1062,9.7656,0,0,0,982,0 +1235,4.6883,9.6061,0.0418,0.0039,1,0,0.0673,1435,9.6693,0,0,0,1355,0 +1236,3.5477,9.7432,0.0271,0.0025,1,0,0.0623,8266,9.7877,0,0,0,8186,0 +1237,4.4093,9.5930,0.0263,0.0025,1,0,0.0554,1343,9.6372,0,0,0,1263,0 +1238,3.4537,9.7344,0.0296,0.0024,1,0,0.0542,1476,9.7812,0,0,0,1396,0 +1239,3.4679,9.6751,0.0293,0.0023,1,0,0.0639,1664,9.7217,0,0,0,1584,0 +1240,4.5793,9.6642,0.0282,0.0023,1,0,0.0612,8331,9.7093,0,0,0,8251,0 +1241,3.4748,9.7141,0.0371,0.0034,1,0,0.0612,1442,9.7703,0,0,0,1362,0 +1242,3.5053,9.6939,0.0251,0.0026,1,0,0.0523,1327,9.7363,0,0,0,1247,0 +1243,3.4967,9.6993,0.0327,0.0030,1,0,0.0533,1271,9.7599,0,0,0,1191,0 +1244,4.8005,9.5703,0.0238,0.0023,1,0,0.0597,7361,9.6109,0,0,0,7281,0 +1245,3.4554,9.6457,0.0274,0.0028,1,0,0.0514,949,9.6907,0,0,0,869,0 +1246,4.7686,9.6167,0.0280,0.0025,1,0,0.0536,3627,9.6620,0,0,0,3547,0 +1247,3.4652,9.7820,0.0410,0.0034,1,0,0.0912,1756,9.8432,0,0,0,1676,0 +1248,3.5470,9.6458,0.0254,0.0025,1,0,0.0657,7050,9.6885,0,0,0,6970,0 +1249,3.4407,9.6279,0.0255,0.0024,1,0,0.0481,1750,9.6766,0,0,0,1670,0 +1250,3.4391,9.6112,0.0250,0.0024,1,0,0.0596,1840,9.6535,0,0,0,1760,0 +1251,3.5025,9.6314,0.0252,0.0022,1,0,0.0550,1805,9.6734,0,0,0,1725,0 +1252,3.4663,9.6858,0.0253,0.0025,1,0,0.0638,8790,9.7282,0,0,0,8710,0 +1253,3.4565,9.6756,0.0358,0.0030,1,0,0.0747,2311,9.7308,0,0,0,2231,0 +1254,3.4546,9.5910,0.0274,0.0023,1,0,0.0674,1876,9.6433,0,0,0,1796,0 +1255,4.7602,9.5727,0.0394,0.0042,1,0,0.0783,2279,9.6423,0,0,0,2199,0 +1256,3.4801,9.6720,0.0406,0.0037,1,0,0.0737,7916,9.7330,0,0,0,7836,0 +1257,3.4714,9.6578,0.0273,0.0023,1,0,0.0519,1825,9.7018,0,0,0,1745,0 +1258,3.5000,9.6561,0.0290,0.0021,1,0,0.0168,1044,9.7026,0,0,0,964,0 +1259,3.4456,9.6141,0.0281,0.0025,1,0,0.0174,1005,9.6603,0,0,0,925,0 +1260,3.4358,8.6735,0.0581,0.0032,1,0,0.1439,48598,8.7517,0,1,0,48518,0 +1261,3.4446,9.6416,0.0270,0.0027,1,0,0.0591,3470,9.6865,0,0,0,3390,0 +1262,4.4751,9.6183,0.0270,0.0025,1,0,0.0644,3347,9.6628,0,0,0,3267,0 +1263,3.4573,9.6872,0.0300,0.0022,1,0,0.0557,2263,9.7344,0,0,0,2183,0 +1264,4.4643,9.5849,0.0244,0.0024,1,0,0.0550,11271,9.6259,0,0,0,11191,0 +1265,3.4422,9.6811,0.0274,0.0018,1,0,0.0590,3220,9.7256,0,0,0,3140,0 +1266,3.4560,9.6126,0.0314,0.0029,1,0,0.0713,1801,9.6710,0,0,0,1721,0 +1267,3.4406,9.6413,0.0302,0.0022,1,0,0.0637,1744,9.6895,0,0,0,1664,0 +1268,4.9125,9.7010,0.0340,0.0032,1,0,0.0763,8536,9.7553,0,0,0,8456,0 +1269,3.5245,9.7177,0.0273,0.0032,1,0,0.0591,1318,9.7644,0,0,0,1238,0 +1270,3.6019,9.6651,0.0272,0.0025,1,0,0.0567,1099,9.7097,0,0,0,1019,0 +1271,3.0407,9.7498,0.0382,0.0030,1,0,0.0716,966,9.8090,0,0,0,886,0 +1272,3.5037,9.6445,0.0293,0.0027,1,0,0.0608,8305,9.6914,0,0,0,8225,0 +1273,3.5495,9.6426,0.0245,0.0026,1,0,0.0505,941,9.6845,0,0,0,861,0 +1274,3.4405,9.5790,0.0236,0.0025,1,0,0.0483,931,9.6195,0,0,0,851,0 +1275,3.4108,9.5632,0.0241,0.0027,1,0,0.0503,842,9.6049,0,0,0,762,0 +1276,3.4988,9.6082,0.0258,0.0024,1,0,0.0625,6439,9.6510,0,0,0,6359,0 +1277,5.3135,9.6282,0.0265,0.0024,1,0,0.0493,873,9.6717,0,0,0,793,0 +1278,3.5108,9.6694,0.0300,0.0032,1,0,0.0259,1175,9.7273,0,0,0,1095,0 +1279,5.1870,9.5890,0.0244,0.0023,1,0,0.0576,1131,9.6303,0,0,0,1051,0 +1280,3.4324,9.6384,0.0303,0.0032,1,0,0.0723,20329,9.6870,0,0,0,20249,0 +1281,3.5139,9.6182,0.0263,0.0022,1,0,0.0558,1449,9.6618,0,0,0,1369,0 +1282,3.4981,9.5369,0.0241,0.0029,1,0,0.0203,1271,9.5783,0,0,0,1191,0 +1283,3.4994,9.5780,0.0305,0.0030,1,0,0.0618,1078,9.6405,0,0,0,998,0 +1284,3.4715,9.6012,0.0294,0.0036,1,0,0.0793,7545,9.6495,0,0,0,7465,0 +1285,3.4945,9.5315,0.0230,0.0027,1,0,0.0550,2022,9.5714,0,0,0,1942,0 +1286,3.4239,9.5774,0.0236,0.0023,1,0,0.0187,867,9.6181,0,0,0,787,0 +1287,4.4527,9.5118,0.0180,0.0024,1,0,0.0512,856,9.5465,0,0,0,776,0 +1288,3.4199,9.5497,0.0222,0.0019,1,0,0.0443,7717,9.5880,0,0,0,7637,0 +1289,4.6643,9.4930,0.0210,0.0022,1,0,0.0432,923,9.5362,0,0,0,843,0 +1290,3.4375,9.5170,0.0204,0.0018,1,0,0.0393,1935,9.5528,0,0,0,1855,0 +1291,4.7098,9.5143,0.0207,0.0019,1,0,0.0417,1041,9.5509,0,0,0,961,0 +1292,3.4403,9.5337,0.0210,0.0018,1,0,0.0484,6846,9.5758,0,0,0,6766,0 +1293,4.8075,9.5109,0.0211,0.0021,1,0,0.0390,911,9.5475,0,0,0,831,0 +1294,3.4245,9.6276,0.0480,0.0055,1,0,0.0926,1133,9.7101,0,0,0,1053,0 +1295,4.9230,9.5378,0.0212,0.0020,1,0,0.0393,1176,9.5814,0,0,0,1096,0 +1296,3.4252,9.6397,0.0503,0.0053,1,0,0.1098,8445,9.7235,0,0,0,8365,0 +1297,5.0605,9.5480,0.0216,0.0021,1,0,0.0418,2509,9.5918,0,0,0,2429,0 +1298,3.3988,9.6205,0.0486,0.0054,1,0,0.0913,1127,9.7033,0,0,0,1047,0 +1299,5.1715,9.5376,0.0226,0.0023,1,0,0.0451,1119,9.5835,0,0,0,1039,0 +1300,3.4185,9.5767,0.0521,0.0058,1,0,0.1099,8478,9.6549,0,0,0,8398,0 +1301,5.1650,9.4967,0.0235,0.0023,1,0,0.0421,1131,9.5364,0,0,0,1051,0 +1302,3.4111,9.5098,0.0204,0.0020,1,0,0.0398,1161,9.5459,0,0,0,1081,0 +1303,4.3841,9.5223,0.0198,0.0023,1,0,0.0388,1212,9.5639,0,0,0,1132,0 +1304,4.4585,9.6167,0.0500,0.0057,1,0,0.1087,8311,9.7191,0,0,0,8231,0 +1305,4.5948,9.5048,0.0238,0.0023,1,0,0.0495,1117,9.5453,0,0,0,1037,0 +1306,3.4345,9.4921,0.0201,0.0021,1,0,0.0489,987,9.5277,0,0,0,907,0 +1307,4.5997,9.5943,0.0254,0.0030,1,0,0.0516,947,9.6379,0,0,0,867,0 +1308,3.4663,9.5945,0.0230,0.0020,1,0,0.0533,7203,9.6337,0,0,0,7123,0 +1309,4.6253,9.5507,0.0339,0.0032,1,0,0.0566,1135,9.6044,0,0,0,1055,0 +1310,3.4222,9.4882,0.0217,0.0025,1,0,0.0537,2323,9.5268,0,0,0,2243,0 +1311,3.4542,9.4798,0.0199,0.0023,1,0,0.0470,1727,9.5217,0,0,0,1647,0 +1312,4.3460,9.5161,0.0209,0.0024,1,0,0.0548,7175,9.5532,0,0,0,7095,0 +1313,3.4125,9.5081,0.0717,0.0053,1,0,0.1069,2621,9.6040,0,0,0,2541,0 +1314,4.2498,9.4895,0.0221,0.0022,1,0,0.0445,2164,9.5330,0,0,0,2084,0 +1315,4.9424,9.4735,0.0195,0.0022,1,0,0.0457,2237,9.5087,0,0,0,2157,0 +1316,3.4173,9.4542,0.0213,0.0020,1,0,0.0480,8765,9.4971,0,0,0,8685,0 +1317,4.9995,9.4993,0.0200,0.0018,1,0,0.0480,2341,9.5350,0,0,0,2261,0 +1318,4.3909,9.4902,0.0172,0.0018,1,0,0.0446,2520,9.5287,0,0,0,2440,0 +1319,3.4105,9.4945,0.0181,0.0024,1,0,0.0433,2686,9.5341,0,0,0,2606,0 +1320,5.2096,8.3794,0.0335,0.0019,1,0,0.0747,46210,8.4341,0,1,0,46130,0 +1321,3.4285,9.5239,0.0231,0.0024,1,0,0.0597,4453,9.5648,0,0,0,4373,0 +1322,4.6493,9.4910,0.0209,0.0021,1,0,0.0421,3888,9.5337,0,0,0,3808,0 +1323,3.4205,9.5150,0.0215,0.0022,1,0,0.0420,4547,9.5581,0,0,0,4467,0 +1324,4.6346,9.4883,0.0235,0.0025,1,0,0.0458,9021,9.5339,0,0,0,8941,0 +1325,4.3622,9.4876,0.0183,0.0022,1,0,0.0344,1383,9.5271,0,0,0,1303,0 +1326,3.4127,9.4595,0.0170,0.0018,1,0,0.0379,1820,9.4973,0,0,0,1740,0 +1327,4.3550,9.4949,0.0192,0.0022,1,0,0.0305,1156,9.5355,0,0,0,1076,0 +1328,3.4127,9.5487,0.0513,0.0054,1,0,0.1159,9503,9.6468,0,0,0,9423,0 +1329,4.4420,9.7503,0.0341,0.0036,1,0,0.0636,2044,9.8147,0,0,0,1964,0 +1330,4.4575,9.7818,0.0570,0.0062,1,0,0.1251,1396,9.8758,0,0,0,1316,0 +1331,4.1937,9.6057,0.0288,0.0024,1,0,0.0541,1017,9.6509,0,0,0,937,0 +1332,3.4386,9.5762,0.0297,0.0035,1,0,0.0717,8437,9.6319,0,0,0,8357,0 +1333,3.4596,9.5580,0.0242,0.0026,1,0,0.0490,894,9.5991,0,0,0,814,0 +1334,3.4223,9.4982,0.0187,0.0022,1,0,0.0413,898,9.5333,0,0,0,818,0 +1335,4.4145,9.5011,0.0198,0.0021,1,0,0.0160,1055,9.5364,0,0,0,975,0 +1336,3.4395,9.4992,0.0215,0.0023,1,0,0.0601,8290,9.5375,0,0,0,8210,0 +1337,4.7195,9.5249,0.0242,0.0024,1,0,0.0491,938,9.5660,0,0,0,858,0 +1338,3.4925,9.5811,0.0271,0.0024,1,0,0.0527,879,9.6250,0,0,0,799,0 +1339,4.9384,9.5282,0.0240,0.0023,1,0,0.0456,875,9.5699,0,0,0,795,0 +1340,3.4959,9.5236,0.0218,0.0020,1,0,0.0520,6661,9.5612,0,0,0,6581,0 +1341,5.1332,9.5015,0.0197,0.0021,1,0,0.0174,859,9.5380,0,0,0,779,0 +1342,3.4348,9.4706,0.0123,0.0026,1,0,0.0715,1140,9.5030,0,0,0,1060,0 +1343,4.9549,9.5670,0.0151,0.0018,1,0,0.0452,1215,9.5993,0,0,0,1135,0 +1344,3.4615,9.6035,0.0447,0.0050,1,0,0.0885,7638,9.7061,0,0,0,7558,0 +1345,5.1076,9.4599,0.0209,0.0021,1,0,0.0445,1712,9.4974,0,0,0,1632,0 +1346,3.4013,9.4780,0.0181,0.0020,1,0,0.0393,991,9.5177,0,0,0,911,0 +1347,4.4796,9.4820,0.0198,0.0019,1,0,0.0414,858,9.5177,0,0,0,778,0 +1348,3.4249,9.5920,0.0478,0.0056,1,0,0.1039,7518,9.6643,0,0,0,7438,0 +1349,4.6334,9.4976,0.0239,0.0024,1,0,0.0509,2062,9.5385,0,0,0,1982,0 +1350,3.4285,9.5019,0.0215,0.0018,1,0,0.0181,836,9.5450,0,0,0,756,0 +1351,3.4327,9.5707,0.0190,0.0021,1,0,0.0483,839,9.6114,0,0,0,759,0 +1352,4.4330,9.5704,0.0216,0.0019,1,0,0.0551,7676,9.6135,0,0,0,7596,0 +1353,3.5079,9.4741,0.0204,0.0024,1,0,0.0465,841,9.5167,0,0,0,761,0 +1354,4.3767,9.4956,0.0219,0.0022,1,0,0.0444,1987,9.5397,0,0,0,1907,0 +1355,4.4671,9.6197,0.0490,0.0053,1,0,0.0945,2006,9.7224,0,0,0,1926,0 +1356,4.7106,9.5435,0.0240,0.0021,1,0,0.0530,6589,9.5898,0,0,0,6509,0 +1357,3.4252,9.5452,0.0189,0.0017,1,0,0.0393,896,9.5855,0,0,0,816,0 +1358,4.6172,9.4658,0.0186,0.0020,1,0,0.0331,957,9.5062,0,0,0,877,0 +1359,4.3902,9.4841,0.0187,0.0020,1,0,0.0469,1479,9.5194,0,0,0,1399,0 +1360,3.4489,9.4757,0.0212,0.0019,1,0,0.0434,7850,9.5185,0,0,0,7770,0 +1361,4.3860,9.4702,0.0185,0.0022,1,0,0.0467,1995,9.5107,0,0,0,1915,0 +1362,3.4433,9.4796,0.0189,0.0016,1,0,0.0146,1000,9.5200,0,0,0,920,0 +1363,4.4013,9.5297,0.0263,0.0027,1,0,0.0505,961,9.5730,0,0,0,881,0 +1364,4.3923,9.6318,0.0506,0.0060,1,0,0.1115,8360,9.7077,0,0,0,8280,0 +1365,4.6782,9.5648,0.0233,0.0023,1,0,0.0424,995,9.6054,0,0,0,915,0 +1366,3.4285,9.4725,0.0240,0.0022,1,0,0.0474,1003,9.5135,0,0,0,923,0 +1367,4.6265,9.6005,0.0270,0.0038,1,0,0.0585,1180,9.6472,0,0,0,1100,0 +1368,3.4993,9.6715,0.0262,0.0021,1,0,0.0597,8265,9.7136,0,0,0,8185,0 +1369,3.4351,9.5529,0.0211,0.0022,1,0,0.0473,1253,9.5907,0,0,0,1173,0 +1370,5.3048,9.5660,0.0214,0.0022,1,0,0.0395,981,9.6030,0,0,0,901,0 +1371,3.4347,9.5634,0.0225,0.0018,1,0,0.0487,1074,9.6080,0,0,0,994,0 +1372,4.3703,9.5870,0.0227,0.0022,1,0,0.0558,7159,9.6257,0,0,0,7079,0 +1373,3.4510,9.5421,0.0189,0.0020,1,0,0.0163,1314,9.5821,0,0,0,1234,0 +1374,4.5338,9.5452,0.0213,0.0018,1,0,0.0485,2600,9.5825,0,0,0,2520,0 +1375,4.7228,9.5137,0.0229,0.0022,1,0,0.0442,1727,9.5525,0,0,0,1647,0 +1376,4.7233,9.5557,0.0310,0.0025,1,0,0.0471,22700,9.6032,0,0,0,22620,0 +1377,3.4255,9.5046,0.0201,0.0021,1,0,0.0450,3490,9.5466,0,0,0,3410,0 +1378,4.7330,9.5631,0.0219,0.0022,1,0,0.0532,2052,9.6075,0,0,0,1972,0 +1379,3.4165,9.5115,0.0207,0.0021,1,0,0.0509,2204,9.5488,0,0,0,2124,0 +1380,4.7620,8.6125,0.0371,0.0025,1,0,0.0878,55288,8.6660,0,1,0,55208,0 +1381,3.4388,9.5091,0.0205,0.0020,1,0,0.0522,5990,9.5518,0,0,0,5910,0 +1382,4.9128,9.5568,0.0207,0.0022,1,0,0.0562,4527,9.5943,0,0,0,4447,0 +1383,3.4872,9.6900,0.0508,0.0058,1,0,0.0987,2775,9.7637,0,0,0,2695,0 +1384,5.0605,9.5988,0.0230,0.0022,1,0,0.0525,8693,9.6440,0,0,0,8613,0 +1385,3.4559,9.5575,0.0562,0.0061,1,0,0.0355,1092,9.6370,0,0,0,1012,0 +1386,5.2310,9.5213,0.0242,0.0022,1,0,0.0567,2060,9.5620,0,0,0,1980,0 +1387,3.4229,9.5175,0.0201,0.0021,1,0,0.0163,1446,9.5535,0,0,0,1366,0 +1388,5.2567,9.5177,0.0294,0.0027,1,0,0.0620,6469,9.5674,0,0,0,6389,0 +1389,3.5036,9.7363,0.0295,0.0036,1,0,0.0689,1501,9.7847,0,0,0,1421,0 +1390,4.3900,9.7301,0.0293,0.0027,1,0,0.0628,2629,9.7786,0,0,0,2549,0 +1391,2.9515,9.5997,0.0215,0.0024,1,0,0.0613,1469,9.6377,0,0,0,1389,0 +1392,4.4505,9.6121,0.0335,0.0037,1,0,0.0670,8642,9.6727,0,0,0,8562,0 +1393,3.4652,9.5729,0.0234,0.0025,1,0,0.0505,2547,9.6129,0,0,0,2467,0 +1394,4.6355,9.5131,0.0205,0.0026,1,0,0.0168,1211,9.5503,0,0,0,1131,0 +1395,3.4242,9.5087,0.0174,0.0019,1,0,0.0505,1103,9.5418,0,0,0,1023,0 +1396,4.6894,9.4947,0.0217,0.0021,1,0,0.0561,8570,9.5321,0,0,0,8490,0 +1397,3.4203,9.5277,0.0302,0.0026,1,0,0.0223,1150,9.5757,0,0,0,1070,0 +1398,3.4909,9.5095,0.0236,0.0025,1,0,0.0169,976,9.5507,0,0,0,896,0 +1399,4.3853,9.5373,0.0211,0.0020,1,0,0.0165,934,9.5745,0,0,0,854,0 +1400,3.4919,9.4994,0.0218,0.0019,1,0,0.0154,8271,9.5435,0,0,0,8191,0 +1401,4.4288,9.5324,0.0184,0.0022,1,0,0.0142,968,9.5662,0,0,0,888,0 +1402,3.4205,9.4646,0.0098,0.0018,1,0,0.0200,914,9.4850,0,0,0,834,0 +1403,5.2989,9.5519,0.0223,0.0021,1,0,0.0158,964,9.5896,0,0,0,884,0 +1404,3.4298,9.4964,0.0205,0.0021,1,0,0.0189,6675,9.5385,0,0,0,6595,0 +1405,4.6794,9.4892,0.0204,0.0021,1,0,93.2567,885,9.5313,0,0,0,805,0 +1406,3.4170,9.6283,0.0457,0.0005,1,0,0.0000,0,0.0000,0,0,1,1230,0 +1407,4.7905,9.5271,0.0201,0.0044,2,0,0.0352,1317,69.4112,0,0,0,1237,0 +1408,4.3703,9.4739,0.0218,0.0015,3,0,0.0139,7010,53.6696,0,0,0,6930,0 +1409,3.4085,9.5178,0.0198,0.0003,4,0,0.0038,1780,37.7439,0,0,0,1700,0 +1410,4.5307,9.4712,0.0170,0.0012,4,1,0.0031,1013,19.7667,0,0,0,933,0 +1411,3.4106,9.4810,0.0196,0.0021,1,1,0.0135,936,9.5228,0,0,0,856,0 +1412,4.5784,9.5032,0.0211,0.0020,1,1,0.0166,7539,9.5457,0,0,0,7459,0 +1413,4.3880,9.5125,0.0203,0.0028,1,1,0.0144,2007,9.5553,0,0,0,1927,0 +1414,3.4133,9.5002,0.0160,0.0020,1,1,0.0131,877,9.5378,0,0,0,797,0 +1415,5.2417,9.4908,0.0197,0.0023,1,1,0.0134,882,9.5325,0,0,0,802,0 +1416,3.4278,9.5178,0.0215,0.0025,1,1,0.0153,7568,9.5609,0,0,0,7488,0 +1417,4.3937,9.5339,0.0194,0.0019,1,1,0.0140,926,9.5742,0,0,0,846,0 +1418,4.4033,9.6130,0.0465,0.0056,1,1,0.0325,2037,9.6952,0,0,0,1957,0 +1419,4.6156,9.5363,0.0254,0.0029,1,1,0.0185,868,9.5790,0,0,0,788,0 +1420,3.4037,9.4640,0.0202,0.0022,1,1,0.0173,6149,9.5000,0,0,0,6069,0 +1421,4.5495,9.4996,0.0150,0.0020,1,1,0.0168,913,9.5360,0,0,0,833,0 +1422,4.3717,9.5346,0.0184,0.0021,1,1,0.0160,1066,9.5690,0,0,0,986,0 +1423,3.4446,9.5234,0.0193,0.0020,1,1,0.0145,1005,9.5640,0,0,0,925,0 +1424,5.2506,9.5017,0.0201,0.0022,1,1,0.0142,8103,9.5441,0,0,0,8023,0 +1425,3.4125,9.5091,0.0235,0.0028,1,1,0.0174,2598,9.5497,0,0,0,2518,0 +1426,4.7115,9.5037,0.0192,0.0020,1,1,0.0168,1344,9.5389,0,0,0,1264,0 +1427,4.9405,9.5411,0.0267,0.0031,1,1,0.0192,989,9.5863,0,0,0,909,0 +1428,3.4894,9.7151,0.0254,0.0022,1,1,0.0181,8358,9.7570,0,0,0,8278,0 +1429,4.3659,9.6964,0.0517,0.0064,1,1,0.0483,1535,9.7759,0,0,0,1455,0 +1430,5.0296,9.5759,0.0232,0.0022,1,1,0.0196,1567,9.6159,0,0,0,1487,0 +1431,3.4141,9.5000,0.0220,0.0020,1,1,0.0174,1616,9.5441,0,0,0,1536,0 +1432,4.9149,9.5102,0.0232,0.0025,1,1,0.0170,8313,9.5560,0,0,0,8233,0 +1433,3.4118,9.6013,0.0473,0.0052,1,1,0.0340,1553,9.6733,0,0,0,1473,0 +1434,5.0432,9.5087,0.0232,0.0022,1,1,0.0168,1558,9.5485,0,0,0,1478,0 +1435,3.4056,9.4919,0.0210,0.0022,1,1,95.4439,1547,9.5290,0,0,0,1467,0 +1436,5.1895,9.5067,0.0154,0.0002,1,1,0.0000,0,0.0000,0,0,1,6833,0 +1437,3.4326,9.4650,0.0136,0.0001,2,1,5.8297,1904,73.3798,0,0,0,1824,0 +1438,5.1193,9.4873,0.0201,0.0004,3,1,5.9579,2295,58.0869,0,0,0,2215,0 +1439,3.4043,9.4828,0.0231,0.0003,4,1,0.0073,1509,50.2202,0,0,0,1429,0 +1440,4.4438,8.3440,0.0348,0.0016,4,2,12.8060,37842,31.7928,0,1,0,37762,0 +1441,5.1508,9.4855,0.0179,0.0002,3,2,0.0111,4130,27.6688,0,0,0,4050,0 +1442,3.4152,9.4868,0.0216,0.0002,2,2,0.0033,4176,12.8368,0,0,0,4096,0 +1443,5.0743,9.9363,0.0247,0.0024,1,2,0.0553,4691,9.9838,0,0,0,4611,0 +1444,3.4058,9.5080,0.0254,0.0026,1,2,0.0505,10745,9.5555,0,0,0,10665,0 +1445,5.1599,9.5666,0.0185,0.0019,1,2,0.0397,2882,9.6065,0,0,0,2802,0 +1446,3.4047,9.4922,0.0192,0.0020,1,2,0.0443,1287,9.5271,0,0,0,1207,0 +1447,4.4051,9.4787,0.0212,0.0020,1,2,0.0408,1283,9.5150,0,0,0,1203,0 +1448,4.4146,9.6389,0.0506,0.0059,1,2,0.1129,8055,9.7153,0,0,0,7975,0 +1449,4.5778,9.6684,0.0263,0.0030,1,2,0.0164,969,9.7129,0,0,0,889,0 +1450,3.5345,9.8173,0.0551,0.0067,1,2,0.1050,891,9.8978,0,0,0,811,0 +1451,4.5433,9.6511,0.0253,0.0021,1,2,0.0602,932,9.6930,0,0,0,852,0 +1452,3.4470,9.6162,0.0304,0.0036,1,2,0.0614,6097,9.6730,0,0,0,6017,0 +1453,3.4882,9.6047,0.0221,0.0023,1,2,0.0524,905,9.6434,0,0,0,825,0 +1454,4.3858,9.6487,0.0467,0.0059,1,2,0.0980,1132,9.7301,0,0,0,1052,0 +1455,4.8265,9.5461,0.0239,0.0024,1,2,0.0457,1035,9.5867,0,0,0,955,0 +1456,3.4287,9.5341,0.0209,0.0020,1,2,0.0502,8031,9.5775,0,0,0,7951,0 +1457,4.8510,9.5449,0.0216,0.0022,1,2,0.0530,2062,9.5832,0,0,0,1982,0 +1458,3.5019,9.6073,0.0247,0.0026,1,2,0.0479,1282,9.6487,0,0,0,1202,0 +1459,4.9926,9.6898,0.0348,0.0022,1,2,0.0717,892,9.7431,0,0,0,812,0 +1460,3.4758,9.5052,0.0234,0.0020,1,2,0.0430,8377,9.5453,0,0,0,8297,0 +1461,5.1571,9.5494,0.0198,0.0019,1,2,0.0378,1019,9.5846,0,0,0,939,0 +1462,3.4045,9.5035,0.0204,0.0020,1,2,0.0420,917,9.5400,0,0,0,837,0 +1463,5.2363,9.5954,0.0313,0.0035,1,2,0.0586,1109,9.6460,0,0,0,1029,0 +1464,3.4340,9.6355,0.0368,0.0027,1,2,0.0803,8221,9.7002,0,0,0,8141,0 +1465,3.4748,9.5575,0.0228,0.0026,1,2,0.0573,912,9.5972,0,0,0,832,0 +1466,3.4318,9.6439,0.0271,0.0033,1,2,0.0543,828,9.6898,0,0,0,748,0 +1467,3.4900,9.6151,0.0267,0.0029,1,2,0.0520,833,9.6598,0,0,0,753,0 +1468,3.4807,9.6702,0.0305,0.0026,1,2,0.0615,6424,9.7193,0,0,0,6344,0 +1469,3.5105,9.6290,0.0222,0.0024,1,2,0.0516,861,9.6685,0,0,0,781,0 +1470,3.4737,9.5488,0.0290,0.0035,1,2,0.0580,982,9.5976,0,0,0,902,0 +1471,3.4592,9.5755,0.0241,0.0021,1,2,0.0514,1003,9.6166,0,0,0,923,0 +1472,5.1973,9.8176,0.0486,0.0033,1,2,0.0768,22030,9.8867,0,0,0,21950,0 +1473,3.5079,9.6723,0.0298,0.0028,1,2,0.0735,2499,9.7198,0,0,0,2419,0 +1474,3.5121,9.6327,0.0260,0.0024,1,2,0.0580,1028,9.6763,0,0,0,948,0 +1475,3.4570,9.6376,0.0249,0.0025,1,2,0.0556,930,9.6797,0,0,0,850,0 +1476,4.4130,9.5706,0.0288,0.0023,1,2,0.0604,7532,9.6164,0,0,0,7452,0 +1477,3.5009,9.6544,0.0323,0.0035,1,2,0.0777,2038,9.7049,0,0,0,1958,0 +1478,3.5198,9.6408,0.0334,0.0027,1,2,0.0184,875,9.6925,0,0,0,795,0 +1479,4.4486,9.6329,0.0255,0.0022,1,2,0.0202,1048,9.6760,0,0,0,968,0 +1480,3.4481,9.5712,0.0281,0.0029,1,2,0.0673,7657,9.6174,0,0,0,7577,0 +1481,3.4534,9.6288,0.0261,0.0029,1,2,0.0192,915,9.6728,0,0,0,835,0 +1482,3.4593,9.6004,0.0267,0.0025,1,2,0.0544,2075,9.6445,0,0,0,1995,0 +1483,3.4429,9.5951,0.0257,0.0025,1,2,0.0529,850,9.6380,0,0,0,770,0 +1484,3.5409,9.5974,0.0222,0.0020,1,2,0.0505,6167,9.6364,0,0,0,6087,0 +1485,3.4894,9.5452,0.0244,0.0023,1,2,0.0198,871,9.5867,0,0,0,791,0 +1486,5.1262,9.5735,0.0251,0.0022,1,2,0.0563,966,9.6160,0,0,0,886,0 +1487,3.4865,9.6921,0.0332,0.0027,1,2,0.0277,957,9.7445,0,0,0,877,0 +1488,3.5069,9.6766,0.0230,0.0024,1,2,0.0640,8142,9.7161,0,0,0,8062,0 +1489,4.8550,9.5851,0.0232,0.0025,1,2,0.0548,2677,9.6255,0,0,0,2597,0 +1490,3.4737,9.6212,0.0312,0.0031,1,2,0.0605,2060,9.6709,0,0,0,1980,0 +1491,4.9874,9.5582,0.0277,0.0025,1,2,0.0588,1677,9.6037,0,0,0,1597,0 +1492,3.5374,9.6772,0.0280,0.0028,1,2,0.0551,8428,9.7223,0,0,0,8348,0 +1493,4.7769,9.5455,0.0265,0.0028,1,2,0.0731,2092,9.5895,0,0,0,2012,0 +1494,3.5136,9.6191,0.0222,0.0020,1,2,0.0501,1636,9.6577,0,0,0,1556,0 +1495,4.4455,9.5269,0.0261,0.0033,1,2,0.0683,2364,9.5715,0,0,0,2284,0 +1496,5.0032,9.5578,0.0271,0.0025,1,2,0.0588,9664,9.6017,0,0,0,9584,0 +1497,3.5013,9.6513,0.0236,0.0027,1,2,0.0519,1060,9.6925,0,0,0,980,0 +1498,3.5214,9.5726,0.0259,0.0023,1,2,0.0537,1812,9.6150,0,0,0,1732,0 +1499,4.4595,9.5431,0.0229,0.0022,1,2,0.0514,1105,9.5825,0,0,0,1025,0 +1500,3.4491,8.4773,0.0633,0.0038,1,2,0.1222,57030,8.5744,0,1,0,56950,0 +1501,4.4774,9.5415,0.0308,0.0026,1,2,0.0598,3964,9.5908,0,0,0,3884,0 +1502,3.5063,9.6611,0.0344,0.0027,1,2,0.0729,3066,9.7136,0,0,0,2986,0 +1503,3.5017,9.6373,0.0267,0.0024,1,2,0.0580,2219,9.6814,0,0,0,2139,0 +1504,3.4657,9.6237,0.0346,0.0029,1,2,0.0694,8310,9.6760,0,0,0,8230,0 +1505,3.4644,9.5382,0.0260,0.0026,1,2,0.0550,2535,9.5811,0,0,0,2455,0 +1506,3.5079,9.7148,0.0390,0.0030,1,2,0.0942,2599,9.7734,0,0,0,2519,0 +1507,5.0599,9.6744,0.0295,0.0026,1,2,0.0631,2499,9.7216,0,0,0,2419,0 +1508,3.4604,9.7274,0.0423,0.0029,1,2,0.0640,7743,9.7967,0,0,0,7663,0 +1509,3.5038,9.7921,0.0432,0.0035,1,2,0.0869,2058,9.8562,0,0,0,1978,0 +1510,3.5627,9.6923,0.0294,0.0032,1,2,0.0533,846,9.7407,0,0,0,766,0 +1511,5.0606,9.5906,0.0253,0.0027,1,2,0.0187,815,9.6336,0,0,0,735,0 +1512,3.5255,9.6174,0.0321,0.0030,1,2,0.0996,7534,9.6829,0,0,0,7454,0 +1513,3.5015,9.6982,0.0260,0.0027,1,2,0.0208,880,9.7420,0,0,0,800,0 +1514,4.8967,9.5950,0.0267,0.0020,1,2,0.0592,1990,9.6387,0,0,0,1910,0 +1515,3.4972,9.6340,0.0245,0.0025,1,2,0.0517,826,9.6755,0,0,0,746,0 +1516,4.9541,9.5637,0.0275,0.0025,1,2,0.0501,6100,9.6080,0,0,0,6020,0 +1517,3.4584,9.6689,0.0353,0.0032,1,2,0.0695,876,9.7237,0,0,0,796,0 +1518,4.5088,9.5745,0.0232,0.0023,1,2,0.0439,1170,9.6149,0,0,0,1090,0 +1519,4.8665,9.5630,0.0367,0.0029,1,2,0.0761,1081,9.6192,0,0,0,1001,0 +1520,3.4552,9.5835,0.0261,0.0027,1,2,0.0515,8570,9.6265,0,0,0,8490,0 +1521,4.6560,9.5628,0.0255,0.0025,1,2,0.0495,2950,9.6049,0,0,0,2870,0 +1522,3.4365,9.5385,0.0221,0.0024,1,2,0.0495,1244,9.5772,0,0,0,1164,0 +1523,4.6100,9.5170,0.0236,0.0022,1,2,0.0444,1146,9.5575,0,0,0,1066,0 +1524,3.4223,9.5228,0.0282,0.0026,1,2,0.0707,8468,9.5686,0,0,0,8388,0 +1525,3.4371,9.5845,0.0274,0.0024,1,2,0.0630,1228,9.6296,0,0,0,1148,0 +1526,3.4518,9.5371,0.0220,0.0020,1,2,0.0472,1079,9.5755,0,0,0,999,0 +1527,4.3937,9.5110,0.0207,0.0021,1,2,0.0393,1079,9.5474,0,0,0,999,0 +1528,3.4645,9.5062,0.0202,0.0037,1,2,0.0500,8216,9.5500,0,0,0,8136,0 +1529,3.4432,9.4952,0.0215,0.0020,1,2,0.0465,1135,9.5329,0,0,0,1055,0 +1530,4.5216,9.4905,0.0180,0.0022,1,2,0.0428,964,9.5301,0,0,0,884,0 +1531,3.4144,9.4874,0.0203,0.0021,1,2,0.0420,952,9.5233,0,0,0,872,0 +1532,4.3726,9.5028,0.0214,0.0021,1,2,0.0480,6877,9.5461,0,0,0,6797,0 +1533,5.2125,9.4973,0.0192,0.0025,1,2,0.0152,946,9.5388,0,0,0,866,0 +1534,3.3991,9.4679,0.0203,0.0021,1,2,0.0422,1626,9.5034,0,0,0,1546,0 +1535,5.1219,9.4972,0.0177,0.0020,1,2,0.0428,1275,9.5310,0,0,0,1195,0 +1536,3.3965,9.5008,0.0258,0.0019,1,2,0.0584,20348,9.5418,0,0,0,20268,0 +1537,5.2476,9.5026,0.0212,0.0018,1,2,0.0457,2602,9.5450,0,0,0,2522,0 +1538,3.3935,9.4620,0.0227,0.0022,1,2,0.0387,1711,9.5004,0,0,0,1631,0 +1539,4.3454,9.4775,0.0185,0.0019,1,2,0.0402,1520,9.5170,0,0,0,1440,0 +1540,4.4388,9.6463,0.0432,0.0060,1,2,0.1348,8453,9.7140,0,0,0,8373,0 +1541,4.6562,9.4804,0.0240,0.0023,1,2,0.0440,2411,9.5270,0,0,0,2331,0 +1542,3.4030,9.5189,0.0247,0.0025,1,2,0.0551,2064,9.5603,0,0,0,1984,0 +1543,4.6127,9.4753,0.0208,0.0025,1,2,0.0491,2008,9.5128,0,0,0,1928,0 +1544,4.3324,9.4949,0.0220,0.0022,1,2,0.0545,7903,9.5333,0,0,0,7823,0 +1545,3.4078,9.4974,0.0200,0.0027,1,2,0.0405,1620,9.5336,0,0,0,1540,0 +1546,4.3922,9.5011,0.0210,0.0022,1,2,0.0457,1599,9.5377,0,0,0,1519,0 +1547,4.3905,9.5070,0.0273,0.0030,1,2,0.0591,1608,9.5530,0,0,0,1528,0 +1548,3.5281,9.5702,0.0217,0.0022,1,2,0.0540,6846,9.6085,0,0,0,6766,0 +1549,3.4425,9.5762,0.0226,0.0018,1,2,0.0464,1170,9.6146,0,0,0,1090,0 +1550,4.4564,9.5207,0.0214,0.0022,1,2,0.0470,1893,9.5642,0,0,0,1813,0 +1551,3.4140,9.5580,0.0228,0.0022,1,2,0.0529,1868,9.5972,0,0,0,1788,0 +1552,4.5503,9.5154,0.0196,0.0021,1,2,0.0567,8953,9.5504,0,0,0,8873,0 +1553,3.4122,9.4845,0.0209,0.0020,1,2,0.0482,3450,9.5276,0,0,0,3370,0 +1554,4.6209,9.4705,0.0193,0.0019,1,2,0.0408,2526,9.5108,0,0,0,2446,0 +1555,3.3981,9.5857,0.0506,0.0056,1,2,0.0970,2601,9.6703,0,0,0,2521,0 +1556,4.8455,9.5947,0.0181,0.0023,1,2,0.0557,9130,9.6223,0,0,0,9050,0 +1557,3.4592,9.4498,0.0164,0.0023,1,2,0.0235,2727,9.4855,0,0,0,2647,0 +1558,4.6198,9.5192,0.0224,0.0024,1,2,0.0518,2753,9.5580,0,0,0,2673,0 +1559,4.3744,9.4834,0.0208,0.0021,1,2,0.0418,2762,9.5260,0,0,0,2682,0 +1560,3.4054,8.3326,0.0326,0.0022,1,2,0.0836,38006,8.3903,0,1,0,37926,0 +1561,4.4884,9.5094,0.0236,0.0025,1,2,0.0520,3121,9.5498,0,0,0,3041,0 +1562,3.4137,9.4778,0.0212,0.0020,1,2,0.0423,2062,9.5205,0,0,0,1982,0 +1563,3.4029,9.4633,0.0205,0.0022,1,2,0.0457,1649,9.4999,0,0,0,1569,0 +1564,4.3500,9.5367,0.0229,0.0024,1,2,0.0553,7274,9.5761,0,0,0,7194,0 +1565,3.4247,9.5755,0.0489,0.0055,1,2,0.0968,2286,9.6605,0,0,0,2206,0 +1566,5.2872,9.5570,0.0242,0.0023,1,2,0.0440,1713,9.5975,0,0,0,1633,0 +1567,3.4147,9.5235,0.0193,0.0018,1,2,0.0419,1409,9.5585,0,0,0,1329,0 +1568,4.4091,9.4893,0.0195,0.0024,1,2,0.0486,7439,9.5311,0,0,0,7359,0 +1569,4.4573,9.7009,0.0423,0.0065,1,2,0.1039,1750,9.7649,0,0,0,1670,0 +1570,4.7263,9.6370,0.0242,0.0025,1,2,0.0462,1289,9.6936,0,0,0,1209,0 +1571,3.4382,9.5222,0.0196,0.0022,1,2,0.0459,1101,9.5579,0,0,0,1021,0 +1572,4.6506,9.5220,0.0258,0.0033,1,2,0.0629,7623,9.5658,0,0,0,7543,0 +1573,3.4955,9.5318,0.0215,0.0023,1,2,0.0442,2239,9.5699,0,0,0,2159,0 +1574,3.4565,9.5038,0.0217,0.0019,1,2,0.0481,1467,9.5477,0,0,0,1387,0 +1575,5.2147,9.4832,0.0184,0.0029,1,2,0.0165,1362,9.5180,0,0,0,1282,0 +1576,3.4614,9.4868,0.0238,0.0021,1,2,0.0505,7872,9.5265,0,0,0,7792,0 +1577,5.2733,9.5905,0.0262,0.0020,1,2,0.0442,917,9.6328,0,0,0,837,0 +1578,3.4700,9.5960,0.0203,0.0022,1,2,0.0509,1368,9.6390,0,0,0,1288,0 +1579,4.4817,9.6015,0.0418,0.0048,1,2,0.0751,1778,9.6729,0,0,0,1698,0 +1580,3.4378,9.5363,0.0202,0.0019,1,2,0.0421,6659,9.5783,0,0,0,6579,0 +1581,4.3460,9.4780,0.0200,0.0023,1,2,0.0454,1039,9.5143,0,0,0,959,0 +1582,3.4473,9.4578,0.0142,0.0022,1,2,0.0309,1460,9.4898,0,0,0,1380,0 +1583,4.5826,9.5107,0.0163,0.0022,1,2,0.0515,1099,9.5417,0,0,0,1019,0 +1584,3.4358,9.6250,0.0432,0.0051,1,2,0.2093,8194,9.7411,0,0,0,8114,0 +1585,4.6477,9.4258,0.0209,0.0020,1,2,0.0457,3267,9.4682,0,0,0,3187,0 +1586,4.4100,9.4951,0.0188,0.0021,1,2,0.0425,1738,9.5302,0,0,0,1658,0 +1587,3.3868,9.4859,0.0187,0.0018,1,2,0.0392,1335,9.5252,0,0,0,1255,0 +1588,4.6433,9.5026,0.0210,0.0022,1,2,0.0400,8336,9.5447,0,0,0,8256,0 +1589,3.4111,9.4881,0.0218,0.0019,1,2,0.0377,1511,9.5320,0,0,0,1431,0 +1590,4.7981,9.4777,0.0202,0.0019,1,2,0.0398,1362,9.5193,0,0,0,1282,0 +1591,3.4093,9.5960,0.0520,0.0053,1,2,0.0991,1966,9.6715,0,0,0,1886,0 +1592,4.9055,9.5426,0.0240,0.0024,1,2,0.0597,9005,9.5894,0,0,0,8925,0 +1593,3.4342,9.6044,0.0481,0.0054,1,2,0.0911,1254,9.6732,0,0,0,1174,0 +1594,4.9839,9.5634,0.0222,0.0022,1,2,0.0484,1393,9.6016,0,0,0,1313,0 +1595,3.4218,9.6360,0.0485,0.0054,1,2,0.0859,1049,9.7208,0,0,0,969,0 +1596,5.1055,9.5316,0.0231,0.0024,1,2,0.0557,6960,9.5714,0,0,0,6880,0 +1597,3.4216,9.5360,0.0646,0.0066,1,2,0.0904,1468,9.6389,0,0,0,1388,0 +1598,5.2773,9.5250,0.0203,0.0019,1,2,0.0474,2355,9.5668,0,0,0,2275,0 +1599,3.4249,9.4924,0.0221,0.0025,1,2,0.0483,2209,9.5314,0,0,0,2129,0 +1600,4.5367,9.4722,0.0221,0.0023,1,2,0.0490,7849,9.5161,0,0,0,7769,0 +1601,3.4175,9.4678,0.0204,0.0017,1,2,0.0480,2297,9.5039,0,0,0,2217,0 +1602,4.5983,9.5042,0.0247,0.0022,1,2,0.0579,1882,9.5457,0,0,0,1802,0 +1603,4.3706,9.4828,0.0201,0.0020,1,2,0.0423,1651,9.5247,0,0,0,1571,0 +1604,3.4383,9.4990,0.0219,0.0018,1,2,0.0470,8744,9.5419,0,0,0,8664,0 +1605,5.1924,9.5207,0.0202,0.0020,1,2,0.0365,2259,9.5624,0,0,0,2179,0 +1606,3.4341,9.4940,0.0178,0.0018,1,2,0.0390,1728,9.5324,0,0,0,1648,0 +1607,5.2809,9.6103,0.0297,0.0030,1,2,0.0677,2005,9.6586,0,0,0,1925,0 +1608,3.4860,9.6015,0.0259,0.0024,1,2,0.0580,7969,9.6441,0,0,0,7889,0 +1609,4.4716,9.5204,0.0230,0.0023,1,2,0.0548,1622,9.5598,0,0,0,1542,0 +1610,3.5265,9.5085,0.0224,0.0023,1,2,0.0438,1196,9.5473,0,0,0,1116,0 +1611,4.6851,9.5090,0.0191,0.0022,1,2,0.0432,1362,9.5441,0,0,0,1282,0 +1612,3.4380,9.4968,0.0251,0.0024,1,2,0.0494,6947,9.5380,0,0,0,6867,0 +1613,4.7788,9.5278,0.0226,0.0026,1,2,0.0506,1486,9.5673,0,0,0,1406,0 +1614,3.4497,9.5345,0.0212,0.0023,1,2,0.0496,2731,9.5717,0,0,0,2651,0 +1615,4.9270,9.5179,0.0204,0.0025,1,2,0.0390,1862,9.5547,0,0,0,1782,0 +1616,3.4695,9.4832,0.0205,0.0020,1,2,0.0520,8985,9.5200,0,0,0,8905,0 +1617,4.9727,9.6324,0.0254,0.0040,1,2,0.0650,3164,9.6823,0,0,0,3084,0 +1618,3.4895,9.5626,0.0232,0.0023,1,2,0.0495,2304,9.6021,0,0,0,2224,0 +1619,5.0490,9.5972,0.0296,0.0035,1,2,0.0673,2217,9.6390,0,0,0,2137,0 +1620,3.4401,8.4598,0.0437,0.0026,1,2,0.1034,57013,8.5428,0,1,0,56933,0 +1621,5.1435,9.5421,0.0222,0.0026,1,2,0.0464,3474,9.5814,0,0,0,3394,0 +1622,3.4020,9.5039,0.0219,0.0023,1,2,0.0426,2104,9.5420,0,0,0,2024,0 +1623,5.2920,9.5390,0.0183,0.0023,1,2,0.0424,1774,9.5734,0,0,0,1694,0 +1624,3.4065,9.5087,0.0220,0.0022,1,2,0.0584,8954,9.5532,0,0,0,8874,0 +1625,4.3857,9.5052,0.0200,0.0020,1,2,0.0435,1329,9.5414,0,0,0,1249,0 +1626,3.4193,9.4958,0.0210,0.0019,1,2,0.0403,1100,9.5328,0,0,0,1020,0 +1627,4.5999,9.4882,0.0176,0.0024,1,2,0.0394,1364,9.5221,0,0,0,1284,0 +1628,5.2994,9.4808,0.0171,0.0039,1,2,0.0457,7024,9.5149,0,0,0,6944,0 +1629,3.4848,9.6342,0.0415,0.0044,1,2,0.2617,1175,9.7052,0,0,0,1095,0 +1630,5.0941,9.7158,0.0294,0.0025,1,2,0.0555,1808,9.7798,0,0,0,1728,0 +1631,2.9324,9.5376,0.0213,0.0025,1,2,0.0549,1549,9.5760,0,0,0,1469,0 +1632,5.1829,9.6885,0.0331,0.0033,1,2,0.0789,21139,9.7400,0,0,0,21059,0 +1633,3.4357,9.5604,0.0210,0.0023,1,2,0.0512,3121,9.5984,0,0,0,3041,0 +1634,4.4340,9.5099,0.0215,0.0023,1,2,0.0448,1382,9.5477,0,0,0,1302,0 +1635,3.4040,9.4808,0.0181,0.0024,1,2,0.0478,1685,9.5214,0,0,0,1605,0 +1636,4.5202,9.4983,0.0233,0.0022,1,2,0.0546,8767,9.5376,0,0,0,8687,0 +1637,3.3985,9.5235,0.0245,0.0031,1,2,0.0726,2375,9.5661,0,0,0,2295,0 +1638,4.5592,9.6677,0.0325,0.0030,1,2,0.0615,988,9.7192,0,0,0,908,0 +1639,3.4537,9.6122,0.0225,0.0022,1,2,0.0185,1147,9.6515,0,0,0,1067,0 +1640,3.4256,9.5390,0.0206,0.0023,1,2,0.0493,7706,9.5754,0,0,0,7626,0 +1641,4.3488,9.5131,0.0210,0.0020,1,2,0.0480,931,9.5496,0,0,0,851,0 +1642,3.4008,9.4903,0.0200,0.0027,1,2,0.0643,1618,9.5271,0,0,0,1538,0 +1643,4.2943,9.5117,0.0185,0.0026,1,2,0.0371,1025,9.5462,0,0,0,945,0 +1644,4.4356,9.4802,0.0215,0.0024,1,2,0.0449,6363,9.5184,0,0,0,6283,0 +1645,3.3919,9.4945,0.0184,0.0022,1,2,0.0458,869,9.5352,0,0,0,789,0 +1646,4.9519,9.5210,0.0187,0.0018,1,2,0.0358,1511,9.5613,0,0,0,1431,0 +1647,3.4065,9.6270,0.0510,0.0051,1,2,0.0907,1138,9.7171,0,0,0,1058,0 +1648,4.9900,9.5101,0.0222,0.0022,1,2,0.0478,8729,9.5486,0,0,0,8649,0 +1649,3.4098,9.6154,0.0498,0.0058,1,2,0.1103,3003,9.6938,0,0,0,2923,0 +1650,5.0553,9.5476,0.0233,0.0021,1,2,0.0549,2089,9.5872,0,0,0,2009,0 +1651,3.4080,9.4790,0.0217,0.0018,1,2,0.0425,1892,9.5159,0,0,0,1812,0 +1652,5.1440,9.5473,0.0205,0.0022,1,2,0.0505,8446,9.5896,0,0,0,8366,0 +1653,3.4081,9.5190,0.0210,0.0021,1,2,0.0482,1926,9.5557,0,0,0,1846,0 +1654,4.3758,9.4879,0.0202,0.0018,1,2,0.0419,1678,9.5236,0,0,0,1598,0 +1655,5.1052,9.4800,0.0197,0.0021,1,2,0.0427,2175,9.5155,0,0,0,2095,0 +1656,3.4054,9.4992,0.0203,0.0022,1,2,0.0497,9167,9.5350,0,0,0,9087,0 +1657,5.0916,9.5475,0.0180,0.0019,1,2,0.0435,1332,9.5861,0,0,0,1252,0 +1658,3.4227,9.4689,0.0198,0.0018,1,2,0.0420,1609,9.5105,0,0,0,1529,0 +1659,5.1565,9.5039,0.0196,0.0019,1,2,0.0328,1355,9.5444,0,0,0,1275,0 +1660,3.4088,9.4819,0.0217,0.0020,1,2,0.0437,7043,9.5249,0,0,0,6963,0 +1661,5.2493,9.4815,0.0175,0.0020,1,2,0.0348,1272,9.5201,0,0,0,1192,0 +1662,3.3978,9.5075,0.0230,0.0023,1,2,0.0504,2364,9.5470,0,0,0,2284,0 +1663,4.4509,9.4827,0.0222,0.0022,1,2,0.0395,2181,9.5280,0,0,0,2101,0 +1664,3.4142,9.4790,0.0209,0.0020,1,2,0.0412,8087,9.5213,0,0,0,8007,0 +1665,4.5650,9.4721,0.0190,0.0020,1,2,0.0452,2724,9.5070,0,0,0,2644,0 +1666,4.3315,9.4871,0.0182,0.0021,1,2,0.0501,2576,9.5267,0,0,0,2496,0 +1667,3.4148,9.6505,0.0323,0.0036,1,2,0.0749,2076,9.7019,0,0,0,1996,0 +1668,3.4608,9.5474,0.0255,0.0024,1,2,0.0573,8867,9.5895,0,0,0,8787,0 +1669,3.4137,9.5458,0.0504,0.0057,1,2,0.1099,3031,9.6219,0,0,0,2951,0 +1670,4.5003,9.5181,0.0224,0.0024,1,2,0.0507,2154,9.5574,0,0,0,2074,0 +1671,3.4345,9.5293,0.0201,0.0020,1,2,0.0449,2204,9.5712,0,0,0,2124,0 +1672,4.5505,9.5078,0.0221,0.0018,1,2,0.0559,8300,9.5456,0,0,0,8220,0 +1673,3.4270,9.5072,0.0192,0.0021,1,2,0.0475,1851,9.5481,0,0,0,1771,0 +1674,3.4122,9.4641,0.0201,0.0021,1,2,0.0380,1927,9.5058,0,0,0,1847,0 +1675,4.2968,9.5245,0.0237,0.0027,1,2,0.0509,1929,9.5651,0,0,0,1849,0 +1676,4.3743,9.4901,0.0221,0.0020,1,2,0.0413,7356,9.5343,0,0,0,7276,0 +1677,3.3888,9.4355,0.0108,0.0017,1,2,0.0225,2014,9.4657,0,0,0,1934,0 +1678,4.5838,9.5298,0.0206,0.0019,1,2,0.0558,3209,9.5668,0,0,0,3129,0 +1679,3.4015,9.6070,0.0487,0.0053,1,2,0.0963,2717,9.6915,0,0,0,2637,0 +1680,4.3627,8.3795,0.0388,0.0022,1,2,0.0822,36354,8.4350,0,1,0,36274,0 +1681,4.4021,9.5168,0.0215,0.0023,1,2,0.0528,5333,9.5652,0,0,0,5253,0 +1682,3.4015,9.4511,0.0210,0.0020,1,2,0.0491,3917,9.4883,0,0,0,3837,0 +1683,4.4883,9.4894,0.0186,0.0019,1,2,0.0425,2448,9.5295,0,0,0,2368,0 +1684,3.4350,9.5154,0.0221,0.0023,1,2,0.0430,9441,9.5597,0,0,0,9361,0 +1685,4.6860,9.4742,0.0197,0.0019,1,2,0.0367,1563,9.5152,0,0,0,1483,0 +1686,3.4460,9.5241,0.0196,0.0020,1,2,0.0362,1021,9.5652,0,0,0,941,0 +1687,4.8238,9.5240,0.0193,0.0020,1,2,0.0335,1012,9.5648,0,0,0,932,0 +1688,3.4410,9.6131,0.0480,0.0054,1,2,0.1099,8314,9.6860,0,0,0,8234,0 +1689,5.1165,9.6596,0.0252,0.0032,1,2,0.0499,927,9.7035,0,0,0,847,0 +1690,3.5138,9.6472,0.0251,0.0026,1,2,0.0600,822,9.6904,0,0,0,742,0 +1691,4.9715,9.6046,0.0192,0.0022,1,2,0.0468,852,9.6461,0,0,0,772,0 +1692,3.4414,9.5667,0.0281,0.0032,1,2,0.0665,6555,9.6128,0,0,0,6475,0 +1693,3.4548,9.5532,0.0211,0.0020,1,2,0.0460,1063,9.5905,0,0,0,983,0 +1694,3.4332,9.6618,0.0463,0.0061,1,2,0.0929,1347,9.7338,0,0,0,1267,0 +1695,4.3377,9.5710,0.0234,0.0022,1,2,0.0448,1196,9.6170,0,0,0,1116,0 +1696,3.4077,9.4854,0.0216,0.0020,1,2,0.0543,7153,9.5292,0,0,0,7073,0 +1697,4.4562,9.5505,0.0241,0.0028,1,2,0.0484,1847,9.5915,0,0,0,1767,0 +1698,3.4816,9.5473,0.0217,0.0024,1,2,0.0364,976,9.5913,0,0,0,896,0 +1699,4.6544,9.5521,0.0323,0.0025,1,2,0.0705,867,9.6112,0,0,0,787,0 +1700,3.4825,9.5457,0.0210,0.0022,1,2,0.0467,7726,9.5883,0,0,0,7646,0 +1701,4.7154,9.5200,0.0201,0.0019,1,2,0.0469,1933,9.5558,0,0,0,1853,0 +1702,3.4410,9.6177,0.0411,0.0058,1,2,0.0340,975,9.6837,0,0,0,895,0 +1703,4.8443,9.6405,0.0362,0.0050,1,2,0.0965,842,9.6964,0,0,0,762,0 +1704,3.4755,9.6233,0.0296,0.0024,1,2,0.0663,7581,9.6702,0,0,0,7501,0 +1705,3.5008,9.5529,0.0246,0.0023,1,2,0.0503,885,9.5945,0,0,0,805,0 +1706,3.4429,9.6301,0.0232,0.0023,1,2,0.0563,830,9.6704,0,0,0,750,0 +1707,3.4820,9.5923,0.0255,0.0025,1,2,0.0537,993,9.6355,0,0,0,913,0 +1708,4.9655,9.5573,0.0221,0.0021,1,2,0.0470,6609,9.5953,0,0,0,6529,0 +1709,3.4417,9.6253,0.0329,0.0023,1,2,0.0675,883,9.6853,0,0,0,803,0 +1710,4.9701,9.5932,0.0242,0.0023,1,2,0.0562,1424,9.6345,0,0,0,1344,0 +1711,3.5338,9.7860,0.0343,0.0028,1,2,0.0563,1047,9.8395,0,0,0,967,0 +1712,3.4759,9.8951,0.0504,0.0054,1,2,0.0885,7582,10.0424,0,0,0,7502,0 +1713,3.4924,9.6152,0.0272,0.0035,1,2,0.0597,2377,9.6617,0,0,0,2297,0 +1714,3.4740,9.6287,0.0191,0.0022,1,2,0.0480,1102,9.6713,0,0,0,1022,0 +1715,4.9355,9.6102,0.0346,0.0037,1,2,0.0778,1610,9.6640,0,0,0,1530,0 +1716,3.4992,9.6876,0.0244,0.0024,1,2,0.0600,8328,9.7287,0,0,0,8248,0 +1717,3.4515,9.5809,0.0225,0.0022,1,2,0.0182,1123,9.6204,0,0,0,1043,0 +1718,3.4490,9.5675,0.0202,0.0021,1,2,0.0486,1113,9.6038,0,0,0,1033,0 +1719,3.4695,9.5623,0.0225,0.0025,1,2,0.0476,1443,9.6020,0,0,0,1363,0 +1720,3.4860,9.6100,0.0255,0.0025,1,2,0.0592,8248,9.6530,0,0,0,8168,0 +1721,5.1687,9.5810,0.0223,0.0025,1,2,0.0537,1309,9.6273,0,0,0,1229,0 +1722,3.4872,9.6914,0.0327,0.0022,1,2,0.0720,1048,9.7420,0,0,0,968,0 +1723,3.5034,9.6546,0.0128,0.0019,1,2,0.1095,1400,9.6770,0,0,0,1320,0 +1724,3.5248,9.5591,0.0225,0.0022,1,2,0.0579,6791,9.6054,0,0,0,6711,0 +1725,4.4135,9.5548,0.0219,0.0021,1,2,0.0508,1030,9.5930,0,0,0,950,0 +1726,3.4844,9.6586,0.0314,0.0029,1,2,0.0595,1755,9.7096,0,0,0,1675,0 +1727,3.4761,9.6195,0.0250,0.0041,1,2,0.0553,1362,9.6724,0,0,0,1282,0 +1728,3.4911,9.6772,0.0320,0.0024,1,2,0.0763,22415,9.7271,0,0,0,22335,0 +1729,3.4870,9.5777,0.0243,0.0024,1,2,0.0593,2366,9.6190,0,0,0,2286,0 +1730,3.4294,9.6011,0.0250,0.0020,1,2,0.0569,1931,9.6433,0,0,0,1851,0 +1731,3.4351,9.6152,0.0256,0.0024,1,2,0.0551,1516,9.6585,0,0,0,1436,0 +1732,3.5054,9.6034,0.0270,0.0022,1,2,0.0595,8539,9.6478,0,0,0,8459,0 +1733,3.4879,9.5803,0.0227,0.0030,1,2,0.0598,2572,9.6289,0,0,0,2492,0 +1734,3.4719,9.6021,0.0206,0.0018,1,2,0.0530,1830,9.6395,0,0,0,1750,0 +1735,3.4474,9.6784,0.0337,0.0027,1,2,0.0652,1985,9.7395,0,0,0,1905,0 +1736,4.4523,9.5642,0.0272,0.0028,1,2,0.0419,8179,9.6089,0,0,0,8099,0 +1737,3.4523,9.6690,0.0222,0.0032,1,2,0.0205,1242,9.7091,0,0,0,1162,0 +1738,3.4258,9.5655,0.0208,0.0023,1,2,0.0157,1264,9.6105,0,0,0,1184,0 +1739,3.4205,9.5595,0.0237,0.0025,1,2,0.0592,1641,9.6004,0,0,0,1561,0 +1740,4.7260,8.4680,0.0353,0.0025,1,2,0.0920,47254,8.5210,0,1,0,47174,0 +1741,3.4563,9.6458,0.0248,0.0025,1,2,0.0510,1579,9.6884,0,0,0,1499,0 +1742,3.4265,9.5340,0.0264,0.0022,1,2,0.0170,1441,9.5774,0,0,0,1361,0 +1743,3.4459,9.5841,0.0235,0.0021,1,2,0.0569,999,9.6263,0,0,0,919,0 +1744,5.1539,9.6994,0.0385,0.0027,1,2,0.0882,8271,9.7577,0,0,0,8191,0 +1745,3.5497,9.6407,0.0283,0.0027,1,2,0.0416,2382,9.6870,0,0,0,2302,0 +1746,3.5281,9.8965,0.0605,0.0065,1,2,0.1499,1546,9.9823,0,0,0,1466,0 +1747,3.5507,9.6608,0.0253,0.0028,1,2,0.0508,958,9.7115,0,0,0,878,0 +1748,3.5218,9.6713,0.0324,0.0024,1,2,0.0752,8393,9.7213,0,0,0,8313,0 +1749,3.4744,9.6508,0.0305,0.0025,1,2,0.0541,833,9.6997,0,0,0,753,0 +1750,3.2727,9.8428,0.0269,0.0031,1,2,0.0618,836,9.8886,0,0,0,756,0 +1751,3.1315,9.6794,0.0310,0.0032,1,2,0.0720,832,9.7380,0,0,0,752,0 +1752,3.5251,9.6249,0.0270,0.0030,1,2,0.0725,8178,9.6698,0,0,0,8098,0 +1753,3.4862,9.6456,0.0228,0.0031,1,2,0.0586,1569,9.6867,0,0,0,1489,0 +1754,3.4420,9.5926,0.0267,0.0023,1,2,0.0296,838,9.6365,0,0,0,758,0 +1755,3.4424,9.5970,0.0266,0.0036,1,2,0.0562,815,9.6429,0,0,0,735,0 +1756,3.4599,9.5988,0.0283,0.0027,1,2,0.0674,6428,9.6449,0,0,0,6348,0 +1757,3.5050,9.6235,0.0265,0.0032,1,2,0.0513,891,9.6685,0,0,0,811,0 +1758,3.4596,9.5765,0.0259,0.0025,1,2,0.0506,1398,9.6198,0,0,0,1318,0 +1759,5.0900,9.6116,0.0206,0.0021,1,2,0.0549,1577,9.6550,0,0,0,1497,0 +1760,3.4520,9.5640,0.0239,0.0025,1,2,0.0591,6764,9.6050,0,0,0,6684,0 +1761,3.4319,9.5469,0.0213,0.0021,1,2,0.0536,1600,9.5907,0,0,0,1520,0 +1762,3.4410,9.5428,0.0225,0.0025,1,2,0.0517,906,9.5820,0,0,0,826,0 +1763,4.3003,9.5517,0.0187,0.0021,1,2,0.0161,837,9.5862,0,0,0,757,0 +1764,3.4108,9.5589,0.0340,0.0033,1,2,0.0715,7469,9.6227,0,0,0,7389,0 +1765,3.4369,9.6030,0.0321,0.0022,1,2,0.0603,2057,9.6535,0,0,0,1977,0 +1766,3.5178,9.5288,0.0222,0.0021,1,2,0.0175,855,9.5678,0,0,0,775,0 +1767,3.4345,9.5026,0.0189,0.0023,1,2,0.0517,1289,9.5382,0,0,0,1209,0 +1768,5.1154,9.5597,0.0190,0.0022,1,2,0.0453,7568,9.6007,0,0,0,7488,0 +1769,4.4364,9.5016,0.0172,0.0022,1,2,0.0359,921,9.5343,0,0,0,841,0 +1770,3.4180,9.4722,0.0209,0.0025,1,2,0.0477,2048,9.5096,0,0,0,1968,0 +1771,3.4588,9.5157,0.0218,0.0022,1,2,0.0473,870,9.5541,0,0,0,790,0 +1772,5.2478,9.5547,0.0188,0.0022,1,2,0.0469,6109,9.5955,0,0,0,6029,0 +1773,3.4378,9.5077,0.0208,0.0019,1,2,0.0433,888,9.5443,0,0,0,808,0 +1774,3.4497,9.4768,0.0201,0.0018,1,2,0.0418,944,9.5186,0,0,0,864,0 +1775,5.0704,9.5166,0.0190,0.0017,1,2,0.0140,926,9.5566,0,0,0,846,0 +1776,3.4314,9.6209,0.0456,0.0057,1,2,0.1107,8090,9.6914,0,0,0,8010,0 +1777,5.1879,9.5492,0.0180,0.0022,1,2,0.0483,2775,9.5892,0,0,0,2695,0 +1778,3.4350,9.4890,0.0203,0.0016,1,2,0.0435,2082,9.5303,0,0,0,2002,0 +1779,4.3524,9.4957,0.0210,0.0022,1,2,0.0408,914,9.5328,0,0,0,834,0 +1780,3.4227,9.5088,0.0205,0.0020,1,2,0.0439,8355,9.5500,0,0,0,8275,0 +1781,4.5215,9.4894,0.0199,0.0021,1,2,0.0379,1555,9.5310,0,0,0,1475,0 +1782,5.1463,9.4846,0.0179,0.0020,1,2,0.0453,1549,9.5183,0,0,0,1469,0 +1783,3.4245,9.4899,0.0207,0.0018,1,2,0.0414,1926,9.5320,0,0,0,1846,0 +1784,5.0960,9.5266,0.0183,0.0018,1,2,0.0457,8283,9.5657,0,0,0,8203,0 +1785,3.4302,9.4935,0.0195,0.0020,1,2,0.0383,2004,9.5337,0,0,0,1924,0 +1786,5.1802,9.5003,0.0195,0.0019,1,2,0.0378,1621,9.5412,0,0,0,1541,0 +1787,3.4234,9.5645,0.0366,0.0040,1,2,0.0925,1626,9.6218,0,0,0,1546,0 +1788,3.4703,9.5540,0.0215,0.0021,1,2,0.0583,6600,9.5921,0,0,0,6520,0 +1789,3.4078,9.5001,0.0209,0.0023,1,2,0.0460,1608,9.5430,0,0,0,1528,0 +1790,4.3868,9.5123,0.0213,0.0021,1,2,0.0425,1833,9.5554,0,0,0,1753,0 +1791,3.4178,9.5307,0.0185,0.0023,1,2,0.0540,2197,9.5652,0,0,0,2117,0 +1792,4.5967,9.5454,0.0238,0.0021,1,2,0.0555,20022,9.5910,0,0,0,19942,0 +1793,3.4523,9.5010,0.0197,0.0020,1,2,0.0408,2539,9.5421,0,0,0,2459,0 +1794,3.4386,9.4739,0.0198,0.0022,1,2,0.0396,1739,9.5155,0,0,0,1659,0 +1795,4.3027,9.5050,0.0170,0.0024,1,2,0.0422,1786,9.5440,0,0,0,1706,0 +1796,3.4202,9.5672,0.0389,0.0055,1,2,0.0936,7666,9.6297,0,0,0,7586,0 +1797,5.1932,9.4505,0.0214,0.0019,1,2,0.0416,2951,9.4932,0,0,0,2871,0 +1798,3.3933,9.4590,0.0179,0.0019,1,2,0.0399,2018,9.4973,0,0,0,1938,0 +1799,4.3743,9.4703,0.0187,0.0019,1,2,0.0413,2562,9.5100,0,0,0,2482,0 diff --git a/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/receiver_console.txt b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/receiver_console.txt new file mode 100644 index 0000000..75b6b00 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/receiver_console.txt @@ -0,0 +1,37 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":10939059973140072033,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +received_frame=0 size=2560x1440 payload=17137 keyframe=true +received_frame=60 size=2560x1440 payload=57596 keyframe=true +received_frame=120 size=2560x1440 payload=38198 keyframe=true +received_frame=180 size=2560x1440 payload=56676 keyframe=true +received_frame=240 size=2560x1440 payload=36342 keyframe=true +received_frame=300 size=2560x1440 payload=48539 keyframe=true +received_frame=360 size=2560x1440 payload=46273 keyframe=true +received_frame=420 size=2560x1440 payload=55019 keyframe=true +received_frame=480 size=2560x1440 payload=36606 keyframe=true +received_frame=540 size=2560x1440 payload=57075 keyframe=true +received_frame=600 size=2560x1440 payload=40023 keyframe=true +received_frame=660 size=2560x1440 payload=56875 keyframe=true +received_frame=720 size=2560x1440 payload=36121 keyframe=true +received_frame=780 size=2560x1440 payload=48613 keyframe=true +received_frame=840 size=2560x1440 payload=46341 keyframe=true +received_frame=900 size=2560x1440 payload=56048 keyframe=true +received_frame=960 size=2560x1440 payload=37153 keyframe=true +received_frame=1020 size=2560x1440 payload=56928 keyframe=true +received_frame=1080 size=2560x1440 payload=38320 keyframe=true +received_frame=1140 size=2560x1440 payload=57261 keyframe=true +received_frame=1200 size=2560x1440 payload=35863 keyframe=true +received_frame=1260 size=2560x1440 payload=48518 keyframe=true +received_frame=1320 size=2560x1440 payload=46130 keyframe=true +received_frame=1380 size=2560x1440 payload=55208 keyframe=true +receiver_missing_frames=1 before=1407 +receiver_missing_frames=1 before=1437 +received_frame=1442 size=2560x1440 payload=4096 keyframe=false +received_frame=1502 size=2560x1440 payload=2986 keyframe=false +received_frame=1562 size=2560x1440 payload=1982 keyframe=false +received_frame=1622 size=2560x1440 payload=2024 keyframe=false +received_frame=1682 size=2560x1440 payload=3837 keyframe=false +received_frame=1742 size=2560x1440 payload=1361 keyframe=false +client disconnected or failed: connection closed +receiver_frames_total=1798 diff --git a/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/summary.md b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/summary.md new file mode 100644 index 0000000..6eb7886 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/summary.md @@ -0,0 +1,27 @@ +# MBA to 2015 iMac 1440p60 HEVC Wi-Fi Visual Smoke + +- Source: MacBook Air M1, synthetic NV12. +- Receiver: 2015 27-inch iMac macOS receiver, user `oosu`, Wi-Fi `192.168.31.187`. +- Transport: protocol v0 TCP on port `48320` over local Wi-Fi. +- Profile: `2560x1440 @ 60fps`, HEVC, Annex-B, 25Mbps target, 30 seconds. +- Visual status: user reported visible change on the iMac panel during the smoke. Remote `screencapture` was not treated as authoritative because it appeared to capture the desktop/background instead of the receiver display layer/fullscreen Space. + +## Result + +- Sender requested/submitted/encoded: `1800/1800/1800` frames. +- Sender failed frames: `0`. +- Sender send failures: `0`. +- Sender queue drops: `2`. +- Sender p95 encode latency: `9.730 ms`. +- Sender max encode latency: `34.592 ms`. +- Sender p95 send time: `0.096 ms`. +- Sender max send time: `95.444 ms`. +- Receiver frames total: `1798`. +- Receiver missing-frame events: 2 events, 1 frame each, before frames `1407` and `1437`. +- Receiver log captured the primary handshake and frame receive diagnostics. + +## Read + +This is the first MacBook Air -> 2015 iMac macOS receiver visual smoke over Wi-Fi. It proves the conservative 1440p60 HEVC path can encode, send, receive, and visibly change the iMac display. It does not prove smooth display quality because Wi-Fi ICMP jitter remains high, the sender queue dropped 2 frames in 30 seconds, and the receiver observed the same 2 missing frames. + +Keep 5K, tiled 5K, and high-detail fallback work blocked on wired transport. diff --git a/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/visual_confirmation.txt b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/visual_confirmation.txt new file mode 100644 index 0000000..6b3b53a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/visual_confirmation.txt @@ -0,0 +1 @@ +visual_confirmation=user reported visible change on iMac panel during smoke diff --git a/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_console.txt b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_console.txt new file mode 100644 index 0000000..8b6ee70 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=2560x1440 +target_fps=30 +duration_seconds=10 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=15 +data_rate_limit_mbps=15 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=8 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=1 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=16.387 +p95_encode_latency_ms=18.255 +max_encode_latency_ms=62.843 +avg_send_ms=1.193 +p95_send_ms=0.150 +payload_bytes=1183327 +bytes_sent=1191467 +send_target=192.168.31.187:48320 +csv=benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_stats.csv b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_stats.csv new file mode 100644 index 0000000..7b7c349 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/primary_stats.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,62.8429,0.3638,0.0084,1,0,0.1415,87555,63.2415,0,1,0,87475,0 +1,0.0000,46.2905,0.0543,0.0049,1,0,0.0227,1374,46.3737,0,0,0,1294,0 +2,0.0000,15.1115,0.0272,0.0036,1,0,0.0210,4615,15.1511,0,0,0,4535,0 +3,0.0000,21.7924,0.0366,0.0041,1,0,0.0595,20074,25.0283,0,0,0,19994,0 +4,0.0000,17.9132,0.0421,0.0063,1,0,329.2554,44975,17.9870,0,0,0,44895,0 +5,0.0000,18.7929,0.0292,0.0003,1,0,0.0000,0,0.0000,0,0,1,15780,0 +6,0.0000,17.2936,0.0245,0.0005,2,0,0.0192,2951,278.9590,0,0,0,2871,0 +7,0.0000,16.0077,0.0404,0.0008,3,0,0.0071,1779,240.3215,0,0,0,1699,0 +8,0.0000,16.5285,0.0382,0.0003,4,0,0.0033,1707,205.9675,0,0,0,1627,0 +9,0.0000,14.5247,0.0399,0.0009,5,0,0.0056,5894,171.7175,0,0,0,5814,0 +10,0.0000,15.9804,0.0331,0.0003,6,0,0.0030,1652,138.3533,0,0,0,1572,0 +11,0.0000,16.2093,0.0327,0.0005,7,0,0.0398,1486,104.4715,0,0,0,1406,0 +12,0.0000,16.1881,0.0355,0.0003,8,0,0.9426,1250,70.1848,0,0,0,1170,0 +13,0.0000,16.0490,0.0276,0.0017,8,1,0.0075,1147,37.1932,0,0,0,1067,0 +14,0.0000,14.9734,0.0287,0.0028,1,1,0.0182,1137,15.0175,0,0,0,1057,0 +15,0.0000,16.2503,0.0274,0.0035,1,1,0.0638,1067,16.2945,0,0,0,987,0 +16,0.0000,16.1620,0.0304,0.0028,1,1,0.0652,1336,16.2050,0,0,0,1256,0 +17,0.0000,15.9962,0.0260,0.0025,1,1,0.0602,1992,16.0329,0,0,0,1912,0 +18,0.0000,19.3748,0.0371,0.0046,1,1,0.0650,5250,19.4327,0,0,0,5170,0 +19,0.0000,19.8423,0.0268,0.0031,1,1,0.0585,10840,19.9029,0,0,0,10760,0 +20,0.0000,20.2784,0.0457,0.0029,1,1,0.0799,22113,20.3585,0,0,0,22033,0 +21,0.0000,19.1437,0.0474,0.0030,1,1,0.0643,19646,19.2110,0,0,0,19566,0 +22,0.0000,17.7476,0.0297,0.0033,1,1,0.0614,17465,17.7957,0,0,0,17385,0 +23,0.0000,17.1650,0.0285,0.0035,1,1,0.0651,16156,17.2131,0,0,0,16076,0 +24,0.0000,17.1575,0.0347,0.0035,1,1,0.0674,15779,17.2050,0,0,0,15699,0 +25,0.0000,17.4855,0.0668,0.0108,1,1,0.1355,11649,17.5972,0,0,0,11569,0 +26,0.0000,16.6078,0.0777,0.0088,1,1,0.0862,5911,16.7290,0,0,0,5831,0 +27,0.0000,16.6510,0.0663,0.0088,1,1,0.0867,1781,16.7617,0,0,0,1701,0 +28,0.0000,16.5781,0.0744,0.0087,1,1,0.0510,1639,16.6963,0,0,0,1559,0 +29,0.0000,16.7520,0.0830,0.0109,1,1,0.0948,1853,16.8803,0,0,0,1773,0 +30,0.0000,16.8089,0.0727,0.0110,1,1,0.1011,912,17.0292,0,0,0,832,0 +31,0.0000,16.6399,0.0748,0.0106,1,1,0.1219,911,16.7621,0,0,0,831,0 +32,0.0000,15.6623,0.0674,0.0065,1,1,0.0852,892,15.7590,0,0,0,812,0 +33,0.0000,16.6075,0.0576,0.0102,1,1,0.0713,868,16.7014,0,0,0,788,0 +34,0.0000,16.8159,0.0693,0.0078,1,1,0.1974,881,17.0316,0,0,0,801,0 +35,0.0000,16.3307,0.0480,0.0058,1,1,0.0898,914,16.4130,0,0,0,834,0 +36,0.0000,16.0926,0.0537,0.0062,1,1,0.0350,922,16.1815,0,0,0,842,0 +37,0.0000,16.4793,0.0593,0.0078,1,1,0.2059,895,16.6073,0,0,0,815,0 +38,0.0000,16.2522,0.0938,0.0067,1,1,0.1205,908,16.3814,0,0,0,828,0 +39,0.0000,16.2199,0.0643,0.0093,1,1,0.0471,882,16.3185,0,0,0,802,0 +40,0.0000,16.1611,0.0623,0.0075,1,1,0.1092,892,16.2540,0,0,0,812,0 +41,0.0000,16.6664,0.0576,0.0077,1,1,0.1076,884,16.7759,0,0,0,804,0 +42,0.0000,16.1445,0.0328,0.0030,1,1,0.0136,895,16.1980,0,0,0,815,0 +43,0.0000,14.7353,0.0556,0.0080,1,1,0.0217,877,14.8290,0,0,0,797,0 +44,0.0000,18.8772,0.0658,0.0063,1,1,0.0387,925,18.9737,0,0,0,845,0 +45,0.0000,16.7119,0.0604,0.0060,1,1,0.0477,885,16.8246,0,0,0,805,0 +46,0.0000,17.2041,0.0548,0.0049,1,1,0.1158,904,17.3129,0,0,0,824,0 +47,0.0000,15.4435,0.0715,0.0098,1,1,0.1158,879,15.5502,0,0,0,799,0 +48,0.0000,15.2707,0.0381,0.0033,1,1,0.0451,896,15.3617,0,0,0,816,0 +49,0.0000,15.6329,0.0334,0.0042,1,1,0.0262,899,15.7256,0,0,0,819,0 +50,0.0000,15.7577,0.0352,0.0029,1,1,0.0699,878,15.8052,0,0,0,798,0 +51,0.0000,15.7208,0.0309,0.0036,1,1,0.0560,876,15.7644,0,0,0,796,0 +52,0.0000,15.7296,0.0349,0.0065,1,1,0.0187,883,15.7991,0,0,0,803,0 +53,0.0000,15.7155,0.0353,0.0028,1,1,0.0589,881,15.7631,0,0,0,801,0 +54,0.0000,15.6237,0.0320,0.0032,1,1,0.0603,893,15.6675,0,0,0,813,0 +55,0.0000,15.8801,0.0322,0.0025,1,1,0.0196,906,15.9227,0,0,0,826,0 +56,0.0000,15.5616,0.0273,0.0025,1,1,0.0431,892,15.5995,0,0,0,812,0 +57,0.0000,15.6750,0.0268,0.0022,1,1,0.0566,901,15.7122,0,0,0,821,0 +58,0.0000,15.6208,0.0306,0.0026,1,1,0.0273,895,15.6630,0,0,0,815,0 +59,0.0000,15.5650,0.0253,0.0024,1,1,0.0169,881,15.6010,0,0,0,801,0 +60,0.0000,14.4612,0.0875,0.0060,1,1,0.0842,138987,14.5625,0,1,0,138907,0 +61,0.0000,15.6690,0.0337,0.0065,1,1,0.0380,2451,15.7193,0,0,0,2371,0 +62,0.0000,14.7704,0.0279,0.0027,1,1,0.0623,2672,14.8102,0,0,0,2592,0 +63,0.0000,18.2362,0.0273,0.0024,1,1,0.0564,970,18.2817,0,0,0,890,0 +64,0.0000,14.5292,0.0327,0.0025,1,1,0.0622,3546,14.5740,0,0,0,3466,0 +65,0.0000,16.9220,0.0325,0.0023,1,1,0.0232,987,16.9737,0,0,0,907,0 +66,0.0000,16.5015,0.0208,0.0022,1,1,0.0573,877,16.5466,0,0,0,797,0 +67,0.0000,15.7211,0.0290,0.0030,1,1,0.0532,898,15.8076,0,0,0,818,0 +68,0.0000,16.0985,0.0497,0.0066,1,1,0.0965,4642,16.1720,0,0,0,4562,0 +69,0.0000,15.0958,0.0839,0.0067,1,1,0.1062,975,15.2539,0,0,0,895,0 +70,0.0000,15.9835,0.0545,0.0067,1,1,0.1788,920,16.0711,0,0,0,840,0 +71,0.0000,16.1762,0.0527,0.0074,1,1,0.1101,918,16.2623,0,0,0,838,0 +72,0.0000,16.1794,0.0524,0.0053,1,1,0.0900,876,16.2824,0,0,0,796,0 +73,0.0000,14.7550,0.0498,0.0065,1,1,0.0875,889,14.8857,0,0,0,809,0 +74,0.0000,16.3371,0.0478,0.0067,1,1,0.1013,871,16.4127,0,0,0,791,0 +75,0.0000,16.1875,0.0584,0.0069,1,1,0.0815,898,16.2792,0,0,0,818,0 +76,0.0000,16.0350,0.0576,0.0066,1,1,0.0975,876,16.1350,0,0,0,796,0 +77,0.0000,16.1107,0.0565,0.0069,1,1,0.0835,880,16.1997,0,0,0,800,0 +78,0.0000,16.1713,0.0587,0.0085,1,1,0.0822,879,16.2658,0,0,0,799,0 +79,0.0000,16.3362,0.0558,0.0073,1,1,0.0521,1136,16.4252,0,0,0,1056,0 +80,0.0000,16.1295,0.0578,0.0069,1,1,0.1411,882,16.2201,0,0,0,802,0 +81,0.0000,16.2542,0.0553,0.0073,1,1,0.0415,882,16.3426,0,0,0,802,0 +82,0.0000,16.1128,0.0519,0.0061,1,1,0.0896,892,16.1922,0,0,0,812,0 +83,0.0000,16.2210,0.0553,0.0063,1,1,0.1032,883,16.3087,0,0,0,803,0 +84,0.0000,18.9522,0.0458,0.0053,1,1,0.0460,917,19.0317,0,0,0,837,0 +85,0.0000,16.7057,0.0450,0.0071,1,1,0.1236,919,16.7792,0,0,0,839,0 +86,0.0000,16.3305,0.0501,0.0057,1,1,0.0822,925,16.4078,0,0,0,845,0 +87,0.0000,15.3821,0.0597,0.0073,1,1,0.1004,938,15.4721,0,0,0,858,0 +88,0.0000,14.0243,0.0502,0.0063,1,1,0.1291,957,14.1025,0,0,0,877,0 +89,0.0000,15.5997,0.0492,0.0062,1,1,0.1040,997,15.7247,0,0,0,917,0 +90,0.0000,14.8261,0.0507,0.0063,1,1,0.1184,1314,14.9042,0,0,0,1234,0 +91,0.0000,16.1352,0.0539,0.0067,1,1,0.1276,1152,16.2625,0,0,0,1072,0 +92,0.0000,16.1455,0.0478,0.0073,1,1,0.1214,1501,16.3083,0,0,0,1421,0 +93,0.0000,16.1768,0.0606,0.0066,1,1,0.1364,1668,16.2635,0,0,0,1588,0 +94,0.0000,15.7763,0.0287,0.0030,1,1,0.0650,1408,15.8410,0,0,0,1328,0 +95,0.0000,16.0685,0.0091,0.0044,1,1,0.0338,1924,16.1016,0,0,0,1844,0 +96,0.0000,14.9980,0.0367,0.0046,1,1,0.1001,1597,15.0570,0,0,0,1517,0 +97,0.0000,16.2699,0.0404,0.0045,1,1,0.1050,2427,16.3332,0,0,0,2347,0 +98,0.0000,14.2675,0.0378,0.0041,1,1,0.0843,2449,14.3424,0,0,0,2369,0 +99,0.0000,16.0530,0.0400,0.0047,1,1,0.0895,1875,16.1166,0,0,0,1795,0 +100,0.0000,15.0075,0.0115,0.0046,1,1,0.0278,2385,15.0370,0,0,0,2305,0 +101,0.0000,15.7725,0.0270,0.0025,1,1,0.0306,2071,15.8175,0,0,0,1991,0 +102,0.0000,13.9881,0.0200,0.0021,1,1,0.0297,2091,14.0246,0,0,0,2011,0 +103,0.0000,18.1890,0.0527,0.0060,1,1,0.0705,2157,18.2696,0,0,0,2077,0 +104,0.0000,16.0898,0.0503,0.0050,1,1,0.0747,2120,16.1668,0,0,0,2040,0 +105,0.0000,14.9823,0.0544,0.0067,1,1,0.0943,1676,15.0662,0,0,0,1596,0 +106,0.0000,14.7258,0.0459,0.0065,1,1,0.1113,2128,14.7997,0,0,0,2048,0 +107,0.0000,14.4308,0.0488,0.0065,1,1,0.0629,1931,14.5061,0,0,0,1851,0 +108,0.0000,15.5337,0.0452,0.0058,1,1,0.1069,1669,15.6031,0,0,0,1589,0 +109,0.0000,15.9461,0.0485,0.0054,1,1,0.0995,1668,16.0211,0,0,0,1588,0 +110,0.0000,14.7148,0.0478,0.0429,1,1,0.0994,1535,14.8486,0,0,0,1455,0 +111,0.0000,16.0792,0.0511,0.0061,1,1,0.0305,1329,16.1580,0,0,0,1249,0 +112,0.0000,15.8627,0.0488,0.0054,1,1,0.1082,1600,15.9384,0,0,0,1520,0 +113,0.0000,16.0398,0.0302,0.0026,1,1,0.0707,1020,16.0887,0,0,0,940,0 +114,0.0000,14.7748,0.0410,0.0060,1,1,0.0992,973,14.8426,0,0,0,893,0 +115,0.0000,15.2395,0.0422,0.0063,1,1,0.1017,926,15.3090,0,0,0,846,0 +116,0.0000,15.9887,0.0195,0.0028,1,1,0.0570,901,16.0192,0,0,0,821,0 +117,0.0000,15.7985,0.0347,0.0046,1,1,0.0337,900,15.8537,0,0,0,820,0 +118,0.0000,14.7122,0.0400,0.0055,1,1,0.0267,899,14.8090,0,0,0,819,0 +119,0.0000,16.0695,0.0416,0.0052,1,1,0.0404,914,16.1516,0,0,0,834,0 +120,0.0000,14.9550,0.0772,0.0023,1,1,0.1246,147916,15.0483,0,1,0,147836,0 +121,0.0000,16.2724,0.0431,0.0078,1,1,0.0805,1941,16.3442,0,0,0,1861,0 +122,0.0000,16.2232,0.0232,0.0028,1,1,0.0114,1053,16.2644,0,0,0,973,0 +123,0.0000,16.2365,0.0423,0.0059,1,1,0.0478,1929,16.3012,0,0,0,1849,0 +124,0.0000,18.1758,0.0485,0.0056,1,1,0.0872,1002,18.2492,0,0,0,922,0 +125,0.0000,16.7961,0.0503,0.0085,1,1,0.0446,970,16.8713,0,0,0,890,0 +126,0.0000,17.0616,0.0427,0.0047,1,1,0.0735,918,17.1271,0,0,0,838,0 +127,0.0000,17.1987,0.0503,0.0053,1,1,0.0282,898,17.2757,0,0,0,818,0 +128,0.0000,16.8130,0.0437,0.0049,1,1,0.0670,924,16.8804,0,0,0,844,0 +129,0.0000,16.2819,0.0467,0.0055,1,1,0.0924,893,16.3689,0,0,0,813,0 +130,0.0000,14.5678,0.0319,0.0058,1,1,0.0216,900,14.6208,0,0,0,820,0 +131,0.0000,15.0813,0.0426,0.0062,1,1,0.0528,896,15.1505,0,0,0,816,0 +132,0.0000,15.5675,0.0452,0.0055,1,1,0.0979,888,15.6390,0,0,0,808,0 +133,0.0000,15.8900,0.0525,0.0077,1,1,0.0509,877,15.9765,0,0,0,797,0 +134,0.0000,16.0277,0.0432,0.0057,1,1,0.0313,945,16.1045,0,0,0,865,0 +135,0.0000,15.9163,0.0208,0.0023,1,1,0.0527,894,15.9729,0,0,0,814,0 +136,0.0000,15.9603,0.0402,0.0055,1,1,0.0410,892,16.0332,0,0,0,812,0 +137,0.0000,16.0546,0.0426,0.0057,1,1,0.0719,896,16.1305,0,0,0,816,0 +138,0.0000,15.5900,0.0155,0.0047,1,1,0.0366,899,15.6317,0,0,0,819,0 +139,0.0000,16.1156,0.0397,0.0059,1,1,0.0448,888,16.1945,0,0,0,808,0 +140,0.0000,16.1840,0.0522,0.0064,1,1,0.0777,889,16.2690,0,0,0,809,0 +141,0.0000,16.1953,0.0436,0.0065,1,1,0.0230,889,16.2701,0,0,0,809,0 +142,0.0000,16.0265,0.0402,0.0057,1,1,0.0374,896,16.0934,0,0,0,816,0 +143,0.0000,16.0375,0.0410,0.0051,1,1,0.0348,905,16.1040,0,0,0,825,0 +144,0.0000,16.0155,0.0464,0.0069,1,1,0.0878,892,16.0939,0,0,0,812,0 +145,0.0000,17.9223,0.0346,0.0044,1,1,0.1055,897,18.0053,0,0,0,817,0 +146,0.0000,17.8685,0.0449,0.0065,1,1,0.0655,894,17.9443,0,0,0,814,0 +147,0.0000,17.1715,0.0479,0.0068,1,1,0.2027,895,17.3030,0,0,0,815,0 +148,0.0000,14.4633,0.0431,0.0068,1,1,0.0808,894,14.5388,0,0,0,814,0 +149,0.0000,15.3353,0.0432,0.0074,1,1,0.1023,889,15.4106,0,0,0,809,0 +150,0.0000,16.2210,0.0563,0.0081,1,1,0.1381,880,16.3123,0,0,0,800,0 +151,0.0000,15.9730,0.0582,0.0096,1,1,0.1141,886,16.0784,0,0,0,806,0 +152,0.0000,15.9570,0.0596,0.0094,1,1,0.1025,887,16.0977,0,0,0,807,0 +153,0.0000,15.9877,0.0608,0.0073,1,1,0.1074,885,16.0832,0,0,0,805,0 +154,0.0000,15.7856,0.0543,0.0067,1,1,0.1007,884,15.8650,0,0,0,804,0 +155,0.0000,15.9050,0.0540,0.0062,1,1,0.0985,905,15.9875,0,0,0,825,0 +156,0.0000,16.1007,0.0536,0.0062,1,1,0.0355,917,16.1829,0,0,0,837,0 +157,0.0000,16.0869,0.0607,0.0085,1,1,0.1202,890,16.1828,0,0,0,810,0 +158,0.0000,16.1045,0.0622,0.0078,1,1,0.0400,895,16.2015,0,0,0,815,0 +159,0.0000,16.0925,0.0319,0.0023,1,1,0.0640,897,16.1434,0,0,0,817,0 +160,0.0000,16.0327,0.0395,0.0037,1,1,0.0707,892,16.1038,0,0,0,812,0 +161,0.0000,16.1395,0.0476,0.0068,1,1,0.0568,888,16.2190,0,0,0,808,0 +162,0.0000,16.3225,0.0462,0.0069,1,1,0.0900,891,16.4009,0,0,0,811,0 +163,0.0000,17.8272,0.0374,0.0053,1,1,0.0774,896,17.8899,0,0,0,816,0 +164,0.0000,16.7480,0.0420,0.0068,1,1,0.0950,891,16.8183,0,0,0,811,0 +165,0.0000,16.2131,0.0562,0.0083,1,1,0.1081,891,16.3105,0,0,0,811,0 +166,0.0000,14.8180,0.0685,0.0316,1,1,0.1100,884,14.9515,0,0,0,804,0 +167,0.0000,16.2432,0.0470,0.0072,1,1,0.0906,891,16.3389,0,0,0,811,0 +168,0.0000,16.2440,0.0472,0.0081,1,1,0.1133,889,16.3214,0,0,0,809,0 +169,0.0000,16.0675,0.0455,0.0066,1,1,0.0914,890,16.1443,0,0,0,810,0 +170,0.0000,16.0100,0.0465,0.0067,1,1,0.1053,893,16.0884,0,0,0,813,0 +171,0.0000,15.9635,0.0451,0.0063,1,1,0.0338,890,16.0397,0,0,0,810,0 +172,0.0000,16.0331,0.0452,0.0060,1,1,0.1003,899,16.1096,0,0,0,819,0 +173,0.0000,15.8973,0.0460,0.0065,1,1,0.0514,895,15.9746,0,0,0,815,0 +174,0.0000,15.9303,0.0459,0.0067,1,1,0.0907,884,16.0245,0,0,0,804,0 +175,0.0000,15.9443,0.0409,0.0067,1,1,0.0860,894,16.0166,0,0,0,814,0 +176,0.0000,16.0766,0.0413,0.0069,1,1,0.0515,887,16.1494,0,0,0,807,0 +177,0.0000,16.0687,0.0560,0.0074,1,1,0.1296,882,16.1837,0,0,0,802,0 +178,0.0000,15.9788,0.0462,0.0073,1,1,0.1153,895,16.0586,0,0,0,815,0 +179,0.0000,19.2293,0.0489,0.0087,1,1,0.1033,893,19.3069,0,0,0,813,0 +180,0.0000,17.9079,0.1910,0.0055,1,1,0.3440,139220,18.1264,0,1,0,139140,0 +181,0.0000,17.7861,0.0482,0.0075,1,1,0.1108,2085,17.8647,0,0,0,2005,0 +182,0.0000,17.5124,0.0602,0.0072,1,1,0.1534,1609,17.6064,0,0,0,1529,0 +183,0.0000,16.1833,0.0676,0.0084,1,1,0.1470,2487,16.2931,0,0,0,2407,0 +184,0.0000,14.7848,0.0654,0.0097,1,1,0.1613,937,14.8962,0,0,0,857,0 +185,0.0000,15.9235,0.0585,0.0080,1,1,0.1565,3437,16.0165,0,0,0,3357,0 +186,0.0000,15.9715,0.0534,0.0085,1,1,0.1356,983,16.0596,0,0,0,903,0 +187,0.0000,15.9516,0.0588,0.0097,1,1,0.0785,897,16.0436,0,0,0,817,0 +188,0.0000,16.0579,0.0555,0.0082,1,1,0.1499,890,16.1484,0,0,0,810,0 +189,0.0000,14.8243,0.0657,0.0057,1,1,0.0952,4673,14.9132,0,0,0,4593,0 +190,0.0000,16.0073,0.0492,0.0057,1,1,0.1130,961,16.0838,0,0,0,881,0 +191,0.0000,16.1020,0.0505,0.0075,1,1,0.1076,906,16.1867,0,0,0,826,0 +192,0.0000,16.2761,0.0550,0.0067,1,1,0.1174,902,16.3640,0,0,0,822,0 +193,0.0000,16.1146,0.0588,0.0076,1,1,0.1310,885,16.2079,0,0,0,805,0 +194,0.0000,16.3177,0.0690,0.0093,1,1,0.1294,884,16.4305,0,0,0,804,0 +195,0.0000,16.1915,0.0570,0.0070,1,1,0.1255,883,16.2817,0,0,0,803,0 +196,0.0000,16.2889,0.0562,0.0075,1,1,0.1243,907,16.3747,0,0,0,827,0 +197,0.0000,16.1863,0.0582,0.0070,1,1,0.1349,881,16.2781,0,0,0,801,0 +198,0.0000,15.9133,0.0543,0.0075,1,1,0.1388,877,16.0024,0,0,0,797,0 +199,0.0000,15.8935,0.0584,0.0075,1,1,0.1384,889,15.9867,0,0,0,809,0 +200,0.0000,18.6199,0.0586,0.0070,1,1,0.1134,1085,18.7093,0,0,0,1005,0 +201,0.0000,17.7002,0.0648,0.0057,1,1,0.1307,895,17.7948,0,0,0,815,0 +202,0.0000,15.5440,0.0557,0.0077,1,1,0.0417,892,15.6339,0,0,0,812,0 +203,0.0000,15.8542,0.0566,0.0074,1,1,0.2809,895,15.9959,0,0,0,815,0 +204,0.0000,16.1396,0.0529,0.0073,1,1,0.0406,886,16.2263,0,0,0,806,0 +205,0.0000,15.9389,0.0482,0.0067,1,1,0.1442,884,16.0140,0,0,0,804,0 +206,0.0000,14.8146,0.0505,0.0060,1,1,0.1008,932,14.8924,0,0,0,852,0 +207,0.0000,16.0810,0.0873,0.0060,1,1,0.0402,1218,16.1967,0,0,0,1138,0 +208,0.0000,15.9326,0.0505,0.0070,1,1,0.1240,1221,16.0072,0,0,0,1141,0 +209,0.0000,15.1151,0.0476,0.0082,1,1,0.1389,1583,15.1901,0,0,0,1503,0 +210,0.0000,15.0675,0.0702,0.0099,1,1,0.1321,1788,15.1762,0,0,0,1708,0 +211,0.0000,16.1065,0.0524,0.0056,1,1,0.1114,1573,16.2021,0,0,0,1493,0 +212,0.0000,14.2560,0.0627,0.0053,1,1,0.1433,1670,14.3428,0,0,0,1590,0 +213,0.0000,16.3031,0.0652,0.0085,1,1,0.1295,1563,16.3992,0,0,0,1483,0 +214,0.0000,15.0899,0.0542,0.0055,1,1,0.1245,2038,15.1679,0,0,0,1958,0 +215,0.0000,16.2076,0.0454,0.0054,1,1,0.1007,1789,16.2976,0,0,0,1709,0 +216,0.0000,13.8486,0.0355,0.0025,1,1,0.0641,2378,13.9017,0,0,0,2298,0 +217,0.0000,15.7163,0.0334,0.0052,1,1,0.0742,2314,15.7811,0,0,0,2234,0 +218,0.0000,15.5722,0.0429,0.0057,1,1,0.0957,2008,15.6394,0,0,0,1928,0 +219,0.0000,14.9090,0.0458,0.0060,1,1,0.1033,2372,14.9821,0,0,0,2292,0 +220,0.0000,15.6465,0.0650,0.0065,1,1,0.1335,1883,15.7365,0,0,0,1803,0 +221,0.0000,15.1624,0.0464,0.0061,1,1,0.1190,2308,15.2357,0,0,0,2228,0 +222,0.0000,18.1733,0.0489,0.0067,1,1,0.0692,2594,18.2512,0,0,0,2514,0 +223,0.0000,17.8404,0.0462,0.0070,1,1,0.1336,1883,17.9145,0,0,0,1803,0 +224,0.0000,14.4285,0.0470,0.0069,1,1,0.1173,1867,14.5042,0,0,0,1787,0 +225,0.0000,15.8475,0.0467,0.0065,1,1,0.1114,1391,15.9221,0,0,0,1311,0 +226,0.0000,15.1280,0.0510,0.0063,1,1,0.1092,1554,15.2071,0,0,0,1474,0 +227,0.0000,14.0040,0.0305,0.0032,1,1,0.0541,1299,14.0535,0,0,0,1219,0 +228,0.0000,15.8345,0.0470,0.0066,1,1,0.1192,1468,15.9093,0,0,0,1388,0 +229,0.0000,15.7010,0.0486,0.0053,1,1,0.0981,1354,15.7760,0,0,0,1274,0 +230,0.0000,14.6948,0.0498,0.0066,1,1,0.0394,1038,14.7723,0,0,0,958,0 +231,0.0000,14.8293,0.0464,0.0060,1,1,0.1095,934,14.9033,0,0,0,854,0 +232,0.0000,15.8792,0.0516,0.0063,1,1,0.0353,889,15.9809,0,0,0,809,0 +233,0.0000,15.9330,0.0567,0.0078,1,1,0.1118,1083,16.0245,0,0,0,1003,0 +234,0.0000,15.9377,0.0266,0.0030,1,1,0.0505,877,15.9922,0,0,0,797,0 +235,0.0000,14.5696,0.0396,0.0063,1,1,0.0483,892,14.6361,0,0,0,812,0 +236,0.0000,15.9992,0.0115,0.0018,1,1,0.0190,880,16.0304,0,0,0,800,0 +237,0.0000,15.8240,0.0177,0.0019,1,1,0.0335,878,15.8628,0,0,0,798,0 +238,0.0000,15.6015,0.0453,0.0078,1,1,0.0324,889,15.6726,0,0,0,809,0 +239,0.0000,16.0856,0.0437,0.0068,1,1,0.0932,876,16.1600,0,0,0,796,0 +240,0.0000,15.0791,0.1810,0.0057,1,1,0.3012,147813,15.2831,0,1,0,147733,0 +241,0.0000,16.0619,0.0249,0.0024,1,1,0.0555,1913,16.1039,0,0,0,1833,0 +242,0.0000,17.8705,0.0387,0.0056,1,1,0.0747,1046,17.9415,0,0,0,966,0 +243,0.0000,19.1397,0.0487,0.0067,1,1,0.1051,928,19.2168,0,0,0,848,0 +244,0.0000,17.2989,0.0470,0.0069,1,1,0.1038,1916,17.3744,0,0,0,1836,0 +245,0.0000,15.1701,0.0508,0.0062,1,1,0.1114,1018,15.2494,0,0,0,938,0 +246,0.0000,16.1605,0.0483,0.0062,1,1,0.1245,974,16.2375,0,0,0,894,0 +247,0.0000,16.1232,0.0455,0.0058,1,1,0.0945,911,16.2036,0,0,0,831,0 +248,0.0000,14.7945,0.0485,0.0052,1,1,0.0385,884,14.8690,0,0,0,804,0 +249,0.0000,14.3351,0.0483,0.0055,1,1,0.1259,900,14.4106,0,0,0,820,0 +250,0.0000,15.1065,0.0576,0.0067,1,1,0.1154,881,15.1974,0,0,0,801,0 +251,0.0000,15.7742,0.0491,0.0059,1,1,0.1157,894,15.8490,0,0,0,814,0 +252,0.0000,16.0364,0.0514,0.0059,1,1,0.0395,886,16.1152,0,0,0,806,0 +253,0.0000,16.0328,0.0574,0.0077,1,1,0.1277,893,16.1211,0,0,0,813,0 +254,0.0000,15.7482,0.0518,0.0065,1,1,0.1212,880,15.8291,0,0,0,800,0 +255,0.0000,15.7591,0.0500,0.0060,1,1,0.1032,939,15.8361,0,0,0,859,0 +256,0.0000,15.8739,0.0511,0.0060,1,1,0.1006,888,15.9530,0,0,0,808,0 +257,0.0000,16.1856,0.0570,0.0071,1,1,0.1111,886,16.2750,0,0,0,806,0 +258,0.0000,15.9947,0.0561,0.0073,1,1,0.1128,906,16.0837,0,0,0,826,0 +259,0.0000,16.0933,0.0571,0.0075,1,1,0.1363,888,16.1845,0,0,0,808,0 +260,0.0000,16.1765,0.0622,0.0069,1,1,0.1259,919,16.2720,0,0,0,839,0 +261,0.0000,16.2066,0.0559,0.0069,1,1,0.1090,893,16.2950,0,0,0,813,0 +262,0.0000,16.0174,0.0572,0.0065,1,1,0.1105,897,16.1068,0,0,0,817,0 +263,0.0000,16.0225,0.0575,0.0069,1,1,0.1266,895,16.1128,0,0,0,815,0 +264,0.0000,16.0358,0.0498,0.0072,1,1,0.0570,898,16.1177,0,0,0,818,0 +265,0.0000,16.0296,0.0599,0.0075,1,1,0.1536,884,16.1190,0,0,0,804,0 +266,0.0000,15.4777,0.0590,0.0071,1,1,0.0799,893,15.5698,0,0,0,813,0 +267,0.0000,19.3120,0.0430,0.0065,1,1,0.0365,894,19.4085,0,0,0,814,0 +268,0.0000,18.9457,0.0448,0.0069,1,1,0.1045,883,19.0170,0,0,0,803,0 +269,0.0000,16.2304,0.0550,0.0087,1,1,0.0414,889,16.3203,0,0,0,809,0 +270,0.0000,15.8630,0.0689,0.0107,1,1,0.1374,880,15.9774,0,0,0,800,0 +271,0.0000,16.8786,0.0575,0.0079,1,1,0.1350,890,16.9703,0,0,0,810,0 +272,0.0000,15.9873,0.0571,0.0076,1,1,0.1143,891,16.0787,0,0,0,811,0 +273,0.0000,15.9771,0.0575,0.0070,1,1,0.1474,906,16.0993,0,0,0,826,0 +274,0.0000,16.1452,0.0585,0.0068,1,1,0.1095,892,16.2369,0,0,0,812,0 +275,0.0000,16.0354,0.0597,0.0066,1,1,0.1800,897,16.1236,0,0,0,817,0 +276,0.0000,16.0745,0.0585,0.0087,1,1,0.1395,890,16.1697,0,0,0,810,0 +277,0.0000,16.3359,0.0517,0.0055,1,1,0.1005,915,16.4244,0,0,0,835,0 +278,0.0000,15.3748,0.0517,0.0088,1,1,0.0997,887,15.4573,0,0,0,807,0 +279,0.0000,16.2263,0.0522,0.0066,1,1,0.0369,897,16.3065,0,0,0,817,0 +280,0.0000,16.2213,0.0490,0.0064,1,1,0.1081,901,16.2984,0,0,0,821,0 +281,0.0000,16.1329,0.0603,0.0082,1,1,0.1115,879,16.2279,0,0,0,799,0 +282,0.0000,16.1755,0.0580,0.0062,1,1,0.1111,893,16.2666,0,0,0,813,0 +283,0.0000,16.4136,0.0581,0.0075,1,1,0.0420,890,16.5049,0,0,0,810,0 +284,0.0000,16.4595,0.0583,0.0075,1,1,0.1475,890,16.5522,0,0,0,810,0 +285,0.0000,15.9398,0.0590,0.0080,1,1,0.1122,887,16.0300,0,0,0,807,0 +286,0.0000,16.4249,0.0589,0.0080,1,1,0.1348,891,16.5194,0,0,0,811,0 +287,0.0000,16.2349,0.0585,0.0078,1,1,0.1133,891,16.3278,0,0,0,811,0 +288,0.0000,16.3802,0.0522,0.0067,1,1,0.1210,895,16.4610,0,0,0,815,0 +289,0.0000,15.8923,0.0534,0.0068,1,1,0.1190,893,15.9756,0,0,0,813,0 +290,0.0000,17.6288,0.0562,0.0072,1,1,0.1413,904,17.7191,0,0,0,824,0 +291,0.0000,17.7223,0.0580,0.0067,1,1,0.1121,890,17.8135,0,0,0,810,0 +292,0.0000,16.3348,0.0667,0.0085,1,1,0.1315,886,16.4436,0,0,0,806,0 +293,0.0000,14.8944,0.0568,0.0070,1,1,0.1268,889,14.9851,0,0,0,809,0 +294,0.0000,15.7852,0.0615,0.0112,1,1,0.0440,876,15.9508,0,0,0,796,0 +295,0.0000,15.8735,0.0690,0.0100,1,1,0.1810,888,15.9884,0,0,0,808,0 +296,0.0000,15.6032,0.0476,0.0075,1,1,0.0617,881,15.6776,0,0,0,801,0 +297,0.0000,16.0129,0.0562,0.0082,1,1,0.1132,892,16.0960,0,0,0,812,0 +298,0.0000,16.3443,0.0590,0.0060,1,1,0.1140,883,16.4298,0,0,0,803,0 +299,0.0000,15.6001,0.0213,0.0027,1,1,0.0188,892,15.6329,0,0,0,812,0 diff --git a/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/receiver_console.txt b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/receiver_console.txt new file mode 100644 index 0000000..db0cd1c --- /dev/null +++ b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/receiver_console.txt @@ -0,0 +1,11 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":4871017897569073187,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +received_frame=0 size=2560x1440 payload=87475 keyframe=true +receiver_missing_frames=1 before=6 +received_frame=61 size=2560x1440 payload=2371 keyframe=false +received_frame=121 size=2560x1440 payload=1861 keyframe=false +received_frame=181 size=2560x1440 payload=2005 keyframe=false +received_frame=241 size=2560x1440 payload=1833 keyframe=false +client disconnected or failed: connection closed +receiver_frames_total=299 diff --git a/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/summary.md b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/summary.md new file mode 100644 index 0000000..3b1eb2b --- /dev/null +++ b/benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/summary.md @@ -0,0 +1,24 @@ +# MBA to 2015 iMac Live Capture 1440p30 Wi-Fi + +- Source: MacBook Air live ScreenCaptureKit display capture. +- Receiver: 2015 27-inch iMac macOS receiver, `oosu@100.84.32.31`, local Wi-Fi IP `192.168.31.187`. +- Profile: `2560x1440 @ 30fps`, HEVC, Annex-B, 15Mbps target, 10 seconds. +- Transport: protocol v0 TCP on port `48320` over local Wi-Fi. + +## Result + +- Sender requested/submitted/encoded: `300/300/300` frames. +- Sender failed frames: `0`. +- Sender send failures: `0`. +- Sender queue drops: `1`. +- Sender p95 encode latency: about `18.236 ms`. +- Sender max encode latency: `62.843 ms`. +- Receiver frames total: `299`. +- Receiver missing-frame events: one 1-frame gap before frame `6`. + +## Read + +This proves MacBook Air live screen capture can be sent to and received by the +2015 iMac over Wi-Fi. This is a mirror/live-capture display path, not a true +macOS extended desktop. The remaining product gap is a virtual display source +on the MacBook Air. diff --git a/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_console.txt b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_console.txt new file mode 100644 index 0000000..4a832a3 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=2560x1440 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=15 +data_rate_limit_mbps=15 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=8 +frames_requested=90 +frames_submitted=90 +frames_skipped=0 +frames_encoded=90 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=16.780 +p95_encode_latency_ms=18.872 +max_encode_latency_ms=46.083 +avg_send_ms=0.114 +p95_send_ms=0.182 +payload_bytes=410569 +bytes_sent=417769 +send_target=192.168.31.187:48320 +csv=benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_stats.csv b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_stats.csv new file mode 100644 index 0000000..6bffccd --- /dev/null +++ b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/primary_stats.csv @@ -0,0 +1,91 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,46.0829,0.5880,0.0098,1,0,0.0949,95950,46.7115,0,1,0,95870,0 +1,0.0000,35.2472,0.0902,0.0043,1,0,0.0233,1681,35.3824,0,0,0,1601,0 +2,0.0000,14.0222,0.0411,0.0044,1,0,0.0267,4849,14.0762,0,0,0,4769,0 +3,0.0000,14.7050,0.0640,0.0048,1,0,0.0843,22246,14.7890,0,0,0,22166,0 +4,0.0000,13.7937,0.0516,0.0062,1,0,0.1397,44564,13.8624,0,0,0,44484,0 +5,0.0000,16.9485,0.0656,0.0055,1,0,0.1482,15209,17.0303,0,0,0,15129,0 +6,0.0000,16.2092,0.0778,0.0038,1,0,0.1757,3427,16.3074,0,0,0,3347,0 +7,0.0000,14.5800,0.0377,0.0052,1,0,0.0770,1903,14.6334,0,0,0,1823,0 +8,0.0000,14.9830,0.0444,0.0045,1,0,0.1805,1652,15.0560,0,0,0,1572,0 +9,0.0000,13.5610,0.0439,0.0031,1,0,0.0610,1275,13.6423,0,0,0,1195,0 +10,0.0000,13.6493,0.0266,0.0049,1,0,0.0712,1116,13.7034,0,0,0,1036,0 +11,0.0000,13.5648,0.0608,0.0080,1,0,0.1539,1210,13.6609,0,0,0,1130,0 +12,0.0000,15.0991,0.1211,0.0096,1,0,0.1497,1011,15.2603,0,0,0,931,0 +13,0.0000,15.6308,0.0570,0.0073,1,0,0.1093,953,15.7140,0,0,0,873,0 +14,0.0000,14.7275,0.0457,0.0068,1,0,0.1116,1038,14.8173,0,0,0,958,0 +15,0.0000,16.3253,0.0426,0.0073,1,0,0.0930,1071,16.4297,0,0,0,991,0 +16,0.0000,16.6920,0.0556,0.0078,1,0,0.1163,1104,16.8166,0,0,0,1024,0 +17,0.0000,15.8056,0.0310,0.0033,1,0,0.0640,1107,15.8495,0,0,0,1027,0 +18,0.0000,16.0187,0.0193,0.0043,1,0,0.0669,1100,16.0608,0,0,0,1020,0 +19,0.0000,19.6259,0.0481,0.0055,1,0,0.1272,1133,19.6953,0,0,0,1053,0 +20,0.0000,18.2156,0.0507,0.0070,1,0,0.1286,1145,18.2900,0,0,0,1065,0 +21,0.0000,17.3240,0.0525,0.0052,1,0,0.1180,1059,17.4415,0,0,0,979,0 +22,0.0000,16.4592,0.0441,0.0044,1,0,0.1138,1100,16.5239,0,0,0,1020,0 +23,0.0000,15.7014,0.0486,0.0063,1,0,0.1014,1080,15.8232,0,0,0,1000,0 +24,0.0000,14.7845,0.0585,0.0056,1,0,0.1475,1057,14.8644,0,0,0,977,0 +25,0.0000,16.4241,0.0499,0.0067,1,0,0.1216,1022,16.4996,0,0,0,942,0 +26,0.0000,16.3863,0.0452,0.0065,1,0,0.1638,1021,16.4685,0,0,0,941,0 +27,0.0000,16.5628,0.0435,0.0045,1,0,0.0942,894,16.6270,0,0,0,814,0 +28,0.0000,16.7172,0.0444,0.0058,1,0,0.0914,902,16.7842,0,0,0,822,0 +29,0.0000,16.6972,0.0472,0.0066,1,0,0.1288,892,16.7671,0,0,0,812,0 +30,0.0000,17.2845,0.0530,0.0075,1,0,0.1061,898,17.3877,0,0,0,818,0 +31,0.0000,17.0657,0.0568,0.0056,1,0,0.1248,891,17.1938,0,0,0,811,0 +32,0.0000,17.1910,0.0612,0.0066,1,0,0.1207,911,17.3219,0,0,0,831,0 +33,0.0000,16.6676,0.0511,0.0070,1,0,0.1807,886,16.7738,0,0,0,806,0 +34,0.0000,18.8777,0.0827,0.0053,1,0,0.1246,906,18.9855,0,0,0,826,0 +35,0.0000,18.8654,0.0533,0.0191,1,0,0.2101,898,19.0712,0,0,0,818,0 +36,0.0000,15.6854,0.0446,0.0058,1,0,0.0959,900,15.7692,0,0,0,820,0 +37,0.0000,13.9954,0.0513,0.0069,1,0,0.0977,902,14.0823,0,0,0,822,0 +38,0.0000,16.6460,0.0444,0.0068,1,0,0.1011,913,16.7139,0,0,0,833,0 +39,0.0000,15.6096,0.0495,0.0060,1,0,0.1007,888,15.6811,0,0,0,808,0 +40,0.0000,14.8696,0.0470,0.0059,1,0,0.1235,1042,14.9383,0,0,0,962,0 +41,0.0000,14.4276,0.0420,0.0073,1,0,0.0887,907,14.4964,0,0,0,827,0 +42,0.0000,15.9690,0.0555,0.0063,1,0,0.1008,897,16.0720,0,0,0,817,0 +43,0.0000,15.7490,0.0715,0.0046,1,0,0.1042,886,15.8775,0,0,0,806,0 +44,0.0000,16.1503,0.0516,0.0056,1,0,0.1027,904,16.2235,0,0,0,824,0 +45,0.0000,17.7529,0.0548,0.0064,1,0,0.1023,888,17.8316,0,0,0,808,0 +46,0.0000,16.5020,0.0495,0.0062,1,0,0.1553,906,16.5988,0,0,0,826,0 +47,0.0000,16.4706,0.0388,0.0065,1,0,0.1595,881,16.5325,0,0,0,801,0 +48,0.0000,15.7167,0.0433,0.0060,1,0,0.1013,899,15.7860,0,0,0,819,0 +49,0.0000,16.7314,0.0377,0.0065,1,0,0.1279,884,16.7926,0,0,0,804,0 +50,0.0000,16.5636,0.0430,0.0068,1,0,0.0993,911,16.6304,0,0,0,831,0 +51,0.0000,16.4046,0.0370,0.0060,1,0,0.1031,890,16.4640,0,0,0,810,0 +52,0.0000,16.2676,0.0273,0.0043,1,0,0.1130,921,16.3195,0,0,0,841,0 +53,0.0000,16.1756,0.0317,0.0041,1,0,0.0690,895,16.2215,0,0,0,815,0 +54,0.0000,16.0701,0.0292,0.0036,1,0,0.0709,903,16.1119,0,0,0,823,0 +55,0.0000,16.0247,0.0271,0.0038,1,0,0.0607,899,16.0708,0,0,0,819,0 +56,0.0000,16.1563,0.0375,0.0042,1,0,0.0722,914,16.2238,0,0,0,834,0 +57,0.0000,16.2279,0.0277,0.0032,1,0,0.0862,894,16.2697,0,0,0,814,0 +58,0.0000,16.7265,0.0349,0.0031,1,0,0.0775,903,16.7815,0,0,0,823,0 +59,0.0000,19.3127,0.0255,0.0025,1,0,0.0520,897,19.3562,0,0,0,817,0 +60,0.0000,15.4566,0.0894,0.0021,1,0,0.1665,149721,15.5634,0,1,0,149641,0 +61,0.0000,16.1472,0.0385,0.0030,1,0,0.0761,1973,16.2078,0,0,0,1893,0 +62,0.0000,15.8406,0.0296,0.0031,1,0,0.0620,1116,15.8893,0,0,0,1036,0 +63,0.0000,16.3892,0.0425,0.0055,1,0,0.0844,919,16.4824,0,0,0,839,0 +64,0.0000,16.0683,0.0460,0.0044,1,0,0.2545,895,16.2877,0,0,0,815,0 +65,0.0000,16.2631,0.0456,0.0055,1,0,0.0849,883,16.3891,0,0,0,803,0 +66,0.0000,16.4052,0.0379,0.0064,1,0,0.0679,884,16.4645,0,0,0,804,0 +67,0.0000,16.8668,0.0372,0.0046,1,0,0.0887,889,16.9450,0,0,0,809,0 +68,0.0000,16.3227,0.0508,0.0057,1,0,0.1433,878,16.4200,0,0,0,798,0 +69,0.0000,15.7674,0.0621,0.0062,1,0,0.2105,1066,15.9848,0,0,0,986,0 +70,0.0000,14.4183,0.0508,0.0054,1,0,0.0862,883,14.6936,0,0,0,803,0 +71,0.0000,16.2390,0.0462,0.0056,1,0,0.0832,882,16.3070,0,0,0,802,0 +72,0.0000,17.4409,0.0447,0.0060,1,0,0.1929,885,17.5073,0,0,0,805,0 +73,0.0000,16.4888,0.0435,0.0055,1,0,0.0836,882,16.5767,0,0,0,802,0 +74,0.0000,16.6136,0.0470,0.0044,1,0,0.1815,877,16.7383,0,0,0,797,0 +75,0.0000,16.4947,0.0455,0.0057,1,0,0.1742,883,16.6030,0,0,0,803,0 +76,0.0000,18.8077,0.0374,0.0063,1,0,0.1135,888,18.8663,0,0,0,808,0 +77,0.0000,17.9080,0.0553,0.0055,1,0,0.1554,873,18.0204,0,0,0,793,0 +78,0.0000,17.8660,0.0425,0.0060,1,0,0.1097,883,17.9310,0,0,0,803,0 +79,0.0000,14.9987,0.0442,0.0061,1,0,0.1796,877,15.1018,0,0,0,797,0 +80,0.0000,14.1354,0.0473,0.0059,1,0,0.0877,885,14.2042,0,0,0,805,0 +81,0.0000,16.1794,0.0520,0.0057,1,0,0.0885,896,16.2567,0,0,0,816,0 +82,0.0000,17.5676,0.0478,0.0060,1,0,0.0890,896,17.6642,0,0,0,816,0 +83,0.0000,17.5942,0.0523,0.0062,1,0,0.1022,884,17.7515,0,0,0,804,0 +84,0.0000,16.4770,0.0640,0.0069,1,0,0.1822,886,16.5699,0,0,0,806,0 +85,0.0000,16.9377,0.0615,0.0084,1,0,0.1114,872,17.0284,0,0,0,792,0 +86,0.0000,16.6468,0.0520,0.0077,1,0,0.1068,890,16.7249,0,0,0,810,0 +87,0.0000,16.1637,0.0594,0.0083,1,0,0.1693,873,16.2476,0,0,0,793,0 +88,0.0000,16.6291,0.0446,0.0081,1,0,0.1315,884,16.7006,0,0,0,804,0 +89,0.0000,16.3205,0.0359,0.0047,1,0,0.0741,881,16.3803,0,0,0,801,0 diff --git a/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/receiver_console.txt b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/receiver_console.txt new file mode 100644 index 0000000..cd8c8fb --- /dev/null +++ b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/receiver_console.txt @@ -0,0 +1,7 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":18267562090621937114,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +received_frame=0 size=2560x1440 payload=95870 keyframe=true +received_frame=60 size=2560x1440 payload=149641 keyframe=true +client disconnected or failed: connection closed +receiver_frames_total=90 diff --git a/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/summary.md b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/summary.md new file mode 100644 index 0000000..712578f --- /dev/null +++ b/benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/summary.md @@ -0,0 +1,18 @@ +# Live Capture Helper Script Smoke + +- Command: `DURATION=3 scripts/start_mba_to_2015_imac_live_capture.sh`. +- Profile: `2560x1440 @ 30fps`, HEVC, Annex-B, 15Mbps target. + +## Result + +- Sender requested/submitted/encoded: `90/90/90` frames. +- Sender failed frames: `0`. +- Sender send failures: `0`. +- Sender queue drops: `0`. +- Receiver log was copied to the run directory. + +## Read + +The helper script works for the current MacBook Air -> 2015 iMac live-capture +path. Default duration is 3600 seconds for practical use; set `DURATION=...` for +shorter tests. diff --git a/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/primary_console.txt b/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/primary_console.txt new file mode 100644 index 0000000..282ee0a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/primary_console.txt @@ -0,0 +1,28 @@ +error: connect failed for 192.168.31.187:48320 + +ibridge-primary --synthetic --source synthetic-bgra --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv diagnostics.csv [--bitrate-mbps 120] [--no-realtime] [--send-host host --send-port 48320] [--sender-queue-depth 4] [--encoder-id com.apple.videotoolbox.videoencoder.ave.hevc] +ibridge-primary --screen-capture --source screen-capture --resolution 3840x2160 --fps 60 --duration 5 --codec hevc --csv diagnostics.csv +ibridge-primary --list-encoders + +Sources: + --source synthetic-bgra + --source synthetic-nv12 + --source synthetic-static-skip --static-change-every 60 + --source synthetic-nv12-tiled --tile-columns 2 --tile-rows 2 [--tile-reuse-buffers] [--tile-max-inflight-logical-frames 1] [--tile-reset-every-frames 150] + --source screen-capture --capture-display-index 0 --capture-queue-depth 8 + --warmup-frames 20 + +Reference-informed VideoToolbox options: + --disable-low-latency-rate-control + --allow-temporal-compression | --disable-temporal-compression + --allow-frame-reordering | --disable-frame-reordering + --allow-open-gop | --disable-open-gop + --prioritize-speed | --no-prioritize-speed + --more-frames-before-start | --no-more-frames-before-start + --more-frames-after-end | --no-more-frames-after-end + --source-frame-count 180 + --max-frame-delay-count 0 | --no-max-frame-delay-count + --data-rate-limit-mbps 120 [--data-rate-window 1.0] + --payload-format length-prefixed|annex-b + --tile-segment-hints + --tile-reset-stagger-frames 30 diff --git a/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/receiver_console.txt b/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/receiver_console.txt new file mode 100644 index 0000000..a71a970 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/receiver_console.txt @@ -0,0 +1 @@ +iBridge macOS receiver listening on TCP 48320 diff --git a/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_console.txt b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_console.txt new file mode 100644 index 0000000..6ea6f7f --- /dev/null +++ b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=1920x1080 +target_fps=30 +duration_seconds=15 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=8 +data_rate_limit_mbps=8 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=8 +frames_requested=450 +frames_submitted=33 +frames_skipped=417 +frames_encoded=33 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=11.869 +p95_encode_latency_ms=23.348 +max_encode_latency_ms=48.663 +avg_send_ms=0.071 +p95_send_ms=0.138 +payload_bytes=24770 +bytes_sent=27410 +send_target=100.84.32.31:48320 +csv=benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_stats.csv b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_stats.csv new file mode 100644 index 0000000..dfdfedd --- /dev/null +++ b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/primary_stats.csv @@ -0,0 +1,34 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,48.6627,0.2857,0.0069,1,0,0.0828,5889,48.9685,0,1,0,5809,0 +1,0.0000,37.6772,0.0434,0.0028,1,0,0.0230,807,37.7332,0,0,0,727,0 +2,0.0000,9.6998,0.0347,0.0044,1,0,0.0684,2627,9.7474,0,0,0,2547,0 +3,0.0000,8.6581,0.0306,0.0060,1,0,0.1026,1402,8.7239,0,0,0,1322,0 +4,0.0000,9.6456,0.0276,0.0037,1,0,0.0493,794,9.6915,0,0,0,714,0 +5,0.0000,8.8956,0.0221,0.0032,1,0,0.0672,599,8.9347,0,0,0,519,0 +6,0.0000,8.9214,0.0286,0.0045,1,0,0.0564,552,8.9641,0,0,0,472,0 +7,0.0000,8.1605,0.0280,0.0053,1,0,0.0522,564,8.2090,0,0,0,484,0 +8,0.0000,8.6950,0.0268,0.0022,1,0,0.0470,566,8.7468,0,0,0,486,0 +9,0.0000,8.3751,0.0253,0.0047,1,0,0.0740,586,8.4277,0,0,0,506,0 +10,0.0000,8.3837,0.0263,0.0036,1,0,0.0497,552,8.4292,0,0,0,472,0 +11,0.0000,9.2540,0.0346,0.0056,1,0,0.0494,560,9.3109,0,0,0,480,0 +12,0.0000,8.4612,0.0440,0.0071,1,0,0.1158,559,8.5322,0,0,0,479,0 +13,0.0000,8.2950,0.0543,0.0065,1,0,0.1378,552,8.3765,0,0,0,472,0 +14,0.0000,8.7550,0.0525,0.0063,1,0,0.0933,552,8.8331,0,0,0,472,0 +15,0.0000,12.7864,0.0287,0.0029,1,0,0.0468,552,12.8330,0,0,0,472,0 +16,0.0000,9.8403,0.0420,0.0062,1,0,0.0937,552,9.9090,0,0,0,472,0 +17,0.0000,9.8781,0.0364,0.0035,1,0,0.0861,552,9.9423,0,0,0,472,0 +18,0.0000,10.1388,0.0487,0.0031,1,0,0.0671,552,10.2177,0,0,0,472,0 +19,0.0000,11.6952,0.0370,0.0032,1,0,0.0522,552,11.7607,0,0,0,472,0 +20,0.0000,9.6471,0.0467,0.0036,1,0,0.0624,552,9.7096,0,0,0,472,0 +21,0.0000,9.9643,0.0285,0.0020,1,0,0.0606,552,10.0028,0,0,0,472,0 +22,0.0000,9.5716,0.0289,0.0019,1,0,0.0187,552,9.6119,0,0,0,472,0 +23,0.0000,11.8103,0.0408,0.0045,1,0,0.0239,552,11.8741,0,0,0,472,0 +24,0.0000,13.7952,0.0374,0.0053,1,0,0.0665,552,13.8610,0,0,0,472,0 +25,0.0000,9.4642,0.0292,0.0027,1,0,0.0428,552,9.5118,0,0,0,472,0 +26,0.0000,7.6137,0.0315,0.0026,1,0,0.0661,552,7.6677,0,0,0,472,0 +27,0.0000,13.4191,0.0475,0.0060,1,0,0.1433,552,13.5392,0,0,0,472,0 +28,0.0000,12.9522,0.0411,0.0045,1,0,0.0491,552,13.0192,0,0,0,472,0 +29,0.0000,7.5791,0.0408,0.0072,1,0,0.0539,552,7.6836,0,0,0,472,0 +30,0.0000,7.3275,0.0395,0.0027,1,0,0.1393,618,7.4030,0,0,0,538,0 +31,0.0000,10.9091,0.0495,0.0060,1,0,0.0821,668,10.9798,0,0,0,588,0 +32,0.0000,12.7440,0.0482,0.0053,1,0,0.1234,683,12.8189,0,0,0,603,0 diff --git a/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/receiver_console.txt b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/receiver_console.txt new file mode 100644 index 0000000..6090faa --- /dev/null +++ b/benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/receiver_console.txt @@ -0,0 +1,6 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":12225268950727963176,"selected_codec":"hevc","width":1920,"height":1080,"fps":30,"frame_transport":"tcp"} +received_frame=0 size=1920x1080 payload=5809 keyframe=true +client disconnected or failed: connection closed +receiver_frames_total=33 diff --git a/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_console.txt b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_console.txt new file mode 100644 index 0000000..43fda76 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=1920x1080 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=8 +data_rate_limit_mbps=8 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=8 +frames_requested=90 +frames_submitted=28 +frames_skipped=62 +frames_encoded=28 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=13.210 +p95_encode_latency_ms=27.372 +max_encode_latency_ms=50.416 +avg_send_ms=0.084 +p95_send_ms=0.114 +payload_bytes=22230 +bytes_sent=24470 +send_target=100.84.32.31:48320 +csv=benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_stats.csv b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_stats.csv new file mode 100644 index 0000000..923f007 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/primary_stats.csv @@ -0,0 +1,29 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,50.4164,0.3834,0.0084,1,0,0.0702,5955,50.8223,0,1,0,5875,0 +1,0.0000,33.2233,0.0506,0.0039,1,0,0.0525,816,33.2903,0,0,0,736,0 +2,0.0000,7.8689,0.0299,0.0035,1,0,0.0532,2640,7.9090,0,0,0,2560,0 +3,0.0000,8.9476,0.0323,0.0029,1,0,0.0683,1403,8.9921,0,0,0,1323,0 +4,0.0000,11.6891,0.0318,0.0059,1,0,0.0526,811,11.7366,0,0,0,731,0 +5,0.0000,10.8785,0.0273,0.0027,1,0,0.0654,596,10.9248,0,0,0,516,0 +6,0.0000,13.4410,0.0334,0.0055,1,0,0.0502,561,13.5191,0,0,0,481,0 +7,0.0000,13.1439,0.0222,0.0042,1,0,0.0621,562,13.1923,0,0,0,482,0 +8,0.0000,9.7941,0.0529,0.0083,1,0,0.0828,562,9.8926,0,0,0,482,0 +9,0.0000,9.2746,0.0559,0.0090,1,0,0.1007,595,9.3659,0,0,0,515,0 +10,0.0000,12.9232,0.0445,0.0077,1,0,0.0775,553,13.0217,0,0,0,473,0 +11,0.0000,16.5042,0.0559,0.0094,1,0,0.1110,568,16.5959,0,0,0,488,0 +12,0.0000,12.4153,0.0516,0.0090,1,0,0.1174,553,12.5030,0,0,0,473,0 +13,0.0000,15.0262,0.0690,0.0096,1,0,0.0688,553,15.1338,0,0,0,473,0 +14,0.0000,12.4326,0.0418,0.0087,1,0,0.0710,553,12.5038,0,0,0,473,0 +15,0.0000,12.4350,0.0370,0.0086,1,0,0.1072,553,12.5030,0,0,0,473,0 +16,0.0000,13.3775,0.0443,0.0085,1,0,0.1019,553,13.4533,0,0,0,473,0 +17,0.0000,13.0569,0.0450,0.0076,1,0,0.0980,553,13.1284,0,0,0,473,0 +18,0.0000,11.4509,0.0494,0.0088,1,0,0.1132,553,11.5323,0,0,0,473,0 +19,0.0000,8.1674,0.0431,0.0075,1,0,0.0902,553,8.2403,0,0,0,473,0 +20,0.0000,8.1252,0.0462,0.0085,1,0,0.1025,553,8.2010,0,0,0,473,0 +21,0.0000,10.2895,0.0459,0.0080,1,0,0.1099,553,10.3850,0,0,0,473,0 +22,0.0000,10.4357,0.0413,0.0085,1,0,0.1063,553,10.5066,0,0,0,473,0 +23,0.0000,9.5646,0.0403,0.0076,1,0,0.0737,553,9.6425,0,0,0,473,0 +24,0.0000,9.0017,0.0449,0.0086,1,0,0.1139,553,9.0768,0,0,0,473,0 +25,0.0000,8.6415,0.0618,0.0081,1,0,0.0848,553,8.7383,0,0,0,473,0 +26,0.0000,7.8726,0.0629,0.0110,1,0,0.1027,553,7.9806,0,0,0,473,0 +27,0.0000,9.4835,0.0431,0.0034,1,0,0.0540,553,9.5428,0,0,0,473,0 diff --git a/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/receiver_console.txt b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/receiver_console.txt new file mode 100644 index 0000000..69ec293 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/receiver_console.txt @@ -0,0 +1,11 @@ +iBridge macOS receiver listening on TCP 48320 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":12225268950727963176,"selected_codec":"hevc","width":1920,"height":1080,"fps":30,"frame_transport":"tcp"} +received_frame=0 size=1920x1080 payload=5809 keyframe=true +client disconnected or failed: connection closed +receiver_frames_total=33 +primary connected +handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":5190612344430505253,"selected_codec":"hevc","width":1920,"height":1080,"fps":30,"frame_transport":"tcp"} +received_frame=0 size=1920x1080 payload=5875 keyframe=true +client disconnected or failed: connection closed +receiver_frames_total=28 diff --git a/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/summary.md b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/summary.md new file mode 100644 index 0000000..5bc4bef --- /dev/null +++ b/benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/summary.md @@ -0,0 +1,16 @@ +# Virtual 16:9 Default Script Smoke + +- User configured macOS `Virtual 16:9` as an extended display at `1920x1080`. +- Script default now captures display index `1`, sends `1920x1080 @ 30fps`, HEVC, 8Mbps, to the 2015 iMac receiver over Tailscale IP `100.84.32.31`. + +## Result + +- Sender requested/submitted/encoded: `90/28/28` frames over 3 seconds. +- Failed frames: `0`. +- Send failures: `0`. +- Sender queue drops: `0`. +- Receiver log was copied to the run directory. + +## Read + +The virtual extended display path is wired through the helper script. The low submitted-frame count is expected for a mostly static display; move the cursor or windows on the `Virtual 16:9` desktop to force visible updates. diff --git a/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/capture_displays.txt b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/capture_displays.txt new file mode 100644 index 0000000..e8c7c74 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/capture_displays.txt @@ -0,0 +1,3 @@ +capture_display_count=2 +display_index=0 display_id=1 width=1440 height=900 frame=(0.0, 0.0, 1440.0, 900.0) +display_index=1 display_id=3 width=1920 height=1080 frame=(1440.0, 0.0, 1920.0, 1080.0) diff --git a/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_console.txt b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_console.txt new file mode 100644 index 0000000..d12f0e7 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=1920x1080 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=8 +data_rate_limit_mbps=8 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=8 +frames_requested=90 +frames_submitted=27 +frames_skipped=63 +frames_encoded=27 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=10.952 +p95_encode_latency_ms=13.604 +max_encode_latency_ms=43.711 +avg_send_ms=0.073 +p95_send_ms=0.110 +payload_bytes=21705 +bytes_sent=23865 +send_target=100.84.32.31:48320 +csv=benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_stats.csv b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_stats.csv new file mode 100644 index 0000000..789677e --- /dev/null +++ b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/primary_stats.csv @@ -0,0 +1,28 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,43.7113,0.3585,0.0092,1,0,0.1301,5947,44.1054,0,1,0,5867,0 +1,0.0000,9.2868,0.0619,0.0060,1,0,0.0528,814,9.3898,0,0,0,734,0 +2,0.0000,8.8573,0.0412,0.0038,1,0,0.0879,2641,8.9122,0,0,0,2561,0 +3,0.0000,8.2805,0.0409,0.0072,1,0,0.0655,1415,8.3737,0,0,0,1335,0 +4,0.0000,8.9827,0.0346,0.0070,1,0,0.1108,663,9.0349,0,0,0,583,0 +5,0.0000,8.9497,0.0266,0.0033,1,0,0.0509,601,9.0021,0,0,0,521,0 +6,0.0000,8.4374,0.0248,0.0066,1,0,0.0449,649,8.4838,0,0,0,569,0 +7,0.0000,8.3681,0.0333,0.0059,1,0,0.0646,566,8.4198,0,0,0,486,0 +8,0.0000,8.4860,0.0274,0.0041,1,0,0.0730,570,8.5344,0,0,0,490,0 +9,0.0000,9.3558,0.0464,0.0108,1,0,0.0772,583,9.4443,0,0,0,503,0 +10,0.0000,12.4134,0.0409,0.0052,1,0,0.0587,561,12.4924,0,0,0,481,0 +11,0.0000,6.7908,0.0292,0.0033,1,0,0.0388,560,6.8395,0,0,0,480,0 +12,0.0000,10.8993,0.0298,0.0031,1,0,0.0522,553,10.9482,0,0,0,473,0 +13,0.0000,9.3820,0.0362,0.0035,1,0,0.0207,553,9.4469,0,0,0,473,0 +14,0.0000,10.6016,0.0338,0.0037,1,0,0.0243,553,10.6581,0,0,0,473,0 +15,0.0000,9.6348,0.0276,0.0032,1,0,0.0586,553,9.6977,0,0,0,473,0 +16,0.0000,10.9377,0.0474,0.0077,1,0,0.0821,553,11.0126,0,0,0,473,0 +17,0.0000,13.9868,0.0467,0.0070,1,0,0.0912,553,14.0570,0,0,0,473,0 +18,0.0000,12.7107,0.0628,0.0085,1,0,0.1093,553,12.8015,0,0,0,473,0 +19,0.0000,10.8610,0.0402,0.0069,1,0,0.0772,553,10.9481,0,0,0,473,0 +20,0.0000,7.8453,0.0427,0.0069,1,0,0.0951,553,7.9102,0,0,0,473,0 +21,0.0000,9.1112,0.0414,0.0067,1,0,0.0763,553,9.1937,0,0,0,473,0 +22,0.0000,10.7128,0.0439,0.0073,1,0,0.0950,553,11.6251,0,0,0,473,0 +23,0.0000,8.9791,0.0558,0.0135,1,0,0.1041,553,9.1157,0,0,0,473,0 +24,0.0000,7.3163,0.0539,0.0072,1,0,0.1054,553,7.4045,0,0,0,473,0 +25,0.0000,9.1446,0.0562,0.0079,1,0,0.0797,553,9.2276,0,0,0,473,0 +26,0.0000,11.6594,0.0285,0.0045,1,0,0.0456,553,11.7022,0,0,0,473,0 diff --git a/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/receiver_console.txt b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/receiver_console.txt new file mode 100644 index 0000000..a37d090 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/receiver_console.txt @@ -0,0 +1,6 @@ +2026-05-16 18:54:48 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-16 18:54:53 +0000 primary connected +2026-05-16 18:54:53 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":7695179064377875486,"selected_codec":"hevc","width":1920,"height":1080,"fps":30,"frame_transport":"tcp"} +2026-05-16 18:54:54 +0000 received_frame=0 size=1920x1080 payload=5867 keyframe=true +2026-05-16 18:54:57 +0000 client disconnected_or_failed frames=27 error=connection closed +2026-05-16 18:54:57 +0000 receiver_frames_total=27 diff --git a/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/summary.md b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/summary.md new file mode 100644 index 0000000..6229463 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0354_one_command_virtual_display_smoke/summary.md @@ -0,0 +1,22 @@ +# One Command Virtual Display Smoke + +- Command: `DURATION=3 scripts/start_ibridge_mba_2015.sh`. +- Source: MacBook Air `Virtual 16:9` extended display. +- Capture display: `display_index=1`, `1920x1080`, frame origin `(1440, 0)`. +- Receiver: 2015 iMac macOS receiver over Tailscale `100.84.32.31:48320`. +- Profile: HEVC, Annex-B, `1920x1080 @ 30fps`, 8Mbps target. + +## Result + +- Sender requested/submitted/encoded: `90/27/27` frames over 3 seconds. +- Failed frames: `0`. +- Send failures: `0`. +- Sender queue drops: `0`. +- Receiver frames total: `27`. +- Display list confirmed `Virtual 16:9` is capture index `1`. + +## Read + +The one-command startup path works for the current virtual extended display. The +submitted-frame count is low because the virtual desktop was mostly static; +move the cursor or a window on `Virtual 16:9` to force updates. diff --git a/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/capture_displays.txt b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/capture_displays.txt new file mode 100644 index 0000000..bc51945 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/capture_displays.txt @@ -0,0 +1,3 @@ +capture_display_count=2 +display_index=0 display_id=1 width=1512 height=982 frame=(0.0, 0.0, 1512.0, 982.0) +display_index=1 display_id=11 width=1920 height=1080 frame=(1512.0, 0.0, 1920.0, 1080.0) diff --git a/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_console.txt b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_console.txt new file mode 100644 index 0000000..b2ae81a --- /dev/null +++ b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_console.txt @@ -0,0 +1,46 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=2560x1440 +target_fps=30 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=35 +data_rate_limit_mbps=35 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +capture_queue_depth=6 +capture_max_in_flight_frames=1 +frames_requested=90 +frames_submitted=46 +frames_skipped=44 +frames_encoded=46 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=14.754 +p95_encode_latency_ms=17.101 +max_encode_latency_ms=47.041 +avg_send_ms=0.243 +p95_send_ms=0.877 +payload_bytes=274354 +bytes_sent=278034 +send_target=169.254.70.114:48320 +csv=benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_stats.csv b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_stats.csv new file mode 100644 index 0000000..3bce199 --- /dev/null +++ b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/primary_stats.csv @@ -0,0 +1,47 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,47.0411,0.1355,0.0074,1,0,0.0945,85738,47.2347,0,1,0,85658,0 +2,0.0000,32.2047,0.0542,0.0041,1,0,0.1062,12978,32.2811,0,0,0,12898,0 +3,0.0000,12.9625,0.0346,0.0038,1,0,0.0978,38025,13.0102,0,0,0,37945,0 +4,0.0000,12.7499,0.0333,0.0031,1,0,0.1060,38273,12.8187,0,0,0,38193,0 +5,0.0000,12.5747,0.0339,0.0037,1,0,0.0889,7862,12.6216,0,0,0,7782,0 +6,0.0000,12.7520,0.0312,0.0041,1,0,0.0861,3948,12.8195,0,0,0,3868,0 +7,0.0000,12.6015,0.0280,0.0034,1,0,0.1108,3461,12.6558,0,0,0,3381,0 +8,0.0000,12.5845,0.0244,0.0035,1,0,0.0953,3375,12.6469,0,0,0,3295,0 +9,0.0000,12.8026,0.0293,0.0036,1,0,0.0736,2417,12.8545,0,0,0,2337,0 +10,0.0000,12.8285,0.0222,0.0036,1,0,0.0706,2382,12.8694,0,0,0,2302,0 +11,0.0000,12.8910,0.0314,0.0040,1,0,0.0911,2111,12.9551,0,0,0,2031,0 +12,0.0000,12.7804,0.0322,0.0037,1,0,0.0681,2090,12.8472,0,0,0,2010,0 +13,0.0000,13.4926,0.0510,0.0040,1,0,0.0741,2059,13.6072,0,0,0,1979,0 +14,0.0000,13.1330,0.0481,0.0055,1,0,0.1360,2051,13.2178,0,0,0,1971,0 +15,0.0000,13.1097,0.0373,0.0065,1,0,0.0823,2121,13.1793,0,0,0,2041,0 +16,0.0000,12.5101,0.0318,0.0032,1,0,0.0817,2049,12.5706,0,0,0,1969,0 +17,0.0000,12.7275,0.0253,0.0065,1,0,0.0736,2155,12.7895,0,0,0,2075,0 +18,0.0000,12.7085,0.0250,0.0032,1,0,0.0742,2118,12.7611,0,0,0,2038,0 +19,0.0000,12.7524,0.0222,0.0045,1,0,0.0730,2109,12.8051,0,0,0,2029,0 +20,0.0000,12.9403,0.0242,0.0039,1,0,0.0780,2110,12.9845,0,0,0,2030,0 +21,0.0000,13.1507,0.0295,0.0052,1,0,0.0994,2328,13.2285,0,0,0,2248,0 +22,0.0000,13.9145,0.0483,0.0055,1,0,0.1697,2076,14.0075,0,0,0,1996,0 +23,0.0000,13.8924,0.0562,0.0066,1,0,0.1993,2044,13.9827,0,0,0,1964,0 +24,0.0000,14.4697,0.1018,0.0227,1,0,0.5913,2047,14.7074,0,0,0,1967,0 +25,0.0000,15.0651,0.1048,0.0189,1,0,0.7238,2043,15.2172,0,0,0,1963,0 +26,0.0000,12.4227,0.0276,0.0033,1,0,0.0823,2300,12.4702,0,0,0,2220,0 +27,0.0000,12.4482,0.0304,0.0039,1,0,0.0847,2195,12.5095,0,0,0,2115,0 +28,0.0000,12.8712,0.0445,0.0057,1,0,0.1514,2400,12.9433,0,0,0,2320,0 +29,0.0000,13.1560,0.0515,0.0054,1,0,0.1193,2280,13.2513,0,0,0,2200,0 +30,0.0000,13.2287,0.0631,0.0041,1,0,0.1327,2374,13.3311,0,0,0,2294,0 +31,0.0000,13.3895,0.0461,0.0045,1,0,0.1428,2238,13.4788,0,0,0,2158,0 +32,0.0000,13.9006,0.0687,0.0065,1,0,0.1495,2489,14.0105,0,0,0,2409,0 +33,0.0000,14.0180,0.0622,0.0067,1,0,0.2015,2116,14.1273,0,0,0,2036,0 +34,0.0000,14.1066,0.0651,0.0075,1,0,0.2152,2232,14.2218,0,0,0,2152,0 +35,0.0000,15.3716,0.1357,0.0159,1,0,0.3889,2137,15.9327,0,0,0,2057,0 +36,0.0000,14.1038,0.0578,0.0076,1,0,0.2270,2163,14.2323,0,0,0,2083,0 +37,0.0000,13.9525,0.0572,0.0052,1,0,0.1947,2342,14.0419,0,0,0,2262,0 +38,0.0000,14.1461,0.1030,0.0133,1,0,0.5942,2286,14.7106,0,0,0,2206,0 +39,0.0000,14.2933,0.0692,0.0067,1,0,0.1677,2460,14.3944,0,0,0,2380,0 +40,0.0000,14.2921,0.1331,0.0110,1,0,0.4000,2333,15.8773,0,0,0,2253,0 +41,0.0000,17.4479,0.1646,0.0161,1,0,0.3470,2230,17.9187,0,0,0,2150,0 +42,0.0000,14.7209,0.1482,0.0126,1,0,0.9277,2190,14.9959,0,0,0,2110,0 +43,0.0000,14.0938,0.0557,0.0087,1,0,0.2840,2580,14.2235,0,0,0,2500,0 +44,0.0000,15.9032,0.1377,0.0152,1,0,0.9361,2310,16.1959,0,0,0,2230,0 +45,0.0000,14.1125,0.0592,0.0052,1,0,0.1901,2201,14.2133,0,0,0,2121,0 +46,0.0000,16.0596,0.1635,0.0116,1,0,1.7009,2208,16.7045,0,0,0,2128,0 diff --git a/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/receiver_console_tail.txt b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/receiver_console_tail.txt new file mode 100644 index 0000000..a4d387b --- /dev/null +++ b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/receiver_console_tail.txt @@ -0,0 +1,35 @@ +2026-05-16 19:40:46 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-16 19:41:01 +0000 primary connected +2026-05-16 19:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":2243700686414421837,"selected_codec":"hevc","width":3200,"height":1800,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:01 +0000 received_frame=0 size=3200x1800 payload=73471 keyframe=true +2026-05-16 19:41:02 +0000 received_frame=60 size=3200x1800 payload=207989 keyframe=true +2026-05-16 19:41:03 +0000 received_frame=120 size=3200x1800 payload=206046 keyframe=true +2026-05-16 19:41:04 +0000 received_frame=180 size=3200x1800 payload=241529 keyframe=true +2026-05-16 19:41:05 +0000 received_frame=240 size=3200x1800 payload=202717 keyframe=true +2026-05-16 19:41:06 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:16 +0000 primary connected +2026-05-16 19:41:16 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":15425208270754021499,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:16 +0000 received_frame=0 size=2560x1440 payload=19647 keyframe=true +2026-05-16 19:41:17 +0000 received_frame=60 size=2560x1440 payload=63662 keyframe=true +2026-05-16 19:41:18 +0000 received_frame=120 size=2560x1440 payload=46150 keyframe=true +2026-05-16 19:41:19 +0000 received_frame=180 size=2560x1440 payload=59023 keyframe=true +2026-05-16 19:41:20 +0000 received_frame=240 size=2560x1440 payload=44357 keyframe=true +2026-05-16 19:41:21 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:39 +0000 primary connected +2026-05-16 19:41:39 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":680025305771501350,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:39 +0000 received_frame=0 size=2560x1440 payload=25908 keyframe=true +2026-05-16 19:41:41 +0000 received_frame=60 size=2560x1440 payload=61290 keyframe=true +2026-05-16 19:41:43 +0000 received_frame=120 size=2560x1440 payload=44413 keyframe=true +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=150 error=connection closed +2026-05-16 19:41:44 +0000 primary connected +2026-05-16 19:41:44 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":9644177777636521623,"selected_codec":"hevc","width":3200,"height":1800,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:44 +0000 received_frame=0 size=3200x1800 payload=40263 keyframe=true +2026-05-16 19:41:44 +0000 receiver_missing_frames=15 before=60 +2026-05-16 19:41:44 +0000 receiver_missing_frames=59 before=120 +2026-05-16 19:41:44 +0000 receiver_missing_frames=16 before=137 +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=60 error=connection closed +2026-05-17 00:29:55 +0000 primary connected +2026-05-17 00:29:55 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":23464228882682959,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-17 00:29:55 +0000 received_frame=0 size=2560x1440 payload=85658 keyframe=true +2026-05-17 00:29:55 +0000 receiver_missing_frames=1 before=2 +2026-05-17 00:29:59 +0000 client disconnected_or_failed frames=46 error=connection closed diff --git a/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/summary.md b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/summary.md new file mode 100644 index 0000000..faa7e6c --- /dev/null +++ b/benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/summary.md @@ -0,0 +1,51 @@ +# iBridge LAN High Quality Virtual Capture Smoke + +Date: 2026-05-17 + +Receiver: 2017 4K iMac over direct 1GbE, `169.254.70.114:48320`. + +Command profile: + +- `PROFILE=lan-readable` +- `2560x1440 @ 30fps` +- HEVC Annex-B +- 35Mbps +- `capture_max_in_flight_frames=1` +- sender queue depth `12` +- capture queue depth `6` + +Display selection: + +- `capture_display_count=2` +- selected `display_index=1` +- selected display frame `(1512.0, 0.0, 1920.0, 1080.0)` + +Sender result: + +- requested/submitted/encoded: `90/46/46` +- skipped by capture backpressure/static capture cadence: `44` +- failed frames: `0` +- sender dropped frames: `0` +- send failed frames: `0` +- avg encode: `14.754 ms` +- p95 encode: `17.101 ms` +- max encode: `47.041 ms` +- avg send: `0.243 ms` +- p95 send: `0.877 ms` + +Receiver result: + +- protocol handshake received for `2560x1440 @ 30fps` +- receiver logged `46` frames before disconnect +- one 1-frame missing event was logged before frame `2` + +Interpretation: + +- The packaged LAN high-quality command can now auto-select the extended display + and send a live ScreenCaptureKit stream over wired LAN. +- Capture-side backpressure kept the sender from building a stale backlog; this + is a better product default for high-detail profiles than trying to encode + every captured frame. +- This is still a short smoke, not a final quality pass. Next runs should use a + longer active-window/cursor movement scenario and collect direct visual + feedback from the iMac panel. diff --git a/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/capture_displays.txt b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/capture_displays.txt new file mode 100644 index 0000000..26d0705 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/capture_displays.txt @@ -0,0 +1,3 @@ +capture_display_count=2 +display_index=0 display_id=1 width=1800 height=1169 frame=(0.0, 0.0, 1800.0, 1169.0) +display_index=1 display_id=12 width=1920 height=1080 frame=(-1920.0, -157.0, 1920.0, 1080.0) diff --git a/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_console.txt b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_console.txt new file mode 100644 index 0000000..eece32e --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_console.txt @@ -0,0 +1,46 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=3840x2160 +target_fps=60 +duration_seconds=3 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=80 +data_rate_limit_mbps=80 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +capture_queue_depth=6 +capture_max_in_flight_frames=1 +frames_requested=180 +frames_submitted=26 +frames_skipped=154 +frames_encoded=26 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=22.698 +p95_encode_latency_ms=24.576 +max_encode_latency_ms=75.199 +avg_send_ms=0.755 +p95_send_ms=3.080 +payload_bytes=908844 +bytes_sent=910924 +send_target=169.254.70.114:48320 +csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_stats.csv b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_stats.csv new file mode 100644 index 0000000..c40256f --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/primary_stats.csv @@ -0,0 +1,27 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,75.1990,0.1454,0.0074,1,0,1.7376,146583,75.3675,0,1,0,146503,0 +4,0.0000,16.2934,0.0608,0.0041,1,0,0.1074,20247,16.3753,0,0,0,20167,0 +5,0.0000,19.9103,0.1210,0.0033,1,0,0.1464,105642,20.0701,0,0,0,105562,0 +7,0.0000,20.4245,0.0741,0.0052,1,0,0.1446,169854,20.5358,0,0,0,169774,0 +9,0.0000,21.3162,0.0929,0.0030,1,0,0.1793,238814,21.4500,0,0,0,238734,0 +11,0.0000,20.1742,0.0565,0.0041,1,0,0.1659,122262,20.2656,0,0,0,122182,0 +13,0.0000,18.9205,0.0383,0.0053,1,0,0.1015,24972,18.9930,0,0,0,24892,0 +15,0.0000,18.5586,0.0533,0.0052,1,0,0.1293,9943,18.6585,0,0,0,9863,0 +17,0.0000,22.2416,0.0445,0.0050,1,0,0.0984,8719,22.3175,0,0,0,8639,0 +19,0.0000,21.0237,0.0996,0.0081,1,0,0.1122,6130,21.1658,0,0,0,6050,0 +21,0.0000,21.5694,0.0860,0.0090,1,0,0.2025,5781,21.7066,0,0,0,5701,0 +23,0.0000,20.0679,0.0387,0.0066,1,0,0.0569,5214,20.1264,0,0,0,5134,0 +24,0.0000,19.3085,0.0728,0.0056,1,0,0.1742,3573,19.4170,0,0,0,3493,0 +26,0.0000,22.6684,0.3879,0.0169,1,0,2.2150,3397,23.5228,0,0,0,3317,0 +27,0.0000,20.7340,0.1293,0.0163,1,0,1.2316,3294,21.0091,0,0,0,3214,0 +29,0.0000,25.2117,0.0609,0.0104,1,0,0.1283,3311,25.3331,0,0,0,3231,0 +31,0.0000,21.3093,0.2758,0.0135,1,0,2.7164,3241,21.7222,0,0,0,3161,0 +33,0.0000,22.4461,0.0777,0.0088,1,0,0.2461,3321,22.5652,0,0,0,3241,0 +34,0.0000,20.0623,0.1216,0.0202,1,0,3.2664,3278,20.3117,0,0,0,3198,0 +36,0.0000,21.9762,0.1127,0.0127,1,0,0.6340,3279,22.4850,0,0,0,3199,0 +37,0.0000,21.0332,0.1358,0.0169,1,0,1.8473,3269,21.4063,0,0,0,3189,0 +39,0.0000,21.1555,0.1259,0.0197,1,0,0.3782,3546,21.3287,0,0,0,3466,0 +41,0.0000,20.2395,0.0498,0.0067,1,0,0.2040,3529,20.3127,0,0,0,3449,0 +43,0.0000,18.1703,0.0230,0.0073,1,0,0.0577,3278,18.2237,0,0,0,3198,0 +45,0.0000,19.9065,0.0641,0.0082,1,0,3.2010,3224,20.1387,0,0,0,3144,0 +46,0.0000,20.2373,0.0741,0.0092,1,0,0.1417,3223,20.3463,0,0,0,3143,0 diff --git a/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/receiver_console_tail.txt b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/receiver_console_tail.txt new file mode 100644 index 0000000..f73ad89 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/receiver_console_tail.txt @@ -0,0 +1,28 @@ +2026-05-17 01:11:48 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-17 01:11:49 +0000 primary connected +2026-05-17 01:11:49 +0000 client disconnected_or_failed frames=0 error=connection closed while reading handshake +2026-05-17 01:11:49 +0000 receiver_frames_total=0 +2026-05-17 01:12:56 +0000 primary connected +2026-05-17 01:12:56 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":824075004777834264,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 01:12:56 +0000 received_frame=0 size=3840x2160 payload=146503 keyframe=true +2026-05-17 01:12:56 +0000 receiver_missing_frames=3 before=4 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=7 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=9 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=11 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=13 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=15 +2026-05-17 01:12:56 +0000 receiver_missing_frames=1 before=17 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=19 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=21 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=23 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=26 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=29 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=31 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=33 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=36 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=39 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=41 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=43 +2026-05-17 01:12:57 +0000 receiver_missing_frames=1 before=45 +2026-05-17 01:12:59 +0000 client disconnected_or_failed frames=26 error=connection closed +2026-05-17 01:12:59 +0000 receiver_frames_total=26 diff --git a/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/summary.md b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/summary.md new file mode 100644 index 0000000..328bf45 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_immediate_path_probe/summary.md @@ -0,0 +1,47 @@ +# 4K60 Immediate Connection Probe + +Date: 2026-05-17 + +Goal: verify that the MacBook Pro can immediately connect to the 2017 iMac +receiver with the 4K60 profile after deploying the latest Intel receiver binary. + +Receiver: + +- Host: `169.254.70.114` +- Port: `48320` +- Binary: `~/ibridge-remote/latest/ibridge-receiver-macos` +- Mode: fullscreen, status overlay hidden + +Source display: + +- BetterDisplay `Virtual 16:9` +- System physical mode: `3840x2160 @ 60Hz` +- HiDPI UI mode: `1920x1080` +- ScreenCaptureKit display: `display_index=1`, `width=1920`, `height=1080` + +Sender profile: + +- `PROFILE=lan-4k` +- requested stream resolution: `3840x2160` +- target fps: `60` +- codec: HEVC +- bitrate: `80Mbps` +- capture max in-flight frames: `1` + +Result: + +- requested/submitted/encoded: `180/26/26` +- failed frames: `0` +- sender dropped frames: `0` +- send failed frames: `0` +- avg encode: `22.698 ms` +- p95 encode: `24.576 ms` +- avg send: `0.755 ms` +- p95 send: `3.080 ms` + +Interpretation: + +- The path is immediately connectable now: latest receiver is running on the + 2017 iMac and the sender can attach to it over direct LAN. +- This is not a full quality pass. It verifies connection and 4K60-profile + stream setup, while active-window/readability testing remains pending. diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/capture_displays.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/capture_displays.txt new file mode 100644 index 0000000..f6b2607 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/capture_displays.txt @@ -0,0 +1,4 @@ +capture_display_count=3 +display_index=0 display_id=12 width=3840 height=2160 frame=(2472.0, 0.0, 3840.0, 2160.0) +display_index=1 display_id=1 width=1512 height=982 frame=(0.0, 0.0, 1512.0, 982.0) +display_index=2 display_id=11 width=960 height=540 frame=(1512.0, 0.0, 960.0, 540.0) diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_console.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_console.txt new file mode 100644 index 0000000..aa5d1d3 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_console.txt @@ -0,0 +1,46 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=3840x2160 +target_fps=60 +duration_seconds=8 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=80 +data_rate_limit_mbps=80 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +capture_queue_depth=6 +capture_max_in_flight_frames=1 +frames_requested=480 +frames_submitted=74 +frames_skipped=406 +frames_encoded=74 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=16.628 +p95_encode_latency_ms=19.090 +max_encode_latency_ms=52.020 +avg_send_ms=0.494 +p95_send_ms=1.801 +payload_bytes=586056 +bytes_sent=591976 +send_target=169.254.70.114:48320 +csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_stats.csv b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_stats.csv new file mode 100644 index 0000000..7fe136c --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/primary_stats.csv @@ -0,0 +1,75 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,52.0200,0.1186,0.0089,1,0,0.1136,81158,52.1715,0,1,0,81078,0 +2,0.0000,16.9934,0.0517,0.0045,1,0,0.0840,9698,17.0660,0,0,0,9618,0 +3,0.0000,19.9803,0.0431,0.0040,1,0,0.0886,29502,20.0428,0,0,0,29422,0 +5,0.0000,15.1523,0.0474,0.0065,1,0,0.0983,46996,15.2219,0,0,0,46916,0 +6,0.0000,14.9188,0.0390,0.0035,1,0,0.0959,52713,14.9863,0,0,0,52633,0 +7,0.0000,14.4767,0.0267,0.0044,1,0,0.0741,5785,14.5355,0,0,0,5705,0 +8,0.0000,14.4230,0.0309,0.0038,1,0,0.0706,3268,14.4891,0,0,0,3188,0 +9,0.0000,14.7167,0.0294,0.0040,1,0,0.0820,2860,14.7836,0,0,0,2780,0 +10,0.0000,14.7374,0.0277,0.0040,1,0,0.0749,2819,14.7939,0,0,0,2739,0 +11,0.0000,14.5853,0.0352,0.0073,1,0,0.0708,2254,14.6648,0,0,0,2174,0 +12,0.0000,14.7357,0.0344,0.0038,1,0,0.0809,2176,14.7916,0,0,0,2096,0 +13,0.0000,15.0224,0.0250,0.0038,1,0,0.0843,2116,15.0705,0,0,0,2036,0 +14,0.0000,14.8315,0.0315,0.0043,1,0,0.0916,2117,14.8864,0,0,0,2037,0 +15,0.0000,14.8527,0.0324,0.0046,1,0,0.0870,2091,14.9102,0,0,0,2011,0 +16,0.0000,15.7410,0.0418,0.0057,1,0,0.1675,2082,15.8130,0,0,0,2002,0 +17,0.0000,15.5994,0.0550,0.0108,1,0,0.1388,2081,15.6915,0,0,0,2001,0 +18,0.0000,15.5257,0.0540,0.0093,1,0,0.1818,2082,15.6329,0,0,0,2002,0 +19,0.0000,15.7970,0.0570,0.0089,1,0,0.2521,2066,15.8886,0,0,0,1986,0 +20,0.0000,19.9566,0.1471,0.0127,1,0,1.0203,2082,21.0083,0,0,0,2002,0 +21,0.0000,17.5840,0.0579,0.0093,1,0,0.0565,2086,17.6812,0,0,0,2006,0 +22,0.0000,15.8352,0.0521,0.0143,1,0,0.0761,2051,15.9311,0,0,0,1971,0 +24,0.0000,17.9190,0.0573,0.0140,1,0,0.0527,2087,18.0086,0,0,0,2007,0 +25,0.0000,17.3562,0.0695,0.0095,1,0,0.0731,2076,17.4651,0,0,0,1996,0 +26,0.0000,16.8309,0.0902,0.0163,1,0,0.5038,2075,17.2787,0,0,0,1995,0 +27,0.0000,15.2122,0.1237,0.0158,1,0,0.9552,2045,16.3826,0,0,0,1965,0 +28,0.0000,18.9603,0.2075,0.0132,1,0,0.2004,2064,19.2223,0,0,0,1984,0 +29,0.0000,14.9213,0.0973,0.0256,1,0,0.6145,2049,15.1650,0,0,0,1969,0 +30,0.0000,19.3302,0.6153,0.0159,1,0,0.2318,2066,20.0815,0,0,0,1986,0 +32,0.0000,15.4830,0.0675,0.0085,1,0,0.1892,2063,15.6007,0,0,0,1983,0 +34,0.0000,15.8780,0.1636,0.0170,1,0,3.0557,2050,16.7378,0,0,0,1970,0 +35,0.0000,15.6412,0.1752,0.0175,1,0,2.1529,2051,16.8207,0,0,0,1971,0 +36,0.0000,16.7132,0.1243,0.0177,1,0,0.3997,2044,16.9604,0,0,0,1964,0 +38,0.0000,17.5870,0.1590,0.0155,1,0,0.6338,2071,18.5497,0,0,0,1991,0 +40,0.0000,17.7540,0.1497,0.0127,1,0,9.2562,2044,18.0360,0,0,0,1964,0 +41,0.0000,16.6339,0.0480,0.0047,1,0,0.1625,2040,16.7221,0,0,0,1960,0 +43,0.0000,18.0360,0.0572,0.0078,1,0,0.2183,2057,18.1408,0,0,0,1977,0 +45,0.0000,15.5364,0.0575,0.0098,1,0,0.1663,2040,15.6343,0,0,0,1960,0 +46,0.0000,15.4828,0.0509,0.0076,1,0,0.1629,2040,15.5704,0,0,0,1960,0 +47,0.0000,15.8746,0.0643,0.0070,1,0,0.1694,2063,15.9861,0,0,0,1983,0 +48,0.0000,16.7471,0.0386,0.0049,1,0,0.0970,2638,16.8227,0,0,0,2558,0 +50,0.0000,14.5928,0.0320,0.0044,1,0,0.0878,2157,14.6483,0,0,0,2077,0 +51,0.0000,15.4655,0.0357,0.0045,1,0,0.1082,2130,15.5252,0,0,0,2050,0 +52,0.0000,15.3409,0.0313,0.0046,1,0,0.1210,2055,15.4150,0,0,0,1975,0 +53,0.0000,16.1038,0.0663,0.0067,1,0,0.2090,2052,16.2147,0,0,0,1972,0 +54,0.0000,15.7054,0.0366,0.0064,1,0,0.1514,2204,15.7941,0,0,0,2124,0 +55,0.0000,17.3764,0.0804,0.0118,1,0,0.1978,2296,19.3512,0,0,0,2216,0 +56,0.0000,14.9859,0.0586,0.0062,1,0,0.2075,2447,15.0706,0,0,0,2367,0 +58,0.0000,16.3067,0.1481,0.0216,1,0,0.4586,2616,16.5074,0,0,0,2536,0 +59,0.0000,15.7205,0.1075,0.0112,1,0,0.3755,2754,15.8712,0,0,0,2674,0 +60,0.0000,16.6165,0.0920,0.0080,1,0,4.6615,2931,17.6445,0,0,0,2851,0 +61,0.0000,15.6505,0.1490,0.0149,1,0,0.3434,2840,15.9323,0,0,0,2760,0 +63,0.0000,17.3654,0.0628,0.0106,1,0,0.1454,2531,17.4613,0,0,0,2451,0 +64,0.0000,15.3892,0.0464,0.0070,1,0,0.1672,2510,15.4750,0,0,0,2430,0 +65,0.0000,16.0370,0.0417,0.0047,1,0,0.1681,2969,16.1037,0,0,0,2889,0 +66,0.0000,16.0200,0.1279,0.0147,1,0,0.3928,3004,16.2510,0,0,0,2924,0 +67,0.0000,16.0808,0.0564,0.0079,1,0,0.2375,2775,16.1706,0,0,0,2695,0 +68,0.0000,16.6930,0.0390,0.0064,1,0,0.1263,2483,16.7673,0,0,0,2403,0 +69,0.0000,18.3515,0.0498,0.0047,1,0,0.1879,2381,18.4426,0,0,0,2301,0 +70,0.0000,14.7412,0.0393,0.0043,1,0,0.1977,2317,14.8348,0,0,0,2237,0 +71,0.0000,15.5159,0.0362,0.0085,1,0,0.1725,2240,15.5797,0,0,0,2160,0 +72,0.0000,14.9114,0.2545,0.0115,1,0,0.4978,182806,15.2157,0,1,0,182726,0 +73,0.0000,15.7363,0.0569,0.0073,1,0,0.1752,3733,15.8178,0,0,0,3653,0 +74,0.0000,15.7425,0.1454,0.0159,1,0,0.3186,2279,15.9882,0,0,0,2199,0 +75,0.0000,18.9512,0.0631,0.0098,1,0,0.0929,2196,19.0522,0,0,0,2116,0 +76,0.0000,15.1698,0.0622,0.0093,1,0,0.1348,2206,15.2649,0,0,0,2126,0 +78,0.0000,17.1164,0.1394,0.0115,1,0,1.6121,2026,17.4840,0,0,0,1946,0 +79,0.0000,16.4698,0.1061,0.0122,1,0,0.6161,2017,16.6143,0,0,0,1937,0 +81,0.0000,17.0319,0.1353,0.0213,1,0,1.0375,2012,17.5306,0,0,0,1932,0 +82,0.0000,15.2914,0.0712,0.0065,1,0,0.1348,1951,15.3885,0,0,0,1871,0 +83,0.0000,17.1460,0.0504,0.0063,1,0,0.1751,1947,17.2424,0,0,0,1867,0 +84,0.0000,15.0777,0.0454,0.0067,1,0,0.1958,2044,15.1638,0,0,0,1964,0 +85,0.0000,15.6599,0.0625,0.0065,1,0,0.1692,1961,15.7634,0,0,0,1881,0 +86,0.0000,15.5542,0.0537,0.0057,1,0,0.1395,1942,15.6492,0,0,0,1862,0 +87,0.0000,15.1939,0.0448,0.0036,1,0,0.1190,33418,15.2736,0,0,0,33338,0 diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/receiver_console_tail.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/receiver_console_tail.txt new file mode 100644 index 0000000..2ad4fe6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/receiver_console_tail.txt @@ -0,0 +1,107 @@ +2026-05-16 19:40:46 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-16 19:41:01 +0000 primary connected +2026-05-16 19:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":2243700686414421837,"selected_codec":"hevc","width":3200,"height":1800,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:01 +0000 received_frame=0 size=3200x1800 payload=73471 keyframe=true +2026-05-16 19:41:02 +0000 received_frame=60 size=3200x1800 payload=207989 keyframe=true +2026-05-16 19:41:03 +0000 received_frame=120 size=3200x1800 payload=206046 keyframe=true +2026-05-16 19:41:04 +0000 received_frame=180 size=3200x1800 payload=241529 keyframe=true +2026-05-16 19:41:05 +0000 received_frame=240 size=3200x1800 payload=202717 keyframe=true +2026-05-16 19:41:06 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:16 +0000 primary connected +2026-05-16 19:41:16 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":15425208270754021499,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:16 +0000 received_frame=0 size=2560x1440 payload=19647 keyframe=true +2026-05-16 19:41:17 +0000 received_frame=60 size=2560x1440 payload=63662 keyframe=true +2026-05-16 19:41:18 +0000 received_frame=120 size=2560x1440 payload=46150 keyframe=true +2026-05-16 19:41:19 +0000 received_frame=180 size=2560x1440 payload=59023 keyframe=true +2026-05-16 19:41:20 +0000 received_frame=240 size=2560x1440 payload=44357 keyframe=true +2026-05-16 19:41:21 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:39 +0000 primary connected +2026-05-16 19:41:39 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":680025305771501350,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:39 +0000 received_frame=0 size=2560x1440 payload=25908 keyframe=true +2026-05-16 19:41:41 +0000 received_frame=60 size=2560x1440 payload=61290 keyframe=true +2026-05-16 19:41:43 +0000 received_frame=120 size=2560x1440 payload=44413 keyframe=true +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=150 error=connection closed +2026-05-16 19:41:44 +0000 primary connected +2026-05-16 19:41:44 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":9644177777636521623,"selected_codec":"hevc","width":3200,"height":1800,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:44 +0000 received_frame=0 size=3200x1800 payload=40263 keyframe=true +2026-05-16 19:41:44 +0000 receiver_missing_frames=15 before=60 +2026-05-16 19:41:44 +0000 receiver_missing_frames=59 before=120 +2026-05-16 19:41:44 +0000 receiver_missing_frames=16 before=137 +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=60 error=connection closed +2026-05-17 00:29:55 +0000 primary connected +2026-05-17 00:29:55 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":23464228882682959,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-17 00:29:55 +0000 received_frame=0 size=2560x1440 payload=85658 keyframe=true +2026-05-17 00:29:55 +0000 receiver_missing_frames=1 before=2 +2026-05-17 00:29:59 +0000 client disconnected_or_failed frames=46 error=connection closed +2026-05-17 00:37:31 +0000 primary connected +2026-05-17 00:37:31 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":3490576734643790719,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:37:31 +0000 received_frame=0 size=3840x2160 payload=82157 keyframe=true +2026-05-17 00:37:31 +0000 receiver_missing_frames=3 before=4 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=7 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=9 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=11 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=13 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=15 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=17 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=19 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=21 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=23 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=25 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=27 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=29 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=31 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=33 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=36 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=38 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=40 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=42 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=44 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=46 +2026-05-17 00:37:42 +0000 client disconnected_or_failed frames=25 error=connection closed +2026-05-17 00:41:01 +0000 primary connected +2026-05-17 00:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":10341829558430185376,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:41:02 +0000 received_frame=0 size=3840x2160 payload=82131 keyframe=true +2026-05-17 00:41:02 +0000 receiver_missing_frames=3 before=4 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=7 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=9 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=11 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=13 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=15 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=17 +2026-05-17 00:41:02 +0000 receiver_missing_frames=3 before=22 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=24 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=26 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=28 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=30 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=32 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=34 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=36 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=39 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=41 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=43 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=45 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=47 +2026-05-17 00:41:12 +0000 client disconnected_or_failed frames=24 error=connection closed +2026-05-17 00:42:07 +0000 primary connected +2026-05-17 00:42:07 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":544408023131623550,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:42:07 +0000 received_frame=0 size=3840x2160 payload=81078 keyframe=true +2026-05-17 00:42:07 +0000 receiver_missing_frames=1 before=2 +2026-05-17 00:42:07 +0000 receiver_missing_frames=1 before=5 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=24 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=32 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=34 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=38 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=40 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=43 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=45 +2026-05-17 00:42:14 +0000 receiver_missing_frames=1 before=50 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=58 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=63 +2026-05-17 00:42:15 +0000 received_frame=72 size=3840x2160 payload=182726 keyframe=true +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=78 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=81 +2026-05-17 00:42:16 +0000 client disconnected_or_failed frames=74 error=connection closed +2026-05-17 00:42:29 +0000 primary connected +2026-05-17 00:42:29 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":6911361459170623421,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:42:29 +0000 received_frame=0 size=3840x2160 payload=82077 keyframe=true +2026-05-17 00:42:37 +0000 client disconnected_or_failed frames=48 error=connection closed diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_comparison.md b/benchmarks/runs/2026-05-17_4k60_virtual_motion_comparison.md new file mode 100644 index 0000000..c6c70bf --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_comparison.md @@ -0,0 +1,16 @@ +# 4K60 Virtual Motion Latency Comparison + +Date: 2026-05-17 + +Profile: `3840x2160@60`, HEVC, 80Mbps, direct 1GbE to `169.254.70.114:48320`. + +| Case | capture max in-flight | submitted | skipped | encoded | failed | sender drops | send failures | avg encode ms | p95 encode ms | max encode ms | avg send ms | p95 send ms | +| --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | +| backpressure1 | 1 | 74 | 406 | 74 | 0 | 0 | 0 | 16.628 | 19.090 | 52.020 | 0.494 | 1.801 | +| no_backpressure | 0 | 48 | 432 | 48 | 0 | 0 | 0 | 20.378 | 52.175 | 64.523 | 0.382 | 1.866 | + +Interpretation: +- 4K60 over the current wired path sends without transport failures in both cases. +- Capture-side backpressure materially reduces tail encode latency in this run: p95 encode dropped from `52.175 ms` to `19.090 ms`. +- This confirms the app should prefer recency over completeness for 4K60. It is still not a final full-60fps quality pass because ScreenCaptureKit did not submit all 480 requested frames during this short motion smoke. +- Next product work should add a proper in-app motion/readability test scene and then move transport from TCP correctness mode toward a bounded UDP/RTP-style path. diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/capture_displays.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/capture_displays.txt new file mode 100644 index 0000000..f6b2607 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/capture_displays.txt @@ -0,0 +1,4 @@ +capture_display_count=3 +display_index=0 display_id=12 width=3840 height=2160 frame=(2472.0, 0.0, 3840.0, 2160.0) +display_index=1 display_id=1 width=1512 height=982 frame=(0.0, 0.0, 1512.0, 982.0) +display_index=2 display_id=11 width=960 height=540 frame=(1512.0, 0.0, 960.0, 540.0) diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_console.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_console.txt new file mode 100644 index 0000000..fba9481 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_console.txt @@ -0,0 +1,46 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=screen-capture +source=screen-capture +resolution=3840x2160 +target_fps=60 +duration_seconds=8 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=80 +data_rate_limit_mbps=80 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +capture_queue_depth=6 +capture_max_in_flight_frames=0 +frames_requested=480 +frames_submitted=48 +frames_skipped=432 +frames_encoded=48 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=0.000 +avg_encode_latency_ms=20.378 +p95_encode_latency_ms=52.175 +max_encode_latency_ms=64.523 +avg_send_ms=0.382 +p95_send_ms=1.866 +payload_bytes=309357 +bytes_sent=313197 +send_target=169.254.70.114:48320 +csv=/Users/gabriel/Development/iBridge/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_stats.csv b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_stats.csv new file mode 100644 index 0000000..c4ed9c7 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/primary_stats.csv @@ -0,0 +1,49 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,64.5232,0.1300,0.0107,1,0,0.1323,82157,64.6820,0,1,0,82077,0 +1,0.0000,60.2229,0.0530,0.0031,1,0,0.0859,9902,60.3004,0,0,0,9822,0 +2,0.0000,54.9896,0.0422,0.0037,1,0,0.0909,25997,55.0689,0,0,0,25917,0 +3,0.0000,46.9469,0.0336,0.0034,1,0,0.0968,54205,47.0189,0,0,0,54125,0 +4,0.0000,40.4459,0.0330,0.0040,1,0,0.0897,52250,40.5074,0,0,0,52170,0 +5,0.0000,31.9532,0.0245,0.0032,1,0,0.0531,5880,31.9965,0,0,0,5800,0 +6,0.0000,23.6366,0.0317,0.0035,1,0,0.0505,3340,23.7063,0,0,0,3260,0 +7,0.0000,16.4802,0.0205,0.0025,1,0,0.0657,2964,16.5179,0,0,0,2884,0 +8,0.0000,14.6364,0.0227,0.0036,1,0,0.0671,2938,14.6784,0,0,0,2858,0 +9,0.0000,14.3108,0.0245,0.0055,1,0,0.0655,2353,14.3563,0,0,0,2273,0 +10,0.0000,14.2222,0.0359,0.0034,1,0,0.0867,2241,14.2738,0,0,0,2161,0 +11,0.0000,13.8752,0.0346,0.0081,1,0,0.0949,1842,13.9477,0,0,0,1762,0 +12,0.0000,14.7154,0.0259,0.0035,1,0,0.0899,1799,14.7621,0,0,0,1719,0 +13,0.0000,13.6782,0.0281,0.0045,1,0,0.0939,1799,13.7295,0,0,0,1719,0 +14,0.0000,15.2785,0.0448,0.0055,1,0,0.1552,1826,15.3520,0,0,0,1746,0 +15,0.0000,15.1407,0.0429,0.0076,1,0,0.1600,1916,15.2296,0,0,0,1836,0 +16,0.0000,15.1970,0.0646,0.0091,1,0,0.1556,1825,15.3050,0,0,0,1745,0 +17,0.0000,15.8947,0.0438,0.0063,1,0,0.1520,2028,15.9924,0,0,0,1948,0 +18,0.0000,15.8240,0.0464,0.0047,1,0,0.1276,1936,15.9180,0,0,0,1856,0 +19,0.0000,16.2952,0.0804,0.0111,1,0,0.9069,1932,16.5719,0,0,0,1852,0 +20,0.0000,22.7605,0.0778,0.0110,1,0,0.1795,1914,22.8782,0,0,0,1834,0 +21,0.0000,17.2086,0.0438,0.0050,1,0,0.1165,2166,17.2894,0,0,0,2086,0 +22,0.0000,19.9044,0.0330,0.0062,1,0,0.1123,1770,19.9835,0,0,0,1690,0 +23,0.0000,15.8145,0.0793,0.0335,1,0,2.1177,1771,16.4962,0,0,0,1691,0 +24,0.0000,17.6020,0.0575,0.0110,1,0,0.0757,1773,17.7001,0,0,0,1693,0 +25,0.0000,15.6195,0.0682,0.0147,1,0,0.2562,1797,15.7805,0,0,0,1717,0 +26,0.0000,16.3810,0.0925,0.0151,1,0,0.3559,1855,16.5806,0,0,0,1775,0 +27,0.0000,16.9658,0.0772,0.0163,1,0,0.5949,1776,17.1667,0,0,0,1696,0 +28,0.0000,16.6444,0.0867,0.0163,1,0,2.0307,2006,16.7752,0,0,0,1926,0 +29,0.0000,16.3213,0.0866,0.0113,1,0,0.2325,1900,16.4879,0,0,0,1820,0 +30,0.0000,17.1600,0.1157,0.0146,1,0,2.8508,1906,19.7257,0,0,0,1826,0 +31,0.0000,15.2616,0.1161,0.0164,1,0,0.2755,1885,15.6402,0,0,0,1805,0 +32,0.0000,15.3915,0.0912,0.0104,1,0,0.6990,2114,15.5228,0,0,0,2034,0 +33,0.0000,15.7702,0.0565,0.0114,1,0,0.2182,1766,15.8767,0,0,0,1686,0 +34,0.0000,15.6886,0.0867,0.0088,1,0,1.5597,1762,16.5863,0,0,0,1682,0 +35,0.0000,15.4814,0.0914,0.0116,1,0,0.4525,1766,15.6787,0,0,0,1686,0 +36,0.0000,15.7634,0.0630,0.0082,1,0,0.2707,1767,15.8839,0,0,0,1687,0 +37,0.0000,15.8632,0.0623,0.0065,1,0,0.2072,1844,15.9665,0,0,0,1764,0 +38,0.0000,15.4834,0.0416,0.0058,1,0,0.1536,1761,15.5512,0,0,0,1681,0 +39,0.0000,15.8150,0.0375,0.0061,1,0,0.1412,1981,15.8798,0,0,0,1901,0 +40,0.0000,15.6470,0.0448,0.0049,1,0,0.1760,1886,15.7218,0,0,0,1806,0 +41,0.0000,16.0882,0.0473,0.0075,1,0,0.1809,1882,16.1792,0,0,0,1802,0 +42,0.0000,15.8020,0.0479,0.0074,1,0,0.1821,1884,15.8833,0,0,0,1804,0 +43,0.0000,15.9573,0.0410,0.0054,1,0,0.1596,2087,16.0371,0,0,0,2007,0 +44,0.0000,16.1068,0.0428,0.0090,1,0,0.1973,1766,16.2396,0,0,0,1686,0 +45,0.0000,15.7927,0.0396,0.0092,1,0,0.2280,1758,15.8690,0,0,0,1678,0 +46,0.0000,15.7593,0.0352,0.0065,1,0,0.1253,1759,15.8437,0,0,0,1679,0 +47,0.0000,15.8190,0.1022,0.0190,1,0,1.3660,1765,16.4596,0,0,0,1685,0 diff --git a/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/receiver_console_tail.txt b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/receiver_console_tail.txt new file mode 100644 index 0000000..2ad4fe6 --- /dev/null +++ b/benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/receiver_console_tail.txt @@ -0,0 +1,107 @@ +2026-05-16 19:40:46 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-16 19:41:01 +0000 primary connected +2026-05-16 19:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":2243700686414421837,"selected_codec":"hevc","width":3200,"height":1800,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:01 +0000 received_frame=0 size=3200x1800 payload=73471 keyframe=true +2026-05-16 19:41:02 +0000 received_frame=60 size=3200x1800 payload=207989 keyframe=true +2026-05-16 19:41:03 +0000 received_frame=120 size=3200x1800 payload=206046 keyframe=true +2026-05-16 19:41:04 +0000 received_frame=180 size=3200x1800 payload=241529 keyframe=true +2026-05-16 19:41:05 +0000 received_frame=240 size=3200x1800 payload=202717 keyframe=true +2026-05-16 19:41:06 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:16 +0000 primary connected +2026-05-16 19:41:16 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":15425208270754021499,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:16 +0000 received_frame=0 size=2560x1440 payload=19647 keyframe=true +2026-05-16 19:41:17 +0000 received_frame=60 size=2560x1440 payload=63662 keyframe=true +2026-05-16 19:41:18 +0000 received_frame=120 size=2560x1440 payload=46150 keyframe=true +2026-05-16 19:41:19 +0000 received_frame=180 size=2560x1440 payload=59023 keyframe=true +2026-05-16 19:41:20 +0000 received_frame=240 size=2560x1440 payload=44357 keyframe=true +2026-05-16 19:41:21 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:39 +0000 primary connected +2026-05-16 19:41:39 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":680025305771501350,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:39 +0000 received_frame=0 size=2560x1440 payload=25908 keyframe=true +2026-05-16 19:41:41 +0000 received_frame=60 size=2560x1440 payload=61290 keyframe=true +2026-05-16 19:41:43 +0000 received_frame=120 size=2560x1440 payload=44413 keyframe=true +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=150 error=connection closed +2026-05-16 19:41:44 +0000 primary connected +2026-05-16 19:41:44 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":9644177777636521623,"selected_codec":"hevc","width":3200,"height":1800,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:44 +0000 received_frame=0 size=3200x1800 payload=40263 keyframe=true +2026-05-16 19:41:44 +0000 receiver_missing_frames=15 before=60 +2026-05-16 19:41:44 +0000 receiver_missing_frames=59 before=120 +2026-05-16 19:41:44 +0000 receiver_missing_frames=16 before=137 +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=60 error=connection closed +2026-05-17 00:29:55 +0000 primary connected +2026-05-17 00:29:55 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":23464228882682959,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-17 00:29:55 +0000 received_frame=0 size=2560x1440 payload=85658 keyframe=true +2026-05-17 00:29:55 +0000 receiver_missing_frames=1 before=2 +2026-05-17 00:29:59 +0000 client disconnected_or_failed frames=46 error=connection closed +2026-05-17 00:37:31 +0000 primary connected +2026-05-17 00:37:31 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":3490576734643790719,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:37:31 +0000 received_frame=0 size=3840x2160 payload=82157 keyframe=true +2026-05-17 00:37:31 +0000 receiver_missing_frames=3 before=4 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=7 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=9 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=11 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=13 +2026-05-17 00:37:31 +0000 receiver_missing_frames=1 before=15 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=17 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=19 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=21 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=23 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=25 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=27 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=29 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=31 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=33 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=36 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=38 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=40 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=42 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=44 +2026-05-17 00:37:32 +0000 receiver_missing_frames=1 before=46 +2026-05-17 00:37:42 +0000 client disconnected_or_failed frames=25 error=connection closed +2026-05-17 00:41:01 +0000 primary connected +2026-05-17 00:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":10341829558430185376,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:41:02 +0000 received_frame=0 size=3840x2160 payload=82131 keyframe=true +2026-05-17 00:41:02 +0000 receiver_missing_frames=3 before=4 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=7 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=9 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=11 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=13 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=15 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=17 +2026-05-17 00:41:02 +0000 receiver_missing_frames=3 before=22 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=24 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=26 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=28 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=30 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=32 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=34 +2026-05-17 00:41:02 +0000 receiver_missing_frames=1 before=36 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=39 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=41 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=43 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=45 +2026-05-17 00:41:03 +0000 receiver_missing_frames=1 before=47 +2026-05-17 00:41:12 +0000 client disconnected_or_failed frames=24 error=connection closed +2026-05-17 00:42:07 +0000 primary connected +2026-05-17 00:42:07 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":544408023131623550,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:42:07 +0000 received_frame=0 size=3840x2160 payload=81078 keyframe=true +2026-05-17 00:42:07 +0000 receiver_missing_frames=1 before=2 +2026-05-17 00:42:07 +0000 receiver_missing_frames=1 before=5 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=24 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=32 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=34 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=38 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=40 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=43 +2026-05-17 00:42:08 +0000 receiver_missing_frames=1 before=45 +2026-05-17 00:42:14 +0000 receiver_missing_frames=1 before=50 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=58 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=63 +2026-05-17 00:42:15 +0000 received_frame=72 size=3840x2160 payload=182726 keyframe=true +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=78 +2026-05-17 00:42:15 +0000 receiver_missing_frames=1 before=81 +2026-05-17 00:42:16 +0000 client disconnected_or_failed frames=74 error=connection closed +2026-05-17 00:42:29 +0000 primary connected +2026-05-17 00:42:29 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":6911361459170623421,"selected_codec":"hevc","width":3840,"height":2160,"fps":60,"frame_transport":"tcp"} +2026-05-17 00:42:29 +0000 received_frame=0 size=3840x2160 payload=82077 keyframe=true +2026-05-17 00:42:37 +0000 client disconnected_or_failed frames=48 error=connection closed diff --git a/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_1080p_hevc.csv b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_1080p_hevc.csv new file mode 100644 index 0000000..351c717 --- /dev/null +++ b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_1080p_hevc.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,4.7278,69.8355,0.0950,0.0075,1,0,0.0882,12620,69.9570,0,1,0,12540,0 +1,1.7873,45.1224,0.0313,0.0030,1,0,0.0535,6031,45.1707,0,0,0,5951,0 +2,1.7871,47.4315,0.0138,0.0025,1,0,0.0532,7228,47.4710,0,0,0,7148,0 +3,1.9076,38.0984,0.0131,0.0016,1,0,0.0352,7892,38.1299,0,0,0,7812,0 +4,1.8179,26.6355,0.0126,0.0039,1,0,0.0486,11737,26.6740,0,0,0,11657,0 +5,1.8331,16.4762,0.0146,0.0059,1,0,0.0637,3097,16.5207,0,0,0,3017,0 +6,2.0042,8.1355,0.0144,0.0024,1,0,0.0595,1768,8.1756,0,0,0,1688,0 +7,1.9477,7.8553,0.0158,0.0027,1,0,0.0511,646,7.8882,0,0,0,566,0 +8,2.0985,8.1319,0.0150,0.0031,1,0,0.0566,5080,8.1641,0,0,0,5000,0 +9,2.0823,8.0249,0.0162,0.0027,1,0,0.0447,649,8.0578,0,0,0,569,0 +10,2.0895,8.0344,0.0154,0.0028,1,0,0.0437,573,8.0664,0,0,0,493,0 +11,2.2803,8.0568,0.0180,0.0039,1,0,0.0607,557,8.1057,0,0,0,477,0 +12,2.3619,8.2995,0.0251,0.0035,1,0,0.0779,4645,8.3521,0,0,0,4565,0 +13,2.3695,8.3135,0.0215,0.0033,1,0,0.0592,685,8.3540,0,0,0,605,0 +14,2.3684,8.1936,0.0180,0.0034,1,0,0.0544,672,8.2302,0,0,0,592,0 +15,2.4510,8.2730,0.0241,0.0036,1,0,0.0568,684,8.3167,0,0,0,604,0 +16,2.5572,8.2832,0.0191,0.0032,1,0,0.0625,5182,8.3208,0,0,0,5102,0 +17,2.5762,8.2236,0.0198,0.0035,1,0,0.0522,1167,8.2635,0,0,0,1087,0 +18,2.5460,8.1223,0.0181,0.0034,1,0,0.0579,791,8.1602,0,0,0,711,0 +19,2.6492,8.1865,0.0200,0.0035,1,0,0.0583,647,8.2287,0,0,0,567,0 +20,2.6604,8.4606,0.0205,0.0035,1,0,0.0873,4851,8.5006,0,0,0,4771,0 +21,2.9191,8.5163,0.0234,0.0037,1,0,0.0713,622,8.5629,0,0,0,542,0 +22,2.9746,8.5800,0.0294,0.0054,1,0,0.1093,599,8.6443,0,0,0,519,0 +23,3.0280,8.3933,0.0369,0.0043,1,0,0.1044,615,8.4620,0,0,0,535,0 +24,3.0498,8.6484,0.0272,0.0046,1,0,0.1210,4818,8.6980,0,0,0,4738,0 +25,3.0475,8.4536,0.0253,0.0050,1,0,0.1237,594,8.5112,0,0,0,514,0 +26,3.1550,8.9323,0.0267,0.0060,1,0,0.1456,603,8.9848,0,0,0,523,0 +27,3.2926,9.5203,0.0257,0.0055,1,0,0.1243,595,9.5783,0,0,0,515,0 +28,3.2528,8.9424,0.0300,0.0063,1,0,0.1566,4848,8.9965,0,0,0,4768,0 +29,3.1673,8.9350,0.0235,0.0063,1,0,0.1114,621,8.9832,0,0,0,541,0 +30,3.1565,8.7312,0.0213,0.0049,1,0,0.1039,599,8.7749,0,0,0,519,0 +31,3.5690,9.2410,0.0225,0.0061,1,0,0.1187,636,9.2967,0,0,0,556,0 +32,3.3324,8.8813,0.0453,0.0039,1,0,0.1667,4481,8.9619,0,0,0,4401,0 +33,3.3159,9.0735,0.0285,0.0075,1,0,0.1452,898,9.1277,0,0,0,818,0 +34,3.1347,8.5244,0.0144,0.0054,1,0,0.0563,750,8.5609,0,0,0,670,0 +35,3.0599,8.5423,0.0133,0.0025,1,0,0.0564,674,8.5815,0,0,0,594,0 +36,3.4364,8.7975,0.0186,0.0027,1,0,0.0760,5476,8.8351,0,0,0,5396,0 +37,3.4640,8.7136,0.0143,0.0041,1,0,0.0665,656,8.7497,0,0,0,576,0 +38,3.4135,8.5944,0.0133,0.0035,1,0,0.0547,683,8.6290,0,0,0,603,0 +39,3.7465,8.7680,0.0145,0.0028,1,0,0.0488,651,8.8028,0,0,0,571,0 +40,3.5420,8.5798,0.0286,0.0046,1,0,0.0892,5133,8.6316,0,0,0,5053,0 +41,3.7940,8.6480,0.0319,0.0080,1,0,0.1293,646,8.7255,0,0,0,566,0 +42,3.8351,9.2537,0.0187,0.0025,1,0,0.0882,614,9.3053,0,0,0,534,0 +43,3.2911,9.1480,0.0240,0.0031,1,0,0.0865,615,9.2021,0,0,0,535,0 +44,3.9228,8.8371,0.0208,0.0058,1,0,0.0893,4685,8.8819,0,0,0,4605,0 +45,3.7775,8.9718,0.0231,0.0079,1,0,0.0811,655,9.0171,0,0,0,575,0 +46,3.9852,8.9840,0.0430,0.0053,1,0,0.1363,709,9.0598,0,0,0,629,0 +47,4.0713,9.1717,0.0206,0.0039,1,0,0.0891,661,9.2214,0,0,0,581,0 +48,3.9591,8.9797,0.0215,0.0038,1,0,0.0857,5287,9.0256,0,0,0,5207,0 +49,3.8611,8.7698,0.0175,0.0053,1,0,0.0545,856,8.8139,0,0,0,776,0 +50,3.9777,8.8751,0.0167,0.0032,1,0,0.0568,700,8.9242,0,0,0,620,0 +51,4.0685,9.0618,0.0197,0.0047,1,0,0.0529,642,9.1135,0,0,0,562,0 +52,4.0393,8.6413,0.0217,0.0039,1,0,0.0859,5437,8.6978,0,0,0,5357,0 +53,3.9410,8.5920,0.0166,0.0039,1,0,0.0572,644,8.6346,0,0,0,564,0 +54,3.9830,8.7122,0.0200,0.0062,1,0,0.0561,661,8.7596,0,0,0,581,0 +55,3.9605,8.9430,0.0225,0.0041,1,0,0.0636,669,8.9906,0,0,0,589,0 +56,3.9670,8.6785,0.0217,0.0039,1,0,0.0745,5383,8.7341,0,0,0,5303,0 +57,3.9880,8.4906,0.0198,0.0031,1,0,0.0769,699,8.5463,0,0,0,619,0 +58,3.4858,9.1115,0.0415,0.0063,1,0,0.1503,640,9.1895,0,0,0,560,0 +59,2.8142,8.0793,0.0203,0.0028,1,0,0.0518,651,8.1267,0,0,0,571,0 +60,2.1727,7.3277,0.0380,0.0022,1,0,0.0745,38669,7.3747,0,1,0,38589,0 +61,1.8410,7.8297,0.0162,0.0023,1,0,0.0555,2059,7.8674,0,0,0,1979,0 +62,1.7253,8.0032,0.0265,0.0020,1,0,0.0592,1449,8.0508,0,0,0,1369,0 +63,1.7356,8.0203,0.0163,0.0022,1,0,0.0527,931,8.0570,0,0,0,851,0 +64,1.9375,7.8922,0.0266,0.0017,1,0,0.0678,4504,7.9486,0,0,0,4424,0 +65,1.7859,7.9210,0.0190,0.0016,1,0,0.0263,948,7.9605,0,0,0,868,0 +66,1.7257,8.0364,0.0115,0.0015,1,0,0.0335,938,8.0612,0,0,0,858,0 +67,1.7599,7.9822,0.0095,0.0014,1,0,0.0316,974,8.0116,0,0,0,894,0 +68,1.8833,7.7270,0.0103,0.0020,1,0,0.0318,5718,7.7599,0,0,0,5638,0 +69,2.0414,7.9553,0.0085,0.0017,1,0,0.0275,948,7.9783,0,0,0,868,0 +70,2.0415,7.8990,0.0097,0.0018,1,0,0.0300,797,7.9299,0,0,0,717,0 +71,2.2399,7.9750,0.0163,0.0052,1,0,0.0685,732,8.0256,0,0,0,652,0 +72,2.4583,8.6955,0.0267,0.0025,1,0,0.0703,5044,8.7418,0,0,0,4964,0 +73,2.7234,8.3697,0.0154,0.0052,1,0,0.0441,599,8.4055,0,0,0,519,0 +74,2.6239,8.4317,0.0149,0.0025,1,0,0.0513,555,8.4637,0,0,0,475,0 +75,2.7344,8.6305,0.0113,0.0027,1,0,0.0462,561,8.6619,0,0,0,481,0 +76,2.6761,8.9105,0.0255,0.0023,1,0,0.1041,4626,8.9626,0,0,0,4546,0 +77,3.0430,8.7432,0.0130,0.0024,1,0,0.0568,673,8.7750,0,0,0,593,0 +78,2.9880,8.4745,0.0122,0.0040,1,0,0.0485,612,8.5049,0,0,0,532,0 +79,3.0015,8.8025,0.0123,0.0063,1,0,0.0512,587,8.8398,0,0,0,507,0 +80,3.0525,8.5603,0.0197,0.0029,1,0,0.0669,5226,8.5989,0,0,0,5146,0 +81,3.5235,8.9400,0.0151,0.0042,1,0,0.0760,1041,8.9752,0,0,0,961,0 +82,3.3880,8.7064,0.0165,0.0031,1,0,0.0575,702,8.7517,0,0,0,622,0 +83,3.4103,8.5207,0.0138,0.0032,1,0,0.0598,583,8.5550,0,0,0,503,0 +84,3.5251,8.7645,0.0157,0.0030,1,0,0.0713,5433,8.8091,0,0,0,5353,0 +85,3.4052,8.5116,0.0137,0.0054,1,0,0.0538,641,8.5482,0,0,0,561,0 +86,3.4543,8.7956,0.0138,0.0035,1,0,0.0570,576,8.8380,0,0,0,496,0 +87,3.3747,8.7963,0.0162,0.0027,1,0,0.0565,575,8.8351,0,0,0,495,0 +88,3.9745,8.8019,0.0191,0.0036,1,0,0.0735,5309,8.8540,0,0,0,5229,0 +89,3.7296,8.6997,0.0307,0.0064,1,0,0.1187,616,8.7601,0,0,0,536,0 +90,4.0919,9.2286,0.0473,0.0063,1,0,0.0597,551,9.3341,0,0,0,471,0 +91,3.9643,9.0822,0.0218,0.0046,1,0,0.0563,557,9.1300,0,0,0,477,0 +92,3.9975,8.7488,0.0246,0.0037,1,0,0.0858,4802,8.8066,0,0,0,4722,0 +93,3.9003,8.6657,0.0192,0.0027,1,0,0.0738,590,8.7185,0,0,0,510,0 +94,3.3571,8.8726,0.0255,0.0029,1,0,0.0663,630,8.9215,0,0,0,550,0 +95,2.7043,8.3701,0.0129,0.0048,1,0,0.0353,611,8.4025,0,0,0,531,0 +96,2.5868,8.1452,0.0206,0.0020,1,0,0.0568,13840,8.1852,0,0,0,13760,0 +97,2.6006,8.2777,0.0125,0.0022,1,0,0.0401,954,8.3154,0,0,0,874,0 +98,2.8363,8.1855,0.0148,0.0024,1,0,0.0393,641,8.2188,0,0,0,561,0 +99,2.9498,8.5203,0.0165,0.0025,1,0,0.0442,642,8.5556,0,0,0,562,0 +100,3.1906,8.5983,0.0162,0.0024,1,0,0.0591,5490,8.6331,0,0,0,5410,0 +101,3.3553,8.3133,0.0346,0.0045,1,0,0.0790,603,8.3828,0,0,0,523,0 +102,3.3468,8.9858,0.0150,0.0027,1,0,0.0588,632,9.0224,0,0,0,552,0 +103,3.1675,8.9052,0.0188,0.0052,1,0,0.0629,641,8.9457,0,0,0,561,0 +104,3.3350,8.9180,0.0216,0.0025,1,0,0.0886,5083,8.9583,0,0,0,5003,0 +105,3.4510,9.1626,0.0153,0.0031,1,0,0.0469,664,9.1984,0,0,0,584,0 +106,3.4147,9.0383,0.0341,0.0081,1,0,0.1323,607,9.0986,0,0,0,527,0 +107,3.4721,8.9946,0.0164,0.0028,1,0,0.0593,628,9.0316,0,0,0,548,0 +108,3.3796,9.0597,0.0173,0.0027,1,0,0.0780,4687,9.0974,0,0,0,4607,0 +109,3.4510,8.9077,0.0165,0.0056,1,0,0.0598,697,8.9476,0,0,0,617,0 +110,3.4455,8.6225,0.0140,0.0025,1,0,0.0569,679,8.6568,0,0,0,599,0 +111,3.4271,8.7640,0.0133,0.0031,1,0,0.0597,719,8.8008,0,0,0,639,0 +112,3.4004,8.7133,0.0236,0.0032,1,0,0.1054,5320,8.7684,0,0,0,5240,0 +113,3.3010,9.5173,0.0467,0.0041,1,0,0.1035,1035,9.5802,0,0,0,955,0 +114,3.1651,9.0243,0.0182,0.0035,1,0,0.0589,673,9.0635,0,0,0,593,0 +115,2.9864,8.6521,0.0132,0.0042,1,0,0.0540,662,8.6907,0,0,0,582,0 +116,2.9790,9.0898,0.0222,0.0029,1,0,0.1130,5421,9.1415,0,0,0,5341,0 +117,3.3463,8.6690,0.0150,0.0029,1,0,0.0501,678,8.7053,0,0,0,598,0 +118,3.2080,8.8958,0.0280,0.0045,1,0,0.1180,675,8.9567,0,0,0,595,0 +119,3.4984,8.9215,0.0170,0.0030,1,0,0.0589,649,8.9680,0,0,0,569,0 +120,3.2829,8.1928,0.0688,0.0072,1,0,0.1321,23550,8.2872,0,1,0,23470,0 +121,3.4136,8.8973,0.0154,0.0040,1,0,0.0575,1264,8.9431,0,0,0,1184,0 +122,3.3845,8.6473,0.0162,0.0030,1,0,0.0599,1098,8.6855,0,0,0,1018,0 +123,3.3692,8.4947,0.0135,0.0030,1,0,0.0578,761,8.5296,0,0,0,681,0 +124,3.3712,8.5187,0.0175,0.0037,1,0,0.0625,4775,8.5577,0,0,0,4695,0 +125,3.6908,8.8607,0.0154,0.0033,1,0,0.0516,930,8.8968,0,0,0,850,0 +126,3.3454,8.8229,0.0170,0.0028,1,0,0.0537,572,8.8600,0,0,0,492,0 +127,3.6289,8.7226,0.0147,0.0031,1,0,0.0350,554,8.7602,0,0,0,474,0 +128,3.3357,8.6628,0.0180,0.0029,1,0,0.0782,4568,8.7103,0,0,0,4488,0 +129,3.6760,8.8887,0.0160,0.0031,1,0,0.0549,1283,8.9275,0,0,0,1203,0 +130,3.8465,8.8042,0.0195,0.0035,1,0,0.0487,549,8.8565,0,0,0,469,0 +131,3.7127,8.3683,0.0400,0.0086,1,0,0.1228,564,8.4509,0,0,0,484,0 +132,3.6488,9.6818,0.0450,0.0044,1,0,0.1797,5440,9.7767,0,0,0,5360,0 +133,3.6021,9.0038,0.0200,0.0029,1,0,0.0651,538,9.0451,0,0,0,458,0 +134,3.3827,8.8399,0.0141,0.0034,1,0,0.0564,562,8.8748,0,0,0,482,0 +135,3.3871,8.8417,0.0139,0.0028,1,0,0.0532,559,8.8759,0,0,0,479,0 +136,3.3564,8.8567,0.0208,0.0043,1,0,0.0895,5019,8.9050,0,0,0,4939,0 +137,3.7208,8.8790,0.0187,0.0031,1,0,0.0640,568,8.9207,0,0,0,488,0 +138,3.8384,8.6774,0.0163,0.0032,1,0,0.0558,546,8.7219,0,0,0,466,0 +139,3.5878,8.4668,0.0174,0.0035,1,0,0.0640,581,8.5140,0,0,0,501,0 +140,3.3712,8.4694,0.0191,0.0027,1,0,0.0758,4666,8.5093,0,0,0,4586,0 +141,3.6141,9.0547,0.0145,0.0024,1,0,0.0512,565,9.0890,0,0,0,485,0 +142,3.3915,8.8737,0.0155,0.0030,1,0,0.0637,563,8.9100,0,0,0,483,0 +143,3.8730,8.7060,0.0165,0.0038,1,0,0.0514,552,8.7454,0,0,0,472,0 +144,3.7387,8.8726,0.0202,0.0034,1,0,0.0747,5260,8.9163,0,0,0,5180,0 +145,3.8938,8.7560,0.0185,0.0035,1,0,0.0602,1198,8.7978,0,0,0,1118,0 +146,2.9373,8.8657,0.0234,0.0026,1,0,0.0627,594,8.9103,0,0,0,514,0 +147,2.3366,8.2014,0.0245,0.0037,1,0,0.0691,572,8.2594,0,0,0,492,0 +148,2.4274,8.0638,0.0194,0.0030,1,0,0.0690,5364,8.1132,0,0,0,5284,0 +149,2.0679,8.1286,0.0226,0.0026,1,0,0.0622,571,8.1890,0,0,0,491,0 +150,1.9683,8.3957,0.0381,0.0076,1,0,0.1103,574,8.4745,0,0,0,494,0 +151,4.6256,8.7339,0.0232,0.0046,1,0,0.0444,566,8.7852,0,0,0,486,0 +152,4.5290,9.2426,0.0542,0.0109,1,0,0.1507,5299,9.3265,0,0,0,5219,0 +153,4.7212,9.2340,0.0392,0.0108,1,0,0.1257,578,9.3016,0,0,0,498,0 +154,5.1407,8.6167,0.0262,0.0052,1,0,0.0639,586,8.6734,0,0,0,506,0 +155,4.8267,8.4623,0.0195,0.0061,1,0,0.0673,558,8.5240,0,0,0,478,0 +156,4.1418,8.2202,0.0219,0.0036,1,0,0.0660,4819,8.2704,0,0,0,4739,0 +157,3.7156,9.0192,0.0273,0.0040,1,0,0.0807,601,9.0915,0,0,0,521,0 +158,4.8251,9.5952,0.0209,0.0036,1,0,0.0506,610,9.6545,0,0,0,530,0 +159,5.4866,8.9622,0.0203,0.0041,1,0,0.0568,608,9.0113,0,0,0,528,0 +160,4.7411,8.8489,0.0267,0.0045,1,0,0.1124,4371,8.9046,0,0,0,4291,0 +161,5.0608,8.8172,0.0376,0.0037,1,0,0.0747,629,8.8815,0,0,0,549,0 +162,4.3163,9.2943,0.0220,0.0028,1,0,0.1089,619,9.3497,0,0,0,539,0 +163,4.1036,9.3081,0.0245,0.0064,1,0,0.0945,635,9.3724,0,0,0,555,0 +164,4.0277,8.6320,0.0220,0.0066,1,0,0.1012,5477,8.6789,0,0,0,5397,0 +165,3.8722,8.8309,0.0138,0.0038,1,0,0.0558,609,8.8660,0,0,0,529,0 +166,3.5487,9.2968,0.0430,0.0034,1,0,0.1366,589,9.3648,0,0,0,509,0 +167,2.9012,9.3797,0.0349,0.0035,1,0,0.1220,626,9.4291,0,0,0,546,0 +168,2.8531,8.9763,0.0223,0.0035,1,0,0.0808,5039,9.0191,0,0,0,4959,0 +169,2.7269,8.9424,0.0173,0.0024,1,0,0.0629,643,8.9772,0,0,0,563,0 +170,2.7262,8.5144,0.0123,0.0021,1,0,0.0611,633,8.5512,0,0,0,553,0 +171,2.6723,8.8962,0.0138,0.0044,1,0,0.0578,597,8.9364,0,0,0,517,0 +172,2.9849,8.6411,0.0175,0.0029,1,0,0.0782,4649,8.6858,0,0,0,4569,0 +173,3.0225,8.7775,0.0165,0.0029,1,0,0.0632,706,8.8128,0,0,0,626,0 +174,3.3289,8.5979,0.0186,0.0043,1,0,0.0664,723,8.6449,0,0,0,643,0 +175,3.2133,8.5983,0.0161,0.0055,1,0,0.0611,714,8.6379,0,0,0,634,0 +176,3.4111,8.8530,0.0178,0.0055,1,0,0.0752,5316,8.8942,0,0,0,5236,0 +177,3.3792,8.9289,0.0203,0.0057,1,0,0.0615,1273,8.9724,0,0,0,1193,0 +178,3.9150,9.5366,0.0374,0.0055,1,0,0.1479,667,9.6046,0,0,0,587,0 +179,3.7810,9.0461,0.0178,0.0032,1,0,0.0608,1039,9.0850,0,0,0,959,0 +180,3.6878,8.2184,0.0668,0.0044,1,0,0.1281,34327,8.3084,0,1,0,34247,0 +181,3.6732,17.9529,0.0172,0.0062,1,0,0.0583,806,17.9973,0,0,0,726,0 +182,3.3918,19.1244,0.0155,0.0045,1,0,0.0501,697,19.1620,0,0,0,617,0 +183,4.0403,20.4856,0.0153,0.0033,1,0,0.0434,612,20.5259,0,0,0,532,0 +184,3.9236,18.4648,0.0234,0.0041,1,0,0.0696,5286,18.5080,0,0,0,5206,0 +185,3.9319,18.6562,0.0210,0.0064,1,0,0.0583,559,18.7156,0,0,0,479,0 +186,3.9292,18.7057,0.0187,0.0032,1,0,0.0554,559,18.7484,0,0,0,479,0 +187,3.9370,20.3956,0.0150,0.0035,1,0,0.0413,567,20.4339,0,0,0,487,0 +188,3.9689,18.6951,0.0205,0.0036,1,0,0.0729,4829,18.7486,0,0,0,4749,0 +189,3.8952,18.9612,0.0375,0.0056,1,0,0.1428,660,19.0422,0,0,0,580,0 +190,4.8276,19.3667,0.0719,0.0088,1,0,0.1363,678,19.4690,0,0,0,598,0 +191,2.8777,20.6332,0.0761,0.0081,1,0,0.1445,1133,20.7799,0,0,0,1053,0 +192,3.9565,19.6695,0.0541,0.0048,1,0,0.1699,13069,19.7564,0,0,0,12989,0 +193,2.9521,19.4162,0.0183,0.0032,1,0,0.0700,1252,19.4537,0,0,0,1172,0 +194,3.1041,20.1633,0.0117,0.0023,1,0,0.0393,1229,20.1930,0,0,0,1149,0 +195,3.1408,18.3758,0.0334,0.0066,1,0,0.0695,727,18.4810,0,0,0,647,0 +196,3.0547,18.8288,0.0298,0.0036,1,0,0.1540,5416,18.8938,0,0,0,5336,0 +197,3.1784,18.6305,0.0281,0.0044,1,0,0.1113,910,18.7005,0,0,0,830,0 +198,3.0973,19.2290,0.0154,0.0028,1,0,0.0409,900,19.2646,0,0,0,820,0 +199,3.3662,18.6353,0.0127,0.0040,1,0,0.0543,769,18.6787,0,0,0,689,0 +200,3.3967,19.3537,0.0312,0.0052,1,0,0.1332,5159,19.4201,0,0,0,5079,0 +201,2.2882,19.8708,0.0240,0.0055,1,0,0.0807,570,19.9370,0,0,0,490,0 +202,3.4240,18.7787,0.0214,0.0047,1,0,0.0858,646,18.8389,0,0,0,566,0 +203,3.7029,19.0167,0.0268,0.0082,1,0,0.0766,580,19.0865,0,0,0,500,0 +204,3.5910,19.1712,0.0361,0.0057,1,0,0.1630,4728,19.2274,0,0,0,4648,0 +205,3.6869,18.7039,0.0340,0.0060,1,0,0.0587,612,18.8020,0,0,0,532,0 +206,3.6745,18.5643,0.0350,0.0041,1,0,0.0798,599,18.6337,0,0,0,519,0 +207,3.5765,19.4002,0.0609,0.0082,1,0,0.0484,626,19.4983,0,0,0,546,0 +208,3.0467,19.4448,0.0618,0.0044,1,0,0.2046,5829,19.5331,0,0,0,5749,0 +209,2.9365,18.9648,0.0698,0.0046,1,0,0.0650,1278,19.0636,0,0,0,1198,0 +210,3.1357,18.6726,0.0553,0.0049,1,0,0.1578,627,18.7569,0,0,0,547,0 +211,3.0021,18.8352,0.0443,0.0030,1,0,0.1250,574,18.9211,0,0,0,494,0 +212,2.9569,18.6269,0.0483,0.0035,1,0,0.1231,5381,18.7090,0,0,0,5301,0 +213,2.8001,18.7141,0.0492,0.0070,1,0,0.1145,636,18.8154,0,0,0,556,0 +214,2.7800,18.8022,0.0560,0.0035,1,0,0.1237,690,18.8817,0,0,0,610,0 +215,2.8692,18.2247,0.0275,0.0038,1,0,0.0667,704,18.2748,0,0,0,624,0 +216,2.3776,17.9638,0.0140,0.0025,1,0,0.0461,5361,18.0189,0,0,0,5281,0 +217,2.4240,18.5492,0.0095,0.0021,1,0,0.0350,647,18.5751,0,0,0,567,0 +218,2.2983,18.4618,0.0155,0.0054,1,0,0.0389,550,18.5105,0,0,0,470,0 +219,2.2865,18.7502,0.0271,0.0030,1,0,0.1022,561,18.8071,0,0,0,481,0 +220,2.4621,18.5801,0.0166,0.0030,1,0,0.0564,4833,18.6281,0,0,0,4753,0 +221,2.7521,18.2592,0.0507,0.0068,1,0,0.1572,629,18.3369,0,0,0,549,0 +222,2.8712,19.6583,0.0193,0.0027,1,0,0.0640,693,19.7108,0,0,0,613,0 +223,2.8397,19.0164,0.0152,0.0043,1,0,0.0577,640,19.0614,0,0,0,560,0 +224,2.7042,20.0118,0.0166,0.0034,1,0,0.0645,4458,20.0488,0,0,0,4378,0 +225,2.9869,18.5361,0.0143,0.0031,1,0,0.0551,729,18.5730,0,0,0,649,0 +226,3.1289,18.9145,0.0185,0.0034,1,0,0.0713,678,18.9528,0,0,0,598,0 +227,3.3353,18.4555,0.0148,0.0034,1,0,0.0586,661,18.4917,0,0,0,581,0 +228,2.9512,18.5344,0.0138,0.0021,1,0,0.0507,5530,18.5648,0,0,0,5450,0 +229,2.9846,18.4960,0.0167,0.0030,1,0,0.0601,647,18.5459,0,0,0,567,0 +230,2.9808,18.5819,0.0197,0.0034,1,0,0.0553,660,18.6328,0,0,0,580,0 +231,2.9875,18.6791,0.0120,0.0029,1,0,0.0584,642,18.7195,0,0,0,562,0 +232,2.9803,18.6781,0.0250,0.0030,1,0,0.0847,5154,18.7847,0,0,0,5074,0 +233,3.0684,18.0351,0.0114,0.0050,1,0,0.0523,664,18.0757,0,0,0,584,0 +234,2.5135,18.5588,0.0110,0.0022,1,0,0.0301,625,18.5870,0,0,0,545,0 +235,2.7105,18.1612,0.0148,0.0043,1,0,0.0307,645,18.2070,0,0,0,565,0 +236,2.8177,18.0727,0.0135,0.0024,1,0,0.0400,4746,18.1047,0,0,0,4666,0 +237,2.8080,18.2832,0.0209,0.0044,1,0,0.0605,737,18.3258,0,0,0,657,0 +238,2.8168,18.2993,0.0125,0.0025,1,0,0.0301,744,18.3305,0,0,0,664,0 +239,2.8148,18.2068,0.0130,0.0030,1,0,0.0529,709,18.2500,0,0,0,629,0 +240,3.2354,17.3369,0.0433,0.0055,1,0,0.0940,27711,17.4187,0,1,0,27631,0 +241,3.3725,18.4016,0.0175,0.0047,1,0,0.0610,3082,18.4529,0,0,0,3002,0 +242,3.3561,18.7479,0.0174,0.0033,1,0,0.0715,1839,18.8060,0,0,0,1759,0 +243,3.3868,18.5037,0.0189,0.0035,1,0,0.0635,2005,18.5350,0,0,0,1925,0 +244,3.3434,18.2785,0.0185,0.0027,1,0,0.0607,5940,18.3174,0,0,0,5860,0 +245,3.3634,18.7676,0.0144,0.0029,1,0,0.0547,638,18.8140,0,0,0,558,0 +246,3.3457,18.9088,0.0177,0.0035,1,0,0.0574,606,18.9577,0,0,0,526,0 +247,3.7351,18.3452,0.0181,0.0037,1,0,0.0547,587,18.3968,0,0,0,507,0 +248,3.6288,18.6122,0.0138,0.0027,1,0,0.0563,5316,18.6467,0,0,0,5236,0 +249,3.7973,18.6540,0.0151,0.0032,1,0,0.0419,697,18.6990,0,0,0,617,0 +250,3.7222,18.9453,0.0143,0.0039,1,0,0.0588,566,18.9915,0,0,0,486,0 +251,3.9007,18.9720,0.0362,0.0042,1,0,0.1428,540,19.0484,0,0,0,460,0 +252,3.6783,19.1875,0.0383,0.0080,1,0,0.1604,4818,19.2577,0,0,0,4738,0 +253,3.5582,19.0074,0.0169,0.0067,1,0,0.0594,734,19.0506,0,0,0,654,0 +254,3.3965,18.9319,0.0135,0.0033,1,0,0.0553,634,18.9776,0,0,0,554,0 +255,3.6221,18.5104,0.0171,0.0033,1,0,0.0500,783,18.5566,0,0,0,703,0 +256,3.3942,18.9010,0.0244,0.0037,1,0,0.0901,13676,18.9692,0,0,0,13596,0 +257,3.9552,18.5130,0.0186,0.0037,1,0,0.0512,1004,18.5635,0,0,0,924,0 +258,3.9977,18.7928,0.0138,0.0030,1,0,0.0425,871,18.8286,0,0,0,791,0 +259,3.9121,18.3923,0.0157,0.0045,1,0,0.0568,840,18.4239,0,0,0,760,0 +260,3.8168,18.9877,0.0207,0.0033,1,0,0.0665,5571,19.0400,0,0,0,5491,0 +261,3.9667,18.8488,0.0144,0.0027,1,0,0.0562,665,18.8953,0,0,0,585,0 +262,4.0291,18.5252,0.0152,0.0029,1,0,0.0682,676,18.5760,0,0,0,596,0 +263,3.7967,18.8040,0.0140,0.0030,1,0,0.0470,677,18.8395,0,0,0,597,0 +264,3.8055,18.5559,0.0158,0.0035,1,0,0.0654,5136,18.5932,0,0,0,5056,0 +265,4.1521,18.4238,0.0182,0.0030,1,0,0.0556,711,18.4729,0,0,0,631,0 +266,3.7890,18.7224,0.0181,0.0038,1,0,0.0546,688,18.7755,0,0,0,608,0 +267,3.7129,18.4957,0.0155,0.0032,1,0,0.0426,583,18.5344,0,0,0,503,0 +268,3.9362,18.6187,0.0160,0.0033,1,0,0.0666,4669,18.6620,0,0,0,4589,0 +269,3.9020,18.8567,0.0187,0.0048,1,0,0.0643,656,18.9118,0,0,0,576,0 +270,4.2318,18.6529,0.0166,0.0040,1,0,0.0733,743,18.7029,0,0,0,663,0 +271,4.2232,18.7800,0.0125,0.0030,1,0,0.0590,590,18.8229,0,0,0,510,0 +272,4.1132,19.4992,0.0269,0.0068,1,0,0.0940,5230,19.5543,0,0,0,5150,0 +273,3.9083,19.0416,0.0190,0.0045,1,0,0.0523,914,19.0925,0,0,0,834,0 +274,3.8755,18.5440,0.0153,0.0059,1,0,0.0449,704,18.5949,0,0,0,624,0 +275,4.0117,19.3655,0.0158,0.0035,1,0,0.0490,633,19.4141,0,0,0,553,0 +276,4.0325,18.6384,0.0155,0.0033,1,0,0.0730,5408,18.6902,0,0,0,5328,0 +277,3.9933,18.6896,0.0209,0.0043,1,0,0.0520,681,18.7492,0,0,0,601,0 +278,3.9455,18.5882,0.0168,0.0042,1,0,0.0545,649,18.6391,0,0,0,569,0 +279,3.9653,19.0008,0.0152,0.0039,1,0,0.0415,637,19.0517,0,0,0,557,0 +280,3.9137,18.6350,0.0189,0.0043,1,0,0.0924,5368,18.6895,0,0,0,5288,0 +281,3.9928,18.7136,0.0408,0.0043,1,0,0.1346,723,18.7888,0,0,0,643,0 +282,3.7621,19.0269,0.0233,0.0057,1,0,0.1029,606,19.0767,0,0,0,526,0 +283,3.4722,19.0060,0.0141,0.0062,1,0,0.0488,630,19.0461,0,0,0,550,0 +284,3.5459,18.5361,0.0208,0.0037,1,0,0.0679,4895,18.5905,0,0,0,4815,0 +285,3.4037,18.6182,0.0155,0.0036,1,0,0.0540,723,18.6665,0,0,0,643,0 +286,3.3729,18.9202,0.0214,0.0044,1,0,0.1179,751,18.9660,0,0,0,671,0 +287,3.6923,18.6372,0.0170,0.0050,1,0,0.0560,678,18.6983,0,0,0,598,0 +288,3.4467,18.9640,0.0244,0.0039,1,0,0.0752,4579,19.0228,0,0,0,4499,0 +289,3.4690,19.0303,0.0152,0.0069,1,0,0.0601,863,19.0846,0,0,0,783,0 +290,3.7159,18.6418,0.0182,0.0039,1,0,0.0619,808,18.7002,0,0,0,728,0 +291,3.8663,18.5730,0.0150,0.0034,1,0,0.0636,735,18.6187,0,0,0,655,0 +292,3.7532,18.5894,0.0173,0.0034,1,0,0.0620,5485,18.6415,0,0,0,5405,0 +293,4.0324,18.6215,0.0190,0.0037,1,0,0.0488,671,18.6624,0,0,0,591,0 +294,3.8109,18.5719,0.0145,0.0031,1,0,0.0442,693,18.6225,0,0,0,613,0 +295,3.9137,18.8770,0.0255,0.0096,1,0,0.1451,704,18.9596,0,0,0,624,0 +296,3.5515,18.2849,0.0260,0.0043,1,0,0.1443,5089,18.3328,0,0,0,5009,0 +297,2.7805,19.0658,0.0186,0.0065,1,0,0.0585,715,19.1165,0,0,0,635,0 +298,2.2920,18.4410,0.0132,0.0017,1,0,0.0400,650,18.4761,0,0,0,570,0 +299,1.9120,19.6010,0.0154,0.0020,1,0,0.0466,649,19.6456,0,0,0,569,0 diff --git a/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_4k_hevc_12s.csv b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_4k_hevc_12s.csv new file mode 100644 index 0000000..530f5a1 --- /dev/null +++ b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_4k_hevc_12s.csv @@ -0,0 +1,721 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.8746,59.0097,0.1395,0.0090,1,0,0.0925,127038,59.2067,0,1,0,126958,0 +1,6.4272,11.6590,0.0675,0.0043,1,0,0.1118,51686,11.7608,0,0,0,51606,0 +2,6.1538,13.7489,0.0344,0.0039,1,0,0.0975,47636,13.8057,0,0,0,47556,0 +3,6.1755,17.4513,0.0373,0.0040,1,0,0.0495,51019,17.5170,0,0,0,50939,0 +4,6.7633,18.7552,0.0349,0.0032,1,0,0.1262,78087,18.8233,0,0,0,78007,0 +5,6.4318,20.7948,0.0362,0.0034,1,0,0.0861,52432,20.8561,0,0,0,52352,0 +6,6.4100,22.0592,0.0164,0.0025,1,0,0.0567,14141,22.1078,0,0,0,14061,0 +7,6.3079,21.7608,0.0195,0.0027,1,0,0.0545,7616,21.8020,0,0,0,7536,0 +8,6.9725,12.9066,0.0339,0.0032,1,0,0.0440,31527,12.9688,0,0,0,31447,0 +9,6.5598,11.0517,0.0382,0.0033,1,0,0.0731,6054,11.1078,0,0,0,5974,0 +10,6.6681,11.0829,0.0304,0.0033,1,0,0.0635,4681,11.1316,0,0,0,4601,0 +11,6.5609,11.0324,0.0195,0.0031,1,0,0.0455,4266,11.0687,0,0,0,4186,0 +12,6.6496,11.9068,0.0320,0.0032,1,0,0.0851,23703,11.9678,0,0,0,23623,0 +13,6.8333,11.4587,0.0210,0.0033,1,0,0.0595,4378,11.5075,0,0,0,4298,0 +14,6.6505,11.1229,0.0212,0.0030,1,0,0.0505,5353,11.1714,0,0,0,5273,0 +15,6.6848,11.0535,0.0204,0.0033,1,0,0.0550,2077,11.1005,0,0,0,1997,0 +16,6.8163,11.7341,0.0232,0.0028,1,0,0.0611,16630,11.7839,0,0,0,16550,0 +17,6.7286,10.9077,0.0185,0.0032,1,0,0.0658,3122,10.9533,0,0,0,3042,0 +18,6.9239,11.0742,0.0232,0.0028,1,0,0.0667,1877,11.1150,0,0,0,1797,0 +19,6.8487,11.1830,0.0210,0.0029,1,0,0.0573,1684,11.2314,0,0,0,1604,0 +20,6.7965,11.7821,0.0205,0.0031,1,0,0.0675,17208,11.8292,0,0,0,17128,0 +21,6.6820,11.0637,0.0202,0.0030,1,0,0.0571,1653,11.1013,0,0,0,1573,0 +22,6.7950,11.0283,0.0226,0.0031,1,0,0.0574,1584,11.0785,0,0,0,1504,0 +23,6.6664,11.0352,0.0168,0.0027,1,0,0.0559,1604,11.0680,0,0,0,1524,0 +24,6.8275,11.8008,0.0163,0.0031,1,0,0.0566,17182,11.8470,0,0,0,17102,0 +25,6.6368,10.8902,0.0151,0.0042,1,0,0.0546,1561,10.9328,0,0,0,1481,0 +26,6.7016,11.0066,0.0187,0.0030,1,0,0.0533,1559,11.0518,0,0,0,1479,0 +27,6.8296,10.9945,0.0130,0.0023,1,0,0.0596,1562,11.0321,0,0,0,1482,0 +28,6.7798,11.7544,0.0252,0.0033,1,0,0.0596,17537,11.8065,0,0,0,17457,0 +29,6.7598,11.2909,0.0190,0.0042,1,0,0.0617,1608,11.3384,0,0,0,1528,0 +30,6.8635,10.9695,0.0177,0.0026,1,0,0.0516,1689,11.0030,0,0,0,1609,0 +31,6.7190,10.9507,0.0172,0.0030,1,0,0.0457,1693,10.9865,0,0,0,1613,0 +32,6.7885,11.6234,0.0263,0.0034,1,0,0.0661,15328,11.6780,0,0,0,15248,0 +33,6.8240,10.9330,0.0161,0.0021,1,0,0.0457,2195,10.9745,0,0,0,2115,0 +34,6.7580,10.9515,0.0129,0.0015,1,0,0.0364,1710,10.9880,0,0,0,1630,0 +35,6.7722,11.0212,0.0143,0.0019,1,0,0.0493,1599,11.0559,0,0,0,1519,0 +36,6.8855,11.8220,0.0127,0.0018,1,0,0.0587,19311,11.8587,0,0,0,19231,0 +37,6.7617,10.9827,0.0080,0.0018,1,0,0.0231,1579,11.0134,0,0,0,1499,0 +38,6.8017,10.9405,0.0078,0.0017,1,0,0.0343,1601,10.9704,0,0,0,1521,0 +39,6.8179,10.9598,0.0105,0.0023,1,0,0.0326,1606,10.9949,0,0,0,1526,0 +40,6.9334,11.6335,0.0201,0.0020,1,0,0.0661,18514,11.6906,0,0,0,18434,0 +41,6.9721,10.9870,0.0085,0.0014,1,0,0.0349,1617,11.0184,0,0,0,1537,0 +42,6.8329,10.9265,0.0080,0.0015,1,0,0.0318,1631,10.9562,0,0,0,1551,0 +43,6.8092,11.2915,0.0083,0.0015,1,0,0.0283,1658,11.3172,0,0,0,1578,0 +44,6.9605,11.8253,0.0109,0.0015,1,0,0.0418,16880,11.8590,0,0,0,16800,0 +45,6.7523,11.1657,0.0081,0.0016,1,0,0.0265,1722,11.1967,0,0,0,1642,0 +46,6.6980,10.8669,0.0107,0.0029,1,0,0.0359,1766,10.9023,0,0,0,1686,0 +47,6.7738,11.1062,0.0089,0.0015,1,0,0.0335,1757,11.1382,0,0,0,1677,0 +48,6.8954,11.8633,0.0112,0.0017,1,0,0.0445,19150,11.8977,0,0,0,19070,0 +49,6.8138,11.1825,0.0088,0.0013,1,0,0.0324,2947,11.2142,0,0,0,2867,0 +50,6.8723,11.2439,0.0079,0.0013,1,0,0.0324,1781,11.2691,0,0,0,1701,0 +51,6.7741,10.9095,0.0083,0.0018,1,0,0.0281,1686,10.9399,0,0,0,1606,0 +52,6.8421,11.8987,0.0103,0.0016,1,0,0.0385,19804,11.9319,0,0,0,19724,0 +53,6.8055,11.1135,0.0077,0.0016,1,0,0.0260,1803,11.1427,0,0,0,1723,0 +54,6.8159,11.0274,0.0075,0.0015,1,0,0.0307,1795,11.0565,0,0,0,1715,0 +55,6.7559,11.1367,0.0074,0.0015,1,0,0.0269,1726,11.1656,0,0,0,1646,0 +56,6.8247,11.6317,0.0107,0.0017,1,0,0.0387,19602,11.6661,0,0,0,19522,0 +57,6.7342,11.1139,0.0077,0.0015,1,0,0.0244,1725,11.1441,0,0,0,1645,0 +58,6.7642,11.0967,0.0182,0.0017,1,0,0.0537,1716,11.1417,0,0,0,1636,0 +59,6.7739,11.1257,0.0168,0.0017,1,0,0.0610,1714,11.1527,0,0,0,1634,0 +60,7.2999,10.8700,0.1389,0.0016,1,0,2.0730,375598,11.0175,0,1,0,375518,0 +61,6.3440,11.5490,0.0183,0.0020,1,0,0.0646,22631,11.5833,0,0,0,22551,0 +62,6.6405,11.3754,0.0208,0.0024,1,0,0.0665,35421,11.4168,0,0,0,35341,0 +63,6.8654,11.6684,0.0257,0.0024,1,0,0.0759,43992,11.7130,0,0,0,43912,0 +64,6.7894,12.1260,0.0334,0.0015,1,0,0.1038,57524,12.1837,0,0,0,57444,0 +65,6.6282,11.2797,0.0185,0.0020,1,0,0.0419,22013,11.3069,0,0,0,21933,0 +66,6.6127,11.0712,0.0145,0.0016,1,0,0.0391,13388,11.1155,0,0,0,13308,0 +67,6.3975,11.2575,0.0088,0.0014,1,0,0.0352,3261,11.2849,0,0,0,3181,0 +68,6.6069,11.7947,0.0153,0.0016,1,0,0.0436,27109,11.8331,0,0,0,27029,0 +69,6.7391,10.9953,0.0083,0.0014,1,0,0.0295,2391,11.0261,0,0,0,2311,0 +70,6.7425,11.0072,0.0197,0.0019,1,0,0.0650,3169,11.0523,0,0,0,3089,0 +71,6.8607,11.0826,0.0090,0.0015,1,0,0.0315,1694,11.1086,0,0,0,1614,0 +72,6.8976,11.8490,0.0160,0.0018,1,0,0.0449,18465,11.8885,0,0,0,18385,0 +73,6.9977,11.4502,0.0083,0.0015,1,0,0.0271,1544,11.4838,0,0,0,1464,0 +74,7.0112,11.0817,0.0085,0.0020,1,0,0.0301,1536,11.1135,0,0,0,1456,0 +75,6.9357,11.2382,0.0153,0.0020,1,0,0.0518,1537,11.2779,0,0,0,1457,0 +76,6.9715,11.7386,0.0108,0.0020,1,0,0.0449,16811,11.7728,0,0,0,16731,0 +77,6.8812,11.2032,0.0077,0.0014,1,0,0.0281,1567,11.2337,0,0,0,1487,0 +78,6.7939,11.1758,0.0078,0.0015,1,0,0.0277,1791,11.2065,0,0,0,1711,0 +79,6.7958,11.1742,0.0074,0.0015,1,0,0.0294,1560,11.2037,0,0,0,1480,0 +80,6.8238,11.8639,0.0112,0.0016,1,0,0.0438,18853,11.8980,0,0,0,18773,0 +81,6.7780,11.0470,0.0173,0.0015,1,0,0.0500,2557,11.0845,0,0,0,2477,0 +82,6.6662,11.1545,0.0096,0.0016,1,0,0.0314,1745,11.1871,0,0,0,1665,0 +83,6.6471,10.9970,0.0082,0.0013,1,0,0.0275,1561,11.0268,0,0,0,1481,0 +84,6.7441,11.7405,0.0113,0.0015,1,0,0.0395,19707,11.7747,0,0,0,19627,0 +85,6.7728,11.1037,0.0082,0.0015,1,0,0.0264,1586,11.1348,0,0,0,1506,0 +86,6.8706,11.0367,0.0078,0.0013,1,0,0.0296,1532,11.0609,0,0,0,1452,0 +87,6.8703,11.1016,0.0078,0.0017,1,0,0.0274,1539,11.1321,0,0,0,1459,0 +88,6.8094,11.7657,0.0107,0.0017,1,0,0.0395,19470,11.7996,0,0,0,19390,0 +89,6.7517,11.2543,0.0081,0.0013,1,0,0.0351,1583,11.2842,0,0,0,1503,0 +90,6.8118,11.1777,0.0083,0.0014,1,0,0.0257,1532,11.1994,0,0,0,1452,0 +91,6.8032,11.0843,0.0133,0.0043,1,0,0.0351,1533,11.1167,0,0,0,1453,0 +92,6.8725,11.8176,0.0123,0.0018,1,0,0.0389,17508,11.8532,0,0,0,17428,0 +93,6.7767,11.5868,0.0080,0.0014,1,0,0.0245,1595,11.6164,0,0,0,1515,0 +94,6.8351,11.2046,0.0081,0.0016,1,0,0.0285,1732,11.2346,0,0,0,1652,0 +95,6.8002,11.2713,0.0079,0.0013,1,0,0.0272,1752,11.2958,0,0,0,1672,0 +96,6.8520,11.6478,0.0152,0.0017,1,0,0.0568,50515,11.6902,0,0,0,50435,0 +97,6.8141,11.2519,0.0087,0.0016,1,0,0.0280,1875,11.2837,0,0,0,1795,0 +98,6.7364,10.9709,0.0078,0.0013,1,0,0.0262,1811,10.9949,0,0,0,1731,0 +99,6.7409,11.2106,0.0090,0.0018,1,0,0.0278,1609,11.2425,0,0,0,1529,0 +100,6.7709,11.5254,0.0203,0.0030,1,0,0.0689,19341,11.5769,0,0,0,19261,0 +101,7.0515,11.1687,0.0096,0.0018,1,0,0.0372,1613,11.2017,0,0,0,1533,0 +102,7.0549,11.4522,0.0106,0.0035,1,0,0.0290,1698,11.4879,0,0,0,1618,0 +103,7.4233,11.2474,0.0078,0.0015,1,0,0.0275,1634,11.2645,0,0,0,1554,0 +104,6.8297,11.9278,0.0108,0.0017,1,0,0.0420,18525,11.9614,0,0,0,18445,0 +105,6.8047,11.2158,0.0078,0.0015,1,0,0.0274,1645,11.2462,0,0,0,1565,0 +106,6.8310,10.9411,0.0075,0.0014,1,0,0.0273,1592,10.9701,0,0,0,1512,0 +107,6.8895,11.2491,0.0075,0.0013,1,0,0.0266,1592,11.2785,0,0,0,1512,0 +108,7.0139,11.9227,0.0101,0.0015,1,0,0.0390,16840,11.9555,0,0,0,16760,0 +109,6.8426,11.4213,0.0086,0.0014,1,0,0.0273,1694,11.4526,0,0,0,1614,0 +110,6.8889,11.3187,0.0075,0.0013,1,0,0.0296,1742,11.3479,0,0,0,1662,0 +111,6.8462,11.0393,0.0097,0.0018,1,0,0.0317,1678,11.0724,0,0,0,1598,0 +112,6.8908,11.8699,0.0105,0.0015,1,0,0.0380,18900,11.9030,0,0,0,18820,0 +113,6.8350,11.3060,0.0083,0.0015,1,0,0.0263,2379,11.3365,0,0,0,2299,0 +114,6.8742,11.0439,0.0080,0.0015,1,0,0.0300,1818,11.0745,0,0,0,1738,0 +115,6.8094,11.1800,0.0067,0.0013,1,0,0.0274,1803,11.2084,0,0,0,1723,0 +116,6.8855,11.6982,0.0107,0.0015,1,0,0.0373,19900,11.7316,0,0,0,19820,0 +117,6.8187,11.1244,0.0086,0.0066,1,0,0.0333,1798,11.1578,0,0,0,1718,0 +118,6.9668,11.2803,0.0087,0.0015,1,0,0.0309,1737,11.3120,0,0,0,1657,0 +119,6.9209,11.1128,0.0125,0.0024,1,0,0.0465,1743,11.1488,0,0,0,1663,0 +120,7.3571,10.6525,0.0743,0.0015,1,0,0.2200,319000,10.7505,0,1,0,318920,0 +121,6.8710,11.1363,0.0112,0.0017,1,0,0.0414,17702,11.1706,0,0,0,17622,0 +122,6.8958,11.3840,0.0112,0.0016,1,0,0.0486,25324,11.4183,0,0,0,25244,0 +123,6.8684,11.4825,0.0123,0.0015,1,0,0.0460,36007,11.5177,0,0,0,35927,0 +124,6.9032,11.7968,0.0158,0.0015,1,0,0.0453,43263,11.8354,0,0,0,43183,0 +125,6.8945,11.4109,0.0118,0.0019,1,0,0.0368,11459,11.4463,0,0,0,11379,0 +126,6.8452,10.9307,0.0098,0.0016,1,0,0.0365,8074,10.9635,0,0,0,7994,0 +127,6.8546,11.1931,0.0084,0.0015,1,0,0.0324,6628,11.2240,0,0,0,6548,0 +128,6.8188,11.4795,0.0119,0.0015,1,0,0.0440,27198,11.5141,0,0,0,27118,0 +129,6.8090,11.1096,0.0090,0.0015,1,0,0.0285,6209,11.1412,0,0,0,6129,0 +130,6.7905,11.0229,0.0188,0.0030,1,0,0.0658,4722,11.0679,0,0,0,4642,0 +131,6.9640,11.0947,0.0126,0.0018,1,0,0.0354,1873,11.1273,0,0,0,1793,0 +132,7.0467,11.9548,0.0172,0.0019,1,0,0.0500,19363,11.9965,0,0,0,19283,0 +133,6.7945,11.0330,0.0085,0.0016,1,0,0.0283,1580,11.0592,0,0,0,1500,0 +134,6.9031,11.0446,0.0086,0.0015,1,0,0.0305,1526,11.0763,0,0,0,1446,0 +135,6.7283,11.2648,0.0132,0.0018,1,0,0.0493,1525,11.3035,0,0,0,1445,0 +136,6.8507,11.8222,0.0109,0.0017,1,0,0.0434,18444,11.8561,0,0,0,18364,0 +137,6.8074,10.9753,0.0077,0.0015,1,0,0.0264,1526,11.0060,0,0,0,1446,0 +138,6.9515,11.2790,0.0076,0.0014,1,0,0.0270,1522,11.3094,0,0,0,1442,0 +139,6.9790,11.1544,0.0078,0.0015,1,0,0.0283,1526,11.1855,0,0,0,1446,0 +140,6.9821,11.7528,0.0120,0.0017,1,0,0.0378,16778,11.7888,0,0,0,16698,0 +141,7.0479,11.3921,0.0084,0.0015,1,0,0.0258,1534,11.4237,0,0,0,1454,0 +142,7.0766,11.2608,0.0086,0.0015,1,0,0.0376,1532,11.2930,0,0,0,1452,0 +143,7.0074,10.9981,0.0083,0.0014,1,0,0.0268,1574,11.0294,0,0,0,1494,0 +144,7.0368,11.8886,0.0107,0.0017,1,0,0.0443,18735,11.9230,0,0,0,18655,0 +145,7.0328,11.3080,0.0077,0.0014,1,0,0.0298,2024,11.3370,0,0,0,1944,0 +146,6.8703,11.0357,0.0080,0.0014,1,0,0.0268,1587,11.0669,0,0,0,1507,0 +147,6.8555,11.2040,0.0077,0.0013,1,0,0.0252,1529,11.2332,0,0,0,1449,0 +148,6.8037,11.9165,0.0105,0.0014,1,0,0.0420,19676,11.9500,0,0,0,19596,0 +149,6.8736,10.9498,0.0075,0.0014,1,0,0.0262,1597,10.9790,0,0,0,1517,0 +150,6.8480,11.0040,0.0074,0.0014,1,0,0.0260,1530,11.0333,0,0,0,1450,0 +151,6.8410,11.0451,0.0100,0.0019,1,0,0.0329,1654,11.0645,0,0,0,1574,0 +152,6.9874,11.9235,0.0109,0.0016,1,0,0.0403,19425,11.9576,0,0,0,19345,0 +153,6.8321,11.2336,0.0085,0.0013,1,0,0.0285,1620,11.2646,0,0,0,1540,0 +154,6.8921,11.2042,0.0103,0.0027,1,0,0.0423,1538,11.2234,0,0,0,1458,0 +155,7.7820,11.2234,0.0166,0.0020,1,0,0.0395,1531,11.2701,0,0,0,1451,0 +156,6.9537,11.9051,0.0150,0.0021,1,0,0.0669,17491,11.9450,0,0,0,17411,0 +157,7.5805,11.3889,0.0119,0.0013,1,0,0.0341,1641,11.4237,0,0,0,1561,0 +158,6.8625,11.0973,0.0073,0.0013,1,0,0.0298,1676,11.1259,0,0,0,1596,0 +159,6.8816,11.0932,0.0082,0.0016,1,0,0.0325,1668,11.1243,0,0,0,1588,0 +160,6.9200,11.6553,0.0205,0.0019,1,0,0.0641,15164,11.7026,0,0,0,15084,0 +161,6.9207,11.0230,0.0085,0.0015,1,0,0.0296,1674,11.0542,0,0,0,1594,0 +162,6.9127,10.9027,0.0075,0.0015,1,0,0.0272,1598,10.9334,0,0,0,1518,0 +163,6.8376,11.0159,0.0081,0.0014,1,0,0.0308,1590,11.0469,0,0,0,1510,0 +164,6.8721,11.7822,0.0110,0.0012,1,0,0.0409,19274,11.8067,0,0,0,19194,0 +165,6.8263,11.1662,0.0283,0.0033,1,0,0.6798,1602,11.2228,0,0,0,1522,0 +166,13.0240,11.7665,0.0246,0.0056,1,0,0.0613,1684,11.8260,0,0,0,1604,0 +167,6.5440,12.0932,0.0067,0.0014,1,0,0.0225,1645,12.1252,0,0,0,1565,0 +168,6.6149,11.7804,0.0109,0.0016,1,0,0.0508,18536,11.8106,0,0,0,18456,0 +169,6.5273,11.1497,0.0077,0.0014,1,0,0.0321,1654,11.1803,0,0,0,1574,0 +170,6.6395,11.0770,0.0072,0.0014,1,0,0.0306,1643,11.1060,0,0,0,1563,0 +171,6.8584,10.9498,0.0084,0.0018,1,0,0.0261,1624,10.9817,0,0,0,1544,0 +172,6.6563,11.9903,0.0150,0.0020,1,0,0.0510,16858,12.0299,0,0,0,16778,0 +173,6.7600,11.3205,0.0095,0.0015,1,0,0.0307,1684,11.3532,0,0,0,1604,0 +174,6.6933,11.1210,0.0085,0.0015,1,0,0.0266,1732,11.1523,0,0,0,1652,0 +175,6.8550,11.0945,0.0198,0.0025,1,0,0.0598,1693,11.1438,0,0,0,1613,0 +176,6.7939,11.8763,0.0209,0.0019,1,0,0.0658,18789,11.9229,0,0,0,18709,0 +177,6.7574,10.8660,0.0102,0.0013,1,0,0.0302,2129,10.8992,0,0,0,2049,0 +178,6.7461,10.9130,0.0095,0.0013,1,0,0.0337,1684,10.9396,0,0,0,1604,0 +179,6.7189,11.0635,0.0137,0.0030,1,0,0.0413,1683,11.1045,0,0,0,1603,0 +180,6.7579,10.4204,0.0707,0.0016,1,0,0.2056,329074,10.5145,0,1,0,328994,0 +181,6.7473,26.9730,0.0163,0.0021,1,0,0.0517,16499,27.0140,0,0,0,16419,0 +182,6.8510,36.5769,0.0171,0.0018,1,0,0.0662,32679,36.6135,0,0,0,32599,0 +183,6.8130,49.8059,0.0230,0.0018,1,0,0.0608,55256,49.8528,0,0,0,55176,0 +184,6.7074,62.6720,0.0205,0.0027,1,0,0.0622,59515,62.7179,0,0,0,59435,0 +185,7.0365,69.4677,0.0158,0.0018,1,0,0.0536,23741,69.5051,0,0,0,23661,0 +186,6.9152,70.1336,0.0260,0.0020,1,0,0.0715,13309,70.1757,0,0,0,13229,0 +187,7.1670,69.7483,0.0139,0.0022,1,0,0.0485,10368,69.7706,0,0,0,10288,0 +188,7.0550,72.5496,0.0211,0.0016,1,0,0.0448,26244,72.5898,0,0,0,26164,0 +189,6.9129,71.3690,0.0100,0.0016,1,0,0.0289,5520,71.3965,0,0,0,5440,0 +190,6.7714,72.1333,0.0100,0.0015,1,0,0.0312,6353,72.1605,0,0,0,6273,0 +191,6.9015,71.7100,0.0170,0.0025,1,0,0.0553,5605,71.7476,0,0,0,5525,0 +192,6.7991,71.3305,0.0197,0.0022,1,0,0.0881,58971,71.3651,0,0,0,58891,0 +193,6.9545,71.0490,0.0183,0.0019,1,0,0.0550,5824,71.0750,0,0,0,5744,0 +194,6.8998,71.3381,0.0098,0.0014,1,0,0.0340,2058,71.3655,0,0,0,1978,0 +195,6.6018,72.6507,0.0083,0.0015,1,0,0.0271,1575,72.6718,0,0,0,1495,0 +196,6.9177,73.0192,0.0120,0.0013,1,0,0.0401,19253,73.0496,0,0,0,19173,0 +197,6.5329,71.9026,0.0206,0.0018,1,0,0.0502,1530,71.9390,0,0,0,1450,0 +198,6.4294,71.9552,0.0134,0.0017,1,0,0.0440,1534,71.9766,0,0,0,1454,0 +199,6.4736,71.1489,0.0094,0.0015,1,0,0.0300,1616,71.1762,0,0,0,1536,0 +200,6.6963,71.1600,0.0115,0.0015,1,0,0.0368,18466,71.1902,0,0,0,18386,0 +201,6.7962,71.8544,0.0088,0.0014,1,0,0.0252,1535,71.8810,0,0,0,1455,0 +202,6.3543,72.5332,0.0077,0.0014,1,0,0.0322,1535,72.5579,0,0,0,1455,0 +203,6.5407,71.3415,0.0090,0.0014,1,0,0.0266,1543,71.3675,0,0,0,1463,0 +204,6.5058,73.3093,0.0124,0.0018,1,0,0.0380,16793,73.3407,0,0,0,16713,0 +205,6.7805,71.6548,0.0117,0.0018,1,0,0.0375,1629,71.6845,0,0,0,1549,0 +206,6.7839,72.8580,0.0088,0.0016,1,0,0.0276,1623,72.8839,0,0,0,1543,0 +207,6.7518,71.1249,0.0094,0.0015,1,0,0.0317,1567,71.1571,0,0,0,1487,0 +208,6.7572,72.7118,0.0114,0.0016,1,0,0.0375,18741,72.7406,0,0,0,18661,0 +209,6.8038,71.5896,0.0097,0.0014,1,0,0.0266,1840,71.6165,0,0,0,1760,0 +210,6.8125,71.4830,0.0085,0.0016,1,0,0.0238,1559,71.5086,0,0,0,1479,0 +211,6.8941,71.8147,0.0083,0.0015,1,0,0.0305,1553,71.8399,0,0,0,1473,0 +212,6.8424,71.8939,0.0108,0.0016,1,0,0.0387,19694,71.9220,0,0,0,19614,0 +213,6.7476,70.7395,0.0096,0.0017,1,0,0.0279,1585,70.7669,0,0,0,1505,0 +214,6.7933,71.3657,0.0081,0.0015,1,0,0.0250,1582,71.3905,0,0,0,1502,0 +215,6.7951,71.5358,0.0085,0.0015,1,0,0.0276,1567,71.5617,0,0,0,1487,0 +216,6.8315,72.3544,0.0272,0.0019,1,0,0.0678,19440,72.3983,0,0,0,19360,0 +217,6.7640,72.2283,0.0117,0.0018,1,0,0.0354,1564,72.2588,0,0,0,1484,0 +218,6.7315,70.5821,0.0085,0.0015,1,0,0.0256,1579,70.6078,0,0,0,1499,0 +219,7.0453,70.1058,0.0090,0.0014,1,0,0.0267,1591,70.1325,0,0,0,1511,0 +220,6.8028,71.3648,0.0174,0.0017,1,0,0.0645,17497,71.4019,0,0,0,17417,0 +221,6.8485,72.1382,0.0121,0.0015,1,0,0.0299,1668,72.1693,0,0,0,1588,0 +222,6.7745,72.3097,0.0088,0.0014,1,0,0.0288,1693,72.3359,0,0,0,1613,0 +223,6.7737,72.5384,0.0090,0.0014,1,0,0.0227,1706,72.5651,0,0,0,1626,0 +224,6.6488,73.3511,0.0109,0.0021,1,0,0.0351,15256,73.3803,0,0,0,15176,0 +225,6.6889,72.9895,0.0087,0.0013,1,0,0.0279,1641,73.0148,0,0,0,1561,0 +226,6.8379,71.6839,0.0085,0.0013,1,0,0.0279,1714,71.7091,0,0,0,1634,0 +227,6.7650,71.0718,0.0086,0.0015,1,0,0.0265,1617,71.0980,0,0,0,1537,0 +228,6.8308,72.4329,0.0112,0.0025,1,0,0.0407,19333,72.4679,0,0,0,19253,0 +229,6.7992,71.8863,0.0088,0.0015,1,0,0.0267,1645,71.9125,0,0,0,1565,0 +230,6.7567,70.8505,0.0084,0.0016,1,0,0.0256,1619,70.8752,0,0,0,1539,0 +231,6.8402,70.9011,0.0087,0.0013,1,0,0.0235,1645,70.9273,0,0,0,1565,0 +232,6.9495,70.7754,0.0112,0.0015,1,0,0.0361,18542,70.8042,0,0,0,18462,0 +233,6.9457,70.8128,0.0084,0.0014,1,0,0.0250,1651,70.8383,0,0,0,1571,0 +234,6.9189,72.5658,0.0088,0.0013,1,0,0.0308,1696,72.5878,0,0,0,1616,0 +235,6.7955,72.3630,0.0164,0.0028,1,0,0.0500,1725,72.4015,0,0,0,1645,0 +236,6.7798,73.0496,0.0128,0.0015,1,0,0.0416,16930,73.0804,0,0,0,16850,0 +237,6.8768,72.6958,0.0094,0.0015,1,0,0.0238,1810,72.7228,0,0,0,1730,0 +238,6.7765,71.5781,0.0088,0.0015,1,0,0.0272,1821,71.6041,0,0,0,1741,0 +239,6.8025,72.1216,0.0083,0.0014,1,0,0.0251,1745,72.1469,0,0,0,1665,0 +240,6.7344,71.6728,0.0614,0.0015,1,0,0.1725,269017,71.7523,0,1,0,268937,0 +241,6.7563,71.2214,0.0142,0.0015,1,0,0.0408,23091,71.2535,0,0,0,23011,0 +242,6.9123,70.8793,0.0118,0.0015,1,0,0.0357,20232,70.9085,0,0,0,20152,0 +243,6.8058,70.8802,0.0118,0.0018,1,0,0.0410,28244,70.9109,0,0,0,28164,0 +244,6.9430,71.2981,0.0220,0.0016,1,0,0.0754,46983,71.3409,0,0,0,46903,0 +245,7.0221,73.0613,0.0105,0.0017,1,0,0.0362,13379,73.0890,0,0,0,13299,0 +246,6.9975,72.6271,0.0215,0.0017,1,0,0.0567,6576,72.6702,0,0,0,6496,0 +247,6.8806,71.8473,0.0108,0.0016,1,0,0.0369,5056,71.8760,0,0,0,4976,0 +248,6.8725,72.4671,0.0169,0.0016,1,0,0.0500,27520,72.5028,0,0,0,27440,0 +249,6.9820,71.2747,0.0133,0.0018,1,0,0.0270,4117,71.3057,0,0,0,4037,0 +250,6.8171,70.8192,0.0100,0.0013,1,0,0.0300,3638,70.8475,0,0,0,3558,0 +251,6.8390,71.7668,0.0142,0.0053,1,0,0.0542,3368,71.7985,0,0,0,3288,0 +252,7.0475,72.3366,0.0143,0.0015,1,0,0.0409,18033,72.3689,0,0,0,17953,0 +253,6.8522,71.2143,0.0094,0.0016,1,0,0.0284,1540,71.2412,0,0,0,1460,0 +254,6.9881,72.6782,0.0090,0.0015,1,0,0.0290,1676,72.7007,0,0,0,1596,0 +255,6.8191,72.6771,0.0088,0.0015,1,0,0.0316,1626,72.7029,0,0,0,1546,0 +256,7.0939,72.1642,0.0203,0.0015,1,0,0.0578,49357,72.2026,0,0,0,49277,0 +257,6.8739,72.1171,0.0087,0.0019,1,0,0.0240,2303,72.1427,0,0,0,2223,0 +258,6.7805,72.1436,0.0097,0.0015,1,0,0.0285,1735,72.1707,0,0,0,1655,0 +259,6.9929,71.3678,0.0094,0.0029,1,0,0.0266,1557,71.3965,0,0,0,1477,0 +260,6.8400,72.7518,0.0117,0.0015,1,0,0.0385,19292,72.7809,0,0,0,19212,0 +261,6.8907,71.5597,0.0080,0.0015,1,0,0.0292,1544,71.5842,0,0,0,1464,0 +262,6.8250,71.7120,0.0085,0.0015,1,0,0.0256,1551,71.7375,0,0,0,1471,0 +263,6.8617,70.9539,0.0165,0.0019,1,0,0.0563,1563,70.9912,0,0,0,1483,0 +264,6.8804,72.5120,0.0128,0.0014,1,0,0.0540,18502,72.5431,0,0,0,18422,0 +265,6.8907,70.3306,0.0077,0.0015,1,0,0.0272,1608,70.3581,0,0,0,1528,0 +266,6.8913,71.5048,0.0080,0.0014,1,0,0.0280,1574,71.5287,0,0,0,1494,0 +267,6.8437,72.2428,0.0081,0.0015,1,0,0.0247,1547,72.2678,0,0,0,1467,0 +268,6.7544,72.8545,0.0105,0.0016,1,0,0.0378,16838,72.8812,0,0,0,16758,0 +269,6.8863,72.6468,0.0085,0.0015,1,0,0.0249,1591,72.6712,0,0,0,1511,0 +270,6.8229,71.7364,0.0079,0.0013,1,0,0.0247,1696,71.7599,0,0,0,1616,0 +271,6.8417,72.1261,0.0077,0.0012,1,0,0.0235,1592,72.1495,0,0,0,1512,0 +272,6.8020,73.1309,0.0108,0.0015,1,0,0.0372,18865,73.1585,0,0,0,18785,0 +273,6.7099,72.0605,0.0085,0.0013,1,0,0.0250,2216,72.0853,0,0,0,2136,0 +274,7.3969,71.0475,0.0083,0.0015,1,0,0.0278,1681,71.0725,0,0,0,1601,0 +275,6.8598,71.6539,0.0080,0.0032,1,0,0.0230,1627,71.6804,0,0,0,1547,0 +276,6.8275,71.7390,0.0284,0.0017,1,0,0.0653,19775,71.7892,0,0,0,19695,0 +277,6.8325,71.5925,0.0105,0.0016,1,0,0.0357,1680,71.6216,0,0,0,1600,0 +278,6.7683,70.6135,0.0088,0.0013,1,0,0.0265,1629,70.6388,0,0,0,1549,0 +279,6.8860,71.3597,0.0083,0.0013,1,0,0.0266,1556,71.3860,0,0,0,1476,0 +280,6.7567,72.0662,0.0111,0.0015,1,0,0.0452,19581,72.0943,0,0,0,19501,0 +281,6.7794,71.8964,0.0113,0.0020,1,0,0.0325,1598,71.9294,0,0,0,1518,0 +282,6.7792,71.9682,0.0128,0.0014,1,0,0.0276,1602,71.9986,0,0,0,1522,0 +283,6.9532,71.0141,0.0090,0.0015,1,0,0.0255,1655,71.0406,0,0,0,1575,0 +284,7.0379,72.7208,0.0147,0.0015,1,0,0.0379,17580,72.7534,0,0,0,17500,0 +285,6.8686,71.5706,0.0090,0.0014,1,0,0.0251,1685,71.5965,0,0,0,1605,0 +286,6.8280,71.9453,0.0104,0.0013,1,0,0.0284,1846,71.9720,0,0,0,1766,0 +287,6.8670,70.6972,0.0078,0.0014,1,0,0.0238,1811,70.7216,0,0,0,1731,0 +288,6.8266,72.6019,0.0103,0.0022,1,0,0.0336,15548,72.6300,0,0,0,15468,0 +289,6.9200,71.0051,0.0083,0.0013,1,0,0.0249,2324,71.0304,0,0,0,2244,0 +290,6.8424,73.0805,0.0125,0.0014,1,0,0.0286,1979,73.1078,0,0,0,1899,0 +291,6.9180,73.0010,0.0088,0.0015,1,0,0.0253,1750,73.0267,0,0,0,1670,0 +292,6.8021,71.2842,0.0114,0.0017,1,0,0.0421,19376,71.3131,0,0,0,19296,0 +293,6.8366,72.0256,0.0085,0.0014,1,0,0.0263,1773,72.0512,0,0,0,1693,0 +294,7.1324,71.0298,0.0092,0.0016,1,0,0.0277,1813,71.0559,0,0,0,1733,0 +295,7.2090,71.6628,0.0176,0.0014,1,0,0.0510,1949,71.7010,0,0,0,1869,0 +296,6.9032,73.0403,0.0114,0.0015,1,0,0.0437,18745,73.0702,0,0,0,18665,0 +297,6.9221,72.7559,0.0112,0.0018,1,0,0.0296,1859,72.7856,0,0,0,1779,0 +298,6.8489,71.1639,0.0087,0.0015,1,0,0.0267,1911,71.1895,0,0,0,1831,0 +299,6.9922,70.6987,0.0115,0.0018,1,0,0.0319,1890,70.7318,0,0,0,1810,0 +300,7.0786,72.5518,0.0710,0.0015,1,0,0.1908,318275,72.6416,0,1,0,318195,0 +301,7.1145,71.9922,0.0143,0.0016,1,0,0.0436,19782,72.0247,0,0,0,19702,0 +302,6.8971,72.4951,0.0133,0.0015,1,0,0.0490,48395,72.5253,0,0,0,48315,0 +303,6.8835,73.0295,0.0115,0.0015,1,0,0.0370,25589,73.0586,0,0,0,25509,0 +304,7.0105,72.0063,0.0230,0.0026,1,0,0.0783,58164,72.0506,0,0,0,58084,0 +305,6.9260,72.2477,0.0124,0.0018,1,0,0.0396,23709,72.2777,0,0,0,23629,0 +306,6.9403,71.4932,0.0220,0.0020,1,0,0.0612,15164,71.5369,0,0,0,15084,0 +307,6.8087,70.9378,0.0220,0.0037,1,0,0.0647,14476,70.9779,0,0,0,14396,0 +308,6.8260,71.4180,0.0347,0.0032,1,0,0.0833,32792,71.4735,0,0,0,32712,0 +309,7.1672,70.9911,0.0293,0.0034,1,0,0.0762,6199,71.0405,0,0,0,6119,0 +310,6.8823,70.8529,0.0267,0.0025,1,0,0.0801,5059,70.9143,0,0,0,4979,0 +311,6.9890,72.5631,0.0288,0.0025,1,0,0.0707,4415,72.6272,0,0,0,4335,0 +312,6.6352,73.0564,0.0378,0.0022,1,0,0.0902,26888,73.1285,0,0,0,26808,0 +313,6.5100,70.4088,0.0264,0.0035,1,0,0.0658,3331,70.4721,0,0,0,3251,0 +314,6.3797,70.8320,0.0274,0.0023,1,0,0.0686,1603,70.8918,0,0,0,1523,0 +315,6.6642,70.8350,0.0202,0.0020,1,0,0.0600,1529,70.8803,0,0,0,1449,0 +316,6.3861,72.4393,0.0155,0.0021,1,0,0.0602,17513,72.4774,0,0,0,17433,0 +317,6.5665,72.3615,0.0289,0.0025,1,0,0.0696,1545,72.4267,0,0,0,1465,0 +318,6.4818,72.6773,0.0267,0.0026,1,0,0.0625,1631,72.7356,0,0,0,1551,0 +319,6.5615,71.1426,0.0150,0.0030,1,0,0.0500,1597,71.1796,0,0,0,1517,0 +320,6.6112,72.2127,0.0185,0.0024,1,0,0.0552,15173,72.2527,0,0,0,15093,0 +321,6.4414,73.0968,0.0132,0.0022,1,0,0.0488,1581,73.1305,0,0,0,1501,0 +322,6.2877,71.7325,0.0125,0.0021,1,0,0.0452,1587,71.7652,0,0,0,1507,0 +323,6.5203,71.4272,0.0109,0.0021,1,0,0.0418,1545,71.4580,0,0,0,1465,0 +324,6.5323,72.5274,0.0165,0.0027,1,0,0.0735,19286,72.5593,0,0,0,19206,0 +325,6.6322,71.1702,0.0125,0.0021,1,0,0.0425,1534,71.2025,0,0,0,1454,0 +326,6.7003,70.6455,0.0124,0.0026,1,0,0.0401,1539,70.6783,0,0,0,1459,0 +327,6.6440,71.1638,0.0122,0.0026,1,0,0.0391,1534,71.1958,0,0,0,1454,0 +328,6.5974,71.2100,0.0146,0.0024,1,0,0.0645,18477,71.2483,0,0,0,18397,0 +329,6.5624,73.1173,0.0155,0.0022,1,0,0.0515,1580,73.1539,0,0,0,1500,0 +330,6.8613,72.7361,0.0120,0.0019,1,0,0.0450,1560,72.7673,0,0,0,1480,0 +331,6.9075,72.4163,0.0190,0.0030,1,0,0.0462,1569,72.4520,0,0,0,1489,0 +332,6.7026,73.2559,0.0158,0.0027,1,0,0.0580,16803,73.2932,0,0,0,16723,0 +333,6.7092,71.5210,0.0142,0.0028,1,0,0.0416,1672,71.5564,0,0,0,1592,0 +334,6.9215,71.5519,0.0129,0.0026,1,0,0.0512,1604,71.5799,0,0,0,1524,0 +335,6.6716,71.8295,0.0127,0.0024,1,0,0.0485,1608,71.8571,0,0,0,1528,0 +336,6.8279,72.4979,0.0240,0.0020,1,0,0.0719,18776,72.5380,0,0,0,18696,0 +337,6.7023,71.9177,0.0142,0.0024,1,0,0.0533,1973,71.9523,0,0,0,1893,0 +338,6.6231,70.9955,0.0171,0.0023,1,0,0.0488,1643,71.0276,0,0,0,1563,0 +339,6.6768,70.4782,0.0112,0.0027,1,0,0.0495,1662,70.5047,0,0,0,1582,0 +340,6.6442,71.3602,0.0177,0.0025,1,0,0.0652,19788,71.3988,0,0,0,19708,0 +341,6.6630,70.6928,0.0124,0.0026,1,0,0.0436,1709,70.7259,0,0,0,1629,0 +342,6.6317,71.8625,0.0168,0.0027,1,0,0.0517,1728,71.9008,0,0,0,1648,0 +343,6.9325,72.3885,0.0115,0.0024,1,0,0.0462,1752,72.4200,0,0,0,1672,0 +344,6.7272,73.2212,0.0163,0.0023,1,0,0.0573,19554,73.2571,0,0,0,19474,0 +345,6.7657,72.9219,0.0121,0.0022,1,0,0.0428,1656,72.9532,0,0,0,1576,0 +346,6.9571,71.8844,0.0154,0.0023,1,0,0.0498,1618,71.9149,0,0,0,1538,0 +347,6.8147,70.2962,0.0119,0.0021,1,0,0.0500,1650,70.3272,0,0,0,1570,0 +348,6.8237,72.8648,0.0143,0.0016,1,0,0.0377,17636,72.9016,0,0,0,17556,0 +349,6.8008,72.2975,0.0094,0.0015,1,0,0.0282,1683,72.3248,0,0,0,1603,0 +350,6.7982,72.0971,0.0079,0.0013,1,0,0.0275,1728,72.1217,0,0,0,1648,0 +351,7.0233,71.5450,0.0088,0.0015,1,0,0.0251,1744,71.5708,0,0,0,1664,0 +352,7.0152,70.7704,0.0210,0.0016,1,0,0.0571,50422,70.8118,0,0,0,50342,0 +353,6.9210,70.8570,0.0088,0.0016,1,0,0.0258,1629,70.8827,0,0,0,1549,0 +354,6.8270,72.2729,0.0085,0.0014,1,0,0.0255,1907,72.2986,0,0,0,1827,0 +355,6.7565,71.6643,0.0148,0.0051,1,0,0.0522,1657,71.7035,0,0,0,1577,0 +356,6.8441,73.2157,0.0136,0.0020,1,0,0.0490,19349,73.2483,0,0,0,19269,0 +357,7.1547,71.7504,0.0124,0.0020,1,0,0.0285,1728,71.7797,0,0,0,1648,0 +358,6.7838,71.5725,0.0091,0.0017,1,0,0.0273,1712,71.5995,0,0,0,1632,0 +359,6.7774,71.9340,0.0089,0.0015,1,0,0.0315,1725,71.9602,0,0,0,1645,0 +360,6.8918,71.0748,0.0622,0.0016,1,0,0.1808,290277,71.1554,0,1,0,290197,0 +361,6.9097,71.9567,0.0123,0.0016,1,0,0.0380,20021,71.9870,0,0,0,19941,0 +362,6.7866,71.8447,0.0106,0.0016,1,0,0.0375,20019,71.8722,0,0,0,19939,0 +363,6.7896,72.7738,0.0125,0.0015,1,0,0.0367,24217,72.8035,0,0,0,24137,0 +364,6.7451,72.5486,0.0125,0.0015,1,0,0.0504,43245,72.5783,0,0,0,43165,0 +365,6.7835,72.4167,0.0114,0.0018,1,0,0.0315,14846,72.4456,0,0,0,14766,0 +366,6.8707,70.0887,0.0327,0.0026,1,0,0.0688,16229,70.1383,0,0,0,16149,0 +367,6.7428,70.6334,0.0118,0.0021,1,0,0.0376,4336,70.6662,0,0,0,4256,0 +368,6.7584,71.2896,0.0208,0.0022,1,0,0.0750,31812,71.3317,0,0,0,31732,0 +369,6.7932,71.9049,0.0101,0.0015,1,0,0.0352,6905,71.9333,0,0,0,6825,0 +370,6.7410,71.6363,0.0097,0.0016,1,0,0.0265,5885,71.6628,0,0,0,5805,0 +371,7.0510,72.5620,0.0139,0.0023,1,0,0.0603,6118,72.5912,0,0,0,6038,0 +372,6.8776,73.0901,0.0176,0.0017,1,0,0.0522,27837,73.1260,0,0,0,27757,0 +373,6.8340,72.0230,0.0095,0.0015,1,0,0.0284,1816,72.0505,0,0,0,1736,0 +374,6.8245,72.2961,0.0095,0.0013,1,0,0.0302,1531,72.3229,0,0,0,1451,0 +375,6.8223,70.2137,0.0082,0.0014,1,0,0.0282,1527,70.2387,0,0,0,1447,0 +376,7.0194,72.5190,0.0112,0.0014,1,0,0.0378,19573,72.5471,0,0,0,19493,0 +377,6.7951,73.1013,0.0189,0.0016,1,0,0.0600,1535,73.1409,0,0,0,1455,0 +378,6.7283,71.9434,0.0164,0.0019,1,0,0.0506,1531,71.9741,0,0,0,1451,0 +379,6.7490,72.1125,0.0163,0.0017,1,0,0.0468,1523,72.1523,0,0,0,1443,0 +380,6.9402,71.7701,0.0184,0.0041,1,0,0.0680,17490,71.8307,0,0,0,17410,0 +381,7.1945,71.6235,0.0115,0.0015,1,0,0.0467,1596,71.6473,0,0,0,1516,0 +382,7.1588,71.2900,0.0145,0.0022,1,0,0.0468,1597,71.3286,0,0,0,1517,0 +383,6.9774,72.4052,0.0134,0.0015,1,0,0.0369,1616,72.4445,0,0,0,1536,0 +384,6.8333,71.5937,0.0114,0.0013,1,0,0.0459,15292,71.6262,0,0,0,15212,0 +385,6.4396,71.9289,0.0090,0.0017,1,0,0.0328,1955,71.9512,0,0,0,1875,0 +386,6.4447,71.8109,0.0106,0.0018,1,0,0.0315,1614,71.8355,0,0,0,1534,0 +387,6.2994,72.0125,0.0081,0.0013,1,0,0.0372,1530,72.0381,0,0,0,1450,0 +388,6.4308,72.4562,0.0123,0.0015,1,0,0.0419,19256,72.4818,0,0,0,19176,0 +389,6.5792,71.6944,0.0083,0.0013,1,0,0.0280,1537,71.7157,0,0,0,1457,0 +390,6.6666,70.6788,0.0082,0.0013,1,0,0.0298,1530,70.7038,0,0,0,1450,0 +391,6.6714,71.7105,0.0084,0.0013,1,0,0.0295,1533,71.7318,0,0,0,1453,0 +392,6.7988,71.4360,0.0231,0.0028,1,0,0.0713,18451,71.4750,0,0,0,18371,0 +393,6.8080,72.0648,0.0098,0.0017,1,0,0.0323,1533,72.0881,0,0,0,1453,0 +394,6.7698,72.8159,0.0086,0.0014,1,0,0.0335,1562,72.8428,0,0,0,1482,0 +395,6.8312,71.3175,0.0089,0.0016,1,0,0.0313,1633,71.3439,0,0,0,1553,0 +396,6.7880,73.5631,0.0230,0.0021,1,0,0.0656,16791,73.6083,0,0,0,16711,0 +397,6.7810,71.6834,0.0100,0.0016,1,0,0.0334,1560,71.7117,0,0,0,1480,0 +398,6.6320,71.1388,0.0083,0.0015,1,0,0.0310,1607,71.1645,0,0,0,1527,0 +399,6.8156,70.4093,0.0086,0.0013,1,0,0.0272,1554,70.4355,0,0,0,1474,0 +400,6.8360,71.2157,0.0113,0.0015,1,0,0.0421,18787,71.2403,0,0,0,18707,0 +401,6.8207,71.8591,0.0087,0.0015,1,0,0.0260,2263,71.8846,0,0,0,2183,0 +402,6.8755,72.5238,0.0115,0.0020,1,0,0.0260,1626,72.5494,0,0,0,1546,0 +403,6.7857,72.8423,0.0085,0.0015,1,0,0.0260,1585,72.8675,0,0,0,1505,0 +404,6.8078,73.4584,0.0123,0.0013,1,0,0.0406,19706,73.4887,0,0,0,19626,0 +405,6.8588,70.6097,0.0093,0.0015,1,0,0.0270,1647,70.6366,0,0,0,1567,0 +406,6.7899,71.5133,0.0091,0.0015,1,0,0.0293,1589,71.5396,0,0,0,1509,0 +407,6.7928,71.5507,0.0090,0.0014,1,0,0.0210,1555,71.5775,0,0,0,1475,0 +408,6.8184,71.9231,0.0130,0.0016,1,0,0.0487,19493,71.9545,0,0,0,19413,0 +409,6.7985,72.6036,0.0090,0.0013,1,0,0.0268,1577,72.6301,0,0,0,1497,0 +410,6.9642,71.5912,0.0083,0.0014,1,0,0.0269,1565,71.6165,0,0,0,1485,0 +411,7.0369,70.6115,0.0090,0.0016,1,0,0.0257,1623,70.6377,0,0,0,1543,0 +412,6.8119,73.4112,0.0105,0.0015,1,0,0.0413,17517,73.4394,0,0,0,17437,0 +413,6.8313,72.3612,0.0083,0.0014,1,0,0.0248,1701,72.3866,0,0,0,1621,0 +414,6.8266,70.7416,0.0083,0.0013,1,0,0.0253,1670,70.7666,0,0,0,1590,0 +415,6.8030,71.6844,0.0140,0.0021,1,0,0.0463,1715,71.7189,0,0,0,1635,0 +416,6.8086,71.5580,0.0125,0.0015,1,0,0.0446,15324,71.5839,0,0,0,15244,0 +417,6.7898,71.7523,0.0088,0.0014,1,0,0.0280,1821,71.7787,0,0,0,1741,0 +418,6.7926,72.6709,0.0086,0.0014,1,0,0.0295,1802,72.6970,0,0,0,1722,0 +419,6.8305,72.3249,0.0080,0.0017,1,0,0.0275,1650,72.3472,0,0,0,1570,0 +420,6.9603,70.4732,0.0693,0.0015,1,0,0.1915,304373,70.5614,0,1,0,304293,0 +421,6.8482,71.5651,0.0155,0.0020,1,0,0.0451,19542,71.6029,0,0,0,19462,0 +422,6.8147,71.7673,0.0263,0.0017,1,0,0.0722,51754,71.8075,0,0,0,51674,0 +423,7.3448,72.3698,0.0190,0.0015,1,0,0.0612,64840,72.4026,0,0,0,64760,0 +424,6.8340,73.8235,0.0181,0.0017,1,0,0.0595,61147,73.8599,0,0,0,61067,0 +425,6.8548,72.3521,0.0125,0.0015,1,0,0.0387,25734,72.3821,0,0,0,25654,0 +426,6.8782,72.7404,0.0253,0.0020,1,0,0.0587,10490,72.7906,0,0,0,10410,0 +427,6.9040,72.5104,0.0107,0.0015,1,0,0.0409,7719,72.5400,0,0,0,7639,0 +428,7.1632,71.1130,0.0187,0.0022,1,0,0.0535,28240,71.1534,0,0,0,28160,0 +429,6.8201,71.3386,0.0095,0.0015,1,0,0.0304,5149,71.3655,0,0,0,5069,0 +430,6.8340,71.8350,0.0120,0.0015,1,0,0.0290,6220,71.8638,0,0,0,6140,0 +431,6.8273,71.5787,0.0147,0.0028,1,0,0.0564,2739,71.6086,0,0,0,2659,0 +432,7.0271,72.4939,0.0190,0.0017,1,0,0.0541,29555,72.5315,0,0,0,29475,0 +433,6.9946,71.9175,0.0095,0.0015,1,0,0.0278,2207,71.9447,0,0,0,2127,0 +434,6.9330,71.0037,0.0094,0.0018,1,0,0.0289,1564,71.0325,0,0,0,1484,0 +435,6.8709,71.0708,0.0083,0.0015,1,0,0.0368,1537,71.0963,0,0,0,1457,0 +436,6.9327,73.3784,0.0111,0.0040,1,0,0.0419,19734,73.4130,0,0,0,19654,0 +437,7.1009,72.5397,0.0245,0.0050,1,0,0.0669,1545,72.5936,0,0,0,1465,0 +438,6.8429,71.7222,0.0151,0.0013,1,0,0.0511,1591,71.7570,0,0,0,1511,0 +439,6.8212,71.6810,0.0091,0.0013,1,0,0.0320,1547,71.7085,0,0,0,1467,0 +440,6.8829,72.0961,0.0120,0.0014,1,0,0.0408,19428,72.1265,0,0,0,19348,0 +441,6.8359,72.0216,0.0118,0.0015,1,0,0.0278,1536,72.0514,0,0,0,1456,0 +442,6.6595,71.6302,0.0089,0.0014,1,0,0.0263,1587,71.6571,0,0,0,1507,0 +443,6.6266,71.8392,0.0088,0.0013,1,0,0.0265,1579,71.8652,0,0,0,1499,0 +444,6.7010,71.4475,0.0110,0.0014,1,0,0.0398,17533,71.4761,0,0,0,17453,0 +445,6.8187,71.0145,0.0097,0.0015,1,0,0.0276,1548,71.0420,0,0,0,1468,0 +446,6.8493,70.8393,0.0088,0.0013,1,0,0.0260,1609,70.8657,0,0,0,1529,0 +447,6.9361,71.4411,0.0084,0.0014,1,0,0.0256,1580,71.4666,0,0,0,1500,0 +448,6.8688,72.7346,0.0147,0.0015,1,0,0.0561,50191,72.7670,0,0,0,50111,0 +449,6.8086,72.0872,0.0088,0.0013,1,0,0.0299,2062,72.1132,0,0,0,1982,0 +450,6.8640,71.5917,0.0116,0.0017,1,0,0.0347,1608,71.6245,0,0,0,1528,0 +451,6.8579,71.2162,0.0091,0.0017,1,0,0.0253,1536,71.2484,0,0,0,1456,0 +452,6.9040,72.8277,0.0118,0.0013,1,0,0.0387,19269,72.8565,0,0,0,19189,0 +453,6.8430,73.0567,0.0092,0.0015,1,0,0.0265,1531,73.0833,0,0,0,1451,0 +454,6.7910,72.6240,0.0087,0.0015,1,0,0.0239,1556,72.6494,0,0,0,1476,0 +455,6.7824,71.4115,0.0085,0.0015,1,0,0.0282,1691,71.4373,0,0,0,1611,0 +456,6.8192,71.5258,0.0308,0.0022,1,0,0.0639,18514,71.5788,0,0,0,18434,0 +457,6.9138,70.4732,0.0100,0.0015,1,0,0.0293,1593,70.5012,0,0,0,1513,0 +458,6.7637,70.8207,0.0094,0.0015,1,0,0.0260,1567,70.8482,0,0,0,1487,0 +459,6.7755,70.7971,0.0080,0.0015,1,0,0.0289,1564,70.8218,0,0,0,1484,0 +460,6.8564,73.0105,0.0109,0.0015,1,0,0.0380,16811,73.0387,0,0,0,16731,0 +461,6.8234,73.2684,0.0084,0.0014,1,0,0.0260,1600,73.2937,0,0,0,1520,0 +462,6.9840,71.7684,0.0079,0.0014,1,0,0.0278,1569,71.7933,0,0,0,1489,0 +463,6.7896,73.0487,0.0085,0.0014,1,0,0.0277,1596,73.0738,0,0,0,1516,0 +464,6.8842,71.5932,0.0121,0.0014,1,0,0.0359,18781,71.6118,0,0,0,18701,0 +465,6.8637,72.0068,0.0092,0.0013,1,0,0.0267,2187,72.0338,0,0,0,2107,0 +466,6.7861,72.9257,0.0083,0.0014,1,0,0.0268,1580,72.9505,0,0,0,1500,0 +467,6.8888,70.8313,0.0089,0.0013,1,0,0.0270,1562,70.8570,0,0,0,1482,0 +468,6.8114,71.8986,0.0115,0.0015,1,0,0.0392,19694,71.9273,0,0,0,19614,0 +469,6.7885,70.6384,0.0082,0.0013,1,0,0.0270,1577,70.6634,0,0,0,1497,0 +470,6.8632,71.1643,0.0085,0.0013,1,0,0.0247,1585,71.1894,0,0,0,1505,0 +471,6.8282,71.3217,0.0083,0.0015,1,0,0.0262,1572,71.3468,0,0,0,1492,0 +472,6.8781,72.6512,0.0109,0.0017,1,0,0.0394,19431,72.6803,0,0,0,19351,0 +473,6.8558,71.7890,0.0086,0.0015,1,0,0.0294,1566,71.8108,0,0,0,1486,0 +474,6.7929,71.6788,0.0084,0.0015,1,0,0.0256,1612,71.7060,0,0,0,1532,0 +475,6.8075,72.0028,0.0143,0.0024,1,0,0.0498,1684,72.0323,0,0,0,1604,0 +476,6.8186,73.7200,0.0123,0.0015,1,0,0.0386,17570,73.7492,0,0,0,17490,0 +477,6.8322,73.2490,0.0094,0.0014,1,0,0.0267,1698,73.2759,0,0,0,1618,0 +478,6.7350,70.5945,0.0082,0.0015,1,0,0.0257,1691,70.6193,0,0,0,1611,0 +479,6.8018,71.9892,0.0114,0.0015,1,0,0.0291,1694,72.0161,0,0,0,1614,0 +480,6.9916,70.8696,0.0608,0.0015,1,0,0.1772,292138,70.9491,0,1,0,292058,0 +481,6.8843,71.3021,0.0120,0.0020,1,0,0.0393,17497,71.3318,0,0,0,17417,0 +482,6.8556,72.6910,0.0123,0.0015,1,0,0.0457,31881,72.7200,0,0,0,31801,0 +483,6.7886,71.4709,0.0107,0.0015,1,0,0.0337,15549,71.4980,0,0,0,15469,0 +484,6.8269,71.3684,0.0170,0.0019,1,0,0.0570,30523,71.4098,0,0,0,30443,0 +485,6.9262,72.3737,0.0120,0.0015,1,0,0.0332,6547,72.4033,0,0,0,6467,0 +486,6.8170,70.8700,0.0227,0.0045,1,0,0.0573,6227,70.9099,0,0,0,6147,0 +487,6.8931,69.9347,0.0149,0.0021,1,0,0.0437,5897,69.9641,0,0,0,5817,0 +488,6.7733,73.0805,0.0152,0.0019,1,0,0.0552,27192,73.1150,0,0,0,27112,0 +489,6.9123,70.3980,0.0103,0.0014,1,0,0.0288,4623,70.4256,0,0,0,4543,0 +490,6.8759,72.4270,0.0097,0.0016,1,0,0.0287,4743,72.4537,0,0,0,4663,0 +491,6.9240,72.9167,0.0147,0.0030,1,0,0.0530,4402,72.9474,0,0,0,4322,0 +492,6.9786,72.2649,0.0202,0.0015,1,0,0.0414,17627,72.3043,0,0,0,17547,0 +493,6.8524,73.1040,0.0095,0.0019,1,0,0.0269,1727,73.1325,0,0,0,1647,0 +494,6.8169,70.7523,0.0093,0.0041,1,0,0.0268,2060,70.7820,0,0,0,1980,0 +495,6.8067,70.7661,0.0080,0.0014,1,0,0.0297,1529,70.7872,0,0,0,1449,0 +496,7.1490,72.4358,0.0115,0.0014,1,0,0.0387,18871,72.4644,0,0,0,18791,0 +497,6.9452,71.8564,0.0136,0.0024,1,0,0.0427,2339,71.8920,0,0,0,2259,0 +498,6.8625,72.9931,0.0090,0.0014,1,0,0.0262,1647,73.0192,0,0,0,1567,0 +499,6.8241,72.5752,0.0083,0.0014,1,0,0.0258,1583,72.6001,0,0,0,1503,0 +500,6.7695,71.9572,0.0114,0.0017,1,0,0.0444,19740,71.9821,0,0,0,19660,0 +501,6.8355,71.9250,0.0110,0.0015,1,0,0.0302,1661,71.9503,0,0,0,1581,0 +502,6.9679,71.5636,0.0084,0.0055,1,0,0.0260,1594,71.5851,0,0,0,1514,0 +503,6.8444,71.4064,0.0085,0.0014,1,0,0.0272,1560,71.4315,0,0,0,1480,0 +504,6.9441,72.1664,0.0108,0.0015,1,0,0.0366,19464,72.1938,0,0,0,19384,0 +505,6.8937,71.3846,0.0083,0.0014,1,0,0.0242,1572,71.4096,0,0,0,1492,0 +506,6.8845,71.4909,0.0076,0.0039,1,0,0.0271,1586,71.5171,0,0,0,1506,0 +507,6.9108,71.7246,0.0079,0.0014,1,0,0.0253,1610,71.7488,0,0,0,1530,0 +508,6.7877,72.5756,0.0125,0.0015,1,0,0.0375,17598,72.6047,0,0,0,17518,0 +509,6.7900,72.2306,0.0085,0.0013,1,0,0.0230,1648,72.2549,0,0,0,1568,0 +510,6.8222,71.6390,0.0078,0.0015,1,0,0.0284,1875,71.6602,0,0,0,1795,0 +511,6.8133,71.5121,0.0125,0.0019,1,0,0.0299,1825,71.5405,0,0,0,1745,0 +512,6.8712,72.0630,0.0240,0.0015,1,0,0.0563,49611,72.1045,0,0,0,49531,0 +513,6.8041,71.7542,0.0120,0.0019,1,0,0.0287,2185,71.7882,0,0,0,2105,0 +514,6.7903,71.6169,0.0079,0.0014,1,0,0.0270,1911,71.6409,0,0,0,1831,0 +515,6.7662,71.7790,0.0093,0.0018,1,0,0.0262,1603,71.8083,0,0,0,1523,0 +516,6.7700,71.6397,0.0262,0.0018,1,0,0.0595,19368,71.6916,0,0,0,19288,0 +517,6.8095,71.7804,0.0145,0.0020,1,0,0.0437,1623,71.8162,0,0,0,1543,0 +518,6.7697,71.5172,0.0089,0.0015,1,0,0.0290,1610,71.5441,0,0,0,1530,0 +519,6.7750,70.7909,0.0087,0.0016,1,0,0.0270,1583,70.8173,0,0,0,1503,0 +520,6.7567,72.7781,0.0122,0.0014,1,0,0.0401,18562,72.8078,0,0,0,18482,0 +521,6.8937,70.6182,0.0090,0.0014,1,0,0.0290,1617,70.6439,0,0,0,1537,0 +522,6.7641,70.7211,0.0087,0.0015,1,0,0.0243,1681,70.7464,0,0,0,1601,0 +523,6.8316,72.2542,0.0090,0.0015,1,0,0.0272,1646,72.2812,0,0,0,1566,0 +524,6.8247,71.0483,0.0127,0.0020,1,0,0.0421,16844,71.0787,0,0,0,16764,0 +525,6.8282,72.8825,0.0094,0.0018,1,0,0.0260,1912,72.9098,0,0,0,1832,0 +526,6.7825,72.7965,0.0085,0.0014,1,0,0.0294,2015,72.8220,0,0,0,1935,0 +527,6.8122,70.8261,0.0085,0.0014,1,0,0.0261,1643,70.8519,0,0,0,1563,0 +528,6.8526,72.9101,0.0110,0.0014,1,0,0.0380,18944,72.9377,0,0,0,18864,0 +529,6.8541,71.8670,0.0087,0.0014,1,0,0.0255,2290,71.8925,0,0,0,2210,0 +530,6.7702,71.5509,0.0106,0.0020,1,0,0.0290,1711,71.5825,0,0,0,1631,0 +531,6.8057,72.7835,0.0088,0.0015,1,0,0.0266,1723,72.8096,0,0,0,1643,0 +532,6.7393,72.1849,0.0116,0.0016,1,0,0.0376,19850,72.2136,0,0,0,19770,0 +533,6.8380,71.4874,0.0086,0.0015,1,0,0.0264,1785,71.5127,0,0,0,1705,0 +534,6.7829,70.9301,0.0084,0.0015,1,0,0.0241,1729,70.9557,0,0,0,1649,0 +535,6.7286,71.3095,0.0154,0.0023,1,0,0.0424,1851,71.3456,0,0,0,1771,0 +536,6.7979,72.1493,0.0124,0.0016,1,0,0.0410,19620,72.1798,0,0,0,19540,0 +537,6.7735,71.9740,0.0093,0.0014,1,0,0.0264,1787,72.0011,0,0,0,1707,0 +538,6.7570,72.9268,0.0082,0.0014,1,0,0.0262,1776,72.9520,0,0,0,1696,0 +539,6.7993,70.5912,0.0089,0.0016,1,0,0.0295,1799,70.6166,0,0,0,1719,0 +540,6.7233,72.5843,0.0730,0.0018,1,0,0.2173,372882,72.6762,0,1,0,372802,0 +541,7.0417,71.6810,0.0127,0.0015,1,0,0.0396,22491,71.7108,0,0,0,22411,0 +542,6.8990,72.1734,0.0122,0.0017,1,0,0.0452,34725,72.2028,0,0,0,34645,0 +543,7.0079,73.2192,0.0194,0.0015,1,0,0.0460,43851,73.2564,0,0,0,43771,0 +544,6.9458,72.0291,0.0187,0.0022,1,0,0.0502,57218,72.0666,0,0,0,57138,0 +545,6.8106,72.2343,0.0115,0.0015,1,0,0.0380,22092,72.2626,0,0,0,22012,0 +546,6.8292,71.6508,0.0239,0.0018,1,0,0.0578,13237,71.6959,0,0,0,13157,0 +547,6.7581,70.8785,0.0158,0.0022,1,0,0.0498,3503,70.9148,0,0,0,3423,0 +548,6.7553,71.7999,0.0155,0.0016,1,0,0.0471,27183,71.8371,0,0,0,27103,0 +549,6.7973,71.7162,0.0095,0.0015,1,0,0.0277,2602,71.7428,0,0,0,2522,0 +550,6.7775,71.6080,0.0096,0.0015,1,0,0.0304,3130,71.6350,0,0,0,3050,0 +551,6.9081,72.7447,0.0157,0.0023,1,0,0.0547,1726,72.7816,0,0,0,1646,0 +552,7.0223,73.4177,0.0230,0.0032,1,0,0.0687,18488,73.4598,0,0,0,18408,0 +553,6.9880,70.6269,0.0142,0.0022,1,0,0.0345,1551,70.6616,0,0,0,1471,0 +554,6.8357,70.3726,0.0090,0.0021,1,0,0.0300,1558,70.4007,0,0,0,1478,0 +555,6.8507,70.0766,0.0089,0.0017,1,0,0.0288,1551,70.1038,0,0,0,1471,0 +556,6.9378,71.9423,0.0110,0.0016,1,0,0.0442,16823,71.9668,0,0,0,16743,0 +557,6.6386,73.1912,0.0258,0.0022,1,0,0.0555,1555,73.2427,0,0,0,1475,0 +558,6.5730,72.0666,0.0128,0.0015,1,0,0.0398,1694,72.0987,0,0,0,1614,0 +559,6.6812,71.5407,0.0240,0.0022,1,0,0.0498,1599,71.5730,0,0,0,1519,0 +560,6.8009,70.6915,0.0244,0.0024,1,0,0.0636,18872,70.7348,0,0,0,18792,0 +561,6.8508,71.6816,0.0175,0.0015,1,0,0.0312,2493,71.7200,0,0,0,2413,0 +562,6.5353,72.2044,0.0293,0.0025,1,0,0.0630,1732,72.2712,0,0,0,1652,0 +563,6.6262,72.6292,0.0334,0.0020,1,0,0.0610,1562,72.6970,0,0,0,1482,0 +564,6.7511,73.3014,0.0291,0.0026,1,0,0.0977,19717,73.3659,0,0,0,19637,0 +565,6.9384,70.9339,0.0303,0.0022,1,0,0.0618,1530,70.9990,0,0,0,1450,0 +566,6.6831,72.5427,0.0206,0.0022,1,0,0.0622,1588,72.5953,0,0,0,1508,0 +567,6.4501,70.2556,0.0301,0.0025,1,0,0.0655,1534,70.3215,0,0,0,1454,0 +568,6.5023,72.0830,0.0260,0.0025,1,0,0.0754,19461,72.1420,0,0,0,19381,0 +569,6.4607,71.5234,0.0300,0.0038,1,0,0.0636,1569,71.5888,0,0,0,1489,0 +570,6.7178,70.1786,0.0115,0.0018,1,0,0.0395,1539,70.2147,0,0,0,1459,0 +571,6.4808,73.0165,0.0115,0.0020,1,0,0.0298,1560,73.0571,0,0,0,1480,0 +572,6.4435,72.1544,0.0122,0.0017,1,0,0.0484,17616,72.1856,0,0,0,17536,0 +573,6.3918,71.5640,0.0092,0.0017,1,0,0.0286,1599,71.5915,0,0,0,1519,0 +574,6.7028,72.3330,0.0078,0.0015,1,0,0.0254,1698,72.3590,0,0,0,1618,0 +575,7.0687,71.0280,0.0083,0.0013,1,0,0.0303,1697,71.0526,0,0,0,1617,0 +576,6.5782,72.5537,0.0222,0.0019,1,0,0.0646,15310,72.5920,0,0,0,15230,0 +577,6.8781,71.8880,0.0124,0.0016,1,0,0.0359,1990,71.9193,0,0,0,1910,0 +578,6.6755,71.9477,0.0085,0.0014,1,0,0.0275,1773,71.9740,0,0,0,1693,0 +579,7.3686,70.4541,0.0086,0.0013,1,0,0.0265,1625,70.4802,0,0,0,1545,0 +580,6.7826,71.6912,0.0123,0.0016,1,0,0.0378,19309,71.7219,0,0,0,19229,0 +581,6.8309,72.8346,0.0124,0.0013,1,0,0.0260,1647,72.8653,0,0,0,1567,0 +582,6.9541,71.6672,0.0090,0.0014,1,0,0.0238,1627,71.6943,0,0,0,1547,0 +583,6.7260,70.3077,0.0094,0.0015,1,0,0.0309,1666,70.3348,0,0,0,1586,0 +584,6.8798,73.0455,0.0111,0.0014,1,0,0.0393,18563,73.0736,0,0,0,18483,0 +585,6.7951,70.6210,0.0098,0.0014,1,0,0.0302,1606,70.6481,0,0,0,1526,0 +586,6.6889,71.8593,0.0090,0.0014,1,0,0.0265,1692,71.8849,0,0,0,1612,0 +587,6.8742,72.4921,0.0085,0.0014,1,0,0.0267,1658,72.5178,0,0,0,1578,0 +588,6.7817,72.0412,0.0108,0.0015,1,0,0.0361,16848,72.0692,0,0,0,16768,0 +589,6.7938,73.1983,0.0116,0.0017,1,0,0.0284,1752,73.2258,0,0,0,1672,0 +590,6.8374,72.8216,0.0122,0.0025,1,0,0.0238,1817,72.8487,0,0,0,1737,0 +591,6.8912,71.0502,0.0099,0.0016,1,0,0.0260,1785,71.0779,0,0,0,1705,0 +592,6.8304,72.6255,0.0117,0.0017,1,0,0.0348,19045,72.6552,0,0,0,18965,0 +593,6.7705,71.6604,0.0085,0.0014,1,0,0.0237,2504,71.6860,0,0,0,2424,0 +594,6.8296,71.7191,0.0084,0.0015,1,0,0.0230,1800,71.7445,0,0,0,1720,0 +595,6.8153,71.7602,0.0146,0.0023,1,0,0.0471,1765,71.7954,0,0,0,1685,0 +596,6.7275,72.7932,0.0134,0.0018,1,0,0.0424,19817,72.8248,0,0,0,19737,0 +597,6.8156,71.0182,0.0123,0.0024,1,0,0.0269,1756,71.0533,0,0,0,1676,0 +598,6.8927,71.3900,0.0103,0.0015,1,0,0.0269,1882,71.4185,0,0,0,1802,0 +599,6.9294,71.3354,0.0095,0.0018,1,0,0.0312,1815,71.3650,0,0,0,1735,0 +600,7.2435,70.6290,0.0740,0.0015,1,0,0.1898,319629,70.7222,0,1,0,319549,0 +601,6.7981,72.0105,0.0135,0.0018,1,0,0.0398,16873,72.0425,0,0,0,16793,0 +602,6.8218,70.9896,0.0125,0.0014,1,0,0.0387,24748,71.0190,0,0,0,24668,0 +603,6.7911,71.8556,0.0155,0.0015,1,0,0.0501,35760,71.8890,0,0,0,35680,0 +604,6.8137,72.6837,0.0176,0.0015,1,0,0.0459,43361,72.7198,0,0,0,43281,0 +605,6.8159,73.2131,0.0106,0.0013,1,0,0.0347,11431,73.2417,0,0,0,11351,0 +606,6.7675,72.0401,0.0261,0.0019,1,0,0.0568,8029,72.0824,0,0,0,7949,0 +607,6.7254,71.7176,0.0114,0.0019,1,0,0.0440,6701,71.7473,0,0,0,6621,0 +608,6.7414,71.7034,0.0215,0.0015,1,0,0.0647,58325,71.7434,0,0,0,58245,0 +609,6.8588,70.7980,0.0095,0.0020,1,0,0.0333,6765,70.8219,0,0,0,6685,0 +610,6.7982,70.5235,0.0096,0.0014,1,0,0.0307,4724,70.5500,0,0,0,4644,0 +611,6.8175,71.4868,0.0149,0.0027,1,0,0.0467,1891,71.5234,0,0,0,1811,0 +612,6.8961,73.0300,0.0129,0.0018,1,0,0.0404,19389,73.0613,0,0,0,19309,0 +613,6.7861,72.9050,0.0112,0.0018,1,0,0.0353,1584,72.9342,0,0,0,1504,0 +614,6.9865,72.4909,0.0086,0.0017,1,0,0.0293,1550,72.5175,0,0,0,1470,0 +615,6.8399,71.2810,0.0083,0.0015,1,0,0.0260,1531,71.3063,0,0,0,1451,0 +616,6.9075,72.3570,0.0117,0.0015,1,0,0.0373,18470,72.3860,0,0,0,18390,0 +617,6.7731,71.6697,0.0125,0.0027,1,0,0.0548,1545,71.7030,0,0,0,1465,0 +618,6.7902,71.7468,0.0090,0.0015,1,0,0.0295,1583,71.7749,0,0,0,1503,0 +619,6.7477,71.3587,0.0160,0.0040,1,0,0.0274,1619,71.3940,0,0,0,1539,0 +620,6.7408,72.4593,0.0123,0.0017,1,0,0.0375,16864,72.4891,0,0,0,16784,0 +621,6.9147,71.6230,0.0086,0.0017,1,0,0.0260,1686,71.6483,0,0,0,1606,0 +622,6.9312,71.6021,0.0078,0.0016,1,0,0.0249,1593,71.6263,0,0,0,1513,0 +623,6.7712,71.4678,0.0082,0.0014,1,0,0.0327,1562,71.4895,0,0,0,1482,0 +624,6.7245,71.5369,0.0108,0.0017,1,0,0.0379,18771,71.5646,0,0,0,18691,0 +625,6.8186,71.5132,0.0083,0.0014,1,0,0.0243,2065,71.5382,0,0,0,1985,0 +626,6.8435,71.2239,0.0088,0.0015,1,0,0.0263,1592,71.2498,0,0,0,1512,0 +627,6.7707,70.5027,0.0082,0.0014,1,0,0.0295,1557,70.5240,0,0,0,1477,0 +628,6.7349,72.1007,0.0118,0.0015,1,0,0.0388,19708,72.1290,0,0,0,19628,0 +629,6.7694,70.3168,0.0087,0.0017,1,0,0.0303,1593,70.3389,0,0,0,1513,0 +630,6.7460,72.0410,0.0083,0.0016,1,0,0.0268,1556,72.0662,0,0,0,1476,0 +631,6.7955,72.0455,0.0099,0.0017,1,0,0.0257,1574,72.0704,0,0,0,1494,0 +632,6.8267,72.4838,0.0118,0.0015,1,0,0.0427,19450,72.5030,0,0,0,19370,0 +633,6.8205,72.9111,0.0084,0.0014,1,0,0.0282,1554,72.9363,0,0,0,1474,0 +634,6.9343,70.9365,0.0138,0.0018,1,0,0.0270,1555,70.9725,0,0,0,1475,0 +635,7.0380,71.9573,0.0089,0.0015,1,0,0.0245,1558,71.9829,0,0,0,1478,0 +636,6.9640,72.1842,0.0240,0.0022,1,0,0.0653,17517,72.2251,0,0,0,17437,0 +637,6.7935,70.4462,0.0170,0.0024,1,0,0.0421,1673,70.4920,0,0,0,1593,0 +638,6.7144,71.0932,0.0107,0.0017,1,0,0.0301,1737,71.1227,0,0,0,1657,0 +639,6.7593,72.1025,0.0090,0.0015,1,0,0.0298,1693,72.1282,0,0,0,1613,0 +640,6.7850,72.5832,0.0112,0.0015,1,0,0.0423,15293,72.6118,0,0,0,15213,0 +641,6.9702,72.7298,0.0084,0.0013,1,0,0.0249,1712,72.7554,0,0,0,1632,0 +642,7.0834,72.7222,0.0114,0.0014,1,0,0.0282,1776,72.7514,0,0,0,1696,0 +643,6.8931,71.3434,0.0107,0.0016,1,0,0.0275,1638,71.3718,0,0,0,1558,0 +644,6.9457,72.9879,0.0098,0.0016,1,0,0.0366,19316,73.0165,0,0,0,19236,0 +645,6.7505,71.9100,0.0132,0.0014,1,0,0.0250,1678,71.9401,0,0,0,1598,0 +646,7.4389,70.2269,0.0085,0.0013,1,0,0.0278,1657,70.2525,0,0,0,1577,0 +647,6.8105,70.8114,0.0082,0.0013,1,0,0.0260,1731,70.8358,0,0,0,1651,0 +648,7.2900,72.9008,0.0105,0.0014,1,0,0.0369,18515,72.9278,0,0,0,18435,0 +649,7.0453,70.8542,0.0089,0.0014,1,0,0.0284,1684,70.8803,0,0,0,1604,0 +650,6.8540,72.3213,0.0105,0.0013,1,0,0.0285,1717,72.3481,0,0,0,1637,0 +651,6.9770,72.5611,0.0084,0.0015,1,0,0.0233,1767,72.5856,0,0,0,1687,0 +652,6.8424,72.0167,0.0135,0.0019,1,0,0.0393,16892,72.0510,0,0,0,16812,0 +653,7.1451,72.9925,0.0089,0.0014,1,0,0.0275,1808,73.0181,0,0,0,1728,0 +654,6.8070,72.4218,0.0081,0.0013,1,0,0.0237,1866,72.4463,0,0,0,1786,0 +655,6.9177,71.5600,0.0141,0.0027,1,0,0.0420,1804,71.5938,0,0,0,1724,0 +656,6.9025,72.4056,0.0127,0.0014,1,0,0.0418,19066,72.4352,0,0,0,18986,0 +657,6.9278,71.9304,0.0095,0.0015,1,0,0.0243,2022,71.9564,0,0,0,1942,0 +658,6.8400,71.5601,0.0079,0.0014,1,0,0.0265,1758,71.5839,0,0,0,1678,0 +659,6.9763,71.4002,0.0105,0.0016,1,0,0.0289,1820,71.4259,0,0,0,1740,0 +660,7.0641,70.9050,0.0681,0.0014,1,0,0.1895,326833,70.9911,0,1,0,326753,0 +661,6.8623,71.6362,0.0216,0.0032,1,0,0.0440,13057,71.6855,0,0,0,12977,0 +662,6.8930,71.9169,0.0272,0.0037,1,0,0.0879,36609,71.9798,0,0,0,36529,0 +663,6.8840,71.5419,0.0332,0.0027,1,0,0.0955,53444,71.5931,0,0,0,53364,0 +664,6.7928,72.8440,0.0335,0.0023,1,0,0.0974,60294,72.9093,0,0,0,60214,0 +665,6.9244,71.8466,0.0373,0.0031,1,0,0.0822,24634,71.9179,0,0,0,24554,0 +666,6.7641,71.3313,0.0302,0.0028,1,0,0.0762,12551,71.3959,0,0,0,12471,0 +667,6.6538,72.2864,0.0266,0.0030,1,0,0.0730,10216,72.3454,0,0,0,10136,0 +668,6.6503,72.1187,0.0205,0.0027,1,0,0.0733,26184,72.1615,0,0,0,26104,0 +669,6.6425,71.9098,0.0159,0.0027,1,0,0.0512,5440,71.9472,0,0,0,5360,0 +670,6.3886,72.2858,0.0147,0.0027,1,0,0.0523,6480,72.3213,0,0,0,6400,0 +671,6.5570,71.8206,0.0177,0.0030,1,0,0.0591,5301,71.8545,0,0,0,5221,0 +672,6.7358,71.2154,0.0250,0.0028,1,0,0.0725,26698,71.2643,0,0,0,26618,0 +673,6.5815,71.7338,0.0152,0.0018,1,0,0.0530,5165,71.7691,0,0,0,5085,0 +674,6.4878,71.0757,0.0180,0.0025,1,0,0.0685,1971,71.1096,0,0,0,1891,0 +675,6.4982,71.2034,0.0185,0.0024,1,0,0.0494,1575,71.2368,0,0,0,1495,0 +676,6.5443,72.7288,0.0203,0.0020,1,0,0.0614,19309,72.7689,0,0,0,19229,0 +677,6.5979,70.7242,0.0232,0.0016,1,0,0.0616,1574,70.7678,0,0,0,1494,0 +678,6.8943,71.6084,0.0178,0.0024,1,0,0.0601,1566,71.6500,0,0,0,1486,0 +679,6.7654,72.2535,0.0150,0.0025,1,0,0.0525,1590,72.2834,0,0,0,1510,0 +680,6.7475,72.2110,0.0173,0.0024,1,0,0.0587,18506,72.2504,0,0,0,18426,0 +681,6.7760,71.9057,0.0152,0.0025,1,0,0.0508,1571,71.9363,0,0,0,1491,0 +682,6.5085,72.4244,0.0153,0.0024,1,0,0.0503,1537,72.4607,0,0,0,1457,0 +683,7.0495,71.7112,0.0148,0.0019,1,0,0.0479,1536,71.7465,0,0,0,1456,0 +684,6.5288,72.4006,0.0165,0.0022,1,0,0.0607,16789,72.4375,0,0,0,16709,0 +685,6.5878,72.5837,0.0160,0.0025,1,0,0.0504,1531,72.6212,0,0,0,1451,0 +686,6.5988,71.1980,0.0181,0.0023,1,0,0.0477,1696,71.2308,0,0,0,1616,0 +687,6.5885,71.1254,0.0150,0.0020,1,0,0.0467,1534,71.1606,0,0,0,1454,0 +688,6.6650,71.9715,0.0181,0.0023,1,0,0.0581,18760,72.0099,0,0,0,18680,0 +689,6.6895,72.8525,0.0154,0.0025,1,0,0.0446,1841,72.8890,0,0,0,1761,0 +690,6.7829,71.8749,0.0150,0.0025,1,0,0.0514,1532,71.9108,0,0,0,1452,0 +691,6.6730,71.9460,0.0157,0.0027,1,0,0.0403,1534,71.9795,0,0,0,1454,0 +692,6.6060,71.6568,0.0176,0.0026,1,0,0.0625,19691,71.6958,0,0,0,19611,0 +693,6.7516,70.5719,0.0159,0.0020,1,0,0.0492,1571,70.6093,0,0,0,1491,0 +694,6.7162,72.4938,0.0165,0.0018,1,0,0.0516,1530,72.5304,0,0,0,1450,0 +695,6.9080,71.1265,0.0138,0.0022,1,0,0.0450,1534,71.1608,0,0,0,1454,0 +696,6.7750,72.6771,0.0281,0.0021,1,0,0.0757,19423,72.7230,0,0,0,19343,0 +697,6.6745,71.8542,0.0305,0.0035,1,0,0.0948,1559,71.9533,0,0,0,1479,0 +698,6.8814,71.8872,0.0401,0.0037,1,0,0.0532,1529,71.9477,0,0,0,1449,0 +699,6.9914,71.7101,0.0135,0.0025,1,0,0.0505,1533,71.7392,0,0,0,1453,0 +700,6.9584,73.7876,0.0195,0.0060,1,0,0.0541,17471,73.8358,0,0,0,17391,0 +701,6.8643,72.7887,0.0110,0.0021,1,0,0.0427,1606,72.8144,0,0,0,1526,0 +702,7.4811,70.5850,0.0214,0.0035,1,0,0.0553,1584,70.6310,0,0,0,1504,0 +703,7.3245,70.7660,0.0239,0.0019,1,0,0.0465,1545,70.8104,0,0,0,1465,0 +704,7.6524,70.6205,0.0231,0.0024,1,0,0.0742,50279,70.6647,0,0,0,50199,0 +705,7.3587,71.6562,0.0113,0.0026,1,0,0.0375,1558,71.6885,0,0,0,1478,0 +706,6.8575,70.4821,0.0122,0.0017,1,0,0.0443,1703,70.5134,0,0,0,1623,0 +707,7.4632,71.0883,0.0106,0.0019,1,0,0.0336,1558,71.1178,0,0,0,1478,0 +708,7.1785,72.1879,0.0132,0.0016,1,0,0.0468,19288,72.2200,0,0,0,19208,0 +709,6.7582,72.2245,0.0112,0.0017,1,0,0.0348,1607,72.2544,0,0,0,1527,0 +710,7.6703,71.0419,0.0104,0.0020,1,0,0.0297,1573,71.0725,0,0,0,1493,0 +711,6.8197,72.5828,0.0106,0.0018,1,0,0.0385,1653,72.6117,0,0,0,1573,0 +712,6.8247,72.5201,0.0122,0.0015,1,0,0.0404,18521,72.5500,0,0,0,18441,0 +713,7.1513,72.2959,0.0082,0.0016,1,0,0.0272,1721,72.3260,0,0,0,1641,0 +714,6.7607,72.2636,0.0093,0.0015,1,0,0.0323,1639,72.2865,0,0,0,1559,0 +715,6.7661,70.2281,0.0161,0.0023,1,0,0.0464,1637,70.2693,0,0,0,1557,0 +716,6.8257,79.0158,0.0103,0.0017,1,0,0.0367,16863,79.0459,0,0,0,16783,0 +717,7.0378,86.5640,0.0088,0.0028,1,0,0.0253,1690,86.5979,0,0,0,1610,0 +718,6.9081,97.8585,0.0098,0.0047,1,0,0.0304,1620,97.8874,0,0,0,1540,0 +719,6.7664,107.6092,0.0106,0.0022,1,0,0.0271,1599,107.6434,0,0,0,1519,0 diff --git a/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/summary.md b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/summary.md new file mode 100644 index 0000000..8f2914b --- /dev/null +++ b/benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/summary.md @@ -0,0 +1,29 @@ +# 2017 iMac macOS Receiver Live Smoke + +Date: 2026-05-17 + +## Setup + +- Primary: MacBook Pro M1 Max +- Receiver: 2017 21.5-inch Retina 4K iMac, macOS 15.7.7 via OCLP +- Network: direct 1GbE link-local +- Receiver IP: `169.254.70.114` +- Receiver: `apps/receiver-macos/.build/release/ibridge-receiver-macos --port 48320 --fullscreen` + +## Results + +| Mode | Frames encoded | Sender drops | Send failures | Avg encode ms | P95 encode ms | Avg send ms | Receiver result | +|---|---:|---:|---:|---:|---:|---:|---| +| `1920x1080@60` HEVC | 300/300 | 0 | 0 | 13.325 | 19.448 | 0.074 | receiver logged 300 frames | +| `3840x2160@60` HEVC | 720/720 | 0 | 0 | 56.705 | 73.049 | 0.047 | receiver logged frame receipt through frame 660 before sender disconnect | + +## Read + +- The live macOS receiver plumbing works on the 2017 iMac. +- The user observed the iMac screen changing during the run. +- SSH `screencapture` did not reliably capture the receiver's + `AVSampleBufferDisplayLayer` output, so remote screenshots are weak evidence + for this path. +- The 4K run proves live frame transport/decode/display plumbing, not smooth + 4K60 interaction. Sender backpressure or frame dropping is still needed to + keep latency bounded when encode falls behind. diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_console.txt b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_console.txt new file mode 100644 index 0000000..42b39c4 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=30 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=35 +data_rate_limit_mbps=35 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +frames_requested=150 +frames_submitted=150 +frames_skipped=0 +frames_encoded=150 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.598 +avg_encode_latency_ms=14.516 +p95_encode_latency_ms=25.772 +max_encode_latency_ms=42.551 +avg_send_ms=0.060 +p95_send_ms=0.098 +payload_bytes=596030 +bytes_sent=608030 +send_target=169.254.70.114:48320 +csv=benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_primary_stats.csv b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_primary_stats.csv new file mode 100644 index 0000000..6641601 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_30fps_35mbps_primary_stats.csv @@ -0,0 +1,151 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.8731,42.5507,0.1205,0.0123,1,0,0.1001,25988,42.7058,0,1,0,25908,0 +1,2.9556,10.5474,0.0446,0.0020,1,0,0.0733,7439,10.6259,0,0,0,7359,0 +2,2.9478,10.4220,0.0226,0.0025,1,0,0.0614,7994,10.4790,0,0,0,7914,0 +3,3.2050,10.7502,0.0313,0.0021,1,0,0.0797,16051,10.7974,0,0,0,15971,0 +4,3.0985,10.3126,0.0165,0.0018,1,0,0.0284,12618,10.3510,0,0,0,12538,0 +5,3.3854,10.3386,0.0163,0.0018,1,0,0.0294,3256,10.3748,0,0,0,3176,0 +6,3.6613,10.4758,0.0152,0.0021,1,0,0.0323,2063,10.5126,0,0,0,1983,0 +7,3.9202,10.4743,0.0172,0.0016,1,0,0.0294,1253,10.5071,0,0,0,1173,0 +8,4.0739,10.5164,0.0170,0.0020,1,0,0.0380,8433,10.5551,0,0,0,8353,0 +9,4.0071,10.4235,0.0182,0.0034,1,0,0.0490,822,10.4598,0,0,0,742,0 +10,4.0139,10.4387,0.0103,0.0019,1,0,0.0285,817,10.4739,0,0,0,737,0 +11,4.0332,10.4030,0.0116,0.0020,1,0,0.0277,818,10.4382,0,0,0,738,0 +12,4.4990,10.4380,0.0184,0.0027,1,0,0.0602,7750,10.4870,0,0,0,7670,0 +13,4.4304,10.3676,0.0152,0.0025,1,0,0.0376,875,10.4109,0,0,0,795,0 +14,4.0042,10.5064,0.0197,0.0035,1,0,0.0535,1088,10.5564,0,0,0,1008,0 +15,4.5247,10.5292,0.0245,0.0042,1,0,0.0701,1169,10.5746,0,0,0,1089,0 +16,4.5178,10.6233,0.0310,0.0045,1,0,0.0785,8848,10.6869,0,0,0,8768,0 +17,4.0748,10.4229,0.0183,0.0030,1,0,0.0709,2120,10.4596,0,0,0,2040,0 +18,4.4345,10.4327,0.0248,0.0035,1,0,0.0637,1173,10.4779,0,0,0,1093,0 +19,4.5215,10.4854,0.0152,0.0030,1,0,0.0499,1204,10.5301,0,0,0,1124,0 +20,4.4995,10.6866,0.0285,0.0036,1,0,0.0821,8117,10.7350,0,0,0,8037,0 +21,4.5491,10.5763,0.0187,0.0031,1,0,0.0648,948,10.6138,0,0,0,868,0 +22,4.4268,10.5552,0.0155,0.0027,1,0,0.0498,946,10.5894,0,0,0,866,0 +23,4.4833,10.6587,0.0168,0.0035,1,0,0.0508,874,10.6950,0,0,0,794,0 +24,4.7654,10.4979,0.0164,0.0027,1,0,0.0560,8006,10.5401,0,0,0,7926,0 +25,4.5778,10.7329,0.0248,0.0045,1,0,0.0679,827,10.7884,0,0,0,747,0 +26,4.4985,10.6475,0.0233,0.0043,1,0,0.0578,816,10.7030,0,0,0,736,0 +27,4.5054,10.4733,0.0197,0.0037,1,0,0.0648,823,10.5192,0,0,0,743,0 +28,4.1432,10.5446,0.0231,0.0032,1,0,0.0775,7994,10.5981,0,0,0,7914,0 +29,3.7870,10.5830,0.0229,0.0022,1,0,0.0621,883,10.6154,0,0,0,803,0 +30,2.9872,10.2316,0.0198,0.0017,1,0,0.0570,976,10.2587,0,0,0,896,0 +31,2.9781,10.4026,0.0187,0.0021,1,0,0.0491,992,10.4383,0,0,0,912,0 +32,3.0359,10.3689,0.0230,0.0021,1,0,0.0653,7160,10.4012,0,0,0,7080,0 +33,3.1692,10.6386,0.0198,0.0024,1,0,0.0713,1459,10.6750,0,0,0,1379,0 +34,3.0694,10.5238,0.0234,0.0034,1,0,0.0607,988,10.5778,0,0,0,908,0 +35,3.3738,10.5726,0.0260,0.0038,1,0,0.0658,922,10.6186,0,0,0,842,0 +36,3.4440,10.5003,0.0222,0.0035,1,0,0.0626,9192,10.5510,0,0,0,9112,0 +37,3.6197,10.4610,0.0195,0.0026,1,0,0.0554,834,10.5064,0,0,0,754,0 +38,3.9330,10.5194,0.0277,0.0066,1,0,0.0583,846,10.5629,0,0,0,766,0 +39,4.0557,10.5996,0.0277,0.0038,1,0,0.0698,856,10.6486,0,0,0,776,0 +40,4.1761,10.5840,0.0209,0.0043,1,0,0.0784,8414,10.6248,0,0,0,8334,0 +41,4.4653,10.6218,0.0147,0.0022,1,0,0.0391,857,10.6541,0,0,0,777,0 +42,4.4535,10.4793,0.0183,0.0021,1,0,0.0380,870,10.5234,0,0,0,790,0 +43,4.4270,10.5458,0.0134,0.0022,1,0,0.0319,872,10.5766,0,0,0,792,0 +44,4.9192,10.3827,0.0145,0.0022,1,0,0.0428,7708,10.4146,0,0,0,7628,0 +45,4.7943,10.4627,0.0107,0.0019,1,0,0.0328,951,10.4989,0,0,0,871,0 +46,4.5454,10.7330,0.0203,0.0033,1,0,0.0723,956,10.7822,0,0,0,876,0 +47,4.5210,10.5547,0.0132,0.0025,1,0,0.0393,895,10.5856,0,0,0,815,0 +48,4.4412,10.4687,0.0138,0.0020,1,0,0.0405,8705,10.4985,0,0,0,8625,0 +49,4.5288,10.5083,0.0128,0.0025,1,0,0.0342,1465,10.5390,0,0,0,1385,0 +50,4.8835,10.5809,0.0155,0.0030,1,0,0.0536,953,10.6151,0,0,0,873,0 +51,5.1301,10.8615,0.0126,0.0024,1,0,0.0379,918,10.8990,0,0,0,838,0 +52,5.0240,10.6103,0.0165,0.0027,1,0,0.0527,9015,10.6452,0,0,0,8935,0 +53,5.0310,10.5882,0.0226,0.0037,1,0,0.0651,903,10.6325,0,0,0,823,0 +54,5.0816,10.6420,0.0210,0.0035,1,0,0.0717,919,10.6952,0,0,0,839,0 +55,5.0842,10.3992,0.0116,0.0025,1,0,0.0369,912,10.4398,0,0,0,832,0 +56,4.7433,10.3481,0.0138,0.0025,1,0,0.0560,8947,10.3786,0,0,0,8867,0 +57,4.5048,10.6913,0.0115,0.0023,1,0,0.0367,937,10.7271,0,0,0,857,0 +58,4.0408,10.4065,0.0229,0.0022,1,0,0.0686,905,10.4391,0,0,0,825,0 +59,4.0691,10.4528,0.0129,0.0023,1,0,0.0305,895,10.4831,0,0,0,815,0 +60,4.1738,9.2701,0.0460,0.0022,1,0,0.0767,61370,9.3331,0,1,0,61290,0 +61,4.4956,10.4885,0.0150,0.0022,1,0,0.0340,2886,10.5211,0,0,0,2806,0 +62,4.5048,10.3921,0.0157,0.0020,1,0,0.0375,1956,10.4319,0,0,0,1876,0 +63,4.4743,10.5093,0.0123,0.0022,1,0,0.0347,2193,10.5387,0,0,0,2113,0 +64,4.8558,10.5105,0.0131,0.0024,1,0,0.0405,8079,10.5405,0,0,0,7999,0 +65,4.9315,10.5084,0.0150,0.0022,1,0,0.0380,3622,10.5417,0,0,0,3542,0 +66,4.9772,10.5622,0.0165,0.0030,1,0,0.0380,2101,10.5974,0,0,0,2021,0 +67,5.2577,10.4239,0.0128,0.0026,1,0,0.0357,1693,10.4554,0,0,0,1613,0 +68,4.9861,10.5810,0.0143,0.0022,1,0,0.0454,9429,10.6200,0,0,0,9349,0 +69,5.0288,10.8815,0.0235,0.0037,1,0,0.0957,953,10.9494,0,0,0,873,0 +70,5.2112,10.9217,0.0222,0.0040,1,0,0.0717,907,10.9595,0,0,0,827,0 +71,5.1054,10.5876,0.0143,0.0027,1,0,0.0442,956,10.6198,0,0,0,876,0 +72,5.2322,11.2256,0.0148,0.0026,1,0,0.0447,8505,11.2580,0,0,0,8425,0 +73,5.2255,10.9515,0.0138,0.0023,1,0,0.0416,860,10.9938,0,0,0,780,0 +74,4.7446,10.5818,0.0193,0.0033,1,0,0.0602,885,10.6316,0,0,0,805,0 +75,5.0587,10.6435,0.0170,0.0033,1,0,0.0661,936,10.6804,0,0,0,856,0 +76,4.6387,10.2855,0.0272,0.0050,1,0,0.0980,7704,10.3479,0,0,0,7624,0 +77,5.0943,10.6954,0.0245,0.0042,1,0,0.0855,836,10.7513,0,0,0,756,0 +78,5.0320,10.6615,0.0145,0.0030,1,0,0.0429,1103,10.6958,0,0,0,1023,0 +79,4.6013,10.4666,0.0145,0.0025,1,0,0.0343,864,10.5001,0,0,0,784,0 +80,5.0543,10.5596,0.0160,0.0024,1,0,0.0480,8677,10.5944,0,0,0,8597,0 +81,5.1490,11.0188,0.0244,0.0037,1,0,0.0700,1887,11.0669,0,0,0,1807,0 +82,4.7256,10.8265,0.0187,0.0028,1,0,0.0728,1038,10.8649,0,0,0,958,0 +83,5.0886,10.4650,0.0129,0.0022,1,0,0.0394,906,10.5067,0,0,0,826,0 +84,4.5680,10.7710,0.0226,0.0024,1,0,0.0651,9026,10.8159,0,0,0,8946,0 +85,5.2142,11.1768,0.0381,0.0051,1,0,0.1077,917,11.2480,0,0,0,837,0 +86,5.0103,11.1467,0.0216,0.0037,1,0,0.0802,898,11.1880,0,0,0,818,0 +87,4.9327,11.0267,0.0197,0.0036,1,0,0.0679,886,11.0758,0,0,0,806,0 +88,4.7567,11.3975,0.0328,0.0063,1,0,0.1013,8892,11.4530,0,0,0,8812,0 +89,4.9294,10.7849,0.0301,0.0035,1,0,0.0680,865,10.8356,0,0,0,785,0 +90,3.2098,11.0086,0.0205,0.0037,1,0,0.0683,900,11.0412,0,0,0,820,0 +91,5.1337,11.4954,0.0187,0.0030,1,0,0.0627,862,11.5247,0,0,0,782,0 +92,3.2556,20.3093,0.0222,0.0043,1,0,0.0752,8017,20.3614,0,0,0,7937,0 +93,3.9057,25.7446,0.0246,0.0047,1,0,0.0716,873,25.8076,0,0,0,793,0 +94,6.2273,26.0215,0.0185,0.0053,1,0,0.0835,1124,26.0672,0,0,0,1044,0 +95,5.7797,25.7944,0.0180,0.0034,1,0,0.0785,970,25.8460,0,0,0,890,0 +96,5.3921,25.9566,0.0263,0.0037,1,0,0.1352,22494,26.0135,0,0,0,22414,0 +97,3.5815,25.6261,0.0236,0.0056,1,0,0.0686,1318,25.6704,0,0,0,1238,0 +98,3.1742,25.6819,0.0171,0.0036,1,0,0.0622,1051,25.7283,0,0,0,971,0 +99,3.7532,25.8020,0.0235,0.0047,1,0,0.0812,962,25.8504,0,0,0,882,0 +100,5.7306,25.9198,0.0260,0.0055,1,0,0.1005,9185,25.9656,0,0,0,9105,0 +101,5.2514,20.2239,0.0175,0.0046,1,0,0.0638,905,20.2772,0,0,0,825,0 +102,5.6622,16.0315,0.0194,0.0048,1,0,0.0785,870,16.0748,0,0,0,790,0 +103,5.3362,17.6628,0.0132,0.0037,1,0,0.0784,895,17.6979,0,0,0,815,0 +104,5.3686,21.6034,0.0140,0.0030,1,0,0.0511,8436,21.6360,0,0,0,8356,0 +105,5.0805,15.6750,0.0112,0.0027,1,0,0.0379,900,15.7050,0,0,0,820,0 +106,5.4204,21.7258,0.0161,0.0035,1,0,0.0669,890,21.7700,0,0,0,810,0 +107,5.4659,16.4812,0.0139,0.0043,1,0,0.0720,901,16.5173,0,0,0,821,0 +108,5.6624,21.7548,0.0224,0.0043,1,0,0.0942,7694,21.8134,0,0,0,7614,0 +109,5.7542,16.3601,0.0123,0.0031,1,0,0.0556,982,16.3929,0,0,0,902,0 +110,5.7901,21.6634,0.0177,0.0072,1,0,0.0974,1076,21.7071,0,0,0,996,0 +111,5.5745,15.8418,0.0112,0.0028,1,0,0.0379,958,15.8724,0,0,0,878,0 +112,5.0765,17.9244,0.0115,0.0021,1,0,0.0527,8738,17.9601,0,0,0,8658,0 +113,4.8290,21.4693,0.0125,0.0030,1,0,0.0473,1548,21.5006,0,0,0,1468,0 +114,4.6422,18.0343,0.0159,0.0058,1,0,0.0959,1062,18.0827,0,0,0,982,0 +115,4.8402,18.2746,0.0114,0.0034,1,0,0.0559,1051,18.3051,0,0,0,971,0 +116,4.9116,17.3892,0.0150,0.0029,1,0,0.0685,9082,17.4231,0,0,0,9002,0 +117,4.9077,21.9610,0.0212,0.0035,1,0,0.0680,969,22.0024,0,0,0,889,0 +118,4.1568,19.2443,0.0103,0.0024,1,0,0.0586,987,19.2721,0,0,0,907,0 +119,4.2409,17.2384,0.0099,0.0027,1,0,0.0370,1001,17.2658,0,0,0,921,0 +120,4.4834,17.7755,0.0355,0.0023,1,0,0.0730,44493,17.8289,0,1,0,44413,0 +121,4.4800,17.9123,0.0101,0.0023,1,0,0.0445,2885,17.9478,0,0,0,2805,0 +122,4.5008,19.6912,0.0142,0.0036,1,0,0.0455,2460,19.7311,0,0,0,2380,0 +123,4.6763,26.1959,0.0135,0.0037,1,0,0.0710,1248,26.2285,0,0,0,1168,0 +124,4.7393,17.6339,0.0116,0.0021,1,0,0.0491,8245,17.6686,0,0,0,8165,0 +125,4.4391,22.0238,0.0200,0.0032,1,0,0.0723,1330,22.0763,0,0,0,1250,0 +126,4.8437,17.3861,0.0107,0.0025,1,0,0.0446,1499,17.4148,0,0,0,1419,0 +127,4.9797,20.6582,0.0125,0.0035,1,0,0.0633,1598,20.6899,0,0,0,1518,0 +128,4.8749,16.2617,0.0136,0.0029,1,0,0.0522,7848,16.2950,0,0,0,7768,0 +129,5.0380,20.9740,0.0112,0.0025,1,0,0.0459,3439,21.0028,0,0,0,3359,0 +130,5.2054,17.9465,0.0130,0.0035,1,0,0.0470,1987,17.9803,0,0,0,1907,0 +131,5.0775,19.8792,0.0174,0.0037,1,0,0.1148,2325,19.9234,0,0,0,2245,0 +132,4.9049,21.8100,0.0143,0.0040,1,0,0.0925,9356,21.8438,0,0,0,9276,0 +133,5.0419,16.1290,0.0105,0.0022,1,0,0.0384,838,16.1633,0,0,0,758,0 +134,4.4288,20.9881,0.0099,0.0024,1,0,0.0319,901,21.0272,0,0,0,821,0 +135,4.4742,19.6448,0.0086,0.0022,1,0,0.0297,927,19.6782,0,0,0,847,0 +136,4.4388,17.0265,0.0127,0.0030,1,0,0.0590,8508,17.0577,0,0,0,8428,0 +137,4.7395,21.6998,0.0206,0.0043,1,0,0.0651,810,21.7414,0,0,0,730,0 +138,4.7211,16.2374,0.0129,0.0031,1,0,0.0522,842,16.2690,0,0,0,762,0 +139,4.4031,17.1270,0.0145,0.0033,1,0,0.0610,832,17.1616,0,0,0,752,0 +140,4.8288,26.0119,0.0182,0.0038,1,0,0.0778,7682,26.0615,0,0,0,7602,0 +141,4.5483,14.9157,0.0110,0.0027,1,0,0.0341,857,14.9451,0,0,0,777,0 +142,5.2358,23.1558,0.0170,0.0032,1,0,0.0549,1296,23.1941,0,0,0,1216,0 +143,5.2162,21.5650,0.0114,0.0029,1,0,0.0398,1225,21.6072,0,0,0,1145,0 +144,5.1693,18.6838,0.0121,0.0026,1,0,0.0478,8904,18.7210,0,0,0,8824,0 +145,5.0184,21.2809,0.0278,0.0053,1,0,0.1189,1683,21.3342,0,0,0,1603,0 +146,5.1049,15.6438,0.0119,0.0027,1,0,0.0356,979,15.6750,0,0,0,899,0 +147,4.9777,21.5719,0.0112,0.0029,1,0,0.0358,964,21.6136,0,0,0,884,0 +148,5.0754,18.9330,0.0170,0.0043,1,0,0.0978,9160,18.9820,0,0,0,9080,0 +149,4.9267,21.1833,0.0184,0.0038,1,0,0.0784,1143,21.2327,0,0,0,1063,0 diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_console.txt b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_console.txt new file mode 100644 index 0000000..2caf761 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=2560x1440 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=45 +data_rate_limit_mbps=45 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=4.385 +avg_encode_latency_ms=22.340 +p95_encode_latency_ms=41.191 +max_encode_latency_ms=57.170 +avg_send_ms=0.067 +p95_send_ms=0.153 +payload_bytes=1132160 +bytes_sent=1156160 +send_target=169.254.70.114:48320 +csv=benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_primary_stats.csv b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_primary_stats.csv new file mode 100644 index 0000000..6b352f0 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/2560x1440_60fps_45mbps_primary_stats.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,5.8278,43.0280,0.0986,0.0088,1,0,0.0816,19727,43.1907,0,1,0,19647,0 +1,3.0500,10.3615,0.0265,0.0016,1,0,0.0363,6819,10.4150,0,0,0,6739,0 +2,3.0008,16.1582,0.0123,0.0014,1,0,0.0256,7775,16.1886,0,0,0,7695,0 +3,2.9680,22.1255,0.0095,0.0013,1,0,0.0188,7535,22.1523,0,0,0,7455,0 +4,2.9252,21.0983,0.0251,0.0015,1,0,0.0426,24359,21.1376,0,0,0,24279,0 +5,3.2063,10.4614,0.0132,0.0015,1,0,0.0292,15401,10.4928,0,0,0,15321,0 +6,3.3460,10.3672,0.0179,0.0027,1,0,0.0685,7080,10.4040,0,0,0,7000,0 +7,3.3700,10.3915,0.0170,0.0019,1,0,0.0308,2841,10.4307,0,0,0,2761,0 +8,3.6136,10.3600,0.0147,0.0017,1,0,0.0329,10796,10.3959,0,0,0,10716,0 +9,3.7078,10.2635,0.0108,0.0015,1,0,0.0223,867,10.2890,0,0,0,787,0 +10,3.6473,10.4190,0.0089,0.0017,1,0,0.0213,925,10.4492,0,0,0,845,0 +11,3.9176,10.4044,0.0252,0.0030,1,0,0.0622,1145,10.4579,0,0,0,1065,0 +12,3.4987,10.5191,0.0271,0.0035,1,0,0.0694,7759,10.5743,0,0,0,7679,0 +13,3.0940,10.4475,0.0212,0.0037,1,0,0.0713,857,10.5041,0,0,0,777,0 +14,3.0390,10.5359,0.0225,0.0029,1,0,0.0545,1010,10.5918,0,0,0,930,0 +15,2.9832,10.4907,0.0257,0.0036,1,0,0.0656,1022,10.5514,0,0,0,942,0 +16,2.9923,10.5371,0.0232,0.0035,1,0,0.0756,8597,10.5947,0,0,0,8517,0 +17,3.4549,10.7111,0.0331,0.0034,1,0,0.0690,2167,10.7816,0,0,0,2087,0 +18,2.9450,10.5190,0.0157,0.0028,1,0,0.0502,1285,10.5499,0,0,0,1205,0 +19,2.9795,10.2293,0.0073,0.0014,1,0,0.0233,1152,10.2539,0,0,0,1072,0 +20,3.0796,10.2371,0.0093,0.0017,1,0,0.0290,8050,10.2643,0,0,0,7970,0 +21,3.3328,10.2286,0.0072,0.0015,1,0,0.0178,926,10.2531,0,0,0,846,0 +22,3.2965,10.2982,0.0075,0.0015,1,0,0.0187,906,10.3236,0,0,0,826,0 +23,3.5998,10.3119,0.0076,0.0015,1,0,0.0169,901,10.3381,0,0,0,821,0 +24,3.6251,10.3582,0.0160,0.0030,1,0,0.0564,7968,10.3982,0,0,0,7888,0 +25,3.6304,10.3059,0.0145,0.0027,1,0,0.0461,903,10.3495,0,0,0,823,0 +26,3.6788,10.3201,0.0086,0.0019,1,0,0.0274,815,10.3511,0,0,0,735,0 +27,4.0868,10.3742,0.0085,0.0019,1,0,0.0236,874,10.4080,0,0,0,794,0 +28,4.0660,10.3884,0.0111,0.0017,1,0,0.0377,8032,10.4216,0,0,0,7952,0 +29,4.3022,10.6347,0.0223,0.0057,1,0,0.0772,872,10.6904,0,0,0,792,0 +30,4.3283,11.2914,0.0253,0.0032,1,0,0.0576,930,11.3352,0,0,0,850,0 +31,4.7365,11.1266,0.0168,0.0036,1,0,0.0701,884,11.1686,0,0,0,804,0 +32,4.5249,11.0552,0.0205,0.0019,1,0,0.0561,7087,11.1024,0,0,0,7007,0 +33,4.3068,10.9909,0.0220,0.0019,1,0,0.0591,1261,11.0296,0,0,0,1181,0 +34,4.6098,11.0210,0.0103,0.0019,1,0,0.0297,1027,11.0476,0,0,0,947,0 +35,4.5321,11.2857,0.0093,0.0019,1,0,0.0308,1014,11.3110,0,0,0,934,0 +36,4.1834,10.9222,0.0144,0.0023,1,0,0.0565,9206,10.9635,0,0,0,9126,0 +37,4.7092,11.0473,0.0133,0.0018,1,0,0.0277,941,11.0831,0,0,0,861,0 +38,4.8945,10.9906,0.0111,0.0019,1,0,0.0302,902,11.0274,0,0,0,822,0 +39,4.6252,10.9568,0.0090,0.0018,1,0,0.0267,899,10.9816,0,0,0,819,0 +40,4.6700,11.0144,0.0161,0.0018,1,0,0.0510,8453,11.0535,0,0,0,8373,0 +41,4.7225,10.9835,0.0118,0.0021,1,0,0.0386,920,11.0125,0,0,0,840,0 +42,4.4348,11.0817,0.0192,0.0043,1,0,0.0658,931,11.1220,0,0,0,851,0 +43,4.6541,11.1917,0.0228,0.0049,1,0,0.0775,957,11.2447,0,0,0,877,0 +44,4.7056,11.2440,0.0336,0.0110,1,0,0.1237,7726,11.3181,0,0,0,7646,0 +45,4.7891,11.4233,0.0225,0.0025,1,0,0.0739,992,11.4725,0,0,0,912,0 +46,4.7534,11.1061,0.0135,0.0024,1,0,0.0456,1072,11.1410,0,0,0,992,0 +47,4.3691,10.6494,0.0170,0.0023,1,0,0.0570,1038,10.6923,0,0,0,958,0 +48,4.7685,11.0760,0.0269,0.0038,1,0,0.1355,8769,11.1325,0,0,0,8689,0 +49,4.9091,11.7553,0.0276,0.0083,1,0,0.1557,1423,11.8355,0,0,0,1343,0 +50,5.1419,11.6804,0.0278,0.0073,1,0,0.1531,1005,11.7360,0,0,0,925,0 +51,5.0069,11.6637,0.0333,0.0069,1,0,0.1529,1084,11.7265,0,0,0,1004,0 +52,4.7882,11.4239,0.0346,0.0059,1,0,0.1796,9119,11.4960,0,0,0,9039,0 +53,4.9516,11.5851,0.0272,0.0063,1,0,0.1488,1059,11.6601,0,0,0,979,0 +54,4.7094,10.7221,0.0230,0.0039,1,0,0.0971,1065,10.7719,0,0,0,985,0 +55,5.0410,11.1563,0.0193,0.0047,1,0,0.1050,1070,11.1912,0,0,0,990,0 +56,4.6451,11.1200,0.0215,0.0023,1,0,0.0562,9119,11.1624,0,0,0,9039,0 +57,4.5904,11.0788,0.0202,0.0040,1,0,0.0693,1052,11.1228,0,0,0,972,0 +58,4.3945,10.7878,0.0227,0.0027,1,0,0.0653,1014,10.8239,0,0,0,934,0 +59,3.7239,10.6940,0.0233,0.0029,1,0,0.0594,1041,10.7435,0,0,0,961,0 +60,3.1158,9.1680,0.0455,0.0024,1,0,0.0986,63742,9.2266,0,1,0,63662,0 +61,3.1184,10.4217,0.0162,0.0021,1,0,0.0698,1858,10.4488,0,0,0,1778,0 +62,3.0496,10.3432,0.0186,0.0028,1,0,0.0549,1851,10.3919,0,0,0,1771,0 +63,3.1156,10.2795,0.0151,0.0015,1,0,0.0458,1009,10.3120,0,0,0,929,0 +64,3.1288,10.2522,0.0135,0.0022,1,0,0.0437,7522,10.2937,0,0,0,7442,0 +65,2.9710,10.3580,0.0172,0.0017,1,0,0.0505,2026,10.3843,0,0,0,1946,0 +66,3.0707,10.3488,0.0161,0.0019,1,0,0.0508,1131,10.3817,0,0,0,1051,0 +67,3.0265,10.3522,0.0191,0.0022,1,0,0.0465,1134,10.3920,0,0,0,1054,0 +68,2.9775,10.2607,0.0223,0.0021,1,0,0.0600,9230,10.3116,0,0,0,9150,0 +69,2.9617,10.3798,0.0160,0.0028,1,0,0.0486,984,10.4291,0,0,0,904,0 +70,2.9503,10.3440,0.0116,0.0014,1,0,0.0302,823,10.3744,0,0,0,743,0 +71,2.9723,10.2305,0.0150,0.0028,1,0,0.0548,813,10.2626,0,0,0,733,0 +72,3.1407,10.3203,0.0194,0.0029,1,0,0.0342,8393,10.3686,0,0,0,8313,0 +73,3.3742,10.3682,0.0152,0.0040,1,0,0.0226,825,10.4085,0,0,0,745,0 +74,3.3338,10.4132,0.0116,0.0018,1,0,0.0195,802,10.4399,0,0,0,722,0 +75,3.3320,10.4999,0.0253,0.0036,1,0,0.0500,829,10.5441,0,0,0,749,0 +76,3.6961,10.5683,0.0200,0.0027,1,0,0.0559,7716,10.6160,0,0,0,7636,0 +77,3.7519,10.5922,0.0234,0.0040,1,0,0.0587,859,10.6387,0,0,0,779,0 +78,3.6978,10.6062,0.0253,0.0035,1,0,0.0688,918,10.6513,0,0,0,838,0 +79,3.7803,10.6705,0.0203,0.0030,1,0,0.0600,866,10.7088,0,0,0,786,0 +80,3.7220,10.5995,0.0186,0.0028,1,0,0.0715,8645,10.6367,0,0,0,8565,0 +81,4.1124,10.4767,0.0138,0.0018,1,0,0.0274,1654,10.5064,0,0,0,1574,0 +82,3.9762,10.3132,0.0088,0.0017,1,0,0.0273,1101,10.3435,0,0,0,1021,0 +83,3.9725,10.2883,0.0112,0.0023,1,0,0.0237,1172,10.3260,0,0,0,1092,0 +84,4.0308,10.3090,0.0125,0.0020,1,0,0.0295,8993,10.3447,0,0,0,8913,0 +85,3.9653,10.4105,0.0114,0.0022,1,0,0.0268,830,10.4380,0,0,0,750,0 +86,4.3587,10.4038,0.0092,0.0018,1,0,0.0308,867,10.4390,0,0,0,787,0 +87,4.1127,10.3030,0.0178,0.0028,1,0,0.0529,845,10.3490,0,0,0,765,0 +88,4.5616,10.6556,0.0290,0.0067,1,0,0.1015,8864,10.7095,0,0,0,8784,0 +89,4.6934,11.5156,0.0297,0.0047,1,0,0.0996,836,11.5813,0,0,0,756,0 +90,4.7196,11.3213,0.0456,0.0044,1,0,0.1409,823,11.4028,0,0,0,743,0 +91,4.8193,10.7435,0.0259,0.0034,1,0,0.0850,841,10.7894,0,0,0,761,0 +92,4.8708,11.2578,0.0438,0.0074,1,0,0.1519,8009,11.3400,0,0,0,7929,0 +93,4.6275,10.6637,0.0212,0.0026,1,0,0.0637,860,10.7205,0,0,0,780,0 +94,4.3658,10.7015,0.0375,0.0025,1,0,0.0660,1003,10.7681,0,0,0,923,0 +95,3.7566,10.4350,0.0244,0.0021,1,0,0.0579,1011,10.4688,0,0,0,931,0 +96,3.3061,10.3082,0.0297,0.0023,1,0,0.0747,22576,10.3466,0,0,0,22496,0 +97,3.0659,10.2858,0.0099,0.0020,1,0,0.0408,1534,10.3024,0,0,0,1454,0 +98,2.9729,10.2995,0.0125,0.0017,1,0,0.0336,1107,10.3202,0,0,0,1027,0 +99,2.8838,10.2546,0.0073,0.0014,1,0,0.0234,1121,10.2784,0,0,0,1041,0 +100,2.9386,10.2026,0.0087,0.0013,1,0,0.0278,9216,10.2290,0,0,0,9136,0 +101,3.3283,10.2930,0.0157,0.0035,1,0,0.0578,906,10.3223,0,0,0,826,0 +102,3.4232,10.4170,0.0161,0.0030,1,0,0.0560,926,10.4585,0,0,0,846,0 +103,3.5802,10.4888,0.0143,0.0024,1,0,0.0490,942,10.5302,0,0,0,862,0 +104,3.6858,10.2855,0.0105,0.0016,1,0,0.0298,8448,10.3207,0,0,0,8368,0 +105,3.6375,10.3231,0.0091,0.0017,1,0,0.0269,947,10.3530,0,0,0,867,0 +106,3.7484,10.4020,0.0083,0.0017,1,0,0.0225,930,10.4316,0,0,0,850,0 +107,3.9748,10.2884,0.0088,0.0017,1,0,0.0230,1053,10.3187,0,0,0,973,0 +108,4.0484,10.6545,0.0113,0.0016,1,0,0.0323,7726,10.6865,0,0,0,7646,0 +109,3.9908,10.3857,0.0089,0.0016,1,0,0.0214,1061,10.4150,0,0,0,981,0 +110,4.0335,10.4391,0.0089,0.0018,1,0,0.0208,1327,10.4686,0,0,0,1247,0 +111,4.2770,10.4161,0.0087,0.0017,1,0,0.0297,1113,10.4501,0,0,0,1033,0 +112,4.2027,10.4994,0.0235,0.0035,1,0,0.1013,8895,10.5448,0,0,0,8815,0 +113,4.7852,11.1992,0.0253,0.0028,1,0,0.0454,1614,11.2432,0,0,0,1534,0 +114,4.6619,11.0560,0.0268,0.0048,1,0,0.1267,1322,11.1164,0,0,0,1242,0 +115,4.9542,11.4194,0.0130,0.0021,1,0,0.0446,1124,11.4497,0,0,0,1044,0 +116,4.9523,11.1632,0.0203,0.0019,1,0,0.0589,9168,11.2004,0,0,0,9088,0 +117,4.7203,11.0455,0.0108,0.0020,1,0,0.0361,1216,11.0735,0,0,0,1136,0 +118,4.7428,10.6564,0.0229,0.0056,1,0,0.0915,1209,10.7128,0,0,0,1129,0 +119,4.8594,11.4851,0.0263,0.0051,1,0,0.1232,1163,11.5362,0,0,0,1083,0 +120,5.0293,10.2616,0.0825,0.0046,1,0,0.2148,46230,10.3794,0,1,0,46150,0 +121,4.6930,10.8838,0.0191,0.0029,1,0,0.0676,1957,10.9228,0,0,0,1877,0 +122,4.9902,11.2745,0.0228,0.0030,1,0,0.1304,1272,11.3287,0,0,0,1192,0 +123,4.9736,11.2346,0.0193,0.0024,1,0,0.0527,833,11.2827,0,0,0,753,0 +124,4.6395,10.7765,0.0235,0.0023,1,0,0.0623,8017,10.8175,0,0,0,7937,0 +125,4.3982,10.4959,0.0118,0.0021,1,0,0.0260,813,10.5248,0,0,0,733,0 +126,4.2157,10.5636,0.0143,0.0018,1,0,0.0323,895,10.6025,0,0,0,815,0 +127,4.6252,11.1429,0.0104,0.0017,1,0,0.0378,1217,11.1693,0,0,0,1137,0 +128,4.6309,10.9658,0.0137,0.0020,1,0,0.0390,7162,10.9964,0,0,0,7082,0 +129,4.9306,11.0587,0.0110,0.0018,1,0,0.0532,1675,11.0963,0,0,0,1595,0 +130,4.7475,10.7956,0.0179,0.0051,1,0,0.0597,912,10.8410,0,0,0,832,0 +131,4.8130,11.3403,0.0213,0.0047,1,0,0.0619,940,11.3760,0,0,0,860,0 +132,4.2614,10.5648,0.0191,0.0030,1,0,0.0694,9214,10.6128,0,0,0,9134,0 +133,4.0557,10.4908,0.0183,0.0035,1,0,0.0656,837,10.5294,0,0,0,757,0 +134,4.2999,10.7445,0.0110,0.0020,1,0,0.0307,812,10.7724,0,0,0,732,0 +135,4.4235,10.3372,0.0108,0.0021,1,0,0.0229,832,10.3649,0,0,0,752,0 +136,4.4708,10.5863,0.0126,0.0019,1,0,0.0468,8376,10.6232,0,0,0,8296,0 +137,4.4899,10.3130,0.0104,0.0020,1,0,0.0249,812,10.3510,0,0,0,732,0 +138,4.4701,10.4508,0.0091,0.0018,1,0,0.0251,810,10.4765,0,0,0,730,0 +139,4.5600,10.8612,0.0107,0.0021,1,0,0.0358,816,10.8888,0,0,0,736,0 +140,4.8248,11.2509,0.0158,0.0020,1,0,0.0539,7678,11.2834,0,0,0,7598,0 +141,4.8840,11.3229,0.0279,0.0060,1,0,0.1143,823,11.3763,0,0,0,743,0 +142,4.9902,11.6918,0.0255,0.0053,1,0,0.1044,835,11.7515,0,0,0,755,0 +143,4.8077,11.3381,0.0255,0.0052,1,0,0.1104,851,11.3873,0,0,0,771,0 +144,4.8510,11.2575,0.0191,0.0025,1,0,0.0658,8641,11.2947,0,0,0,8561,0 +145,4.9175,11.0629,0.0128,0.0019,1,0,0.0333,1964,11.0927,0,0,0,1884,0 +146,4.8122,11.1746,0.0107,0.0018,1,0,0.0369,858,11.2027,0,0,0,778,0 +147,4.8217,11.1220,0.0143,0.0029,1,0,0.0449,825,11.1650,0,0,0,745,0 +148,4.9575,11.0488,0.0334,0.0034,1,0,0.1273,8962,11.1028,0,0,0,8882,0 +149,5.0919,11.3344,0.0261,0.0061,1,0,0.1815,833,11.3852,0,0,0,753,0 +150,5.0687,10.8000,0.0230,0.0035,1,0,0.1230,812,10.8516,0,0,0,732,0 +151,5.1373,11.1217,0.0140,0.0023,1,0,0.0415,854,11.1637,0,0,0,774,0 +152,4.9491,11.1441,0.0188,0.0037,1,0,0.1909,8857,11.1997,0,0,0,8777,0 +153,5.0112,11.1539,0.0222,0.0055,1,0,0.0892,827,11.2173,0,0,0,747,0 +154,4.7713,11.3242,0.0260,0.0040,1,0,0.0704,831,11.3716,0,0,0,751,0 +155,4.9524,11.4593,0.0248,0.0041,1,0,0.1327,839,11.5045,0,0,0,759,0 +156,4.5120,11.1837,0.0214,0.0023,1,0,0.0622,7985,11.2214,0,0,0,7905,0 +157,4.4292,10.8194,0.0102,0.0021,1,0,0.0411,852,10.8555,0,0,0,772,0 +158,4.4542,11.1370,0.0101,0.0020,1,0,0.0310,888,11.1629,0,0,0,808,0 +159,4.4037,11.1001,0.0117,0.0021,1,0,0.0356,855,11.1342,0,0,0,775,0 +160,4.6087,10.8653,0.0134,0.0020,1,0,0.0424,7255,10.8954,0,0,0,7175,0 +161,4.5991,11.1283,0.0108,0.0020,1,0,0.0361,1224,11.1639,0,0,0,1144,0 +162,4.7078,10.9208,0.0131,0.0020,1,0,0.0393,913,10.9512,0,0,0,833,0 +163,4.7313,10.8450,0.0105,0.0022,1,0,0.0301,904,10.8797,0,0,0,824,0 +164,4.6366,11.2343,0.0162,0.0020,1,0,0.0617,9162,11.2669,0,0,0,9082,0 +165,4.7015,10.6851,0.0320,0.0060,1,0,0.1532,870,10.7432,0,0,0,790,0 +166,4.8621,11.2184,0.0265,0.0030,1,0,0.0603,872,11.2568,0,0,0,792,0 +167,4.4246,11.2338,0.0164,0.0041,1,0,0.0785,922,11.2825,0,0,0,842,0 +168,4.4440,11.1238,0.0254,0.0049,1,0,0.1379,8403,11.1702,0,0,0,8323,0 +169,4.7700,11.1504,0.0136,0.0024,1,0,0.0485,879,11.1919,0,0,0,799,0 +170,4.8829,11.1370,0.0152,0.0025,1,0,0.0645,894,11.1690,0,0,0,814,0 +171,4.7862,11.0555,0.0103,0.0017,1,0,0.0398,894,11.0910,0,0,0,814,0 +172,4.6847,11.3427,0.0166,0.0018,1,0,0.0554,7697,11.3748,0,0,0,7617,0 +173,4.2368,10.9335,0.0105,0.0018,1,0,0.0367,926,10.9667,0,0,0,846,0 +174,4.3669,11.3233,0.0121,0.0022,1,0,0.0419,1027,11.3529,0,0,0,947,0 +175,4.4001,11.0443,0.0105,0.0016,1,0,0.0323,950,11.0702,0,0,0,870,0 +176,4.6400,11.1185,0.0164,0.0018,1,0,0.0546,8783,11.1574,0,0,0,8703,0 +177,4.8518,10.8008,0.0120,0.0025,1,0,0.0280,1214,10.8399,0,0,0,1134,0 +178,4.6687,11.0455,0.0104,0.0018,1,0,0.0332,942,11.0724,0,0,0,862,0 +179,4.7419,11.1032,0.0114,0.0027,1,0,0.0335,958,11.1422,0,0,0,878,0 +180,4.9606,9.5368,0.0386,0.0021,1,0,0.1060,59103,9.6035,0,1,0,59023,0 +181,4.9262,25.1797,0.0166,0.0022,1,0,0.0629,2454,25.2143,0,0,0,2374,0 +182,4.8277,36.0830,0.0115,0.0022,1,0,0.0510,1019,36.1079,0,0,0,939,0 +183,4.7678,40.6086,0.0296,0.0058,1,0,0.1494,1732,40.6720,0,0,0,1652,0 +184,4.8503,38.9727,0.0446,0.0044,1,0,0.1570,9329,39.0511,0,0,0,9249,0 +185,4.9173,40.1630,0.0420,0.0057,1,0,0.1505,861,40.2453,0,0,0,781,0 +186,4.9873,39.5466,0.0285,0.0072,1,0,0.1190,834,39.6153,0,0,0,754,0 +187,5.0894,39.3131,0.0219,0.0035,1,0,0.1076,825,39.3560,0,0,0,745,0 +188,4.8833,37.9668,0.0201,0.0020,1,0,0.0727,8003,38.0044,0,0,0,7923,0 +189,4.8693,40.0122,0.0300,0.0058,1,0,0.0999,808,40.0735,0,0,0,728,0 +190,4.8435,41.5283,0.0119,0.0026,1,0,0.0506,818,41.5576,0,0,0,738,0 +191,4.9625,38.3144,0.0102,0.0019,1,0,0.0377,811,38.3404,0,0,0,731,0 +192,4.6438,40.4249,0.0243,0.0021,1,0,0.0629,22382,40.4653,0,0,0,22302,0 +193,4.8949,37.5740,0.0120,0.0016,1,0,0.0518,1797,37.6090,0,0,0,1717,0 +194,4.8457,39.7398,0.0108,0.0017,1,0,0.0336,1084,39.7725,0,0,0,1004,0 +195,4.7518,40.8832,0.0217,0.0025,1,0,0.0857,921,40.9237,0,0,0,841,0 +196,4.5979,38.7887,0.0349,0.0069,1,0,0.1559,9833,38.8586,0,0,0,9753,0 +197,4.9169,39.6419,0.0266,0.0030,1,0,0.1184,1158,39.6954,0,0,0,1078,0 +198,4.7314,39.2221,0.0155,0.0026,1,0,0.0507,939,39.2594,0,0,0,859,0 +199,4.7183,39.5425,0.0139,0.0023,1,0,0.0510,842,39.5848,0,0,0,762,0 +200,4.6787,39.4441,0.0173,0.0033,1,0,0.1121,8391,39.4811,0,0,0,8311,0 +201,4.7402,39.3968,0.0387,0.0048,1,0,0.1135,846,39.4676,0,0,0,766,0 +202,4.6475,39.4642,0.0192,0.0042,1,0,0.0951,816,39.5030,0,0,0,736,0 +203,4.6750,39.2697,0.0116,0.0025,1,0,0.0419,874,39.2984,0,0,0,794,0 +204,4.8551,39.4591,0.0179,0.0023,1,0,0.0565,7778,39.4940,0,0,0,7698,0 +205,4.7995,38.9311,0.0096,0.0019,1,0,0.0479,919,38.9636,0,0,0,839,0 +206,4.9088,38.9849,0.0089,0.0020,1,0,0.0280,868,39.0160,0,0,0,788,0 +207,4.4557,39.8202,0.0098,0.0018,1,0,0.0456,912,39.8457,0,0,0,832,0 +208,4.3775,38.7112,0.0191,0.0024,1,0,0.0545,8943,38.7479,0,0,0,8863,0 +209,4.4074,39.8406,0.0136,0.0021,1,0,0.0461,2024,39.8769,0,0,0,1944,0 +210,4.7665,39.7445,0.0090,0.0018,1,0,0.0246,993,39.7747,0,0,0,913,0 +211,4.6368,36.5727,0.0097,0.0018,1,0,0.0348,1057,36.5975,0,0,0,977,0 +212,4.8387,39.9419,0.0572,0.0043,1,0,0.1599,9023,40.0315,0,0,0,8943,0 +213,4.3947,41.6165,0.0175,0.0031,1,0,0.0532,959,41.6622,0,0,0,879,0 +214,4.6312,37.0676,0.0181,0.0031,1,0,0.0636,960,37.1045,0,0,0,880,0 +215,4.1035,39.9040,0.0202,0.0036,1,0,0.0485,952,39.9425,0,0,0,872,0 +216,3.9291,38.5636,0.0194,0.0032,1,0,0.0642,8863,38.6076,0,0,0,8783,0 +217,3.9823,39.0775,0.0202,0.0031,1,0,0.0625,926,39.1168,0,0,0,846,0 +218,4.1621,38.5930,0.0192,0.0037,1,0,0.0435,889,38.6419,0,0,0,809,0 +219,4.0814,38.9421,0.0133,0.0021,1,0,0.0413,895,38.9833,0,0,0,815,0 +220,4.0307,39.2223,0.0231,0.0037,1,0,0.0842,8018,39.2768,0,0,0,7938,0 +221,4.1577,39.1141,0.0260,0.0050,1,0,0.0779,967,39.1726,0,0,0,887,0 +222,4.1735,39.1452,0.0188,0.0035,1,0,0.0715,1021,39.1831,0,0,0,941,0 +223,4.4731,36.8756,0.0225,0.0031,1,0,0.0742,1013,36.9273,0,0,0,933,0 +224,4.5088,39.6932,0.0215,0.0044,1,0,0.1028,7426,39.7355,0,0,0,7346,0 +225,4.0915,42.0947,0.0261,0.0055,1,0,0.1336,1630,42.1521,0,0,0,1550,0 +226,4.7510,37.4049,0.0372,0.0053,1,0,0.1182,974,37.4779,0,0,0,894,0 +227,4.9060,40.5464,0.0192,0.0036,1,0,0.0665,1148,40.5861,0,0,0,1068,0 +228,4.9401,38.5303,0.0418,0.0073,1,0,0.1385,9287,38.6098,0,0,0,9207,0 +229,5.0980,37.3041,0.0344,0.0055,1,0,0.1256,944,37.3735,0,0,0,864,0 +230,4.8153,42.2615,0.0247,0.0052,1,0,0.1497,965,42.3064,0,0,0,885,0 +231,5.0971,40.9278,0.0140,0.0024,1,0,0.0455,1035,40.9610,0,0,0,955,0 +232,5.0177,38.8887,0.0210,0.0028,1,0,0.0779,8498,38.9278,0,0,0,8418,0 +233,4.8291,40.0769,0.0110,0.0018,1,0,0.0418,906,40.1045,0,0,0,826,0 +234,4.9887,38.6681,0.0114,0.0021,1,0,0.0380,961,38.6969,0,0,0,881,0 +235,4.9037,39.7955,0.0162,0.0023,1,0,0.0487,1042,39.8311,0,0,0,962,0 +236,4.7553,39.3070,0.0179,0.0025,1,0,0.0570,7826,39.3424,0,0,0,7746,0 +237,4.9390,38.9938,0.0522,0.0044,1,0,0.1077,1115,39.0790,0,0,0,1035,0 +238,4.8803,39.5444,0.0301,0.0067,1,0,0.1330,1223,39.6114,0,0,0,1143,0 +239,4.8570,40.2552,0.0186,0.0034,1,0,0.0662,1116,40.3034,0,0,0,1036,0 +240,4.7947,36.9664,0.0662,0.0052,1,0,0.1979,44437,37.0671,0,1,0,44357,0 +241,4.8766,39.1212,0.0215,0.0030,1,0,0.0680,2268,39.1619,0,0,0,2188,0 +242,4.5150,40.9189,0.0116,0.0018,1,0,0.0440,1605,40.9464,0,0,0,1525,0 +243,5.0170,37.4424,0.0112,0.0018,1,0,0.0350,1218,37.4706,0,0,0,1138,0 +244,4.8134,39.8120,0.0163,0.0021,1,0,0.0588,8956,39.8450,0,0,0,8876,0 +245,4.7577,40.4417,0.0113,0.0017,1,0,0.0333,835,40.4687,0,0,0,755,0 +246,4.7166,38.8385,0.0247,0.0045,1,0,0.0915,787,38.8964,0,0,0,707,0 +247,4.5538,40.0551,0.0303,0.0057,1,0,0.1056,789,40.1215,0,0,0,709,0 +248,4.6276,39.6013,0.0372,0.0055,1,0,0.1696,8831,39.6608,0,0,0,8751,0 +249,4.8737,39.0205,0.0174,0.0033,1,0,0.0640,785,39.0572,0,0,0,705,0 +250,4.5861,40.1495,0.0160,0.0033,1,0,0.0394,798,40.1915,0,0,0,718,0 +251,4.3859,37.7672,0.0270,0.0042,1,0,0.1531,794,37.8279,0,0,0,714,0 +252,4.9434,39.5529,0.0198,0.0019,1,0,0.0649,7980,39.5894,0,0,0,7900,0 +253,4.3893,41.6481,0.0110,0.0024,1,0,0.0375,793,41.6781,0,0,0,713,0 +254,4.8915,37.7190,0.0100,0.0018,1,0,0.0345,983,37.7457,0,0,0,903,0 +255,4.4906,41.7109,0.0173,0.0031,1,0,0.0902,874,41.7466,0,0,0,794,0 +256,4.6582,38.4468,0.0373,0.0033,1,0,0.1623,21946,38.5161,0,0,0,21866,0 +257,4.5567,39.8206,0.0241,0.0045,1,0,0.1320,1213,39.8732,0,0,0,1133,0 +258,5.0067,36.6220,0.0108,0.0022,1,0,0.0444,1438,36.6494,0,0,0,1358,0 +259,4.4141,40.3111,0.0112,0.0034,1,0,0.0390,1361,40.3404,0,0,0,1281,0 +260,4.6051,41.1839,0.0166,0.0022,1,0,0.0656,9232,41.2242,0,0,0,9152,0 +261,4.8481,34.9110,0.0115,0.0019,1,0,0.0337,822,34.9386,0,0,0,742,0 +262,4.5173,41.8809,0.0097,0.0018,1,0,0.0348,811,41.9128,0,0,0,731,0 +263,4.6665,41.6555,0.0097,0.0022,1,0,0.0367,812,41.6815,0,0,0,732,0 +264,4.6808,38.5099,0.0160,0.0018,1,0,0.0499,8403,38.5478,0,0,0,8323,0 +265,4.5785,39.7107,0.0101,0.0018,1,0,0.0341,806,39.7434,0,0,0,726,0 +266,4.5990,39.4564,0.0100,0.0019,1,0,0.0338,827,39.4891,0,0,0,747,0 +267,4.4450,39.0223,0.0095,0.0018,1,0,0.0354,836,39.0534,0,0,0,756,0 +268,4.8871,39.1419,0.0152,0.0018,1,0,0.0475,7665,39.1789,0,0,0,7585,0 +269,4.5630,39.9466,0.0095,0.0017,1,0,0.0325,850,39.9784,0,0,0,770,0 +270,4.6478,38.6715,0.0102,0.0018,1,0,0.0354,886,38.7036,0,0,0,806,0 +271,4.7670,39.5495,0.0089,0.0017,1,0,0.0357,862,39.5748,0,0,0,782,0 +272,4.4052,37.3246,0.0158,0.0018,1,0,0.0494,8578,37.3622,0,0,0,8498,0 +273,4.6658,39.5355,0.0182,0.0047,1,0,0.1037,1160,39.5844,0,0,0,1080,0 +274,4.4980,42.1833,0.0343,0.0066,1,0,0.1557,1347,42.2522,0,0,0,1267,0 +275,4.8202,37.9290,0.0280,0.0064,1,0,0.1369,1249,37.9937,0,0,0,1169,0 +276,4.7076,40.4245,0.0250,0.0041,1,0,0.1390,8980,40.4766,0,0,0,8900,0 +277,4.9521,38.2105,0.0119,0.0020,1,0,0.0426,859,38.2392,0,0,0,779,0 +278,4.5180,40.0477,0.0100,0.0017,1,0,0.0338,834,40.0743,0,0,0,754,0 +279,4.3955,40.4656,0.0260,0.0047,1,0,0.1231,841,40.5280,0,0,0,761,0 +280,4.7980,39.2920,0.0232,0.0041,1,0,0.1528,8866,39.3409,0,0,0,8786,0 +281,4.8028,39.6025,0.0111,0.0026,1,0,0.0431,846,39.6313,0,0,0,766,0 +282,4.9541,36.6530,0.0116,0.0022,1,0,0.0327,867,36.6810,0,0,0,787,0 +283,4.7947,40.2039,0.0437,0.0048,1,0,0.1561,845,40.2823,0,0,0,765,0 +284,4.7720,42.5448,0.0208,0.0024,1,0,0.0820,8014,42.5828,0,0,0,7934,0 +285,4.9249,37.4725,0.0121,0.0019,1,0,0.0379,919,37.5009,0,0,0,839,0 +286,4.8051,40.6183,0.0088,0.0018,1,0,0.0392,924,40.6494,0,0,0,844,0 +287,4.7270,37.3061,0.0104,0.0019,1,0,0.0349,944,37.3327,0,0,0,864,0 +288,4.7592,39.6805,0.0160,0.0020,1,0,0.0515,7103,39.7135,0,0,0,7023,0 +289,4.6945,41.9487,0.0320,0.0052,1,0,0.1278,980,42.0170,0,0,0,900,0 +290,4.8750,38.2227,0.0235,0.0031,1,0,0.1134,1027,38.2767,0,0,0,947,0 +291,4.9426,39.7799,0.0159,0.0022,1,0,0.0795,964,39.8132,0,0,0,884,0 +292,4.6491,37.8855,0.0292,0.0038,1,0,0.0948,9274,37.9336,0,0,0,9194,0 +293,4.8240,39.7681,0.0217,0.0022,1,0,0.0297,919,39.8070,0,0,0,839,0 +294,4.5352,41.3158,0.0182,0.0029,1,0,0.0745,873,41.3591,0,0,0,793,0 +295,4.6477,38.5865,0.0220,0.0052,1,0,0.1167,942,38.6295,0,0,0,862,0 +296,4.4478,40.0419,0.0194,0.0030,1,0,0.0642,8455,40.0791,0,0,0,8375,0 +297,4.6552,38.5072,0.0120,0.0020,1,0,0.0351,889,38.5369,0,0,0,809,0 +298,4.6835,46.0121,0.0149,0.0036,1,0,0.0398,913,46.0398,0,0,0,833,0 +299,4.8146,57.1700,0.0306,0.0073,1,0,0.1408,943,57.2323,0,0,0,863,0 diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_console.txt b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_console.txt new file mode 100644 index 0000000..314c01f --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=30 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=50 +data_rate_limit_mbps=50 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +frames_requested=150 +frames_submitted=150 +frames_skipped=0 +frames_encoded=150 +failed_frames=0 +sender_dropped_frames=90 +send_failed_frames=0 +avg_generate_ms=6.918 +avg_encode_latency_ms=39.968 +p95_encode_latency_ms=74.514 +max_encode_latency_ms=92.614 +avg_send_ms=57.962 +p95_send_ms=0.381 +payload_bytes=924701 +bytes_sent=512007 +send_target=169.254.70.114:48320 +csv=benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_primary_stats.csv b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_primary_stats.csv new file mode 100644 index 0000000..99af116 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_30fps_50mbps_primary_stats.csv @@ -0,0 +1,151 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,8.4778,92.6139,0.0838,0.0058,1,0,0.0460,40343,92.7231,0,1,0,40263,0 +1,4.8798,57.9853,0.0263,0.0019,1,0,0.0425,10252,58.0270,0,0,0,10172,0 +2,6.7484,56.7097,0.0274,0.0027,1,0,0.0730,11974,56.7608,0,0,0,11894,0 +3,4.7465,29.9372,0.0185,0.0023,1,0,0.0667,10382,29.9712,0,0,0,10302,0 +4,4.9520,18.2737,0.0205,0.0022,1,0,0.0350,18369,18.3098,0,0,0,18289,0 +5,5.6086,17.2410,0.0125,0.0017,1,0,0.0255,9941,17.2748,0,0,0,9861,0 +6,5.6820,17.3813,0.0141,0.0018,1,0,0.0229,3210,17.4112,0,0,0,3130,0 +7,6.2247,17.2568,0.0118,0.0023,1,0,0.0265,1710,17.2910,0,0,0,1630,0 +8,6.1459,17.4788,0.0159,0.0020,1,0,0.0432,12390,17.5109,0,0,0,12310,0 +9,6.0910,18.1973,0.0100,0.0019,1,0,0.0239,1377,18.2300,0,0,0,1297,0 +10,6.1803,17.2917,0.0103,0.0019,1,0,0.0280,2027,17.3192,0,0,0,1947,0 +11,6.4492,17.3215,0.0100,0.0018,1,0,0.0302,1688,17.3573,0,0,0,1608,0 +12,6.1910,17.4349,0.0147,0.0027,1,0,0.0454,12812,17.4776,0,0,0,12732,0 +13,6.2904,18.1688,0.0186,0.0029,1,0,0.0415,3033,18.2162,0,0,0,2953,0 +14,6.6791,17.6987,0.0157,0.0026,1,0,0.0344,2575,17.7380,0,0,0,2495,0 +15,6.9176,17.5775,0.0182,0.0030,1,0,0.0536,2133,17.6088,0,0,0,2053,0 +16,6.2710,17.4187,0.0165,0.0023,1,0,0.0273,13234,17.4520,0,0,0,13154,0 +17,6.5118,17.5841,0.0223,0.0035,1,0,0.0269,3796,17.6375,0,0,0,3716,0 +18,6.5508,18.4572,0.0204,0.0032,1,0,0.0205,2572,18.4981,0,0,0,2492,0 +19,6.5139,17.8262,0.0185,0.0034,1,0,0.0211,2179,17.8643,0,0,0,2099,0 +20,6.7537,17.4886,0.0150,0.0026,1,0,0.0120,12924,17.5222,0,0,0,12844,0 +21,6.8859,17.3947,0.0119,0.0023,1,0,0.0095,1873,17.4240,0,0,0,1793,0 +22,6.9420,17.6523,0.0213,0.0025,1,0,0.0109,1821,17.6935,0,0,0,1741,0 +23,7.0175,17.6074,0.0283,0.0049,1,0,0.0252,1734,17.6597,0,0,0,1654,0 +24,6.6287,17.5738,0.0168,0.0027,1,0,0.0168,12660,17.6205,0,0,0,12580,0 +25,6.8830,17.3138,0.0242,0.0027,1,0,0.0137,1624,17.3672,0,0,0,1544,0 +26,6.9295,17.4001,0.0162,0.0028,1,0,0.0112,1657,17.4463,0,0,0,1577,0 +27,7.0817,18.3163,0.0162,0.0022,1,0,0.0156,1750,18.3569,0,0,0,1670,0 +28,5.7546,17.4774,0.0138,0.0018,1,0,0.0137,12620,17.4988,0,0,0,12540,0 +29,4.6012,17.4486,0.0121,0.0018,1,0,0.0085,2482,17.4678,0,0,0,2402,0 +30,4.6660,17.0926,0.0130,0.0019,1,0,0.0186,2206,17.1137,0,0,0,2126,0 +31,4.5920,17.2664,0.0120,0.0017,1,0,0.0116,2324,17.2857,0,0,0,2244,0 +32,4.7978,17.5401,0.0281,0.0035,1,0,0.0265,11443,17.5869,0,0,0,11363,0 +33,4.4414,17.5052,0.0213,0.0034,1,0,0.0123,2947,17.5445,0,0,0,2867,0 +34,4.9965,17.6713,0.0240,0.0043,1,0,0.0198,2510,17.7109,0,0,0,2430,0 +35,5.3440,17.4747,0.0270,0.0043,1,0,0.0098,1929,17.5193,0,0,0,1849,0 +36,5.6045,17.4826,0.0289,0.0037,1,0,0.0188,13044,17.5320,0,0,0,12964,0 +37,5.7034,17.9587,0.0249,0.0044,1,0,0.0228,2229,18.0048,0,0,0,2149,0 +38,6.3510,17.5245,0.0262,0.0040,1,0,0.0211,2162,17.5863,0,0,0,2082,0 +39,6.2799,17.6201,0.0130,0.0027,1,0,0.0113,2391,17.6516,0,0,0,2311,0 +40,6.8827,17.2681,0.0131,0.0022,1,0,0.0127,12515,17.3058,0,0,0,12435,0 +41,6.8684,18.5138,0.0100,0.0023,1,0,0.0084,2170,18.5485,0,0,0,2090,0 +42,6.9019,17.5556,0.0101,0.0022,1,0,0.0088,2205,17.5901,0,0,0,2125,0 +43,7.2032,17.4545,0.0102,0.0020,1,0,0.0099,2393,17.4817,0,0,0,2313,0 +44,6.7765,17.5966,0.0175,0.0027,1,0,3473.9141,12340,17.6324,0,0,0,12260,0 +45,6.9481,18.3552,0.0129,0.0003,1,0,0.0000,0,0.0000,0,0,1,3266,0 +46,6.8631,17.4983,0.0106,0.0006,2,0,0.0000,0,0.0000,0,0,1,2573,0 +47,6.5746,17.4263,0.0105,0.0090,3,0,0.0000,0,0.0000,0,0,1,2489,0 +48,6.8514,17.4220,0.0170,0.0017,4,0,0.0000,0,0.0000,0,0,1,13850,0 +49,7.3822,17.4390,0.0137,0.0015,5,0,0.0000,0,0.0000,0,0,1,3665,0 +50,7.7322,17.6013,0.0118,0.0002,6,0,0.0000,0,0.0000,0,0,1,3010,0 +51,7.7220,17.5666,0.0117,0.0001,7,0,0.0000,0,0.0000,0,0,1,2656,0 +52,7.4653,17.4861,0.0310,0.0004,8,0,0.0000,0,0.0000,0,0,1,13663,0 +53,7.7603,17.3190,0.0177,0.0043,9,0,0.0000,0,0.0000,0,0,1,2907,0 +54,6.8152,18.2584,0.0160,0.0003,10,0,0.0000,0,0.0000,0,0,1,2808,0 +55,6.7890,17.8440,0.0112,0.0004,11,0,0.0000,0,0.0000,0,0,1,2831,0 +56,6.9037,18.1797,0.0286,0.0003,12,0,0.0000,0,0.0000,0,0,1,13633,0 +57,6.8887,18.3161,0.0100,0.0014,12,1,0.0000,0,0.0000,0,0,1,2425,0 +58,6.1604,17.3388,0.0116,0.0011,12,2,0.0000,0,0.0000,0,0,1,2471,0 +59,6.3840,17.2370,0.0107,0.0010,12,3,0.0000,0,0.0000,0,0,1,2490,0 +60,6.8324,15.4794,0.0554,0.0010,12,4,0.8806,91873,2957.9359,0,1,0,91793,0 +61,6.7877,17.3194,0.0121,0.0010,12,5,0.0000,0,0.0000,0,0,1,6102,0 +62,6.8702,17.3478,0.0161,0.0010,12,6,0.0000,0,0.0000,0,0,1,4559,0 +63,7.3188,17.4300,0.0114,0.0011,12,7,0.0000,0,0.0000,0,0,1,3886,0 +64,7.7368,17.3352,0.0144,0.0011,12,8,0.0000,0,0.0000,0,0,1,14837,0 +65,7.7151,17.3517,0.0112,0.0012,12,9,0.0000,0,0.0000,0,0,1,2907,0 +66,7.8231,17.2357,0.0110,0.0011,12,10,0.0000,0,0.0000,0,0,1,1678,0 +67,7.3987,17.5483,0.0139,0.0014,12,11,0.0000,0,0.0000,0,0,1,1378,0 +68,7.8923,18.0133,0.0250,0.0018,12,12,0.0000,0,0.0000,0,0,1,12754,0 +69,7.9479,17.6707,0.0158,0.0017,12,13,0.0000,0,0.0000,0,0,1,1382,0 +70,7.1671,17.6690,0.0241,0.0011,12,14,0.0000,0,0.0000,0,0,1,1215,0 +71,7.9446,17.5407,0.0112,0.0011,12,15,0.0000,0,0.0000,0,0,1,1170,0 +72,7.4856,17.6287,0.0246,0.0013,12,16,0.0000,0,0.0000,0,0,1,11955,0 +73,7.1733,17.7459,0.0212,0.0031,12,17,0.0000,0,0.0000,0,0,1,1108,0 +74,7.7348,17.6628,0.0127,0.0017,12,18,0.0000,0,0.0000,0,0,1,1063,0 +75,7.5108,18.1578,0.0243,0.0016,12,19,0.0000,0,0.0000,0,0,1,1104,0 +76,7.8671,17.4115,0.0214,0.0015,12,20,0.0000,0,0.0000,0,0,1,11843,0 +77,7.7214,17.1928,0.0120,0.0013,12,21,0.0000,0,0.0000,0,0,1,1173,0 +78,7.6662,18.0189,0.0157,0.0012,12,22,0.0000,0,0.0000,0,0,1,1129,0 +79,7.7145,17.4722,0.0175,0.0017,12,23,0.0000,0,0.0000,0,0,1,1114,0 +80,8.0602,17.9348,0.0315,0.0025,12,24,0.0000,0,0.0000,0,0,1,12435,0 +81,8.0848,18.7956,0.0145,0.0012,12,25,0.0000,0,0.0000,0,0,1,2749,0 +82,7.0092,17.4241,0.0110,0.0012,12,26,0.0000,0,0.0000,0,0,1,2064,0 +83,6.8228,17.8593,0.0120,0.0017,12,27,0.0000,0,0.0000,0,0,1,1545,0 +84,7.5530,18.1727,0.0308,0.0023,12,28,0.0000,0,0.0000,0,0,1,13165,0 +85,6.9731,17.7770,0.0166,0.0020,12,29,0.0000,0,0.0000,0,0,1,1201,0 +86,7.5610,17.5508,0.0130,0.0012,12,30,0.0000,0,0.0000,0,0,1,1170,0 +87,7.7038,17.9106,0.0239,0.0048,12,31,0.0000,0,0.0000,0,0,1,1128,0 +88,6.5803,17.4441,0.0174,0.0015,12,32,0.0000,0,0.0000,0,0,1,12435,0 +89,5.0340,17.9617,0.0234,0.0013,12,33,0.0000,0,0.0000,0,0,1,1123,0 +90,4.7395,18.4949,0.0135,0.0012,12,34,0.0000,0,0.0000,0,0,1,1119,0 +91,4.9923,39.3393,0.0270,0.0021,12,35,0.0000,0,0.0000,0,0,1,1122,0 +92,5.8631,44.6807,0.0253,0.0020,12,36,0.0000,0,0.0000,0,0,1,12431,0 +93,9.0358,48.1369,0.0274,0.0027,12,37,0.0000,0,0.0000,0,0,1,1225,0 +94,7.8362,56.9466,0.0269,0.0015,12,38,0.0000,0,0.0000,0,0,1,1221,0 +95,8.0434,61.3404,0.0100,0.0034,12,39,0.0000,0,0.0000,0,0,1,1223,0 +96,5.3315,70.4744,0.0304,0.0015,12,40,0.0000,0,0.0000,0,0,1,35841,0 +97,4.8506,73.4097,0.0169,0.0014,12,41,0.0000,0,0.0000,0,0,1,2146,0 +98,5.6561,75.9959,0.0308,0.0071,12,42,0.0000,0,0.0000,0,0,1,1400,0 +99,8.8170,73.6122,0.0392,0.0020,12,43,0.0000,0,0.0000,0,0,1,1266,0 +100,8.2666,73.9290,0.0302,0.0017,12,44,0.0000,0,0.0000,0,0,1,12550,0 +101,8.5892,72.0418,0.0168,0.0010,12,45,0.0000,0,0.0000,0,0,1,1252,0 +102,8.1150,73.7528,0.0146,0.0010,12,46,0.0000,0,0.0000,0,0,1,1257,0 +103,8.1688,72.3932,0.0160,0.0012,12,47,0.0000,0,0.0000,0,0,1,1268,0 +104,7.8180,74.2585,0.0290,0.0021,12,48,0.0000,0,0.0000,0,0,1,12100,0 +105,8.2124,72.6336,0.0203,0.0013,12,49,0.0000,0,0.0000,0,0,1,1344,0 +106,8.2296,74.1180,0.0211,0.0020,12,50,0.0000,0,0.0000,0,0,1,1326,0 +107,8.4302,73.1214,0.0352,0.0045,12,51,0.0000,0,0.0000,0,0,1,1249,0 +108,8.4726,73.8808,0.0191,0.0013,12,52,0.0000,0,0.0000,0,0,1,11931,0 +109,8.6205,71.8731,0.0130,0.0010,12,53,0.0000,0,0.0000,0,0,1,1446,0 +110,8.3421,72.3618,0.0150,0.0012,12,54,0.0000,0,0.0000,0,0,1,1301,0 +111,7.2101,74.3577,0.0359,0.0026,12,55,0.0000,0,0.0000,0,0,1,1415,0 +112,7.1793,73.5919,0.0220,0.0013,12,56,0.0000,0,0.0000,0,0,1,12726,0 +113,7.0418,73.2757,0.0137,0.0009,12,57,0.0000,0,0.0000,0,0,1,1771,0 +114,7.5568,72.3261,0.0282,0.0015,12,58,0.0000,0,0.0000,0,0,1,1322,0 +115,7.2787,73.0382,0.0163,0.0013,12,59,0.0000,0,0.0000,0,0,1,1260,0 +116,7.3468,72.6643,0.0151,0.0008,12,60,0.0000,0,0.0000,0,0,1,12755,0 +117,6.1592,73.4243,0.0176,0.0010,12,61,0.0000,0,0.0000,0,0,1,1315,0 +118,6.4017,73.4132,0.0127,0.0009,12,62,0.0000,0,0.0000,0,0,1,1393,0 +119,6.9573,72.8678,0.0125,0.0010,12,63,0.0000,0,0.0000,0,0,1,1370,0 +120,6.8039,69.8074,0.0724,0.0022,12,64,0.8893,73321,959.2528,0,1,0,73241,0 +121,6.5592,73.0538,0.0130,0.0010,12,65,0.0000,0,0.0000,0,0,1,2202,0 +122,6.5925,72.6896,0.0239,0.0015,12,66,0.0000,0,0.0000,0,0,1,1727,0 +123,6.5668,73.9142,0.0151,0.0016,12,67,0.0000,0,0.0000,0,0,1,1197,0 +124,6.8967,72.8742,0.0226,0.0012,12,68,0.0000,0,0.0000,0,0,1,12300,0 +125,7.2427,73.7559,0.0148,0.0009,12,69,0.0000,0,0.0000,0,0,1,1731,0 +126,6.9030,72.8103,0.0145,0.0011,12,70,0.0000,0,0.0000,0,0,1,1567,0 +127,7.3688,73.9996,0.0172,0.0013,12,71,0.0000,0,0.0000,0,0,1,2111,0 +128,6.9045,73.8356,0.0381,0.0025,12,72,0.0000,0,0.0000,0,0,1,11619,0 +129,7.8150,72.7750,0.0273,0.0016,12,73,0.0000,0,0.0000,0,0,1,3394,0 +130,7.1061,74.1807,0.0143,0.0009,12,74,0.0000,0,0.0000,0,0,1,2345,0 +131,7.3594,72.3590,0.0123,0.0009,12,75,0.0000,0,0.0000,0,0,1,1611,0 +132,6.7675,73.9647,0.0148,0.0008,12,76,0.0000,0,0.0000,0,0,1,12584,0 +133,6.9138,73.4363,0.0163,0.0012,12,77,0.0000,0,0.0000,0,0,1,1132,0 +134,6.5259,73.0758,0.0262,0.0022,12,78,0.0000,0,0.0000,0,0,1,1093,0 +135,6.8721,73.2282,0.0172,0.0012,12,79,0.0000,0,0.0000,0,0,1,1275,0 +136,6.7981,69.8749,0.0197,0.0012,12,80,0.0000,0,0.0000,0,0,1,12152,0 +137,7.2644,71.6345,0.0216,0.0010,12,81,0.0075,1396,393.8378,0,0,0,1316,0 +138,6.9067,75.9972,0.0140,0.0014,12,82,0.0064,1159,364.5292,0,0,0,1079,0 +139,7.2553,70.7405,0.0143,0.0014,12,83,0.0036,1154,325.8981,0,0,0,1074,0 +140,7.4137,77.8286,0.0199,0.0013,12,84,0.3541,12833,297.0929,0,0,0,12753,0 +141,7.8388,74.7740,0.0143,0.0016,12,85,0.0090,1249,260.8144,0,0,0,1169,0 +142,7.9057,73.1132,0.0397,0.0034,12,86,0.0040,1217,225.8483,0,0,0,1137,0 +143,7.2885,74.6425,0.0163,0.0010,12,87,0.0037,1415,193.9730,0,0,0,1335,0 +144,7.7850,72.5037,0.0173,0.0010,12,88,0.3545,12918,159.4105,0,0,0,12838,0 +145,7.5940,73.6990,0.0239,0.0021,12,89,0.0177,3208,127.2513,0,0,0,3128,0 +146,7.6702,73.3482,0.0195,0.0017,12,90,0.0127,1889,93.4279,0,0,0,1809,0 +147,6.7968,73.5771,0.0275,0.0030,1,90,0.0581,1636,73.6377,0,0,0,1556,0 +148,7.6000,77.2743,0.0247,0.0035,1,90,0.0712,12911,77.3181,0,0,0,12831,0 +149,6.9593,88.3350,0.0169,0.0021,1,90,0.0508,1878,88.3680,0,0,0,1798,0 diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_console.txt b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_console.txt new file mode 100644 index 0000000..d6e96ac --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_console.txt @@ -0,0 +1,44 @@ +warning: VTSessionSetProperty MaxFrameDelayCount failed: -12900 +iBridge Primary encoder +run_label=synthetic +source=synthetic-nv12 +resolution=3200x1800 +target_fps=60 +duration_seconds=5 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate_mbps=60 +data_rate_limit_mbps=60 +data_rate_window_seconds=1.000 +low_latency_rate_control=off +realtime=on +allow_temporal_compression=on +allow_frame_reordering=off +allow_open_gop=off +prioritize_speed=unset +more_frames_before_start=unset +more_frames_after_end=unset +source_frame_count=unset +max_frame_delay_count=0 +payload_format=annex-b +static_change_every=1 +max_keyframe_interval=60 +max_keyframe_interval_duration=2.000 +sender_queue_depth=12 +frames_requested=300 +frames_submitted=300 +frames_skipped=0 +frames_encoded=300 +failed_frames=0 +sender_dropped_frames=0 +send_failed_frames=0 +avg_generate_ms=5.489 +avg_encode_latency_ms=22.998 +p95_encode_latency_ms=39.214 +max_encode_latency_ms=87.602 +avg_send_ms=0.046 +p95_send_ms=0.076 +payload_bytes=2748603 +bytes_sent=2772603 +send_target=169.254.70.114:48320 +csv=benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_primary_stats.csv diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_primary_stats.csv b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_primary_stats.csv new file mode 100644 index 0000000..0c5c6dd --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/3200x1800_60fps_60mbps_primary_stats.csv @@ -0,0 +1,301 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,9.0908,87.6019,0.1319,0.0077,1,0,0.0970,73551,87.7652,0,1,0,73471,0 +1,4.8155,56.6190,0.0532,0.0028,1,0,0.0842,29154,56.7011,0,0,0,29074,0 +2,4.3586,54.9873,0.0177,0.0021,1,0,0.0460,15285,55.0264,0,0,0,15205,0 +3,4.6810,57.8357,0.0130,0.0015,1,0,0.0555,31713,57.8717,0,0,0,31633,0 +4,4.7679,54.9844,0.0293,0.0027,1,0,0.0678,46897,55.0389,0,0,0,46817,0 +5,5.0203,33.9282,0.0177,0.0025,1,0,0.0607,24386,33.9712,0,0,0,24306,0 +6,4.8187,34.9457,0.0155,0.0019,1,0,0.0325,9322,34.9867,0,0,0,9242,0 +7,4.9151,27.4404,0.0107,0.0016,1,0,0.0228,6032,27.4703,0,0,0,5952,0 +8,5.2244,15.2421,0.0129,0.0019,1,0,0.0366,15619,15.2788,0,0,0,15539,0 +9,5.3494,11.4124,0.0123,0.0017,1,0,0.0230,3338,11.4481,0,0,0,3258,0 +10,5.2932,11.4138,0.0078,0.0015,1,0,0.0239,3755,11.4397,0,0,0,3675,0 +11,5.1819,11.5928,0.0190,0.0026,1,0,0.0480,2350,11.6386,0,0,0,2270,0 +12,5.2613,11.8305,0.0166,0.0025,1,0,0.0646,14289,11.8729,0,0,0,14209,0 +13,5.3775,11.4022,0.0128,0.0024,1,0,0.0327,4038,11.4415,0,0,0,3958,0 +14,5.2649,11.5237,0.0085,0.0018,1,0,0.0245,3632,11.5517,0,0,0,3552,0 +15,5.5083,11.3107,0.0130,0.0026,1,0,0.0612,3626,11.3325,0,0,0,3546,0 +16,5.2297,11.5254,0.0142,0.0023,1,0,0.0431,14737,11.5464,0,0,0,14657,0 +17,4.5517,11.5160,0.0235,0.0020,1,0,0.0540,4596,11.5586,0,0,0,4516,0 +18,4.6048,11.4778,0.0090,0.0016,1,0,0.0265,3875,11.5036,0,0,0,3795,0 +19,4.7579,11.4120,0.0080,0.0014,1,0,0.0253,3193,11.4362,0,0,0,3113,0 +20,4.8667,11.3250,0.0145,0.0016,1,0,0.0324,13633,11.3582,0,0,0,13553,0 +21,5.1390,11.4880,0.0080,0.0014,1,0,0.0266,2259,11.5191,0,0,0,2179,0 +22,5.0989,11.3923,0.0155,0.0025,1,0,0.0421,2119,11.4258,0,0,0,2039,0 +23,5.1272,11.4982,0.0139,0.0030,1,0,0.0564,1995,11.5391,0,0,0,1915,0 +24,5.1319,11.5285,0.0125,0.0018,1,0,0.0314,12701,11.5610,0,0,0,12621,0 +25,5.3562,11.5273,0.0120,0.0019,1,0,0.0238,1741,11.5636,0,0,0,1661,0 +26,5.6345,11.3060,0.0123,0.0019,1,0,0.0223,1602,11.3425,0,0,0,1522,0 +27,5.5384,11.3751,0.0081,0.0017,1,0,0.0212,1554,11.3918,0,0,0,1474,0 +28,5.4728,11.7484,0.0107,0.0020,1,0,0.0284,12620,11.7853,0,0,0,12540,0 +29,5.4985,11.3172,0.0125,0.0015,1,0,0.0213,1945,11.3538,0,0,0,1865,0 +30,5.5681,11.6216,0.0083,0.0017,1,0,0.0243,2043,11.6539,0,0,0,1963,0 +31,5.5677,11.3786,0.0115,0.0025,1,0,0.0427,2022,11.4167,0,0,0,1942,0 +32,5.5728,11.4470,0.0193,0.0023,1,0,0.0632,11581,11.4751,0,0,0,11501,0 +33,5.6594,11.4485,0.0124,0.0021,1,0,0.0300,2365,11.4859,0,0,0,2285,0 +34,5.6638,11.4058,0.0105,0.0023,1,0,0.0323,1967,11.4385,0,0,0,1887,0 +35,5.5767,11.4085,0.0097,0.0020,1,0,0.0240,1651,11.4425,0,0,0,1571,0 +36,5.6682,11.5130,0.0110,0.0017,1,0,0.0330,13858,11.5479,0,0,0,13778,0 +37,5.6969,11.4615,0.0086,0.0018,1,0,0.0217,1660,11.4943,0,0,0,1580,0 +38,5.5671,11.2654,0.0080,0.0018,1,0,0.0297,1695,11.2977,0,0,0,1615,0 +39,5.5129,11.4113,0.0140,0.0017,1,0,0.0243,1739,11.4493,0,0,0,1659,0 +40,5.6374,11.4927,0.0122,0.0018,1,0,0.0351,13354,11.5292,0,0,0,13274,0 +41,5.5996,11.6056,0.0094,0.0024,1,0,0.0277,1677,11.6358,0,0,0,1597,0 +42,5.7635,11.6106,0.0149,0.0029,1,0,0.0524,1680,11.6528,0,0,0,1600,0 +43,5.6777,11.4350,0.0090,0.0017,1,0,0.0236,1749,11.4679,0,0,0,1669,0 +44,5.6029,11.7175,0.0125,0.0015,1,0,0.0301,12142,11.7535,0,0,0,12062,0 +45,5.6040,11.5043,0.0083,0.0018,1,0,0.0277,2313,11.5357,0,0,0,2233,0 +46,5.6648,11.3623,0.0078,0.0015,1,0,0.0217,1757,11.3941,0,0,0,1677,0 +47,5.5604,11.5719,0.0080,0.0023,1,0,0.0235,1857,11.6013,0,0,0,1777,0 +48,5.7180,11.3769,0.0127,0.0016,1,0,0.0304,14020,11.4154,0,0,0,13940,0 +49,5.5116,11.5480,0.0088,0.0018,1,0,0.0252,2383,11.5813,0,0,0,2303,0 +50,5.9676,11.3912,0.0085,0.0016,1,0,0.0240,1937,11.4240,0,0,0,1857,0 +51,5.7307,11.2872,0.0077,0.0016,1,0,0.0218,1887,11.3184,0,0,0,1807,0 +52,5.7199,11.5416,0.0240,0.0030,1,0,0.0589,14146,11.5928,0,0,0,14066,0 +53,5.1787,11.6182,0.0104,0.0018,1,0,0.0338,1958,11.6496,0,0,0,1878,0 +54,5.1125,11.2833,0.0110,0.0050,1,0,0.0419,1917,11.3212,0,0,0,1837,0 +55,5.2446,11.5453,0.0098,0.0016,1,0,0.0254,1935,11.5746,0,0,0,1855,0 +56,5.1984,11.5135,0.0109,0.0020,1,0,0.0331,12930,11.5488,0,0,0,12850,0 +57,5.4103,11.4369,0.0165,0.0022,1,0,0.0555,1961,11.4630,0,0,0,1881,0 +58,5.1833,11.4395,0.0113,0.0016,1,0,0.0423,1843,11.4575,0,0,0,1763,0 +59,4.5613,11.3515,0.0107,0.0016,1,0,0.0332,1900,11.3687,0,0,0,1820,0 +60,4.6398,11.8214,0.0882,0.0016,1,0,1.2489,208069,11.9176,0,1,0,207989,0 +61,4.5678,11.4105,0.0203,0.0018,1,0,0.0569,18028,11.4382,0,0,0,17948,0 +62,4.5606,11.4826,0.0264,0.0015,1,0,0.0638,20916,11.5158,0,0,0,20836,0 +63,4.6208,11.4112,0.0132,0.0014,1,0,0.0453,15848,11.4304,0,0,0,15768,0 +64,4.5432,11.3772,0.0217,0.0018,1,0,0.0627,24327,11.4069,0,0,0,24247,0 +65,4.5726,11.4535,0.0221,0.0041,1,0,0.0648,11292,11.5069,0,0,0,11212,0 +66,4.5372,11.7196,0.0237,0.0023,1,0,0.0608,7265,11.7720,0,0,0,7185,0 +67,4.4197,11.3833,0.0163,0.0030,1,0,0.0605,2362,11.4292,0,0,0,2282,0 +68,4.5490,11.5009,0.0182,0.0027,1,0,0.0670,12794,11.5350,0,0,0,12714,0 +69,4.8236,11.6138,0.0169,0.0028,1,0,0.0574,1610,11.6532,0,0,0,1530,0 +70,4.7601,11.4734,0.0092,0.0019,1,0,0.0279,2100,11.5018,0,0,0,2020,0 +71,5.1526,11.3930,0.0112,0.0020,1,0,0.0246,2073,11.4282,0,0,0,1993,0 +72,5.1803,11.3279,0.0119,0.0016,1,0,0.0296,13534,11.3588,0,0,0,13454,0 +73,5.1052,11.4793,0.0154,0.0016,1,0,0.0218,1711,11.5150,0,0,0,1631,0 +74,5.1509,11.3330,0.0083,0.0016,1,0,0.0210,1638,11.3595,0,0,0,1558,0 +75,5.1145,11.2784,0.0125,0.0017,1,0,0.0208,1599,11.3103,0,0,0,1519,0 +76,5.1124,11.6388,0.0102,0.0024,1,0,0.0344,12160,11.6741,0,0,0,12080,0 +77,5.3169,11.4908,0.0106,0.0017,1,0,0.0215,3003,11.5254,0,0,0,2923,0 +78,5.3205,11.4772,0.0121,0.0019,1,0,0.0275,1501,11.5142,0,0,0,1421,0 +79,5.4950,11.4683,0.0084,0.0016,1,0,0.0237,1566,11.5008,0,0,0,1486,0 +80,5.3930,11.4122,0.0143,0.0019,1,0,0.0351,14363,11.4524,0,0,0,14283,0 +81,5.5333,11.3164,0.0090,0.0016,1,0,0.0256,2807,11.3490,0,0,0,2727,0 +82,5.5146,11.3779,0.0083,0.0022,1,0,0.0224,2055,11.4108,0,0,0,1975,0 +83,5.6054,11.3752,0.0076,0.0015,1,0,0.0245,1691,11.4063,0,0,0,1611,0 +84,5.5042,11.3971,0.0124,0.0023,1,0,0.0400,14258,11.4342,0,0,0,14178,0 +85,5.5447,11.2450,0.0087,0.0016,1,0,0.0252,1743,11.2780,0,0,0,1663,0 +86,5.5698,11.3380,0.0077,0.0016,1,0,0.0232,1660,11.3692,0,0,0,1580,0 +87,5.6433,11.4072,0.0075,0.0015,1,0,0.0215,1571,11.4383,0,0,0,1491,0 +88,5.6258,11.3856,0.0108,0.0019,1,0,0.0309,12831,11.4201,0,0,0,12751,0 +89,5.5905,11.3451,0.0077,0.0016,1,0,0.0219,1741,11.3761,0,0,0,1661,0 +90,5.5775,11.5054,0.0081,0.0016,1,0,0.0263,1574,11.5376,0,0,0,1494,0 +91,5.6134,11.4404,0.0077,0.0017,1,0,0.0238,1575,11.4720,0,0,0,1495,0 +92,5.5499,11.8392,0.0105,0.0022,1,0,0.0328,12598,11.8740,0,0,0,12518,0 +93,5.6091,11.6682,0.0166,0.0035,1,0,0.0674,2123,11.7033,0,0,0,2043,0 +94,5.6652,11.4890,0.0125,0.0032,1,0,0.0336,1917,11.5179,0,0,0,1837,0 +95,5.6838,11.5390,0.0141,0.0026,1,0,0.0447,1846,11.5818,0,0,0,1766,0 +96,5.5613,11.4384,0.0209,0.0023,1,0,0.0608,35348,11.4758,0,0,0,35268,0 +97,5.6342,11.4710,0.0094,0.0021,1,0,0.0278,2016,11.5052,0,0,0,1936,0 +98,5.6538,11.6977,0.0084,0.0016,1,0,0.0207,1798,11.7299,0,0,0,1718,0 +99,5.5170,11.4244,0.0078,0.0015,1,0,0.0213,1513,11.4560,0,0,0,1433,0 +100,5.5915,11.3976,0.0109,0.0017,1,0,0.0293,13803,11.4325,0,0,0,13723,0 +101,5.6299,11.3306,0.0088,0.0018,1,0,0.0229,1550,11.3637,0,0,0,1470,0 +102,5.8224,11.3279,0.0085,0.0018,1,0,0.0237,1597,11.3609,0,0,0,1517,0 +103,5.9202,11.3028,0.0082,0.0017,1,0,0.0235,1579,11.3355,0,0,0,1499,0 +104,5.9345,11.4435,0.0131,0.0020,1,0,0.0415,13277,11.4722,0,0,0,13197,0 +105,5.6105,11.5862,0.0165,0.0037,1,0,0.0639,1626,11.6326,0,0,0,1546,0 +106,5.6363,11.5300,0.0131,0.0033,1,0,0.0450,1568,11.5598,0,0,0,1488,0 +107,5.7221,11.7443,0.0130,0.0026,1,0,0.0463,1596,11.7736,0,0,0,1516,0 +108,5.7003,11.9308,0.0175,0.0030,1,0,0.0604,12086,11.9661,0,0,0,12006,0 +109,5.6402,11.6422,0.0130,0.0031,1,0,0.0447,1889,11.6718,0,0,0,1809,0 +110,5.8609,11.5980,0.0142,0.0030,1,0,0.0524,1650,11.6288,0,0,0,1570,0 +111,5.6721,11.3658,0.0088,0.0018,1,0,0.0261,1668,11.3899,0,0,0,1588,0 +112,5.5833,11.5538,0.0182,0.0035,1,0,0.0708,13876,11.5901,0,0,0,13796,0 +113,5.7477,11.6553,0.0220,0.0039,1,0,0.0822,2174,11.6944,0,0,0,2094,0 +114,5.9843,12.2450,0.0226,0.0047,1,0,0.0556,1760,12.3024,0,0,0,1680,0 +115,6.1161,12.0671,0.0182,0.0038,1,0,0.0923,1680,12.0974,0,0,0,1600,0 +116,5.9722,11.9218,0.0202,0.0040,1,0,0.0730,14009,11.9740,0,0,0,13929,0 +117,5.8565,12.1027,0.0180,0.0043,1,0,0.0570,1720,12.1402,0,0,0,1640,0 +118,5.7220,11.7492,0.0139,0.0031,1,0,0.0644,1681,11.7953,0,0,0,1601,0 +119,5.8535,12.1879,0.0168,0.0052,1,0,0.0721,1833,12.2359,0,0,0,1753,0 +120,5.8206,11.6827,0.0929,0.0032,1,0,0.2014,206126,11.8039,0,1,0,206046,0 +121,5.8384,12.0482,0.0199,0.0043,1,0,0.0657,15413,12.0978,0,0,0,15333,0 +122,5.8748,12.6880,0.0184,0.0034,1,0,0.0645,14098,12.7305,0,0,0,14018,0 +123,5.6215,12.0934,0.0214,0.0037,1,0,0.0640,12166,12.1335,0,0,0,12086,0 +124,5.7582,12.2976,0.0194,0.0031,1,0,0.0673,19073,12.3340,0,0,0,18993,0 +125,5.6149,11.8341,0.0221,0.0031,1,0,0.0750,8004,11.8747,0,0,0,7924,0 +126,5.7000,11.8003,0.0242,0.0038,1,0,0.0678,5885,11.8515,0,0,0,5805,0 +127,5.8248,12.2532,0.0195,0.0036,1,0,0.0913,3919,12.2835,0,0,0,3839,0 +128,5.7640,11.8455,0.0249,0.0046,1,0,0.0687,13309,11.8876,0,0,0,13229,0 +129,5.5837,11.7062,0.0253,0.0040,1,0,0.0831,4290,11.7616,0,0,0,4210,0 +130,5.8922,11.9522,0.0213,0.0043,1,0,0.0590,3546,12.0091,0,0,0,3466,0 +131,5.4802,11.5841,0.0191,0.0037,1,0,0.0689,1742,11.6295,0,0,0,1662,0 +132,5.7703,11.8028,0.0207,0.0042,1,0,0.0760,13764,11.8516,0,0,0,13684,0 +133,5.7652,11.8907,0.0270,0.0036,1,0,0.0593,1503,11.9384,0,0,0,1423,0 +134,5.8114,11.7552,0.0229,0.0045,1,0,0.0981,1486,11.8187,0,0,0,1406,0 +135,5.9583,11.7885,0.0241,0.0037,1,0,0.0643,1444,11.8399,0,0,0,1364,0 +136,5.3510,11.7285,0.0232,0.0037,1,0,0.0794,13169,11.7626,0,0,0,13089,0 +137,5.1496,11.8929,0.0173,0.0031,1,0,0.0627,1712,11.9280,0,0,0,1632,0 +138,5.2672,11.5530,0.0177,0.0028,1,0,0.0624,1411,11.5883,0,0,0,1331,0 +139,5.2122,11.8950,0.0178,0.0033,1,0,0.0586,1396,11.9380,0,0,0,1316,0 +140,5.2312,12.0906,0.0185,0.0038,1,0,0.0703,12918,12.1357,0,0,0,12838,0 +141,5.2458,11.5682,0.0150,0.0031,1,0,0.0569,1512,11.5946,0,0,0,1432,0 +142,5.3092,11.8968,0.0135,0.0034,1,0,0.0554,1647,11.9382,0,0,0,1567,0 +143,5.4289,12.0187,0.0208,0.0034,1,0,0.0791,1714,12.0583,0,0,0,1634,0 +144,5.3850,11.8462,0.0194,0.0029,1,0,0.0624,13854,11.8933,0,0,0,13774,0 +145,5.4033,11.3985,0.0114,0.0018,1,0,0.0313,2863,11.4340,0,0,0,2783,0 +146,5.3811,11.3692,0.0133,0.0027,1,0,0.0383,1851,11.3989,0,0,0,1771,0 +147,5.4983,11.4900,0.0160,0.0030,1,0,0.0610,1653,11.5343,0,0,0,1573,0 +148,5.3603,11.3743,0.0170,0.0027,1,0,0.0694,12897,11.4024,0,0,0,12817,0 +149,5.5103,11.5434,0.0109,0.0020,1,0,0.0338,1908,11.5791,0,0,0,1828,0 +150,5.6420,11.4451,0.0148,0.0034,1,0,0.0524,1709,11.4782,0,0,0,1629,0 +151,5.6763,11.6724,0.0195,0.0031,1,0,0.0524,1577,11.7207,0,0,0,1497,0 +152,5.6578,11.5850,0.0155,0.0025,1,0,0.0379,12422,11.6267,0,0,0,12342,0 +153,5.5620,11.7036,0.0151,0.0020,1,0,0.0425,1546,11.7487,0,0,0,1466,0 +154,5.6466,11.4014,0.0096,0.0018,1,0,0.0316,1484,11.4355,0,0,0,1404,0 +155,5.6308,11.3963,0.0083,0.0016,1,0,0.0219,1435,11.4283,0,0,0,1355,0 +156,5.6867,11.8612,0.0149,0.0024,1,0,0.0584,12541,11.9033,0,0,0,12461,0 +157,5.7466,11.8471,0.0210,0.0040,1,0,0.0813,1629,11.8982,0,0,0,1549,0 +158,5.5663,11.6952,0.0127,0.0021,1,0,0.0384,1631,11.7344,0,0,0,1551,0 +159,5.5854,11.4630,0.0092,0.0019,1,0,0.0305,1767,11.4997,0,0,0,1687,0 +160,5.6108,11.3836,0.0110,0.0018,1,0,0.0345,11628,11.4186,0,0,0,11548,0 +161,5.4382,11.5084,0.0091,0.0016,1,0,0.0259,2067,11.5412,0,0,0,1987,0 +162,5.5485,11.4557,0.0080,0.0016,1,0,0.0216,1569,11.4874,0,0,0,1489,0 +163,5.5101,11.5162,0.0080,0.0016,1,0,0.0218,1548,11.5479,0,0,0,1468,0 +164,5.4300,11.5164,0.0115,0.0017,1,0,0.0340,13734,11.5520,0,0,0,13654,0 +165,5.5615,11.2850,0.0081,0.0018,1,0,0.0249,1481,11.3193,0,0,0,1401,0 +166,5.5947,11.4298,0.0072,0.0015,1,0,0.0245,1492,11.4603,0,0,0,1412,0 +167,5.6353,11.6095,0.0130,0.0030,1,0,0.0459,1497,11.6397,0,0,0,1417,0 +168,5.7281,11.5298,0.0154,0.0034,1,0,0.0457,13183,11.5727,0,0,0,13103,0 +169,5.6433,11.6996,0.0097,0.0032,1,0,0.0292,1609,11.7352,0,0,0,1529,0 +170,5.6667,11.3519,0.0083,0.0017,1,0,0.0229,1493,11.3843,0,0,0,1413,0 +171,5.5546,11.4453,0.0078,0.0016,1,0,0.0227,1495,11.4769,0,0,0,1415,0 +172,5.5885,11.9220,0.0122,0.0021,1,0,0.0354,12963,11.9586,0,0,0,12883,0 +173,5.5442,11.3318,0.0083,0.0015,1,0,0.0232,1580,11.3636,0,0,0,1500,0 +174,5.5457,11.4706,0.0113,0.0022,1,0,0.0333,1639,11.5073,0,0,0,1559,0 +175,5.6455,11.4098,0.0089,0.0018,1,0,0.0242,1706,11.4424,0,0,0,1626,0 +176,5.5643,11.5905,0.0106,0.0017,1,0,0.0324,13561,11.6251,0,0,0,13481,0 +177,5.4874,11.3674,0.0105,0.0024,1,0,0.0364,2292,11.3935,0,0,0,2212,0 +178,5.6840,11.4367,0.0155,0.0033,1,0,0.0472,1673,11.4805,0,0,0,1593,0 +179,5.6729,11.4110,0.0115,0.0018,1,0,0.0311,1675,11.4475,0,0,0,1595,0 +180,5.6316,11.2001,0.0725,0.0020,1,0,0.1646,241609,11.2980,0,1,0,241529,0 +181,5.6234,19.6392,0.0169,0.0022,1,0,0.0525,19295,19.6786,0,0,0,19215,0 +182,5.6827,23.1189,0.0157,0.0023,1,0,0.0399,23736,23.1503,0,0,0,23656,0 +183,5.6024,25.7581,0.0165,0.0022,1,0,0.0428,19083,25.7970,0,0,0,19003,0 +184,5.6538,28.0799,0.0167,0.0019,1,0,0.0418,26325,28.1210,0,0,0,26245,0 +185,5.7172,30.7726,0.0106,0.0015,1,0,0.0307,11098,30.8069,0,0,0,11018,0 +186,5.5742,33.1764,0.0109,0.0023,1,0,0.0370,5182,33.2118,0,0,0,5102,0 +187,5.5932,35.2700,0.0110,0.0020,1,0,0.0395,4227,35.3021,0,0,0,4147,0 +188,5.6215,34.8848,0.0111,0.0016,1,0,0.0405,13715,34.9107,0,0,0,13635,0 +189,5.6483,37.3898,0.0088,0.0015,1,0,0.0250,3375,37.4181,0,0,0,3295,0 +190,5.5577,41.0476,0.0089,0.0023,1,0,0.0240,3209,41.0769,0,0,0,3129,0 +191,5.6099,36.3802,0.0092,0.0017,1,0,0.0247,3046,36.4095,0,0,0,2966,0 +192,5.6101,39.0969,0.0183,0.0017,1,0,0.0501,36504,39.1299,0,0,0,36424,0 +193,5.5277,37.3712,0.0090,0.0017,1,0,0.0278,3487,37.3990,0,0,0,3407,0 +194,5.6817,38.4234,0.0088,0.0026,1,0,0.0243,2644,38.4532,0,0,0,2564,0 +195,5.6448,39.1977,0.0084,0.0022,1,0,0.0215,1454,39.2254,0,0,0,1374,0 +196,5.5610,35.7752,0.0104,0.0016,1,0,0.0293,13733,35.8042,0,0,0,13653,0 +197,5.6148,36.6765,0.0080,0.0016,1,0,0.0233,1545,36.7032,0,0,0,1465,0 +198,5.5122,40.2361,0.0080,0.0015,1,0,0.0238,1480,40.2624,0,0,0,1400,0 +199,5.5292,36.5965,0.0075,0.0015,1,0,0.0212,1536,36.6221,0,0,0,1456,0 +200,5.5411,39.0107,0.0110,0.0016,1,0,0.0333,13205,39.0402,0,0,0,13125,0 +201,5.5210,37.7935,0.0084,0.0016,1,0,0.0216,1681,37.8200,0,0,0,1601,0 +202,5.5483,38.1916,0.0078,0.0015,1,0,0.0230,1452,38.2177,0,0,0,1372,0 +203,5.6169,37.9173,0.0077,0.0014,1,0,0.0192,1441,37.9427,0,0,0,1361,0 +204,5.5194,38.7792,0.0105,0.0019,1,0,0.0305,12938,38.8098,0,0,0,12858,0 +205,5.5053,38.3797,0.0120,0.0022,1,0,0.0257,1513,38.4123,0,0,0,1433,0 +206,5.5880,38.2000,0.0094,0.0017,1,0,0.0245,1519,38.2290,0,0,0,1439,0 +207,5.5389,37.5750,0.0090,0.0025,1,0,0.0233,1576,37.6043,0,0,0,1496,0 +208,5.6299,36.9106,0.0110,0.0017,1,0,0.0291,13716,36.9406,0,0,0,13636,0 +209,5.5194,37.3205,0.0090,0.0017,1,0,0.0269,2355,37.3445,0,0,0,2275,0 +210,5.4859,39.5989,0.0084,0.0015,1,0,0.0230,1817,39.6256,0,0,0,1737,0 +211,5.5028,40.7510,0.0098,0.0021,1,0,0.0256,1633,40.7809,0,0,0,1553,0 +212,5.5945,36.9272,0.0106,0.0016,1,0,0.0307,12758,36.9565,0,0,0,12678,0 +213,5.4856,38.9735,0.0142,0.0027,1,0,0.0438,1799,39.0104,0,0,0,1719,0 +214,5.5573,38.0846,0.0080,0.0018,1,0,0.0263,1778,38.1127,0,0,0,1698,0 +215,5.5887,39.1713,0.0087,0.0034,1,0,0.0299,1860,39.2055,0,0,0,1780,0 +216,5.5846,38.2413,0.0113,0.0018,1,0,0.0316,12532,38.2724,0,0,0,12452,0 +217,5.6295,38.2219,0.0086,0.0020,1,0,0.0225,1751,38.2505,0,0,0,1671,0 +218,5.5556,38.4615,0.0075,0.0015,1,0,0.0221,1636,38.4873,0,0,0,1556,0 +219,5.5807,38.1154,0.0162,0.0027,1,0,0.0587,1683,38.1485,0,0,0,1603,0 +220,5.5156,39.0931,0.0163,0.0021,1,0,0.0407,12582,39.1318,0,0,0,12502,0 +221,5.5659,38.4948,0.0095,0.0017,1,0,0.0280,1994,38.5244,0,0,0,1914,0 +222,5.6559,38.2968,0.0080,0.0018,1,0,0.0223,1880,38.3237,0,0,0,1800,0 +223,5.5438,38.3599,0.0085,0.0016,1,0,0.0229,1939,38.3877,0,0,0,1859,0 +224,5.6361,37.9979,0.0100,0.0015,1,0,0.0296,11730,38.0264,0,0,0,11650,0 +225,5.5500,38.1851,0.0084,0.0015,1,0,0.0225,2179,38.2118,0,0,0,2099,0 +226,5.5503,38.2040,0.0080,0.0016,1,0,0.0225,2101,38.2305,0,0,0,2021,0 +227,5.4965,38.0599,0.0082,0.0014,1,0,0.0222,1719,38.0865,0,0,0,1639,0 +228,5.5836,37.9480,0.0107,0.0016,1,0,0.0300,13921,37.9775,0,0,0,13841,0 +229,5.5172,38.2774,0.0093,0.0016,1,0,0.0221,1847,38.3053,0,0,0,1767,0 +230,5.5717,38.3318,0.0090,0.0033,1,0,0.0283,1893,38.3620,0,0,0,1813,0 +231,5.4976,38.3147,0.0081,0.0016,1,0,0.0221,1905,38.3414,0,0,0,1825,0 +232,5.7627,38.0478,0.0195,0.0035,1,0,0.0742,13498,38.0894,0,0,0,13418,0 +233,5.5985,38.6232,0.0207,0.0024,1,0,0.0600,2026,38.6720,0,0,0,1946,0 +234,5.5605,38.0026,0.0145,0.0027,1,0,0.0457,1815,38.0331,0,0,0,1735,0 +235,5.7082,38.2965,0.0130,0.0020,1,0,0.0364,1877,38.3298,0,0,0,1797,0 +236,5.6572,39.5149,0.0184,0.0029,1,0,0.0774,13197,39.5580,0,0,0,13117,0 +237,5.6080,38.3006,0.0129,0.0040,1,0,0.0276,2089,38.3308,0,0,0,2009,0 +238,5.5750,38.4706,0.0096,0.0044,1,0,0.0240,2058,38.5051,0,0,0,1978,0 +239,5.6506,38.0505,0.0091,0.0017,1,0,0.0242,2110,38.0796,0,0,0,2030,0 +240,5.5840,38.0962,0.0511,0.0018,1,0,0.1619,202797,38.1694,0,1,0,202717,0 +241,5.5432,38.2117,0.0160,0.0018,1,0,0.0335,18918,38.2423,0,0,0,18838,0 +242,5.5475,38.2990,0.0150,0.0017,1,0,0.0338,22086,38.3349,0,0,0,22006,0 +243,5.5363,38.3250,0.0187,0.0020,1,0,0.0423,16696,38.3677,0,0,0,16616,0 +244,5.5293,38.2867,0.0160,0.0020,1,0,0.0367,22219,38.3180,0,0,0,22139,0 +245,5.6428,38.2365,0.0144,0.0019,1,0,0.0407,5572,38.2762,0,0,0,5492,0 +246,5.5602,38.4535,0.0175,0.0031,1,0,0.0566,3454,38.4885,0,0,0,3374,0 +247,5.5615,38.2540,0.0103,0.0018,1,0,0.0297,2863,38.2852,0,0,0,2783,0 +248,5.6383,38.3509,0.0109,0.0017,1,0,0.0362,13614,38.3832,0,0,0,13534,0 +249,5.5622,38.2676,0.0110,0.0018,1,0,0.0300,2373,38.3002,0,0,0,2293,0 +250,5.6644,38.0812,0.0088,0.0015,1,0,0.0217,1704,38.1095,0,0,0,1624,0 +251,5.5697,38.2565,0.0088,0.0017,1,0,0.0228,1564,38.2852,0,0,0,1484,0 +252,5.5615,38.6670,0.0103,0.0016,1,0,0.0310,12564,38.6966,0,0,0,12484,0 +253,5.5383,38.4029,0.0088,0.0020,1,0,0.0279,1971,38.4355,0,0,0,1891,0 +254,5.5571,37.7359,0.0231,0.0026,1,0,0.0589,1887,37.7692,0,0,0,1807,0 +255,5.5568,37.9007,0.0147,0.0033,1,0,0.0557,1850,37.9239,0,0,0,1770,0 +256,5.4630,38.6830,0.0194,0.0027,1,0,0.0617,34636,38.7175,0,0,0,34556,0 +257,4.7724,37.9352,0.0096,0.0018,1,0,0.0231,2629,37.9678,0,0,0,2549,0 +258,4.5894,38.6569,0.0081,0.0015,1,0,0.0298,1941,38.6838,0,0,0,1861,0 +259,4.8434,38.2011,0.0091,0.0015,1,0,0.0246,1532,38.2287,0,0,0,1452,0 +260,5.1216,37.1950,0.0113,0.0016,1,0,0.0325,13797,37.2252,0,0,0,13717,0 +261,5.2279,37.8653,0.0132,0.0025,1,0,0.0447,1459,37.9043,0,0,0,1379,0 +262,5.0925,39.9018,0.0146,0.0030,1,0,0.0590,1551,39.9326,0,0,0,1471,0 +263,5.1217,38.4045,0.0096,0.0016,1,0,0.0294,1503,38.4338,0,0,0,1423,0 +264,5.3855,37.3699,0.0120,0.0018,1,0,0.0345,13263,37.4025,0,0,0,13183,0 +265,5.4980,36.3705,0.0081,0.0016,1,0,0.0224,1502,36.3973,0,0,0,1422,0 +266,5.3633,38.3301,0.0085,0.0016,1,0,0.0229,1456,38.3587,0,0,0,1376,0 +267,5.3271,40.8464,0.0080,0.0017,1,0,0.0220,1454,40.8739,0,0,0,1374,0 +268,5.5514,39.6133,0.0107,0.0018,1,0,0.0280,12055,39.6433,0,0,0,11975,0 +269,5.5815,38.1859,0.0081,0.0016,1,0,0.0267,1761,38.2035,0,0,0,1681,0 +270,5.6218,38.4545,0.0080,0.0016,1,0,0.0220,1531,38.4818,0,0,0,1451,0 +271,5.6077,38.2422,0.0198,0.0035,1,0,0.0536,1592,38.2881,0,0,0,1512,0 +272,5.5818,39.1986,0.0178,0.0036,1,0,0.0613,13763,39.2323,0,0,0,13683,0 +273,5.5906,38.4730,0.0147,0.0036,1,0,0.0403,2454,38.5167,0,0,0,2374,0 +274,5.7299,38.2760,0.0115,0.0022,1,0,0.0385,1727,38.3099,0,0,0,1647,0 +275,5.6860,38.7511,0.0143,0.0025,1,0,0.0395,1552,38.7906,0,0,0,1472,0 +276,5.6085,38.0615,0.0152,0.0030,1,0,0.0495,13993,38.1028,0,0,0,13913,0 +277,5.7351,38.1704,0.0116,0.0020,1,0,0.0286,1599,38.2066,0,0,0,1519,0 +278,5.6253,38.2618,0.0106,0.0018,1,0,0.0257,1644,38.2966,0,0,0,1564,0 +279,5.6239,38.3535,0.0143,0.0028,1,0,0.0619,1559,38.3940,0,0,0,1479,0 +280,5.6523,38.2548,0.0188,0.0035,1,0,0.0720,12590,38.3020,0,0,0,12510,0 +281,5.6124,38.3640,0.0199,0.0038,1,0,0.0595,1566,38.4029,0,0,0,1486,0 +282,5.6260,38.5264,0.0229,0.0030,1,0,0.0651,1529,38.5673,0,0,0,1449,0 +283,5.6391,38.2467,0.0153,0.0027,1,0,0.0685,1537,38.2740,0,0,0,1457,0 +284,5.8838,38.6234,0.0207,0.0030,1,0,0.0563,12608,38.6713,0,0,0,12528,0 +285,5.5956,38.7218,0.0143,0.0028,1,0,0.0517,1779,38.7621,0,0,0,1699,0 +286,5.5633,38.3061,0.0152,0.0025,1,0,0.0483,1721,38.3476,0,0,0,1641,0 +287,5.6470,38.2245,0.0137,0.0027,1,0,0.0527,1794,38.2547,0,0,0,1714,0 +288,5.4204,38.5550,0.0207,0.0052,1,0,0.0653,11481,38.5952,0,0,0,11401,0 +289,5.6393,38.2827,0.0223,0.0030,1,0,0.0672,2196,38.3219,0,0,0,2116,0 +290,5.6755,38.2845,0.0115,0.0024,1,0,0.0352,1805,38.3114,0,0,0,1725,0 +291,5.7270,38.1218,0.0158,0.0048,1,0,0.0512,1573,38.1662,0,0,0,1493,0 +292,5.5110,38.2709,0.0217,0.0030,1,0,0.0728,13812,38.3093,0,0,0,13732,0 +293,5.3054,37.5880,0.0105,0.0020,1,0,0.0339,1584,37.6186,0,0,0,1504,0 +294,5.2855,38.6060,0.0085,0.0017,1,0,0.0242,1600,38.6342,0,0,0,1520,0 +295,5.2138,39.5677,0.0163,0.0032,1,0,0.0496,1611,39.6116,0,0,0,1531,0 +296,5.5352,37.6638,0.0264,0.0025,1,0,0.0574,13290,37.7179,0,0,0,13210,0 +297,5.4650,36.2961,0.0111,0.0019,1,0,0.0285,1537,36.3173,0,0,0,1457,0 +298,5.5728,36.4337,0.0122,0.0021,1,0,0.0323,1594,36.4721,0,0,0,1514,0 +299,5.2275,46.0241,0.0182,0.0035,1,0,0.0643,1596,46.0672,0,0,0,1516,0 diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/receiver_console_tail.txt b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/receiver_console_tail.txt new file mode 100644 index 0000000..b5e1d2f --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/receiver_console_tail.txt @@ -0,0 +1,30 @@ +2026-05-16 19:40:46 +0000 iBridge macOS receiver listening on TCP 48320 +2026-05-16 19:41:01 +0000 primary connected +2026-05-16 19:41:01 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":2243700686414421837,"selected_codec":"hevc","width":3200,"height":1800,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:01 +0000 received_frame=0 size=3200x1800 payload=73471 keyframe=true +2026-05-16 19:41:02 +0000 received_frame=60 size=3200x1800 payload=207989 keyframe=true +2026-05-16 19:41:03 +0000 received_frame=120 size=3200x1800 payload=206046 keyframe=true +2026-05-16 19:41:04 +0000 received_frame=180 size=3200x1800 payload=241529 keyframe=true +2026-05-16 19:41:05 +0000 received_frame=240 size=3200x1800 payload=202717 keyframe=true +2026-05-16 19:41:06 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:16 +0000 primary connected +2026-05-16 19:41:16 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":15425208270754021499,"selected_codec":"hevc","width":2560,"height":1440,"fps":60,"frame_transport":"tcp"} +2026-05-16 19:41:16 +0000 received_frame=0 size=2560x1440 payload=19647 keyframe=true +2026-05-16 19:41:17 +0000 received_frame=60 size=2560x1440 payload=63662 keyframe=true +2026-05-16 19:41:18 +0000 received_frame=120 size=2560x1440 payload=46150 keyframe=true +2026-05-16 19:41:19 +0000 received_frame=180 size=2560x1440 payload=59023 keyframe=true +2026-05-16 19:41:20 +0000 received_frame=240 size=2560x1440 payload=44357 keyframe=true +2026-05-16 19:41:21 +0000 client disconnected_or_failed frames=300 error=connection closed +2026-05-16 19:41:39 +0000 primary connected +2026-05-16 19:41:39 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":680025305771501350,"selected_codec":"hevc","width":2560,"height":1440,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:39 +0000 received_frame=0 size=2560x1440 payload=25908 keyframe=true +2026-05-16 19:41:41 +0000 received_frame=60 size=2560x1440 payload=61290 keyframe=true +2026-05-16 19:41:43 +0000 received_frame=120 size=2560x1440 payload=44413 keyframe=true +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=150 error=connection closed +2026-05-16 19:41:44 +0000 primary connected +2026-05-16 19:41:44 +0000 handshake={"magic":"IBRIDGE","version":0,"role":"primary","session_id":9644177777636521623,"selected_codec":"hevc","width":3200,"height":1800,"fps":30,"frame_transport":"tcp"} +2026-05-16 19:41:44 +0000 received_frame=0 size=3200x1800 payload=40263 keyframe=true +2026-05-16 19:41:44 +0000 receiver_missing_frames=15 before=60 +2026-05-16 19:41:44 +0000 receiver_missing_frames=59 before=120 +2026-05-16 19:41:44 +0000 receiver_missing_frames=16 before=137 +2026-05-16 19:41:44 +0000 client disconnected_or_failed frames=60 error=connection closed diff --git a/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/summary.md b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/summary.md new file mode 100644 index 0000000..73d43e4 --- /dev/null +++ b/benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/summary.md @@ -0,0 +1,17 @@ +# LAN High Quality Synthetic Smoke + +Date: 2026-05-17 + +Receiver: 2017 4K iMac over direct 1GbE, `169.254.70.114:48320`. + +| Case | Resolution | FPS | Mbps | Encoded | Sender drops | Send failures | Avg encode ms | P95 encode ms | Avg send ms | P95 send ms | +| --- | --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | +| 2560x1440_30fps_35mbps | 2560x1440 | 30 | 35 | 150/150 | 0 | 0 | 14.516 | 25.772 | 0.060 | 0.098 | +| 2560x1440_60fps_45mbps | 2560x1440 | 60 | 45 | 300/300 | 0 | 0 | 22.340 | 41.191 | 0.067 | 0.153 | +| 3200x1800_30fps_50mbps | 3200x1800 | 30 | 50 | 150/150 | 90 | 0 | 39.968 | 74.514 | 57.962 | 0.381 | +| 3200x1800_60fps_60mbps | 3200x1800 | 60 | 60 | 300/300 | 0 | 0 | 22.998 | 39.214 | 0.046 | 0.076 | + +Interpretation: +- Direct LAN transport is stable in these short synthetic runs: send failures stayed at 0. +- `2560x1440@30 35Mbps` is the current wired readability default because it improves text resolution over 1080p while keeping the 30fps frame budget mostly realistic in the current encoder state. +- `3200x1800` and 60Hz higher-detail modes remain experimental until the encoder slow-state/backpressure problem is solved. diff --git a/benchmarks/runs/2026-05-17_virtual_screen_live_4k/summary.md b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/summary.md new file mode 100644 index 0000000..d3653ea --- /dev/null +++ b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/summary.md @@ -0,0 +1,39 @@ +# BetterDisplay Virtual Screen Live Capture Smoke + +Date: 2026-05-17 + +## Setup + +- Source virtual display: BetterDisplay `Virtual 16:9` +- macOS display mode: UI looks like `1920x1080 @ 60Hz` +- Backing pixels: `3840x2160` +- Primary: MacBook Pro M1 Max +- Receiver: 2017 21.5-inch Retina 4K iMac +- Receiver IP: `169.254.70.114` +- Network: direct 1GbE + +## Results + +| Capture/output mode | Frames submitted | Frames encoded | Sender drops | Send failures | Avg encode ms | P95 encode ms | Avg send ms | Receiver result | +|---|---:|---:|---:|---:|---:|---:|---:|---| +| `3840x2160@60` | 299/600 | 299 | 0 | 0 | 32.346 | 64.015 | 0.468 | receiver logged 299 frames | +| `1920x1080@60` downscale | 255/600 | 255 | 0 | 0 | 13.793 | 22.332 | 0.510 | receiver logged 255 frames | + +## Read + +- BetterDisplay virtual screen capture works with iBridge. +- `Virtual 16:9` is a valid source for ScreenCaptureKit and live iMac + receiver transport. +- The current static desktop only submitted changed frames, so this is not a + full 60fps motion test. +- 4K backing-pixel capture is too latent for a final smooth mode in this run. +- Downscaled `1920x1080` output is much closer to interactive budget and is the + safer next practical mode while backpressure/frame-drop policy is added. + +## Next + +1. Add explicit display selection by display name or ID instead of relying on + `--capture-display-index 0`. +2. Add live sender backpressure / newest-frame-wins dropping. +3. Add a one-command launcher that starts the iMac receiver and captures the + BetterDisplay virtual screen. diff --git a/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_4k_capture_send.csv b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_4k_capture_send.csv new file mode 100644 index 0000000..cf40380 --- /dev/null +++ b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_4k_capture_send.csv @@ -0,0 +1,300 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,63.2361,0.1179,0.0082,1,0,0.0993,86635,63.3825,0,1,0,86555,0 +1,0.0000,44.4774,0.0432,0.0028,1,0,0.0765,6416,44.5402,0,0,0,6336,0 +2,0.0000,38.3841,0.0567,0.0034,1,0,0.1005,26183,38.4712,0,0,0,26103,0 +3,0.0000,30.4622,0.0323,0.0036,1,0,0.1008,39513,30.5249,0,0,0,39433,0 +4,0.0000,22.9423,0.0330,0.0036,1,0,0.1052,43780,22.9947,0,0,0,43700,0 +5,0.0000,16.0568,0.0423,0.0032,1,0,0.1049,25759,16.1308,0,0,0,25679,0 +6,0.0000,15.8120,0.0401,0.0090,1,0,0.0902,5027,15.8885,0,0,0,4947,0 +7,0.0000,15.6247,0.0305,0.0033,1,0,0.0726,3442,15.6694,0,0,0,3362,0 +8,0.0000,15.5525,0.0415,0.0032,1,0,0.1096,2317,15.6510,0,0,0,2237,0 +9,0.0000,15.5851,0.0293,0.0048,1,0,0.0824,2575,15.6502,0,0,0,2495,0 +10,0.0000,15.8788,0.0285,0.0049,1,0,0.0928,2366,15.9299,0,0,0,2286,0 +11,0.0000,15.7275,0.0297,0.0042,1,0,0.1161,1419,15.8003,0,0,0,1339,0 +12,0.0000,15.5433,0.0343,0.0040,1,0,0.0828,1287,15.5990,0,0,0,1207,0 +13,0.0000,16.2432,0.0498,0.0116,1,0,0.1614,1270,16.3396,0,0,0,1190,0 +14,0.0000,16.7407,0.0590,0.0056,1,0,0.1187,1293,16.8388,0,0,0,1213,0 +15,0.0000,15.9619,0.0490,0.0064,1,0,0.1739,949,16.0522,0,0,0,869,0 +16,0.0000,17.1641,0.0721,0.0067,1,0,0.1635,1385,17.2838,0,0,0,1305,0 +17,0.0000,17.3909,0.0404,0.0069,1,0,0.1564,1240,17.4685,0,0,0,1160,0 +18,0.0000,17.2211,0.0597,0.0121,1,0,0.0942,1197,17.3402,0,0,0,1117,0 +19,0.0000,16.9981,0.0571,0.0139,1,0,0.0726,1196,17.0947,0,0,0,1116,0 +20,0.0000,16.3452,0.0613,0.0075,1,0,0.1874,1222,16.4304,0,0,0,1142,0 +21,0.0000,16.5930,0.0460,0.0096,1,0,0.1593,1249,16.6725,0,0,0,1169,0 +22,0.0000,15.3857,0.0293,0.0030,1,0,0.0831,1472,15.4440,0,0,0,1392,0 +23,0.0000,15.8690,0.0285,0.0036,1,0,0.0729,1178,15.9273,0,0,0,1098,0 +24,0.0000,15.7110,0.0232,0.0033,1,0,0.0957,1164,15.7544,0,0,0,1084,0 +25,0.0000,16.5544,0.1065,0.0129,1,0,0.1754,1130,16.8454,0,0,0,1050,0 +26,0.0000,16.3801,0.0413,0.0075,1,0,0.3438,1398,16.4878,0,0,0,1318,0 +27,0.0000,16.5973,0.0603,0.0084,1,0,0.3955,1189,16.6986,0,0,0,1109,0 +28,0.0000,16.3436,0.0537,0.0105,1,0,0.1259,1084,16.4970,0,0,0,1004,0 +29,0.0000,16.3446,0.0658,0.0074,1,0,0.3607,1140,16.4803,0,0,0,1060,0 +30,0.0000,16.1865,0.0477,0.0105,1,0,0.1358,1076,16.2935,0,0,0,996,0 +31,0.0000,16.3203,0.0582,0.0105,1,0,0.1835,973,16.5113,0,0,0,893,0 +32,0.0000,17.4631,0.0740,0.0093,1,0,0.7192,936,17.7224,0,0,0,856,0 +33,0.0000,17.1157,0.0567,0.0096,1,0,0.4695,936,17.2608,0,0,0,856,0 +34,0.0000,17.3782,0.0661,0.0088,1,0,0.1077,929,18.4493,0,0,0,849,0 +35,0.0000,14.7565,0.1067,0.0381,1,0,0.3459,929,15.1643,0,0,0,849,0 +36,0.0000,16.2928,0.0427,0.0073,1,0,0.5577,1264,16.4260,0,0,0,1184,0 +37,0.0000,16.3116,0.0483,0.0078,1,0,0.4843,1248,16.4318,0,0,0,1168,0 +38,0.0000,16.3580,0.0442,0.0087,1,0,0.2747,947,16.4911,0,0,0,867,0 +39,0.0000,16.0637,0.0475,0.0082,1,0,0.4504,930,16.1848,0,0,0,850,0 +40,0.0000,15.5740,0.1166,0.0135,1,0,2.4761,929,15.8252,0,0,0,849,0 +41,0.0000,15.2990,0.0700,0.0139,1,0,0.4330,1317,15.4857,0,0,0,1237,0 +42,0.0000,15.0639,0.0400,0.0054,1,0,0.2612,949,15.1797,0,0,0,869,0 +43,0.0000,14.2854,0.0462,0.0066,1,0,0.1018,930,14.3856,0,0,0,850,0 +44,0.0000,16.7985,0.0368,0.0067,1,0,0.1054,930,16.8881,0,0,0,850,0 +45,0.0000,15.6025,0.0341,0.0041,1,0,0.0829,930,15.6809,0,0,0,850,0 +46,0.0000,15.6285,0.0218,0.0033,1,0,0.0712,930,15.6860,0,0,0,850,0 +47,0.0000,15.3125,0.0250,0.0028,1,0,0.0712,930,15.3687,0,0,0,850,0 +48,0.0000,15.0861,0.0269,0.0025,1,0,0.0678,1055,15.1293,0,0,0,975,0 +49,0.0000,15.5084,0.0312,0.0026,1,0,0.0775,1189,15.5764,0,0,0,1109,0 +50,0.0000,14.6925,0.0224,0.0041,1,0,0.0601,947,14.7538,0,0,0,867,0 +51,0.0000,15.5963,0.0280,0.0029,1,0,0.0696,1252,15.6584,0,0,0,1172,0 +52,0.0000,14.1967,0.0290,0.0038,1,0,0.0769,1350,14.2600,0,0,0,1270,0 +53,0.0000,14.7273,0.0241,0.0049,1,0,0.0744,947,14.7637,0,0,0,867,0 +54,0.0000,14.6031,0.0330,0.0045,1,0,0.0672,992,14.6745,0,0,0,912,0 +55,0.0000,14.9855,0.0244,0.0023,1,0,0.0692,933,15.0259,0,0,0,853,0 +56,0.0000,14.7095,0.0208,0.0032,1,0,0.0553,1004,14.7650,0,0,0,924,0 +57,0.0000,14.0485,0.0228,0.0030,1,0,0.0683,931,14.1026,0,0,0,851,0 +58,0.0000,14.6272,0.0240,0.0035,1,0,0.0618,1006,14.6980,0,0,0,926,0 +59,0.0000,15.2965,0.0307,0.0028,1,0,0.0736,934,15.3374,0,0,0,854,0 +60,0.0000,13.5185,0.0932,0.0029,1,0,0.1632,164977,13.6226,0,1,0,164897,0 +61,0.0000,15.7271,0.0297,0.0030,1,0,0.0812,1539,15.7683,0,0,0,1459,0 +62,0.0000,15.4778,0.0224,0.0047,1,0,0.0712,1474,15.5120,0,0,0,1394,0 +63,0.0000,14.9333,0.0274,0.0034,1,0,0.0585,1007,14.9721,0,0,0,927,0 +64,0.0000,14.6402,0.0220,0.0029,1,0,0.0722,941,14.6712,0,0,0,861,0 +65,0.0000,15.2963,0.0197,0.0032,1,0,0.0585,941,15.3258,0,0,0,861,0 +66,0.0000,14.9930,0.0224,0.0034,1,0,0.0711,937,15.0261,0,0,0,857,0 +67,0.0000,15.2550,0.0217,0.0038,1,0,0.0702,937,15.2878,0,0,0,857,0 +68,0.0000,14.9921,0.0343,0.0029,1,0,0.0687,937,15.0364,0,0,0,857,0 +69,0.0000,14.9777,0.0150,0.0024,1,0,0.0594,937,15.0010,0,0,0,857,0 +70,0.0000,14.7931,0.0283,0.0023,1,0,0.0438,937,14.8336,0,0,0,857,0 +71,0.0000,15.3330,0.0169,0.0021,1,0,0.0533,937,15.3582,0,0,0,857,0 +72,0.0000,15.6194,0.0195,0.0027,1,0,0.0476,937,15.6532,0,0,0,857,0 +73,0.0000,15.0545,0.0225,0.0034,1,0,0.0782,937,15.1063,0,0,0,857,0 +74,0.0000,15.1805,0.0292,0.0030,1,0,0.0479,1107,15.2285,0,0,0,1027,0 +75,0.0000,14.9071,0.0283,0.0029,1,0,0.0688,940,14.9650,0,0,0,860,0 +76,0.0000,15.8015,0.0245,0.0068,1,0,0.0769,937,15.8676,0,0,0,857,0 +77,0.0000,15.6216,0.0221,0.0032,1,0,0.0584,937,15.6804,0,0,0,857,0 +78,0.0000,15.2952,0.0260,0.0035,1,0,0.0616,937,15.3405,0,0,0,857,0 +79,0.0000,15.4443,0.0234,0.0029,1,0,0.0530,1393,15.4851,0,0,0,1313,0 +80,0.0000,14.8127,0.0335,0.0047,1,0,0.0834,955,14.8737,0,0,0,875,0 +81,0.0000,14.3154,0.0312,0.0045,1,0,0.0715,937,14.3734,0,0,0,857,0 +82,0.0000,14.4588,0.0513,0.0094,1,0,0.1810,937,14.5935,0,0,0,857,0 +83,0.0000,15.8390,0.0503,0.0068,1,0,0.2700,937,15.9865,0,0,0,857,0 +84,0.0000,16.6141,0.0545,0.0074,1,0,0.1517,937,16.6941,0,0,0,857,0 +85,0.0000,15.6055,0.0466,0.0074,1,0,0.2941,1246,15.7435,0,0,0,1166,0 +86,0.0000,16.1228,0.0481,0.0070,1,0,0.2941,947,16.2420,0,0,0,867,0 +87,0.0000,16.0997,0.0551,0.0055,1,0,0.1394,937,16.1798,0,0,0,857,0 +88,0.0000,16.1807,0.0406,0.0082,1,0,0.1635,937,16.2485,0,0,0,857,0 +89,0.0000,16.6015,0.0512,0.0093,1,0,0.1570,937,16.6829,0,0,0,857,0 +90,0.0000,16.0600,0.0532,0.0117,1,0,0.2975,937,16.1665,0,0,0,857,0 +91,0.0000,17.8901,0.1059,0.0094,1,0,0.3036,937,20.4421,0,0,0,857,0 +92,0.0000,17.1027,0.0980,0.0129,1,0,0.3820,937,17.5532,0,0,0,857,0 +93,0.0000,16.9949,0.0911,0.0125,1,0,0.8803,937,17.5007,0,0,0,857,0 +94,0.0000,16.4774,0.0708,0.0106,1,0,0.1879,937,16.6991,0,0,0,857,0 +95,0.0000,17.8941,0.0990,0.0088,1,0,1.6025,937,18.2714,0,0,0,857,0 +96,0.0000,15.2355,0.0598,0.0144,1,0,0.3919,937,15.4345,0,0,0,857,0 +97,0.0000,15.2413,0.0804,0.0079,1,0,0.4369,1348,15.5003,0,0,0,1268,0 +98,0.0000,17.6057,0.1665,0.0090,1,0,0.4454,955,18.8812,0,0,0,875,0 +99,0.0000,15.1211,0.0749,0.0108,1,0,0.5703,937,15.2444,0,0,0,857,0 +100,0.0000,18.7883,0.1319,0.0099,1,0,0.1205,937,19.7929,0,0,0,857,0 +101,0.0000,14.5995,0.0696,0.0049,1,0,0.2079,937,14.7341,0,0,0,857,0 +102,0.0000,17.3090,0.0688,0.0123,1,0,0.4705,937,17.6306,0,0,0,857,0 +103,0.0000,16.9648,0.0454,0.0077,1,0,0.1172,937,17.0702,0,0,0,857,0 +104,0.0000,16.2045,0.0440,0.0067,1,0,0.1537,1029,16.2924,0,0,0,949,0 +105,0.0000,17.4521,0.0889,0.0118,1,0,0.2939,1026,17.6382,0,0,0,946,0 +106,0.0000,16.2846,0.0436,0.0120,1,0,0.1756,937,16.4013,0,0,0,857,0 +107,0.0000,16.8557,0.0794,0.0138,1,0,0.1516,937,17.0501,0,0,0,857,0 +108,0.0000,17.0155,0.0827,0.0049,1,0,0.2193,1395,17.1244,0,0,0,1315,0 +109,0.0000,16.3792,0.0365,0.0064,1,0,0.1210,1208,16.4412,0,0,0,1128,0 +110,0.0000,15.7493,0.2123,0.0119,1,0,0.5142,938,16.0544,0,0,0,858,0 +111,0.0000,14.9384,0.0708,0.0110,1,0,0.1609,936,15.0674,0,0,0,856,0 +112,0.0000,17.6434,0.0727,0.0097,1,0,0.3141,936,17.8762,0,0,0,856,0 +113,0.0000,15.3551,0.0710,0.0097,1,0,0.2063,936,15.4695,0,0,0,856,0 +114,0.0000,17.6543,0.0736,0.0090,1,0,0.2896,936,18.4346,0,0,0,856,0 +115,0.0000,16.0549,0.0725,0.0095,1,0,0.4077,936,16.1916,0,0,0,856,0 +116,0.0000,15.6455,0.0545,0.0068,1,0,0.1514,936,15.7285,0,0,0,856,0 +117,0.0000,16.1319,0.0517,0.0079,1,0,0.1507,1216,16.2110,0,0,0,1136,0 +118,0.0000,16.2878,0.1341,0.0064,1,0,1.4490,945,16.4993,0,0,0,865,0 +119,0.0000,15.4006,0.0731,0.0095,1,0,0.2769,936,15.5533,0,0,0,856,0 +120,0.0000,16.6973,0.2656,0.0105,1,0,5.2580,166177,17.1109,0,1,0,166097,0 +121,0.0000,15.9201,0.0806,0.0143,1,0,0.4465,1168,16.1070,0,0,0,1088,0 +122,0.0000,16.9565,0.0955,0.0080,1,0,0.6144,1013,17.1353,0,0,0,933,0 +123,0.0000,17.6123,0.0658,0.0083,1,0,0.3990,962,17.8604,0,0,0,882,0 +124,0.0000,17.8786,0.0561,0.0060,1,0,0.4951,939,18.0083,0,0,0,859,0 +125,0.0000,17.3554,0.1390,0.0156,1,0,2.5969,940,17.9106,0,0,0,860,0 +126,0.0000,16.9422,0.0536,0.0064,1,0,0.1879,936,17.0468,0,0,0,856,0 +127,0.0000,17.1771,0.0602,0.0050,1,0,0.3045,936,17.3035,0,0,0,856,0 +128,0.0000,16.1802,0.0493,0.0129,1,0,0.1316,936,16.3451,0,0,0,856,0 +129,0.0000,16.0083,0.0433,0.0050,1,0,0.1123,1550,16.0942,0,0,0,1470,0 +130,0.0000,16.7303,0.0567,0.0106,1,0,0.1185,1250,16.8383,0,0,0,1170,0 +131,0.0000,15.6744,0.0470,0.0073,1,0,0.0943,940,15.7651,0,0,0,860,0 +132,0.0000,15.7028,0.1055,0.0051,1,0,0.4004,936,16.4443,0,0,0,856,0 +133,0.0000,17.1363,0.1535,0.0103,1,0,0.6031,936,19.6591,0,0,0,856,0 +134,0.0000,14.3142,0.0537,0.0091,1,0,0.1221,936,14.4300,0,0,0,856,0 +135,0.0000,14.3683,0.0686,0.0069,1,0,0.1181,936,14.5040,0,0,0,856,0 +136,0.0000,14.8330,0.0555,0.0077,1,0,0.1458,1236,14.9160,0,0,0,1156,0 +137,0.0000,14.2104,0.0358,0.0040,1,0,0.0750,938,14.2798,0,0,0,858,0 +138,0.0000,14.8212,0.0144,0.0023,1,0,0.0613,936,14.8521,0,0,0,856,0 +139,0.0000,15.7340,0.0828,0.0150,1,0,0.6480,936,15.8717,0,0,0,856,0 +140,0.0000,18.7388,0.0945,0.0098,1,0,3.7689,936,19.3311,0,0,0,856,0 +141,0.0000,16.5708,0.1207,0.0172,1,0,0.2415,936,16.8063,0,0,0,856,0 +142,0.0000,15.8118,0.0796,0.0060,1,0,0.1240,1189,16.0848,0,0,0,1109,0 +143,0.0000,15.9050,0.0767,0.0095,1,0,0.3720,1405,16.2169,0,0,0,1325,0 +144,0.0000,15.3455,0.0508,0.0071,1,0,0.1460,963,15.4242,0,0,0,883,0 +145,0.0000,15.9187,0.0729,0.0103,1,0,0.2586,936,16.0413,0,0,0,856,0 +146,0.0000,17.2946,0.0649,0.0107,1,0,0.0801,1122,17.5084,0,0,0,1042,0 +147,0.0000,15.6595,0.3705,0.0446,1,0,0.1135,945,16.1855,0,0,0,865,0 +148,0.0000,17.4592,0.1372,0.0150,1,0,0.3453,936,17.7003,0,0,0,856,0 +149,0.0000,17.7756,0.0860,0.0105,1,0,0.1959,936,18.0409,0,0,0,856,0 +150,0.0000,16.1150,0.0578,0.0107,1,0,0.1489,936,16.2590,0,0,0,856,0 +151,0.0000,15.7997,0.0650,0.0101,1,0,0.2251,936,15.9105,0,0,0,856,0 +152,0.0000,16.4212,0.0512,0.0077,1,0,0.1551,1036,16.5436,0,0,0,956,0 +153,0.0000,15.8440,0.0485,0.0045,1,0,0.1074,945,15.9618,0,0,0,865,0 +154,0.0000,15.8030,0.1160,0.0091,1,0,0.4218,1378,16.4766,0,0,0,1298,0 +155,0.0000,15.5888,0.0578,0.0075,1,0,0.5249,1221,15.6748,0,0,0,1141,0 +156,0.0000,14.8192,0.0556,0.0090,1,0,0.4701,1464,14.9065,0,0,0,1384,0 +157,0.0000,15.7340,0.0942,0.0085,1,0,0.1372,986,15.8807,0,0,0,906,0 +158,0.0000,15.5676,0.0454,0.0089,1,0,0.1365,1361,15.6384,0,0,0,1281,0 +159,0.0000,15.4770,0.0680,0.0101,1,0,0.1878,1248,15.5752,0,0,0,1168,0 +160,0.0000,15.9552,0.0815,0.0064,1,0,0.1595,1226,16.0816,0,0,0,1146,0 +161,0.0000,14.6327,0.0530,0.0075,1,0,0.1275,1540,14.7365,0,0,0,1460,0 +162,0.0000,15.6032,0.0786,0.0111,1,0,0.2965,1184,15.7350,0,0,0,1104,0 +163,0.0000,16.5037,0.0686,0.0079,1,0,0.1396,1195,16.6312,0,0,0,1115,0 +164,0.0000,15.4693,0.0853,0.0098,1,0,0.3441,1027,15.5884,0,0,0,947,0 +165,0.0000,15.6891,0.0620,0.0122,1,0,0.1469,1668,15.8110,0,0,0,1588,0 +166,0.0000,15.2563,0.0780,0.0132,1,0,0.4055,1339,16.1770,0,0,0,1259,0 +167,0.0000,15.8235,0.0745,0.0159,1,0,0.1393,1059,15.9666,0,0,0,979,0 +168,0.0000,16.8507,0.0840,0.0113,1,0,0.1042,1036,16.9770,0,0,0,956,0 +169,0.0000,15.7822,0.0607,0.0057,1,0,0.1581,1021,15.8693,0,0,0,941,0 +170,0.0000,15.9779,0.0670,0.0083,1,0,0.1485,1021,16.1073,0,0,0,941,0 +171,0.0000,16.8544,0.0659,0.0064,1,0,0.3901,948,17.0328,0,0,0,868,0 +172,0.0000,18.5546,0.0875,0.0106,1,0,0.9499,942,19.0729,0,0,0,862,0 +173,0.0000,17.9240,0.1585,0.0217,1,0,1.9238,1028,18.2522,0,0,0,948,0 +174,0.0000,16.4935,0.0775,0.0071,1,0,0.1373,1035,16.6155,0,0,0,955,0 +175,0.0000,19.7936,0.1365,0.0182,1,0,0.3186,1044,20.2956,0,0,0,964,0 +176,0.0000,19.3046,0.6777,0.0124,1,0,0.2898,1033,20.8096,0,0,0,953,0 +177,0.0000,16.0956,0.0840,0.0073,1,0,0.1197,1036,16.2171,0,0,0,956,0 +178,0.0000,15.7487,0.1307,0.0154,1,0,0.3545,1025,15.9207,0,0,0,945,0 +179,0.0000,17.1251,0.0655,0.0103,1,0,0.1418,1013,17.2580,0,0,0,933,0 +180,0.0000,19.1986,0.3791,0.0161,1,0,9.3912,167983,20.2573,0,1,0,167903,0 +181,0.0000,35.2107,0.1662,0.0131,1,0,0.3414,1156,35.5300,0,0,0,1076,0 +182,0.0000,29.2329,0.0829,0.0410,1,0,0.8378,1005,29.3789,0,0,0,925,0 +183,0.0000,36.1692,0.0655,0.0176,1,0,0.2521,958,36.3240,0,0,0,878,0 +184,0.0000,40.0937,0.0725,0.0082,1,0,0.1023,937,40.2041,0,0,0,857,0 +185,0.0000,37.4859,0.0565,0.0088,1,0,0.1361,939,37.5960,0,0,0,859,0 +186,0.0000,41.7983,0.1055,0.0177,1,0,0.3281,935,41.9621,0,0,0,855,0 +187,0.0000,48.1899,0.1429,0.0123,1,0,0.6379,1028,48.6723,0,0,0,948,0 +188,0.0000,50.5367,0.1077,0.0131,1,0,0.8597,944,50.8722,0,0,0,864,0 +189,0.0000,55.2068,0.0800,0.0091,1,0,0.2055,1036,55.6244,0,0,0,956,0 +190,0.0000,58.7129,0.0863,0.0091,1,0,0.1724,946,58.8854,0,0,0,866,0 +191,0.0000,61.3504,0.1652,0.0138,1,0,0.7994,936,61.9089,0,0,0,856,0 +192,0.0000,65.3761,0.1370,0.0105,1,0,1.2602,1042,65.5582,0,0,0,962,0 +193,0.0000,60.5166,0.1363,0.0165,1,0,0.3257,947,60.7020,0,0,0,867,0 +194,0.0000,59.9839,0.1436,0.0192,1,0,0.4025,1033,60.1903,0,0,0,953,0 +195,0.0000,61.3807,0.1662,0.0170,1,0,0.3709,942,61.6650,0,0,0,862,0 +196,0.0000,66.7946,0.0792,0.0101,1,0,0.3007,936,66.9050,0,0,0,856,0 +197,0.0000,71.9591,0.1535,0.0173,1,0,1.7866,936,72.2931,0,0,0,856,0 +198,0.0000,76.9980,0.0880,0.0073,1,0,1.2127,936,77.1701,0,0,0,856,0 +199,0.0000,63.4490,0.1200,0.0168,1,0,0.4475,936,63.6833,0,0,0,856,0 +200,0.0000,45.6153,0.1608,0.0144,1,0,2.2842,936,45.9326,0,0,0,856,0 +201,0.0000,48.2963,0.1333,0.0182,1,0,0.2996,936,48.5469,0,0,0,856,0 +202,0.0000,54.1802,0.1225,0.0103,1,0,1.7682,936,54.4235,0,0,0,856,0 +203,0.0000,57.4082,0.0895,0.0126,1,0,0.2175,936,57.5375,0,0,0,856,0 +204,0.0000,59.2905,0.3187,0.0118,1,0,0.3627,936,59.7185,0,0,0,856,0 +205,0.0000,61.0869,0.1577,0.0196,1,0,0.3476,936,61.3515,0,0,0,856,0 +206,0.0000,61.7253,0.1783,0.0631,1,0,0.3404,936,62.0419,0,0,0,856,0 +207,0.0000,64.6031,0.2220,0.0149,1,0,0.2385,936,65.0463,0,0,0,856,0 +208,0.0000,60.9257,0.1468,0.0216,1,0,0.2839,936,61.3930,0,0,0,856,0 +209,0.0000,60.2107,0.1271,0.0151,1,0,0.2833,936,60.3990,0,0,0,856,0 +210,0.0000,59.9706,0.1382,0.0188,1,0,0.3604,936,60.1698,0,0,0,856,0 +211,0.0000,59.8979,0.1064,0.0118,1,0,0.7995,936,60.1167,0,0,0,856,0 +212,0.0000,59.2958,0.1425,0.0237,1,0,0.5571,936,59.5416,0,0,0,856,0 +213,0.0000,60.8895,0.1462,0.0207,1,0,0.3887,936,61.1035,0,0,0,856,0 +214,0.0000,61.0187,0.1499,0.0192,1,0,0.3642,936,61.2721,0,0,0,856,0 +215,0.0000,63.2692,0.1138,0.0203,1,0,1.2651,936,63.5089,0,0,0,856,0 +216,0.0000,62.5101,0.1648,0.0122,1,0,0.6111,936,62.7246,0,0,0,856,0 +217,0.0000,61.3237,0.1451,0.0119,1,0,0.4469,936,61.8678,0,0,0,856,0 +218,0.0000,55.9688,0.1300,0.0095,1,0,1.7091,936,57.1336,0,0,0,856,0 +219,0.0000,57.2329,0.1285,0.0141,1,0,0.7429,936,57.5804,0,0,0,856,0 +220,0.0000,60.4665,0.2815,0.0109,1,0,0.2047,936,61.2024,0,0,0,856,0 +221,0.0000,60.3695,0.0758,0.0071,1,0,0.1796,936,60.4906,0,0,0,856,0 +222,0.0000,55.8328,0.0928,0.0063,1,0,0.1447,936,56.0048,0,0,0,856,0 +223,0.0000,56.9004,0.1179,0.0203,1,0,0.3787,1035,57.1313,0,0,0,955,0 +224,0.0000,62.6196,0.1632,0.0130,1,0,0.3141,949,62.8762,0,0,0,869,0 +225,0.0000,64.1223,0.1398,0.0089,1,0,0.9173,1025,64.3859,0,0,0,945,0 +226,0.0000,61.5463,0.1457,0.0101,1,0,0.7359,948,61.8080,0,0,0,868,0 +227,0.0000,61.6449,0.1069,0.0132,1,0,0.3127,1019,61.8547,0,0,0,939,0 +228,0.0000,60.6718,0.1143,0.0189,1,0,0.3308,936,60.8330,0,0,0,856,0 +229,0.0000,61.0166,0.1432,0.0190,1,0,0.3645,941,61.2107,0,0,0,861,0 +230,0.0000,60.0736,0.5615,0.0439,1,0,0.7581,935,60.7993,0,0,0,855,0 +231,0.0000,60.4284,0.1239,0.0110,1,0,0.9978,935,60.6562,0,0,0,855,0 +232,0.0000,60.4953,0.1513,0.0138,1,0,0.3565,935,60.7020,0,0,0,855,0 +233,0.0000,59.7901,0.1123,0.0173,1,0,1.0532,935,60.0151,0,0,0,855,0 +234,0.0000,59.9332,0.2290,0.0117,1,0,0.4975,935,60.2299,0,0,0,855,0 +235,0.0000,60.0343,0.1314,0.0119,1,0,0.2919,935,60.2395,0,0,0,855,0 +236,0.0000,61.7873,0.0869,0.0127,1,0,0.4208,935,61.9606,0,0,0,855,0 +237,0.0000,63.7969,0.1585,0.0173,1,0,0.3398,935,64.0602,0,0,0,855,0 +238,0.0000,65.0925,0.1451,0.0216,1,0,0.2965,935,65.3451,0,0,0,855,0 +239,0.0000,61.4677,0.1092,0.0141,1,0,0.2544,935,61.7425,0,0,0,855,0 +240,0.0000,61.2402,0.2527,0.0143,1,0,5.4893,168044,61.6208,0,1,0,167964,0 +241,0.0000,61.6014,0.0731,0.0114,1,0,0.6282,1156,61.7680,0,0,0,1076,0 +242,0.0000,63.2675,0.1362,0.0127,1,0,0.3818,1005,63.5372,0,0,0,925,0 +243,0.0000,67.1633,0.1226,0.0131,1,0,0.2853,1051,67.4345,0,0,0,971,0 +244,0.0000,62.1320,0.1395,0.0121,1,0,1.0528,946,62.4314,0,0,0,866,0 +245,0.0000,64.7483,0.1197,0.0173,1,0,0.3404,1040,64.9158,0,0,0,960,0 +246,0.0000,63.0352,0.1516,0.0133,1,0,0.6906,946,63.2260,0,0,0,866,0 +247,0.0000,59.7876,0.1373,0.0127,1,0,0.7094,936,60.0755,0,0,0,856,0 +248,0.0000,60.3417,0.1419,0.0165,1,0,0.3475,1042,60.7251,0,0,0,962,0 +249,0.0000,59.8236,0.1304,0.0126,1,0,0.3322,1035,59.9903,0,0,0,955,0 +250,0.0000,60.7238,0.1580,0.0124,1,0,0.3926,947,60.9872,0,0,0,867,0 +251,0.0000,62.1427,0.1422,0.0104,1,0,0.3213,936,62.3209,0,0,0,856,0 +252,0.0000,60.4791,0.1323,0.0127,1,0,0.3376,936,60.6630,0,0,0,856,0 +253,0.0000,64.0032,0.0910,0.0107,1,0,1.0063,936,65.3084,0,0,0,856,0 +254,0.0000,69.9394,0.0758,0.0148,1,0,0.5013,936,70.3282,0,0,0,856,0 +255,0.0000,75.9003,0.1425,0.0159,1,0,0.3423,936,76.1918,0,0,0,856,0 +256,0.0000,74.0387,0.1295,0.0211,1,0,0.5715,936,75.6778,0,0,0,856,0 +257,0.0000,55.6495,0.1005,0.0110,1,0,0.2525,936,55.7969,0,0,0,856,0 +258,0.0000,58.1510,0.0994,0.0105,1,0,0.8580,936,58.3470,0,0,0,856,0 +259,0.0000,59.2126,0.1460,0.0140,1,0,0.3515,936,59.4011,0,0,0,856,0 +260,0.0000,61.3613,0.1287,0.0121,1,0,1.7034,936,61.6193,0,0,0,856,0 +261,0.0000,60.2869,0.1229,0.0170,1,0,0.7943,936,60.4694,0,0,0,856,0 +262,0.0000,61.6876,0.1411,0.0202,1,0,1.5733,936,62.2047,0,0,0,856,0 +263,0.0000,58.9262,0.0519,0.0092,1,0,0.2546,936,59.0488,0,0,0,856,0 +264,0.0000,60.6764,0.0633,0.0080,1,0,0.2535,936,60.9130,0,0,0,856,0 +265,0.0000,61.5181,0.0896,0.0118,1,0,0.1630,936,61.6885,0,0,0,856,0 +266,0.0000,56.9074,0.0542,0.0058,1,0,1.0059,936,57.1446,0,0,0,856,0 +267,0.0000,61.9546,0.0795,0.0070,1,0,0.1707,1863,62.1364,0,0,0,1783,0 +268,0.0000,58.7425,0.0515,0.0059,1,0,0.1203,988,58.8449,0,0,0,908,0 +269,0.0000,58.0090,0.0572,0.0074,1,0,0.3366,941,58.0923,0,0,0,861,0 +270,0.0000,57.5154,0.0540,0.0084,1,0,0.1231,940,57.8617,0,0,0,860,0 +271,0.0000,59.6532,0.0556,0.0075,1,0,0.2786,940,59.7853,0,0,0,860,0 +272,0.0000,59.3703,0.1604,0.0071,1,0,0.2847,940,59.6121,0,0,0,860,0 +273,0.0000,58.6620,0.0584,0.0069,1,0,0.2635,940,58.7970,0,0,0,860,0 +274,0.0000,56.7040,0.1166,0.0089,1,0,0.1591,940,56.8556,0,0,0,860,0 +275,0.0000,57.2161,0.0674,0.0067,1,0,0.1520,940,57.3336,0,0,0,860,0 +276,0.0000,59.5147,0.0644,0.0097,1,0,0.3120,940,59.6079,0,0,0,860,0 +277,0.0000,58.5791,0.0511,0.0060,1,0,0.1146,940,58.6682,0,0,0,860,0 +278,0.0000,56.3397,0.1296,0.0097,1,0,0.2989,940,56.5377,0,0,0,860,0 +279,0.0000,60.0101,0.0632,0.0080,1,0,0.1550,940,60.1117,0,0,0,860,0 +280,0.0000,67.5832,0.0932,0.0193,1,0,0.3913,940,67.7338,0,0,0,860,0 +281,0.0000,77.3663,0.0865,0.0168,1,0,1.1960,940,77.5045,0,0,0,860,0 +282,0.0000,86.9492,0.0578,0.0200,1,0,0.3031,940,87.0496,0,0,0,860,0 +283,0.0000,34.9573,0.1822,0.0213,1,0,0.3454,1019,42.5315,0,0,0,939,0 +284,0.0000,34.9656,0.1252,0.0092,1,0,2.4488,1030,36.4297,0,0,0,950,0 +285,0.0000,33.7808,0.1136,0.0163,1,0,0.3444,1028,33.9422,0,0,0,948,0 +286,0.0000,36.5284,0.7078,0.0137,1,0,0.8670,1067,40.5421,0,0,0,987,0 +287,0.0000,32.3490,0.0536,0.0064,1,0,0.1741,1097,32.4911,0,0,0,1017,0 +288,0.0000,33.0629,0.0593,0.0051,1,0,0.1765,1627,33.1504,0,0,0,1547,0 +289,0.0000,28.7624,0.0912,0.0081,1,0,0.2056,1056,28.8941,0,0,0,976,0 +290,0.0000,39.9429,0.0767,0.0148,1,0,0.9806,1033,40.1496,0,0,0,953,0 +291,0.0000,35.8698,0.4307,0.0165,1,0,0.7548,1026,36.7942,0,0,0,946,0 +292,0.0000,35.3188,0.1005,0.0144,1,0,1.2577,1024,35.4563,0,0,0,944,0 +293,0.0000,34.6945,0.1121,0.0158,1,0,0.4765,1014,34.9985,0,0,0,934,0 +294,0.0000,36.4792,0.0843,0.0179,1,0,0.2435,941,36.7053,0,0,0,861,0 +295,0.0000,35.2190,0.1156,0.0156,1,0,1.9720,1028,35.4395,0,0,0,948,0 +296,0.0000,35.8026,0.0649,0.0156,1,0,2.6574,1036,35.9032,0,0,0,956,0 +297,0.0000,35.9312,0.1200,0.0101,1,0,2.1825,1044,38.3019,0,0,0,964,0 +298,0.0000,34.0859,0.1093,0.0200,1,0,1.4858,1037,34.2881,0,0,0,957,0 diff --git a/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_downscale_1080p_capture_send.csv b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_downscale_1080p_capture_send.csv new file mode 100644 index 0000000..c3275ae --- /dev/null +++ b/benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_downscale_1080p_capture_send.csv @@ -0,0 +1,256 @@ +frame_id,generate_ms,encode_latency_ms,payload_extract_ms,enqueue_ms,queue_depth,dropped_before,send_ms,bytes_sent,frame_age_at_send_ms,send_failed,keyframe,sender_dropped,payload_bytes,status +0,0.0000,42.3693,0.1099,0.0070,1,0,0.0963,64736,42.5067,0,1,0,64656,0 +1,0.0000,44.1427,0.0475,0.0042,1,0,0.0731,2629,44.2295,0,0,0,2549,0 +2,0.0000,34.9334,0.0416,0.0057,1,0,0.1007,8872,34.9982,0,0,0,8792,0 +3,0.0000,22.7192,0.0376,0.0056,1,0,0.0560,27832,22.7820,0,0,0,27752,0 +4,0.0000,11.0477,0.0450,0.0045,1,0,0.0818,24247,11.1246,0,0,0,24167,0 +5,0.0000,8.8724,0.0331,0.0045,1,0,0.0917,22941,8.9403,0,0,0,22861,0 +6,0.0000,8.7802,0.0353,0.0046,1,0,0.0868,2076,8.8377,0,0,0,1996,0 +7,0.0000,9.1337,0.0320,0.0049,1,0,0.0916,954,9.1942,0,0,0,874,0 +8,0.0000,9.1946,0.0306,0.0045,1,0,0.0864,853,9.2568,0,0,0,773,0 +9,0.0000,9.0060,0.0290,0.0047,1,0,0.0757,1025,9.0753,0,0,0,945,0 +10,0.0000,9.2940,0.0430,0.0073,1,0,0.1689,858,9.3751,0,0,0,778,0 +11,0.0000,9.6746,0.0547,0.0090,1,0,0.1555,785,9.7751,0,0,0,705,0 +12,0.0000,9.6906,0.0580,0.0092,1,0,0.1780,897,9.7908,0,0,0,817,0 +13,0.0000,9.9573,0.0615,0.0094,1,0,0.2081,623,10.0535,0,0,0,543,0 +14,0.0000,9.9909,0.0684,0.0080,1,0,0.1781,722,10.1060,0,0,0,642,0 +15,0.0000,9.7788,0.0637,0.0118,1,0,0.1706,619,9.8907,0,0,0,539,0 +16,0.0000,9.8505,0.0716,0.0064,1,0,0.1778,597,9.9749,0,0,0,517,0 +17,0.0000,10.0539,0.0535,0.0074,1,0,0.1991,652,10.1367,0,0,0,572,0 +18,0.0000,10.0731,0.0505,0.0081,1,0,0.1615,616,10.1643,0,0,0,536,0 +19,0.0000,9.8645,0.0654,0.0083,1,0,0.0903,622,9.9853,0,0,0,542,0 +20,0.0000,9.8516,0.0273,0.0055,1,0,0.1580,588,9.9229,0,0,0,508,0 +21,0.0000,10.3283,0.0631,0.0094,1,0,0.1817,620,10.4406,0,0,0,540,0 +22,0.0000,10.1139,0.0630,0.0097,1,0,0.1602,554,10.2491,0,0,0,474,0 +23,0.0000,10.2526,0.1125,0.0085,1,0,0.1303,606,10.4008,0,0,0,526,0 +24,0.0000,9.9924,0.0661,0.0091,1,0,0.1261,559,10.0948,0,0,0,479,0 +25,0.0000,10.0267,0.0638,0.0079,1,0,0.1666,599,10.1374,0,0,0,519,0 +26,0.0000,10.0962,0.0663,0.0096,1,0,0.1117,569,10.1994,0,0,0,489,0 +27,0.0000,10.0619,0.0620,0.0102,1,0,0.2007,567,10.1587,0,0,0,487,0 +28,0.0000,16.2075,0.0832,0.0128,1,0,0.1026,538,16.9973,0,0,0,458,0 +29,0.0000,9.5350,0.0537,0.0095,1,0,0.0648,566,9.6633,0,0,0,486,0 +30,0.0000,11.8184,0.0302,0.0043,1,0,0.1118,509,11.8708,0,0,0,429,0 +31,0.0000,8.9693,0.0318,0.0042,1,0,0.0977,521,9.0515,0,0,0,441,0 +32,0.0000,18.3418,0.1030,0.0110,1,0,1.9540,470,18.6429,0,0,0,390,0 +33,0.0000,10.1678,0.0470,0.0110,1,0,0.0950,467,10.2502,0,0,0,387,0 +34,0.0000,12.1568,0.1143,0.0141,1,0,0.3644,461,12.3994,0,0,0,381,0 +35,0.0000,10.7628,0.1171,0.0287,1,0,5.0829,461,10.9781,0,0,0,381,0 +36,0.0000,10.0031,0.0715,0.0123,1,0,1.8527,461,17.7491,0,0,0,381,0 +37,0.0000,9.6235,0.0451,0.0081,1,0,0.1199,461,9.7233,0,0,0,381,0 +38,0.0000,9.2920,0.0374,0.0070,1,0,0.1317,461,9.3859,0,0,0,381,0 +39,0.0000,10.2562,0.1453,0.0170,1,0,0.1962,461,10.4912,0,0,0,381,0 +40,0.0000,10.9351,0.1370,0.0154,1,0,2.0675,467,11.1195,0,0,0,387,0 +41,0.0000,10.9147,0.1323,0.0138,1,0,2.8608,461,11.1807,0,0,0,381,0 +42,0.0000,11.5101,0.1266,0.0176,1,0,0.2122,461,11.6897,0,0,0,381,0 +43,0.0000,11.1572,0.0770,0.0057,1,0,0.8798,461,16.5382,0,0,0,381,0 +44,0.0000,9.1697,0.0457,0.0083,1,0,0.1505,461,9.2420,0,0,0,381,0 +45,0.0000,9.1828,0.0400,0.0064,1,0,0.1020,461,9.2588,0,0,0,381,0 +46,0.0000,9.3350,0.0365,0.0058,1,0,0.0277,461,9.3989,0,0,0,381,0 +47,0.0000,9.0546,0.0355,0.0048,1,0,0.0458,514,9.1150,0,0,0,434,0 +48,0.0000,8.9277,0.0291,0.0060,1,0,0.0585,461,8.9810,0,0,0,381,0 +49,0.0000,8.7705,0.0275,0.0052,1,0,0.0631,515,8.8424,0,0,0,435,0 +50,0.0000,9.3284,0.0264,0.0030,1,0,0.0694,502,9.3730,0,0,0,422,0 +51,0.0000,9.0979,0.0259,0.0022,1,0,0.0731,515,9.1360,0,0,0,435,0 +52,0.0000,8.8455,0.0242,0.0020,1,0,0.0617,503,8.8786,0,0,0,423,0 +53,0.0000,8.3649,0.0263,0.0053,1,0,0.0714,461,8.4042,0,0,0,381,0 +54,0.0000,8.2072,0.0278,0.0025,1,0,0.0678,515,8.2656,0,0,0,435,0 +55,0.0000,8.2271,0.0241,0.0037,1,0,0.0717,523,8.2885,0,0,0,443,0 +56,0.0000,8.2865,0.0362,0.0043,1,0,0.0600,524,8.3560,0,0,0,444,0 +57,0.0000,8.0292,0.0234,0.0032,1,0,0.0600,521,8.0826,0,0,0,441,0 +58,0.0000,10.1649,0.0811,0.0068,1,0,0.1261,461,10.2797,0,0,0,381,0 +59,0.0000,9.7733,0.0657,0.0085,1,0,0.1765,461,9.8895,0,0,0,381,0 +60,0.0000,10.0195,0.2491,0.0078,1,0,0.3806,119981,10.3056,0,1,0,119901,0 +61,0.0000,15.8173,0.1723,0.0097,1,0,0.8760,584,16.3390,0,0,0,504,0 +62,0.0000,11.1395,0.2156,0.0120,1,0,1.0561,524,11.4891,0,0,0,444,0 +63,0.0000,10.6738,0.1341,0.0186,1,0,1.1284,502,10.8539,0,0,0,422,0 +64,0.0000,14.5233,0.0842,0.0063,1,0,0.0819,520,14.6370,0,0,0,440,0 +65,0.0000,10.1980,0.0747,0.0101,1,0,0.2160,519,10.3250,0,0,0,439,0 +66,0.0000,9.4840,0.0743,0.0117,1,0,0.1472,528,9.6096,0,0,0,448,0 +67,0.0000,15.2738,0.0844,0.0143,1,0,0.1427,518,15.4277,0,0,0,438,0 +68,0.0000,10.9328,0.1714,0.0160,1,0,0.5727,462,11.4052,0,0,0,382,0 +69,0.0000,15.2981,0.1633,0.0120,1,0,0.0739,459,15.5390,0,0,0,379,0 +70,0.0000,9.5745,0.0272,0.0069,1,0,0.0839,462,9.6483,0,0,0,382,0 +71,0.0000,9.0255,0.0648,0.0081,1,0,0.1060,459,9.1506,0,0,0,379,0 +72,0.0000,11.4627,0.1113,0.0161,1,0,0.2701,462,11.6829,0,0,0,382,0 +73,0.0000,11.8248,0.1651,0.0138,1,0,0.5520,459,12.1241,0,0,0,379,0 +74,0.0000,12.0185,0.1781,0.0106,1,0,1.4123,462,12.5713,0,0,0,382,0 +75,0.0000,11.0143,0.1514,0.0101,1,0,0.5424,459,11.2850,0,0,0,379,0 +76,0.0000,17.5101,0.1785,0.0136,1,0,0.1722,462,20.0831,0,0,0,382,0 +77,0.0000,9.7186,0.0513,0.0062,1,0,0.1184,459,9.8118,0,0,0,379,0 +78,0.0000,10.3153,0.1069,0.0063,1,0,0.5744,462,10.7853,0,0,0,382,0 +79,0.0000,11.2410,0.1473,0.0126,1,0,2.2561,459,12.7320,0,0,0,379,0 +80,0.0000,11.5929,0.1477,0.0112,1,0,0.6773,462,11.8534,0,0,0,382,0 +81,0.0000,11.1301,0.0620,0.0074,1,0,0.1926,459,11.2212,0,0,0,379,0 +82,0.0000,12.2645,0.0902,0.0118,1,0,0.1879,462,12.4186,0,0,0,382,0 +83,0.0000,11.3805,0.1227,0.0104,1,0,0.2330,459,11.6416,0,0,0,379,0 +84,0.0000,10.6197,0.0627,0.0062,1,0,0.1792,462,10.7267,0,0,0,382,0 +85,0.0000,10.3602,0.0765,0.0080,1,0,0.1635,459,10.4765,0,0,0,379,0 +86,0.0000,10.0850,0.0660,0.0077,1,0,0.0604,462,10.1959,0,0,0,382,0 +87,0.0000,9.5968,0.0629,0.0072,1,0,0.1234,459,9.7177,0,0,0,379,0 +88,0.0000,9.2703,0.0598,0.0071,1,0,0.1454,462,9.3723,0,0,0,382,0 +89,0.0000,8.6418,0.0328,0.0037,1,0,0.0561,459,8.7063,0,0,0,379,0 +90,0.0000,8.3365,0.0245,0.0036,1,0,0.0680,462,8.3733,0,0,0,382,0 +91,0.0000,8.5648,0.0299,0.0078,1,0,0.0780,459,8.6159,0,0,0,379,0 +92,0.0000,8.8307,0.0255,0.0032,1,0,0.0565,462,8.8677,0,0,0,382,0 +93,0.0000,8.3156,0.0344,0.0042,1,0,0.0614,459,8.3823,0,0,0,379,0 +94,0.0000,8.2332,0.0211,0.0031,1,0,0.0520,462,8.2654,0,0,0,382,0 +95,0.0000,8.9244,0.0299,0.0029,1,0,0.0674,459,8.9731,0,0,0,379,0 +96,0.0000,8.2312,0.0215,0.0033,1,0,0.0753,517,8.2730,0,0,0,437,0 +97,0.0000,8.8815,0.0240,0.0035,1,0,0.0591,463,8.9344,0,0,0,383,0 +98,0.0000,8.7512,0.0223,0.0033,1,0,0.0552,462,8.8014,0,0,0,382,0 +99,0.0000,9.0278,0.0232,0.0029,1,0,0.0435,513,9.0829,0,0,0,433,0 +100,0.0000,8.7761,0.0214,0.0033,1,0,0.0566,464,8.8230,0,0,0,384,0 +101,0.0000,8.8244,0.0314,0.0068,1,0,0.0530,459,8.8719,0,0,0,379,0 +102,0.0000,8.0992,0.0267,0.0039,1,0,0.0488,522,8.1468,0,0,0,442,0 +103,0.0000,8.8849,0.0217,0.0034,1,0,0.0453,459,8.9285,0,0,0,379,0 +104,0.0000,8.4753,0.0269,0.0038,1,0,0.0638,462,8.5144,0,0,0,382,0 +105,0.0000,8.6265,0.0235,0.0027,1,0,0.0528,498,8.6594,0,0,0,418,0 +106,0.0000,8.8353,0.0248,0.0040,1,0,0.0723,462,8.8722,0,0,0,382,0 +107,0.0000,8.8367,0.0255,0.0040,1,0,0.0667,459,8.8745,0,0,0,379,0 +108,0.0000,8.2545,0.0329,0.0038,1,0,0.0745,462,8.2999,0,0,0,382,0 +109,0.0000,8.5898,0.0258,0.0032,1,0,0.0703,459,8.6273,0,0,0,379,0 +110,0.0000,8.3328,0.0247,0.0030,1,0,0.0643,462,8.3680,0,0,0,382,0 +111,0.0000,7.9381,0.0270,0.0038,1,0,0.0681,459,7.9764,0,0,0,379,0 +112,0.0000,8.0693,0.0257,0.0038,1,0,0.0576,462,8.1098,0,0,0,382,0 +113,0.0000,8.1493,0.0290,0.0039,1,0,0.0776,459,8.1895,0,0,0,379,0 +114,0.0000,7.9662,0.0255,0.0040,1,0,0.0656,462,8.0031,0,0,0,382,0 +115,0.0000,8.4129,0.0330,0.0039,1,0,0.0656,459,8.4715,0,0,0,379,0 +116,0.0000,8.1887,0.0330,0.0043,1,0,0.0630,462,8.2531,0,0,0,382,0 +117,0.0000,8.9328,0.0342,0.0044,1,0,0.0586,459,9.0007,0,0,0,379,0 +118,0.0000,9.1299,0.0682,0.0071,1,0,0.0944,462,9.2375,0,0,0,382,0 +119,0.0000,9.3069,0.0655,0.0054,1,0,0.0688,459,9.4210,0,0,0,379,0 +120,0.0000,9.0311,0.1298,0.0080,1,0,0.2641,119967,9.2069,0,1,0,119887,0 +121,0.0000,9.9961,0.0462,0.0082,1,0,0.0679,537,10.0958,0,0,0,457,0 +122,0.0000,10.0222,0.0669,0.0083,1,0,0.0650,467,10.1634,0,0,0,387,0 +123,0.0000,10.3087,0.0703,0.0089,1,0,0.0990,511,10.4110,0,0,0,431,0 +124,0.0000,10.0720,0.0824,0.0081,1,0,0.1446,462,10.2043,0,0,0,382,0 +125,0.0000,9.8601,0.0678,0.0067,1,0,0.1280,521,9.9692,0,0,0,441,0 +126,0.0000,10.4474,0.0838,0.0079,1,0,0.1283,462,10.5867,0,0,0,382,0 +127,0.0000,10.2985,0.0614,0.0069,1,0,0.0791,459,10.3985,0,0,0,379,0 +128,0.0000,10.1715,0.0676,0.0064,1,0,0.1231,523,10.2865,0,0,0,443,0 +129,0.0000,10.2432,0.0734,0.0113,1,0,0.1375,461,10.3640,0,0,0,381,0 +130,0.0000,9.4901,0.0683,0.0080,1,0,0.0534,462,9.6011,0,0,0,382,0 +131,0.0000,10.1352,0.1398,0.0101,1,0,0.1823,459,10.3118,0,0,0,379,0 +132,0.0000,11.2173,0.1717,0.0116,1,0,0.2050,462,11.4307,0,0,0,382,0 +133,0.0000,10.5995,0.0778,0.0090,1,0,0.1453,459,10.7481,0,0,0,379,0 +134,0.0000,11.2815,0.1427,0.0103,1,0,1.1988,462,11.5600,0,0,0,382,0 +135,0.0000,11.6659,0.1525,0.0205,1,0,0.1537,459,11.9642,0,0,0,379,0 +136,0.0000,11.4322,0.1439,0.0132,1,0,0.1794,462,11.6200,0,0,0,382,0 +137,0.0000,11.4130,0.1302,0.0112,1,0,2.1516,459,11.7588,0,0,0,379,0 +138,0.0000,10.5693,0.0641,0.0087,1,0,0.0629,462,10.7035,0,0,0,382,0 +139,0.0000,10.4200,0.0705,0.0095,1,0,0.1061,459,10.5357,0,0,0,379,0 +140,0.0000,11.2716,0.2205,0.0146,1,0,1.3277,462,12.3067,0,0,0,382,0 +141,0.0000,13.9826,0.1342,0.0202,1,0,0.3475,459,14.3186,0,0,0,379,0 +142,0.0000,11.0113,0.0715,0.0092,1,0,0.1057,462,11.1400,0,0,0,382,0 +143,0.0000,12.9983,0.1253,0.0202,1,0,0.1601,459,13.4609,0,0,0,379,0 +144,0.0000,10.6647,0.1544,0.0113,1,0,1.2470,462,10.8613,0,0,0,382,0 +145,0.0000,11.4689,0.1412,0.0144,1,0,0.5063,459,11.7536,0,0,0,379,0 +146,0.0000,10.6772,0.0754,0.0060,1,0,0.0754,517,10.7866,0,0,0,437,0 +147,0.0000,11.3688,0.1419,0.0200,1,0,0.5935,515,11.6938,0,0,0,435,0 +148,0.0000,12.1573,0.1620,0.0152,1,0,1.4442,520,15.6917,0,0,0,440,0 +149,0.0000,11.5737,0.1845,0.0176,1,0,0.6794,499,12.0420,0,0,0,419,0 +150,0.0000,13.5447,0.1800,0.0189,1,0,0.8947,518,15.4138,0,0,0,438,0 +151,0.0000,10.6296,0.1810,0.0210,1,0,4.3030,519,11.1970,0,0,0,439,0 +152,0.0000,11.6535,0.1582,0.0190,1,0,0.4180,526,11.8614,0,0,0,446,0 +153,0.0000,11.2785,0.1114,0.0155,1,0,0.9235,516,11.5239,0,0,0,436,0 +154,0.0000,12.8732,0.1898,0.0120,1,0,0.5610,517,13.1090,0,0,0,437,0 +155,0.0000,11.3579,0.1487,0.0154,1,0,0.3659,512,11.6113,0,0,0,432,0 +156,0.0000,12.3533,0.4306,0.0212,1,0,0.3845,522,12.9667,0,0,0,442,0 +157,0.0000,12.0507,0.1487,0.0157,1,0,0.8084,500,12.3303,0,0,0,420,0 +158,0.0000,8.9545,0.0910,0.0057,1,0,0.1927,518,9.0777,0,0,0,438,0 +159,0.0000,11.4349,0.1230,0.0186,1,0,1.2078,520,11.7298,0,0,0,440,0 +160,0.0000,11.8145,0.1581,0.0221,1,0,2.0249,525,12.1357,0,0,0,445,0 +161,0.0000,11.9097,0.1696,0.0130,1,0,1.6998,517,12.2095,0,0,0,437,0 +162,0.0000,10.0278,0.0855,0.0075,1,0,0.2123,518,10.1642,0,0,0,438,0 +163,0.0000,9.9141,0.0703,0.0067,1,0,0.1750,511,10.0270,0,0,0,431,0 +164,0.0000,11.6466,0.1817,0.0153,1,0,7.2430,522,11.8904,0,0,0,442,0 +165,0.0000,13.7537,0.1651,0.0149,1,0,0.4138,501,13.9670,0,0,0,421,0 +166,0.0000,12.6645,0.1595,0.0114,1,0,3.8357,519,13.1515,0,0,0,439,0 +167,0.0000,11.8847,0.1786,0.0130,1,0,0.8445,519,12.5699,0,0,0,439,0 +168,0.0000,11.0631,0.1575,0.0210,1,0,0.4290,522,11.2727,0,0,0,442,0 +169,0.0000,10.8250,0.1431,0.0082,1,0,0.5840,520,11.0789,0,0,0,440,0 +170,0.0000,9.7894,0.0740,0.0092,1,0,0.1724,517,9.8974,0,0,0,437,0 +171,0.0000,11.0711,0.1609,0.0140,1,0,0.4200,511,11.2775,0,0,0,431,0 +172,0.0000,11.8157,0.1698,0.0205,1,0,0.3671,520,12.0714,0,0,0,440,0 +173,0.0000,11.2033,0.1310,0.0077,1,0,0.6388,459,11.4440,0,0,0,379,0 +174,0.0000,11.7127,0.1676,0.0087,1,0,0.8625,501,12.2178,0,0,0,421,0 +175,0.0000,11.1109,0.1294,0.0141,1,0,0.8543,459,11.3667,0,0,0,379,0 +176,0.0000,10.4637,0.1110,0.0078,1,0,0.3192,462,10.7989,0,0,0,382,0 +177,0.0000,9.9896,0.1387,0.0153,1,0,1.0600,459,10.2924,0,0,0,379,0 +178,0.0000,10.8617,0.1499,0.0178,1,0,0.4109,462,11.0639,0,0,0,382,0 +179,0.0000,11.5929,0.1029,0.0168,1,0,0.3833,459,11.8110,0,0,0,379,0 +180,0.0000,10.2466,0.4833,0.0150,1,0,1.1539,119947,10.7888,0,1,0,119867,0 +181,0.0000,16.3290,0.0288,0.0037,1,0,0.0720,537,16.3930,0,0,0,457,0 +182,0.0000,17.1294,0.0887,0.0074,1,0,2.6612,467,17.5073,0,0,0,387,0 +183,0.0000,18.5343,0.0525,0.0074,1,0,0.1368,459,18.8085,0,0,0,379,0 +184,0.0000,17.9450,0.0580,0.0065,1,0,0.0975,462,18.1007,0,0,0,382,0 +185,0.0000,20.4752,0.0521,0.0093,1,0,1.9588,459,21.3640,0,0,0,379,0 +186,0.0000,20.4743,0.0523,0.0060,1,0,0.2665,462,20.6004,0,0,0,382,0 +187,0.0000,17.8495,0.0515,0.0074,1,0,0.1469,512,17.9256,0,0,0,432,0 +188,0.0000,19.3944,0.0553,0.0066,1,0,0.1726,462,19.6262,0,0,0,382,0 +189,0.0000,19.6990,0.1280,0.0052,1,0,0.1520,459,20.5447,0,0,0,379,0 +190,0.0000,19.9955,0.0707,0.0089,1,0,0.2195,522,21.1699,0,0,0,442,0 +191,0.0000,20.2558,0.0721,0.0087,1,0,0.1780,459,20.3548,0,0,0,379,0 +192,0.0000,19.5011,0.0778,0.0087,1,0,0.3571,527,19.7111,0,0,0,447,0 +193,0.0000,20.1044,0.1075,0.0081,1,0,3.6444,459,20.7688,0,0,0,379,0 +194,0.0000,21.8223,0.1182,0.0174,1,0,2.2825,462,22.1788,0,0,0,382,0 +195,0.0000,21.0816,0.0647,0.0096,1,0,0.1870,517,21.1976,0,0,0,437,0 +196,0.0000,20.0502,0.1668,0.0106,1,0,0.9084,462,20.7935,0,0,0,382,0 +197,0.0000,22.7567,0.1515,0.0185,1,0,1.7959,459,23.2617,0,0,0,379,0 +198,0.0000,20.9348,0.1550,0.0186,1,0,1.7974,462,21.2213,0,0,0,382,0 +199,0.0000,19.9362,0.1292,0.0173,1,0,0.3536,459,20.3905,0,0,0,379,0 +200,0.0000,20.6247,0.1284,0.0053,1,0,0.2077,462,21.7978,0,0,0,382,0 +201,0.0000,19.7842,0.1053,0.0084,1,0,0.1613,459,19.9940,0,0,0,379,0 +202,0.0000,19.5798,0.0531,0.0055,1,0,0.2578,462,19.6971,0,0,0,382,0 +203,0.0000,19.6837,0.0517,0.0051,1,0,0.1368,459,19.7588,0,0,0,379,0 +204,0.0000,19.0822,0.0736,0.0083,1,0,0.4196,462,19.3085,0,0,0,382,0 +205,0.0000,19.8039,0.0543,0.0075,1,0,0.1367,459,19.8858,0,0,0,379,0 +206,0.0000,19.7485,0.0743,0.0104,1,0,1.7101,462,19.9366,0,0,0,382,0 +207,0.0000,20.2081,0.0655,0.0068,1,0,0.4039,459,20.4329,0,0,0,379,0 +208,0.0000,20.1447,0.1403,0.0121,1,0,0.4847,462,20.4263,0,0,0,382,0 +209,0.0000,19.5900,0.3314,0.0083,1,0,1.3497,459,20.0744,0,0,0,379,0 +210,0.0000,20.1972,0.3070,0.0409,1,0,0.9042,462,20.9209,0,0,0,382,0 +211,0.0000,20.7944,0.1277,0.0114,1,0,0.3198,459,21.1848,0,0,0,379,0 +212,0.0000,22.0389,0.1705,0.0135,1,0,0.2785,462,23.6363,0,0,0,382,0 +213,0.0000,22.0244,0.1517,0.0155,1,0,0.6827,459,22.7262,0,0,0,379,0 +214,0.0000,20.8292,0.2012,0.0108,1,0,1.0718,462,21.5013,0,0,0,382,0 +215,0.0000,22.0595,0.1273,0.0147,1,0,0.3030,459,22.2913,0,0,0,379,0 +216,0.0000,20.3677,0.0849,0.0095,1,0,1.5912,462,20.6311,0,0,0,382,0 +217,0.0000,22.0515,0.1637,0.0208,1,0,0.4276,459,22.2745,0,0,0,379,0 +218,0.0000,21.6831,0.2898,0.0205,1,0,0.3138,462,22.0403,0,0,0,382,0 +219,0.0000,19.9603,0.1521,0.0185,1,0,0.2942,459,20.2729,0,0,0,379,0 +220,0.0000,20.3514,0.1915,0.0226,1,0,0.5534,462,20.8622,0,0,0,382,0 +221,0.0000,21.2663,0.1264,0.0139,1,0,0.3144,459,21.5370,0,0,0,379,0 +222,0.0000,21.1804,0.1558,0.0150,1,0,0.9208,462,21.9138,0,0,0,382,0 +223,0.0000,20.9885,0.1546,0.0147,1,0,0.3959,459,21.5155,0,0,0,379,0 +224,0.0000,20.9786,0.1653,0.0200,1,0,0.5492,462,21.3816,0,0,0,382,0 +225,0.0000,21.8176,0.2030,0.0161,1,0,0.5108,459,24.9428,0,0,0,379,0 +226,0.0000,20.5781,0.1507,0.0126,1,0,0.8880,462,21.3500,0,0,0,382,0 +227,0.0000,21.5547,0.3995,0.0205,1,0,0.3519,513,22.1175,0,0,0,433,0 +228,0.0000,20.8312,0.1223,0.0134,1,0,0.4168,462,21.0730,0,0,0,382,0 +229,0.0000,20.7355,0.3062,0.0168,1,0,0.4310,459,21.1021,0,0,0,379,0 +230,0.0000,20.3106,0.1030,0.0082,1,0,0.6095,518,20.5177,0,0,0,438,0 +231,0.0000,21.2688,0.0725,0.0083,1,0,0.2434,461,21.3880,0,0,0,381,0 +232,0.0000,19.0200,0.1245,0.0095,1,0,2.0960,462,19.3947,0,0,0,382,0 +233,0.0000,22.0326,0.1765,0.0158,1,0,0.7276,516,22.4493,0,0,0,436,0 +234,0.0000,22.8712,0.1475,0.0197,1,0,0.2119,462,23.0790,0,0,0,382,0 +235,0.0000,21.4759,0.1646,0.0140,1,0,0.3480,459,21.9710,0,0,0,379,0 +236,0.0000,22.3976,0.1566,0.0181,1,0,0.6568,504,22.8850,0,0,0,424,0 +237,0.0000,20.3381,0.1870,0.0121,1,0,0.4080,459,20.6357,0,0,0,379,0 +238,0.0000,20.7567,0.1551,0.0443,1,0,0.3687,462,21.1925,0,0,0,382,0 +239,0.0000,20.6857,0.0683,0.0079,1,0,0.1811,459,20.8004,0,0,0,379,0 +240,0.0000,19.6470,0.2338,0.0147,1,0,0.4872,119947,20.3741,0,1,0,119867,0 +241,0.0000,21.3629,0.1292,0.0113,1,0,1.3467,537,21.8714,0,0,0,457,0 +242,0.0000,21.4645,0.1362,0.0106,1,0,0.4053,467,21.6444,0,0,0,387,0 +243,0.0000,22.7834,0.1572,0.0092,1,0,0.2664,512,23.0540,0,0,0,432,0 +244,0.0000,23.8328,0.1427,0.0135,1,0,0.3387,522,24.0228,0,0,0,442,0 +245,0.0000,21.9873,0.1518,0.0169,1,0,0.8584,524,22.4600,0,0,0,444,0 +246,0.0000,22.7787,0.1515,0.0140,1,0,0.4677,520,22.9767,0,0,0,440,0 +247,0.0000,23.7680,0.1921,0.0178,1,0,0.6471,513,28.4995,0,0,0,433,0 +248,0.0000,21.9508,0.1487,0.0103,1,0,0.4983,518,22.2254,0,0,0,438,0 +249,0.0000,20.7874,0.0912,0.0085,1,0,0.1986,518,20.9198,0,0,0,438,0 +250,0.0000,22.3068,0.0896,0.0190,1,0,0.2897,504,22.5902,0,0,0,424,0 +251,0.0000,22.3895,0.1406,0.0181,1,0,0.4185,515,22.6741,0,0,0,435,0 +252,0.0000,22.6887,0.1673,0.0181,1,0,0.3902,524,23.0515,0,0,0,444,0 +253,0.0000,22.0433,0.2295,0.0301,1,0,0.9132,523,22.4679,0,0,0,443,0 +254,0.0000,21.8581,0.1515,0.0169,1,0,0.3383,521,22.3927,0,0,0,441,0 diff --git a/benchmarks/runs/primary_encoder_list_latest.txt b/benchmarks/runs/primary_encoder_list_latest.txt new file mode 100644 index 0000000..be4c472 --- /dev/null +++ b/benchmarks/runs/primary_encoder_list_latest.txt @@ -0,0 +1,212 @@ +video_encoder_list=Optional(<__NSArrayM 0x12a112da0>( +{ + CodecName = "24-bit RGB"; + CodecType = 24; + DisplayName = "24-bit RGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.24rgb"; + EncoderName = "Apple 24-bit RGB"; + PerformanceRating = 0; +}, +{ + CodecName = "32-bit ARGB"; + CodecType = 32; + DisplayName = "32-bit ARGB"; + EncoderID = "com.apple.videotoolbox.videoencoder.32argb"; + EncoderName = "Apple 32-bit ARGB"; + PerformanceRating = 0; +}, +{ + CodecName = "Apple ProRes 422"; + CodecType = 1634755438; + DisplayName = "Apple ProRes 422"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422"; + EncoderName = "Apple ProRes 422"; +}, +{ + CodecName = "Apple ProRes 422 HQ"; + CodecType = 1634755432; + DisplayName = "Apple ProRes 422 HQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422hq"; + EncoderName = "Apple ProRes 422 HQ"; +}, +{ + CodecName = "Apple ProRes 422 LT"; + CodecType = 1634755443; + DisplayName = "Apple ProRes 422 LT"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422lt"; + EncoderName = "Apple ProRes 422 LT"; +}, +{ + CodecName = "Apple ProRes 422 Proxy"; + CodecType = 1634755439; + DisplayName = "Apple ProRes 422 Proxy"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-422proxy"; + EncoderName = "Apple ProRes 422 Proxy"; +}, +{ + CodecName = "Apple ProRes 4444"; + CodecType = 1634743400; + DisplayName = "Apple ProRes 4444"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444"; + EncoderName = "Apple ProRes 4444"; +}, +{ + CodecName = "Apple ProRes 4444 XQ"; + CodecType = 1634743416; + DisplayName = "Apple ProRes 4444 XQ"; + EncoderID = "com.apple.videotoolbox.videoencoder.prores-4444xq"; + EncoderName = "Apple ProRes 4444 XQ"; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Depth; + CodecType = 1684369512; + DisplayName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.depth-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Depth (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = Disparity; + CodecType = 1684632424; + DisplayName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.disparity-hevc:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Disparity (HEVC)-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + }; +}, +{ + CodecName = "H.263"; + CodecType = 1748121139; + DisplayName = "H.263"; + EncoderID = "com.apple.videotoolbox.videoencoder.h263"; + EncoderName = "Apple H.263 (SW)"; + PerformanceRating = "-10"; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.avc"; + EncoderName = "Apple H.264 (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; +}, +{ + CodecName = "H.264"; + CodecType = 1635148593; + DisplayName = "Apple H.264 (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.h264"; + EncoderName = "Apple H.264 (SW)"; + PerformanceRating = 200; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = HEVC; + CodecType = 1752589105; + DisplayName = "Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "Apple JPEG"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg"; + EncoderName = "Apple JPEG"; + PerformanceRating = "-10"; +}, +{ + CodecName = JPEG; + CodecType = 1785750887; + DisplayName = "JPEG (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.jpeg.ajpeg"; + EncoderName = "JPEG (HW)"; + IsHardwareAccelerated = 1; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (HW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.ave.hevc"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (HW)"; + IsHardwareAccelerated = 1; + PerformanceRating = 400; + QualityRating = 90; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel", + "HEVC_Main42210_AutoLevel" + ); + }; +}, +{ + CodecName = "Muxed Alpha"; + CodecType = 1836415073; + DisplayName = "Apple Muxed Alpha-Apple HEVC (SW)"; + EncoderID = "com.apple.videotoolbox.videoencoder.hevc-with-alpha:com.apple.videotoolbox.videoencoder.hevc.vcp"; + EncoderName = "Apple Muxed Alpha-Apple HEVC (SW)"; + PerformanceRating = 0; + QualityRating = 100; + SupportedSelectionProperties = { + ProfileLevel = ( + "HEVC_Main_AutoLevel", + "HEVC_Main10_AutoLevel" + ); + }; +} +) +) diff --git a/benchmarks/theory/5k60_bandwidth.md b/benchmarks/theory/5k60_bandwidth.md new file mode 100644 index 0000000..bce2828 --- /dev/null +++ b/benchmarks/theory/5k60_bandwidth.md @@ -0,0 +1,101 @@ +# Plan A 5K60 Bandwidth Theory + +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +## Target + +Plan A starts at the highest user target: + +```text +5120 x 2880 @ 60 fps +``` + +Pixel count: + +```text +5120 * 2880 = 14,745,600 pixels/frame +14,745,600 * 60 = 884,736,000 pixels/sec +``` + +## Raw RGB 24-bit + +```text +bits/sec = 5120 * 2880 * 60 * 24 + = 21,233,664,000 bps + = 21.234 Gbps + +bytes/frame = 5120 * 2880 * 3 + = 44,236,800 bytes + = 44.237 MB/frame + +bytes/sec = 44,236,800 * 60 + = 2,654,208,000 bytes/sec + = 2.654 GB/sec +``` + +Raw RGB24 5K60 already exceeds a 20Gbps-class Thunderbolt 2 link before IP, packetization, capture, copy, render, and protocol overhead. Apple's TB3-to-TB2 adapter document describes Thunderbolt 2 transfer up to 20Gbps for Thunderbolt 2 devices. [ë‚´ìš© 출처 : https://support.apple.com/en-us/111753] + +## BGRA 32-bit App Buffer + +The first Windows synthetic renderer uses `DXGI_FORMAT_B8G8R8A8_UNORM` because it is a common D3D11 presentation/upload format. + +```text +bits/sec = 5120 * 2880 * 60 * 32 + = 28,311,552,000 bps + = 28.312 Gbps + +bytes/frame = 5120 * 2880 * 4 + = 58,982,400 bytes + = 58.982 MB/frame + +bytes/sec = 58,982,400 * 60 + = 3,538,944,000 bytes/sec + = 3.539 GB/sec +``` + +This is not the intended network format, but it is a useful receiver-side stress test because it measures whether the iMac can generate, upload, draw, and present a full 5K frame every 16.667 ms. + +## YUV 4:2:0 8-bit + +YUV 4:2:0 8-bit is 12 bits/pixel. + +```text +bits/sec = 5120 * 2880 * 60 * 12 + = 10,616,832,000 bps + = 10.617 Gbps + +bytes/frame = 5120 * 2880 * 1.5 + = 22,118,400 bytes + = 22.118 MB/frame + +bytes/sec = 22,118,400 * 60 + = 1,327,104,000 bytes/sec + = 1.327 GB/sec +``` + +YUV 4:2:0 is below Thunderbolt 2's theoretical 20Gbps figure, but it is still far above 1GbE and still requires conversion/subsampling. It must be tested as near-raw, not assumed to work. + +## Transport Comparison + +| Transport | Nominal link | Plan A implication | +|---|---:|---| +| 1GbE | 1 Gbps class | Too small for raw RGB24 or YUV 4:2:0 5K60 before overhead. Useful for latency and compressed fallback measurements. | +| Thunderbolt 2 | Up to 20 Gbps class | Still below raw RGB24 5K60 before overhead. YUV 4:2:0 is theoretically under the link rate but needs real Thunderbolt Bridge throughput and latency tests. | + +Apple documents the Late 2015 iMac with 10/100/1000BASE-T Gigabit Ethernet and Thunderbolt 2 ports. [ë‚´ìš© 출처 : https://support.apple.com/en-us/112035] + +Apple documents IP communication between two Thunderbolt-equipped Macs over Thunderbolt Bridge. [ë‚´ìš© 출처 : https://support.apple.com/guide/mac-help/ip-thunderbolt-connect-mac-computers-mchld53dd2f5/mac] + +Apple documents direct Ethernet networking between two Macs. [ë‚´ìš© 출처 : https://support.apple.com/en-om/guide/mac-help/mchlp1413/mac] + +## Current Decision + +Do not downshift from Plan A yet. + +Plan A raw RGB24 over 1GbE is mathematically out of range, and raw RGB24 over Thunderbolt 2 is over the nominal link rate before overhead. However, Plan A still needs the required local benchmark path: + +- Windows Receiver synthetic 5K60 local render benchmark. +- Measured LAN throughput/latency. +- Measured Thunderbolt Bridge throughput/latency if the hardware path is available. + +Only measured receiver/render/transport failures should trigger the Plan B start. diff --git a/docs/04_SOURCE_LEDGER.md b/docs/04_SOURCE_LEDGER.md index 7ee9ed7..2922a67 100644 --- a/docs/04_SOURCE_LEDGER.md +++ b/docs/04_SOURCE_LEDGER.md @@ -5,16 +5,39 @@ This file stores plain-text source URLs in the user-requested format. Every tech | ID | Status | Claim | Source | |---|---|---|---| | apple_imac_2015_spec_en | confirmed | iMac Retina 5K 27-inch Late 2015 has a 5120-by-2880 display, four USB 3 ports, two Thunderbolt 2 ports with Mini DisplayPort output support, and 10/100/1000BASE-T Gigabit Ethernet. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/112035] | +| apple_imac_2017_21_4k_spec | confirmed | iMac Retina 4K 21.5-inch 2017 has Radeon Pro 555, two Thunderbolt 3 USB-C ports, and Gigabit Ethernet. | [ë‚´ìš© 출처 : https://support.apple.com/en-tm/112026] | +| apple_airplay_to_mac_requirements | confirmed | Apple's Continuity requirements page lists AirPlay to Mac receiver support for iMac Pro, Mac mini introduced in 2020 or later, and other Mac models introduced in 2018 or later; it also says older models can AirPlay to Mac at lower resolutions only if AirPlay Receiver is available and enabled. | [ë‚´ìš© 출처 : https://support.apple.com/en-hk/108046] | | apple_imac_2015_spec_ko | reference | See related docs. | [ë‚´ìš© 출처 : https://support.apple.com/ko-kr/112035] | +| apple_imac_model_compat | confirmed | Apple's iMac model identification page lists the newest compatible operating system as macOS Monterey for iMac Retina 5K 27-inch Late 2015, macOS Monterey for iMac Retina 4K 21.5-inch Late 2015, macOS Monterey for iMac 21.5-inch Late 2015, and macOS Big Sur for iMac Retina 5K 27-inch Mid 2015. | [ë‚´ìš© 출처 : https://support.apple.com/en-ng/108054] | | apple_tb3_tb2_adapter | confirmed | Apple's TB3-to-TB2 adapter supports Thunderbolt/Thunderbolt 2 data transfer up to 20Gbps for Thunderbolt 2 devices, is not Mini DisplayPort-compatible, and does not let a Mac charge from a Thunderbolt power-delivering device through the adapter. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/111753] | | apple_tb_bridge | confirmed | Apple documents IP communication between two Thunderbolt-equipped Macs over a Thunderbolt cable using Thunderbolt Bridge. | [ë‚´ìš© 출처 : https://support.apple.com/guide/mac-help/ip-thunderbolt-connect-mac-computers-mchld53dd2f5/mac] | | apple_ethernet_two_macs | confirmed | Apple documents direct Ethernet networking between two Macs and notes USB Ethernet or Thunderbolt-to-Gigabit Ethernet adapters when a Mac lacks Ethernet. | [ë‚´ìš© 출처 : https://support.apple.com/en-om/guide/mac-help/mchlp1413/mac] | +| apple_mbp_2021_m1max_media | confirmed | Apple's 2021 16-inch MacBook Pro technical specifications list M1 Max media engine support for hardware-accelerated H.264, HEVC, ProRes, and ProRes RAW, with two video encode engines and two ProRes encode/decode engines. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/111901] | +| apple_m1_media_engine | confirmed | Apple's M1 launch material says M1 includes low-power, efficient media encode and decode engines and an Apple-designed Thunderbolt controller with USB 4 transfer speeds up to 40Gbps. | [ë‚´ìš© 출처 : https://www.apple.com/li/newsroom/2020/11/apple-unleashes-m1/] | +| apple_current_mbp_media_av1_decode | confirmed | Apple's current MacBook Pro technical specifications list AV1 decode on the media engine and still list two video encode engines on Max-class configurations. | [ë‚´ìš© 출처 : https://www.apple.com/macbook-pro/specs/] | +| apple_mba_m1_spec | confirmed | Apple's M1 MacBook Air technical specifications list two Thunderbolt/USB 4 ports with Thunderbolt 3 up to 40Gb/s, Wi-Fi 6, and one external display up to 6K at 60Hz. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/111883] | | apple_screen_capture_kit | confirmed | ScreenCaptureKit is Apple's framework for high-performance capture of selected display, app, and window content into app-provided streams. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/screencapturekit] | | apple_videotoolbox | confirmed | VideoToolbox provides low-level access to hardware-accelerated video encoding and decoding capabilities. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox] | | apple_vt_low_delay | confirmed | Apple documents low-delay H.264 hardware encoding with VideoToolbox for real-time use cases. | [ë‚´ìš© 출처 : https://developer.apple.com/videos/play/wwdc2021/10158/] | +| apple_vt_low_latency_rate_control | confirmed | Apple documents `kVTVideoEncoderSpecification_EnableLowLatencyRateControl` as an encoder specification key that selects an encoder supporting low-latency operation and enables low-latency mode. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtvideoencoderspecification_enablelowlatencyratecontrol] | +| apple_vt_low_latency_sample | confirmed | Apple's low-latency conferencing sample says to include `kVTVideoEncoderSpecification_EnableLowLatencyRateControl` in `videoEncoderSpecification` when creating a `VTCompressionSession`. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/encoding-video-for-low-latency-conferencing] | +| apple_vt_encoder_id | confirmed | Apple documents that encoder IDs can be obtained from `VTCopyVideoEncoderList` and passed in an encoder specification when creating a compression session. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtvideoencoderspecification_encoderid] | +| apple_vt_parallelization_limit | confirmed | Apple documents `kVTCompressionPropertyKey_RecommendedParallelizationLimit` and says parallel encoding configurations require `MoreFramesBeforeStart`, `MoreFramesAfterEnd`, and `SourceFrameCount` properties. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_recommendedparallelizationlimit] | +| apple_vt_more_frames_before | confirmed | Apple documents `kVTCompressionPropertyKey_MoreFramesBeforeStart` as a boolean indicating separately compressed frames will be concatenated before the current session, helping encoders smooth segment joins and avoid data-rate spikes. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_moreframesbeforestart] | +| apple_vt_more_frames_after | confirmed | Apple documents `kVTCompressionPropertyKey_MoreFramesAfterEnd` as a boolean indicating separately compressed frames will follow the current session. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_moreframesafterend] | +| apple_vt_source_frame_count | confirmed | Apple lists `kVTCompressionPropertyKey_SourceFrameCount` as an encoding hint for the number of source frames when known. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/compression-properties] | +| apple_vt_prepare_to_encode | confirmed | Apple documents `VTCompressionSessionPrepareToEncodeFrames` as an optional call that lets an encoder allocate necessary resources before the first encode call. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/1428283-vtcompressionsessionpreparetoenc] | +| apple_vt_session_lifecycle | confirmed | Apple's `VTCompressionSession` workflow says to create, configure, encode, optionally complete pending frames, and invalidate the session when finished. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/vtcompressionsession-api-collection] | +| apple_vt_complete_frames | confirmed | Apple documents `VTCompressionSessionCompleteFrames` as forcing pending frames up to a timestamp, or all pending frames when the timestamp is non-numeric, to be emitted before returning. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/1428303-vtcompressionsessioncompletefram] | +| apple_vt_max_frame_delay | confirmed | Apple documents `kVTCompressionPropertyKey_MaxFrameDelayCount` as limiting how many frames the compressor may hold before it must output a compressed frame. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_maxframedelaycount] | +| apple_sck_configuration | confirmed | Apple's ScreenCaptureKit stream configuration exposes output size, pixel format, queue depth, and minimum frame interval controls for capture streams. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/screencapturekit/scstreamconfiguration] | +| apple_sck_queue_depth | confirmed | Apple's ScreenCaptureKit `queueDepth` documentation says deeper queues use more memory but can allow processing without stalling the display stream. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/screencapturekit/scstreamconfiguration/queuedepth] | +| apple_sck_wwdc_queue_depth | confirmed | Apple's WWDC ScreenCaptureKit session explains that if the app holds surfaces too long, ScreenCaptureKit can run out of surfaces, stall, and miss frames; it also demonstrates NV12 output via `kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange`. | [ë‚´ìš© 출처 : https://developer.apple.com/videos/play/wwdc2022/10155/] | | apple_bonjour | reference | See related docs. | [ë‚´ìš© 출처 : https://developer.apple.com/bonjour/] | | apple_driverkit | reference | See related docs. | [ë‚´ìš© 출처 : https://developer.apple.com/documentation/driverkit] | | apple_power_adapter | reference | See related docs. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/109509] | +| apple_bootcamp_startup_control_panel | confirmed | Apple's Boot Camp Control Panel guide says Windows on an Intel Mac can set the default operating system from the Boot Camp icon/control panel, and that starting in macOS can also be done through Startup Manager with the Option key. | [ë‚´ìš© 출처 : https://support.apple.com/guide/bootcamp-control-panel/start-up-your-mac-in-windows-or-macos-bcmp29b8ac66/mac] | +| apple_bootcamp_restart_macos_windows | confirmed | Apple's Boot Camp support article says Windows can restart into macOS through the Boot Camp tray icon, and that holding Option during restart shows available startup volumes. | [ë‚´ìš© 출처 : https://support.apple.com/en-us/102450] | | astropad_luna_requirements | confirmed | Luna Display currently documents that its hardware unit is required for all connection types and that Windows 10 64-bit or later is supported as a primary device. | [ë‚´ìš© 출처 : https://support.astropad.com/en/articles/11835375-what-are-the-system-requirements-for-luna-display] | | astropad_luna_4k_5k | confirmed | Luna Display currently documents USB-C Luna as required for 5K resolutions, Mac support for 5K at 45Hz and 4K at 60Hz, and PC support for 5K at 30Hz and 4K at 60Hz. | [ë‚´ìš© 출처 : https://support.astropad.com/en/articles/11835385-does-luna-display-support-4k-and-5k-retina-resolutions] | | astropad_luna_hub | confirmed | Luna Display currently says the Luna hardware should be plugged directly into a compatible port; adapters may still be used for separate wired Ethernet/Thunderbolt connections. | [ë‚´ìš© 출처 : https://support.astropad.com/en/articles/11835378-can-i-plug-luna-display-into-an-adapter-or-hub] | @@ -23,7 +46,12 @@ This file stores plain-text source URLs in the user-requested format. Every tech | ms_h264_decoder | confirmed | Microsoft's Media Foundation H.264 decoder is an MFT, supports Baseline/Main/High up to level 5.1, exposes DXVA-related attributes, and lists 4096x2304 as the documented maximum resolution. | [ë‚´ìš© 출처 : https://learn.microsoft.com/en-us/windows/win32/medfound/h-264-video-decoder] | | ms_hevc_decoder | confirmed | Microsoft's Media Foundation H.265/HEVC decoder is an MFT for Annex B HEVC, supports Main/Main Still Picture/Main10 profiles, and lists 4096x2304 as the documented maximum resolution. | [ë‚´ìš© 출처 : https://learn.microsoft.com/en-us/windows/win32/medfound/h-265---hevc-video-decoder] | | ms_mediafoundation_decode | reference | See related docs. | [ë‚´ìš© 출처 : https://learn.microsoft.com/en-us/gaming/gdk/docs/gdk-dev/overviews/mediafoundation-decode] | +| tailscale_connection_types | confirmed | Tailscale documents direct connections as usually providing the lowest latency and highest throughput, while relayed connections are a fallback when direct connectivity is unavailable. | [ë‚´ìš© 출처 : https://tailscale.com/docs/reference/connection-types] | +| tailscale_derp_routing_debug | confirmed | Tailscale documents `tailscale status`, `tailscale ping`, and `tailscale netcheck` as tools for inspecting direct vs DERP/relay behavior. | [ë‚´ìš© 출처 : https://tailscale.com/docs/reference/troubleshooting/network-configuration/derp-routing] | | ffmpeg_hwaccel | reference | See related docs. | [ë‚´ìš© 출처 : https://trac.ffmpeg.org/wiki/HWAccelIntro] | +| nvidia_nvenc_split_frame | reference | NVIDIA documents multi-NVENC split-frame encoding for HEVC and AV1, where frames are partitioned into independently encoded strips to increase single-stream encode speed at some quality cost. | [ë‚´ìš© 출처 : https://docs.nvidia.com/video-technologies/video-codec-sdk/13.0/nvenc-video-encoder-api-prog-guide/index.html#multi-nvenc-split-frame-encoding-in-hevc-and-av1] | +| nvidia_sfe_8k60 | reference | NVIDIA's split-frame encoding article describes explicit SFE in Video Codec SDK 12.1 and notes HEVC uses horizontal slices while AV1 uses tiles for independent partitions. | [ë‚´ìš© 출처 : https://developer.nvidia.com/blog/video-encoding-at-8k60-with-split-frame-encoding-and-nvidia-ada-lovelace-architecture/] | +| nvidia_hevc_low_latency_quality | reference | NVIDIA Video Codec SDK 12.2 documents low-latency-adjacent HEVC quality tools such as unidirectional B-frames and 8-bit-to-10-bit encoding, while noting lookahead and temporal filtering are latency/performance tradeoffs. | [ë‚´ìš© 출처 : https://developer.nvidia.com/blog/improving-video-quality-with-nvidia-video-codec-sdk-12-2-for-hevc/] | | sdl_intro | reference | See related docs. | [ë‚´ìš© 출처 : https://wiki.libsdl.org/SDL2/Introduction] | | freedisplay | reference | See related docs. | [ë‚´ìš© 출처 : https://github.com/huberdf/FreeDisplay] | | node_mac_virtual_display | reference | See related docs. | [ë‚´ìš© 출처 : https://github.com/enfp-dev-studio/node-mac-virtual-display] | @@ -34,3 +62,21 @@ This file stores plain-text source URLs in the user-requested format. Every tech | owc_tb_compat | reference | See related docs. | [ë‚´ìš© 출처 : https://eshop.macsales.com/blog/96867-the-simple-guide-to-thunderbolt-forwards-and-backwards-compatibility/] | | karpathy_skills | reference | See related docs. | [ë‚´ìš© 출처 : https://github.com/forrestchang/andrej-karpathy-skills] | | gstack | reference | See related docs. | [ë‚´ìš© 출처 : https://github.com/garrytan/gstack] | +| sunshine_repo | reference | Sunshine is an open-source self-hosted game stream host for Moonlight with hardware-encoding backends, including macOS VideoToolbox paths worth studying for iBridge. | [ë‚´ìš© 출처 : https://github.com/LizardByte/Sunshine] | +| moonlight_qt_repo | reference | Moonlight Qt is an open-source game streaming client with hardware-accelerated decode support across Windows, macOS, and Linux. | [ë‚´ìš© 출처 : https://github.com/moonlight-stream/moonlight-qt] | +| obs_studio_repo | reference | OBS Studio includes macOS capture and VideoToolbox encoder implementations useful as mature capture/encode references. | [ë‚´ìš© 출처 : https://github.com/obsproject/obs-studio] | +| transcoding_repo | reference | Transcoding is a Swift package for video encoding/decoding with Annex-B adapters and low-latency presets. | [ë‚´ìš© 출처 : https://github.com/finnvoor/Transcoding] | +| apple_sck_sample_mirror | reference | CapturingScreenContentInMacOS mirrors Apple's ScreenCaptureKit sample for high-performance macOS screen capture. | [ë‚´ìš© 출처 : https://github.com/Fidetro/CapturingScreenContentInMacOS] | +| videotoolbox_h265_sample | reference | VideoToolboxH265Encoder is a small Swift HEVC/H.264 VideoToolbox encoder sample. | [ë‚´ìš© 출처 : https://github.com/zf3/VideoToolboxH265Encoder] | +| ffmpeg_repo | reference | FFmpeg includes VideoToolbox and codec bitstream handling code useful as a reference implementation. | [ë‚´ìš© 출처 : https://github.com/FFmpeg/FFmpeg] | +| deskpad_repo | reference | DeskPad is an open-source macOS virtual monitor for screen sharing and uses virtual display concepts relevant to a Mac-Mac iBridge route. | [ë‚´ìš© 출처 : https://github.com/Stengo/DeskPad] | +| freedisplay_repo | reference | FreeDisplay is an open-source macOS virtual display/display-management reference. | [ë‚´ìš© 출처 : https://github.com/huberdf/FreeDisplay] | +| simpledisplay_repo | reference | SimpleDisplay is an open-source macOS display manager that creates virtual monitors using CGVirtualDisplay private API. | [ë‚´ìš© 출처 : https://github.com/SamuelRioTz/SimpleDisplay] | +| node_mac_virtual_display_repo | reference | node-mac-virtual-display is an open-source native bridge for creating macOS virtual displays from Node/Electron contexts. | [ë‚´ìš© 출처 : https://github.com/enfp-dev-studio/node-mac-virtual-display] | +| betterdisplay_repo | reference | BetterDisplay is an open-source macOS display/HiDPI/virtual-screen reference. | [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay] | +| betterdisplay_opensource_branch | reference | BetterDisplay's open-source code is available from the `opensource` branch and is tracked in this repo as `reference/BetterDisplay` for HiDPI/virtual-display study. | [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/tree/opensource] | +| betterdisplay_current_landing | confirmed | BetterDisplay's current public README describes virtual screens, local streaming, Picture in Picture, CLI integration, headless Mac virtual screens, macOS Tahoe 26 support, and Pro-gated features. | [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/blob/landing/README.md] | +| betterdisplay_cli_virtual_screen | reference | BetterDisplay CLI can create and control virtual screens when BetterDisplay is installed and CLI commands are enabled. | [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/discussions/2032] | +| rustdesk_repo | reference | RustDesk is an open-source remote desktop application with macOS capture and hardware codec paths worth studying for Mac-Mac and cross-platform routes. | [ë‚´ìš© 출처 : https://github.com/rustdesk/rustdesk] | +| deskreen_repo | reference | Deskreen is an open-source project that turns devices with a browser into secondary screens over WebRTC. | [ë‚´ìš© 출처 : https://github.com/pavlobu/deskreen] | +| screencat_repo | reference | ScreenCat is an open-source screen sharing and remote collaboration project using WebRTC. | [ë‚´ìš© 출처 : https://github.com/max-mapper/screencat] | diff --git a/docs/11_REFERENCE_TECH_ANALYSIS.md b/docs/11_REFERENCE_TECH_ANALYSIS.md new file mode 100644 index 0000000..4868207 --- /dev/null +++ b/docs/11_REFERENCE_TECH_ANALYSIS.md @@ -0,0 +1,197 @@ +# Reference Technology Analysis + +Date: 2026-05-15 + +Branch: `feat/plan-a-5k60-benchmark` + +This document turns the `reference/` clone set into concrete iBridge +engineering direction. Most references are ignored local clones; BetterDisplay +is intentionally tracked as a Git submodule so virtual-display/HiDPI behavior is +available across machines. It does not copy code from third-party projects. + +## Executive Read + +- The strongest current signal is still Plan C, not raw 5K frames: forced + `com.apple.videotoolbox.videoencoder.ave.hevc` without low-latency rate + control fits a 60 Hz encode budget at 3200x1800 on the MacBook Pro. +- The reference projects show that the next bottlenecks are architectural: + capture/encode must stay close to GPU surfaces, transport must not be a + blocking TCP proof path, and the receiver must decode/render with bounded + queues rather than accumulating frames. +- Mac-to-Mac should be kept as a first-class route. If the iMac can boot macOS, + the receiver side can avoid Media Foundation/D3D11 complexity. The virtual + display source is most likely a feature of the modern Primary Mac, not + necessarily the old iMac. +- Remote macOS installation or boot-volume switching is a machine-state risk, + not a coding task. It should only be attempted after confirming an existing + macOS volume, Boot Camp control-panel visibility, and a recovery path. + +## Reference Findings By Pipeline Stage + +### 1. Virtual Display Source + +Primary references: + +- `reference/DeskPad/DeskPad/CGVirtualDisplayPrivate.h` +- `reference/DeskPad/DeskPad/Frontend/Screen/ScreenViewController.swift` +- `reference/FreeDisplay/docs/lessons/coregraphics.md` +- `reference/SimpleDisplay/Sources/VirtualDisplayBridge/VirtualDisplayWrapper.m` +- `reference/node-mac-virtual-display/src/virtual_display.mm` + +What matters: + +- DeskPad creates `CGVirtualDisplay`, sets 60 Hz modes, enables HiDPI, and + captures that virtual display with `CGDisplayStream`. +- FreeDisplay records practical constraints that are more useful than API + optimism: `CGVirtualDisplay` is private SPI, `vendorID` cannot be zero, + creation must happen on the main thread, and WindowServer calls can block. +- SimpleDisplay and node-mac-virtual-display are compact bridge references for + runtime availability checks and mode construction. + +iBridge implication: + +- A strong Mac-Mac spike is possible before touching the iMac: create a virtual + display on the MBP/MBA, capture that display, encode it with the current + forced HEVC path, then decode locally or on another Mac. +- Private API risk is real. This path is suitable for a local/private tool + prototype, but it should be isolated behind an experiment flag and not mixed + into the clean Windows receiver path. + +### 2. macOS Capture And VideoToolbox Encode + +Primary references: + +- `reference/CapturingScreenContentInMacOS/CaptureSample/CaptureEngine.swift` +- `reference/obs-studio/plugins/mac-capture/mac-sck-video-capture.m` +- `reference/obs-studio/plugins/mac-capture/mac-sck-common.m` +- `reference/Transcoding/Sources/Transcoding/VideoEncoder+Config.swift` +- `reference/Transcoding/Sources/Transcoding/VideoEncoderAnnexBAdaptor.swift` +- `reference/obs-studio/plugins/mac-videotoolbox/encoder.c` +- `reference/FFmpeg/libavcodec/videotoolboxenc.c` + +What matters: + +- ScreenCaptureKit references focus on frame status, Retina content scale, and + pixel sizing. This is where text clarity will be won or lost. +- Transcoding exposes more VT properties than iBridge currently probes: + `AllowFrameReordering`, `AllowOpenGOP`, `DataRateLimits`, + `PrioritizeEncodingSpeedOverQuality`, `MaxFrameDelayCount`, `RealTime`, + `EncoderID`, and low-latency rate control. +- Transcoding also has concise Annex-B adapters that insert H.264 SPS/PPS or + HEVC VPS/SPS/PPS before sync frames and convert length-prefixed VT output to + start-code delimited elementary streams. +- OBS and FFmpeg show the production pattern: treat VT properties as + platform-dependent, log unsupported properties clearly, and keep encoder ID + selection observable. + +iBridge implication: + +- The next Primary work should not be another broad speed check. It should be a + VT property matrix with explicit columns for encoder ID, low-latency RC, + speed priority, realtime, reordering, open GOP, frame delay, data-rate limits, + keyframe cadence, and output format. +- iBridge should add a clean elementary-stream/Annex-B option before live + compressed receiver work gets complicated. This helps both Windows Media + Foundation and macOS VideoToolbox decode paths. + +### 3. Transport And Frame Loss + +Primary references: + +- `reference/sunshine/src/stream.cpp` +- `reference/libdatachannel/src/h264rtppacketizer.cpp` +- `reference/libdatachannel/src/h265rtppacketizer.cpp` +- `reference/pion-webrtc/pkg/media/samplebuilder/samplebuilder.go` +- `reference/selkies-gstreamer/src/selkies/webrtc/rtp.py` + +What matters: + +- Sunshine's live video path assumes UDP/RTP-style packets, frame headers, + IDR feedback, loss stats, FEC, packet pacing, and per-stage latency logging. +- libdatachannel gives compact H.264/H.265/AV1 packetizer/depacketizer models. +- Pion's sample builder is useful receiver-side logic for reconstructing media + samples from RTP sequence numbers with bounded lateness. + +iBridge implication: + +- TCP is still valuable as a correctness harness, but it is not the final live + display transport. Once decode/render works, the next protocol step should be + UDP with sequence numbers, frame IDs, EOF/SOF flags, loss counters, and an IDR + request mechanism. +- Do not start with full WebRTC unless NAT traversal becomes the main product + requirement. For same-room Mac/iMac display use, a smaller RTP-like protocol + is more reviewable. + +### 4. Windows Receiver Decode And Render + +Primary references: + +- `reference/moonlight-qt/app/streaming/video/ffmpeg-renderers/d3d11va.cpp` +- `reference/moonlight-qt/app/streaming/video/ffmpeg-renderers/pacer/pacer.cpp` +- `reference/LAVFilters/decoder/LAVVideo/decoders/d3d11va.cpp` +- `reference/LAVFilters/decoder/LAVVideo/parsers/AnnexBConverter.cpp` +- `reference/Windows-classic-samples/Samples/DX11VideoRenderer/cpp` +- `reference/Windows-classic-samples/Samples/MediaFoundationTransformDecoder/cpp` + +What matters: + +- Moonlight's D3D11VA renderer keeps decoded frames GPU-native, handles shared + textures/fences, and has explicit renderer/device fallback logic. +- Moonlight's pacer caps queues and drops frames. The important design point is + that a live display must preserve recency over completeness. +- Microsoft's DX11 renderer sample gives a Media Foundation presentation + scheduler, while LAVFilters provides production parser and D3D11VA behavior. + +iBridge implication: + +- The Windows path should move from "upload frames and present" toward + "decode to GPU surface and present with bounded queues". +- The immediate receiver target should be an offline HEVC/H.264 Annex-B decode + smoke, then the same decode path fed by protocol v0 TCP. Only after this path + is visible should UDP/FEC become the main implementation work. + +### 5. Codec Libraries + +Primary references: + +- `reference/x264`, `reference/x265`, `reference/openh264` +- `reference/aom`, `reference/libvpx`, `reference/SVT-AV1`, `reference/dav1d` +- `reference/rustdesk/libs/scrap/src/common/aom.rs` + +What matters: + +- These repos are useful for codec vocabulary and tradeoffs: B-frames, + lookahead, VBV, GOP/keyframe cadence, realtime/screen-content modes, and + decoder expectations. +- They are not likely to replace platform hardware codecs for iBridge. CPU + software encode of high-resolution 60 Hz desktop frames is the wrong default + for battery, latency, and thermals. + +iBridge implication: + +- Keep VideoToolbox on Primary and GPU decode on Receiver as the default. +- Use AV1/VPx study only if HEVC licensing/compatibility or image quality + becomes a product blocker. + +## Route Comparison + +| Route | Strength | Risk | Best next test | +|---|---|---|---| +| MBP/MBA Primary -> Windows iMac Receiver | Uses current iMac Windows install; can proceed through Tailscale/RDP once receiver is started. | Media Foundation/D3D11 decode/render complexity; Windows receiver port and SSH auth are currently blocked. | Run offline HEVC/H.264 decode smoke on iMac, then protocol v0 TCP compressed decode. | +| MBP/MBA Primary -> macOS iMac Receiver | Cleaner codec stack through VideoToolbox on both ends; avoids Windows D3D11VA learning curve. | Requires iMac macOS boot/install state; old iMac official OS ceiling matters; remote OS install is unsafe without physical access. | Confirm existing macOS volume and remote access first; then build a minimal macOS receiver. | +| Local Mac virtual display source | Can be developed now without iMac; matches "external display" UX better than mirroring a real display. | Uses private `CGVirtualDisplay` SPI and WindowServer-sensitive behavior. | Local MBP virtual display -> capture -> forced HEVC encode smoke. | +| Custom UDP/RTP transport | Matches mature low-latency streaming references. | Harder to debug until decode/render is stable. | Add frame IDs/loss stats/IDR request after TCP decode/render passes. | + +## Recommended Immediate Work + +1. Keep most reference clones Git-disconnected and ignored. Treat + `reference/BetterDisplay` as the current submodule exception for shared + HiDPI/virtual-display research across MacBook Pro, MacBook Air, and Codex + Cloud. +2. Run the Windows iMac inventory script from RDP or an existing remote shell. +3. Extend the Primary benchmark into a VT property matrix rather than only + comparing machines. +4. Add an Annex-B output/decode fixture path so both Windows and macOS receiver + experiments consume the same elementary stream. +5. Add a local macOS virtual-display smoke app/flag only after deciding to + accept private SPI risk for prototype experiments. diff --git a/docs/12_IMAC_SETUP_PREP.md b/docs/12_IMAC_SETUP_PREP.md new file mode 100644 index 0000000..f91f960 --- /dev/null +++ b/docs/12_IMAC_SETUP_PREP.md @@ -0,0 +1,133 @@ +# iMac Setup Prep + +Date: 2026-05-16 + +Scope: what can be prepared before physical access to the iMac, now that both +Windows and Mac-to-Mac routes are in scope. + +## Receiver Inventory Update + +The current receiver pool has two iMacs: + +- iMac 21.5-inch Retina 4K, 2017: 8 GB RAM, Radeon Pro 555, macOS boot + available now. Treat this as the first wired Mac-to-Mac receiver target. +- iMac 27-inch Retina 5K, Late 2015: 8 GB RAM, Radeon R9 M380, macOS and + Windows boot possible. Treat this as the long-term 5K receiver, but keep + boot-state and Thunderbolt 2 cable availability as explicit blockers. + +The updated ordered test plan lives in +`docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md`. + +## Current Remote State + +Known from today's probes: + +- iMac Tailscale address: `100.86.52.88`. +- Windows SSH port `22` is reachable, but the MacBook Pro SSH key is not + authorized. +- iBridge receiver port `48320` is not listening yet. +- Live MBP -> iMac send/decode has not run because no receiver is active. + +## 2017 iMac macOS Remote State + +Updated 2026-05-17: + +- 2017 iMac Tailscale address: `100.89.104.119`. +- 2017 iMac Wi-Fi address: `192.168.31.249`. +- 2017 iMac direct Ethernet link-local address: `169.254.70.114`. +- SSH is open and authenticated from the MacBook Pro after generating OpenSSH + host keys with `sudo ssh-keygen -A` and adding the MacBook Pro public key to + `~/.ssh/authorized_keys`. +- Homebrew is installed at `/usr/local` on this Intel iMac. Remote non-login + shells should use `/usr/local/bin/iperf3` instead of relying on `PATH`. +- `caffeinate -dimsu` is running as a user process to prevent sleep during + active benchmark work. +- `/usr/local/bin/iperf3 -s` is listening on TCP `5201`. + +## What Can Be Done Remotely Now + +These are safe preparatory steps if an RDP session or any existing authorized +remote shell is available: + +1. Run `scripts/windows_imac_setup_inventory.ps1` on the Windows iMac. +2. Confirm whether Boot Camp Control Panel is installed and whether it sees a + macOS startup volume. +3. Confirm whether the Windows disk still has an APFS/HFS macOS volume. +4. Add the MBP public SSH key to the Windows OpenSSH authorized keys file, if + Windows OpenSSH is the intended remote path. +5. Build or copy the receiver binary and start it manually so port `48320` + listens for a TCP smoke test. +6. Install or verify Tailscale on Windows and confirm whether the iMac is direct + or relayed over DERP before treating latency as meaningful. + +## What Should Wait For Physical Access + +- Repartitioning, reinstalling macOS, deleting Windows partitions, changing EFI + boot entries, or changing the default startup disk without a verified remote + recovery path. +- Booting into macOS unless macOS remote login/screen sharing/Tailscale is + already confirmed. If it boots into macOS with no remote access, the iMac can + become unreachable until someone is physically present. +- Any Apple ID, FileVault, recovery, or installer workflow that might pause at a + local UI prompt. + +## Boot Camp Reality Check + +Apple documents that Intel Macs with Boot Camp can choose the default operating +system from Windows Boot Camp Control Panel, and can also choose a startup +volume by holding Option during restart. Apple also notes Windows can restart +into macOS through the Boot Camp tray icon. See source ledger entries +`apple_bootcamp_startup_control_panel` and +`apple_bootcamp_restart_macos_windows`. + +For the likely 2015 iMac family, Apple's iMac model page lists the official +newest compatible OS as: + +- iMac Retina 5K, 27-inch, Late 2015: macOS Monterey. +- iMac Retina 4K, 21.5-inch, Late 2015: macOS Monterey. +- iMac 21.5-inch, Late 2015: macOS Monterey. +- iMac Retina 5K, 27-inch, Mid 2015: macOS Big Sur. + +The exact iMac model identifier should be confirmed from Windows inventory or +physical macOS System Information before planning an OS install. + +## Practical Tonight Checklist + +When physically near the iMac: + +1. Attach keyboard/mouse and make sure Option-key boot picker is available. +2. Check whether `Macintosh HD` or another macOS startup volume exists. +3. If macOS exists, boot it once, enable network access, enable Remote Login or + Screen Sharing, sign in to Tailscale, and confirm the machine is reachable + from MBP/MBA before relying on remote boot switching. +4. If macOS does not exist, make a full backup decision before installing. Do + not start from remote-only assumptions. +5. If staying on Windows tonight, start the iBridge receiver and open port + `48320` for the MBP forced-HEVC TCP smoke test. + +## 2017 4K iMac First Checklist + +Use the 2017 iMac before the 2015 5K iMac for the next physical loop: + +1. Boot the 2017 iMac into macOS and keep it on AC power. +2. Disable sleep with the macOS commands in + `docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md`. +3. Install/sign in to Tailscale if remote reachability is needed. +4. Enable Remote Login so the MacBook Pro and MacBook Air can run receiver-side + checks without screen sharing. +5. Install `iperf3` if possible. +6. Run wireless first, then Ethernet, then Thunderbolt Bridge only after the + wired network identity is clear. + +## Suggested Remote Command + +From a Windows PowerShell prompt on the iMac: + +```powershell +Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass +.\scripts\windows_imac_setup_inventory.ps1 +``` + +The script avoids printing key contents or environment secrets. It records +paths, service state, disks/volumes, listeners, Boot Camp files, and firmware +boot entries into a timestamped local folder. diff --git a/docs/13_TILED_5K60_STRATEGY.md b/docs/13_TILED_5K60_STRATEGY.md new file mode 100644 index 0000000..45a9e2c --- /dev/null +++ b/docs/13_TILED_5K60_STRATEGY.md @@ -0,0 +1,112 @@ +# Tiled 5K60 Strategy + +Date: 2026-05-15 + +## Question + +Can iBridge continue toward full logical `5120x2880 @ 60Hz` by splitting the frame into independently encoded tiles? + +## Short Answer + +Yes, as the next prototype path. The current evidence says 2x2 tiled HEVC is feasible enough to continue, but it is not yet a smooth display solution. + +The best current encode-only profile is: + +```text +source=synthetic-nv12-tiled +logical_resolution=5120x2880 +tile_grid=2x2 +tile_resolution=2560x1440 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate=30Mbps per tile +data_rate_limit=30Mbps per tile +tile_reset_every_frames=180 +tile_max_inflight_logical_frames=1 +``` + +This sustained 30 seconds at effective `60.009fps`, average logical encode latency `12.100ms`, and p95 `12.690ms`. The remaining problem is max spike: reset frames still reach about `135.530ms`. + +## Evidence + +| Probe | Duration | Effective fps | Avg logical ms | P95 logical ms | Max logical ms | Late >16.67ms | +|---|---:|---:|---:|---:|---:|---:| +| reset150, inflight1 | 30s | 60.002 | 12.374 | 12.920 | 132.944 | 25 / 1800 | +| reset180, inflight1 | 30s | 60.009 | 12.100 | 12.690 | 135.530 | 18 / 1800 | + +Artifacts: + +- `benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md` +- `benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/summary.md` +- `benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md` +- `benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/deadline_analysis.md` + +## What Changed The Result + +1. Per-tile PTS correction. + - Earlier in-process tiled probes used global interleaved frame IDs as timestamps, so each tile session saw PTS values like `0, 4, 8...`. + - The benchmark now gives each tile session logical PTS values like `0, 1, 2...`. + +2. Bounded in-flight logical frames. + - `--tile-max-inflight-logical-frames 1` prevents the encoder from accumulating a long hidden queue. + +3. Periodic tile-session reset. + - No-reset probes still climb after roughly 180 logical frames. + - Resetting around frame 180 keeps p95 low, but introduces reset-frame spikes. + +## Why This Matches Current Encoding Trends + +Modern hardware encoders increasingly use split-frame or multi-instance strategies for very high resolutions. NVIDIA documents Multi NVENC Split Frame Encoding for HEVC and AV1: a frame is partitioned into independent strips and encoded simultaneously by separate encoder engines, increasing single-stream speed at quality cost. [ë‚´ìš© 출처 : https://docs.nvidia.com/video-technologies/video-codec-sdk/13.0/nvenc-video-encoder-api-prog-guide/index.html#multi-nvenc-split-frame-encoding-in-hevc-and-av1] + +NVIDIA's 8K60 split-frame writeup also distinguishes HEVC slices from AV1 tiles and documents explicit split-frame control in Video Codec SDK 12.1. [ë‚´ìš© 출처 : https://developer.nvidia.com/blog/video-encoding-at-8k60-with-split-frame-encoding-and-nvidia-ada-lovelace-architecture/] + +iBridge cannot directly enable NVENC SFE through VideoToolbox, but the local 2x2 tiled approach is conceptually similar: it manually partitions one logical frame into multiple independent encoder sessions. + +## What Not To Chase Yet + +- AV1: useful industry direction, but not the current iBridge path on this MacBook Pro plus 2015 iMac Windows receiver. The local VideoToolbox encoder list used in this repo does not show an AV1 encoder, and receiver decode support is already uncertain for 5K HEVC/H.264. +- Lookahead or temporal filtering: NVIDIA documents these as quality/bitrate tools with latency and performance tradeoffs, so they are not first-choice controls for an interactive display path. [ë‚´ìš© 출처 : https://developer.nvidia.com/blog/improving-video-quality-with-nvidia-video-codec-sdk-12-2-for-hevc/] +- More tiles by default: 4x2 and 2x4 probes did not beat 2x2; they increased tail risk in the current MacBook Pro VideoToolbox path. + +## Next Prototype Design + +The receiver should not wait for all tiles indefinitely. + +Recommended presentation policy: + +1. Keep a previous decoded texture for each tile. +2. For each display vsync, composite the newest tile available before the deadline. +3. If a tile misses the deadline, reuse the previous tile for that region. +4. Count stale-tile presentations in the HUD. +5. Treat a full logical frame as smooth if the presented surface updates at 60Hz and stale tiles stay rare. + +Based on `reset180` 30-second deadline analysis: + +| Deadline | Late logical frames | +|---:|---:| +| 16.67ms | 18 / 1800 | +| 20ms | 12 / 1800 | +| 33.33ms | 10 / 1800 | + +This suggests that stale-tile presentation could hide the reset spikes better than blocking the whole logical frame. + +## Next Experiments + +1. Add a tiled transport header extension: + - tile columns/rows + - tile index + - logical frame ID + - tile width/height + - keyframe/config flags + - end-of-logical-frame marker + +2. Build receiver-side recomposition without decode first: + - synthetic colored tile packets + - D3D11 texture-per-tile composition + - stale-tile HUD counters + +3. Then add four HEVC decode sessions. + +4. Only after synthetic tiled receiver works, connect macOS Primary tiled HEVC output to the receiver. + +5. Keep single-session `3840x2160 @ 60` and `4096x2304 @ 60` as fallback branches. diff --git a/docs/14_TRANSMISSION_PROFILE_MATRIX.md b/docs/14_TRANSMISSION_PROFILE_MATRIX.md new file mode 100644 index 0000000..66cf2d3 --- /dev/null +++ b/docs/14_TRANSMISSION_PROFILE_MATRIX.md @@ -0,0 +1,247 @@ +# Transmission Profile Matrix + +Date: 2026-05-15 + +## Direction + +The next step is not a Windows synthetic tiled renderer. + +iBridge should first finish the sender-side decision tree: for each source Mac and connection class, choose the most plausible capture, encode, bitrate, and resolution profile. Receiver decode/render should be tested later on the 2015 iMac after both Windows and macOS receiver environments are available. + +## Current Read + +Plan A as "single 5120x2880 @ 60Hz stream" is not viable on the current M1 Max path. Single-session HEVC 5K60 is far beyond the frame budget, and ScreenCaptureKit 5K60 capture+encode is worse. + +Plan A as "full logical 5K60 by split/tiled streams" is still viable enough to keep as the top full-resolution prototype path on the M1 Max MacBook Pro. The best current sender-only result is: + +```text +source=synthetic-nv12-tiled +logical_resolution=5120x2880 +tile_grid=2x2 +tile_resolution=2560x1440 +codec=hevc +encoder_id=com.apple.videotoolbox.videoencoder.ave.hevc +bitrate=30Mbps per tile +data_rate_limit=30Mbps per tile +tile_reset_every_frames=180 +tile_max_inflight_logical_frames=1 +``` + +This sustained 30 seconds at effective `60.009fps`, average logical encode latency `12.100ms`, and p95 `12.690ms`. The caveat is still important: reset frames spike to about `135.530ms`, so the display path must later hide, drop, or stagger those events. + +## Hardware Reality + +The local M1 Max MacBook Pro exposes hardware VideoToolbox encoders for H.264 and HEVC, and the current encoder list also shows hardware ProRes encoders. It does not expose an AV1 encoder in this repo's probe. + +Apple's 2021 16-inch MacBook Pro technical specifications list M1 Max with two video encode engines and two ProRes encode/decode engines. [ë‚´ìš© 출처 : https://support.apple.com/en-us/111901] + +Apple's M1 launch material says M1 includes efficient media encode and decode engines, but the M1 Air is a much smaller thermal and media-engine target than M1 Max. [ë‚´ìš© 출처 : https://www.apple.com/li/newsroom/2020/11/apple-unleashes-m1/] + +Current Apple MacBook Pro specifications show the newer direction: current Max-class chips still list two video encode engines and add AV1 decode. That matters for receiver playback on newer Macs, but it does not create AV1 encode on the user's M1 Air or M1 Max. [ë‚´ìš© 출처 : https://www.apple.com/macbook-pro/specs/] + +## Connection Reality + +The 2015 27-inch Retina 5K iMac has a 5120-by-2880 panel, two Thunderbolt 2 ports, Gigabit Ethernet, and 802.11ac Wi-Fi. [ë‚´ìš© 출처 : https://support.apple.com/en-us/112035] + +Apple's Thunderbolt 3-to-Thunderbolt 2 adapter supports Thunderbolt 2 data transfer up to 20Gbps, but it is not a Mini DisplayPort display adapter. For iBridge, this is useful as a network/data path, not as Target Display Mode. [ë‚´ìš© 출처 : https://support.apple.com/en-us/111753] + +Apple documents IP-over-Thunderbolt between two Macs using Thunderbolt Bridge. [ë‚´ìš© 출처 : https://support.apple.com/guide/mac-help/ip-thunderbolt-connect-mac-computers-mchld53dd2f5/mac] + +## Priority Matrix + +| Source Mac | Connection | First profile | Why | Status | +|---|---|---|---|---| +| M1 Max MacBook Pro | Thunderbolt Bridge | 2x2 tiled HEVC 5K60, 30Mbps/tile | Only current full-5K60 sender path with p95 under budget | promising sender-only | +| M1 Max MacBook Pro | 1GbE | 4096x2304@60 HEVC or 3840x2160@60 HEVC | Isolated single-stream p95 passes, but product switching after tiled can poison encoder state | needs wired network test | +| M1 Max MacBook Pro | Wi-Fi | 3200x1800@60 HEVC, then 2560x1440@60 if latency matters | Wireless needs lower bitrate and adaptation before chasing full 5K | needs stable local Wi-Fi test | +| M1 Air | Thunderbolt Bridge | 2560x1440@60 HEVC | Air tiled 5K60 and 3200x1800 missed p95 budget; do not assume M1 Max headroom | sender-tested; transport pending | +| M1 Air | 1GbE | 2560x1440@60 HEVC | Air thermal/media budget plus 1GbE makes 5K60 unlikely as the default | sender-tested; transport pending | +| M1 Air | Wi-Fi | 2560x1440@60 HEVC | Best chance for stable interaction and text scaling | sender-tested; transport pending | + +## Transfer Types To Build Toward + +### Type A: Full 5K60 Tiled HEVC + +Use for M1 Max plus the best wired path, especially Thunderbolt Bridge. + +- Capture: eventually ScreenCaptureKit or virtual-display IOSurface path. +- Encode: four HEVC VideoToolbox sessions. +- Logical output: `5120x2880 @ 60`. +- Transport: independent tile streams or tile packets with logical frame IDs. +- Receiver rule later: present every vsync; reuse stale tile textures rather than stalling the full frame. + +### Type B: High-Detail Single-Stream HEVC + +Use for wired paths when full 5K tiled is too complex or too heavy. + +- Candidate 1: `4096x2304 @ 60`. +- Candidate 2: `3840x2160 @ 60`. +- Encode is simpler: one HEVC session, one decoder, one texture. +- This is probably the fastest path to a usable wired app experience. + +### Type C: Wireless Balanced HEVC + +Use for Wi-Fi and Tailscale-like paths. + +- Candidate 1: `3200x1800 @ 60`. +- Candidate 2: `2560x1440 @ 60`. +- Add adaptive bitrate before promising fixed 4K/5K wireless. +- Add dirty-region/cursor-separated updates after live capture exists. + +### Type D: Mac-to-Mac Receiver Path + +Use after macOS is installed on the iMac. + +- The sender profile can stay the same. +- Decode choices should be tested separately: VideoToolbox decode on macOS versus Media Foundation / D3D11 decode on Windows. +- Thunderbolt Bridge becomes more attractive in this path because Apple officially supports IP over Thunderbolt between Macs. + +## What To Avoid For Now + +- Do not build Windows 4-tile synthetic composition as the next step. It is a receiver step, and the sender strategy is not fully settled across Mac/connection classes. +- Do not claim AV1 as a solution for M1 sender encoding. Current Apple specs show AV1 decode in newer Macs, while local M1 Max probing shows no AV1 encoder. +- Do not default to ProRes for wireless. ProRes hardware encode is worth a wired-only experiment later, but its bitrate profile is the opposite of Wi-Fi-friendly. +- Do not treat ScreenCaptureKit 5K60 as solved. The current 5K60 capture+encode result is a failure; capture strategy may need virtual-display sizing, dirty regions, or lower logical modes. +- Do not assume lower bitrate means lower latency. The latest quick retest shows lower-bandwidth single-stream HEVC profiles can spend more time encoding than earlier high-bitrate probes, likely because the encoder is working harder to compress. + +## Latest Quick Retest + +Command: + +```bash +DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 RUN_ROOT=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix scripts/mac_transmission_profile_matrix.sh +``` + +Result: + +| Profile | Avg ms | P95 ms | Max ms | Read | +|---|---:|---:|---:|---| +| 2x2 tiled HEVC 5K60, 30Mbps/tile | 12.501 | 13.222 | 123.935 | Still the best full-5K60 sender path; reset spike remains | +| single HEVC 4096x2304@60, 120Mbps | 25.717 | 46.742 | 47.979 | Current run failed 60Hz budget; earlier strong result needs repeat isolation | +| single HEVC 3200x1800@60, 60Mbps | 23.614 | 41.764 | 82.782 | Current run failed 60Hz budget; wireless profile needs different tuning | + +Deadline analysis for the tiled profile shows only 2/300 logical frames over 16.67ms in this 5-second quick run; both were reset/startup frames. + +## Single-Stream Stability Re-Isolation + +After the quick retest, single-stream profiles were re-isolated without running tiled encoding first. + +Command: + +```bash +REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=unset RUN_ROOT=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset scripts/mac_single_stream_stability_matrix.sh +REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=on RUN_ROOT=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on scripts/mac_single_stream_stability_matrix.sh +``` + +Result: + +| Resolution | `prioritize_speed=unset` median p95 | `prioritize_speed=on` median p95 | Read | +|---|---:|---:|---| +| 4096x2304 | 13.050ms | 13.087ms | stable when isolated | +| 3840x2160 | 11.669ms | 11.668ms | stable when isolated | +| 3200x1800 | 11.250ms | 11.218ms | stable when isolated | +| 2560x1440 | 10.636ms | 6.455ms | stable when isolated | + +The earlier slow quick-matrix single-stream results were reproduced when the matrix ran 2x2 tiled 5K60 first and then immediately ran single-stream profiles. A follow-up 4096x2304 single-stream run remained slow even after a 60-second wait. Treat this as a VideoToolbox encoder-service state effect until proven otherwise. + +Practical rule: + +- Do not benchmark single-stream fallbacks immediately after tiled 5K60. +- Run fallback profiles first, or run tiled profiles in a separate process/session after fallbacks. +- In the product, avoid switching from tiled 5K60 to single-stream fallback without an explicit encoder reset/restart strategy. + +## Encoder Service Restart Probe + +The next recovery check restarted the user `VTEncoderXPCService` and reran fallback probes. + +Result: + +| Probe | Avg ms | P95 ms | Read | +|---|---:|---:|---| +| 4096x2304 after `VTEncoderXPCService` restart | 25.928 | 46.532 | did not recover | +| 4096x2304 after 60s wait | 25.692 | 46.544 | did not recover | +| 4096x2304 after 60s wait, `prioritize_speed=unset` | 25.724 | 46.719 | did not recover | +| 3200x1800 after restart, solo | 23.746 | 41.839 | did not recover | +| 2560x1440 after restart | 7.851 | 10.808 | still safe | + +Interpretation: + +- The slow state is not cleared by restarting the user VideoToolbox encoder XPC service alone. +- The effect is probably below that service boundary, such as media-engine or driver state. +- Until a better reset is proven, a product fallback from tiled 5K60 should either restart the sender app in a clean process/session before measuring high-detail single-stream profiles, or fall all the way down to the safer `2560x1440@60` profile. +- Reboot/logout-level recovery was not tested in this repo run. + +## M1 Air Sender Matrix + +Command: + +```bash +DEVICE_PROFILE=m1air PROFILE_SET=air DURATION=30 scripts/mac_transmission_profile_matrix.sh +``` + +Machine: + +```text +Model Identifier: MacBookAir10,1 +Chip: Apple M1 +CPU: 8 cores, 4 performance and 4 efficiency +GPU: 7 cores +Memory: 8 GB +``` + +Result: + +| Profile | Avg ms | P95 ms | Max ms | 16.67ms p95 budget | Read | +|---|---:|---:|---:|---|---| +| single HEVC 2560x1440@60, 25Mbps | 8.145 | 9.296 | 20.146 | pass | Realistic M1 Air default candidate | +| single HEVC 3200x1800@60, 35Mbps | 18.873 | 38.897 | 325.872 | fail | Not stable enough for Air default | +| single HEVC 3840x2160@60, 45Mbps | 18.727 | 54.584 | 233.527 | fail | Wired-only experiment at best, not default | +| 2x2 tiled HEVC 5120x2880@60, 25Mbps/tile | 23.626 | 23.718 | 72.096 | fail | Effective 41.599fps; not worth receiver work on M1 Air yet | + +Deadline analysis for the M1 Air tiled probe shows `1800/1800` logical frames over 16.67ms. That is materially different from the M1 Max tiled result, where the misses were mostly startup/reset frames. + +Interpretation: + +- M1 Air should default to `2560x1440 @ 60` HEVC for now. +- `3200x1800 @ 60` can remain a retest/tuning target, but current p95 and max spikes make it unsuitable as the first Air profile. +- 2x2 tiled 5K60 should continue only as an M1 Max + best-wired path unless a new Air-side strategy changes the encode-only ceiling. + +## Immediate Transport Gate + +The MacBook Pro was updated to commit `a1f629d`, and its currently active path to the Windows iMac was rechecked over Tailscale: + +```text +target=100.86.52.88 +20 packets transmitted, 20 received, 0.0% loss +round-trip min/avg/max/stddev = 9.451/73.839/507.671/107.944 ms +``` + +This confirms reachability, but not display viability. The next real transport gate is still physical: Thunderbolt Bridge or 1GbE plus `scripts/mac_network_matrix.sh` and the Windows-side iperf server. Do not use the current Tailscale jitter to reject M1 Max wired tiled 5K60 or high-detail single-stream profiles. + +A formal current-path matrix on the same Tailscale target then recorded: + +```text +target=100.86.52.88 +100 packets transmitted, 98 received, 2.0% loss +round-trip min/avg/max/stddev = 8.198/61.867/485.532/58.935 ms +``` + +The MBP shell did not have `iperf3` or `tailscale` CLI available, so this matrix could not measure throughput or direct-vs-DERP status. Treat this as a blocker for current-path display decisions, not as evidence against Thunderbolt Bridge or 1GbE. + +## New Benchmark Entry Point + +Use: + +```bash +DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 scripts/mac_transmission_profile_matrix.sh +``` + +Recommended follow-ups: + +```bash +DEVICE_PROFILE=m1max PROFILE_SET=wired DURATION=30 scripts/mac_transmission_profile_matrix.sh +DEVICE_PROFILE=m1max PROFILE_SET=wireless DURATION=30 scripts/mac_transmission_profile_matrix.sh +DEVICE_PROFILE=m1air PROFILE_SET=air DURATION=30 scripts/mac_transmission_profile_matrix.sh +``` + +The script writes a sanitized system profile, VideoToolbox encoder list, per-profile logs, and `summary.csv`. Tiled profiles also get deadline analysis when a logical CSV is produced. diff --git a/docs/15_ENCODER_RESET_STRATEGY.md b/docs/15_ENCODER_RESET_STRATEGY.md new file mode 100644 index 0000000..b69dfb1 --- /dev/null +++ b/docs/15_ENCODER_RESET_STRATEGY.md @@ -0,0 +1,109 @@ +# Encoder Reset / Session Strategy + +Date: 2026-05-15 + +## Problem + +The M1 Max `2x2` tiled HEVC path can keep 5K60 encode-only p95 inside the 16.67 ms frame budget, but it leaves two related risks: + +- Reset frames still produce visible-sized spikes around the session boundary. +- After tiled 5K60 runs, immediate high-detail single-stream fallbacks such as `4096x2304@60` and `3200x1800@60` can remain slow even after a user `VTEncoderXPCService` restart. + +This means tiled 5K60 cannot safely switch down to high-detail single-stream fallback until reset/session behavior is controlled. + +## Reference Findings + +- Apple documents the normal `VTCompressionSession` lifecycle as create, configure, encode, optionally complete pending frames, then invalidate the session when finished. [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/vtcompressionsession-api-collection] +- Apple documents `VTCompressionSessionPrepareToEncodeFrames` as a way for the encoder to allocate resources before the first encode call; iBridge already calls this in `configure(...)`. [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/1428283-vtcompressionsessionpreparetoenc] +- Apple documents parallel encoding configuration as requiring `MoreFramesBeforeStart`, `MoreFramesAfterEnd`, and `SourceFrameCount`. This is not exactly the same as iBridge spatial tiling, but it is directly relevant to per-tile temporal reset segments. [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_recommendedparallelizationlimit] +- `MoreFramesBeforeStart` / `MoreFramesAfterEnd` tell the encoder that separate sessions will be concatenated before/after the current session, helping smooth segment joins and avoid data-rate spikes. [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_moreframesbeforestart] [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/kvtcompressionpropertykey_moreframesafterend] +- `SourceFrameCount` is an encoder hint for the number of source frames when known. [ë‚´ìš© 출처 : https://developer.apple.com/documentation/videotoolbox/compression-properties] +- FFmpeg's VideoToolbox encoder exposes similar `frames_before` and `frames_after` options and calls `VTCompressionSessionPrepareToEncodeFrames` before encoding. Local reference: `reference/FFmpeg/libavcodec/videotoolboxenc.c`. +- OBS's macOS VideoToolbox encoder also prepares the session before use and invalidates/releases on teardown. Local reference: `reference/obs-studio/plugins/mac-videotoolbox/encoder.c`. + +## Implemented Probe Controls + +`apps/primary-macos/Sources/iBridgePrimary/main.swift` now has experiment controls for: + +- `--more-frames-before-start` / `--no-more-frames-before-start` +- `--more-frames-after-end` / `--no-more-frames-after-end` +- `--source-frame-count N` +- `--tile-segment-hints` +- `--tile-reset-stagger-frames N` + +For tiled mode, `--tile-segment-hints` automatically sets per-segment hints: + +- first segment: `MoreFramesBeforeStart=false` +- middle segments: `MoreFramesBeforeStart=true`, `MoreFramesAfterEnd=true` +- final benchmark segment: `MoreFramesAfterEnd=false` +- `SourceFrameCount` equals the segment length unless overridden + +`scripts/mac_encoder_reset_strategy_probe.sh` compares: + +1. baseline simultaneous tile reset +2. segment hints with simultaneous tile reset +3. segment hints with staggered per-tile reset + +## Initial M1 Max Probe + +Run: + +```bash +DURATION=6 RUN_FALLBACK=0 RUN_ROOT=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix scripts/mac_encoder_reset_strategy_probe.sh +``` + +Results: + +| Case | Effective fps | Avg ms | P95 ms | Max ms | >16.67ms | >33.33ms | +|---|---:|---:|---:|---:|---:|---:| +| baseline simultaneous reset | 60.011 | 13.199 | 14.330 | 132.700 | 7/360 | 2/360 | +| segment hints simultaneous reset | 59.995 | 13.362 | 14.158 | 134.008 | 4/360 | 2/360 | +| segment hints staggered reset | 60.016 | 13.300 | 14.243 | 113.596 | 8/360 | 4/360 | + +Interpretation: + +- Segment hints are a positive signal. They reduced logical frames over the 16.67 ms budget in both short probes. +- Staggered reset lowers the worst simultaneous reset spike, but spreads reset misses across multiple logical frames. This is not the default sender strategy yet. +- The current best next sender candidate is `2x2 tiled HEVC 5K60 + reset180 + inflight1 + tile segment hints + simultaneous reset`. + +## Fallback Recovery Status + +Run: + +```bash +DURATION=6 RUN_FALLBACK=1 RUN_ROOT=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe scripts/mac_encoder_reset_strategy_probe.sh +``` + +Post-probe fallback results: + +| Fallback | Avg ms | P95 ms | Max ms | Interpretation | +|---|---:|---:|---:|---| +| `4096x2304@60` | 25.838 | 46.578 | 47.764 | still unsafe after tiled | +| `3200x1800@60` | 23.846 | 42.273 | 84.630 | still unsafe after tiled | +| `2560x1440@60` | 10.345 | 16.866 | 30.266 | borderline in this run, still the safest emergency fallback | + +Because the machine was already in a post-tiled slow state before this probe, treat these fallback numbers as confirmation of the problem rather than a clean A/B comparison. + +## Current Decision + +- Keep high-detail single-stream fallback profiles as valid only when run in isolation or after a known-clean encoder state. +- Do not switch product mode directly from tiled 5K60 to `4096x2304@60` or `3200x1800@60` until a stronger reset boundary is proven. +- Use `2560x1440@60` as the conservative emergency fallback after tiled 5K60. +- Next clean-session test should start from a fresh login or reboot, run segment-hints tiled first, then immediately test 4096/3200 fallback to see whether hints reduce contamination. + +## Clean-Session Gate + +`scripts/mac_clean_session_encoder_probe.sh` is the dedicated gate for this decision. It refuses to run as a valid clean-session test when uptime exceeds `CLEAN_BOOT_MAX_MINUTES` unless `REQUIRE_CLEAN_BOOT=0` is set for a deliberately dirty control run. + +The first current-session dirty control passed high-detail fallback, but the immediate repeat failed: + +| Run | Tiled p95 ms | 4096 fallback p95 ms | 3200 fallback p95 ms | 2560 fallback p95 ms | Interpretation | +|---|---:|---:|---:|---:|---| +| `2026-05-15_1552_dirty_session_encoder_probe` | 13.765 | 14.918 | 11.444 | 6.307 | high-detail fallback survived once | +| `2026-05-15_1553_dirty_session_encoder_probe_repeat` | 14.417 | 46.669 | 42.616 | 16.482 | high-detail fallback failed on repeat | + +Current interpretation: + +- Segment hints still improve tiled reset behavior. +- Segment hints do not yet prove stable product-mode switching from tiled 5K60 to high-detail single-stream fallback. +- Product emergency fallback should remain `2560x1440@60` until a fresh-boot clean-session run and repeat pass both succeed. diff --git a/docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md b/docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md new file mode 100644 index 0000000..6aa0d71 --- /dev/null +++ b/docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md @@ -0,0 +1,232 @@ +# Device And Test Plan + +Date: 2026-05-16 + +Purpose: keep the four-machine test inventory, connection order, and operator +setup instructions in the repository so the MacBook Pro, MacBook Air, and future +Codex Cloud sessions share the same source of truth. + +## Current Device Inventory + +| Role | Device | Memory | GPU / Media note | OS state | Current read | +|---|---|---:|---|---|---| +| Primary A | MacBook Pro 16-inch, M1 Max | 32 GB | M1 Max has stronger encode headroom than M1 Air in current iBridge probes | macOS Tahoe 26 | Preferred Primary for high-detail and tiled 5K experiments. | +| Primary B | MacBook Air, M1 | 8 GB | Current repo measurements show only `2560x1440 @ 60` HEVC passes the p95 encode budget | macOS Tahoe 26 | Use as the conservative/mobile Primary path; do not chase Air 5K60 first. | +| Receiver A | iMac 21.5-inch Retina 4K, 2017 | 8 GB | Radeon Pro 555 | macOS Sequoia via OCLP | Best first receiver because Thunderbolt 3, Ethernet, and macOS receiver path are available. | +| Receiver B | iMac 27-inch Retina 5K, Late 2015 | 8 GB | Radeon R9 M380 | macOS Sequoia via OCLP; Windows boot also available | Target 5K receiver; test macOS path first, keep Windows as receiver comparison path. | + +## Hardware Interpretation + +- The MacBook Pro should be treated as the stronger encoder source. Existing + iBridge results show M1 Max profiles above `2560x1440` can pass when isolated, + while M1 Air currently passes only the `2560x1440 @ 60` sender profile. +- The 2015 27-inch iMac has Gigabit Ethernet and Thunderbolt 2. Gigabit Ethernet + is nominally lower bandwidth than Thunderbolt 2, but it is available and easy + to test. Thunderbolt 2 should remain a later test because the cable/adapter + chain is not currently available. +- The 2017 21.5-inch 4K iMac has Thunderbolt 3, Gigabit Ethernet, and macOS + today. It should be the first wired receiver because it avoids the 2015 iMac's + missing Thunderbolt 2 cable and Windows/macOS boot-state uncertainty. +- Current Tailscale/Wi-Fi data is reachability evidence only. Do not use it to + reject Ethernet or Thunderbolt paths. +- AirPlay Receiver is not visible from the MacBook Pro to the iMacs in the + current OCLP/Sequoia setup. Keep AirPlay as a comparison-only path and proceed + with iBridge over Ethernet/Thunderbolt/Wi-Fi transport. + +## Current Measured Path: MBP To 2017 iMac + +| Path | iMac IP | Result | Read | +|---|---|---|---| +| Direct Ethernet | `169.254.70.114` | ping `0.826/1.518/2.372/0.231 ms`; TCP `939.14 Mbps` to iMac / `937.50 Mbps` reverse; UDP 30/60/120 Mbps 0% loss | Excellent next test path | +| 5GHz Wi-Fi | `192.168.31.249` | ping `3.663/56.773/261.386/70.416 ms`; TCP `86.54 Mbps` to iMac / `68.66 Mbps` reverse; UDP 120 Mbps had `8.202%` loss | Reachable but too jittery for display-profile decisions | + +Current remote state: SSH is repaired on the 2017 iMac, `caffeinate -dimsu` is +running, and `/usr/local/bin/iperf3 -s` is listening on TCP `5201`. + +Scope correction: the 2017 21.5-inch iMac is a 4K receiver target. Use it to +validate Mac-to-Mac receiver behavior up to `3840x2160@60`; reserve +`4096x2304`, 5K, and tiled 5K-style profiles for the 2015 27-inch Retina 5K +iMac. + +## Current Measured Path: MBA To 2015 iMac + +| Path | iMac IP | Result | Read | +|---|---|---|---| +| 5GHz/local Wi-Fi | `192.168.31.187` | ping `3.690/30.495/258.942/44.687 ms`; TCP to receiver `154.09 Mbps`; TCP reverse `129.43 Mbps`; UDP 30/60/120Mbps loss `0/0.333/0.003%` | Enough throughput for conservative 1440p smoke, but too jittery for smooth-display confidence | +| Tailscale local-direct spot check | `100.84.32.31` | `tailscale ping` reached `gabriels-imac27-2015` via `192.168.31.187:41641` | Useful for remote prep once SSH auth is fixed | + +Current remote state: SSH works from MacBook Air to the 2015 iMac as +`oosu@100.84.32.31` using `~/.ssh/ibridge_imac_ed25519`. Local MacBook Air +`iperf3` is now installed after repairing the Homebrew git state. The receiver +has `caffeinate -dimsu` and `iperf3 -s` running. Keep this Wi-Fi path limited +to `2560x1440@60` HEVC-class smoke tests until jitter improves or Ethernet is +connected. + +First visual smoke result: MacBook Air sent `2560x1440@60` HEVC at 25Mbps for +30 seconds over Wi-Fi to the 2015 iMac macOS receiver. Sender encoded +`1800/1800` frames with 0 send failures, but dropped 2 frames from the sender +queue. Receiver logged `1798` frames and two 1-frame missing events. The user +reported visible change on the iMac panel. Treat this as a functional smoke, +not a smooth-display pass. + +First live-capture result: MacBook Air sent its captured display to the 2015 +iMac at `2560x1440@30` HEVC 15Mbps for 10 seconds. Sender encoded `300/300` +frames with 0 send failures and 1 sender queue drop; receiver logged `299` +frames. This proves a mirror-style live display path. It is not yet a true +macOS extended desktop because iBridge still needs a virtual display source on +the MacBook Air. + +Current virtual-display state: the user configured macOS `Virtual 16:9` as an +extended display at `1920x1080`. The MacBook Air live-capture helper now +defaults to capture display index `1`, `1920x1080@30`, HEVC 8Mbps, and receiver +`100.84.32.31`, so it targets that virtual extended display. Static virtual +desktops may emit few ScreenCaptureKit frames; move a cursor/window on the +virtual display to force visible updates. + +Current helper scripts: + +```bash +scripts/start_2015_imac_receiver_macos.sh +scripts/start_mba_to_2015_imac_live_capture.sh +scripts/stop_2015_imac_receiver_macos.sh +``` + +## Ordered Test Matrix + +Run in this exact order unless a physical cable or OS-state blocker changes: + +| Order | Source | Receiver | Connection | Status / blocker | First profile | +|---:|---|---|---|---|---| +| 1 | MacBook Pro M1 Max | iMac 21.5 4K 2017 | Wireless / Tailscale or local Wi-Fi | reachable but current 5GHz Wi-Fi is jittery | `2560x1440@60`, then `3200x1800@60` if useful | +| 2 | MacBook Pro M1 Max | iMac 21.5 4K 2017 | Ethernet | SSH and `iperf3` ready; direct 1GbE measured good | `3840x2160@60` maximum | +| 3 | MacBook Pro M1 Max | iMac 21.5 4K 2017 | Thunderbolt Bridge | needs TB3/USB-C cable and IP setup | `3840x2160@60` maximum | +| 4 | MacBook Pro M1 Max | iMac 27 5K 2015 | Wireless / Tailscale or local Wi-Fi | Windows/macOS receiver state must be known | `3200x1800@60` then `2560x1440@60` | +| 5 | MacBook Pro M1 Max | iMac 27 5K 2015 | Ethernet | needs cable/hub and `iperf3` | `3840x2160@60` then `4096x2304@60` | +| 6 | MacBook Air M1 | iMac 21.5 4K 2017 | Wireless / Tailscale or local Wi-Fi | ready after receiver prep | `2560x1440@60` HEVC | +| 7 | MacBook Air M1 | iMac 21.5 4K 2017 | Ethernet | needs cable/hub; receiver SSH and `iperf3` are ready | `2560x1440@60`; retest `3200x1800@60` only if stable | +| 8 | MacBook Air M1 | iMac 21.5 4K 2017 | Thunderbolt Bridge | needs TB3/USB-C cable and IP setup | `2560x1440@60` | +| 9 | MacBook Air M1 | iMac 27 5K 2015 | Wireless / Tailscale or local Wi-Fi | reachable at `192.168.31.187` / `100.84.32.31`; SSH works as `oosu`; throughput is adequate for low-bandwidth smoke, but jitter is severe | `2560x1440@60` HEVC smoke only | +| 10 | MacBook Air M1 | iMac 27 5K 2015 | Ethernet | needs cable/hub and `iperf3` | `2560x1440@60` | +| 11 | MacBook Pro M1 Max | iMac 27 5K 2015 | Thunderbolt 2 / Thunderbolt Bridge | blocked until TB2 cable/adapter chain exists | `4096x2304@60`; then 2x2 tiled HEVC 5K60 | +| 12 | MacBook Air M1 | iMac 27 5K 2015 | Thunderbolt 2 / Thunderbolt Bridge | blocked until TB2 cable/adapter chain exists | `2560x1440@60`; no Air 5K60 unless sender strategy changes | + +## Operator Setup Instructions + +### Before Every Test + +1. Put the source MacBook on AC power. +2. Put the receiver iMac on AC power and disable sleep for the session. +3. Keep both machines on the same local network when testing Wi-Fi/Ethernet. +4. Record the OS, connection type, IP addresses, and physical cable path in the + run summary before interpreting display quality. +5. Run network measurement before live display measurement. + +### Receiver iMac macOS Setup + +Run on each iMac booted into macOS: + +```bash +sudo systemsetup -setcomputersleep Never +sudo systemsetup -setdisplaysleep Never +sudo pmset -a sleep 0 displaysleep 0 disksleep 0 powernap 0 womp 1 tcpkeepalive 1 +``` + +Then: + +- Install and sign in to Tailscale if remote access is needed. +- Enable System Settings -> General -> Sharing -> Remote Login. +- Install `iperf3` if available through Homebrew, or document that throughput + is blocked until it is installed. +- Keep the receiver app or benchmark server visible in the logged-in desktop + session when testing presentation. + +For the 2017 iMac right now: + +```bash +sudo ssh-keygen -A +sudo /usr/sbin/sshd -t +sudo systemsetup -setremotelogin on +sudo launchctl bootstrap system /System/Library/LaunchDaemons/ssh.plist 2>/dev/null || true +sudo launchctl enable system/com.openssh.sshd +sudo launchctl kickstart -k system/com.openssh.sshd +sudo lsof -nP -iTCP:22 -sTCP:LISTEN +iperf3 -s +``` + +### Receiver iMac Windows Setup + +Run from PowerShell as Administrator when using the 2015 iMac in Windows: + +```powershell +powercfg /change standby-timeout-ac 0 +powercfg /change monitor-timeout-ac 0 +powercfg /change hibernate-timeout-ac 0 +``` + +Then: + +- Install/sign in to Tailscale. +- Confirm OpenSSH Server is installed and running if Codex needs remote shell. +- Authorize the MacBook Pro and MacBook Air SSH keys separately. +- Start `iperf3 -s` for network tests. +- Start the iBridge receiver before expecting port `48320` to listen. + +### Ethernet Setup + +- Connect the MacBook to Ethernet through USB-C/Thunderbolt hub if needed. +- Connect the iMac Ethernet port to the same switch/router, or directly to the + MacBook adapter if doing a direct link. +- Prefer local IP addresses over Tailscale IPs for this test. +- Run `scripts/mac_network_matrix.sh --case 1gbe --receiver-ip `. + +### Thunderbolt Bridge Setup + +- For the 2017 iMac: use a known-good Thunderbolt 3 / USB-C Thunderbolt cable. +- For the 2015 iMac: wait for the Thunderbolt 2 cable/adapter chain. Do not + treat Mini DisplayPort-only cables as valid Thunderbolt data cables. +- On macOS, enable Thunderbolt Bridge in Network settings on both machines. +- Assign DHCP/self-assigned IPs or manual IPs, then run + `scripts/mac_network_matrix.sh --case thunderbolt --receiver-ip `. + +## Luna / BetterDisplay Direction + +Luna Display uses a hardware dongle to make the Primary Mac believe an external +display exists. iBridge should not copy that hardware dependency as the default. +The preferred prototype direction is: + +1. Create a software virtual display on the source Mac. +2. Force useful HiDPI modes without requiring a display dongle. +3. Capture that virtual display with ScreenCaptureKit or `CGDisplayStream`. +4. Encode with VideoToolbox and send to the receiver. +5. Use a USB hub only for networking/power/cable convenience, not as the core + display-presence mechanism. + +BetterDisplay is now tracked as `reference/BetterDisplay` through a Git +submodule on its `opensource` branch. Use it as a reference for display/HiDPI +behavior and historical virtual-screen behavior. Do not copy implementation code +without a separate license and clean-room review. + +## Multi-Machine GitHub Handoff + +- Main branch for current work: `feat/plan-a-5k60-benchmark`. +- MacBook Pro and MacBook Air should both work from GitHub, not from local Codex + caches. +- Before switching machines: commit, push, and update `docs/current-work.md`. +- On the other machine: + +```bash +git clone --recurse-submodules https://github.com/oosuhada/iBridge.git +cd iBridge +git checkout feat/plan-a-5k60-benchmark +git pull --rebase +git submodule update --init --recursive reference/BetterDisplay +``` + +If the repo is already cloned: + +```bash +git fetch origin +git checkout feat/plan-a-5k60-benchmark +git pull --rebase +git submodule update --init --recursive reference/BetterDisplay +``` diff --git a/docs/17_BETTERDISPLAY_AND_2017_4K_RECEIVER.md b/docs/17_BETTERDISPLAY_AND_2017_4K_RECEIVER.md new file mode 100644 index 0000000..f7bfbc8 --- /dev/null +++ b/docs/17_BETTERDISPLAY_AND_2017_4K_RECEIVER.md @@ -0,0 +1,95 @@ +# BetterDisplay And 2017 4K Receiver Check + +Date: 2026-05-17 + +## Current Answer + +BetterDisplay can likely solve the source-Mac virtual display / HiDPI setup +piece quickly, but it does not replace iBridge's network transport and iMac +receiver path. + +Use BetterDisplay as a practical source-display helper: + +1. Create a 16:9 virtual screen on the MacBook. +2. Set a 3840x2160 or useful HiDPI mode. +3. Capture that virtual display with iBridge. +4. Send it to the iMac receiver over the measured 1GbE path. + +Do not treat BetterDisplay installation alone as proof that the 2017 iMac is a +low-latency external monitor. The iMac still needs a receiver app or another +remote-display transport. + +## Source Check + +- BetterDisplay's current public feature list includes virtual screens, + Picture in Picture, local streaming, CLI integration, and headless Mac virtual + screen use. [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/blob/landing/README.md] +- The current public README lists v4.3.3 for macOS Tahoe 26, Sequoia, Sonoma, + and Ventura, and says some features require a Pro license. [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/blob/landing/README.md] +- The `opensource` branch in `reference/BetterDisplay` is BetterDummy OpenSource + Edition, not the full current BetterDisplay v4 app. [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/tree/opensource] +- The CLI can create and control virtual screens when BetterDisplay is installed + and CLI commands are enabled. [ë‚´ìš© 출처 : https://github.com/waydabber/BetterDisplay/discussions/2032] + +## Fork / Customization Read + +`reference/BetterDisplay` is useful enough for a clean-room iBridge +virtual-display helper because it contains: + +- `BetterDummy/Bridging-Header.h`: private `CGVirtualDisplay`, + `CGVirtualDisplayDescriptor`, `CGVirtualDisplayMode`, and + `CGVirtualDisplaySettings` declarations. +- `BetterDummy/Model/Dummy.swift`: compact create/connect/disconnect logic for + `CGVirtualDisplay`. +- `BetterDummy/Support/DisplayManager.swift`: display enumeration and virtual + display detection via CoreDisplay metadata. +- `BetterDummy/Support/AppMenu.swift`: resolution listing and HiDPI mode menu + patterns. + +It is not enough to fork and customize the full current BetterDisplay product, +because the tracked open-source branch is older BetterDummy code and does not +include the modern v4 feature surface, Pro feature implementation, or current +app architecture. For iBridge, that is fine: the required near-term custom work +is virtual display creation and capture integration, not cloning the full +BetterDisplay app. + +## Live 2017 4K iMac Result + +Receiver path tested: + +- Source: MacBook Pro M1 Max +- Receiver: 2017 21.5-inch Retina 4K iMac, macOS 15.7.7 via OCLP +- Network: direct 1GbE link-local, receiver `169.254.70.114` +- Receiver app: `apps/receiver-macos` + +Validation: + +- `swift build --package-path apps/receiver-macos -c release`: passed locally. +- `swift build --package-path apps/primary-macos -c release`: passed locally. +- Remote Intel iMac receiver build: passed on the iMac. +- `1920x1080@60` HEVC live send: 300/300 frames encoded and received, sender + drop/send-failure count 0. +- `3840x2160@60` HEVC live send: 720/720 frames encoded and received, sender + drop/send-failure count 0. + +Important caveat: + +- The user reported the iMac screen visibly changed, but SSH + `screencapture` did not capture the AVSampleBufferDisplayLayer content + reliably. Treat remote screenshots as weak evidence for this receiver path; + runtime receiver logs and visible local observation are stronger. +- The 12-second 4K synthetic run received every frame, but encode callback + latency was high in this run: avg `56.705 ms`, p95 `73.049 ms`, max + `107.609 ms`. This proves live 4K display plumbing, not final smooth 4K60 + interaction. + +## Product Direction + +1. Keep iBridge as the receiver/transport layer. +2. Use BetterDisplay or a small clean-room `CGVirtualDisplay` helper to create + the source Mac's virtual extended desktop. +3. Add a live capture path from that virtual display into `ibridge-primary`. +4. Add sender backpressure/frame dropping for 4K so latency stays bounded when + encode falls behind. +5. Use `2560x1440@60` or `3200x1800@60` as smoother practical profiles while + 4K latency is being tuned. diff --git a/docs/18_ALPHA_RELEASE.md b/docs/18_ALPHA_RELEASE.md new file mode 100644 index 0000000..a67faff --- /dev/null +++ b/docs/18_ALPHA_RELEASE.md @@ -0,0 +1,161 @@ +# iBridge macOS Alpha Release + +Date: 2026-05-17 + +## Scope + +This alpha is an internal Mac-to-Mac release path for testing iBridge as a +software external display: + +- source Mac: BetterDisplay virtual extended display + iBridge sender +- receiver iMac: iBridge Receiver macOS app +- transport: local TCP, default port `48320` + +This is not an App Store, signed Developer ID, or notarized release yet. + +## Build Package + +From the repository root: + +```bash +scripts/package_macos_alpha.sh +``` + +Outputs: + +- `dist/iBridge-0.1.0-alpha/` +- `dist/iBridge-0.1.0-alpha.zip` + +The package includes: + +- `iBridge Studio.app` +- `iBridge Receiver.app` +- `bin/ibridge-primary` +- `Start iBridge Virtual Capture.command` +- helper scripts under `scripts/` +- package-local `README.md` + +## Receiver iMac + +Open `iBridge Receiver.app` on the iMac. The receiver listens on TCP `48320`, +opens as a standard macOS fullscreen window, and hides the debug status overlay. +Use `Command-F` to toggle fullscreen and `Esc` to leave fullscreen. + +If macOS blocks the app because this alpha is ad-hoc signed, open it with +right-click > Open or remove quarantine for local lab testing: + +```bash +xattr -dr com.apple.quarantine "iBridge Receiver.app" +``` + +## Source Mac + +Open `iBridge Studio.app` on the source Mac for the current lab GUI. The app is +organized around display sessions rather than one global sender form. Each +session card has receiver setup fields, sender signal/profile fields, and +independent start/stop controls. The app also installs a menu bar extra so the +main window can be closed while quick actions remain available. + +Current built-in presets: + +- `2015 iMac 5K Quality`: `iMac 27inch 2015`, `5120x2880`, 280Mbps. +- `2015 iMac Smooth`: `iMac 27inch 2015`, `2560x1440`, 80Mbps. +- `2017 iMac 4K Quality`: `iMac 21.5inch 2017`, `4096x2304`, 220Mbps. + +Use `Add Session` to create a second iMac session before running two receivers +at once. This is the intended GUI path for the MacBook Pro plus two-iMac lab. + +If a terminal, browser, or app window is stranded on a virtual display after the +receiver window closes, use `Restore Windows` in the app or menu bar. This +tries to move visible app windows back to the MacBook display area and requires +macOS Accessibility permission for `iBridge Studio`. + +The command helpers below remain useful for debugging and repeatable benchmark +runs. + +1. In BetterDisplay, keep `Virtual 16:9` connected as an extended display. +2. In macOS Displays, keep it as `Extended display`. +3. When BetterDisplay `Virtual 16:9` is set to 4K60, run: + +```bash +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ 4K60.command +``` + +For the safer wired readability profile, run: + +```bash +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ LAN\ High\ Quality.command +``` + +For the safer balanced default, run: + +```bash +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ Virtual\ Capture.command +``` + +Profiles: + +| Profile | Resolution | FPS | Bitrate | Use | +| --- | --- | ---: | ---: | --- | +| `balanced` | `1920x1080` | 60 | 25Mbps | safer default | +| `lan-readable` | `2560x1440` | 30 | 35Mbps | wired text/readability default | +| `lan-60hz` | `2560x1440` | 60 | 45Mbps | experimental motion-first wired mode | +| `lan-sharp` | `3200x1800` | 30 | 50Mbps | experimental sharper wired mode | +| `lan-4k` | `3840x2160` | 60 | 80Mbps | 4K60 wired mode | +| `imac4k-quality` | `4096x2304` | 60 | 220Mbps | current 2017 21.5-inch 4K iMac quality profile | + +All profiles use HEVC Annex-B protocol v0. Auto-selection chooses the largest +non-origin extended display unless `CAPTURE_DISPLAY_INDEX` is provided. + +Input relay is enabled by default. The receiver captures mouse and keyboard +events over the video surface, sends them back over the existing TCP connection, +and the source sender injects them into the captured display with `CGEvent`. +The source Mac may require Accessibility permission for the sender process. + +The wired profiles also enable capture-side backpressure with +`CAPTURE_MAX_IN_FLIGHT_FRAMES=1`, so the sender prefers newer frames over +building a stale encode backlog when the encoder falls behind. + +For the 2017 21.5-inch Retina 4K iMac, the current subjective best profile is +BetterDisplay `Virtual 16:9` set to `2048x1152 HiDPI`, with iBridge +`PROFILE=imac4k-quality`. This matches the receiver panel's `4096x2304` +pixel grid more closely than `3840x2160` and keeps the source UI at a practical +Retina scale. + +Override display selection when needed: + +```bash +CAPTURE_DISPLAY_INDEX=1 RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ Virtual\ Capture.command +``` + +Run a short smoke: + +```bash +DURATION=3 RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ 4K60.command +``` + +From the repository checkout, the current one-command MacBook Pro -> 2017 iMac +wired path is: + +```bash +scripts/start_mbp_to_2017_imac_4k60.sh +``` + +This first deploys the latest Intel receiver binary to the 2017 iMac over SSH, +starts it fullscreen with the status overlay hidden, then starts the local 4K60 +sender. + +If the sender prints `capture_display_count=0`, macOS is not exposing a +ScreenCaptureKit-capturable display to the sender. Reconnect the BetterDisplay +virtual screen, confirm it is an extended display instead of AirPlay mirroring, +and recheck Screen Recording permission. + +## Current Limits + +- Source Mac requires Screen Recording permission. +- Source Mac requires Accessibility permission for input relay. +- 4K virtual capture has been proven, but the current default is 1080p60 + because it is a safer alpha profile. +- 4K60 smoothness is not yet product-grade. +- Receiver app packaging is macOS-only for this alpha. +- The package is ad-hoc signed and not notarized. diff --git a/docs/current-work.md b/docs/current-work.md new file mode 100644 index 0000000..b59ed58 --- /dev/null +++ b/docs/current-work.md @@ -0,0 +1,308 @@ +# Current Work + +Date: 2026-05-16 + +Branch: `feat/plan-a-5k60-benchmark` + +Draft PR: https://github.com/oosuhada/iBridge/pull/1 + +## Current Goal + +Build and measure the macOS Primary -> Windows iMac Receiver path for using a 2015 27-inch iMac Retina 5K as a software external display. + +## Current Status + +- Prompt 00, 01, 02, 06, 05, 07, 03, 04, and 08 have been run with 09 review gates after implementation prompts. +- Windows iMac SSH over Tailscale works at `100.86.52.88`. +- Windows Receiver can run D3D11 fullscreen synthetic benchmarks from the active Windows console session. +- macOS Primary can generate synthetic frames and encode H.264/HEVC via VideoToolbox. +- Protocol v0 has a fixed 80-byte header and parser tests. +- Plan B 5K60 compressed mode was attempted and currently fails practical gates due to H.264 encode failure, HEVC latency, and slow TCP/Tailscale transport. +- Plan C scaled modes have an engineering comparison; `3200x1800 @ 60fps` is the temporary engineering default, but text quality is not validated. +- Current transport results are classified as Tailscale / likely Wi-Fi 2.4GHz / TCP early experiments and are not representative of LAN or Thunderbolt Bridge. +- macOS Primary now separates VideoToolbox output callback timing from TCP socket send timing with a bounded async sender queue. +- Windows Receiver has a new offline Media Foundation compressed file decode/render smoke path, but live TCP compressed decode/render is still pending Windows-side validation. +- MacBook Pro `MacBookPro18,4` / M1 Max has now been tested as a Primary candidate on branch `feat/plan-a-5k60-benchmark`. +- On the MacBook Pro, forcing `com.apple.videotoolbox.videoencoder.ave.hevc` and disabling low-latency rate-control produced the best Plan C encode results so far. +- A local ignored `reference/` workspace has been created for clean-room study of mature capture, encode, transport, decode, and frame-pacing implementations. +- `reference/BetterDisplay` is now an explicit Git submodule on BetterDisplay's `opensource` branch so MacBook Pro, MacBook Air, and Codex Cloud sessions can fetch the same HiDPI/virtual-display reference from GitHub. +- The reference scope has been widened beyond macOS-to-Windows. Mac-to-Mac routes are now explicitly in scope if an older macOS install on the iMac creates a stronger technical path. +- Nested `.git` directories have been removed from the ignored `reference/` clones so VS Code only sees the outer iBridge repository. BetterDisplay is the exception and is intentionally represented as a top-level submodule. +- Reference analysis now points to concrete next spikes: VT property matrix, Annex-B fixture path, bounded receiver pacing, GPU-native decode/render, and a local Mac virtual-display smoke. +- iMac setup prep is documented with a Windows inventory script and a conservative remote-vs-physical-access boundary for Boot Camp/macOS work. +- Primary VideoToolbox encoding has been rechecked with reference-informed controls. Plan B 5K60 still fails before any receiver dependency; 3200x1800 and 3840x2160 are the current strongest encode-only candidates. +- Primary encoding now has source strategy probes for synthetic BGRA, synthetic NV12, static-frame skipping, ScreenCaptureKit capture, 5K45/5K30, and 2x2 tiled HEVC sessions. +- Tiled 5K60 has a stronger encode-only path after deeper investigation: per-tile PTS was corrected, and `2x2 30Mbps/tile reset180 inflight1` sustained 30 seconds at 60.009 effective fps with p95 12.690 ms. Reset-frame max spikes around 100-136 ms remain unresolved, but deadline analysis shows only 18/1800 logical frames exceeded 16.67 ms. +- Direction corrected: before building Windows tiled receiver composition, iBridge should finish sender-side transmission profiles for M1 Max/M1 Air and wired/wireless paths. Windows/macOS receiver decode should be tested later after the iMac has both OS environments available. +- Added a transmission profile matrix and encode-first script. Latest M1 Max quick retest keeps the 2x2 tiled HEVC 5K60 path promising, while current single-stream 4096x2304/3200x1800 retests missed the 60Hz encode budget and need repeat isolation/profile tuning. +- Re-isolated M1 Max single-stream profiles. When run without tiled 5K60 first, 4096x2304, 3840x2160, 3200x1800, and 2560x1440 all passed p95 <=16.67ms across 3/3 repeats. The slow quick-matrix fallback results are now attributed to tiled 5K60 contaminating immediate follow-up single-stream VideoToolbox state. +- Restarting the user `VTEncoderXPCService` did not recover post-tiled 4096x2304/3200x1800 performance. After tiled contamination, 2560x1440 remained inside budget and is the current safest emergency fallback. +- M1 MacBook Air `MacBookAir10,1` sender profile matrix has now been run locally for 30 seconds per case. Only `2560x1440 @ 60` synthetic NV12 HEVC passed the 16.67 ms p95 encode budget; `3200x1800`, `3840x2160`, and 2x2 tiled 5K60 missed the sender-only 60Hz budget. +- MacBook Pro current-path Tailscale ping to the Windows iMac was rechecked from `macbook-pro`: 20/20 received, min/avg/max/stddev `9.451/73.839/507.671/107.944 ms`. This path remains too jittery to choose display profiles; wired Thunderbolt Bridge or 1GbE tests are still the next transport gate. +- MacBook Pro current-path formal network matrix over Tailscale recorded 100-packet ping with 2.0% loss and min/avg/max/stddev `8.198/61.867/485.532/58.935 ms`. MBP currently lacks `iperf3` and Tailscale CLI, so throughput and direct/relay status remain unmeasured on this path. +- Encoder reset/session strategy now has reference-backed probe controls. `--tile-segment-hints` applies VideoToolbox concatenate/source-frame-count hints to per-tile reset segments, and `--tile-reset-stagger-frames` can stagger per-tile resets for comparison. +- Initial M1 Max reset strategy probes favor `2x2 tiled HEVC 5K60 + reset180 + inflight1 + tile segment hints + simultaneous reset`: segment hints reduced logical frames over 16.67 ms in short probes, while staggered reset lowered max spike but spread reset misses across more frames. +- Clean-session fallback gate now has a dedicated script. Current uptime was 2936 minutes, so the valid clean-session run was skipped; dirty current-session controls were mixed, with one pass followed by a repeat failure. This keeps high-detail fallback switching unsafe for product defaults. +- The current four-device lab inventory is documented: M1 Max MacBook Pro 32 GB, M1 MacBook Air 8 GB, 2017 21.5-inch Retina 4K iMac 8 GB / Radeon Pro 555 / macOS, and 2015 27-inch Retina 5K iMac 8 GB / Radeon R9 M380 / macOS + Windows boot. +- The next physical test order is documented in `docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md`: start with MacBook Pro -> 2017 4K iMac over wireless, Ethernet, then Thunderbolt; then MacBook Pro -> 2015 5K iMac wireless/Ethernet; then repeat the same practical paths with MacBook Air; leave 2015 iMac Thunderbolt 2 cases blocked until the TB2 cable/adapter chain is available. +- Current OS state changed: MacBook Pro and MacBook Air are on macOS Tahoe 26; both iMacs are on macOS Sequoia through OCLP. +- AirPlay Receiver is not visible from the MacBook Pro to the iMacs. Keep AirPlay as a comparison-only path and continue iBridge over local network transport. +- MacBook Pro -> 2017 iMac direct Ethernet is now physically connected and measured: MBP `en9` `169.254.6.144` to iMac `169.254.63.68`, `1000baseT `, 100-packet ping min/avg/max/stddev `0.425/0.810/1.379/0.235 ms`. +- The same 2017 iMac over 5GHz Wi-Fi local IP `192.168.31.249` is reachable but jittery: 100-packet ping min/avg/max/stddev `3.706/53.842/409.182/70.703 ms`. +- 2017 iMac `iperf3 -s` is now running after manual Homebrew permission repair. Current direct Ethernet IP is `169.254.70.114`. +- MacBook Pro -> 2017 iMac 1GbE matrix passed: ping `0.826/1.518/2.372/0.231 ms`, TCP to iMac `939.14 Mbps`, TCP reverse `937.50 Mbps`, UDP 30/60/120 Mbps all 0% loss. +- MacBook Pro -> 2017 iMac 5GHz Wi-Fi matrix is much weaker: ping `3.663/56.773/261.386/70.416 ms`, TCP to iMac `86.54 Mbps`, TCP reverse `68.66 Mbps`, UDP 120 Mbps received `103.72 Mbps` with `8.202%` loss. +- 2017 iMac SSH is now repaired: `sudo ssh-keygen -A` created host keys, the MacBook Pro public key is in `authorized_keys`, and SSH works over Tailscale and direct 1GbE. +- 2017 iMac remote prep is active: `caffeinate -dimsu` prevents sleep, and `/usr/local/bin/iperf3 -s` is listening on TCP `5201`. +- Post-repair direct 1GbE TCP spot check reached `937.86 Mbps` received over `169.254.70.114`. +- Scope correction: the 2017 21.5-inch iMac is a 4K receiver target only. Run live receiver work up to `3840x2160@60` on it; reserve `4096x2304`, 5K, and tiled 5K-style profiles for the 2015 27-inch Retina 5K iMac. +- MacBook Air has started the parallel 2015 27-inch Retina 5K iMac Wi-Fi path while MacBook Pro continues 2017 iMac work. Tailscale shows the 2015 iMac as `gabriels-imac27-2015` at `100.84.32.31` with local-direct endpoint `192.168.31.187:41641`. +- MacBook Air -> 2015 iMac 5GHz/local Wi-Fi reachability is confirmed, but the path is jittery: 100-packet ping to `192.168.31.187` had 0% loss with min/avg/max/stddev `3.819/51.446/420.666/88.334 ms`. TCP ports `22` and `5201` are open; `48320` is refused. +- MacBook Air could not complete iperf throughput from this machine yet because local `iperf3` is missing and Homebrew failed on macOS 26.5 / dirty `/opt/homebrew`. SSH to the 2015 iMac is also blocked by missing MacBook Air key authorization, despite the port being open. +- MacBook Air Homebrew was repaired enough to install `iperf3`, and the MacBook Air -> 2015 iMac Wi-Fi throughput matrix now exists. Ping remains jittery at min/avg/max/stddev `3.690/30.495/258.942/44.687 ms`, but throughput is usable for low-bandwidth smoke testing: TCP to receiver `154.09 Mbps`, TCP reverse `129.43 Mbps`, UDP 30Mbps `0%` loss, UDP 60Mbps `0.333%` loss, UDP 120Mbps `0.003%` loss. +- MacBook Air SSH to the 2015 iMac is now fixed with the existing `~/.ssh/ibridge_imac_ed25519` key. The active macOS user is `oosu`, so use `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31`. Remote prep is active: `caffeinate -dimsu` and `iperf3 -s` are running, Wi-Fi is `en1`, and the local IP is `192.168.31.187`. +- MacBook Air -> 2015 iMac macOS receiver visual smoke passed at conservative `2560x1440@60` HEVC over Wi-Fi. Sender encoded 1800/1800 frames over 30s with 0 send failures and p95 encode `9.730 ms`; receiver logged the handshake and `1798` received frames. Two sender queue drops matched two receiver missing-frame events, so this proves the path works but does not prove smooth display quality. +- MacBook Pro -> 2017 4K iMac live macOS receiver plumbing now works over direct 1GbE. The remote Intel iMac builds `apps/receiver-macos`, receives HEVC Annex-B protocol v0 frames, and the user observed the iMac screen changing. +- Live `1920x1080@60` HEVC smoke sent 300/300 frames with sender drop/send failure 0 and receiver logged 300 frames. +- Live `3840x2160@60` HEVC smoke sent 720/720 frames with sender drop/send failure 0 and receiver logged frames through 660 before disconnect. This proves live 4K plumbing, but not final smooth 4K60 because encode callback latency was high in this run. +- Remote SSH `screencapture` did not reliably capture the receiver's AVSampleBufferDisplayLayer/active Space, even when the user could see the iMac screen change. Treat receiver runtime logs plus direct visual observation as stronger evidence than SSH screenshots for this path. +- BetterDisplay current app can likely solve the source-Mac virtual display / HiDPI setup piece, but it does not replace iBridge transport/receiver. `reference/BetterDisplay` is BetterDummy OpenSource Edition on the `opensource` branch; it is enough for CGVirtualDisplay clean-room study, not enough to fork the full current BetterDisplay v4 product. +- MacBook Air -> 2015 iMac live screen-capture smoke also works at `2560x1440@30` HEVC 15Mbps over Wi-Fi. This is a mirror/live-capture path, not yet a true macOS extended desktop. Added helper scripts to start/stop the 2015 iMac receiver and start a long-running MacBook Air live capture session. +- User configured a macOS `Virtual 16:9` extended display at `1920x1080`. `scripts/start_mba_to_2015_imac_live_capture.sh` now defaults to capture display index `1`, `1920x1080@30`, HEVC 8Mbps, and receiver `100.84.32.31`, so the helper path targets the virtual extended display instead of the built-in display. +- BetterDisplay `Virtual 16:9` is now configured as an extended display. macOS reports it as `3840x2160` backing pixels with UI looking like `1920x1080 @ 60Hz`. +- iBridge can capture the BetterDisplay virtual screen and send it to the 2017 iMac receiver. Live `3840x2160@60` capture submitted/encoded `299/600` changed frames with 0 send failures; downscaled `1920x1080@60` submitted/encoded `255/600` changed frames with 0 send failures. + +## Key Results + +- Plan A dynamic 5K60 CPU-filled BGRA upload on iMac: 29.979-36.034fps depending on run; not viable. +- Receiver GPU/static 5K present path: about 61fps; iMac can present 5K60 when full-frame CPU upload is removed. +- Primary 1440p60 H.264/HEVC encode works but initial callback latency is high. +- H.264 5120x2880 @ 60 target produced status `-10279` for every frame in the current VideoToolbox path. +- HEVC 5120x2880 @ 60 target encoded, but 120Mbps TCP to Windows sink took 38.60s for 1s of frames. +- Plan C receiver static scaled-render modes all reached about 60fps. +- MacBook Pro HEVC 3200x1800 @ 60, 120Mbps, forced `ave.hevc`, no low-latency RC: avg encode 16.612 ms, p95 16.777 ms. +- MacBook Pro HEVC 3200x1800 @ 60, 120Mbps, forced `ave.hevc`, no low-latency RC, DataRateLimits: 5s sustained avg 11.583 ms, p95 11.766 ms. +- MacBook Pro HEVC 3840x2160 @ 60, 120Mbps, forced `ave.hevc`, no low-latency RC, DataRateLimits: 5s sustained avg 15.457 ms, p95 15.831 ms. +- MacBook Pro HEVC 4096x2304 @ 60, 120Mbps, forced `ave.hevc`, no low-latency RC, DataRateLimits: 5s sustained avg 17.292 ms, p95 17.231 ms. +- MacBook Pro HEVC 5120x2880 @ 60, 120Mbps, forced `ave.hevc`, no low-latency RC, speed priority: 5s sustained avg 100.617 ms, p95 119.982 ms. +- MacBook Pro synthetic NV12 HEVC 3840x2160 @ 60, forced `ave.hevc`, DataRateLimits: 3s avg 11.557 ms, p95 11.906 ms. +- MacBook Pro synthetic NV12 HEVC 4096x2304 @ 60, forced `ave.hevc`, DataRateLimits: 3s avg 12.898 ms, p95 13.245 ms. +- MacBook Pro -> 2017 iMac live `1920x1080@60` HEVC: frames requested/submitted/encoded `300/300/300`, sender drops `0`, send failures `0`, avg encode `13.325 ms`, p95 encode `19.448 ms`, avg send `0.074 ms`. +- MacBook Pro -> 2017 iMac live `3840x2160@60` HEVC: frames requested/submitted/encoded `720/720/720`, sender drops `0`, send failures `0`, avg encode `56.705 ms`, p95 encode `73.049 ms`, avg send `0.047 ms`. Receiver logged protocol handshake and frame receipt; user-visible screen changed, but remote screenshot was not reliable. +- BetterDisplay virtual-screen live capture to 2017 iMac, `3840x2160@60`: submitted/encoded `299/600`, sender drops `0`, send failures `0`, avg encode `32.346 ms`, p95 encode `64.015 ms`, avg send `0.468 ms`; receiver logged `299` frames. +- BetterDisplay virtual-screen live capture to 2017 iMac, downscaled `1920x1080@60`: submitted/encoded `255/600`, sender drops `0`, send failures `0`, avg encode `13.793 ms`, p95 encode `22.332 ms`, avg send `0.510 ms`; receiver logged `255` frames. +- MacBook Pro ScreenCaptureKit HEVC 3840x2160 @ 60, forced `ave.hevc`, DataRateLimits: 3s avg 16.363 ms, p95 18.412 ms. +- MacBook Pro ScreenCaptureKit HEVC 5120x2880 @ 60, forced `ave.hevc`, DataRateLimits: 3s avg 302.354 ms, p95 360.042 ms. +- MacBook Pro synthetic NV12 HEVC 5120x2880 @ 30, forced `ave.hevc`, DataRateLimits: 3s avg 19.296 ms, p95 19.824 ms. +- MacBook Pro 2x2 tiled-session approximation for 5120x2880 @ 60 using four 2560x1440 NV12 HEVC sessions: per-tile avg 6.496-9.528 ms, p95 10.568-11.254 ms; recomposition is unimplemented. +- MacBook Pro 2x2 tiled HEVC 5120x2880 @ 60, corrected per-tile PTS, 30Mbps/tile, reset every 180 logical frames, max 1 in-flight logical frame: 30s sustained avg 12.100 ms, p95 12.690 ms, effective 60.009 fps, max 135.530 ms on reset frames. +- MacBook Pro transmission profile quick retest, 2x2 tiled HEVC 5120x2880 @ 60, 30Mbps/tile, reset180, inflight1: 5s avg 12.501 ms, p95 13.222 ms, effective 60.040 fps, max 123.935 ms; only 2/300 logical frames exceeded 16.67 ms. +- Same quick retest, single HEVC 4096x2304 @ 60, 120Mbps: avg 25.717 ms, p95 46.742 ms; current session missed the 60Hz encode budget despite earlier stronger runs. +- Same quick retest, single HEVC 3200x1800 @ 60, 60Mbps: avg 23.614 ms, p95 41.764 ms; lower-bandwidth wireless-style profile did not reduce encode latency in this run. +- Re-isolated single-stream stability, `PRIORITIZE_SPEED=unset`, 3 repeats: 4096x2304 median p95 13.050 ms, 3840x2160 11.669 ms, 3200x1800 11.250 ms, 2560x1440 10.636 ms. +- Re-isolated single-stream stability, `PRIORITIZE_SPEED=on`, 3 repeats: 4096x2304 median p95 13.087 ms, 3840x2160 11.668 ms, 3200x1800 11.218 ms, 2560x1440 6.455 ms. +- Post-tiled recovery probe: restarting `VTEncoderXPCService` did not recover 4096x2304; p95 stayed around 46.5 ms immediately and after 60 seconds. 3200x1800 solo also stayed slow at p95 41.839 ms, while 2560x1440 stayed safe at p95 10.808 ms. +- Encoder reset strategy probe, 6s M1 Max tiled 5K60: baseline simultaneous reset avg 13.199 ms, p95 14.330 ms, max 132.700 ms, 7/360 logical frames >16.67 ms. Segment hints simultaneous reset avg 13.362 ms, p95 14.158 ms, max 134.008 ms, 4/360 logical frames >16.67 ms. Segment hints staggered reset avg 13.300 ms, p95 14.243 ms, max 113.596 ms, 8/360 logical frames >16.67 ms and 4/360 >33.33 ms. +- Post-reset-strategy fallback probe still showed the post-tiled slow state: 4096x2304 p95 46.578 ms, 3200x1800 p95 42.273 ms, 2560x1440 p95 16.866 ms. Because the machine was already in a slow state, this confirms the risk but is not a clean recovery A/B. +- Clean-session guard run skipped because uptime was 2936 minutes. Dirty control run passed once (`4096x2304` p95 14.918 ms, `3200x1800` p95 11.444 ms), but immediate repeat failed (`4096x2304` p95 46.669 ms, `3200x1800` p95 42.616 ms). Treat high-detail fallback after tiled 5K60 as unstable. +- M1 Air HEVC 2560x1440 @ 60, 25Mbps: avg 8.145 ms, p95 9.296 ms, max 20.146 ms; passes p95 encode budget and is the realistic Air default. +- M1 Air HEVC 3200x1800 @ 60, 35Mbps: avg 18.873 ms, p95 38.897 ms, max 325.872 ms; fails 60Hz encode budget. +- M1 Air HEVC 3840x2160 @ 60, 45Mbps: avg 18.727 ms, p95 54.584 ms, max 233.527 ms; fails 60Hz encode budget. +- M1 Air 2x2 tiled HEVC 5120x2880 @ 60, 25Mbps/tile, reset180, inflight1: effective 41.599 fps, avg 23.626 ms, p95 23.718 ms, max 72.096 ms; all 1800 logical frames exceeded 16.67 ms, so this is not worth continuing on M1 Air without a major new strategy. +- MacBook Pro display-sized synthetic sources for built-in XDR, external portrait display, Sidecar iPad, and HDMI FHD display all encoded successfully with forced `ave.hevc`. +- MacBook Pro to iMac Tailscale path is reachable, but ping is jittery: 20-packet ICMP min/avg/max/stddev 14.484/108.629/423.525/96.505 ms. +- MacBook Pro to iMac Tailscale recheck remains jittery: 20-packet ICMP min/avg/max/stddev `9.451/73.839/507.671/107.944 ms`. +- MacBook Pro to iMac formal Tailscale network matrix: 100-packet ICMP `98/100` received, 2.0% loss, min/avg/max/stddev `8.198/61.867/485.532/58.935 ms`; not suitable for display transport decisions. +- MacBook Air to 2015 iMac local Wi-Fi/Tailscale-direct spot check: `tailscale ping` reached `gabriels-imac27-2015` via `192.168.31.187:41641`; 100-packet local ping min/avg/max/stddev `3.819/51.446/420.666/88.334 ms`. +- MacBook Air to 2015 iMac Wi-Fi iperf matrix: TCP to receiver `154.09 Mbps`, TCP reverse `129.43 Mbps`; UDP 30/60/120Mbps received `29.99/59.78/119.95 Mbps` with `0/0.333/0.003%` loss. ICMP latency spikes remain too high for smooth-display confidence. +- MacBook Air to 2015 iMac macOS receiver smoke, `2560x1440@60` HEVC 25Mbps TCP over Wi-Fi for 30s: sender `1800/1800` encoded, 0 send failures, 2 sender queue drops, p95 encode `9.730 ms`, receiver `1798` frames with two 1-frame missing events. User visually confirmed the iMac panel changed during the smoke. +- MacBook Air to 2015 iMac live capture smoke, `2560x1440@30` HEVC 15Mbps TCP over Wi-Fi for 10s: sender `300/300` encoded, 0 send failures, 1 sender queue drop, receiver `299` frames. A 3s script validation run then passed with `90/90` encoded and 0 drops. +- MacBook Air virtual extended display smoke, `Virtual 16:9` at `1920x1080@30` HEVC 8Mbps over Tailscale: sender `90/28/28` over 3s, 0 failed frames, 0 send failures, 0 queue drops. Low submitted-frame count is expected for a mostly static extended display. +- macOS internal alpha packaging now exists. `scripts/package_macos_alpha.sh` builds the sender and receiver, creates an ad-hoc signed `iBridge Receiver.app`, includes a package-local virtual-display sender launcher, and emits `dist/iBridge-0.1.0-alpha.zip`. +- Current package verification passed script syntax, Swift release builds, zip generation, byte-identical sender copy, and app signature verification. +- Current live sender smoke from this MacBook Pro is blocked because the active external display state changed to AirPlay `Gabrielì˜ iMac` 1080p and `ibridge-primary --list-displays` returned `capture_display_count=0`; reconnect BetterDisplay `Virtual 16:9` as an extended display before retrying the packaged sender. +- Wired high-quality alpha profile now exists as `PROFILE=lan-readable` and `Start iBridge LAN High Quality.command`: `2560x1440@30`, HEVC, 35Mbps, sender queue 12, capture queue 6. This is the current readability-first LAN default. +- Direct 1GbE synthetic receiver smoke confirms transport stability for higher-detail profiles: `2560x1440@30 35Mbps` encoded `150/150`, sender drops `0`, send failures `0`, avg send `0.060 ms`, p95 send `0.098 ms`; p95 encode was `25.772 ms`. +- Screen capture now has `--capture-max-in-flight-frames`, and wired profiles set it to `1` to prefer newer frames over a stale encode backlog when high-detail capture falls behind. +- Packaged LAN high-quality live virtual capture now works again after ScreenCaptureKit exposed `capture_display_count=2`; auto-selected `display_index=1` and sent `2560x1440@30 35Mbps` for a 3s smoke with `46/46` encoded, 0 send failures, 0 sender drops, p95 encode `17.101 ms`, and p95 send `0.877 ms`. +- 4K60 is now the wired high-detail target: `PROFILE=lan-4k` maps to `3840x2160@60`, HEVC, 80Mbps. A direct 1GbE virtual-display motion comparison showed backpressure `1` reduced p95 encode latency from `52.175 ms` to `19.090 ms` versus no capture backpressure, with 0 send failures in both runs. +- Latest 2017 iMac receiver is deployed outside the dirty remote repo via `scripts/start_2017_imac_receiver_macos.sh`, which builds the macOS receiver for `x86_64`, copies it to `~/ibridge-remote/latest`, starts it fullscreen with `--hide-status`, and verifies TCP `48320`. +- Current one-command MBP -> 2017 iMac 4K60 path is `scripts/start_mbp_to_2017_imac_4k60.sh`. +- Alpha package now builds `iBridge Receiver.app` as a universal macOS binary (`x86_64` + `arm64`) so it can run on Intel iMac receivers. +- Current immediate 4K60 probe confirms the 2017 iMac receiver is connectable now. BetterDisplay `Virtual 16:9` is physical `3840x2160@60` with HiDPI UI `1920x1080`; ScreenCaptureKit lists it as `1920x1080`, and iBridge requests `3840x2160@60` encode for the stream. +- Receiver UI/input MVP is now implemented. The macOS receiver uses a standard resizable/fullscreen window instead of a borderless-only window, supports `Command-F` fullscreen toggle and `Esc` fullscreen exit, and captures pointer/key events over the receiver surface. The primary sender listens for those events on the existing TCP connection and injects them into the captured display with `CGEvent`; source-side Accessibility permission is required for real input relay. +- Latest 2017 iMac deployment/smoke after the input MVP passed: receiver restarted on TCP `48320`, `DURATION=3 scripts/start_mbp_to_2017_imac_4k60.sh` connected with `input_relay=on`, encoded `23/180` changed frames with 0 send failures, and receiver logged `23` frames. Physical click/key verification on the iMac is still pending. +- Input relay debug found the first hard blocker: current source-side `ibridge-primary` prints `input_accessibility_trusted=false`, so macOS is not allowing that exact CLI binary to inject `CGEvent` input even if Codex/Terminal-looking entries appear in Accessibility settings. Finder has been opened to `/Users/gabriel/Development/iBridge/apps/primary-macos/.build/release/ibridge-primary`; add that exact binary to Privacy & Security -> Accessibility, then restart the sender. Receiver input logging and source input logging are now added to distinguish receiver event capture, TCP input send, and source input receipt. +- After adding Accessibility permission for `ibridge-primary`, the source sender now reports `input_accessibility_trusted=true`. Latest self-test on the 2017 iMac confirms the input relay pipeline works end to end with synthesized iMac-local events: receiver logged `receiver_input_event` and `input_sent`, while the source logged `input_event_received` for both key and pointer events. The remaining manual issue is operator path/position: moving the MacBook cursor into the source Mac's left-side `Virtual 16:9` is not the same as moving the cursor onto the physical iMac receiver. Manual testing must use Universal Control / Link Keyboard and Mouse to move onto the actual 2017 iMac screen, then interact with the receiver window. +- Current best subjective 2017 iMac profile from manual testing: BetterDisplay `Virtual 16:9` at `2048x1152 HiDPI`, iBridge stream `4096x2304@60`, `BITRATE_MBPS=220`. This is now captured as `PROFILE=imac4k-quality` in `scripts/start_ibridge_virtual_capture.sh`. It looks better than `2560x1440@60 100Mbps` and better than the earlier `3840x2160@60 200Mbps + 2560x1440 HiDPI` candidate, though still below native iMac quality because the path includes virtual display rendering, ScreenCaptureKit capture, HEVC 4:2:0 compression, and receiver scaling. +- Mouse smoothness remains below native/AirPlay-like feel. The first fix is to stop embedding the source Mac cursor inside the captured video: `scripts/start_ibridge_virtual_capture.sh` now defaults to `CAPTURE_SHOW_CURSOR=0` and passes `--hide-captured-cursor`, so the delayed video cursor is removed and the local iMac cursor / receiver input path can feel more immediate. +- Current 2017 iMac pointer-transition issue: moving from the MacBook Pro trackpad into the iMac through Universal Control feels like there is a gap between displays, and the iMac-attached mouse shows a similar delayed boundary feel. Receiver input now treats fullscreen pointer capture as the whole `NSScreen` instead of the narrower `NSWindow` frame and adds a 32pt edge tolerance/clamp before normalizing pointer coordinates. Retest with `PROFILE=imac4k-quality` after redeploying the receiver. +- The MacBook Pro sender now prints ScreenCaptureKit display names and `scripts/start_ibridge_virtual_capture.sh` supports `CAPTURE_DISPLAY_NAME`. The current 2017 virtual display is visible as `iMac 21.5inch 2017`; after creating a second BetterDisplay virtual display named `iMac 27inch 2015`, use `CAPTURE_DISPLAY_NAME="iMac 27inch 2015"` to avoid brittle display-index selection. +- A MacBook Pro -> 2015 iMac wrapper now exists at `scripts/start_mbp_to_2015_imac.sh`. It defaults to SSH key `$HOME/.ssh/id_ed25519`, receiver `100.84.32.31`, capture display name `iMac 27inch 2015`, and conservative `2560x1440@60` / `80Mbps` for first smoke tests. Override `RECEIVER_IP` after direct Ethernet exposes a 2015 iMac link-local address. +- MacBook Pro -> 2015 27-inch iMac direct Ethernet is now physically connected and measured. The 2015 iMac Ethernet interface is `en0` at `169.254.99.112`; Wi-Fi remains `en1` at `192.168.31.187`. Direct 1GbE ping to `169.254.99.112` had 0% loss with min/avg/max/stddev `0.711/2.766/4.364/1.444 ms`, and `iperf3` reached about `929.45 Mbps` sent / `927.20 Mbps` received. +- MacBook Pro -> 2015 iMac receiver path is working over direct 1GbE with virtual display name `iMac 27inch 2015`. `2560x1440@60` HEVC at `80Mbps` sent 51 changed frames over 30s with 0 failed frames, 0 sender drops, 0 send failures, p95 encode `16.418 ms`, and receiver total `51` frames. `3840x2160@60` at `160Mbps` and `4096x2304@60` at `220Mbps` connected and displayed frames, but p95 encode was `26.854 ms` and `40.306 ms` respectively, so they are not smooth 60Hz candidates yet. +- The MacBook Pro-side GUI controller now builds as `iBridge Studio.app`. The app has separate Sender, Receiver, and Logs tabs, a menu bar extra that survives closing the main window, dropdown presets for signal/bitrate/duration, generated app icons, and a `Restore Windows` action for pulling windows stranded on virtual displays back to the MacBook display area. It still requires macOS Accessibility permission for the restore action and source-side input injection. + +## Files Likely Relevant Next + +- `apps/primary-macos/Sources/iBridgePrimary/main.swift` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/plans/network_matrix.md` +- `scripts/mac_network_matrix.sh` +- `scripts/windows_network_matrix.ps1` +- `scripts/mac_plan_c_encode_matrix.sh` +- `scripts/mac_vt_property_matrix.sh` +- `scripts/mac_encode_strategy_matrix.sh` +- `benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md` +- `benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/summary.md` +- `benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md` +- `docs/13_TILED_5K60_STRATEGY.md` +- `docs/14_TRANSMISSION_PROFILE_MATRIX.md` +- `docs/15_ENCODER_RESET_STRATEGY.md` +- `scripts/mac_encoder_reset_strategy_probe.sh` +- `scripts/mac_clean_session_encoder_probe.sh` +- `scripts/mac_transmission_profile_matrix.sh` +- `scripts/mac_single_stream_stability_matrix.sh` +- `benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/ping_20_imac_tailscale.txt` +- `benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ping_100.txt` +- `benchmarks/runs/2026-05-16_2350_mbp_to_2017_imac_lan_wifi/summary.md` +- `benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf/summary.md` +- `benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/summary.md` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/summary.md` +- `benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/summary.md` +- `scripts/start_2015_imac_receiver_macos.sh` +- `scripts/start_mba_to_2015_imac_live_capture.sh` +- `scripts/stop_2015_imac_receiver_macos.sh` +- `benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/aggregate.md` +- `benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/aggregate.md` +- `benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/` +- `benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/` +- `benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/` +- `benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/` +- `benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/` +- `benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/` +- `scripts/analyze_tiled_deadline.py` +- `benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/summary.md` +- `benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.md` +- `apps/shared-protocol/protocol_v0.py` +- `specs/protocol_v0.md` +- `benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/summary.md` +- `benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/mode_comparison.md` +- `benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary.md` +- `benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary.md` +- `logs/review_gate.md` +- `logs/worklog.md` +- `reference/README.md` +- `docs/11_REFERENCE_TECH_ANALYSIS.md` +- `docs/12_IMAC_SETUP_PREP.md` +- `docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md` +- `.gitmodules` +- `reference/BetterDisplay` +- `scripts/windows_imac_setup_inventory.ps1` + +## Commands Run + +- `swift build --package-path apps/primary-macos -c release` +- `python3 apps/shared-protocol/test_protocol_v0.py` +- `bash -n scripts/mac_encode_strategy_matrix.sh` +- `DURATION=3 scripts/mac_encode_strategy_matrix.sh` +- `DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 RUN_ROOT=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix scripts/mac_transmission_profile_matrix.sh` +- `DEVICE_PROFILE=m1air PROFILE_SET=air DURATION=30 scripts/mac_transmission_profile_matrix.sh` +- `ssh macbook-pro 'cd ~/development/iBridge && git pull --rebase'` +- `ssh macbook-pro 'ping -c 20 100.86.52.88'` +- `ssh macbook-pro 'cd ~/development/iBridge && DURATION=10 RUN_ROOT=benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix scripts/mac_network_matrix.sh --case tailscale --receiver-ip 100.86.52.88 --tailscale-name 100.86.52.88'` +- `REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=unset RUN_ROOT=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset scripts/mac_single_stream_stability_matrix.sh` +- `REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=on RUN_ROOT=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on scripts/mac_single_stream_stability_matrix.sh` +- `pkill -x VTEncoderXPCService` followed by 4096x2304, 3200x1800, and 2560x1440 fallback probes. +- `bash -n scripts/mac_encoder_reset_strategy_probe.sh` +- `DURATION=6 RUN_FALLBACK=1 RUN_ROOT=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe scripts/mac_encoder_reset_strategy_probe.sh` +- `DURATION=6 RUN_FALLBACK=0 RUN_ROOT=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix scripts/mac_encoder_reset_strategy_probe.sh` +- `RUN_ROOT=benchmarks/runs/2026-05-15_1550_clean_session_probe_guard scripts/mac_clean_session_encoder_probe.sh` +- `DURATION=6 FALLBACK_DURATION=5 REQUIRE_CLEAN_BOOT=0 RUN_ROOT=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe scripts/mac_clean_session_encoder_probe.sh` +- `DURATION=10 FALLBACK_DURATION=5 REQUIRE_CLEAN_BOOT=0 RUN_ROOT=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat scripts/mac_clean_session_encoder_probe.sh` +- Windows MSVC `cl` build for `ibridge-receiver.exe` +- Windows iMac Task Scheduler D3D11 fullscreen benchmark runs +- `scripts/mac_power_probe.sh` +- `git pull --rebase --autostash` +- `git submodule add -f -b opensource https://github.com/waydabber/BetterDisplay.git reference/BetterDisplay` +- `ping -c 100 -i 0.2 169.254.63.68` +- `ping -c 100 -i 0.2 192.168.31.249` +- `nc -vz -G 2 169.254.63.68 22` +- `nc -vz -G 2 192.168.31.249 22` +- `nc -vz -G 2 169.254.63.68 5201` +- `nc -vz -G 2 192.168.31.249 5201` +- `brew install iperf3` +- `RUN_ROOT=benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf DURATION=20 scripts/mac_network_matrix.sh --case 1gbe-2017-imac-retry --receiver-ip 169.254.70.114` +- `RUN_ROOT=benchmarks/runs/2026-05-17_0025_mbp_to_2017_imac_iperf DURATION=10 scripts/mac_network_matrix.sh --case wifi5-2017-imac --receiver-ip 192.168.31.249` +- `ssh gabrieljang@100.89.104.119 'hostname; whoami; sw_vers; command -v iperf3 || true; pgrep -fl iperf3 || true'` +- `ssh gabrieljang@100.89.104.119 'nohup caffeinate -dimsu > ~/ibridge-remote/caffeinate.log 2>&1 &'` +- `ssh gabrieljang@100.89.104.119 'nohup /usr/local/bin/iperf3 -s > ~/ibridge-remote/iperf3-server.log 2>&1 &'` +- `iperf3 -c 169.254.70.114 -t 5 --json` +- `git pull --ff-only` +- `ping -c 20 -i 0.2 100.84.32.31` +- `tailscale ping --c 5 100.84.32.31` +- `ping -c 20 -i 0.2 192.168.31.187` +- `RUN_ROOT=benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5 DURATION=10 scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31` +- `brew install iperf3` (failed; local Homebrew issue) +- `cd /opt/homebrew && git fetch --depth=1 origin master && git reset --hard origin/master` +- `brew update` +- `brew install iperf3` +- `DURATION=20 RUN_ROOT=benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31` +- `swift build --package-path apps/primary-macos -c release` +- `swift build --package-path apps/receiver-macos -c release` +- `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'cd ~/development && git clone https://github.com/oosuhada/iBridge.git ... && swift build --package-path apps/receiver-macos -c release'` +- `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'nohup ~/development/iBridge/apps/receiver-macos/.build/release/ibridge-receiver-macos --port 48320 --fullscreen ... &'` +- `apps/primary-macos/.build/release/ibridge-primary --synthetic --source synthetic-nv12 --resolution 2560x1440 --fps 60 --duration 30 --codec hevc --bitrate-mbps 25 --data-rate-limit-mbps 25 --disable-low-latency-rate-control --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc --disable-frame-reordering --disable-open-gop --payload-format annex-b --send-host 192.168.31.187 --send-port 48320` +- `apps/primary-macos/.build/release/ibridge-primary --screen-capture --source screen-capture --capture-display-index 0 --resolution 2560x1440 --fps 30 --duration 10 --codec hevc --bitrate-mbps 15 --send-host 192.168.31.187 --send-port 48320` +- `DURATION=3 scripts/start_mba_to_2015_imac_live_capture.sh` + +## Known Issues + +- Plan B 5K60 compressed encode is still not viable on the current MBP Primary path. +- Tiled 5K60 encode-only p95 is now promising, but reset-frame spikes around 100-133 ms would likely be visible unless the receiver hides, drops, or staggers them. +- Single-stream fallback results are stable when isolated, but become pessimistic when run immediately after tiled 5K60. Benchmark and product profile switching should not run tiled first and then immediately judge single-stream fallback performance. +- `VTEncoderXPCService` restart alone does not clear the post-tiled slow state for 4096x2304/3200x1800. Treat 2560x1440 as the current safest post-tiled emergency fallback until a stronger reset strategy is proven. +- VideoToolbox segment hints improve tiled reset deadline counts but do not yet prove recovery from post-tiled high-detail fallback contamination. A clean-session or reboot-start A/B is still required. +- Dirty current-session clean-gate controls are mixed: one high-detail fallback pass followed by a repeat failure. Do not promote 4096x2304/3200x1800 fallback switching until a fresh-boot run and repeat both pass. +- M1 Air should not default above `2560x1440 @ 60` based on current encode-only evidence. +- M1 Air tiled 5K60 is substantially below target in the current probe; do not spend receiver implementation time on Air-specific tiled 5K60 unless a new sender strategy changes this signal. +- The 2017 21.5-inch iMac should be used before the 2015 27-inch iMac for wired Mac-to-Mac receiver prep because it already boots macOS and has Thunderbolt 3; the 2015 iMac Thunderbolt 2 cases remain blocked until a real Thunderbolt 2 data cable/adapter chain is available. +- BetterDisplay is a submodule, so clones on the MacBook Air must run `git submodule update --init --recursive reference/BetterDisplay`. +- BetterDisplay installation alone should not be described as a complete iMac external-display solution; it is a source-side virtual display / HiDPI helper unless paired with iBridge or another transport/receiver. +- The current `reference/BetterDisplay` submodule is not the full modern BetterDisplay v4 codebase. Use it for `CGVirtualDisplay` patterns, and use `reference/SimpleDisplay` / `reference/FreeDisplay` as additional virtual-display references. +- Compressed decode/render on Windows is not implemented. +- UDP frame transport is specified but not implemented. +- ScreenCaptureKit capture is implemented as a benchmark source, but not yet connected to live receiver transport/decode/render. +- Text-quality screenshots are pending. +- Power cable/drain-rate tests require physical cable changes. +- LAN/Thunderbolt Bridge throughput tests require physical cable changes and `iperf3` on both machines. +- The current MBP shell did not expose `tailscale` CLI for direct/relay status capture. +- MBP and the 2017 iMac now have `iperf3`; remote SSH non-login shells on the iMac need `/usr/local/bin/iperf3` because Homebrew is not in `PATH`. +- Current 5GHz Wi-Fi to the 2017 iMac has severe jitter and should not be used to select high-detail display profiles. +- Current 5GHz/local Wi-Fi from MacBook Air to the 2015 iMac has enough throughput for low-bandwidth smoke testing, but ICMP latency spikes remain severe. Use only `2560x1440@60` HEVC-class experiments on this path; do not use it to validate smooth 5K/high-detail behavior. +- MacBook Air -> 2015 iMac Wi-Fi receiver smoke had 2 drops/missing frames in 30 seconds. Treat it as functional reachability/visual proof, not a smooth-display pass. +- Current MacBook Air -> 2015 iMac path is mirror/live-capture only. True extended desktop still needs a virtual display source on the MacBook Air, then ScreenCaptureKit can capture that virtual display. +- MacBook Air SSH auth to the 2015 iMac works for user `oosu`; prior `gabrieljang`/`gabriel` attempts failed because those were not the active account for this receiver. +- MacBook Air local Homebrew cannot currently install `iperf3`; do not reset `/opt/homebrew` without user approval. +- Windows compressed file decode/render code needs MSVC build/run validation on the iMac. +- MacBook Pro SSH auth to Windows iMac is blocked; port 22 is open but the MBP key is not accepted. +- Forced encoder ID plus low-latency rate-control currently fails `VTCompressionSessionCreate` with `-12902`; forced `ave.hevc` works when low-latency rate-control is disabled. +- `prompts/10_PACKAGING_AND_RELEASE.md` is blocked until at least one end-to-end display mode works. + +## Next Steps + +1. Use M1 Air `2560x1440 @ 60` HEVC as the realistic default candidate; only retest `3200x1800 @ 60` after profile tuning or thermal isolation. +2. Continue MacBook Pro -> 2017 4K iMac over 1GbE as the primary receiver path; treat current 5GHz Wi-Fi as a degraded comparison path. +3. Add sender backpressure/frame dropping for live 4K so encode latency stays bounded when VideoToolbox falls behind. +4. Add explicit capture display selection by display name/ID for `Virtual 16:9`; current tests used `--capture-display-index 0`, which worked but is brittle across display order changes. +5. Keep `3840x2160`, `3200x1800`, and `2560x1440` as the 2017 iMac receiver profiles; keep `4096x2304` as a sender-only or 2015 5K iMac candidate. +6. Keep 2x2 tiled HEVC 5K60 as the top full-resolution M1 Max + best-wired candidate for the 2015 27-inch Retina 5K iMac only; solve/reset-hide the reset spikes before calling it display-smooth. +7. For immediate extended-display-style use, keep `Virtual 16:9` set to `1920x1080`, run `scripts/start_2015_imac_receiver_macos.sh`, move windows onto `Virtual 16:9`, then run `scripts/start_mba_to_2015_imac_live_capture.sh`; stop with `scripts/stop_2015_imac_receiver_macos.sh`. +8. After a reboot/login, run `scripts/mac_clean_session_encoder_probe.sh` within 15 minutes. If both the first clean run and an immediate repeat pass 4096x2304/3200x1800 p95 <=16.67 ms, high-detail fallback switching can be reconsidered; otherwise keep product fallback limited to 2560x1440. +9. Test receiver decode separately on iMac Windows and iMac macOS: Media Foundation/D3D11 versus VideoToolbox/Metal. +10. Only after sender profiles and OS-specific decode candidates are settled, build tiled protocol metadata and receiver recomposition. +11. Implement dirty-region/cursor-separate logic after a live capture path exists, because static skipping alone only proves the encoder-side principle. +12. Capture screenshots and text-quality scoring after compressed decode/render works. diff --git a/logs/decisions.md b/logs/decisions.md index eead923..64e83c3 100644 --- a/logs/decisions.md +++ b/logs/decisions.md @@ -1,3 +1,35 @@ # Decisions ADR summaries. + +## 2026-05-15 12:54 — Encode-first profile matrix before receiver recomposition + +Decision: +- Do not build Windows receiver synthetic tiled recomposition as the immediate next step. +- First classify sender-side profiles by source Mac and connection class: M1 Max/M1 Air, wired/wireless, full 5K tiled versus single-stream fallbacks. +- Test receiver decode later on the 2015 iMac in both Windows and macOS environments after macOS is installed. + +Reason: +- The commercial shape of iBridge needs versatile sender/connection profiles, not a single receiver-specific prototype. +- Current evidence says M1 Max 2x2 tiled HEVC is promising for full-resolution wired sender work, while Air and wireless profiles are still unproven. + +## 2026-05-15 13:40 — Do not mix tiled-first benchmarks with fallback profile selection + +Decision: +- Run single-stream fallback profile benchmarks before tiled 5K60, or in a separate clean session. +- Treat tiled-first single-stream follow-up results as pessimistic until a safe VideoToolbox reset strategy exists. + +Reason: +- Isolated 4096x2304, 3840x2160, 3200x1800, and 2560x1440 HEVC profiles all passed p95 <=16.67 ms across 3/3 repeats. +- Running 2x2 tiled 5K60 first reproduced slow immediate single-stream results, and 4096x2304 remained slow after a 60-second wait. + +## 2026-05-15 13:58 — Emergency fallback after tiled 5K60 is 2560x1440 until stronger reset is proven + +Decision: +- Do not assume `VTEncoderXPCService` restart is enough to recover high-detail single-stream fallback after tiled 5K60. +- If tiled 5K60 has been active and the app must downshift immediately, treat `2560x1440@60` as the current safe emergency fallback. + +Reason: +- Restarting user `VTEncoderXPCService` did not recover 4096x2304 p95; it stayed around 46.5 ms. +- 3200x1800 also stayed slow after the post-tiled state. +- 2560x1440 remained inside budget at p95 10.808 ms. diff --git a/logs/experiments.md b/logs/experiments.md index 74c7cb9..9a39fc2 100644 --- a/logs/experiments.md +++ b/logs/experiments.md @@ -1,3 +1,1063 @@ # Experiments Summaries of benchmark runs. + +## 2026-05-17 03:40 — BetterDisplay virtual screen live capture + +Prompt: user configured BetterDisplay virtual screen and asked to test it + +Summary: +- Confirmed macOS sees `Virtual 16:9` as an extended display with `3840x2160` + backing pixels and UI looking like `1920x1080 @ 60Hz`. +- Confirmed `screencapture -D 2` captures the virtual screen at `3840x2160`. +- Confirmed iBridge ScreenCaptureKit path can capture the virtual screen and + send it to the 2017 iMac macOS receiver over direct 1GbE. + +Measured results: + +| Capture/output mode | Frames submitted | Frames encoded | Sender drops | Send failures | Avg encode ms | P95 encode ms | Receiver result | +|---|---:|---:|---:|---:|---:|---:|---| +| `3840x2160@60` | 299/600 | 299 | 0 | 0 | 32.346 | 64.015 | receiver logged 299 frames | +| `1920x1080@60` downscale | 255/600 | 255 | 0 | 0 | 13.793 | 22.332 | receiver logged 255 frames | + +Artifacts: +- `benchmarks/runs/2026-05-17_virtual_screen_capture_probe/` +- `benchmarks/runs/2026-05-17_virtual_screen_live_4k/summary.md` +- `benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_4k_capture_send.csv` +- `benchmarks/runs/2026-05-17_virtual_screen_live_4k/virtual_downscale_1080p_capture_send.csv` + +Decision: +- BetterDisplay virtual screen is a viable source display for iBridge. +- The current 4K capture path is still too latent for final smooth use. +- Next implementation should add explicit display-name selection and + newest-frame-wins sender backpressure before more subjective testing. + +## 2026-05-17 02:30 — MacBook Pro to 2017 iMac live macOS receiver smoke + +Prompt: user request to continue until the MacBook screen can be extended to the 2017 4K iMac + +Summary: +- Built the macOS receiver locally and on the Intel 2017 iMac. +- Restarted `ibridge-receiver-macos` on the iMac over SSH. +- Sent synthetic NV12 HEVC Annex-B protocol v0 streams from the MacBook Pro to the iMac over the measured direct 1GbE path at `169.254.70.114`. +- Added runtime receiver logging under `~/ibridge-remote/receiver-macos-runtime.log` because SSH-launched GUI stdout was not enough for reliable receiver evidence. + +Measured results: + +| Mode | Frames encoded | Sender drops | Send failures | Avg encode ms | P95 encode ms | Avg send ms | Receiver result | +|---|---:|---:|---:|---:|---:|---:|---| +| `1920x1080@60` HEVC | 300/300 | 0 | 0 | 13.325 | 19.448 | 0.074 | receiver logged 300 frames | +| `3840x2160@60` HEVC | 720/720 | 0 | 0 | 56.705 | 73.049 | 0.047 | receiver logged frame receipt through frame 660 before sender disconnect | + +Artifacts: +- `benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/summary.md` +- `benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_1080p_hevc.csv` +- `benchmarks/runs/2026-05-17_ibridge_macos_receiver_live/primary_4k_hevc_12s.csv` +- `docs/17_BETTERDISPLAY_AND_2017_4K_RECEIVER.md` + +Decision: +- The live 2017 iMac macOS receiver plumbing works and the user saw the iMac screen change. +- Remote SSH `screencapture` did not reliably capture the AVSampleBufferDisplayLayer output, so do not use it as the deciding evidence for this path. +- The current 4K run proves live plumbing, not final smooth 4K60. Add sender backpressure/frame dropping and retest `2560x1440`, `3200x1800`, and `3840x2160`. + +## 2026-05-14 22:20 — Plan A 5K60 theory and pending receiver benchmark + +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +Summary: +- Calculated 5120x2880 @ 60 raw RGB24 at 21.234Gbps before overhead. +- Calculated 5120x2880 @ 60 YUV 4:2:0 8-bit at 10.617Gbps before overhead. +- Created the Windows D3D11 synthetic renderer benchmark path, but did not run it because this session is on macOS without the Windows SDK and without the Windows iMac receiver. + +Artifacts: +- `benchmarks/theory/5k60_bandwidth.md` +- `benchmarks/plans/windows_synthetic_renderer.md` +- `benchmarks/plans/transport_benchmark.md` +- `benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md` + +Decision: +- Continue Plan A until the Windows iMac local render benchmark and transport measurements exist. + +## 2026-05-15 01:07 — Plan A Windows iMac synthetic 5K60 render + +Prompt: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +Summary: +- Built `ibridge-receiver.exe` on the Windows iMac with MSVC after Visual Studio Build Tools and Windows SDK were installed via GUI. +- Ran the 5120x2880 @ 60 synthetic fullscreen benchmark from the iMac interactive desktop. +- Measured actual fps at 36.034 with 2163/2163 missed frames. +- Average frame time was 27.7370 ms, p95 was 29.0890 ms, and max was 54.9967 ms. +- Average synthetic CPU fill was 14.5120 ms and average D3D11 upload was 12.9730 ms. + +Artifacts: +- `benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/console.txt` +- `benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/receiver_stats.csv` +- `benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/run_status.txt` +- `benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/summary.md` + +Decision: +- Plan A dynamic CPU-filled BGRA32 full-frame upload does not meet the receiver-side 5K60 gate. +- Run static-frame and no-vsync static-frame isolation tests before declaring all near-raw receiver paths failed. + +## 2026-05-15 01:26 — Windows Receiver isolation suite + +Prompt: `prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md` + +Summary: +- Updated receiver synthetic modes so `--static-frame` uploads only once. +- Added `--gpu-pattern` to render a GPU-generated pattern without CPU fill or texture upload. +- Added `--uncapped` so no-vsync runs can measure ceiling instead of sleeping to target fps. +- Rebuilt on the Windows iMac with MSVC and ran the suite from the active console session via Task Scheduler. + +Measured results: + +| Mode | Actual fps | Avg fill ms | Avg upload ms | Avg draw/present ms | P95 total ms | Missed frames | +|---|---:|---:|---:|---:|---:|---:| +| dynamic_5k60 | 29.979 | 14.4046 | 18.6822 | 0.2685 | 34.2572 | 1799 / 1799 | +| static_once_upload_5k60 | 61.749 | 0.0040 | 0.0168 | 16.1721 | 16.8029 | 1684 / 3705 | +| gpu_pattern_5k60 | 61.140 | 0.0000 | 0.0000 | 16.3543 | 16.7943 | 1724 / 3669 | +| gpu_pattern_uncapped_5k60 | 290.663 | 0.0000 | 0.0000 | 3.4389 | 9.0732 | 0 / 4362 | + +Decision: +- iMac D3D11 draw/present can sustain 5K60 when full-frame CPU fill/upload is removed. +- Dynamic CPU-filled BGRA32 full-frame upload is a failed Plan A receiver path. +- Receiver work should continue with low-copy/hardware surfaces and compressed decode paths rather than CPU-filled full-frame uploads. + +## 2026-05-15 01:32 — Receiver HUD smoke test + +Prompt: `prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md` + +Summary: +- Added a lightweight top-left Win32 HUD overlay for receiver benchmark runs. +- Rebuilt `ibridge-receiver.exe` on the Windows iMac. +- Ran a short interactive desktop smoke test at 1280x720, 30fps target, GPU-pattern mode, HUD enabled. + +Result: +- Process exited with code 0. +- Console output reported `hud=on`. +- Actual fps was 62.304 for the 3-second smoke test, with 0 missed frames against the 30fps frame budget. + +Decision: +- HUD code does not block interactive fullscreen benchmark startup. +- Full 5K HUD overhead should be monitored in future benchmark runs. + +## 2026-05-15 01:40 — Primary synthetic 1440p60 VideoToolbox encode + +Prompt: `prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md` + +Summary: +- Added SwiftPM CLI scaffold for `apps/primary-macos`. +- Implemented synthetic BGRA frame generation and VideoToolbox H.264/HEVC encode paths. +- Wrote diagnostics CSV for generation time, encode callback latency, payload bytes, and status. + +Measured results: + +| Codec | Frames | Failed | Avg generate ms | Avg encode latency ms | P95 encode latency ms | Max encode latency ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:|---:| +| H.264 | 120 | 0 | 4.894 | 119.916 | 151.081 | 157.933 | 44,277,068 | +| HEVC | 120 | 0 | 4.892 | 133.649 | 162.608 | 169.744 | 43,277,169 | + +Decision: +- Primary synthetic encode path is functional for both H.264 and HEVC at 1440p60. +- Current encode callback latency is too high for an external-display target and needs low-latency tuning before transport integration. + +## 2026-05-15 02:38 — Plan B 5K60 compressed TCP attempts + +Prompt: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +Summary: +- Added protocol v0 TCP sending to the macOS Primary synthetic encoder. +- Added a no-GUI protocol v0 TCP sink to the Windows Receiver. +- Ran 5120x2880 @ 60 target H.264 and HEVC synthetic compressed tests. + +Measured results: + +| Test | Frames | Failed | Payload bytes | Key result | +|---|---:|---:|---:|---| +| H.264 5K60 TCP | 60 | 60 | 0 | VideoToolbox returned status -10279 for every frame. | +| HEVC 5K60 local default bitrate | 60 | 0 | 87,013,939 | Avg encode callback latency 116.081 ms. | +| HEVC 5K60 local 120Mbps | 60 | 0 | 15,356,893 | Avg encode callback latency 149.548 ms. | +| HEVC 5K60 TCP 120Mbps | 60 | 0 | 15,356,893 | Receiver got all 60 frames, but wall time was 38.60 s and measured receive throughput was 3.092 Mbps. | + +Artifacts: +- `benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/` +- `benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/` +- `benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/` +- `benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/` + +Decision: +- Plan B has been attempted at 5K60. +- H.264 fails at encode for this 5K synthetic path. +- HEVC encodes 5K60 but current latency is too high, and TCP over the current Tailscale path is a transport bottleneck. +- Decode/render remains unmeasured and must not be claimed as working. + +## 2026-05-15 02:55 — Plan C scaled mode comparison + +Prompt: `prompts/04_PLAN_C_60HZ_SCALED_MODES.md` + +Summary: +- Added receiver source/output resolution split and `--scale-mode nearest|linear`. +- Ran iMac Windows D3D11 static scaled-render tests from the active console session. +- Ran macOS Primary HEVC 120Mbps local encode tests for each fallback source mode. + +Measured receiver render results: + +| Mode | Receiver fps | P95 total ms | Max total ms | +|---|---:|---:|---:| +| 1440p nearest | 59.881 | 17.476 | 25.163 | +| 1440p linear | 59.994 | 17.459 | 23.271 | +| 3200x1800 linear | 59.885 | 17.477 | 31.456 | +| 4K linear | 59.840 | 17.418 | 35.613 | +| 4096x2304 linear | 59.777 | 17.473 | 38.184 | + +Measured Primary local encode results: + +| Mode | Avg generate ms | Avg encode latency ms | P95 encode latency ms | +|---|---:|---:|---:| +| 1440p | 5.389 | 16.876 | 40.792 | +| 3200x1800 | 8.520 | 14.738 | 23.529 | +| 4K | 10.963 | 21.164 | 38.249 | +| 4096x2304 | 12.332 | 27.231 | 48.630 | + +Decision: +- Temporary engineering default is 3200x1800 @ 60fps with linear scaling because it had the best encode latency in this sample while sustaining the receiver render test. +- Subjective text quality and screenshot samples remain pending until compressed decode/render exists. + +## 2026-05-15 08:54 — Plan C sender queue and encoder low-latency probe + +Prompt: focused Plan C end-to-end pipeline spike + +Summary: +- Classified previous transport measurements as Tailscale / likely Wi-Fi 2.4GHz / TCP early experiments, not representative LAN or Thunderbolt Bridge results. +- Added a bounded async TCP sender queue so the VideoToolbox callback no longer performs blocking socket writes. +- Moved `kVTVideoEncoderSpecification_EnableLowLatencyRateControl` into the `VTCompressionSessionCreate` encoder specification. +- Added VideoToolbox encoder-list diagnostics and a Plan C encode matrix runner. +- Added an offline Windows Receiver Media Foundation compressed file decode/render smoke path; Windows build/run validation is pending because SSH to the iMac was not available from this session. + +Measured local Primary results: + +| Test | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:| +| HEVC 2560x1440 @ 60, 120Mbps, 5s | 300 | 0 | 13.783 | 13.295 | 103.114 | 14,103,635 | +| HEVC 3200x1800 @ 60, 120Mbps, 5s | 300 | 0 | 24.293 | 65.947 | 110.441 | 22,315,381 | +| HEVC 3200x1800 @ 60, 80Mbps, KFI 120, 5s | 300 | 0 | 23.791 | 63.425 | 112.681 | 21,962,861 | +| H.264 5120x2880 @ 60, 120Mbps, 1s | 60 | 60 | 9.321 | 10.073 | 75.755 | 0 | + +Transport smoke: +- Loopback TCP drain at 1280x720 HEVC sent 60/60 frames with `avg_send_ms=0.040`, `p95_send_ms=0.059`, `sender_dropped_frames=0`, and `send_failed_frames=0`. + +Artifacts: +- `benchmarks/plans/network_matrix.md` +- `benchmarks/runs/2026-05-15_sender_queue_loopback_smoke/primary_stats.csv` +- `benchmarks/runs/2026-05-15_encoder_matrix_smoke/` +- `benchmarks/runs/2026-05-15_0854_encoder_lowlatency/summary.md` +- `benchmarks/runs/primary_encoder_list_latest.txt` + +Decision: +- Plan C remains the next implementation path. +- 2560x1440 HEVC meets the requested avg encode latency target in this local run; 3200x1800 does not yet meet avg < 20ms after the new low-latency settings and needs additional tuning. +- H.264 5K remains a failed payload-producing path on this Primary and should not block HEVC Plan C. +- LAN and Thunderbolt Bridge tests remain pending physical setup and must be measured separately from Tailscale. + +## 2026-05-15 10:12 — MacBook Pro Primary comparison + +Prompt: user requested continuing iBridge from the MacBook Pro environment + +Summary: +- Cloned `feat/plan-a-5k60-benchmark` under `/Users/gabriel/Development/iBridge` on `Gabriels-MacBook-Pro.local`. +- Confirmed machine is MacBook Pro `MacBookPro18,4`, Apple M1 Max, 32 GB memory, AC power. +- Current displays: built-in 3024x1964, external portrait 1080x1920, Sidecar 2360x1640, external FHD 1920x1080. +- `screencapture` captured all four displays successfully. +- Automatic low-latency encoder selection was poor on this MBP. +- Added `--encoder-id` to the Primary CLI and found forced `com.apple.videotoolbox.videoencoder.ave.hevc` with low-latency rate-control disabled gives the best Plan C signal so far. + +Measured automatic encoder results: + +| Test | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---| +| HEVC 2560x1440 120Mbps | 59.218 | 129.926 | too high | +| HEVC 3200x1800 120Mbps | 96.271 | 196.283 | too high | +| H.264 5120x2880 120Mbps | 8.309 | 8.684 | failed, payload 0 | + +Measured forced encoder results: + +| Test | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---| +| HEVC 2560x1440 120Mbps, `ave.hevc`, no low-latency RC | 17.096 | 41.361 | average passes, p95 high | +| HEVC 3200x1800 120Mbps, `ave.hevc`, no low-latency RC | 16.612 | 16.777 | strongest Plan C encode signal | +| HEVC 3840x2160 120Mbps, `ave.hevc`, no low-latency RC | 21.884 | 22.839 | near target, over 20ms avg | +| HEVC 4096x2304 120Mbps, `ave.hevc`, no low-latency RC | 24.969 | 32.502 | over target | +| HEVC 2560x1440 120Mbps, `hevc.vcp`, no low-latency RC | 643.025 | 706.557 | unusable | + +Display-resolution encode probe: + +| Source | Resolution | Avg encode ms | P95 encode ms | +|---|---:|---:|---:| +| Built-in XDR | 3024x1964 | 16.941 | 17.235 | +| External portrait | 1080x1920 | 9.718 | 9.559 | +| Sidecar iPad Air 5 | 2360x1640 | 16.205 | 17.276 | +| HDMI FHD | 1920x1080 | 9.498 | 9.485 | + +Transport probe: +- Tailscale ping to `100.86.52.88` initially used DERP Tokyo, then direct `14.4.153.167:1050`. +- ICMP ping 20/20 received with min/avg/max/stddev `14.484/108.629/423.525/96.505 ms`. +- TCP port 22 is open, but SSH auth from this MBP is blocked because the MBP key is not accepted. + +Artifacts: +- `benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/summary.md` +- `benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/summary.md` +- `benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/summary.md` +- `benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/summary.md` +- `benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/summary.md` +- `benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/summary.md` + +Decision: +- MacBook Pro Primary is a better candidate than the MacBook Air for Plan C HEVC if the encoder is forced to `ave.hevc`. +- Do not treat automatic low-latency encoder selection as acceptable on this MBP. +- Next live test needs Windows iMac receiver startup and/or SSH authorization from the MBP. + +## 2026-05-15 10:58 — VideoToolbox reference-informed property matrix + +Prompt: user pointed out that iMac connection is premature if encoding itself has only reached Plan C + +Summary: +- Revisited Primary encoding using the reference analysis from Transcoding, OBS, FFmpeg, Sunshine, and Moonlight. +- Split VideoToolbox controls into explicit CLI options instead of treating machine-level speed tests as the main signal. +- Corrected the low-latency interpretation: frame reordering remains disabled, but temporal compression is now enabled by default so P-frames are allowed. +- Added optional controls for DataRateLimits, speed priority, open GOP, max frame delay count, and Annex-B payload extraction. +- Added `scripts/mac_vt_property_matrix.sh` and ran a HEVC property matrix before any iMac receiver dependency. + +Measured 2-second matrix highlights: + +| Mode | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---| +| 3200x1800 auto low-latency RC | 38.214 | 71.169 | too high | +| 3200x1800 `ave.hevc`, no LLRC, DataRateLimits | 12.399 | 14.106 | passes 60 Hz encode budget | +| 3840x2160 auto low-latency RC | 94.576 | 96.128 | too high | +| 3840x2160 `ave.hevc`, no LLRC, DataRateLimits | 16.158 | 25.725 | average passes, p95 high | +| 5120x2880 `ave.hevc`, no LLRC, speed priority | 47.842 | 65.002 | too high | + +Measured 5-second sustained probes: + +| Mode | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | +|---|---:|---:|---:|---:|---:| +| 3200x1800 `ave.hevc`, no LLRC, DataRateLimits | 300 | 0 | 11.583 | 11.766 | 64.125 | +| 3840x2160 `ave.hevc`, no LLRC, DataRateLimits | 300 | 0 | 15.457 | 15.831 | 62.353 | +| 4096x2304 `ave.hevc`, no LLRC, DataRateLimits | 300 | 0 | 17.292 | 17.231 | 76.561 | +| 5120x2880 `ave.hevc`, no LLRC, speed priority | 300 | 0 | 100.617 | 119.982 | 123.135 | + +Artifacts: +- `benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1056_vt_property_matrix/summary.md` +- `benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/summary.md` +- `scripts/mac_vt_property_matrix.sh` + +Decision: +- The user's concern is correct: Plan B 5K60 is not satisfied before iMac connection. Current 5K HEVC encode remains far outside the 60 Hz frame budget. +- The strongest encoding-only path is now 3200x1800 or 3840x2160 HEVC with forced `ave.hevc`, low-latency rate-control disabled, temporal compression enabled, frame reordering disabled, and DataRateLimits set. +- `MaxFrameDelayCount` returned `-12900` in these probes and should be treated as unsupported for this encoder/session path. +- Next encoding work should focus on real ScreenCaptureKit/IOSurface input and possibly lower-motion/static-screen modes, not receiver connection. + +## 2026-05-15 11:32 — ScreenCaptureKit, NV12, static skip, tiled, and 5K refresh matrix + +Prompt: user requested all proposed encoding optimizations be tested before continuing iMac connection work + +Summary: +- Added a source strategy matrix around the current best VideoToolbox profile: forced `com.apple.videotoolbox.videoencoder.ave.hevc`, low-latency rate-control disabled, temporal compression enabled, frame reordering disabled, DataRateLimits 120Mbps, speed priority on. +- Compared CPU BGRA synthetic input with synthetic NV12 input. +- Added real ScreenCaptureKit capture input. +- Simulated unchanged-screen behavior by submitting only changed frames. +- Tested 5K45 and 5K30. +- Tested a 2x2 tiled-session approximation by running four 2560x1440 HEVC sessions in parallel. + +Measured 3-second highlights: + +| Mode | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---| +| synthetic NV12 3840x2160 @ 60 | 11.557 | 11.906 | strong 4K60 encode-only signal | +| ScreenCaptureKit 3840x2160 @ 60 | 16.363 | 18.412 | real capture works, p95 slightly misses 60Hz budget | +| synthetic NV12 4096x2304 @ 60 | 12.898 | 13.245 | strong high-detail 60Hz candidate | +| synthetic NV12 5120x2880 @ 60 | 222.716 | 234.220 | single-session 5K60 fails | +| ScreenCaptureKit 5120x2880 @ 60 | 302.354 | 360.042 | real 5K60 capture+encode fails | +| synthetic NV12 5120x2880 @ 30 | 19.296 | 19.824 | usable for 30Hz budget, not 60Hz | +| 2x2 5K60 tile approximation | 6.496-9.528 | 10.568-11.254 | per-tile encode passes; recomposition unproven | + +Artifacts: +- `benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/summary.md` +- `benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/tile_2x2_5k60/summary.md` +- `benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/targeted/sck_5k60.txt` +- `scripts/mac_encode_strategy_matrix.sh` + +Decision: +- Single-session Plan B 5K60 HEVC is still not viable on the current MacBook Pro path, even with real ScreenCaptureKit input. +- NV12-style input materially improves 4K/4096x2304 encode results and should replace BGRA synthetic as the main encode benchmark path. +- The only current 5K60-shaped positive signal is tiled encoding; it requires protocol, receiver decode, synchronization, and recomposition work before it can count as a display solution. +- Recommended single-session quality candidates are now `4096x2304 @ 60` and `3840x2160 @ 60`; `5120x2880 @ 30` is a high-quality low-refresh fallback. + +## 2026-05-15 12:13 — Tiled 5K60 deeper probe + +Prompt: user asked to prioritize the promising 2x2 tiled 5K60 signal for Plan A/Plan B investigation. + +Summary: +- Added tiled benchmark controls for logical-frame in-flight depth and periodic tile-session reset. +- Fixed tiled presentation timestamps so each tile encoder session receives 0, 1, 2... frame PTS instead of global interleaved frame IDs 0, 4, 8... +- Re-ran 2x2 tiled 5K60 with bitrate, backpressure, tile-shape, session-reset, 10-second, and 30-second sustain probes. + +Key findings: +- PTS fix reduced the post-3-second no-reset failure from about 136 ms p95 to about 43 ms p95, but no-reset tiled 5K60 still fails the 16.67 ms budget after frame 180. +- Tile shape changes (`1x4`, `2x2`, `4x1`, `4x2`, `2x4`) did not remove the post-180-frame latency rise. +- Periodic session reset alone creates large reset-frame spikes and fails p95 in short 5-second runs. +- Periodic reset plus `--tile-max-inflight-logical-frames 1` is the first strong sustained tiled 5K60 encode-only pass. + +Measured highlights: + +| Case | Duration | Frames | Effective fps | Avg logical ms | P95 logical ms | Max logical ms | Result | +|---|---:|---:|---:|---:|---:|---:|---| +| 2x2 30Mbps/tile, no reset | 5s | 300 | 59.543 | 24.733 | 42.688 | 108.377 | Fail | +| 2x2 30Mbps/tile, reset150 | 5s | 300 | 60.003 | 17.509 | 65.848 | 111.154 | Fail | +| 2x2 30Mbps/tile, reset150, inflight1 | 5s | 300 | 60.040 | 12.255 | 12.937 | 112.592 | Pass p95, reset spike remains | +| 2x2 30Mbps/tile, reset150, inflight1 | 10s | 600 | 60.025 | 12.436 | 13.816 | 123.366 | Pass p95, reset spike remains | +| 2x2 60Mbps/tile, reset150, inflight1 | 10s | 600 | 60.005 | 12.428 | 13.814 | 127.576 | Pass p95, reset spike remains | +| 2x2 30Mbps/tile, reset150, inflight1 | 30s | 1800 | 60.002 | 12.374 | 12.920 | 132.944 | Pass p95, reset spike remains | + +Artifacts: +- `benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/summary.md` +- `benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/summary.md` +- `benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/summary.md` +- `benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/summary.md` +- `benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/summary.md` +- `benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/summary.md` + +Decision: +- Tiled 5K60 should move from "research only" to the next Plan B prototype candidate, but only with explicit caveats. +- The encode-only budget is now promising for p95, but reset-frame max spikes around 100-133 ms must be solved or hidden before calling it display-smooth. +- Next tiled work should investigate receiver protocol metadata, multi-stream decode/recomposition, and reset-spike mitigation such as staggered/prewarmed tile sessions or dropping/hiding reset frames. + +## 2026-05-15 12:22 — Tiled reset interval and deadline policy + +Prompt: user asked whether 2x2 tiled 5K60 can continue and whether other speed-reduction methods or current encoding trends suggest improvements. + +Summary: +- Searched current primary/official encoding sources around split-frame encoding, low-latency controls, and ScreenCaptureKit queue behavior. +- Added `scripts/analyze_tiled_deadline.py` to convert tiled logical CSV results into deadline-miss counts. +- Tuned tiled session reset interval from 150 to 180 logical frames. +- Wrote `docs/13_TILED_5K60_STRATEGY.md`. + +Measured reset-interval results: + +| Case | Duration | Frames | Effective fps | Avg ms | P95 ms | Max ms | Late >16.67ms | Result | +|---|---:|---:|---:|---:|---:|---:|---:|---| +| reset150, inflight1 | 20s | 1200 | 60.008 | 13.075 | 15.210 | 128.469 | 27 | Pass | +| reset180, inflight1 | 20s | 1200 | 60.010 | 11.991 | 12.632 | 131.582 | 8 | Pass | +| reset210, inflight1 | 20s | 1200 | 60.006 | 14.300 | 31.276 | 127.290 | 147 | Fail | +| reset180, inflight1 | 30s | 1800 | 60.009 | 12.100 | 12.690 | 135.530 | 18 | Pass | + +Deadline interpretation: +- In the reset180 30-second run, only 18/1800 logical frames exceeded 16.67 ms. +- Only 10/1800 logical frames exceeded 33.33 ms, matching the reset cadence. +- This supports a receiver presentation policy that reuses previous tile textures instead of stalling the full logical frame when one tile misses deadline. + +Artifacts: +- `benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/summary.md` +- `benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/summary.md` +- `benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/deadline_analysis.md` +- `docs/13_TILED_5K60_STRATEGY.md` +- `scripts/analyze_tiled_deadline.py` + +Decision: +- Continue tiled 5K60 as the top full-resolution prototype path. +- Do not make the receiver wait for all tiles on every logical frame. Use deadline-based composition with stale-tile reuse and HUD counters. +- Keep single-session 3840x2160/4096x2304 as fallback paths while tiled receiver composition is built. + +## 2026-05-15 12:54 — M1 Max sender profile quick retest + +Prompt: user corrected the next step to sender/encoding profiles for M1 Max/M1 Air and wired/wireless combinations before receiver decode work. + +Command: + +```bash +DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 RUN_ROOT=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix scripts/mac_transmission_profile_matrix.sh +``` + +Results: + +| Profile | Avg ms | P95 ms | Max ms | Result | +|---|---:|---:|---:|---| +| M1 Max wired 2x2 tiled HEVC 5K60, 30Mbps/tile, reset180, inflight1 | 12.501 | 13.222 | 123.935 | Pass p95; reset spike remains | +| M1 Max wired single HEVC 4096x2304@60, 120Mbps | 25.717 | 46.742 | 47.979 | Fail current 60Hz budget | +| M1 Max wireless-style single HEVC 3200x1800@60, 60Mbps | 23.614 | 41.764 | 82.782 | Fail current 60Hz budget | + +Deadline note: +- Tiled 5K60 had 2/300 logical frames over 16.67 ms in this quick run; both were startup/reset frames. + +Interpretation: +- The full-resolution M1 Max wired path should stay focused on 2x2 tiled HEVC first. +- Single-stream fallback results are not stable across the day's runs. Re-isolate 4096x2304, 3840x2160, 3200x1800, and 2560x1440 before selecting a commercial default. +- Lower bitrate did not automatically reduce latency in this run; stronger compression can increase VideoToolbox work. + +Artifacts: +- `benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/m1max_wired_full_5k60_tiled_hevc_synthetic_nv12_tiled_5120x2880_60fps_30mbps_deadline.md` +- `docs/14_TRANSMISSION_PROFILE_MATRIX.md` + +## 2026-05-15 13:40 — M1 Max single-stream stability re-isolation + +Prompt: user asked MBP Codex to continue with M1 Max single-stream instability analysis while waiting for cables and M1 Air results. + +Commands: + +```bash +REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=unset RUN_ROOT=benchmarks/runs/2026-05-15_1330_single_stream_stability_unset scripts/mac_single_stream_stability_matrix.sh +REPEATS=3 DURATION=5 COOLDOWN_SECONDS=3 PRIORITIZE_SPEED=on RUN_ROOT=benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on scripts/mac_single_stream_stability_matrix.sh +DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 RUN_ROOT=benchmarks/runs/2026-05-15_1338_transmission_profile_recheck scripts/mac_transmission_profile_matrix.sh +``` + +Isolated single-stream results: + +| Resolution | prioritize_speed | Runs | Median p95 ms | Worst p95 ms | Pass p95 <=16.67 | +|---|---|---:|---:|---:|---:| +| 4096x2304 | unset | 3 | 13.050 | 13.059 | 3/3 | +| 3840x2160 | unset | 3 | 11.669 | 11.791 | 3/3 | +| 3200x1800 | unset | 3 | 11.250 | 11.274 | 3/3 | +| 2560x1440 | unset | 3 | 10.636 | 10.647 | 3/3 | +| 4096x2304 | on | 3 | 13.087 | 13.176 | 3/3 | +| 3840x2160 | on | 3 | 11.668 | 11.719 | 3/3 | +| 3200x1800 | on | 3 | 11.218 | 11.376 | 3/3 | +| 2560x1440 | on | 3 | 6.455 | 6.472 | 3/3 | + +Order/state finding: +- Re-running the transmission quick matrix reproduced the slow fallback behavior after 2x2 tiled 5K60 ran first. +- In that mixed-order run, tiled 5K60 still passed p95: avg 12.542 ms, p95 12.741 ms. +- But immediate single-stream follow-ups were pessimistic: 4096x2304 p95 46.612 ms and 3200x1800 p95 41.956 ms. +- A direct 4096x2304 run after that was still slow after a 60-second wait: p95 46.544 ms. + +Interpretation: +- Single-stream HEVC fallbacks are stable when measured in isolation. +- The instability is likely VideoToolbox encoder-service state after heavy tiled HEVC, not thermal throttling or the `prioritize_speed` flag by itself. +- Product-mode switching from tiled 5K60 down to single-stream fallback needs an explicit encoder reset/restart strategy or separate process/session boundary. + +Artifacts: +- `benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/aggregate.md` +- `benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/aggregate.md` +- `benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/summary.csv` +- `benchmarks/runs/2026-05-15_1341_post_tiled_recovery/` + +## 2026-05-15 13:58 — Encoder service restart recovery probe + +Prompt: continue MBP-side work after discovering tiled-first HEVC can poison immediate single-stream fallback results. + +Summary: +- Restarted the user `VTEncoderXPCService` with `pkill -x VTEncoderXPCService`. +- Re-ran 4096x2304 fallback immediately after restart. +- Re-ran 4096x2304 after a 60-second wait. +- Re-ran 4096x2304 with `prioritize_speed=unset`. +- Checked lower fallback candidates after the slow state. + +Results: + +| Probe | Avg ms | P95 ms | Max ms | Result | +|---|---:|---:|---:|---| +| 4096x2304 after encoder service restart | 25.928 | 46.532 | 55.227 | Still slow | +| 4096x2304 after 60s wait | 25.692 | 46.544 | 47.904 | Still slow | +| 4096x2304 after 60s wait, speed unset | 25.724 | 46.719 | 47.720 | Still slow | +| 3200x1800 after restart, solo | 23.746 | 41.839 | 79.181 | Still slow | +| 2560x1440 after restart | 7.851 | 10.808 | 42.851 | Safe | + +Interpretation: +- Restarting the user VideoToolbox encoder XPC service alone does not clear the post-tiled slow state. +- The state is likely below the user XPC process boundary, such as media-engine or driver state. +- Until a stronger reset is proven, product fallback from tiled 5K60 should either restart in a truly clean sender/session context or drop to `2560x1440@60` as the conservative emergency fallback. + +Artifacts: +- `benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/` + +## 2026-05-15 14:24 — VideoToolbox segment-hint reset strategy + +Prompt: find a stronger encoder reset/session strategy using references. + +Reference basis: +- Apple documents parallel compression sessions as requiring `MoreFramesBeforeStart`, `MoreFramesAfterEnd`, and `SourceFrameCount`. +- Apple documents `PrepareToEncodeFrames`; iBridge already calls it during compression-session configuration. +- FFmpeg and OBS VideoToolbox references also prepare compression sessions before encode. + +Commands: + +```bash +DURATION=6 RUN_FALLBACK=1 RUN_ROOT=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe scripts/mac_encoder_reset_strategy_probe.sh +DURATION=6 RUN_FALLBACK=0 RUN_ROOT=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix scripts/mac_encoder_reset_strategy_probe.sh +``` + +Clean summary-count run: + +| Case | Effective fps | Avg ms | P95 ms | Max ms | >16.67ms | >33.33ms | +|---|---:|---:|---:|---:|---:|---:| +| baseline simultaneous reset | 60.011 | 13.199 | 14.330 | 132.700 | 7/360 | 2/360 | +| segment hints simultaneous reset | 59.995 | 13.362 | 14.158 | 134.008 | 4/360 | 2/360 | +| segment hints staggered reset | 60.016 | 13.300 | 14.243 | 113.596 | 8/360 | 4/360 | + +Fallback probe after reset strategy run: + +| Fallback | Avg ms | P95 ms | Max ms | Result | +|---|---:|---:|---:|---| +| 4096x2304@60 | 25.838 | 46.578 | 47.764 | still slow | +| 3200x1800@60 | 23.846 | 42.273 | 84.630 | still slow | +| 2560x1440@60 | 10.345 | 16.866 | 30.266 | borderline/safest | + +Interpretation: +- VideoToolbox segment hints are a useful improvement for tiled reset frame counts. +- Staggered reset may help only if the receiver can hide stale tiles; otherwise it increases the number of reset-affected logical frames. +- This does not yet solve post-tiled high-detail fallback contamination. +- A fresh login/reboot A/B is needed because the machine was already in the slow post-tiled state before this probe. + +Artifacts: +- `benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/` +- `benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/` + +## 2026-05-15 15:53 — Clean-session fallback gate setup and dirty controls + +Prompt: user asked to run the remaining clean-session test: segment-hints tiled first, then immediate 4096/3200 fallback. + +Commands: + +```bash +RUN_ROOT=benchmarks/runs/2026-05-15_1550_clean_session_probe_guard scripts/mac_clean_session_encoder_probe.sh +DURATION=6 FALLBACK_DURATION=5 REQUIRE_CLEAN_BOOT=0 RUN_ROOT=benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe scripts/mac_clean_session_encoder_probe.sh +DURATION=10 FALLBACK_DURATION=5 REQUIRE_CLEAN_BOOT=0 RUN_ROOT=benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat scripts/mac_clean_session_encoder_probe.sh +``` + +Guard result: +- The valid clean-session run was skipped because uptime was 2936 minutes and the boot time was `2026-05-13 14:55:23 +0900`. + +Dirty current-session controls: + +| Run | Tiled p95 ms | 4096 fallback p95 ms | 3200 fallback p95 ms | 2560 fallback p95 ms | Result | +|---|---:|---:|---:|---:|---| +| `2026-05-15_1552_dirty_session_encoder_probe` | 13.765 | 14.918 | 11.444 | 6.307 | high-detail fallback passed once | +| `2026-05-15_1553_dirty_session_encoder_probe_repeat` | 14.417 | 46.669 | 42.616 | 16.482 | high-detail fallback failed on repeat | + +Interpretation: +- This is not the requested clean-session proof because the machine had been up for about two days. +- The dirty-control repeat is still useful: high-detail fallback after segment-hints tiled 5K60 is not stable enough to promote. +- Keep product fallback limited to `2560x1440@60` until a fresh-boot clean run and immediate repeat both pass. + +Artifacts: +- `benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/` +- `benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/` +- `benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/` + +## 2026-05-15 13:18 — M1 Air sender profile matrix + +Prompt: user asked to pull latest branch and run the sender-only Air profile matrix before receiver work + +Command: + +```bash +DEVICE_PROFILE=m1air PROFILE_SET=air DURATION=30 scripts/mac_transmission_profile_matrix.sh +``` + +Machine: +- `MacBookAir10,1` +- Apple M1, 8 CPU cores, 7 GPU cores, 8 GB memory + +Results: + +| Profile | Avg ms | P95 ms | Max ms | 16.67ms p95 budget | Result | +|---|---:|---:|---:|---|---| +| HEVC 2560x1440@60, 25Mbps | 8.145 | 9.296 | 20.146 | pass | Best M1 Air default | +| HEVC 3200x1800@60, 35Mbps | 18.873 | 38.897 | 325.872 | fail | Too spiky for default | +| HEVC 3840x2160@60, 45Mbps | 18.727 | 54.584 | 233.527 | fail | Too spiky for default | +| 2x2 tiled HEVC 5120x2880@60, 25Mbps/tile | 23.626 | 23.718 | 72.096 | fail | Effective 41.599 fps | + +Tiled deadline note: +- `1800/1800` logical frames exceeded 16.67 ms. +- `10/1800` logical frames exceeded 33.33 ms, matching the reset cadence. + +Interpretation: +- M1 Air should use `2560x1440 @ 60` HEVC as the realistic initial sender profile. +- `3200x1800 @ 60` is a retest/tuning target, not the default. +- 2x2 tiled 5K60 is not worth carrying into M1 Air receiver work based on this sender-only result; keep tiled 5K60 focused on M1 Max/best-wired unless a new encoder strategy appears. + +Artifacts: +- `benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/summary.csv` +- `benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/m1air_wired_full_5k60_tiled_probe_hevc_synthetic_nv12_tiled_5120x2880_60fps_25mbps_deadline.md` +- `benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/system_profile_sanitized.txt` + +## 2026-05-15 13:45 — Next-step transport gate check + +Prompt: user confirmed the M1 Air vs M1 Max tiled speed difference and asked to plan and proceed with the next step. + +Plan: +- Lock M1 Air default to `2560x1440 @ 60` HEVC based on sender evidence. +- Keep M1 Max 2x2 tiled 5K60 as the only current full-resolution sender candidate. +- Before receiver work, verify whether the MacBook Pro has a usable physical transport path to the iMac. + +Commands: + +```bash +ssh macbook-pro 'cd ~/development/iBridge && git pull --rebase' +ssh macbook-pro 'networksetup -listallhardwareports; ifconfig ...' +ssh macbook-pro 'ping -c 20 100.86.52.88' +``` + +Results: +- MacBook Pro repo fast-forwarded to `a1f629d`. +- MacBook Pro active normal interface is Wi-Fi with `192.168.5.31`. +- Thunderbolt Bridge and USB/Ethernet adapter interfaces were present but inactive. +- Tailscale ping to Windows iMac `100.86.52.88`: 20/20 received, min/avg/max/stddev `9.451/73.839/507.671/107.944 ms`. + +Interpretation: +- Current Tailscale path is reachable but too jittery for display-profile decisions. +- The next meaningful experiment is still a physical transport matrix: Thunderbolt Bridge first if available, otherwise 1GbE. +- Do not implement Windows tiled receiver yet; sender profile and transport gates are not both green. + +Artifacts: +- `benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/ping_20_imac_tailscale.txt` + +## 2026-05-15 13:51 — Current Tailscale network matrix + +Prompt: continue the next experiment after the transport gate check. + +Command: + +```bash +ssh macbook-pro 'cd ~/development/iBridge && DURATION=10 RUN_ROOT=benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix scripts/mac_network_matrix.sh --case tailscale --receiver-ip 100.86.52.88 --tailscale-name 100.86.52.88' +``` + +Results: +- Ping: 100 transmitted, 98 received, 2.0% packet loss. +- RTT min/avg/max/stddev: `8.198/61.867/485.532/58.935 ms`. +- `iperf3` was not installed on the MBP, so TCP/UDP throughput was not measured. +- `tailscale` CLI was not found in the MBP SSH shell, so direct/DERP status was not captured. + +Interpretation: +- Current Tailscale path is reachable but not a credible display transport due to packet loss and high jitter/spikes. +- This does not downshift the M1 Max wired sender plan; it only says the current overlay path is not the right next validation path. +- Before the wired matrix, install or expose `iperf3` on both MBP and iMac, then connect Thunderbolt Bridge or 1GbE. + +Artifacts: +- `benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/ping_100.txt` +- `benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/iperf3_missing.txt` +- `benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/tailscale/tailscale_missing.txt` + +## 2026-05-17 01:56 — MacBook Air to 2015 iMac Wi-Fi reachability + +Prompt: user said MacBook Pro Codex is working on 2017 iMac connection and asked this MacBook Air to proceed in parallel on the 2015 iMac, focusing on 5GHz Wi-Fi because Ethernet is not connected. + +Plan: +- Pull latest git state and avoid colliding with 2017 iMac work. +- Identify the 2015 iMac current Tailscale/local Wi-Fi target. +- Capture MacBook Air -> 2015 iMac Wi-Fi reachability, port state, and any throughput blockers. + +Commands: + +```bash +git pull --ff-only +tailscale status +ping -c 20 -i 0.2 100.84.32.31 +tailscale ping --c 5 100.84.32.31 +ping -c 20 -i 0.2 192.168.31.187 +RUN_ROOT=benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5 DURATION=10 scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31 +brew install iperf3 +``` + +Results: +- Latest branch fast-forwarded from `bbc0c74` to `11d0904`. +- Tailscale identifies the 2015 iMac as `gabriels-imac27-2015` at `100.84.32.31`. +- Tailscale spot check reached it via local endpoint `192.168.31.187:41641`. +- Local Wi-Fi ping to `192.168.31.187`: 100/100 received, min/avg/max/stddev `3.819/51.446/420.666/88.334 ms`. +- TCP ports `22` and `5201` are open; TCP `48320` is refused. +- `iperf3` throughput was not measured because local MacBook Air `iperf3` is missing. +- `brew install iperf3` failed because local Homebrew cannot update cleanly and reports unsupported macOS `26.5`. +- SSH authentication to the 2015 iMac is blocked for tested users even though port 22 is open. + +Interpretation: +- The MacBook Air -> 2015 iMac Wi-Fi path is reachable and appears local-direct, but current jitter is too high for display-profile decisions. +- Keep this path at reachability/prep status until SSH auth and throughput measurement are fixed. + +Artifacts: +- `benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/summary.md` +- `benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/ping_100.txt` +- `benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/port_probe.txt` +- `benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/tailscale_ping_10.txt` + +## 2026-05-17 02:08 — MacBook Air to 2015 iMac Wi-Fi throughput + +Prompt: user repaired Homebrew enough to install `iperf3`, then ran the MacBook Air -> 2015 iMac Wi-Fi network matrix. + +Command: + +```bash +DURATION=20 RUN_ROOT=benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31 +``` + +Results: +- Ping: 100/100 received, min/avg/max/stddev `3.690/30.495/258.942/44.687 ms`. +- TCP to receiver: `154.09 Mbps` received. +- TCP reverse from receiver: `129.43 Mbps` received. +- UDP 30Mbps: `29.99 Mbps` received, `0%` loss. +- UDP 60Mbps: `59.78 Mbps` received, `0.333%` loss. +- UDP 120Mbps: `119.95 Mbps` received, `0.003%` loss. + +Interpretation: +- Throughput is adequate for conservative low-bitrate smoke tests such as the MacBook Air's `2560x1440@60` HEVC candidate. +- ICMP still has repeated 100-250ms latency spikes, so do not treat this Wi-Fi path as smooth-display evidence. +- Keep 5K, tiled 5K, and high-detail fallback decisions blocked on wired transport. + +Artifacts: +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/summary.md` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_to_receiver.json` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_tcp_from_receiver_reverse.json` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_30mbps.json` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_60mbps.json` +- `benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/iperf3_udp_120mbps.json` + +## 2026-05-17 02:35 — MacBook Air to 2015 iMac 1440p60 HEVC visual smoke + +Prompt: user asked to continue after MacBook Air SSH access to the 2015 iMac was fixed. + +Plan: +- Build `apps/primary-macos` locally and `apps/receiver-macos` on the 2015 iMac. +- Run the macOS receiver on `oosu@100.84.32.31` listening on TCP `48320`. +- Send the conservative MacBook Air profile: `2560x1440 @ 60`, HEVC, Annex-B, 25Mbps, over local Wi-Fi to `192.168.31.187`. + +Commands: + +```bash +swift build --package-path apps/primary-macos -c release +swift build --package-path apps/receiver-macos -c release +ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'cd ~/development/iBridge && swift build --package-path apps/receiver-macos -c release' +ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'nohup ~/development/iBridge/apps/receiver-macos/.build/release/ibridge-receiver-macos --port 48320 --fullscreen ... &' +apps/primary-macos/.build/release/ibridge-primary --synthetic --source synthetic-nv12 --resolution 2560x1440 --fps 60 --duration 30 --codec hevc --bitrate-mbps 25 --data-rate-limit-mbps 25 --disable-low-latency-rate-control --encoder-id com.apple.videotoolbox.videoencoder.ave.hevc --disable-frame-reordering --disable-open-gop --payload-format annex-b --send-host 192.168.31.187 --send-port 48320 +``` + +Results: +- Receiver handshake succeeded with `selected_codec=hevc`, `width=2560`, `height=1440`, `fps=60`, `frame_transport=tcp`. +- Sender requested/submitted/encoded `1800/1800/1800` frames. +- Sender send failures: `0`. +- Sender queue drops: `2`. +- Sender p95 encode latency: `9.730 ms`; max encode latency: `34.592 ms`. +- Sender p95 send time: `0.096 ms`; max send time: `95.444 ms`. +- Receiver total frames: `1798`. +- Receiver missing-frame events: two 1-frame gaps before frames `1407` and `1437`. +- User reported visible change on the iMac panel during the smoke. + +Interpretation: +- This proves the MacBook Air -> 2015 iMac macOS receiver path can encode, send, receive, and visibly affect the iMac display at conservative 1440p60 HEVC over Wi-Fi. +- This is not a smooth-display pass because the Wi-Fi path still has latency spikes and the smoke had 2 dropped/missing frames over 30 seconds. +- Keep 5K, tiled 5K, and high-detail fallback blocked on wired transport. + +Artifacts: +- `benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/summary.md` +- `benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/primary_stats.csv` +- `benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/receiver_console.txt` + +## 2026-05-17 02:53 — MacBook Air to 2015 iMac live capture script + +Prompt: user asked whether any-quality external monitor use is possible and asked to complete the app path. + +Results: +- Live screen capture over Wi-Fi works as a mirror-style display path. +- 10s direct live-capture smoke at `2560x1440@30` HEVC 15Mbps: sender `300/300` encoded, 0 send failures, 1 sender queue drop; receiver `299` frames. +- 3s helper-script validation at the same profile: sender `90/90` encoded, 0 send failures, 0 sender queue drops. +- Added helper scripts to start the 2015 iMac receiver, start a long-running MacBook Air live capture session, and stop the receiver. + +Interpretation: +- MacBook Air can now connect to the 2015 iMac as a practical mirror/live-capture display over Wi-Fi. +- This is not yet a true macOS extended desktop. The next product milestone is adding or integrating a virtual display source on the MacBook Air, then capturing that display with the existing ScreenCaptureKit path. + +Artifacts: +- `benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/` +- `benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/` +- `scripts/start_2015_imac_receiver_macos.sh` +- `scripts/start_mba_to_2015_imac_live_capture.sh` +- `scripts/stop_2015_imac_receiver_macos.sh` + +## 2026-05-17 03:36 — Virtual 16:9 extended display target + +Prompt: user configured macOS `Virtual 16:9` as an extended display at `1920x1080`. + +Results: +- Local Wi-Fi IP `192.168.31.187` was temporarily unreachable from the MacBook Air, but Tailscale `100.84.32.31` reached the same receiver. +- `capture-display-index 1` successfully sent a `1920x1080@30` HEVC stream to the 2015 iMac receiver. +- Receiver logged protocol v0 handshake for `width=1920`, `height=1080`, `fps=30`. +- Default helper script profile changed to `Virtual 16:9`: display index `1`, `1920x1080@30`, HEVC 8Mbps, receiver `100.84.32.31`. +- 3s helper-script validation: requested/submitted/encoded `90/28/28`, failed frames `0`, send failures `0`, sender queue drops `0`. + +Interpretation: +- iBridge now has an immediate extended-display-style workflow when the virtual display is already created by macOS/BetterDisplay/OCLP tooling: move windows to `Virtual 16:9`, then run the iBridge sender to show that virtual display on the iMac. +- Low submitted-frame count is expected when the virtual display is mostly static; move the cursor or a window on that display to force visible updates. + +Artifacts: +- `benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/` +- `benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/` + +## 2026-05-17 04:35 — macOS alpha package verification + +Prompt: user asked to proceed through app distribution. + +Commands: + +```bash +bash -n scripts/start_ibridge_virtual_capture.sh +bash -n scripts/package_macos_alpha.sh +scripts/package_macos_alpha.sh +codesign --verify --deep --strict --verbose=2 "dist/iBridge-0.1.0-alpha/iBridge Receiver.app" +dist/iBridge-0.1.0-alpha/bin/ibridge-primary --list-displays +DURATION=1 RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ Virtual\ Capture.command +system_profiler SPDisplaysDataType +``` + +Results: +- Package output created: `dist/iBridge-0.1.0-alpha/`. +- Zip output created: `dist/iBridge-0.1.0-alpha.zip`. +- Zip size at verification time: `184K`. +- App signature verification: valid on disk and satisfies its Designated Requirement. +- Packaged sender binary is byte-identical to the release sender build. +- Current sender display list returned `capture_display_count=0`. +- Packaged sender guard exited with code 2 and printed the BetterDisplay/extended-display/Screen Recording checklist instead of continuing with an invalid capture index. +- `system_profiler` showed `Gabrielì˜ iMac` as an AirPlay 1080p virtual device; the BetterDisplay `Virtual 16:9` extended display was not present in this verification state. + +Interpretation: +- Internal alpha packaging is working. +- Live virtual-display sender smoke is blocked until the BetterDisplay virtual screen is reconnected as an extended display and visible to ScreenCaptureKit. + +## 2026-05-17 04:43 — wired high-quality profile smoke + +Prompt: user asked to continue toward commercial quality and use the current wired LAN for better image quality. + +Commands: + +```bash +ssh gabrieljang@100.89.104.119 'nohup apps/receiver-macos/.build/release/ibridge-receiver-macos --port 48320 --fullscreen --title "iBridge LAN Receiver" ... &' +apps/primary-macos/.build/release/ibridge-primary --synthetic --source synthetic-nv12 --resolution 3200x1800 --fps 60 --duration 5 --codec hevc --bitrate-mbps 60 --data-rate-limit-mbps 60 --send-host 169.254.70.114 --send-port 48320 ... +apps/primary-macos/.build/release/ibridge-primary --synthetic --source synthetic-nv12 --resolution 2560x1440 --fps 60 --duration 5 --codec hevc --bitrate-mbps 45 --data-rate-limit-mbps 45 --send-host 169.254.70.114 --send-port 48320 ... +apps/primary-macos/.build/release/ibridge-primary --synthetic --source synthetic-nv12 --resolution 2560x1440 --fps 30 --duration 5 --codec hevc --bitrate-mbps 35 --data-rate-limit-mbps 35 --send-host 169.254.70.114 --send-port 48320 ... +scripts/package_macos_alpha.sh +DURATION=1 PROFILE=lan-readable RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command +``` + +Results: +- Direct 1GbE receiver reachability remained strong; earlier spot ping was approximately `0.528/1.118/1.517 ms` min/avg/max. +- `2560x1440@30 35Mbps`: requested/submitted/encoded `150/150/150`, sender drops `0`, send failures `0`, avg encode `14.516 ms`, p95 encode `25.772 ms`, avg send `0.060 ms`, p95 send `0.098 ms`. +- `2560x1440@60 45Mbps`: requested/submitted/encoded `300/300/300`, sender drops `0`, send failures `0`, p95 encode `41.191 ms`. +- `3200x1800@60 60Mbps`: requested/submitted/encoded `300/300/300`, sender drops `0`, send failures `0`, p95 encode `39.214 ms`. +- `3200x1800@30 50Mbps` was run during a parallel encoder check and showed heavy sender drops, so treat it as invalid for product default selection and experimental only. +- The package now includes `Start iBridge LAN High Quality.command`, and the app signature still verifies. +- Packaged live capture still exits with the expected `capture_display_count=0` setup guard in the current AirPlay-only state. + +Interpretation: +- Transport is no longer the limiting factor on the current direct LAN path. +- The current alpha should default wired readability to `PROFILE=lan-readable` (`2560x1440@30`, HEVC, 35Mbps). +- Higher-resolution or 60Hz profiles should remain explicit experimental modes until encoder slow-state/backpressure handling is improved. + +Artifacts: +- `benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/summary.md` + +## 2026-05-17 04:47 — capture backpressure option + +Prompt: user asked for current status, remaining work, and to continue toward better commercial-quality wired image quality. + +Commands: + +```bash +swift build --package-path apps/primary-macos -c release +bash -n scripts/start_ibridge_virtual_capture.sh +bash -n scripts/package_macos_alpha.sh +python3 apps/shared-protocol/test_protocol_v0.py +scripts/package_macos_alpha.sh +codesign --verify --deep --strict --verbose=1 "dist/iBridge-0.1.0-alpha/iBridge Receiver.app" +DURATION=1 PROFILE=lan-readable RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command +``` + +Results: +- `ibridge-primary --help` now lists `--capture-max-in-flight-frames`. +- `start_ibridge_virtual_capture.sh` wires `CAPTURE_MAX_IN_FLIGHT_FRAMES` into the sender invocation. +- Wired profiles default to max in-flight capture frames `1`; balanced defaults to `2`. +- Swift release build and protocol tests passed. +- The alpha package rebuilt, app signature verification passed, and the package-local LAN high-quality command still exits with the expected `capture_display_count=0` setup guard in the current AirPlay-only state. + +Interpretation: +- This is a latency-control change, not a bandwidth change. It should reduce stale-frame backlog during high-detail live capture once the BetterDisplay virtual screen is visible again. +- Live quality still needs a BetterDisplay `Virtual 16:9` recapture run because ScreenCaptureKit currently sees no capture displays on this MacBook Pro state. + +Follow-up live smoke: + +```bash +DURATION=3 PROFILE=lan-readable RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command +``` + +Results: +- ScreenCaptureKit later exposed `capture_display_count=2`. +- Auto-selection chose `display_index=1`, the non-origin extended display. +- Sender profile: `2560x1440@30`, HEVC, 35Mbps, capture max in-flight frames `1`. +- Sender requested/submitted/encoded `90/46/46`. +- Sender failed frames `0`, sender dropped frames `0`, send failed frames `0`. +- p95 encode `17.101 ms`; p95 send `0.877 ms`. +- Receiver logged the `2560x1440@30` handshake and `46` frames. + +Interpretation: +- The packaged LAN high-quality command now works end-to-end for a short live ScreenCaptureKit virtual-display smoke over wired LAN. +- Skipped frames are expected with capture backpressure and a mostly static display; the useful product behavior is that the stream does not build a stale backlog. + +Artifacts: +- `benchmarks/runs/2026-05-17_0929_ibridge_virtual_capture/summary.md` + +## 2026-05-17 09:41 — 4K60 virtual-display latency comparison + +Prompt: user corrected the quality target to BetterDisplay `Virtual 16:9` at `3840x2160@60` and asked to focus on reducing latency. + +Reference/context used: +- Apple ScreenCaptureKit and local OBS references point to careful stream queue sizing and display pixel sizing. +- Apple VideoToolbox and local Transcoding/OBS/FFmpeg references point to realtime encoding, max-frame-delay controls, encoder ID observability, and optional platform-dependent VT property handling. +- Sunshine/Moonlight/Pion/libdatachannel references point toward bounded queues, frame dropping, and RTP-like transport rather than unbounded TCP live display queues. + +Commands: + +```bash +DURATION=10 PROFILE=lan-4k RESOLUTION=3840x2160 FPS=60 BITRATE_MBPS=80 CAPTURE_MAX_IN_FLIGHT_FRAMES=1 RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command +DURATION=8 PROFILE=lan-4k CAPTURE_MAX_IN_FLIGHT_FRAMES=1 RECEIVER_IP=169.254.70.114 RUN_ROOT=... scripts/start_ibridge_virtual_capture.sh +DURATION=8 PROFILE=lan-4k CAPTURE_MAX_IN_FLIGHT_FRAMES=0 RECEIVER_IP=169.254.70.114 RUN_ROOT=... scripts/start_ibridge_virtual_capture.sh +``` + +Results: +- `lan-4k` now maps to `3840x2160@60`, HEVC, 80Mbps. +- Auto display selection chose the largest non-origin extended display: `display_index=0`, `3840x2160`. +- Static/mostly-static 10s package run: requested/submitted/encoded `600/25/25`, send failures `0`, p95 encode `22.979 ms`, p95 send `0.678 ms`. +- Motion comparison, capture backpressure `1`: requested/submitted/encoded `480/74/74`, send failures `0`, p95 encode `19.090 ms`, p95 send `1.801 ms`. +- Motion comparison, no capture backpressure: requested/submitted/encoded `480/48/48`, send failures `0`, p95 encode `52.175 ms`, p95 send `1.866 ms`. + +Interpretation: +- 4K60 is the correct target profile for the user's BetterDisplay setup. +- The current direct LAN path is not the bottleneck; encode/capture pacing is. +- Capture backpressure materially improves tail latency and should stay enabled for 4K60. +- This is not yet a full smooth 60fps result because ScreenCaptureKit did not submit all requested frames in the short motion tests. + +Artifacts: +- `benchmarks/runs/2026-05-17_4k60_virtual_motion_comparison.md` + +## 2026-05-17 10:12 — immediate 2017 iMac connection probe + +Prompt: user asked whether the iMac is immediately connectable and asked to keep working until quality testing is possible. + +Commands: + +```bash +scripts/start_2017_imac_receiver_macos.sh +DURATION=3 PROFILE=lan-4k RECEIVER_IP=169.254.70.114 RUN_ROOT=benchmarks/runs/2026-05-17_4k60_immediate_path_probe scripts/start_ibridge_virtual_capture.sh +``` + +Results: +- Latest receiver was built for `x86_64`, copied to the 2017 iMac, started fullscreen with `--hide-status`, and verified listening on TCP `48320`. +- Alpha package receiver app now verifies as a universal binary with `x86_64` and `arm64`. +- BetterDisplay `Virtual 16:9` is visible as physical `3840x2160 @ 60Hz`; current HiDPI UI mode is `1920x1080`. +- ScreenCaptureKit listed the virtual display as `display_index=1`, `1920x1080`; iBridge requested `3840x2160@60` encode for the stream. +- Sender requested/submitted/encoded `180/26/26`, failed frames `0`, sender drops `0`, send failures `0`, p95 encode `24.576 ms`, p95 send `3.080 ms`. + +Interpretation: +- The 2017 iMac is immediately connectable now. +- This is a connection/readiness probe, not a final quality pass. +- Manual quality testing can start by moving real windows onto BetterDisplay `Virtual 16:9`, while automated text/motion scene placement still needs hardening. + +Artifacts: +- `benchmarks/runs/2026-05-17_4k60_immediate_path_probe/summary.md` diff --git a/logs/power_probe.md b/logs/power_probe.md new file mode 100644 index 0000000..98a49de --- /dev/null +++ b/logs/power_probe.md @@ -0,0 +1,86 @@ +# Power Probe + +Prompt: `prompts/08_POWER_PROBE.md` + +Purpose: determine whether iMac USB-A or Thunderbolt 2 connections provide useful power to the MacBook during iBridge use. + +Important distinction: + +- `charging`: battery percentage increases during the test window. +- `sustaining`: battery percentage is effectively flat during active streaming. +- `slowing drain`: battery still decreases, but slower than no-cable baseline. +- `no useful power`: no measurable improvement over no-cable baseline. + +Do not classify a setup as charging from the macOS "power connected" UI alone. + +## Collection Script + +Run: + +```bash +scripts/mac_power_probe.sh +``` + +Artifacts are written under `logs/power//`: + +- `pmset_batt.txt` +- `system_profiler_power.txt` +- `ioreg_apple_smart_battery.txt` + +## Current Baseline Snapshot + +Date: 2026-05-15 + +Commands: + +```bash +pmset -g batt +system_profiler SPPowerDataType +ioreg -rn AppleSmartBattery +``` + +Observed current state: + +| Field | Value | +|---|---| +| Power source | Battery Power | +| Battery percent | 98% | +| Charging | No | +| AC charger connected | No | +| `ExternalConnected` | No | +| `ExternalChargeCapable` | No | +| `AppleRawAdapterDetails` | empty | + +Classification: `no cable baseline snapshot`, not a drain-rate test. + +## Manual Test Matrix + +Each case should be measured at idle and during active streaming. Record start/end battery percentage and timestamp. Prefer 30 minutes minimum; 10 minutes is acceptable only as a quick screen. + +| Case | Cable state | Workload | Start time | End time | Start % | End % | Adapter shown? | Wattage shown? | Classification | Notes | +|---|---|---|---|---|---:|---:|---|---|---|---| +| A | no cable | idle | pending | pending | pending | pending | pending | pending | pending | baseline drain | +| B | iMac USB-A -> MacBook USB-C | idle | pending | pending | pending | pending | pending | pending | pending | user observed "power connected" needs measurement | +| C | iMac USB-A -> MacBook USB-C | streaming active | pending | pending | pending | pending | pending | pending | pending | must compare against A | +| D | iMac TB2 -> Apple TB3-to-TB2 -> MacBook USB-C | idle | pending | pending | pending | pending | pending | pending | pending | do not assume charging | +| E | iMac TB2 -> Apple TB3-to-TB2 -> MacBook USB-C | streaming active | pending | pending | pending | pending | pending | pending | pending | must compare against A | +| F | PD hub baseline | idle | pending | pending | pending | pending | pending | pending | pending | positive-control charger | +| G | PD hub baseline | streaming active | pending | pending | pending | pending | pending | pending | pending | positive-control charger | + +## Logging Procedure + +For each cable/workload case: + +1. Connect only the cable setup being tested. +2. Wait 60 seconds for macOS power state to settle. +3. Run `scripts/mac_power_probe.sh`. +4. Record `pmset -g batt` start percentage and timestamp. +5. Keep the workload steady for 10/30/60 minutes. +6. Run `scripts/mac_power_probe.sh` again. +7. Classify by battery trend, not UI icon alone. + +## Known Limits + +- This session cannot physically switch cables while the user is asleep. +- No wattage is measured yet for USB-A or TB2 cases. +- The current snapshot only proves the MacBook Air is presently on battery with no charger detected. diff --git a/logs/questions.md b/logs/questions.md index 63fe6f2..a433dd6 100644 --- a/logs/questions.md +++ b/logs/questions.md @@ -1,3 +1,15 @@ # Questions Open questions for the user. + +## 2026-05-14 22:20 — Plan A hardware measurements + +- What IP address should the MacBook Air use for the Windows iMac receiver when running `scripts/mac_network_probe.sh `? +- Is the Apple Thunderbolt 3 to Thunderbolt 2 adapter plus Thunderbolt 2 cable available for a Thunderbolt Bridge iperf3 run? +- Can the Windows iMac run Visual Studio Build Tools or CMake so `apps/receiver-windows` can be built directly on the receiver machine? + +## 2026-05-17 01:56 — MacBook Air to 2015 iMac prep blockers + +- Can the MacBook Air public key be added to the 2015 iMac `authorized_keys` for the active macOS user? +- Should `/opt/homebrew` on the MacBook Air be repaired/reset later so `iperf3` can be installed locally, or should throughput measurement use another prepared machine? +- Is the 2015 iMac intended to stay booted in macOS for the near-term receiver work, or should Windows receiver comparison remain the immediate target after Wi-Fi reachability? diff --git a/logs/review_gate.md b/logs/review_gate.md new file mode 100644 index 0000000..423ca3a --- /dev/null +++ b/logs/review_gate.md @@ -0,0 +1,683 @@ +# Review Gate + +## 2026-05-15 01:20 — Prompt 09 after Prompt 02 + +Prompt reviewed: `prompts/02_PLAN_A_5K60_FIRST_SPIKE.md` + +## Summary + +Pass with follow-up isolation required. + +Prompt 02 stayed on Plan A and did not downshift to lower resolutions. It produced the required bandwidth theory, Windows synthetic renderer scaffold, transport benchmark plan, and a measured Windows iMac synthetic 5K60 run. The measured dynamic CPU-filled BGRA32 full-frame upload path failed the 5K60 receiver-side gate, but Plan A as a whole is not fully closed until static-frame/no-vsync isolation tests separate CPU fill cost from upload/present cost. + +## Changed Files + +- `apps/receiver-windows/CMakeLists.txt` +- `apps/receiver-windows/README.md` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/theory/5k60_bandwidth.md` +- `benchmarks/plans/windows_synthetic_renderer.md` +- `benchmarks/plans/transport_benchmark.md` +- `benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md` +- `benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/*` +- `logs/experiments.md` +- `logs/questions.md` +- `logs/worklog.md` + +## Verification Commands / Results + +```bash +git diff --check +``` + +Result: passed. + +```powershell +apps\receiver-windows\build\manual\ibridge-receiver.exe --synthetic --resolution 5120x2880 --fps 60 --duration 60 --fullscreen --csv "%RUN_DIR%\receiver_stats.csv" +``` + +Result: ran from the Windows iMac interactive desktop and wrote `receiver_stats.csv`. + +## Benchmarks + +Plan A synthetic local render on iMac Windows: + +| Metric | Value | +|---|---:| +| target fps | 60 | +| actual fps | 36.034 | +| frames | 2163 | +| p95 total frame | 29.0890 ms | +| max total frame | 54.9967 ms | +| missed frames | 2163 / 2163 | +| avg fill | 14.5120 ms | +| avg upload | 12.9730 ms | +| avg draw/present | 0.2519 ms | + +## Known Failures + +- Dynamic 5120x2880 CPU-filled BGRA32 full-frame upload misses every 16.667 ms frame budget. +- SSH-launched D3D11 swapchain creation fails with `0x887a0022`; benchmarks must run from the active Windows console session. +- LAN and Thunderbolt Bridge transport measurements are still pending. + +## Review Questions + +1. Did this stage only do the requested goal? Yes. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes; Windows build and interactive desktop benchmark were run. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No; unresolved transport tests remain pending. +7. Was Plan downshift measured? No downshift yet; measured pressure is recorded. + +## Next Prompt To Run + +`prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md` + +## 2026-05-15 01:35 — Prompt 09 after Prompt 06 + +Prompt reviewed: `prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md` + +## Summary + +Pass for receiver local benchmark milestone; remaining receiver networking/decode work is explicitly open. + +The Windows Receiver now builds on the iMac, opens fullscreen from the active Windows desktop, runs synthetic benchmark modes, logs actual fps and frame timings to CSV, and displays a lightweight HUD overlay. The local D3D11 renderer has been measured at 5K with dynamic, static, GPU-pattern, and uncapped modes. + +## Changed Files + +- `apps/receiver-windows/README.md` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/*` +- `logs/experiments.md` +- `logs/worklog.md` + +## Verification Commands / Results + +Windows iMac build: + +```cmd +cl /nologo /EHsc /std:c++17 /O2 /W4 /DUNICODE /D_UNICODE /DNOMINMAX /DWIN32_LEAN_AND_MEAN apps\receiver-windows\src\main.cpp /Fe:apps\receiver-windows\build\manual\ibridge-receiver.exe /link d3d11.lib dxgi.lib d3dcompiler.lib user32.lib gdi32.lib +``` + +Result: passed. + +Interactive desktop smoke test: + +```cmd +ibridge-receiver.exe --synthetic --resolution 1280x720 --fps 30 --duration 3 --fullscreen --gpu-pattern --csv receiver_stats.csv +``` + +Result: exited 0, `hud=on`, 62.304 fps, 0 missed frames against a 30fps budget. + +## Benchmarks + +| Mode | Actual fps | Avg fill ms | Avg upload ms | Avg draw/present ms | P95 total ms | Missed frames | +|---|---:|---:|---:|---:|---:|---:| +| dynamic_5k60 | 29.979 | 14.4046 | 18.6822 | 0.2685 | 34.2572 | 1799 / 1799 | +| static_once_upload_5k60 | 61.749 | 0.0040 | 0.0168 | 16.1721 | 16.8029 | 1684 / 3705 | +| gpu_pattern_5k60 | 61.140 | 0.0000 | 0.0000 | 16.3543 | 16.7943 | 1724 / 3669 | +| gpu_pattern_uncapped_5k60 | 290.663 | 0.0000 | 0.0000 | 3.4389 | 9.0732 | 0 / 4362 | + +## Known Failures + +- Dynamic CPU-filled 5K BGRA full-frame upload is not viable for 5K60. +- SSH-launched D3D11 windows still cannot substitute for interactive desktop tests. +- Network receive, H.264 decode, HEVC decode, and scaling comparison remain open receiver work. +- HUD is lightweight and smoke-tested, but not yet visually screenshot-verified. + +## Review Questions + +1. Did this stage only do the requested goal? Yes, within Windows Receiver scope. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes, on the Windows iMac. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No. +7. Was Plan downshift measured? Only receiver-path failure pressure was recorded; no full Plan downshift yet. + +## Next Prompt To Run + +`prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md` + +## 2026-05-15 01:45 — Prompt 09 after Prompt 05 + +Prompt reviewed: `prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md` + +## Summary + +Pass for Primary synthetic encode milestone; ScreenCaptureKit capture and transport remain open. + +The macOS Primary now has a SwiftPM CLI that generates synthetic BGRA frames, encodes with VideoToolbox H.264 or HEVC, and writes diagnostics CSV. Both H.264 and HEVC encoded 120/120 frames at a 2560x1440 @ 60fps target over a 2-second run. + +## Changed Files + +- `.gitignore` +- `apps/primary-macos/Package.swift` +- `apps/primary-macos/README.md` +- `apps/primary-macos/Sources/iBridgePrimary/main.swift` +- `benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/*` +- `benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/*` +- `logs/experiments.md` +- `logs/worklog.md` + +## Verification Commands / Results + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Result: passed. + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec h264 --csv benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/primary_stats.csv +``` + +Result: encoded 120/120 frames, 0 failed frames. + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 2560x1440 --fps 60 --duration 2 --codec hevc --csv benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/primary_stats.csv +``` + +Result: encoded 120/120 frames, 0 failed frames. + +## Benchmarks + +| Codec | Frames | Failed | Avg generate ms | Avg encode latency ms | P95 encode latency ms | Max encode latency ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:|---:| +| H.264 | 120 | 0 | 4.894 | 119.916 | 151.081 | 157.933 | 44,277,068 | +| HEVC | 120 | 0 | 4.892 | 133.649 | 162.608 | 169.744 | 43,277,169 | + +## Known Failures + +- Encode callback latency is too high for external-display use. +- ScreenCaptureKit capture is not implemented yet. +- Transport client is not implemented yet. +- Virtual display research remains intentionally separate. + +## Review Questions + +1. Did this stage only do the requested goal? Yes, within the synthetic encode milestone. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes, on the MacBook Air. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No. +7. Was Plan downshift measured? No downshift occurred. + +## Next Prompt To Run + +`prompts/07_PROTOCOL_AND_TRANSPORT.md` + +## 2026-05-15 01:56 — Prompt 09 after Prompt 07 + +Prompt reviewed: `prompts/07_PROTOCOL_AND_TRANSPORT.md` + +## Summary + +Pass for protocol v0 definition and parser-test milestone. + +Protocol v0 now has a concrete TCP control handshake, UDP frame channel shape, TCP frame fallback, ping/echo clock-offset estimate, and fixed binary frame header. The shared parser test locks the 80-byte header layout and verifies wrong magic/wrong version rejection before payload acceptance. + +## Changed Files + +- `apps/shared-protocol/README.md` +- `apps/shared-protocol/protocol_v0.py` +- `apps/shared-protocol/test_protocol_v0.py` +- `specs/protocol_v0.md` +- `logs/worklog.md` + +## Verification Commands / Results + +```bash +python3 apps/shared-protocol/test_protocol_v0.py +``` + +Result: passed, 8 tests. + +```bash +git diff --check +``` + +Result: passed. + +## Benchmarks + +No performance benchmark was required for Prompt 07. This was a protocol/schema/test milestone. + +## Known Failures + +- Protocol v0 is not yet wired into the macOS Primary sender. +- Protocol v0 is not yet wired into the Windows Receiver. +- UDP fragmentation/reassembly, TCP frame fallback runtime code, and clock-probe runtime code are specified but not implemented. +- End-to-end latency cannot be measured until Prompt 03 transport integration exists. + +## Review Questions + +1. Did this stage only do the requested goal? Yes. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes, parser tests ran locally. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No hardware claims were added. +7. Was Plan downshift measured? No downshift occurred. + +## Next Prompt To Run + +`prompts/03_PLAN_B_5K60_PRACTICAL.md` + +## 2026-05-15 02:45 — Prompt 09 after Prompt 03 + +Prompt reviewed: `prompts/03_PLAN_B_5K60_PRACTICAL.md` + +## Summary + +Pass with known decode/render gap. + +Prompt 03 made a real 5K compressed attempt instead of downshifting directly. The macOS Primary can now send protocol v0 TCP frame payloads, and the Windows Receiver can run a no-GUI protocol v0 TCP sink. H.264 5K60 failed at encode with zero payloads. HEVC 5K60 encoded, but latency was far above the 60Hz budget, and the current Tailscale TCP path was far too slow for even a 120Mbps 5K60 compressed stream. + +## Changed Files + +- `apps/primary-macos/README.md` +- `apps/primary-macos/Sources/iBridgePrimary/main.swift` +- `apps/receiver-windows/CMakeLists.txt` +- `apps/receiver-windows/README.md` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/*` +- `benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/*` +- `benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/*` +- `benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/*` +- `logs/experiments.md` +- `logs/worklog.md` + +## Verification Commands / Results + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Result: passed. + +```bash +python3 apps/shared-protocol/test_protocol_v0.py +``` + +Result: passed, 8 tests. + +```bash +git diff --check +``` + +Result: passed. + +Windows iMac MSVC build: + +```cmd +cl /nologo /EHsc /std:c++17 /O2 /W4 /DUNICODE /D_UNICODE /DNOMINMAX /DWIN32_LEAN_AND_MEAN apps\receiver-windows\src\main.cpp /Fe:apps\receiver-windows\build\manual\ibridge-receiver.exe /link d3d11.lib dxgi.lib d3dcompiler.lib user32.lib gdi32.lib ws2_32.lib +``` + +Result: passed. + +## Benchmarks + +| Test | Frames | Failed | Payload bytes | Main result | +|---|---:|---:|---:|---| +| H.264 5K60 TCP | 60 | 60 | 0 | VideoToolbox status -10279 for every frame. | +| HEVC 5K60 local default bitrate | 60 | 0 | 87,013,939 | Avg encode callback latency 116.081 ms. | +| HEVC 5K60 local 120Mbps | 60 | 0 | 15,356,893 | Avg encode callback latency 149.548 ms. | +| HEVC 5K60 TCP 120Mbps | 60 | 0 | 15,356,893 | Receiver got 60/60 frames, but wall time was 38.60 s and measured receive throughput was 3.092 Mbps. | + +## Known Failures + +- Windows compressed decode is not implemented yet, so decode/render latency is not measured. +- H.264 5K60 did not produce payloads on this Primary path. +- HEVC 5K60 encode callback latency is too high for external-display use. +- TCP over the current Tailscale path is too slow for 5K60 compressed streaming. +- Blocking send occurs inside the encode callback and inflates latency; sender queueing is required before any fair end-to-end latency claim. +- Code editor, terminal scroll, and mouse movement visual tests could not be performed because decode/render is not implemented. + +## Review Questions + +1. Did this stage only do the requested goal? Yes, within the Plan B compressed path. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes; macOS build, Windows build, and iMac TCP sink runs were executed. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No; measured results are separated from unmeasured decode/render gaps. +7. Was Plan downshift measured? Yes. Plan C is now justified by H.264 encode failure, HEVC latency, and current transport throughput. + +## Next Prompt To Run + +`prompts/04_PLAN_C_60HZ_SCALED_MODES.md` + +## 2026-05-15 03:02 — Prompt 09 after Prompt 04 + +Prompt reviewed: `prompts/04_PLAN_C_60HZ_SCALED_MODES.md` + +## Summary + +Pass for engineering-mode comparison, with visual quality pending. + +Prompt 04 added receiver source/output resolution separation and `nearest|linear` scaling, then measured the required fallback resolutions against 5120x2880 output. It also measured Primary HEVC 120Mbps local encode cost for each fallback source mode. All receiver static scaled-render runs sustained about 60fps. `3200x1800 @ 60fps, linear` is the temporary engineering default based on the best short-run encode latency, but it is not yet a user-facing default because text screenshots and compressed decode/render are missing. + +## Changed Files + +- `apps/receiver-windows/README.md` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/*` +- `logs/experiments.md` +- `logs/worklog.md` +- `specs/protocol_v0.md` + +## Verification Commands / Results + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Result: passed. + +```bash +python3 apps/shared-protocol/test_protocol_v0.py +``` + +Result: passed, 8 tests. + +```bash +git diff --check +``` + +Result: passed. + +Windows iMac MSVC build: + +```cmd +cl /nologo /EHsc /std:c++17 /O2 /W4 /DUNICODE /D_UNICODE /DNOMINMAX /DWIN32_LEAN_AND_MEAN apps\receiver-windows\src\main.cpp /Fe:apps\receiver-windows\build\manual\ibridge-receiver.exe /link d3d11.lib dxgi.lib d3dcompiler.lib user32.lib gdi32.lib ws2_32.lib +``` + +Result: passed. + +## Benchmarks + +Receiver scaled-render to 5120x2880: + +| Mode | Receiver fps | P95 total ms | Max total ms | +|---|---:|---:|---:| +| 1440p nearest | 59.881 | 17.476 | 25.163 | +| 1440p linear | 59.994 | 17.459 | 23.271 | +| 3200x1800 linear | 59.885 | 17.477 | 31.456 | +| 4K linear | 59.840 | 17.418 | 35.613 | +| 4096x2304 linear | 59.777 | 17.473 | 38.184 | + +Primary HEVC 120Mbps local encode: + +| Mode | Avg generate ms | Avg encode latency ms | P95 encode latency ms | +|---|---:|---:|---:| +| 1440p | 5.389 | 16.876 | 40.792 | +| 3200x1800 | 8.520 | 14.738 | 23.529 | +| 4K | 10.963 | 21.164 | 38.249 | +| 4096x2304 | 12.332 | 27.231 | 48.630 | + +## Known Failures + +- No compressed decode/render path yet, so mode comparison is not end-to-end. +- No screenshot samples or subjective text scores yet. +- Bicubic/sharpen scaling is not implemented; only nearest and linear are available. +- Static scaled-render runs measure present/scaling cost, not video decode cost. + +## Review Questions + +1. Did this stage only do the requested goal? Yes, except screenshot scoring was explicitly left pending because decode/render is absent. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes; Windows iMac and macOS runs were executed. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No. +7. Was Plan downshift measured? Yes; Plan C followed measured Plan B failures. + +## Next Prompt To Run + +`prompts/08_POWER_PROBE.md` + +## 2026-05-15 03:12 — Prompt 09 after Prompt 08 + +Prompt reviewed: `prompts/08_POWER_PROBE.md` + +## Summary + +Pass for probe setup, with physical cable tests pending. + +Prompt 08 added a macOS power collection script and `logs/power_probe.md` with a manual test matrix for no cable, iMac USB-A, iMac TB2-to-TB3 adapter, and PD hub baseline. The current MacBook Air snapshot was measured as battery power at 98%, not charging, with no AC charger connected. + +## Changed Files + +- `.gitignore` +- `logs/power_probe.md` +- `logs/worklog.md` +- `scripts/mac_power_probe.sh` + +## Verification Commands / Results + +```bash +scripts/mac_power_probe.sh +``` + +Result: passed; wrote ignored raw artifacts under `logs/power/2026-05-15_082738/`. + +```bash +pmset -g batt +``` + +Result: Battery Power, 98%, discharging. + +```bash +system_profiler SPPowerDataType +``` + +Result: AC charger connected: No; charging: No. + +```bash +ioreg -rn AppleSmartBattery +``` + +Result: `ExternalConnected` No and `ExternalChargeCapable` No in current baseline snapshot. + +## Benchmarks + +No drain-rate benchmark completed because cable changes require physical intervention. + +## Known Failures + +- USB-A and TB2 power cases are not measured yet. +- Idle vs streaming drain-rate comparisons are not measured yet. +- No wattage can be claimed for iMac USB-A or TB2. +- The current result is only a no-cable/current-state baseline snapshot, not a full power conclusion. + +## Review Questions + +1. Did this stage only do the requested goal? Yes. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes; macOS power commands and script ran locally. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No; cable tests are pending. +7. Was Plan downshift measured? Not applicable. + +## Next Prompt To Run + +`prompts/10_PACKAGING_AND_RELEASE.md` is blocked until compressed decode/render and at least one end-to-end display mode work. Recommended next engineering prompt is a focused decoder/render integration spike, not packaging. + +## 2026-05-15 08:54 — Prompt 09 after focused Plan C pipeline spike setup + +Prompt reviewed: user-requested sender queue, network matrix, low-latency encoder, and decode/render spike setup + +## Summary + +Pass for macOS sender/encoder and benchmark-prep work; partial for Windows decode/render because implementation exists but Windows build/run validation is pending. + +This spike correctly did not proceed to packaging and did not re-center 5K60 single-stream work. It classified earlier transport results as Tailscale / likely Wi-Fi 2.4GHz / TCP early data, added LAN/Thunderbolt matrix scripts for later physical testing, separated VideoToolbox callback timing from TCP send timing, added low-latency encoder specification at session creation, and added an offline Media Foundation decode/render path for the Windows Receiver. + +## Changed Files + +- `apps/primary-macos/README.md` +- `apps/primary-macos/Sources/iBridgePrimary/main.swift` +- `apps/receiver-windows/CMakeLists.txt` +- `apps/receiver-windows/README.md` +- `apps/receiver-windows/src/main.cpp` +- `benchmarks/plans/network_matrix.md` +- `benchmarks/runs/2026-05-15_0854_encoder_lowlatency/*` +- `docs/04_SOURCE_LEDGER.md` +- `docs/current-work.md` +- `logs/experiments.md` +- `logs/worklog.md` +- `scripts/mac_network_matrix.sh` +- `scripts/mac_plan_c_encode_matrix.sh` +- `scripts/windows_network_matrix.ps1` + +## Verification Commands / Results + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Result: passed. + +```bash +apps/primary-macos/.build/release/ibridge-primary --list-encoders +``` + +Result: passed and recorded `benchmarks/runs/primary_encoder_list_latest.txt`. + +```bash +apps/primary-macos/.build/release/ibridge-primary --synthetic --resolution 1280x720 --fps 60 --duration 1 --codec hevc --bitrate-mbps 20 --send-host 127.0.0.1 --send-port 48320 --sender-queue-depth 4 +``` + +Result: loopback TCP drain sent 60/60 frames with no sender drops or send failures. + +```bash +LIMIT_CASES=1 DURATION=1 RUN_ROOT=benchmarks/runs/2026-05-15_encoder_matrix_smoke scripts/mac_plan_c_encode_matrix.sh +``` + +Result: passed one matrix case and wrote summary artifacts. + +Windows MSVC build: skipped. SSH to `100.86.52.88` failed with `Permission denied`, and the MacBook Air does not have Windows SDK headers/libraries. + +## Benchmarks + +| Test | Frames | Failed | Avg encode ms | P95 encode ms | Max encode ms | Payload bytes | +|---|---:|---:|---:|---:|---:|---:| +| HEVC 2560x1440 @ 60, 120Mbps, 5s | 300 | 0 | 13.783 | 13.295 | 103.114 | 14,103,635 | +| HEVC 3200x1800 @ 60, 120Mbps, 5s | 300 | 0 | 24.293 | 65.947 | 110.441 | 22,315,381 | +| H.264 5120x2880 @ 60, 120Mbps, 1s | 60 | 60 | 9.321 | 10.073 | 75.755 | 0 | + +## Known Failures + +- 3200x1800 HEVC did not meet avg encode latency < 20ms in the local sequential run. +- H.264 5K still produced zero payloads. +- Windows compressed file decode/render is implemented but unbuilt/unmeasured on the iMac. +- Protocol v0 live compressed TCP decode/render is not implemented yet. +- LAN, 5GHz Wi-Fi, 1GbE, and Thunderbolt Bridge measurements remain pending physical setup. + +## Review Questions + +1. Did this stage only do the requested goal? Yes; packaging, UDP, tiled 5K, ScreenCaptureKit, and virtual display work were not started. +2. Did it start the next prompt early? No. +3. Was build/run verification real? macOS verification was real; Windows verification is explicitly pending. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No; LAN/TB and Windows decoder support are pending. +7. Was Plan downshift measured? Existing Plan B failures remain recorded; this spike keeps Plan C as the immediate path. + +## Next Prompt To Run + +Focused Windows receiver decode validation and live protocol v0 TCP decode/render integration. Do not run `prompts/10_PACKAGING_AND_RELEASE.md`. + +## 2026-05-15 10:12 — Prompt 09 after MacBook Pro Primary comparison + +Prompt reviewed: user-requested MacBook Pro clone and environment tests + +## Summary + +Pass for MacBook Pro Primary baseline and display/capture smoke testing; live receiver validation remains blocked by Windows iMac SSH/auth and receiver startup. + +The branch was cloned to `/Users/gabriel/Development/iBridge` on the M1 Max MacBook Pro. Local Swift build and protocol tests passed. Current displays include built-in XDR, external portrait display, Sidecar, and external FHD display; all four were captured with `screencapture`. Automatic VideoToolbox low-latency selection was poor on this MBP, but forcing `com.apple.videotoolbox.videoencoder.ave.hevc` while disabling low-latency rate-control produced the best Plan C encode result so far. + +## Changed Files + +- `apps/primary-macos/README.md` +- `apps/primary-macos/Sources/iBridgePrimary/main.swift` +- `benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/*` +- `benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/*` +- `benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/*` +- `benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/*` +- `benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/*` +- `benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/*` +- `docs/current-work.md` +- `logs/experiments.md` +- `logs/worklog.md` + +## Verification Commands / Results + +```bash +swift build --package-path apps/primary-macos -c release +``` + +Result: passed. + +```bash +python3 apps/shared-protocol/test_protocol_v0.py +``` + +Result: passed, 8 tests. + +```bash +apps/primary-macos/.build/release/ibridge-primary --list-encoders +``` + +Result: passed and recorded encoder IDs. + +```bash +screencapture -x -D benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/display_.png +``` + +Result: captured built-in, external portrait, Sidecar, and external FHD displays. + +## Benchmarks + +| Test | Avg encode ms | P95 encode ms | Result | +|---|---:|---:|---| +| HEVC 3200x1800 120Mbps, automatic low-latency | 96.271 | 196.283 | failed for Plan C | +| HEVC 3200x1800 120Mbps, forced `ave.hevc`, no low-latency RC | 16.612 | 16.777 | strongest Plan C signal | +| HEVC 3840x2160 120Mbps, forced `ave.hevc`, no low-latency RC | 21.884 | 22.839 | close but above 20ms avg | +| H.264 5120x2880 120Mbps | 8.309 | 8.684 | failed, payload 0 | + +Display-resolution forced `ave.hevc` probe: + +| Source | Resolution | Avg encode ms | P95 encode ms | +|---|---:|---:|---:| +| Built-in XDR | 3024x1964 | 16.941 | 17.235 | +| External portrait | 1080x1920 | 9.718 | 9.559 | +| Sidecar | 2360x1640 | 16.205 | 17.276 | +| External FHD | 1920x1080 | 9.498 | 9.485 | + +## Known Failures + +- `--encoder-id` combined with `EnableLowLatencyRateControl` returned `VTCompressionSessionCreate -12902` on this MBP. +- `hevc.vcp` forced encoder had very high latency and is not suitable. +- Windows iMac port 22 is open, but SSH auth from the MBP is blocked. +- Receiver port `48320` was not listening during the probe. +- ScreenCaptureKit live capture is still not implemented in iBridge. + +## Review Questions + +1. Did this stage only do the requested goal? Yes; it stayed on MBP environment testing and did not start packaging. +2. Did it start the next prompt early? No. +3. Was build/run verification real? Yes for MBP local tests; Windows live receiver remains pending. +4. Are logs saved? Yes. +5. Were failures hidden? No. +6. Were hardware facts guessed? No; display state and Tailscale behavior were measured. +7. Was Plan downshift measured? Plan C remains the active path; MBP adds a stronger Plan C encode result. + +## Next Prompt To Run + +Authorize MBP SSH to the Windows iMac or manually start the receiver, then run live TCP Plan C using forced `ave.hevc`. Do not run `prompts/10_PACKAGING_AND_RELEASE.md`. diff --git a/logs/worklog.md b/logs/worklog.md index 78f9fbd..8f0e774 100644 --- a/logs/worklog.md +++ b/logs/worklog.md @@ -2,6 +2,81 @@ Codex must append entries here after every meaningful change. +## 2026-05-17 03:40 — Test BetterDisplay virtual screen capture + +Prompt: user configured a BetterDisplay virtual screen and asked to test it +Changed files: +- benchmarks/runs/2026-05-17_virtual_screen_live_4k/summary.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `system_profiler SPDisplaysDataType` confirmed `Virtual 16:9` as extended `3840x2160`, UI looks like `1920x1080 @ 60Hz`. +- [x] `screencapture -x -D 2` captured the virtual screen at `3840x2160`. +- [x] iBridge `--screen-capture --capture-display-index 0 --resolution 3840x2160` captured and sent the virtual screen to the 2017 iMac receiver with 0 send failures. +- [x] iBridge `--screen-capture --capture-display-index 0 --resolution 1920x1080` downscaled and sent the virtual screen to the 2017 iMac receiver with 0 send failures. +Result: +- BetterDisplay virtual screen is now proven as a usable iBridge capture source. +Next: +- Add stable display-name/ID selection and live backpressure/frame dropping. + +## 2026-05-17 02:30 — Continue 2017 iMac live 4K receiver and BetterDisplay check + +Prompt: user request to continue toward MacBook extended display on the 2017 4K iMac and verify whether BetterDisplay solves it +Changed files: +- apps/receiver-macos/Sources/iBridgeReceiverMac/main.swift +- docs/17_BETTERDISPLAY_AND_2017_4K_RECEIVER.md +- docs/current-work.md +- logs/worklog.md +- logs/experiments.md +Verification: +- [x] `swift build --package-path apps/receiver-macos -c release` +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] Remote Intel iMac `swift build --package-path apps/receiver-macos -c release` +- [x] Live `1920x1080@60` HEVC send to 2017 iMac over direct 1GbE: 300/300 encoded, 0 sender drops, 0 send failures, receiver logged 300 frames. +- [x] Live `3840x2160@60` HEVC send to 2017 iMac over direct 1GbE: 720/720 encoded, 0 sender drops, 0 send failures, receiver logged frame receipt and the user observed the iMac screen changing. +- [x] Checked current BetterDisplay public README and local `reference/BetterDisplay` source branch. +Result: +- Live macOS receiver plumbing to the 2017 4K iMac works, but the 4K synthetic run had high encode callback latency and still needs sender backpressure/frame dropping before calling it smooth 4K60. +- BetterDisplay is useful for source-side virtual display / HiDPI setup, but does not replace iBridge's transport and receiver. +Next: +- Add bounded live 4K backpressure/drop policy. +- Connect BetterDisplay-created or clean-room virtual display capture into `ibridge-primary`. + +## 2026-05-15 10:06 — Add local encoder reference clone workspace + +Prompt: user request to clone and study open-source encoding/decoding references +Changed files: +- .gitignore +- reference/README.md +- docs/04_SOURCE_LEDGER.md +- logs/worklog.md +Verification: +- [x] Clone selected reference repositories under ignored `reference/`. +- [x] Search cloned repositories for capture, VideoToolbox, decode, transport, and frame pacing implementation targets. +- [x] Run git status and diff checks. +Result: +- Cloned seven reference repositories and recorded first-pass source map in `reference/README.md`. +Next: +- Decide whether the next iBridge implementation spike should target VideoToolbox property matrix, UDP/FEC transport, or Windows D3D11VA decode/render first. + +## 2026-05-15 10:18 — Expand references for codec and Mac-Mac routes + +Prompt: user clarified encoding/decoding references should be broader, and Mac-Mac should remain in scope if it has advantages +Changed files: +- reference/README.md +- docs/current-work.md +- logs/worklog.md +Verification: +- [x] Cloned additional codec, hardware SDK, Windows decode/render, WebRTC, transport, remote desktop, and macOS virtual display references under ignored `reference/`. +- [x] Recorded commit hashes for the expanded reference set. +- [x] Searched reference set for low-latency codec settings, hardware encode/decode paths, Media Foundation/D3D11VA, WebRTC/RTP packetization, and macOS virtual display APIs. +- [x] Run git status and diff checks. +Result: +- The local reference set now covers Windows and Mac-Mac routes instead of assuming macOS-to-Windows is the only target. +Next: +- Use `reference/README.md` to pick a focused next spike: Mac-Mac virtual display + VideoToolbox path, Windows D3D11VA receiver path, or transport/frame pacing path. + ## 2026-05-14 22:08 — Prompt 00 repo assessment Prompt: prompts/00_MASTER_PROMPT.md @@ -35,3 +110,1016 @@ Result: Next: - Run Windows receiver environment collection on the iMac. - Start prompts/02_PLAN_A_5K60_FIRST_SPIKE.md after receiver/network facts are available or clearly logged as pending. + +## 2026-05-14 22:20 — Prompt 02 Plan A 5K60 first spike + +Prompt: prompts/02_PLAN_A_5K60_FIRST_SPIKE.md +Changed files: +- apps/receiver-windows/CMakeLists.txt +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- benchmarks/theory/5k60_bandwidth.md +- benchmarks/plans/windows_synthetic_renderer.md +- benchmarks/plans/transport_benchmark.md +- benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md +- logs/experiments.md +- logs/questions.md +- logs/worklog.md +Verification: +- [x] Calculated 5K60 RGB24, YUV 4:2:0, and BGRA32 bandwidth with shell arithmetic. +- [x] Created a no-network Windows D3D11 synthetic renderer scaffold for 5120x2880 frame upload/draw/present timing. +- [x] Created Plan A transport benchmark plan for LAN and Thunderbolt Bridge iperf3/ping. +- [x] Wrote pending benchmark summary under benchmarks/runs/2026-05-14_2220_plan_a_pending/summary.md. +- [ ] Windows build/run skipped because this MacBook Air session does not have CMake, Windows SDK headers, or the Windows iMac receiver environment. +Result: +- Plan A is not downshifted. Raw RGB24 over 1GbE/TB2 looks mathematically constrained, but receiver render and measured transport data are still required. +Next: +- Build and run the synthetic renderer on the Windows iMac, then record receiver_stats.csv and a measured summary. + +## 2026-05-15 01:07 — Record Plan A Windows synthetic benchmark result + +Prompt: prompts/02_PLAN_A_5K60_FIRST_SPIKE.md +Changed files: +- benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/console.txt +- benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/receiver_stats.csv +- benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/run_status.txt +- benchmarks/runs/2026-05-15_0107_plan_a_synthetic_5k60/summary.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] Pulled result zip from Windows iMac over SSH/SCP. +- [x] Parsed console output and receiver_stats.csv. +- [x] Recorded actual fps, p95/max frame time, missed frame count, and likely bottleneck. +Result: +- Dynamic 5120x2880 CPU-filled BGRA32 full-frame upload measured 36.034 fps and missed every 16.667 ms frame budget. +Next: +- Run static-frame and no-vsync static-frame isolation variants from the iMac interactive desktop. + +## 2026-05-15 01:20 — Prompt 09 review gate after Plan A spike + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Prompt 02 against build/run/log/downshift criteria. +- [x] Confirmed measured Windows iMac result exists. +- [x] Confirmed no Plan A downshift was made without isolation follow-up. +Result: +- Prompt 02 passes review with required static/no-vsync isolation follow-up before Plan A closure. +Next: +- Start prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md. + +## 2026-05-15 01:26 — Prompt 06 receiver synthetic isolation modes + +Prompt: prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md +Changed files: +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- benchmarks/runs/2026-05-15_0126_receiver_isolation_suite/* +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] Rebuilt `ibridge-receiver.exe` on Windows iMac with MSVC. +- [x] Ran dynamic 5K60, static once-upload 5K60, GPU-pattern 5K60, and GPU-pattern uncapped 5K60 from the active console session. +- [x] Recorded receiver CSV/console/status artifacts and summary. +Result: +- Dynamic CPU-filled full-frame BGRA upload measured 29.979 fps and failed the 5K60 frame budget. +- Static once-upload and GPU-pattern vsync modes reached about 61 fps. +- GPU-pattern no-vsync uncapped reached 290.663 fps. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 06, then proceed to Prompt 05 if review passes. + +## 2026-05-15 01:32 — Add receiver HUD overlay + +Prompt: prompts/06_WINDOWS_RECEIVER_IMPLEMENTATION.md +Changed files: +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] Rebuilt `ibridge-receiver.exe` on Windows iMac with MSVC. +- [x] Ran interactive desktop HUD smoke test through Task Scheduler. +- [x] Smoke test exited with code 0 and reported `hud=on`. +Result: +- Receiver fullscreen synthetic runs now show a top-left HUD with mode, running fps, total frame time, fill time, upload time, and present time. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 06. + +## 2026-05-15 01:35 — Prompt 09 review gate after Windows receiver milestone + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed receiver build, interactive runs, benchmarks, logs, and known failures. +- [x] Confirmed network/decode/scaling receiver tasks remain explicitly open. +Result: +- Windows Receiver local benchmark milestone passes review; proceed to macOS Primary implementation while preserving receiver follow-ups. +Next: +- Start prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md. + +## 2026-05-15 01:40 — Prompt 05 macOS Primary synthetic encoder + +Prompt: prompts/05_PRIMARY_MACOS_IMPLEMENTATION.md +Changed files: +- apps/primary-macos/Package.swift +- apps/primary-macos/README.md +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- benchmarks/runs/2026-05-15_0140_primary_1440p60_h264/* +- benchmarks/runs/2026-05-15_0140_primary_1440p60_hevc/* +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] H.264 synthetic 2560x1440 @ 60 target for 2 seconds encoded 120/120 frames. +- [x] HEVC synthetic 2560x1440 @ 60 target for 2 seconds encoded 120/120 frames. +Result: +- Primary synthetic source and VideoToolbox H.264/HEVC paths are functional. +- First encode latency measurements are too high for product use and require low-latency tuning. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 05. + +## 2026-05-15 01:45 — Prompt 09 review gate after macOS Primary milestone + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Primary build, H.264/HEVC encode runs, benchmark summaries, and open failures. +Result: +- macOS Primary synthetic encode milestone passes review; ScreenCaptureKit capture and transport remain open. +Next: +- Start prompts/07_PROTOCOL_AND_TRANSPORT.md. + +## 2026-05-15 01:52 — Prompt 07 protocol v0 and parser tests + +Prompt: prompts/07_PROTOCOL_AND_TRANSPORT.md +Changed files: +- apps/shared-protocol/README.md +- apps/shared-protocol/protocol_v0.py +- apps/shared-protocol/test_protocol_v0.py +- specs/protocol_v0.md +- logs/worklog.md +Verification: +- [x] `python3 apps/shared-protocol/test_protocol_v0.py` +- [x] `git diff --check` +Result: +- Protocol v0 now defines TCP control negotiation, UDP frame chunks, TCP frame fallback, ping/echo clock-offset estimation, fixed 80-byte frame header, frame ids, timestamps, keyframe/config flags, payload length, and dropped-frame counters. +- Shared parser tests caught and fixed an initial header-size mismatch before commit. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 07. + +## 2026-05-15 01:56 — Prompt 09 review gate after protocol milestone + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Prompt 07 against protocol fields, parser tests, version rejection, scope, and known runtime gaps. +Result: +- Protocol v0 parser/spec milestone passes review. Runtime sender/receiver integration remains open for Prompt 03. +Next: +- Start prompts/03_PLAN_B_5K60_PRACTICAL.md. + +## 2026-05-15 02:38 — Prompt 03 Plan B compressed transport attempt + +Prompt: prompts/03_PLAN_B_5K60_PRACTICAL.md +Changed files: +- apps/primary-macos/README.md +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/receiver-windows/CMakeLists.txt +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- benchmarks/runs/2026-05-15_0210_plan_b_5k_h264_tcp/* +- benchmarks/runs/2026-05-15_0220_plan_b_5k_hevc_local60/* +- benchmarks/runs/2026-05-15_0235_plan_b_5k_hevc_120mbps_local/* +- benchmarks/runs/2026-05-15_0238_plan_b_5k_hevc_120mbps_tcp/* +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] Windows MSVC build of `ibridge-receiver.exe` +- [x] H.264 5120x2880 @ 60 target encode/TCP attempt +- [x] HEVC 5120x2880 @ 60 target local encode attempt +- [x] HEVC 5120x2880 @ 60 target, 120Mbps, TCP sink attempt +Result: +- H.264 5K60 produced zero payloads with status -10279. +- HEVC 5K60 encoded locally, but encode latency was too high for 60Hz. +- HEVC 5K60 120Mbps TCP reached the Windows sink with all 60 frames, but took 38.60 seconds and measured only 3.092 Mbps receive throughput on the current path. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 03 before moving to Plan C. + +## 2026-05-15 02:45 — Prompt 09 review gate after Plan B + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Prompt 03 against 5K compressed attempt, build/run/log, failure classification, and downshift criteria. +Result: +- Prompt 03 passes as a measured failed Plan B attempt with decode/render gap explicitly open. +Next: +- Start prompts/04_PLAN_C_60HZ_SCALED_MODES.md. + +## 2026-05-15 02:55 — Prompt 04 Plan C scaled modes + +Prompt: prompts/04_PLAN_C_60HZ_SCALED_MODES.md +Changed files: +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- benchmarks/runs/2026-05-15_0255_plan_c_scaled_modes/* +- logs/experiments.md +- logs/worklog.md +- specs/protocol_v0.md +Verification: +- [x] Windows MSVC build of `ibridge-receiver.exe` +- [x] iMac Windows D3D11 scaled-render suite through Task Scheduler +- [x] macOS Primary HEVC 120Mbps local encode suite +Result: +- All receiver scaled-render modes reached about 60fps. +- 3200x1800 had the best short-run Primary HEVC encode latency. +- Screenshot/text-quality scoring remains pending because compressed decode/render is not implemented. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 04. + +## 2026-05-15 03:02 — Prompt 09 review gate after Plan C + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Prompt 04 against mode comparison, logs, build/run verification, and visual-quality gaps. +Result: +- Prompt 04 passes as an engineering comparison; screenshot/text-quality scoring remains pending. +Next: +- Start prompts/08_POWER_PROBE.md. + +## 2026-05-15 03:08 — Prompt 08 power probe setup + +Prompt: prompts/08_POWER_PROBE.md +Changed files: +- logs/power_probe.md +- logs/worklog.md +- scripts/mac_power_probe.sh +Verification: +- [x] `scripts/mac_power_probe.sh` +- [x] `pmset -g batt` +- [x] `system_profiler SPPowerDataType` +- [x] `ioreg -rn AppleSmartBattery` +Result: +- Current MacBook Air snapshot is battery power, 98%, not charging, no AC charger connected. +- Manual test matrix is documented for no cable, iMac USB-A, iMac TB2 adapter, and PD hub baseline across idle/streaming workloads. +Next: +- Run prompts/09_REVIEW_GATE.md for Prompt 08. + +## 2026-05-15 03:12 — Prompt 09 review gate after power probe + +Prompt: prompts/09_REVIEW_GATE.md +Changed files: +- logs/review_gate.md +- logs/worklog.md +Verification: +- [x] Reviewed Prompt 08 against script, current baseline, manual matrix, and no-wattage-claim rule. +Result: +- Prompt 08 passes as a setup/current-snapshot probe; physical cable/drain-rate tests remain pending. +Next: +- Do not run prompts/10_PACKAGING_AND_RELEASE.md until an end-to-end display mode works. + +## 2026-05-15 08:54 — Focused Plan C pipeline spike setup + +Prompt: user-requested Plan C end-to-end preparation after Plan B/Plan C findings +Changed files: +- apps/primary-macos/README.md +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/receiver-windows/CMakeLists.txt +- apps/receiver-windows/README.md +- apps/receiver-windows/src/main.cpp +- benchmarks/plans/network_matrix.md +- benchmarks/runs/2026-05-15_0854_encoder_lowlatency/* +- benchmarks/runs/2026-05-15_encoder_matrix_smoke/* +- benchmarks/runs/2026-05-15_primary_lowlatency_smoke/* +- benchmarks/runs/2026-05-15_sender_queue_loopback_smoke/* +- benchmarks/runs/primary_encoder_list_latest.txt +- docs/04_SOURCE_LEDGER.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/mac_network_matrix.sh +- scripts/mac_plan_c_encode_matrix.sh +- scripts/windows_network_matrix.ps1 +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `ibridge-primary --list-encoders` +- [x] `ibridge-primary` HEVC 2560x1440 120Mbps 5s local encode +- [x] `ibridge-primary` HEVC 3200x1800 120Mbps 5s local encode +- [x] `ibridge-primary` H.264 5120x2880 120Mbps 1s probe +- [x] Loopback TCP drain with `nc` confirmed async sender queue records send timing without receiver app. +- [x] `LIMIT_CASES=1 DURATION=1 scripts/mac_plan_c_encode_matrix.sh` +- [ ] Windows MSVC build skipped because SSH to `100.86.52.88` failed with `Permission denied` and this MacBook Air does not have the Windows SDK. +- [ ] LAN/Thunderbolt Bridge network matrix skipped because physical cables are not attached in this session. +Result: +- Primary callback timing and socket send timing are now separated in CSV diagnostics. +- Network matrix docs/scripts leave explicit room for 5GHz Wi-Fi, 1GbE LAN, Thunderbolt Bridge, and Tailscale direct/relay tests. +- Offline Windows compressed file decode/render path is implemented but not yet built on Windows. +Next: +- Build the receiver on Windows and run `--decode-file` with a known-good compressed sample. +- Extend decode from offline files to protocol v0 TCP payloads. +- Run live Plan C end-to-end before UDP or tiled 5K work. + +## 2026-05-15 10:12 — MacBook Pro Primary comparison + +Prompt: user requested cloning iBridge to the MacBook Pro and testing the MBP environment +Changed files: +- apps/primary-macos/README.md +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- benchmarks/runs/2026-05-15_0950_mbp_environment_baseline/* +- benchmarks/runs/2026-05-15_0952_mbp_encoder_baseline/* +- benchmarks/runs/2026-05-15_1000_mbp_encoder_id_probe/* +- benchmarks/runs/2026-05-15_1005_mbp_to_imac_tailscale_probe/* +- benchmarks/runs/2026-05-15_1010_mbp_display_capture_smoke/* +- benchmarks/runs/2026-05-15_1012_mbp_display_resolution_encode/* +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] Cloned `feat/plan-a-5k60-benchmark` into `/Users/gabriel/Development/iBridge`. +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `python3 apps/shared-protocol/test_protocol_v0.py` +- [x] `ibridge-primary --list-encoders` +- [x] MBP automatic encoder baseline for HEVC/H.264 Plan C modes. +- [x] Added and built `--encoder-id` option for VideoToolbox encoder isolation. +- [x] MBP forced `ave.hevc` encoder probe. +- [x] `screencapture` captured built-in, external portrait, Sidecar, and external FHD displays. +- [x] Display-resolution synthetic encode probe for all four active displays. +- [x] Tailscale reachability probe to Windows iMac. +- [ ] Live receiver send/decode test skipped because Windows iMac receiver port `48320` was not listening and SSH auth from this MBP is blocked. +Result: +- Best MBP Plan C result is HEVC 3200x1800 @ 60, 120Mbps with forced `com.apple.videotoolbox.videoencoder.ave.hevc` and low-latency rate-control disabled: avg encode 16.612 ms, p95 16.777 ms. +- H.264 5K still fails with payload 0. +- Sidecar and both external displays are visible to macOS and capturable by `screencapture`, but iBridge live ScreenCaptureKit capture is not implemented yet. +Next: +- Authorize MBP SSH key on the Windows iMac or manually start the receiver on the iMac. +- Run live TCP Plan C from MBP using forced `ave.hevc`. +- Keep LAN/Thunderbolt Bridge tests separate from Tailscale. + +## 2026-05-15 10:40 — Reference technology analysis and iMac prep + +Prompt: user requested deeper reference analysis and actionable prep before physical iMac access +Changed files: +- docs/04_SOURCE_LEDGER.md +- docs/11_REFERENCE_TECH_ANALYSIS.md +- docs/12_IMAC_SETUP_PREP.md +- docs/current-work.md +- logs/worklog.md +- reference/README.md +- scripts/windows_imac_setup_inventory.ps1 +Verification: +- [x] Removed nested `.git` directories from ignored `reference/` clones. +- [x] Confirmed no nested `.git` directories remain under `reference/`. +- [x] Reviewed reference implementations for virtual displays, ScreenCaptureKit, VideoToolbox properties, Annex-B adaptation, UDP/RTP packetization, frame pacing, and D3D11VA decode/render. +- [x] Added a Windows iMac inventory script that avoids printing SSH key contents or environment secrets. +Result: +- Reference analysis now maps mature implementations to iBridge-specific next spikes instead of only listing repositories. +- Mac-to-Mac is treated as a first-class route, with local Mac virtual-display smoke testing identified as the safest immediate experiment. +- Remote macOS installation/boot switching is classified as unsafe until an existing macOS volume and remote recovery path are confirmed. +Next: +- Run the Windows inventory script from RDP or an already-authorized shell on the iMac. +- Choose the next implementation spike: VT property matrix plus Annex-B fixture path, or Windows compressed decode/render smoke. + +## 2026-05-15 11:00 — Encoding-first VT property spike + +Prompt: user challenged whether Plan A/B encode is satisfied before any iMac connection +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/primary-macos/README.md +- benchmarks/runs/2026-05-15_1056_vt_property_matrix/* +- benchmarks/runs/2026-05-15_1058_vt_targeted_sustain/* +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/mac_vt_property_matrix.sh +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `python3 apps/shared-protocol/test_protocol_v0.py` +- [x] `bash -n scripts/mac_vt_property_matrix.sh` +- [x] `DURATION=2 FPS=60 scripts/mac_vt_property_matrix.sh` +- [x] Targeted 5-second sustained probes for 3200x1800, 3840x2160, 4096x2304, and 5120x2880. +Result: +- Added explicit VT controls for temporal compression, frame reordering, open GOP, speed priority, max frame delay count, DataRateLimits, and Annex-B payload extraction. +- Corrected default encode policy to allow temporal compression while keeping frame reordering disabled. +- Plan B 5K60 still fails before receiver connection: best 5K sustained probe was avg 100.617 ms, p95 119.982 ms. +- 3200x1800 and 3840x2160 with forced `ave.hevc`, no low-latency RC, and DataRateLimits fit the synthetic encode-only 60 Hz budget in the 5-second probe. +Next: +- Compare these settings against real ScreenCaptureKit/IOSurface frames before proceeding deeper into receiver integration. + +## 2026-05-15 11:32 — Encode source strategy matrix + +Prompt: user requested tests for ScreenCaptureKit/IOSurface, NV12 input, unchanged-frame skipping, tiled encoding, and 5K45/5K30 before iMac connection +Changed files: +- apps/primary-macos/Package.swift +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/primary-macos/README.md +- benchmarks/runs/2026-05-15_1129_encode_strategy_matrix/* +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/mac_encode_strategy_matrix.sh +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `bash -n scripts/mac_encode_strategy_matrix.sh` +- [x] `DURATION=3 scripts/mac_encode_strategy_matrix.sh` +- [x] Targeted ScreenCaptureKit 5120x2880 @ 60 follow-up. +Result: +- Added source modes for `synthetic-bgra`, `synthetic-nv12`, `synthetic-static-skip`, and `screen-capture`. +- ScreenCaptureKit real capture can now feed VideoToolbox directly. +- Single-session 5K60 HEVC still fails badly even with ScreenCaptureKit and NV12-style improvements. +- 3840x2160 and 4096x2304 NV12 synthetic 60Hz look strong; ScreenCaptureKit 4K60 is close but p95 is still above 16.67 ms in this 3s run. +- 2x2 tiled 5K60 approximation shows per-tile encode latency inside the 60Hz budget, but tiled protocol/recomposition is not implemented. +Next: +- Treat tiled encoding as the next Plan B experiment if preserving 5K logical resolution matters. +- Treat 4096x2304 or 3840x2160 as the stronger single-session 60Hz fallback candidates. + +## 2026-05-15 11:45 — In-process tiled encode follow-up + +Prompt: user asked whether NV12 4K/4096x2304 and tiled encoding were actually tested, then asked to continue the next step +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/primary-macos/README.md +- benchmarks/runs/2026-05-15_1138_inprocess_tiled_5k60/* +- benchmarks/runs/2026-05-15_1140_inprocess_tiled_reuse_5k60/* +- benchmarks/runs/2026-05-15_1141_inprocess_tiled_reuse_steady_5k60/* +- benchmarks/runs/2026-05-15_1141_inprocess_tiled_long_gop_5k60/* +- benchmarks/runs/2026-05-15_1142_inprocess_tiled_h264_5k60/* +- benchmarks/runs/2026-05-15_1143_sck_4096x2304_duration_5s/* +- benchmarks/runs/2026-05-15_1144_sck_3840x2160_duration_5s/* +- benchmarks/runs/2026-05-15_1144_nv12_3840x2160_5s_solo/* +- benchmarks/runs/2026-05-15_1144_nv12_4096x2304_5s_solo/* +- benchmarks/runs/2026-05-15_1144_encode_followup/summary.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/mac_encode_strategy_matrix.sh +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] In-process 2x2 HEVC tiled 5K60 fresh NV12 tile probe. +- [x] In-process 2x2 HEVC tiled 5K60 reusable-buffer lower-bound probes. +- [x] In-process 2x2 H.264 tiled 5K60 probe. +- [x] ScreenCaptureKit 3840x2160 and 4096x2304 duration-based probes. +- [x] Solo synthetic NV12 3840x2160 and 4096x2304 5-second sustained probes. +Result: +- `synthetic-nv12-tiled` now measures synchronized logical-frame completion time inside one Primary process. +- Solo synthetic NV12 3840x2160 @ 60 passes 5-second encode budget: avg 11.297 ms, p95 11.665 ms. +- Solo synthetic NV12 4096x2304 @ 60 passes 5-second encode budget: avg 12.629 ms, p95 12.957 ms. +- In-process 2x2 HEVC tiled 5K60 has a promising short-run lower bound, but fails sustained 5-second testing due to accumulated VideoToolbox latency after about 3 seconds. +- In-process 2x2 H.264 tiled 5K60 is not viable. +- ScreenCaptureKit duration probes show fewer than target frames on a static screen; treat SCK as changed-frame driven, not as proof of continuous 60fps full-frame capture. +Next: +- Prefer single-session 4096x2304 or 3840x2160 for the next receiver/decode step. +- Keep tiled 5K60 as a research branch only until backpressure/drop/staggering can keep four sessions sustainable. + +## 2026-05-15 12:13 — Tiled 5K60 backpressure and reset probe + +Prompt: user asked to continue from the previous tiled 5K60 result and investigate it first because Plan A targets 5K60 +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- apps/primary-macos/README.md +- scripts/mac_encode_strategy_matrix.sh +- benchmarks/runs/2026-05-15_1206_tiled_5k60_backpressure_probe/* +- benchmarks/runs/2026-05-15_1207_tiled_5k60_pts_fix_probe/* +- benchmarks/runs/2026-05-15_1209_tiled_5k60_tile_shape_probe/* +- benchmarks/runs/2026-05-15_1211_tiled_5k60_session_reset_probe/* +- benchmarks/runs/2026-05-15_1212_tiled_5k60_reset_sustain_10s/* +- benchmarks/runs/2026-05-15_1213_tiled_5k60_reset_sustain_30s/* +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] 2x2 tiled 5K60 backpressure matrix. +- [x] 2x2 tiled 5K60 PTS-fix probe. +- [x] 1x4/2x2/4x1/4x2/2x4 tile-shape probe. +- [x] 2x2 session-reset probe. +- [x] 10-second 2x2 reset150/inflight1 sustained probe at 30Mbps/tile and 60Mbps/tile. +- [x] 30-second 2x2 reset150/inflight1 sustained probe at 30Mbps/tile. +Result: +- Fixed the in-process tiled benchmark PTS bug: each tile encoder now gets per-session logical-frame PTS instead of interleaved global frame IDs. +- Added `--tile-max-inflight-logical-frames` and `--tile-reset-every-frames`. +- No-reset tiled 5K60 still fails sustained 5-second p95 after about frame 180. +- `2x2`, `30Mbps/tile`, `reset150`, `inflight1` sustained 30 seconds at effective 60.002fps with avg 12.374 ms and p95 12.920 ms. +- Reset-frame max spikes remain around 100-133 ms and are the main caveat before this can become a smooth display path. +Next: +- Keep tiled 5K60 as the top Plan B prototype candidate if preserving full 5120x2880 logical resolution matters. +- Investigate reset-spike mitigation before receiver work, or design the receiver protocol so reset/keyframe spikes can be dropped, hidden, or staggered. +- Add tiled metadata/decode/recomposition only after deciding how to handle reset spikes. + +## 2026-05-15 12:22 — Tiled 5K60 strategy and reset180 probe + +Prompt: user asked whether 2x2 tiled 5K60 is viable and asked to search current encoding trends while improving the approach +Changed files: +- docs/04_SOURCE_LEDGER.md +- docs/13_TILED_5K60_STRATEGY.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/analyze_tiled_deadline.py +- benchmarks/runs/2026-05-15_1220_tiled_5k60_reset_interval_probe/* +- benchmarks/runs/2026-05-15_1222_tiled_5k60_reset180_sustain_30s/* +Verification: +- [x] Searched Apple and NVIDIA primary/official sources for VideoToolbox, ScreenCaptureKit queue behavior, split-frame encoding, and low-latency HEVC trends. +- [x] `scripts/analyze_tiled_deadline.py` generated deadline analysis for the reset180 30-second run. +- [x] 20-second reset interval probe for reset150/reset180/reset210. +- [x] 30-second reset180 sustain probe. +Result: +- reset180/inflight1 improved the tiled HEVC path to 30-second avg 12.100 ms, p95 12.690 ms, effective 60.009 fps. +- reset210 failed p95, so the useful reset interval is currently around 180 logical frames. +- Deadline analysis shows only 18/1800 logical frames exceed 16.67 ms and 10/1800 exceed 33.33 ms. +- Current encoding trends support the manual tiled direction: NVIDIA's current split-frame encoding for HEVC/AV1 uses independent frame partitions to increase single-stream speed when one encoder is not enough. +Next: +- Build receiver-side tiled composition with stale-tile reuse and HUD counters before trying full tiled decode. +- Add tiled protocol metadata after the synthetic receiver composition path is clear. + +## 2026-05-15 12:54 — Sender transmission profile matrix + +Prompt: user corrected the next step away from Windows tiled rendering and toward sender-side profiles for M1 Max/M1 Air wired/wireless combinations. +Changed files: +- docs/04_SOURCE_LEDGER.md +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- scripts/mac_transmission_profile_matrix.sh +- benchmarks/runs/2026-05-15_1258_transmission_profile_matrix/* +Verification: +- [x] Searched current Apple official sources for M1 Max media engines, M1 media engine context, current MacBook Pro AV1 decode direction, M1 Air ports/Wi-Fi, Thunderbolt Bridge, and iMac 2015 connection limits. +- [x] `bash -n scripts/mac_transmission_profile_matrix.sh` +- [x] `DEVICE_PROFILE=m1max PROFILE_SET=quick DURATION=5 RUN_ROOT=benchmarks/runs/2026-05-15_1258_transmission_profile_matrix scripts/mac_transmission_profile_matrix.sh` +Result: +- Added an encode-first transmission profile matrix for M1 Max/M1 Air and wired/wireless paths. +- Added a repeatable sender profile benchmark script that records sanitized system profile data, encoder list, per-case logs, summary CSV, and tiled deadline analysis. +- Current M1 Max quick retest keeps 2x2 tiled HEVC 5K60 promising: avg 12.501 ms, p95 13.222 ms, effective 60.040 fps; 2/300 logical frames exceeded 16.67 ms. +- Current single-stream fallback retests were slower than earlier runs, so 4096x2304/3200x1800 should be re-isolated before becoming default profiles. +Next: +- Run the Air profile set on the M1 Air. +- Run wired M1 Max tests after Thunderbolt Bridge or 1GbE is physically connected. +- Defer receiver decode/recomposition work until sender profiles and iMac OS-specific decode targets are clearer. + +## 2026-05-15 13:40 — Single-stream fallback stability isolation + +Prompt: user asked MBP Codex to continue with M1 Max single-stream, wired/wireless profile, and later decode planning work while waiting for cables and M1 Air results. +Changed files: +- scripts/mac_single_stream_stability_matrix.sh +- scripts/mac_transmission_profile_matrix.sh +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- benchmarks/runs/2026-05-15_1330_single_stream_stability_unset/* +- benchmarks/runs/2026-05-15_1333_single_stream_stability_speed_on/* +- benchmarks/runs/2026-05-15_1338_transmission_profile_recheck/* +- benchmarks/runs/2026-05-15_1341_post_tiled_recovery/* +Verification: +- [x] `bash -n scripts/mac_single_stream_stability_matrix.sh` +- [x] 3-repeat isolated single-stream matrix with `PRIORITIZE_SPEED=unset` +- [x] 3-repeat isolated single-stream matrix with `PRIORITIZE_SPEED=on` +- [x] Re-ran transmission quick matrix to reproduce slow single-stream after tiled-first order. +Result: +- Added a single-stream stability matrix for 4096x2304, 3840x2160, 3200x1800, and 2560x1440. +- Isolated single-stream HEVC profiles passed p95 <=16.67 ms across all tested repeats. +- Tiled-first mixed-order tests still made immediate single-stream fallback results slow, and 4096x2304 remained slow after a 60-second wait. +- Updated transmission matrix ordering so single-stream probes run before tiled probes. +Next: +- Do not benchmark fallback profiles immediately after tiled 5K60. +- Investigate safe VideoToolbox encoder-service reset/restart before product-mode fallback switching. +- Run network matrices after Thunderbolt Bridge and Ethernet cables arrive. + +## 2026-05-15 13:58 — Encoder service restart probe + +Prompt: continue local MBP work by testing whether post-tiled fallback slowdown can be recovered before cables arrive. +Changed files: +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- benchmarks/runs/2026-05-15_1358_encoder_service_restart_probe/* +Verification: +- [x] Restarted user `VTEncoderXPCService` and reran 4096x2304 fallback. +- [x] Rechecked 4096x2304 after 60 seconds and with `prioritize_speed=unset`. +- [x] Checked 3200x1800 and 2560x1440 post-slow-state fallback behavior. +Result: +- `VTEncoderXPCService` restart did not recover 4096x2304 or 3200x1800 performance after tiled contamination. +- 2560x1440 stayed within budget and is the current safest emergency fallback after tiled 5K60. +Next: +- Treat high-detail fallback switching after tiled 5K60 as unsafe until a stronger reset/session strategy is proven. +- Keep waiting for M1 Air results and physical cable tests for Thunderbolt Bridge / Ethernet. + +## 2026-05-15 14:24 — Encoder reset/session strategy probe + +Prompt: user asked to find stronger encoder reset/session strategies using references. +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- scripts/mac_encoder_reset_strategy_probe.sh +- docs/04_SOURCE_LEDGER.md +- docs/15_ENCODER_RESET_STRATEGY.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe/* +- benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix/* +Verification: +- [x] Searched Apple VideoToolbox docs for compression-session lifecycle, prepare, complete, parallelization, concatenate hints, source frame count, and max frame delay. +- [x] Inspected local FFmpeg, OBS, and Swift Transcoding VideoToolbox references. +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `bash -n scripts/mac_encoder_reset_strategy_probe.sh` +- [x] `DURATION=6 RUN_FALLBACK=1 RUN_ROOT=benchmarks/runs/2026-05-15_1415_encoder_reset_strategy_probe scripts/mac_encoder_reset_strategy_probe.sh` +- [x] `DURATION=6 RUN_FALLBACK=0 RUN_ROOT=benchmarks/runs/2026-05-15_1424_encoder_reset_strategy_probe_summary_fix scripts/mac_encoder_reset_strategy_probe.sh` +Result: +- Added VideoToolbox segment-hint controls: `MoreFramesBeforeStart`, `MoreFramesAfterEnd`, and `SourceFrameCount`. +- Added tiled automatic segment hints and staggered per-tile reset probing. +- Segment hints reduced short-run logical frames over 16.67 ms compared with baseline simultaneous reset. +- Staggered reset lowered the worst max spike but spread reset misses across more logical frames, so it is not the default candidate yet. +- Post-probe high-detail fallback remained slow, but this was not a clean A/B because the machine was already in a post-tiled slow state. +Next: +- From a known-clean login/reboot state, run segment-hints tiled first and immediately test high-detail fallback recovery. +- Keep `2560x1440@60` as the safe emergency fallback until clean-session recovery is proven. + +## 2026-05-15 15:53 — Clean-session fallback gate script + +Prompt: user asked to proceed with the remaining clean-session test. +Changed files: +- scripts/mac_clean_session_encoder_probe.sh +- docs/15_ENCODER_RESET_STRATEGY.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +- benchmarks/runs/2026-05-15_1550_clean_session_probe_guard/* +- benchmarks/runs/2026-05-15_1552_dirty_session_encoder_probe/* +- benchmarks/runs/2026-05-15_1553_dirty_session_encoder_probe_repeat/* +Verification: +- [x] `bash -n scripts/mac_clean_session_encoder_probe.sh` +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] Clean-session guard run skipped current session because uptime was 2936 minutes. +- [x] Dirty current-session control run. +- [x] Dirty current-session repeat run. +Result: +- Added a dedicated clean-session gate script that refuses valid runs after `CLEAN_BOOT_MAX_MINUTES` unless explicitly overridden. +- Current session was not clean enough for the requested proof. +- Dirty controls were mixed: the first run passed high-detail fallback, but the immediate repeat failed 4096x2304/3200x1800 fallback p95 badly. +Next: +- After reboot/login, run `scripts/mac_clean_session_encoder_probe.sh` within 15 minutes and repeat once if it passes. +- Keep product emergency fallback at `2560x1440@60` until both clean runs pass. + +## 2026-05-15 13:18 — M1 Air sender profile matrix + +Prompt: user asked to pull latest branch and run the M1 Air encode-only sender profile matrix +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- benchmarks/runs/2026-05-15_1306_transmission_profile_matrix/* +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `git status -sb` +- [x] `git pull --rebase` +- [x] `hostname && whoami && pwd && sysctl -n hw.model` +- [x] `DEVICE_PROFILE=m1air PROFILE_SET=air DURATION=30 scripts/mac_transmission_profile_matrix.sh` +- [x] `bash -n scripts/mac_transmission_profile_matrix.sh` +- [x] `swift build --package-path apps/primary-macos -c release` +Result: +- The latest branch fast-forwarded cleanly before local work. +- Added `@preconcurrency import ScreenCaptureKit` so Swift 6 can build the benchmark on the M1 Air without treating `SCStream` Sendable warnings as errors. +- M1 Air `2560x1440 @ 60` HEVC passed the sender p95 budget: avg 8.145 ms, p95 9.296 ms, max 20.146 ms. +- M1 Air `3200x1800 @ 60`, `3840x2160 @ 60`, and 2x2 tiled `5120x2880 @ 60` failed the 16.67 ms p95 encode budget. +- The tiled Air probe reached only 41.599 effective logical fps and had 1800/1800 logical frames over 16.67 ms. +Next: +- Treat `2560x1440 @ 60` HEVC as the realistic M1 Air default. +- Keep tiled 5K60 focused on M1 Max/best-wired paths; do not implement an Air-specific tiled receiver path from this result. + +## 2026-05-15 13:45 — Plan next transport gate + +Prompt: user confirmed the MBP vs M1 Air tiled speed gap and asked to plan/proceed with the next step +Changed files: +- benchmarks/runs/2026-05-15_1344_mbp_current_path_probe/* +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `ssh macbook-pro 'hostname; whoami; pwd'` +- [x] `ssh macbook-pro 'cd ~/development/iBridge && git pull --rebase'` +- [x] `ssh macbook-pro 'networksetup -listallhardwareports; ifconfig ...'` +- [x] `ssh macbook-pro 'ping -c 20 100.86.52.88'` +Result: +- MacBook Pro repo is updated to the Air result commit. +- MacBook Pro currently has Wi-Fi active; Thunderbolt Bridge and USB/Ethernet adapter interfaces are inactive. +- Current Tailscale path to the Windows iMac is reachable but jittery: min/avg/max/stddev `9.451/73.839/507.671/107.944 ms`. +Next: +- Run `scripts/mac_network_matrix.sh` on the MacBook Pro only after Thunderbolt Bridge or 1GbE is physically connected and an `iperf3` server is running on the iMac. +- Keep receiver tiled composition deferred until sender profile plus physical transport have a credible path. + +## 2026-05-15 13:51 — Current Tailscale network matrix + +Prompt: user asked to continue the next experiment +Changed files: +- benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix/* +- docs/14_TRANSMISSION_PROFILE_MATRIX.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `ssh macbook-pro 'cd ~/development/iBridge && DURATION=10 RUN_ROOT=benchmarks/runs/2026-05-15_1349_current_tailscale_network_matrix scripts/mac_network_matrix.sh --case tailscale --receiver-ip 100.86.52.88 --tailscale-name 100.86.52.88'` +- [x] Copied the MBP artifact back into this repo and removed the untracked remote copy. +- [x] `bash -n scripts/mac_network_matrix.sh` +Result: +- Current MBP-to-iMac Tailscale path had 100-packet ping loss/jitter: 98/100 received, 2.0% loss, min/avg/max/stddev `8.198/61.867/485.532/58.935 ms`. +- MBP did not have `iperf3` installed, so throughput was not measured. +- MBP SSH shell did not expose `tailscale` CLI, so direct/DERP status was not captured. +Next: +- Install or expose `iperf3` on MBP and iMac before throughput experiments. +- Run the real transport matrix only after Thunderbolt Bridge or 1GbE is active. + +## 2026-05-17 01:56 — MBA to 2015 iMac Wi-Fi prep + +Prompt: user asked this MacBook Air to proceed in parallel on the 2015 iMac connection while MacBook Pro Codex works on the 2017 iMac connection; focus on 5GHz Wi-Fi because Ethernet is not connected. +Changed files: +- benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5/wifi5-2015-imac/* +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/experiments.md +- logs/questions.md +- logs/worklog.md +Verification: +- [x] `git pull --ff-only` +- [x] `tailscale status` +- [x] `ping -c 20 -i 0.2 100.84.32.31` +- [x] `tailscale ping --c 5 100.84.32.31` +- [x] `ping -c 20 -i 0.2 192.168.31.187` +- [x] `RUN_ROOT=benchmarks/runs/2026-05-17_0135_mba_to_2015_imac_wifi5 DURATION=10 scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31` +- [ ] `iperf3` TCP/UDP throughput skipped because MacBook Air does not have `iperf3` and `brew install iperf3` failed on the local Homebrew/macOS 26.5 setup. +Result: +- 2015 iMac current target is `gabriels-imac27-2015`, Tailscale `100.84.32.31`, local Wi-Fi endpoint `192.168.31.187`. +- Local Wi-Fi ping is reachable but jittery: 100/100 received, min/avg/max/stddev `3.819/51.446/420.666/88.334 ms`. +- TCP `22` and `5201` are open; TCP `48320` is refused. +- SSH auth is not ready from this MacBook Air. +Next: +- Authorize the MacBook Air SSH key on the 2015 iMac. +- Repair/install a local throughput tool or use another prepared host for `iperf3`. +- Keep `2560x1440@60` as the only realistic MacBook Air display candidate once receiver transport is stable. + +## 2026-05-17 02:08 — MBA to 2015 iMac Wi-Fi throughput + +Prompt: user installed `iperf3` after Homebrew repair and ran the MacBook Air to 2015 iMac Wi-Fi matrix. +Changed files: +- benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf/wifi5-2015-imac/* +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `iperf3 --version` +- [x] `DURATION=20 RUN_ROOT=benchmarks/runs/2026-05-17_0208_mba_to_2015_imac_iperf scripts/mac_network_matrix.sh --case wifi5-2015-imac --receiver-ip 192.168.31.187 --tailscale-name 100.84.32.31` +Result: +- Ping remains jittery: min/avg/max/stddev `3.690/30.495/258.942/44.687 ms`. +- TCP throughput is `154.09 Mbps` to receiver and `129.43 Mbps` reverse. +- UDP 30/60/120Mbps loss is `0/0.333/0.003%`. +Next: +- Add the MacBook Air SSH key to the 2015 iMac so receiver commands can be started remotely. +- After SSH works, run only a conservative `2560x1440@60` HEVC smoke on Wi-Fi. +- Keep 5K/high-detail/tiled receiver work blocked on Ethernet or Thunderbolt. + +## 2026-05-17 02:24 — 2015 iMac SSH auth fixed + +Prompt: user added the MacBook Air iBridge public key to the 2015 iMac and asked to test. +Changed files: +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/worklog.md +Verification: +- [x] `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'hostname; whoami; sw_vers'` +- [x] `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31 'networksetup -listallhardwareports; ifconfig ...'` +- [x] `iperf3 -c 192.168.31.187 -t 5 --json` +Result: +- SSH works with the active macOS account `oosu`. +- 2015 iMac identity is `oosus-iMac`, macOS `15.7.7`. +- Receiver Wi-Fi is `en1`, local IP `192.168.31.187`, Tailscale IP `100.84.32.31`. +- `caffeinate -dimsu` and `iperf3 -s` are running on the receiver. +- TCP spot check to receiver reached `173.85 Mbps` received. +Next: +- Use `ssh -i ~/.ssh/ibridge_imac_ed25519 oosu@100.84.32.31` for receiver-side commands. +- Run only a conservative MacBook Air `2560x1440@60` HEVC smoke on this Wi-Fi path. + +## 2026-05-17 02:35 — MBA to 2015 iMac macOS receiver visual smoke + +Prompt: user asked to continue after SSH access to the 2015 iMac was fixed. +Changed files: +- apps/receiver-macos/Sources/iBridgeReceiverMac/main.swift +- benchmarks/runs/2026-05-17_0230_mba_to_2015_imac_1440p60_hevc_wifi_smoke/* +- benchmarks/runs/2026-05-17_0232_mba_to_2015_imac_1440p60_hevc_wifi_receiver_smoke/* +- benchmarks/runs/2026-05-17_0235_mba_to_2015_imac_1440p60_hevc_wifi_30s_visual/* +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `swift build --package-path apps/receiver-macos -c release` +- [x] Remote clone/pull/build on `oosu@100.84.32.31` +- [x] Remote receiver listened on TCP `48320` +- [x] 10s sender smoke: `600/600` encoded, `0` send failures, receiver `600` frames +- [x] 30s visual smoke: `1800/1800` encoded, `0` send failures, receiver `1798` frames +Result: +- Added flushed receiver diagnostics so remote logs capture listen, handshake, received frames, missing frames, and total frames. +- The 2015 iMac macOS receiver accepted the 1440p60 HEVC Annex-B protocol v0 stream over Wi-Fi. +- The user reported visible change on the iMac panel. +- The 30s run had 2 sender queue drops and matching receiver missing frames, so this is a functional smoke but not a smooth-display pass. +Next: +- For Wi-Fi-only follow-up, test lower bitrate or deeper sender queue to see whether the two drops disappear. +- Keep 5K/high-detail/tiled tests blocked on Ethernet or Thunderbolt. + +## 2026-05-17 02:53 — Add live capture run scripts + +Prompt: user asked whether any-quality external-monitor-style use is possible and asked to complete the app path. +Changed files: +- scripts/start_2015_imac_receiver_macos.sh +- scripts/start_mba_to_2015_imac_live_capture.sh +- scripts/stop_2015_imac_receiver_macos.sh +- benchmarks/runs/2026-05-17_0248_mba_to_2015_imac_live_capture_1440p30_wifi/* +- benchmarks/runs/2026-05-17_0253_script_live_capture_smoke/* +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `bash -n scripts/start_2015_imac_receiver_macos.sh scripts/start_mba_to_2015_imac_live_capture.sh scripts/stop_2015_imac_receiver_macos.sh` +- [x] `scripts/start_2015_imac_receiver_macos.sh` +- [x] `DURATION=3 scripts/start_mba_to_2015_imac_live_capture.sh` +Result: +- Added a one-command receiver launcher for the 2015 iMac macOS receiver. +- Added a one-command MacBook Air live capture sender using `2560x1440@30`, HEVC, 15Mbps, and a 1-hour default duration. +- Added a receiver stop script. +- Direct 10s live-capture smoke had 1 sender drop; 3s script validation had 0 drops. +Next: +- For true extended-desktop behavior, implement or integrate a MacBook Air virtual display source and point `--capture-display-index` at that virtual display. + +## 2026-05-17 03:36 — Target Virtual 16:9 extended display + +Prompt: user configured macOS `Virtual 16:9` as an extended display at `1920x1080`. +Changed files: +- scripts/start_mba_to_2015_imac_live_capture.sh +- benchmarks/runs/2026-05-17_0329_mba_virtual_1080p30_to_2015_imac_wifi/* +- benchmarks/runs/2026-05-17_0333_mba_virtual_1080p30_to_2015_imac_tailscale/* +- benchmarks/runs/2026-05-17_0336_virtual_16_9_script_default_smoke/* +- docs/16_DEVICE_AND_TEST_PLAN_2026-05-16.md +- docs/current-work.md +- logs/worklog.md +Verification: +- [x] Receiver restarted and listened on TCP `48320`. +- [x] Local Wi-Fi `192.168.31.187` was temporarily unreachable, so sender used Tailscale `100.84.32.31`. +- [x] `capture-display-index 1`, `1920x1080@30`, HEVC 8Mbps sent to receiver. +- [x] `DURATION=3 scripts/start_mba_to_2015_imac_live_capture.sh` +Result: +- The helper script now defaults to the user's `Virtual 16:9` extended display: display index `1`, `1920x1080@30`, HEVC 8Mbps, receiver `100.84.32.31`. +- The virtual display smoke sent 28 frames over a mostly static 3s run with 0 failures and 0 sender drops. +Next: +- For actual use, move windows onto `Virtual 16:9`; static screens may produce few frames until something changes on that display. + +## 2026-05-17 04:35 — macOS alpha package + +Prompt: user asked to continue through app distribution. +Changed files: +- scripts/package_macos_alpha.sh +- scripts/start_ibridge_virtual_capture.sh +- docs/18_ALPHA_RELEASE.md +- .gitignore +Verification: +- [x] `bash -n scripts/start_ibridge_virtual_capture.sh` +- [x] `bash -n scripts/package_macos_alpha.sh` +- [x] `scripts/package_macos_alpha.sh` +- [x] `codesign --verify --deep --strict --verbose=2 dist/iBridge-0.1.0-alpha/iBridge Receiver.app` +- [x] `cmp -s apps/primary-macos/.build/release/ibridge-primary dist/iBridge-0.1.0-alpha/bin/ibridge-primary` +- [x] `DURATION=1 RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ Virtual\ Capture.command` exits with the expected `capture_display_count=0` setup guard in the current AirPlay-only state. +Result: +- Added an internal alpha packaging script that builds the sender and receiver, creates `iBridge Receiver.app`, copies package-local sender scripts/docs, ad-hoc signs the app, and emits `dist/iBridge-0.1.0-alpha.zip`. +- Added a package/repo-compatible virtual-display sender launcher. In repo mode it builds and runs `apps/primary-macos`; in package mode it runs `bin/ibridge-primary`. +- Added a guard for `capture_display_count=0` so the packaged sender reports missing BetterDisplay/Screen Recording/display-awake setup instead of failing later with a vague capture-display-index error. +Current blocker: +- On the MacBook Pro at package time, `system_profiler` showed an AirPlay `Gabrielì˜ iMac` 1080p virtual device, not the BetterDisplay `Virtual 16:9`; `ibridge-primary --list-displays` returned `capture_display_count=0` in this context. Package generation and app signing are valid, but live sender smoke needs the BetterDisplay virtual display reconnected as an extended display. + +## 2026-05-17 04:43 — wired high-quality alpha profile + +Prompt: user asked to continue toward commercial quality and use the current wired LAN for better image quality. +Changed files: +- scripts/start_ibridge_virtual_capture.sh +- scripts/package_macos_alpha.sh +- docs/18_ALPHA_RELEASE.md +- benchmarks/runs/2026-05-17_lan_high_quality_synthetic_smoke/* +- docs/current-work.md +- logs/experiments.md +- logs/worklog.md +Verification: +- [x] `bash -n scripts/start_ibridge_virtual_capture.sh` +- [x] `bash -n scripts/package_macos_alpha.sh` +- [x] `scripts/package_macos_alpha.sh` +- [x] `codesign --verify --deep --strict --verbose=1 dist/iBridge-0.1.0-alpha/iBridge Receiver.app` +- [x] Remote receiver launched on 2017 iMac over direct 1GbE at `169.254.70.114:48320` +- [x] Synthetic `2560x1440@30` HEVC 35Mbps LAN smoke: `150/150` encoded, `0` sender drops, `0` send failures, p95 send `0.098 ms` +Result: +- Added profile support to the virtual-display sender: `balanced`, `lan-readable`, `lan-60hz`, `lan-sharp`, and `lan-4k`. +- Added `Start iBridge LAN High Quality.command` to the alpha package. It defaults to `PROFILE=lan-readable`. +- Current wired readability default is `2560x1440@30`, HEVC, 35Mbps. This improves detail over 1080p while keeping the current encoder state inside a 30fps budget. +Current blocker: +- Live package capture is still blocked in this MacBook Pro state because BetterDisplay `Virtual 16:9` is not currently exposed to ScreenCaptureKit; the packaged command correctly exits with the setup guard. + +## 2026-05-17 04:47 — capture backpressure for high-detail profiles + +Prompt: user asked for current status, remaining work, and to continue toward better commercial-quality wired image quality. +Changed files: +- apps/primary-macos/Sources/iBridgePrimary/main.swift +- scripts/start_ibridge_virtual_capture.sh +- docs/18_ALPHA_RELEASE.md +- docs/current-work.md +Verification: +- [x] `swift build --package-path apps/primary-macos -c release` +- [x] `bash -n scripts/start_ibridge_virtual_capture.sh` +- [x] `bash -n scripts/package_macos_alpha.sh` +- [x] `python3 apps/shared-protocol/test_protocol_v0.py` +- [x] `scripts/package_macos_alpha.sh` +- [x] `codesign --verify --deep --strict --verbose=1 dist/iBridge-0.1.0-alpha/iBridge Receiver.app` +- [x] `DURATION=1 PROFILE=lan-readable RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command` exits with the expected setup guard in the current AirPlay-only state. +Result: +- Added `--capture-max-in-flight-frames` to the macOS primary sender. +- Wired profiles now default to `CAPTURE_MAX_IN_FLIGHT_FRAMES=1`, so screen capture drops stale frames instead of building a long encode backlog when high-detail capture falls behind. +- The run summary now prints `capture_queue_depth` and `capture_max_in_flight_frames` for reproducible profile logging. +Current blocker: +- Live effect still needs BetterDisplay `Virtual 16:9` reconnected as an extended display so ScreenCaptureKit exposes at least one capture display. + +Follow-up verification: +- [x] Fixed the packaged sender auto-select awk check after macOS awk rejected the prior regex. +- [x] `DURATION=3 PROFILE=lan-readable RECEIVER_IP=169.254.70.114 ./dist/iBridge-0.1.0-alpha/Start\ iBridge\ LAN\ High\ Quality.command` +Follow-up result: +- ScreenCaptureKit exposed `capture_display_count=2`, and the sender auto-selected `display_index=1`. +- Packaged LAN high-quality live capture sent `2560x1440@30` HEVC 35Mbps to the 2017 iMac over direct LAN. +- Sender requested/submitted/encoded `90/46/46`, with `0` failed frames, `0` sender drops, `0` send failures, p95 encode `17.101 ms`, and p95 send `0.877 ms`. +- Receiver logged the `2560x1440@30` handshake and `46` frames before disconnect. +Next: +- Run a longer active-motion/readability smoke with real windows moved onto the virtual display. + +## 2026-05-17 09:41 — 4K60 wired target and latency comparison + +Prompt: user corrected the quality target to BetterDisplay `Virtual 16:9` at `3840x2160@60` and asked to focus on reducing latency. +Changed files: +- scripts/start_ibridge_virtual_capture.sh +- scripts/package_macos_alpha.sh +- docs/18_ALPHA_RELEASE.md +- docs/current-work.md +- logs/worklog.md +- logs/experiments.md +- benchmarks/runs/2026-05-17_4k60_virtual_motion_backpressure1/* +- benchmarks/runs/2026-05-17_4k60_virtual_motion_no_backpressure/* +- benchmarks/runs/2026-05-17_4k60_virtual_motion_comparison.md +Verification: +- [x] `PROFILE=lan-4k RESOLUTION=3840x2160 FPS=60 BITRATE_MBPS=80 DURATION=10 ... Start iBridge LAN High Quality.command` +- [x] `DURATION=8 PROFILE=lan-4k CAPTURE_MAX_IN_FLIGHT_FRAMES=1 scripts/start_ibridge_virtual_capture.sh` +- [x] `DURATION=8 PROFILE=lan-4k CAPTURE_MAX_IN_FLIGHT_FRAMES=0 scripts/start_ibridge_virtual_capture.sh` +Result: +- Changed `lan-4k` from `3840x2160@30 60Mbps` to `3840x2160@60 80Mbps`. +- Added package command `Start iBridge 4K60.command`. +- Changed display auto-selection to choose the largest non-origin extended display, so BetterDisplay 4K virtual screen is favored over smaller external/AirPlay surfaces. +- 4K60 virtual-display motion comparison over direct 1GbE showed 0 send failures in both cases. +- With capture backpressure `1`, p95 encode was `19.090 ms`; with no capture backpressure, p95 encode was `52.175 ms`. +Next: +- Treat 4K60 as the target profile, but do not claim full smooth 60fps yet. The next product work is an in-app motion/readability test scene and a transport move from TCP correctness mode toward bounded UDP/RTP-style delivery. + +## 2026-05-17 10:06 — immediate 2017 iMac 4K60 connection path + +Prompt: user asked whether it is immediately connectable to the iMac and insisted work continue until quality testing is possible. +Changed files: +- scripts/package_macos_alpha.sh +- scripts/start_2017_imac_receiver_macos.sh +- scripts/start_mbp_to_2017_imac_4k60.sh +- docs/18_ALPHA_RELEASE.md +- docs/current-work.md +- logs/worklog.md +Verification: +- [x] Built receiver for `x86_64`. +- [x] Uploaded latest receiver to `gabrieljang@100.89.104.119:~/ibridge-remote/latest/ibridge-receiver-macos`. +- [x] Started latest receiver fullscreen with `--hide-status`. +- [x] Verified receiver TCP `48320` on the iMac. +- [x] Rebuilt alpha package and verified `iBridge Receiver.app` is a universal binary with `x86_64` and `arm64`. +- [x] `DURATION=3 PROFILE=lan-4k RECEIVER_IP=169.254.70.114 scripts/start_ibridge_virtual_capture.sh` +Result: +- The current 2017 iMac path no longer depends on pulling the dirty remote repo. +- `scripts/start_2017_imac_receiver_macos.sh` deploys and starts the latest Intel receiver binary directly. +- `scripts/start_mbp_to_2017_imac_4k60.sh` is now the one-command repo path for MBP -> 2017 iMac 4K60. +Current status: +- iMac receiver is running and connectable now. +- BetterDisplay `Virtual 16:9` is visible as physical `3840x2160@60`, currently with HiDPI UI `1920x1080`; sender auto-selects it and requests `3840x2160@60` encode. +- Short immediate-path probe sent `26/26` encoded frames with 0 send failures. +- Automated test-window placement still needs more work; manual quality testing can start by moving real windows onto `Virtual 16:9`. diff --git a/reference/BetterDisplay b/reference/BetterDisplay new file mode 160000 index 0000000..0aa8394 --- /dev/null +++ b/reference/BetterDisplay @@ -0,0 +1 @@ +Subproject commit 0aa8394a3c04762d41268fa9c35053ef24d1ef1e diff --git a/reference/README.md b/reference/README.md new file mode 100644 index 0000000..c043e45 --- /dev/null +++ b/reference/README.md @@ -0,0 +1,290 @@ +# iBridge Reference Clones + +This directory is for third-party source references used to study capture, +encode, transport, decode, render, virtual-display, and HiDPI techniques +relevant to iBridge. + +Do not vendor or copy implementation code from these projects into iBridge +without a separate license and clean-room review. Use them as design references +and record any technical conclusions in project docs with source URLs. + +Most reference bodies remain ignored local clones. `reference/BetterDisplay` is +the current exception: it is a Git submodule on BetterDisplay's `opensource` +branch so both MacBooks can fetch the same virtual-display/HiDPI reference from +GitHub. + +## Clone Set + +The reference set currently has 39 repositories, with BetterDisplay tracked as a +submodule and the others treated as ignored local clones. + +| Category | Directory | Repository | Commit | Why it is relevant | +|---|---|---|---|---| +| End-to-end host | `sunshine` | `https://github.com/LizardByte/Sunshine.git` | `33bdb01` | Mature low-latency game-streaming host with macOS VideoToolbox support and Moonlight-compatible protocol decisions. | +| End-to-end client | `moonlight-qt` | `https://github.com/moonlight-stream/moonlight-qt.git` | `9cbba10` | Cross-platform receiver/client with Windows/macOS hardware decode, frame pacing, renderer, and streaming stats. | +| Capture/encode app | `obs-studio` | `https://github.com/obsproject/obs-studio.git` | `5dacbb6` | Mature ScreenCaptureKit/macOS capture and Apple VideoToolbox encoder integration patterns. | +| Swift VT wrapper | `Transcoding` | `https://github.com/finnvoor/Transcoding.git` | `3af0f4f` | Small Swift package focused on VideoToolbox encode/decode, Annex-B adaptation, and ultra-low-latency presets. | +| ScreenCaptureKit sample | `CapturingScreenContentInMacOS` | `https://github.com/Fidetro/CapturingScreenContentInMacOS.git` | `083aae1` | Mirror of Apple's ScreenCaptureKit sample for high-performance macOS display/window capture flow. | +| Swift VT sample | `VideoToolboxH265Encoder` | `https://github.com/zf3/VideoToolboxH265Encoder.git` | `fcc2726` | Minimal Swift VideoToolbox HEVC/H.264 encoder sample. | +| Codec/hwaccel framework | `FFmpeg` | `https://github.com/FFmpeg/FFmpeg.git` | `b286748` | Reference implementation for VideoToolbox encoder/hwaccel plumbing and codec bitstream handling. | +| H.264 codec | `openh264` | `https://github.com/cisco/openh264.git` | `e3f5b10` | Open H.264 encoder/decoder with API and console samples; useful for elementary stream and decoder expectations. | +| H.264 encoder | `x264` | `https://github.com/mirror/x264.git` | `c24e06c` | Mature H.264 encoder with `zerolatency`, VBV, B-frame, keyframe, and lookahead tradeoffs. | +| HEVC encoder | `x265` | `https://github.com/videolan/x265.git` | `4191822` | Mature HEVC encoder with low-latency presets, GOP, threading, and rate-control options. | +| AV1 codec | `SVT-AV1` | `https://github.com/AOMediaCodec/SVT-AV1.git` | `3fc8691` | AV1 encoder/decoder implementation with real-time and speed preset tuning surface. | +| AV1 decoder | `dav1d` | `https://github.com/videolan/dav1d.git` | `1cfad6d` | Fast AV1 decoder reference focused on desktop performance and correctness. | +| VP8/VP9 codec | `libvpx` | `https://github.com/webmproject/libvpx.git` | `e9efe03` | VP8/VP9 encoder/decoder reference with real-time rate-control examples. | +| AV1 encoder | `rav1e` | `https://github.com/xiph/rav1e.git` | `564ae3b` | Rust AV1 encoder useful for speed presets, lookahead, and encode/decode tests. | +| VVC encoder | `vvenc` | `https://github.com/fraunhoferhhi/vvenc.git` | `6f76748` | VVC encoder reference for modern codec complexity and low-delay configuration ideas. | +| VVC decoder | `vvdec` | `https://github.com/fraunhoferhhi/vvdec.git` | `fd3a5e9` | VVC decoder reference for parser/decoder architecture. | +| AV1 reference | `aom` | `https://aomedia.googlesource.com/aom` | `5e4b07d` | Official AV1 reference implementation from AOMedia; cloned from googlesource because the canonical source is not a GitHub repo. | +| NVIDIA SDK | `video-sdk-samples` | `https://github.com/NVIDIA/video-sdk-samples.git` | `aa3544d` | NVENC/NVDEC samples including DXGI output duplication and D3D11 encode paths. | +| AMD SDK | `AMF` | `https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git` | `eadd008` | AMD AMF encode/decode/display capture API docs and samples; large but relevant for hardware pipelines. | +| Intel SDK | `oneVPL` | `https://github.com/oneapi-src/oneVPL.git` | `778a66d` | Intel oneVPL encode/decode examples, DX11 surface sharing, and low-latency dispatcher tests. | +| Windows samples | `Windows-classic-samples` | `https://github.com/microsoft/Windows-classic-samples.git` | `77f217b` | Microsoft Media Foundation, DX11 video renderer, and DXGI desktop duplication samples. | +| Windows filters | `LAVFilters` | `https://github.com/Nevcairiel/LAVFilters.git` | `a9e6864` | Production Windows DirectShow/FFmpeg decoder stack with D3D11VA/DXVA paths and Annex-B parsers. | +| Media framework | `gstreamer` | `https://github.com/gstreamer/gstreamer.git` | `9fc023c` | Large multimedia pipeline framework with RTP/WebRTC, hardware plugins, and encoder/decoder elements. | +| WebRTC desktop stream | `selkies-gstreamer` | `https://github.com/selkies-project/selkies-gstreamer.git` | `210e2e8` | Low-latency accelerated remote desktop streaming over GStreamer/WebRTC. | +| WebRTC stack | `pion-webrtc` | `https://github.com/pion/webrtc.git` | `9654161` | Go WebRTC stack useful for RTP receiver, sample builder, H.264/H.265 writers, and stats. | +| WebRTC stack | `libdatachannel` | `https://github.com/paullouisageneau/libdatachannel.git` | `ca9a141` | C/C++ WebRTC data/media stack with H.264/H.265/AV1 RTP packetizers/depacketizers. | +| Transport | `srt` | `https://github.com/Haivision/srt.git` | `8e68635` | Secure Reliable Transport reference for low-latency unreliable-network media delivery. | +| Streaming server | `srs` | `https://github.com/ossrs/srs.git` | `3663a8e` | Realtime streaming server with WebRTC/SRT/RTP queues and packet handling. | +| Codec packaging | `libavif` | `https://github.com/AOMediaCodec/libavif.git` | `4b817bb` | AV1 image/sequence packaging reference; secondary relevance for AV1 codec integration. | +| Codec packaging | `libheif` | `https://github.com/strukturag/libheif.git` | `7dc8570` | HEIF/AVIF/HEVC integration reference; secondary relevance for codec wrapper patterns. | +| Transcoding app | `HandBrake` | `https://github.com/HandBrake/HandBrake.git` | `8587e82` | Mature transcoding app with codec integration and hardware encode/decode option surfaces. | +| macOS virtual display | `DeskPad` | `https://github.com/Stengo/DeskPad.git` | `c3349f0` | Creates a virtual monitor and mirrors it into an app window with `CGVirtualDisplay` and `CGDisplayStream`. | +| macOS virtual display | `FreeDisplay` | `https://github.com/huberdf/FreeDisplay.git` | `07ba072` | Virtual-display management app with lessons around WindowServer blocking, HiDPI modes, and stale display cleanup. | +| macOS virtual display | `SimpleDisplay` | `https://github.com/SamuelRioTz/SimpleDisplay.git` | `fcfcdce` | Lightweight virtual monitor/display management app using a small Objective-C bridge. | +| macOS virtual display | `node-mac-virtual-display` | `https://github.com/enfp-dev-studio/node-mac-virtual-display.git` | `83bf871` | Node/native bridge for `CGVirtualDisplay`, display settings, HiDPI, and mirroring behavior. | +| macOS display tool | `BetterDisplay` | `https://github.com/waydabber/BetterDisplay.git` (`opensource` branch submodule) | `0aa8394` | Display/HiDPI/virtual-screen reference and historical context for macOS display manipulation. | +| Remote desktop | `rustdesk` | `https://github.com/rustdesk/rustdesk.git` | `0d40cf2` | Cross-platform remote desktop app with macOS capture, hwcodec/VRAM encode-decode selection, and adaptive video paths. | +| WebRTC second screen | `deskreen` | `https://github.com/pavlobu/deskreen.git` | `7449628` | Turns browsers/devices into secondary screens via Electron/WebRTC; useful as a product/reference comparison. | +| WebRTC screen sharing | `screencat` | `https://github.com/max-mapper/screencat.git` | `5f5c2a9` | Electron/WebRTC screen sharing and remote-control reference. | + +## Current Local Clone Command + +Run selected commands from the repository root. The clone bodies are intentionally +ignored by Git. After cloning, strip nested `.git` directories so VS Code and +the outer iBridge Git repository do not treat references as active repos. +BetterDisplay should be fetched through the submodule command instead of this +manual clone flow. + +```bash +mkdir -p reference +git clone --depth 1 https://github.com/LizardByte/Sunshine.git reference/sunshine +git clone --depth 1 https://github.com/moonlight-stream/moonlight-qt.git reference/moonlight-qt +git clone --depth 1 https://github.com/obsproject/obs-studio.git reference/obs-studio +git clone --depth 1 https://github.com/finnvoor/Transcoding.git reference/Transcoding +git clone --depth 1 https://github.com/Fidetro/CapturingScreenContentInMacOS.git reference/CapturingScreenContentInMacOS +git clone --depth 1 https://github.com/zf3/VideoToolboxH265Encoder.git reference/VideoToolboxH265Encoder +git clone --depth 1 https://github.com/FFmpeg/FFmpeg.git reference/FFmpeg +find reference -name .git -type d -prune -exec rm -rf {} + +git submodule update --init --recursive reference/BetterDisplay +``` + +## First Analysis Targets + +- VideoToolbox encoder creation flags, encoder ID choice, realtime/latency + properties, keyframe cadence, and Annex-B/parameter-set handling. +- Capture path: whether frames stay GPU-resident or round-trip through CPU + memory before encode. +- Receiver path: Windows hardware decode API choice, decoded-frame upload + strategy, vsync/frame pacing, and latency stats. +- Transport path: whether TCP is avoided for live frames, packet loss policy, + frame dropping policy, and jitter buffering. + +## First-Pass Source Map + +### macOS Capture + +- `reference/CapturingScreenContentInMacOS/CaptureSample/CaptureEngine.swift` + shows a compact ScreenCaptureKit flow around `SCStream`, `SCStreamOutput`, + sample-buffer delivery, and frame-status filtering. +- `reference/obs-studio/plugins/mac-capture/mac-sck-video-capture.m` + shows production ScreenCaptureKit display/window capture setup, including + display pixel sizing from `CGDisplayModeGetPixelWidth/Height` before creating + `SCStream`. +- `reference/obs-studio/plugins/mac-capture/mac-sck-common.m` + handles `SCStreamFrameInfoScaleFactor`, `SCStreamFrameInfoContentRect`, and + `SCStreamFrameInfoContentScale`; these are important for Retina-accurate + capture and text clarity. +- `reference/obs-studio/plugins/mac-capture/mac-display-capture.m` + is the older `CGDisplayStream` fallback path and is useful if + ScreenCaptureKit introduces latency or frame-status issues. +- `reference/DeskPad/DeskPad/Frontend/Screen/ScreenViewController.swift` + creates a virtual display, starts `CGDisplayStream` against that display ID, + and assigns the returned IOSurface to a layer. This is a key Mac-Mac reference + because it proves a local "virtual monitor as source" model before network + transport enters the picture. +- `reference/rustdesk/libs/scrap/src/quartz` is the RustDesk macOS capture + reference area for cross-platform remote desktop capture behavior. + +### macOS Virtual Display + +- `reference/DeskPad/DeskPad/CGVirtualDisplayPrivate.h` shows the private + `CGVirtualDisplay`, `CGVirtualDisplayDescriptor`, `CGVirtualDisplaySettings`, + and `CGVirtualDisplayMode` declarations used by several virtual display apps. +- `reference/DeskPad/DeskPad/Frontend/Screen/ScreenViewController.swift` + applies multiple 60 Hz HiDPI-friendly modes, including 5120-wide modes. +- `reference/FreeDisplay/FreeDisplay/Services/VirtualDisplayService.swift` + keeps strong references to active displays, recreates configured displays + after startup, detects stale virtual displays, and records practical + WindowServer constraints. +- `reference/FreeDisplay/FreeDisplay/Services/CGHelpers.swift` wraps blocking + CoreGraphics/WindowServer calls with a timeout. This is directly relevant if + iBridge experiments with virtual displays on older iMac macOS installs. +- `reference/SimpleDisplay/Sources/VirtualDisplayBridge/VirtualDisplayWrapper.m` + is a compact Objective-C bridge with runtime private-API availability checks. +- `reference/node-mac-virtual-display/src/virtual_display.mm` is a compact + native bridge for creating virtual displays, adding HiDPI/low-res paired + modes, avoiding unintended main-display changes, and managing mirror mode. + +### macOS VideoToolbox Encode + +- `reference/Transcoding/Sources/Transcoding/VideoEncoder+Config.swift` + has an explicit `ultraLowLatency` preset using speed priority, realtime mode, + and low-latency rate control. It also exposes many VT properties missing from + iBridge's current focused probe, including `MaxFrameDelayCount`, + `MoreFramesBeforeStart`, `MoreFramesAfterEnd`, `ConstantBitRate`, + `DataRateLimits`, and `EncoderID`. +- `reference/Transcoding/Sources/Transcoding/VideoEncoderAnnexBAdaptor.swift` + is a small Swift reference for converting VideoToolbox AVCC/HVCC sample + buffers into Annex-B byte streams with SPS/PPS or VPS/SPS/PPS before sync + frames. +- `reference/VideoToolboxH265Encoder/VideoToolboxCompression/ViewController.swift` + is an older but simple Swift sample for HEVC/H.264 session creation, + parameter-set extraction, and NAL length conversion. +- `reference/obs-studio/plugins/mac-videotoolbox/encoder.c` + is the most mature direct VT encoder reference: encoder ID selection, + Apple Silicon CRF handling, bitrate limits, profile/color metadata, and + explicit VideoToolbox error logging. +- `reference/FFmpeg/libavcodec/videotoolboxenc.c` + is useful for checking which VT properties are treated as optional, + platform-specific, or hardware-frame compatible. +- `reference/sunshine/src/video.cpp` shows low-delay encoder strategy at the + streaming-host level: no B-frames, low-delay flags, on-demand IDR when + available, limited reference frames, and hardware-device contexts. + +### Windows Receiver / Decode / Render + +- `reference/moonlight-qt/app/streaming/video/ffmpeg-renderers/d3d11va.cpp` + is the highest-priority Windows receiver reference. It uses FFmpeg with + D3D11VA, shared fences/textures, decode/render device separation, DWM/MMCSS, + and D3D11 render paths. +- `reference/moonlight-qt/app/streaming/video/ffmpeg-renderers/pacer/pacer.cpp` + shows a real frame pacer with bounded queues and frame dropping before + latency accumulates. +- `reference/moonlight-qt/app/streaming/video/ffmpeg.cpp` is the entry point + that ties stream decode, renderer selection, and stats together. +- `reference/sunshine/src/platform/windows/display_vram.cpp` is host-side, but + it is very useful for D3D11 texture sharing, NV12/P010 conversion, and avoiding + full CPU readback/upload loops. +- `reference/LAVFilters/decoder/LAVVideo/decoders/d3d11va.cpp` and + `reference/LAVFilters/decoder/LAVVideo/decoders/dxva2dec.cpp` are production + Windows hardware decode references. +- `reference/LAVFilters/decoder/LAVVideo/parsers/AnnexBConverter.cpp`, + `H264SequenceParser.cpp`, and `HEVCSequenceParser.cpp` are useful for + robust stream parser behavior before decode. +- `reference/Windows-classic-samples/Samples/DX11VideoRenderer/cpp` is a + Microsoft DX11 Media Foundation renderer sample. +- `reference/Windows-classic-samples/Samples/MediaFoundationTransformDecoder/cpp` + is a Microsoft MFT decoder sample, useful for receiver-side decode plumbing. +- `reference/Windows-classic-samples/Samples/DXGIDesktopDuplication/cpp` is + capture-side, but useful for understanding DXGI frame acquisition and dirty + desktop updates. + +### Transport / Frame Loss Strategy + +- `reference/sunshine/src/stream.cpp` is the main transport reference. It sends + video over UDP/RTP-style packets, inserts per-frame headers, computes FEC + blocks, rate-controls packet bursts within a frame, and logs frame processing, + FEC, batch-send, and overall network latency. +- `reference/sunshine/src/rtsp.cpp` captures stream negotiation details such as + packet size and client feedback/control setup. +- `reference/moonlight-qt/moonlight-common-c` should be searched next for the + receiving side of packet reassembly, loss stats, and IDR requests. +- `reference/libdatachannel/src/h264rtppacketizer.cpp`, + `h265rtppacketizer.cpp`, `av1rtppacketizer.cpp`, and matching depacketizers + are compact C++ references for codec-specific RTP payload splitting. +- `reference/pion-webrtc/pkg/media/samplebuilder/samplebuilder.go` and + `pkg/media/h264writer/h264writer.go` are useful receiving-side Go references + for rebuilding media samples from RTP packets. +- `reference/selkies-gstreamer/src/selkies/webrtc/jitterbuffer.py` and + `media_pipeline.py` are high-level references for desktop-stream WebRTC + jitter buffering and GStreamer pipeline assembly. +- `reference/srt/apps/transmitmedia.cpp` is a simple low-latency transport + utility reference, though SRT may be heavier than iBridge needs. + +### Hardware Vendor SDKs + +- `reference/video-sdk-samples/nvEncDXGIOutputDuplicationSample` is a close + analogue for GPU capture plus hardware encode on Windows/NVIDIA. +- `reference/video-sdk-samples/nvEncBroadcastSample/nvEnc/nvCodec` shows + D3D11 NVENC wrapper classes and bitstream buffer handling. +- `reference/AMF/amf/doc/AMF_Video_Encode_API.md`, + `AMF_Video_Encode_HEVC_API.md`, `AMF_Video_Encode_AV1_API.md`, and + `AMF_Video_Decode_API.md` are AMD hardware encoder/decoder API references. +- `reference/AMF/amf/doc/AMF_Display_Capture_API.md` is relevant to + capture-to-encode flow, even though iBridge primary capture is macOS first. +- `reference/oneVPL/examples/api2x/hello-decode`, + `hello-encode`, `hello-transcode`, and `hello-sharing-dx11` are compact Intel + encode/decode and DX11 surface-sharing examples. + +### Codec Implementations + +- `reference/x264/x264.c`, `reference/x264/encoder/encoder.c`, and + `reference/x264/doc/ratecontrol.txt` are useful for H.264 zerolatency, + lookahead, B-frame, VBV, and keyframe policy. +- `reference/x265/doc/reST/presets.rst`, `cli.rst`, `threading.rst`, and + `reference/x265/source/common/param.cpp` are useful for HEVC low-latency + preset and threading tradeoffs. +- `reference/openh264/codec/api/wels/codec_api.h`, + `codec/console/enc/src/welsenc.cpp`, and `codec/console/dec/src/h264dec.cpp` + show a smaller H.264 encoder/decoder API surface. +- `reference/aom/examples/svc_encoder_rtc.cc`, + `reference/aom/av1/ratectrl_rtc.cc`, and + `reference/aom/av1/encoder/speed_features.c` are useful for real-time AV1 + rate-control and speed-feature references. +- `reference/libvpx/examples/vpx_temporal_svc_encoder.c` and + `reference/libvpx/vpx/internal/vpx_ratectrl_rtc.h` are useful for VPx + real-time and scalable-video coding patterns. +- `reference/dav1d` is primarily decoder-performance study material, while + `reference/SVT-AV1`, `reference/rav1e`, `reference/vvenc`, and + `reference/vvdec` are broader codec-complexity references rather than likely + direct dependencies for iBridge. + +### Mac-Mac / Remote Desktop Product References + +- `reference/rustdesk/libs/scrap/src/common/hwcodec.rs` and `vram.rs` are + useful for hardware codec feature detection, fallback selection, H.264/H.265 + encode/decode configuration, and VRAM-vs-RAM paths. +- `reference/rustdesk/libs/scrap/src/common/aom.rs` shows screen-content AV1 + low-latency settings, including disabling expensive tools and selecting + `AOM_CONTENT_SCREEN`. +- `reference/deskreen` and `reference/screencat` are useful product references + for "secondary display over WebRTC" UX and signaling, though their Electron + architecture is probably not the right low-level implementation target for + 5K/60 iBridge. + +## Immediate iBridge Hypotheses From The References + +- The current TCP proof path is useful for correctness but is probably the wrong + architecture for live display latency. Sunshine's live video path assumes UDP, + packet pacing, FEC, loss stats, and IDR feedback. +- The receiver should not accumulate frames. Moonlight's pacer keeps queues + tiny and drops frames to preserve latency. +- The receiver decode path should target GPU-native frames earlier. Moonlight's + D3D11VA path and Sunshine's D3D11 texture-sharing paths are more relevant + than CPU upload loops. +- iBridge's VideoToolbox probe should expand from average encode time into a + matrix of encoder properties: B-frame/reordering off, max frame delay, bitrate + mode, data-rate limits, speed priority, realtime, encoder ID, and Annex-B + parameter-set behavior. +- For the next implementation spike, the strongest reference-backed direction + is receiver-first D3D11VA decode/render plus bounded frame pacing, in parallel + with a VT property matrix. UDP/FEC should follow once decode/render no longer + hides the bottleneck. +- The project should not overfit to macOS Primary -> Windows Receiver. If the + iMac can return to macOS, Mac-Mac should be treated as a first-class route: + virtual display source on the primary Mac, hardware encode/decode through + VideoToolbox, and Metal/IOSurface presentation on the receiver may offer a + cleaner pipeline than Media Foundation plus D3D11 on Windows. diff --git a/scripts/analyze_tiled_deadline.py b/scripts/analyze_tiled_deadline.py new file mode 100755 index 0000000..95de6ca --- /dev/null +++ b/scripts/analyze_tiled_deadline.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 +import argparse +import csv +from pathlib import Path + + +def percentile(values: list[float], p: float) -> float: + if not values: + return 0.0 + ordered = sorted(values) + raw = (p / 100.0) * (len(ordered) - 1) + lower = int(raw) + upper = min(lower + 1, len(ordered) - 1) + fraction = raw - lower + return ordered[lower] * (1 - fraction) + ordered[upper] * fraction + + +def read_metric_file(path: Path) -> dict[str, str]: + metrics: dict[str, str] = {} + if not path.exists(): + return metrics + for line in path.read_text().splitlines(): + if "=" in line: + key, value = line.split("=", 1) + metrics[key] = value + return metrics + + +def main() -> None: + parser = argparse.ArgumentParser( + description="Analyze tiled logical-frame latency against presentation deadlines." + ) + parser.add_argument("logical_csv", type=Path) + parser.add_argument("--run-log", type=Path, default=None) + parser.add_argument("--budgets-ms", default="8.33,12,16.67,20,33.33,50") + parser.add_argument("--window-size", type=int, default=300) + parser.add_argument("--summary-md", type=Path, default=None) + args = parser.parse_args() + + rows = list(csv.DictReader(args.logical_csv.open())) + latencies = [float(row["group_latency_ms"]) for row in rows] + metrics = read_metric_file(args.run_log) if args.run_log else {} + budgets = [float(item.strip()) for item in args.budgets_ms.split(",") if item.strip()] + + lines: list[str] = [] + lines.append(f"# Tiled Deadline Analysis — {args.logical_csv.name}") + lines.append("") + + lines.append("| Metric | Value |") + lines.append("|---|---:|") + lines.append(f"| logical_frames | {len(latencies)} |") + lines.append(f"| avg_group_latency_ms | {sum(latencies) / max(len(latencies), 1):.3f} |") + lines.append(f"| p95_group_latency_ms | {percentile(latencies, 95):.3f} |") + lines.append(f"| max_group_latency_ms | {(max(latencies) if latencies else 0):.3f} |") + for key in ("effective_logical_fps", "tile_reset_every_frames", "tile_max_inflight_logical_frames"): + if key in metrics: + lines.append(f"| {key} | {metrics[key]} |") + lines.append("") + + lines.append("| Budget ms | Late frames | Late % | First late frame IDs |") + lines.append("|---:|---:|---:|---|") + for budget in budgets: + late = [int(row["frame_id"]) for row in rows if float(row["group_latency_ms"]) > budget] + preview = ", ".join(str(frame_id) for frame_id in late[:12]) + if len(late) > 12: + preview += ", ..." + late_percent = (len(late) / max(len(rows), 1)) * 100.0 + lines.append(f"| {budget:.2f} | {len(late)} | {late_percent:.3f}% | {preview} |") + lines.append("") + + if args.window_size > 0: + lines.append("| Window | Avg ms | P95 ms | Max ms |") + lines.append("|---:|---:|---:|---:|") + for start in range(0, len(latencies), args.window_size): + window = latencies[start:start + args.window_size] + lines.append( + f"| {start}-{start + len(window) - 1} | " + f"{sum(window) / max(len(window), 1):.3f} | " + f"{percentile(window, 95):.3f} | " + f"{(max(window) if window else 0):.3f} |" + ) + + output = "\n".join(lines) + "\n" + if args.summary_md: + args.summary_md.write_text(output) + print(output) + + +if __name__ == "__main__": + main() diff --git a/scripts/mac_clean_session_encoder_probe.sh b/scripts/mac_clean_session_encoder_probe.sh new file mode 100755 index 0000000..c51b8de --- /dev/null +++ b/scripts/mac_clean_session_encoder_probe.sh @@ -0,0 +1,254 @@ +#!/usr/bin/env bash +set -euo pipefail + +DURATION="${DURATION:-10}" +FALLBACK_DURATION="${FALLBACK_DURATION:-5}" +CLEAN_BOOT_MAX_MINUTES="${CLEAN_BOOT_MAX_MINUTES:-15}" +REQUIRE_CLEAN_BOOT="${REQUIRE_CLEAN_BOOT:-1}" +RUN_ROOT="${RUN_ROOT:-}" +AVE_HEVC_ID="${AVE_HEVC_ID:-com.apple.videotoolbox.videoencoder.ave.hevc}" + +STAMP="$(date +%Y-%m-%d_%H%M)" +if [[ -z "$RUN_ROOT" ]]; then + RUN_ROOT="benchmarks/runs/${STAMP}_clean_session_encoder_probe" +fi +mkdir -p "$RUN_ROOT" + +PRIMARY="apps/primary-macos/.build/release/ibridge-primary" + +usage() { + cat <<'USAGE' +Usage: + DURATION=10 FALLBACK_DURATION=5 scripts/mac_clean_session_encoder_probe.sh + +Purpose: + Run the clean-session A/B gate: + 1. Verify the Mac booted recently. + 2. Run segment-hints tiled 5K60 first. + 3. Immediately run 4096x2304, 3200x1800, and 2560x1440 fallback probes. + +Environment: + CLEAN_BOOT_MAX_MINUTES=15 + REQUIRE_CLEAN_BOOT=1 + RUN_ROOT=benchmarks/runs/custom_name + +Set REQUIRE_CLEAN_BOOT=0 only for a deliberately dirty control run. +USAGE +} + +if [[ "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then + usage + exit 0 +fi + +boot_epoch="$(sysctl -n kern.boottime | awk -F'[=,]' '{ gsub(/ /, "", $2); print $2 }')" +now_epoch="$(date +%s)" +uptime_minutes="$(( (now_epoch - boot_epoch) / 60 ))" + +{ + echo "timestamp=$STAMP" + echo "duration_seconds=$DURATION" + echo "fallback_duration_seconds=$FALLBACK_DURATION" + echo "clean_boot_max_minutes=$CLEAN_BOOT_MAX_MINUTES" + echo "require_clean_boot=$REQUIRE_CLEAN_BOOT" + echo "uptime_minutes=$uptime_minutes" + echo "boot_time=$(date -r "$boot_epoch" '+%Y-%m-%d %H:%M:%S %z')" + echo "hostname=$(hostname)" + echo "pwd=$(pwd)" + uname -a +} > "$RUN_ROOT/metadata.txt" + +if [[ "$REQUIRE_CLEAN_BOOT" == "1" && "$uptime_minutes" -gt "$CLEAN_BOOT_MAX_MINUTES" ]]; then + { + echo "# Clean Session Encoder Probe" + echo + echo "Skipped: current uptime is ${uptime_minutes} minutes, exceeding CLEAN_BOOT_MAX_MINUTES=${CLEAN_BOOT_MAX_MINUTES}." + echo + echo "Run this script immediately after reboot/login to get a valid clean-session result." + } > "$RUN_ROOT/summary.md" + echo "not_clean_uptime_minutes=$uptime_minutes" + echo "wrote $RUN_ROOT/summary.md" + exit 2 +fi + +swift build --package-path apps/primary-macos -c release + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +CSV + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +deadline_count() { + local budget="$1" + local md="$2" + if [[ ! -f "$md" ]]; then + echo "" + return + fi + awk -F'|' -v budget="$budget" ' + $2 ~ budget { + gsub(/^[ \t]+|[ \t]+$/, "", $3) + print $3 + } + ' "$md" +} + +append_summary() { + local case_name="$1" + local mode="$2" + local resolution="$3" + local fps="$4" + local duration="$5" + local bitrate="$6" + local status="$7" + local csv="$8" + local log="$9" + local logical_csv="${10}" + local deadline_md="${11}" + + local frames_encoded effective avg p95 max p95_steady over_16 over_33 + frames_encoded="$(extract_metric frames_encoded "$log")" + effective="$(extract_metric effective_logical_fps "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + p95_steady="$(extract_metric p95_steady_encode_latency_ms "$log")" + over_16="$(deadline_count '16.67' "$deadline_md")" + over_33="$(deadline_count '33.33' "$deadline_md")" + + printf '%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$case_name" "$mode" "$resolution" "$fps" "$duration" "$bitrate" "$status" \ + "${frames_encoded:-0}" "${effective:-}" "${avg:-0}" "${p95:-0}" "${max:-0}" \ + "${p95_steady:-}" "${over_16:-}" "${over_33:-}" "$csv" "$logical_csv" "$deadline_md" "$log" \ + >> "$RUN_ROOT/summary.csv" +} + +run_segment_hints_tiled_first() { + local csv="$RUN_ROOT/segment_hints_tiled_first.csv" + local log="$RUN_ROOT/segment_hints_tiled_first.txt" + local logical_csv="${csv%.csv}_logical.csv" + local deadline_md="${csv%.csv}_deadline.md" + + set +e + "$PRIMARY" \ + --synthetic \ + --source synthetic-nv12-tiled \ + --resolution 5120x2880 \ + --fps 60 \ + --duration "$DURATION" \ + --codec hevc \ + --bitrate-mbps 30 \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --data-rate-limit-mbps 30 \ + --data-rate-window 1.0 \ + --prioritize-speed \ + --tile-columns 2 \ + --tile-rows 2 \ + --tile-reuse-buffers \ + --tile-reset-every-frames 180 \ + --tile-max-inflight-logical-frames 1 \ + --tile-segment-hints \ + --warmup-frames 30 \ + --csv "$csv" > "$log" 2>&1 + local exit_code=$? + set -e + + if [[ -f "$logical_csv" ]]; then + python3 scripts/analyze_tiled_deadline.py "$logical_csv" --run-log "$log" --summary-md "$deadline_md" >/dev/null + else + deadline_md="" + fi + append_summary "segment_hints_tiled_first" "tiled" "5120x2880" "60" "$DURATION" "30" "$exit_code" "$csv" "$log" "$logical_csv" "$deadline_md" +} + +run_fallback_case() { + local case_name="$1" + local resolution="$2" + local bitrate="$3" + local csv="$RUN_ROOT/${case_name}.csv" + local log="$RUN_ROOT/${case_name}.txt" + + set +e + "$PRIMARY" \ + --synthetic \ + --source synthetic-nv12 \ + --resolution "$resolution" \ + --fps 60 \ + --duration "$FALLBACK_DURATION" \ + --codec hevc \ + --bitrate-mbps "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --data-rate-limit-mbps "$bitrate" \ + --data-rate-window 1.0 \ + --prioritize-speed \ + --csv "$csv" > "$log" 2>&1 + local exit_code=$? + set -e + + append_summary "$case_name" "single" "$resolution" "60" "$FALLBACK_DURATION" "$bitrate" "$exit_code" "$csv" "$log" "" "" +} + +run_segment_hints_tiled_first +run_fallback_case "post_tiled_4096_fallback" "4096x2304" "120" +run_fallback_case "post_tiled_3200_fallback" "3200x1800" "60" +run_fallback_case "post_tiled_2560_fallback" "2560x1440" "25" + +python3 - "$RUN_ROOT/summary.csv" "$RUN_ROOT/summary.md" <<'PY' +import csv +import sys + +csv_path, md_path = sys.argv[1:3] +rows = list(csv.DictReader(open(csv_path, newline=""))) + +def p95(case): + row = next((r for r in rows if r["case"] == case), None) + if not row: + return None + try: + return float(row["p95_encode_ms"]) + except ValueError: + return None + +fallback_4096 = p95("post_tiled_4096_fallback") +fallback_3200 = p95("post_tiled_3200_fallback") +fallback_2560 = p95("post_tiled_2560_fallback") + +passes_high_detail = ( + fallback_4096 is not None and fallback_4096 <= 16.67 + and fallback_3200 is not None and fallback_3200 <= 16.67 +) + +with open(md_path, "w") as f: + f.write("# Clean Session Encoder Probe\n\n") + f.write("| Case | P95 ms | Result |\n") + f.write("|---|---:|---|\n") + for case in [ + "segment_hints_tiled_first", + "post_tiled_4096_fallback", + "post_tiled_3200_fallback", + "post_tiled_2560_fallback", + ]: + value = p95(case) + result = "pass" if value is not None and value <= 16.67 else "fail" + f.write(f"| `{case}` | {value if value is not None else 'n/a'} | {result} |\n") + f.write("\n") + if passes_high_detail: + f.write("Decision: high-detail fallback switching remains viable after segment-hints tiled 5K60.\n") + else: + f.write("Decision: high-detail fallback switching remains unsafe; keep product emergency fallback at `2560x1440@60` until a stronger reset boundary is proven.\n") +PY + +cat "$RUN_ROOT/summary.md" diff --git a/scripts/mac_encode_strategy_matrix.sh b/scripts/mac_encode_strategy_matrix.sh new file mode 100755 index 0000000..9ed6412 --- /dev/null +++ b/scripts/mac_encode_strategy_matrix.sh @@ -0,0 +1,237 @@ +#!/usr/bin/env bash +set -euo pipefail + +DURATION="${DURATION:-3}" +RUN_ROOT="${RUN_ROOT:-}" +AVE_HEVC_ID="${AVE_HEVC_ID:-com.apple.videotoolbox.videoencoder.ave.hevc}" +BITRATE_MBPS="${BITRATE_MBPS:-120}" +INCLUDE_SCREEN_CAPTURE="${INCLUDE_SCREEN_CAPTURE:-1}" + +STAMP="$(date +%Y-%m-%d_%H%M)" +if [[ -z "$RUN_ROOT" ]]; then + RUN_ROOT="benchmarks/runs/${STAMP}_encode_strategy_matrix" +fi +mkdir -p "$RUN_ROOT" + +PRIMARY="apps/primary-macos/.build/release/ibridge-primary" + +swift build --package-path apps/primary-macos -c release +"$PRIMARY" --list-encoders > "$RUN_ROOT/video_encoders.txt" + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +profile,source,resolution,fps,duration_seconds,bitrate_mbps,encoder_id,frames_requested,frames_submitted,frames_skipped,frames_encoded,failed_frames,avg_generate_ms,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log,status +CSV + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +csv_append() { + local profile="$1" + local source="$2" + local resolution="$3" + local fps="$4" + local csv="$5" + local log="$6" + local status="$7" + + local frames_requested frames_submitted frames_skipped frames_encoded failed generate avg p95 max payload encoder_id + encoder_id="$(extract_metric encoder_id "$log")" + frames_requested="$(extract_metric frames_requested "$log")" + frames_submitted="$(extract_metric frames_submitted "$log")" + frames_skipped="$(extract_metric frames_skipped "$log")" + frames_encoded="$(extract_metric frames_encoded "$log")" + failed="$(extract_metric failed_frames "$log")" + generate="$(extract_metric avg_generate_ms "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + payload="$(extract_metric payload_bytes "$log")" + + printf '%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$profile" "$source" "$resolution" "$fps" "$DURATION" "$BITRATE_MBPS" \ + "${encoder_id:-$AVE_HEVC_ID}" "${frames_requested:-0}" "${frames_submitted:-0}" \ + "${frames_skipped:-0}" "${frames_encoded:-0}" "${failed:-1}" "${generate:-0}" \ + "${avg:-0}" "${p95:-0}" "${max:-0}" "${payload:-0}" "$csv" "$log" "$status" \ + >> "$RUN_ROOT/summary.csv" +} + +run_case() { + local profile="$1" + local source="$2" + local resolution="$3" + local fps="$4" + shift 4 + local extra_args=("$@") + + local safe_name="${profile}_${source}_${resolution}_${fps}fps" + safe_name="${safe_name//[^A-Za-z0-9_]/_}" + local csv="$RUN_ROOT/${safe_name}.csv" + local log="$RUN_ROOT/${safe_name}.txt" + local mode_arg="--synthetic" + if [[ "$source" == "screen-capture" ]]; then + mode_arg="--screen-capture" + fi + + local command=( + "$PRIMARY" + "$mode_arg" + --source "$source" + --resolution "$resolution" + --fps "$fps" + --duration "$DURATION" + --codec hevc + --bitrate-mbps "$BITRATE_MBPS" + --encoder-id "$AVE_HEVC_ID" + --disable-low-latency-rate-control + --allow-temporal-compression + --disable-frame-reordering + --disable-open-gop + --data-rate-limit-mbps "$BITRATE_MBPS" + --data-rate-window 1.0 + --prioritize-speed + --csv "$csv" + ) + if [[ "${#extra_args[@]}" -gt 0 ]]; then + command+=("${extra_args[@]}") + fi + + set +e + "${command[@]}" > "$log" 2>&1 + local exit_code=$? + set -e + + if [[ "$exit_code" -ne 0 ]]; then + { + echo "profile=$profile" + echo "source=$source" + echo "resolution=$resolution" + echo "target_fps=$fps" + echo "encoder_id=$AVE_HEVC_ID" + echo "frames_requested=0" + echo "frames_submitted=0" + echo "frames_skipped=0" + echo "frames_encoded=0" + echo "failed_frames=1" + echo "avg_generate_ms=0" + echo "avg_encode_latency_ms=0" + echo "p95_encode_latency_ms=0" + echo "max_encode_latency_ms=0" + echo "payload_bytes=0" + echo "exit_code=$exit_code" + } >> "$log" + fi + + csv_append "$profile" "$source" "$resolution" "$fps" "$csv" "$log" "$exit_code" +} + +run_tile_2x2_case() { + local profile="tile_2x2_5k60" + local source="synthetic-nv12" + local resolution="2560x1440" + local fps="60" + local dir="$RUN_ROOT/${profile}" + mkdir -p "$dir" + + local pids=() + for tile in 0 1 2 3; do + local csv="$dir/tile_${tile}.csv" + local log="$dir/tile_${tile}.txt" + ( + "$PRIMARY" \ + --synthetic \ + --source "$source" \ + --resolution "$resolution" \ + --fps "$fps" \ + --duration "$DURATION" \ + --codec hevc \ + --bitrate-mbps "$BITRATE_MBPS" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --data-rate-limit-mbps "$BITRATE_MBPS" \ + --data-rate-window 1.0 \ + --prioritize-speed \ + --csv "$csv" \ + > "$log" 2>&1 + ) & + pids+=("$!") + done + + local status=0 + for pid in "${pids[@]}"; do + if ! wait "$pid"; then + status=1 + fi + done + + { + echo "# Tile 2x2 5K60 approximation" + echo + echo "- Source per tile: $source" + echo "- Tile resolution: $resolution" + echo "- Tiles: 4" + echo "- Combined logical surface: 5120x2880" + echo "- Exit status: $status" + echo + echo "| Tile | Frames | Avg encode ms | P95 encode ms | Max encode ms | Log |" + echo "| --- | ---: | ---: | ---: | ---: | --- |" + for tile in 0 1 2 3; do + local log="$dir/tile_${tile}.txt" + local frames avg p95 max + frames="$(extract_metric frames_encoded "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + echo "| $tile | ${frames:-0} | ${avg:-0} | ${p95:-0} | ${max:-0} | tile_${tile}.txt |" + done + } > "$dir/summary.md" +} + +for resolution in 3200x1800 3840x2160 4096x2304 5120x2880; do + run_case "bgra_baseline" "synthetic-bgra" "$resolution" 60 + run_case "nv12_input" "synthetic-nv12" "$resolution" 60 +done + +run_case "static_skip_every_2" "synthetic-static-skip" "5120x2880" 60 --static-change-every 2 +run_case "static_skip_every_10" "synthetic-static-skip" "5120x2880" 60 --static-change-every 10 +run_case "static_skip_every_60" "synthetic-static-skip" "5120x2880" 60 --static-change-every 60 + +run_case "nv12_5k45" "synthetic-nv12" "5120x2880" 45 +run_case "nv12_5k30" "synthetic-nv12" "5120x2880" 30 + +run_case "tiled_inprocess_2x2_5k60" "synthetic-nv12-tiled" "5120x2880" 60 --tile-columns 2 --tile-rows 2 +run_case "tiled_reset150_inflight1_2x2_5k60" "synthetic-nv12-tiled" "5120x2880" 60 --tile-columns 2 --tile-rows 2 --tile-reuse-buffers --tile-reset-every-frames 150 --tile-max-inflight-logical-frames 1 +run_tile_2x2_case + +if [[ "$INCLUDE_SCREEN_CAPTURE" == "1" ]]; then + run_case "sck_4k60" "screen-capture" "3840x2160" 60 --capture-display-index 0 --capture-queue-depth 8 + run_case "sck_5k60" "screen-capture" "5120x2880" 60 --capture-display-index 0 --capture-queue-depth 8 + run_case "sck_5k30" "screen-capture" "5120x2880" 30 --capture-display-index 0 --capture-queue-depth 8 +fi + +cat > "$RUN_ROOT/summary.md" < "$RUN_ROOT/metadata.txt" + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +case,mode,resolution,fps,duration_seconds,bitrate_mbps,status,frames_encoded,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,p95_steady_encode_ms,logical_over_16_67,logical_over_33_33,csv,logical_csv,deadline_md,log +CSV + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +deadline_count() { + local budget="$1" + local md="$2" + if [[ ! -f "$md" ]]; then + echo "" + return + fi + awk -F'|' -v budget="$budget" ' + $2 ~ budget { + gsub(/^[ \t]+|[ \t]+$/, "", $3) + print $3 + } + ' "$md" +} + +append_summary() { + local case_name="$1" + local mode="$2" + local resolution="$3" + local fps="$4" + local bitrate="$5" + local status="$6" + local csv="$7" + local log="$8" + local logical_csv="$9" + local deadline_md="${10}" + + local frames_encoded effective avg p95 max p95_steady over_16 over_33 + frames_encoded="$(extract_metric frames_encoded "$log")" + effective="$(extract_metric effective_logical_fps "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + p95_steady="$(extract_metric p95_steady_encode_latency_ms "$log")" + over_16="$(deadline_count '16.67' "$deadline_md")" + over_33="$(deadline_count '33.33' "$deadline_md")" + + printf '%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$case_name" "$mode" "$resolution" "$fps" "$DURATION" "$bitrate" "$status" \ + "${frames_encoded:-0}" "${effective:-}" "${avg:-0}" "${p95:-0}" "${max:-0}" \ + "${p95_steady:-}" "${over_16:-}" "${over_33:-}" "$csv" "$logical_csv" "$deadline_md" "$log" \ + >> "$RUN_ROOT/summary.csv" +} + +run_case() { + local case_name="$1" + shift + local extra_args=("$@") + local safe="${case_name//[^A-Za-z0-9_]/_}" + local csv="$RUN_ROOT/${safe}.csv" + local log="$RUN_ROOT/${safe}.txt" + local logical_csv="${csv%.csv}_logical.csv" + local deadline_md="${csv%.csv}_deadline.md" + + local command=( + "$PRIMARY" + --synthetic + --source synthetic-nv12-tiled + --resolution 5120x2880 + --fps 60 + --duration "$DURATION" + --codec hevc + --bitrate-mbps 30 + --encoder-id "$AVE_HEVC_ID" + --disable-low-latency-rate-control + --allow-temporal-compression + --disable-frame-reordering + --disable-open-gop + --data-rate-limit-mbps 30 + --data-rate-window 1.0 + --prioritize-speed + --tile-columns 2 + --tile-rows 2 + --tile-reuse-buffers + --tile-reset-every-frames "$RESET_EVERY" + --tile-max-inflight-logical-frames 1 + --warmup-frames 30 + --csv "$csv" + ) + if [[ "${#extra_args[@]}" -gt 0 ]]; then + command+=("${extra_args[@]}") + fi + + set +e + "${command[@]}" > "$log" 2>&1 + local exit_code=$? + set -e + + if [[ -f "$logical_csv" ]]; then + python3 scripts/analyze_tiled_deadline.py "$logical_csv" --run-log "$log" --summary-md "$deadline_md" >/dev/null + else + deadline_md="" + fi + + append_summary "$case_name" "tiled" "5120x2880" "60" "30" "$exit_code" "$csv" "$log" "$logical_csv" "$deadline_md" +} + +run_fallback_case() { + local case_name="$1" + local resolution="$2" + local bitrate="$3" + local safe="${case_name//[^A-Za-z0-9_]/_}" + local csv="$RUN_ROOT/${safe}.csv" + local log="$RUN_ROOT/${safe}.txt" + + set +e + "$PRIMARY" \ + --synthetic \ + --source synthetic-nv12 \ + --resolution "$resolution" \ + --fps 60 \ + --duration 5 \ + --codec hevc \ + --bitrate-mbps "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --data-rate-limit-mbps "$bitrate" \ + --data-rate-window 1.0 \ + --prioritize-speed \ + --csv "$csv" > "$log" 2>&1 + local exit_code=$? + set -e + + append_summary "$case_name" "single" "$resolution" "60" "$bitrate" "$exit_code" "$csv" "$log" "" "" +} + +run_case "baseline_simultaneous_reset" +run_case "segment_hints_simultaneous_reset" --tile-segment-hints +run_case "segment_hints_staggered_reset" --tile-segment-hints --tile-reset-stagger-frames "$STAGGER_FRAMES" + +if [[ "$RUN_FALLBACK" == "1" ]]; then + run_fallback_case "post_probe_4096_fallback" "4096x2304" "120" + run_fallback_case "post_probe_3200_fallback" "3200x1800" "60" + run_fallback_case "post_probe_2560_fallback" "2560x1440" "25" +fi + +cat > "$RUN_ROOT/summary.md" < --receiver-ip [--tailscale-name ] + +Examples: + scripts/mac_network_matrix.sh --case wifi-5g --receiver-ip 192.168.1.50 + scripts/mac_network_matrix.sh --case 1gbe --receiver-ip 169.254.10.2 + scripts/mac_network_matrix.sh --case thunderbolt --receiver-ip 169.254.20.2 + scripts/mac_network_matrix.sh --case tailscale --receiver-ip 100.x.y.z --tailscale-name imac + +Environment: + DURATION=20 iperf3 duration in seconds + RUN_ROOT=... optional benchmark output root +USAGE +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --case) + CASE_NAME="${2:-}" + shift 2 + ;; + --case=*) + CASE_NAME="${1#--case=}" + shift + ;; + --receiver-ip) + RECEIVER_IP="${2:-}" + shift 2 + ;; + --receiver-ip=*) + RECEIVER_IP="${1#--receiver-ip=}" + shift + ;; + --tailscale-name|--tailscale-target) + TAILSCALE_TARGET="${2:-}" + shift 2 + ;; + --tailscale-name=*|--tailscale-target=*) + TAILSCALE_TARGET="${1#*=}" + shift + ;; + --help|-h) + usage + exit 0 + ;; + *) + echo "unknown argument: $1" >&2 + usage >&2 + exit 1 + ;; + esac +done + +if [[ -z "$CASE_NAME" || -z "$RECEIVER_IP" ]]; then + usage >&2 + exit 1 +fi + +STAMP="$(date +%Y-%m-%d_%H%M)" +if [[ -z "$RUN_ROOT" ]]; then + RUN_ROOT="benchmarks/runs/${STAMP}_network_matrix" +fi +OUT_DIR="${RUN_ROOT}/${CASE_NAME}" +mkdir -p "$OUT_DIR" + +{ + echo "case=$CASE_NAME" + echo "receiver_ip=$RECEIVER_IP" + echo "duration_seconds=$DURATION" + echo "timestamp=$STAMP" + echo "hostname=$(hostname)" + echo "whoami=$(whoami)" + echo "pwd=$(pwd)" +} | tee "$OUT_DIR/metadata.txt" + +ifconfig > "$OUT_DIR/ifconfig.txt" || true +networksetup -listallhardwareports > "$OUT_DIR/networksetup_hardware_ports.txt" 2>&1 || true +networksetup -listallnetworkservices > "$OUT_DIR/networksetup_services.txt" 2>&1 || true + +ping -c 100 "$RECEIVER_IP" | tee "$OUT_DIR/ping_100.txt" || true + +if command -v iperf3 >/dev/null 2>&1; then + iperf3 -c "$RECEIVER_IP" -t "$DURATION" --json > "$OUT_DIR/iperf3_tcp_to_receiver.json" || true + iperf3 -c "$RECEIVER_IP" -t "$DURATION" -R --json > "$OUT_DIR/iperf3_tcp_from_receiver_reverse.json" || true + for rate in 30 60 120; do + iperf3 -c "$RECEIVER_IP" -u -b "${rate}M" -t "$DURATION" --json > "$OUT_DIR/iperf3_udp_${rate}mbps.json" || true + done +else + echo "iperf3 not installed; install it on both machines before cable benchmarks." | tee "$OUT_DIR/iperf3_missing.txt" +fi + +if [[ "$CASE_NAME" == "tailscale" || -n "$TAILSCALE_TARGET" ]]; then + TARGET="${TAILSCALE_TARGET:-$RECEIVER_IP}" + if command -v tailscale >/dev/null 2>&1; then + tailscale status > "$OUT_DIR/tailscale_status.txt" 2>&1 || true + tailscale netcheck > "$OUT_DIR/tailscale_netcheck.txt" 2>&1 || true + tailscale ping --c 10 "$TARGET" > "$OUT_DIR/tailscale_ping.txt" 2>&1 || true + else + echo "tailscale CLI not found" | tee "$OUT_DIR/tailscale_missing.txt" + fi +fi + +cat > "$OUT_DIR/summary.md" < "$RUN_ROOT/video_encoders.txt" + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +codec,resolution,bitrate_mbps,max_keyframe_interval,max_keyframe_interval_duration,frames_requested,frames_encoded,failed_frames,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log +CSV + +case_count=0 + +bitrates_for_resolution() { + case "$1" in + 2560x1440) echo "20 40 60" ;; + 3200x1800) echo "40 60 80 120" ;; + 3840x2160|4096x2304) echo "60 80 120" ;; + *) echo "60" ;; + esac +} + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +run_case() { + local codec="$1" + local resolution="$2" + local bitrate="$3" + local kfi="$4" + local kfd="$5" + + case_count=$((case_count + 1)) + if [[ "$LIMIT_CASES" -gt 0 && "$case_count" -gt "$LIMIT_CASES" ]]; then + return + fi + + local safe_name="${codec}_${resolution}_${bitrate}mbps_kfi${kfi}_kfd${kfd}" + safe_name="${safe_name//./_}" + local csv="$RUN_ROOT/${safe_name}.csv" + local log="$RUN_ROOT/${safe_name}.txt" + + "$PRIMARY" \ + --synthetic \ + --resolution "$resolution" \ + --fps "$FPS" \ + --duration "$DURATION" \ + --codec "$codec" \ + --bitrate-mbps "$bitrate" \ + --max-keyframe-interval "$kfi" \ + --max-keyframe-interval-duration "$kfd" \ + --csv "$csv" \ + --print-supported-properties \ + | tee "$log" + + local frames_requested frames_encoded failed avg p95 max payload + frames_requested="$(extract_metric frames_requested "$log")" + frames_encoded="$(extract_metric frames_encoded "$log")" + failed="$(extract_metric failed_frames "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + payload="$(extract_metric payload_bytes "$log")" + + printf '%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$codec" "$resolution" "$bitrate" "$kfi" "$kfd" \ + "$frames_requested" "$frames_encoded" "$failed" "$avg" "$p95" "$max" \ + "$payload" "$csv" "$log" >> "$RUN_ROOT/summary.csv" +} + +for resolution in 2560x1440 3200x1800 3840x2160 4096x2304; do + for bitrate in $(bitrates_for_resolution "$resolution"); do + for kfi in 60 120; do + for kfd in 1 2; do + run_case hevc "$resolution" "$bitrate" "$kfi" "$kfd" + done + done + done +done + +for resolution in 2560x1440 3840x2160 4096x2304; do + for bitrate in $(bitrates_for_resolution "$resolution"); do + for kfi in 60 120; do + for kfd in 1 2; do + run_case h264 "$resolution" "$bitrate" "$kfi" "$kfd" + done + done + done +done + +cat > "$RUN_ROOT/summary.md" < "$RUN_DIR/pmset_batt.txt" +system_profiler SPPowerDataType > "$RUN_DIR/system_profiler_power.txt" +ioreg -rn AppleSmartBattery > "$RUN_DIR/ioreg_apple_smart_battery.txt" + +echo "power_probe_dir=$RUN_DIR" diff --git a/scripts/mac_single_stream_stability_matrix.sh b/scripts/mac_single_stream_stability_matrix.sh new file mode 100755 index 0000000..adc99f4 --- /dev/null +++ b/scripts/mac_single_stream_stability_matrix.sh @@ -0,0 +1,222 @@ +#!/usr/bin/env bash +set -euo pipefail + +DURATION="${DURATION:-5}" +REPEATS="${REPEATS:-3}" +COOLDOWN_SECONDS="${COOLDOWN_SECONDS:-3}" +RUN_ROOT="${RUN_ROOT:-}" +AVE_HEVC_ID="${AVE_HEVC_ID:-com.apple.videotoolbox.videoencoder.ave.hevc}" +BITRATE_MBPS="${BITRATE_MBPS:-120}" +PRIORITIZE_SPEED="${PRIORITIZE_SPEED:-unset}" + +STAMP="$(date +%Y-%m-%d_%H%M)" +if [[ -z "$RUN_ROOT" ]]; then + RUN_ROOT="benchmarks/runs/${STAMP}_single_stream_stability" +fi +mkdir -p "$RUN_ROOT" + +PRIMARY="apps/primary-macos/.build/release/ibridge-primary" + +usage() { + cat <<'USAGE' +Usage: + REPEATS=3 DURATION=5 scripts/mac_single_stream_stability_matrix.sh + +Environment: + DURATION=5 + REPEATS=3 + COOLDOWN_SECONDS=3 + BITRATE_MBPS=120 + PRIORITIZE_SPEED=unset|on|off + RUN_ROOT=benchmarks/runs/custom_name + +This isolates single-stream HEVC stability across repeated runs. It intentionally +does not run tiled encoding or receiver decode/render. +USAGE +} + +if [[ "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then + usage + exit 0 +fi + +swift build --package-path apps/primary-macos -c release +"$PRIMARY" --list-encoders > "$RUN_ROOT/video_encoders.txt" + +{ + echo "timestamp=$STAMP" + echo "duration_seconds=$DURATION" + echo "repeats=$REPEATS" + echo "cooldown_seconds=$COOLDOWN_SECONDS" + echo "bitrate_mbps=$BITRATE_MBPS" + echo "prioritize_speed=$PRIORITIZE_SPEED" + echo "encoder_id=$AVE_HEVC_ID" + echo "hostname=$(hostname)" + echo "hw_model=$(sysctl -n hw.model 2>/dev/null || true)" + echo "cpu=$(sysctl -n machdep.cpu.brand_string 2>/dev/null || true)" + pmset -g batt 2>/dev/null | paste -sd ' ' - | sed 's/[[:space:]]*$//' +} > "$RUN_ROOT/metadata.txt" + +system_profiler SPHardwareDataType SPDisplaysDataType \ + | sed '/Serial Number/d;/Hardware UUID/d;/Provisioning UDID/d' \ + > "$RUN_ROOT/system_profile_sanitized.txt" 2>&1 || true + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +run_index,resolution,fps,bitrate_mbps,prioritize_speed,status,frames_requested,frames_submitted,frames_encoded,failed_frames,avg_generate_ms,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,log,csv +CSV + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +append_summary() { + local run_index="$1" + local resolution="$2" + local status="$3" + local log="$4" + local csv="$5" + + local frames_requested frames_submitted frames_encoded failed generate avg p95 max payload + frames_requested="$(extract_metric frames_requested "$log")" + frames_submitted="$(extract_metric frames_submitted "$log")" + frames_encoded="$(extract_metric frames_encoded "$log")" + failed="$(extract_metric failed_frames "$log")" + generate="$(extract_metric avg_generate_ms "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + payload="$(extract_metric payload_bytes "$log")" + + printf '%s,%s,60,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$run_index" "$resolution" "$BITRATE_MBPS" "$PRIORITIZE_SPEED" "$status" \ + "${frames_requested:-0}" "${frames_submitted:-0}" "${frames_encoded:-0}" \ + "${failed:-1}" "${generate:-0}" "${avg:-0}" "${p95:-0}" "${max:-0}" \ + "${payload:-0}" "$log" "$csv" >> "$RUN_ROOT/summary.csv" +} + +run_case() { + local run_index="$1" + local resolution="$2" + local safe_resolution="${resolution//x/_}" + local log="$RUN_ROOT/run${run_index}_${safe_resolution}.txt" + local csv="$RUN_ROOT/run${run_index}_${safe_resolution}.csv" + local command=( + "$PRIMARY" + --synthetic + --source synthetic-nv12 + --resolution "$resolution" + --fps 60 + --duration "$DURATION" + --codec hevc + --bitrate-mbps "$BITRATE_MBPS" + --encoder-id "$AVE_HEVC_ID" + --disable-low-latency-rate-control + --allow-temporal-compression + --disable-frame-reordering + --disable-open-gop + --data-rate-limit-mbps "$BITRATE_MBPS" + --data-rate-window 1.0 + --csv "$csv" + ) + + case "$PRIORITIZE_SPEED" in + on) command+=(--prioritize-speed) ;; + off) command+=(--prioritize-quality) ;; + unset) ;; + *) + echo "unknown PRIORITIZE_SPEED=$PRIORITIZE_SPEED" >&2 + exit 1 + ;; + esac + + { + echo "run_index=$run_index" + echo "resolution=$resolution" + echo "started_at=$(date '+%Y-%m-%d %H:%M:%S %Z')" + pmset -g batt 2>/dev/null | paste -sd ' ' - | sed 's/[[:space:]]*$//' + echo "--- encoder output ---" + } > "$log" + + set +e + "${command[@]}" >> "$log" 2>&1 + local status=$? + set -e + + { + echo "--- run footer ---" + echo "finished_at=$(date '+%Y-%m-%d %H:%M:%S %Z')" + echo "exit_code=$status" + } >> "$log" + + append_summary "$run_index" "$resolution" "$status" "$log" "$csv" +} + +RESOLUTIONS=(4096x2304 3840x2160 3200x1800 2560x1440) + +for run_index in $(seq 1 "$REPEATS"); do + for resolution in "${RESOLUTIONS[@]}"; do + run_case "$run_index" "$resolution" + if [[ "$COOLDOWN_SECONDS" -gt 0 ]]; then + sleep "$COOLDOWN_SECONDS" + fi + done +done + +python3 - "$RUN_ROOT/summary.csv" "$RUN_ROOT/aggregate.md" <<'PY' +import csv +import statistics +import sys +from collections import defaultdict + +summary_path, output_path = sys.argv[1:3] +rows = list(csv.DictReader(open(summary_path))) +groups: dict[str, list[dict[str, str]]] = defaultdict(list) +for row in rows: + groups[row["resolution"]].append(row) + +lines = ["# Single Stream Stability Aggregate", ""] +lines.append("| Resolution | Runs | Avg of avg ms | Best p95 ms | Median p95 ms | Worst p95 ms | Worst max ms | Pass p95 <=16.67 |") +lines.append("|---|---:|---:|---:|---:|---:|---:|---:|") +for resolution in ("4096x2304", "3840x2160", "3200x1800", "2560x1440"): + items = groups.get(resolution, []) + avgs = [float(item["avg_encode_ms"]) for item in items] + p95s = [float(item["p95_encode_ms"]) for item in items] + maxes = [float(item["max_encode_ms"]) for item in items] + pass_count = sum(1 for value in p95s if value <= 16.67) + lines.append( + f"| {resolution} | {len(items)} | " + f"{(statistics.mean(avgs) if avgs else 0):.3f} | " + f"{(min(p95s) if p95s else 0):.3f} | " + f"{(statistics.median(p95s) if p95s else 0):.3f} | " + f"{(max(p95s) if p95s else 0):.3f} | " + f"{(max(maxes) if maxes else 0):.3f} | " + f"{pass_count}/{len(items)} |" + ) + +open(output_path, "w").write("\n".join(lines) + "\n") +print("\n".join(lines)) +PY + +cat > "$RUN_ROOT/summary.md" < "$RUN_ROOT/video_encoders.txt" + +{ + echo "timestamp=$STAMP" + echo "duration_seconds=$DURATION" + echo "profile_set=$PROFILE_SET" + echo "device_profile_requested=$DEVICE_PROFILE" + echo "hostname=$(hostname)" + echo "pwd=$(pwd)" + uname -a +} > "$RUN_ROOT/metadata.txt" + +system_profiler SPHardwareDataType SPDisplaysDataType \ + | sed '/Serial Number/d;/Hardware UUID/d;/Provisioning UDID/d' \ + > "$RUN_ROOT/system_profile_sanitized.txt" 2>&1 || true + +if [[ "$DEVICE_PROFILE" == "auto" ]]; then + MODEL="$(sysctl -n hw.model 2>/dev/null || true)" + case "$MODEL" in + MacBookPro18,*) DEVICE_PROFILE="m1max" ;; + MacBookAir10,*) DEVICE_PROFILE="m1air" ;; + *) DEVICE_PROFILE="unknown" ;; + esac +fi + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +profile,connection_class,device_profile,source,resolution,fps,duration_seconds,codec,bitrate_mbps,status,frames_requested,frames_submitted,frames_encoded,failed_frames,effective_logical_fps,avg_encode_ms,p95_encode_ms,max_encode_ms,payload_bytes,csv,logical_csv,log,deadline_md +CSV + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +append_summary() { + local profile="$1" + local connection_class="$2" + local source="$3" + local resolution="$4" + local fps="$5" + local bitrate="$6" + local status="$7" + local csv="$8" + local log="$9" + local logical_csv="${10}" + local deadline_md="${11}" + + local frames_requested frames_submitted frames_encoded failed effective avg p95 max payload + frames_requested="$(extract_metric frames_requested "$log")" + frames_submitted="$(extract_metric frames_submitted "$log")" + frames_encoded="$(extract_metric frames_encoded "$log")" + failed="$(extract_metric failed_frames "$log")" + effective="$(extract_metric effective_logical_fps "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + payload="$(extract_metric payload_bytes "$log")" + + printf '%s,%s,%s,%s,%s,%s,%s,hevc,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$profile" "$connection_class" "$DEVICE_PROFILE" "$source" "$resolution" "$fps" \ + "$DURATION" "$bitrate" "$status" "${frames_requested:-0}" "${frames_submitted:-0}" \ + "${frames_encoded:-0}" "${failed:-1}" "${effective:-}" "${avg:-0}" "${p95:-0}" \ + "${max:-0}" "${payload:-0}" "$csv" "$logical_csv" "$log" "$deadline_md" \ + >> "$RUN_ROOT/summary.csv" +} + +run_encode_case() { + local profile="$1" + local connection_class="$2" + local source="$3" + local resolution="$4" + local fps="$5" + local bitrate="$6" + shift 6 + local extra_args=("$@") + + local safe_name="${profile}_${source}_${resolution}_${fps}fps_${bitrate}mbps" + safe_name="${safe_name//[^A-Za-z0-9_]/_}" + local csv="$RUN_ROOT/${safe_name}.csv" + local log="$RUN_ROOT/${safe_name}.txt" + local logical_csv="" + local deadline_md="" + local mode_arg="--synthetic" + if [[ "$source" == "screen-capture" ]]; then + mode_arg="--screen-capture" + fi + + local command=( + "$PRIMARY" + "$mode_arg" + --source "$source" + --resolution "$resolution" + --fps "$fps" + --duration "$DURATION" + --codec hevc + --bitrate-mbps "$bitrate" + --encoder-id "$AVE_HEVC_ID" + --disable-low-latency-rate-control + --allow-temporal-compression + --disable-frame-reordering + --disable-open-gop + --data-rate-limit-mbps "$bitrate" + --data-rate-window 1.0 + --prioritize-speed + --csv "$csv" + ) + + if [[ "${#extra_args[@]}" -gt 0 ]]; then + command+=("${extra_args[@]}") + fi + + set +e + "${command[@]}" > "$log" 2>&1 + local exit_code=$? + set -e + + if [[ "$source" == "synthetic-nv12-tiled" ]]; then + logical_csv="${csv%.csv}_logical.csv" + if [[ -f "$logical_csv" ]]; then + deadline_md="${csv%.csv}_deadline.md" + python3 scripts/analyze_tiled_deadline.py "$logical_csv" --run-log "$log" --summary-md "$deadline_md" >/dev/null + fi + fi + + append_summary "$profile" "$connection_class" "$source" "$resolution" "$fps" "$bitrate" "$exit_code" "$csv" "$log" "$logical_csv" "$deadline_md" +} + +should_run() { + local profile="$1" + if [[ "$DEVICE_PROFILE" == "m1max" && ( "$profile" == *":m1air"* || "$profile" == *":air"* ) ]]; then + return 1 + fi + if [[ "$DEVICE_PROFILE" == "m1air" && "$profile" == *":m1max"* ]]; then + return 1 + fi + case "$PROFILE_SET" in + all) return 0 ;; + quick) + [[ "$profile" == quick:* ]] + ;; + wired) + [[ "$profile" == wired:* || "$profile" == quick:wired:* ]] + ;; + wireless) + [[ "$profile" == wireless:* || "$profile" == quick:wireless:* ]] + ;; + air) + [[ "$profile" == air:* || "$profile" == quick:air:* ]] + ;; + *) + echo "unknown PROFILE_SET=$PROFILE_SET" >&2 + exit 1 + ;; + esac +} + +maybe_run() { + local selector="$1" + shift + if should_run "$selector"; then + run_encode_case "$@" + fi +} + +# M1 Max single-stream candidates run before tiled candidates. Prior tests showed +# 2x2 tiled 5K60 can leave VideoToolbox's encoder service in a state where +# immediate single-stream follow-up measurements are pessimistic. +maybe_run "wired:m1max" \ + "m1max_wired_full_5k30_single_hevc" "wired" "synthetic-nv12" "5120x2880" 30 120 + +maybe_run "quick:wired:m1max" \ + "m1max_wired_high_detail_4096_60_hevc" "wired" "synthetic-nv12" "4096x2304" 60 120 + +maybe_run "wired:m1max" \ + "m1max_wired_4k60_hevc" "wired" "synthetic-nv12" "3840x2160" 60 60 + +# Wireless candidates: prefer lower bitrate and resolution stability over full 5K. +maybe_run "quick:wireless:balanced" \ + "wireless_balanced_3200_60_hevc" "wireless" "synthetic-nv12" "3200x1800" 60 60 + +maybe_run "wireless:4k" \ + "wireless_4k60_hevc" "wireless" "synthetic-nv12" "3840x2160" 60 45 + +maybe_run "wireless:retina2x" \ + "wireless_retina2x_1440p60_hevc" "wireless" "synthetic-nv12" "2560x1440" 60 25 + +# Full-resolution tiled candidate runs after single-stream probes to avoid +# contaminating fallback-profile measurements. +maybe_run "quick:wired:m1max" \ + "m1max_wired_full_5k60_tiled_hevc" "wired" "synthetic-nv12-tiled" "5120x2880" 60 30 \ + --tile-columns 2 --tile-rows 2 --tile-reuse-buffers --tile-reset-every-frames 180 --tile-max-inflight-logical-frames 1 + +# M1 Air candidates: do not assume tiled 5K60; establish lower-resolution ceilings first. +maybe_run "quick:air:baseline" \ + "m1air_baseline_1440p60_hevc" "any" "synthetic-nv12" "2560x1440" 60 25 + +maybe_run "air:balanced" \ + "m1air_balanced_3200_60_hevc" "any" "synthetic-nv12" "3200x1800" 60 35 + +maybe_run "air:wired_probe" \ + "m1air_wired_4k60_hevc" "wired" "synthetic-nv12" "3840x2160" 60 45 + +maybe_run "air:tiled_probe" \ + "m1air_wired_full_5k60_tiled_probe_hevc" "wired" "synthetic-nv12-tiled" "5120x2880" 60 25 \ + --tile-columns 2 --tile-rows 2 --tile-reuse-buffers --tile-reset-every-frames 180 --tile-max-inflight-logical-frames 1 + +if [[ "$INCLUDE_SCREEN_CAPTURE" == "1" ]]; then + maybe_run "wired:sck" \ + "sck_4k60_capture_encode_hevc" "wired" "screen-capture" "3840x2160" 60 60 \ + --capture-display-index 0 --capture-queue-depth 8 + maybe_run "wired:sck" \ + "sck_4096_60_capture_encode_hevc" "wired" "screen-capture" "4096x2304" 60 80 \ + --capture-display-index 0 --capture-queue-depth 8 +fi + +cat > "$RUN_ROOT/summary.md" < "$RUN_ROOT/video_encoders.txt" + +cat > "$RUN_ROOT/summary.csv" <<'CSV' +profile,codec,resolution,bitrate_mbps,encoder_id,low_latency_rate_control,realtime,allow_temporal_compression,allow_frame_reordering,allow_open_gop,prioritize_speed,max_frame_delay_count,data_rate_limit_mbps,payload_format,frames_requested,frames_encoded,failed_frames,avg_encode_latency_ms,p95_encode_latency_ms,max_encode_latency_ms,payload_bytes,csv,log +CSV + +case_count=0 + +extract_metric() { + local key="$1" + local log="$2" + awk -F= -v key="$key" '$1 == key { value=$2 } END { print value }' "$log" +} + +run_case() { + local profile="$1" + local resolution="$2" + local bitrate="$3" + shift 3 + local args=("$@") + + case_count=$((case_count + 1)) + if [[ "$LIMIT_CASES" -gt 0 && "$case_count" -gt "$LIMIT_CASES" ]]; then + return + fi + + local safe_name="${profile}_${resolution}_${bitrate}mbps" + safe_name="${safe_name//[^A-Za-z0-9_]/_}" + local csv="$RUN_ROOT/${safe_name}.csv" + local log="$RUN_ROOT/${safe_name}.txt" + + set +e + local command=( + "$PRIMARY" + --synthetic + --resolution "$resolution" + --fps "$FPS" + --duration "$DURATION" + --codec hevc + --bitrate-mbps "$bitrate" + --csv "$csv" + ) + if [[ "${#args[@]}" -gt 0 ]]; then + command+=("${args[@]}") + fi + "${command[@]}" > "$log" 2>&1 + local status=$? + set -e + + if [[ "$status" -ne 0 ]]; then + { + echo "profile=$profile" + echo "resolution=$resolution" + echo "bitrate_mbps=$bitrate" + echo "frames_requested=0" + echo "frames_encoded=0" + echo "failed_frames=1" + echo "avg_encode_latency_ms=0" + echo "p95_encode_latency_ms=0" + echo "max_encode_latency_ms=0" + echo "payload_bytes=0" + } >> "$log" + fi + + local encoder_id llrc realtime temporal reorder opengop speed delay data_limit payload_format + local frames_requested frames_encoded failed avg p95 max payload + encoder_id="$(extract_metric encoder_id "$log")" + llrc="$(extract_metric low_latency_rate_control "$log")" + realtime="$(extract_metric realtime "$log")" + temporal="$(extract_metric allow_temporal_compression "$log")" + reorder="$(extract_metric allow_frame_reordering "$log")" + opengop="$(extract_metric allow_open_gop "$log")" + speed="$(extract_metric prioritize_speed "$log")" + delay="$(extract_metric max_frame_delay_count "$log")" + data_limit="$(extract_metric data_rate_limit_mbps "$log")" + payload_format="$(extract_metric payload_format "$log")" + frames_requested="$(extract_metric frames_requested "$log")" + frames_encoded="$(extract_metric frames_encoded "$log")" + failed="$(extract_metric failed_frames "$log")" + avg="$(extract_metric avg_encode_latency_ms "$log")" + p95="$(extract_metric p95_encode_latency_ms "$log")" + max="$(extract_metric max_encode_latency_ms "$log")" + payload="$(extract_metric payload_bytes "$log")" + + printf '%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n' \ + "$profile" "hevc" "$resolution" "$bitrate" "$encoder_id" "$llrc" "$realtime" \ + "$temporal" "$reorder" "$opengop" "$speed" "$delay" "$data_limit" "$payload_format" \ + "$frames_requested" "$frames_encoded" "$failed" "$avg" "$p95" "$max" "$payload" \ + "$csv" "$log" >> "$RUN_ROOT/summary.csv" +} + +for resolution in 3200x1800 3840x2160 5120x2880; do + bitrate=120 + run_case "auto_llrc_temporal_on" "$resolution" "$bitrate" + run_case "ave_no_llrc_reference" "$resolution" "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --max-frame-delay-count 0 + run_case "ave_no_llrc_speed" "$resolution" "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --max-frame-delay-count 0 \ + --prioritize-speed + run_case "ave_no_llrc_datarate" "$resolution" "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --max-frame-delay-count 0 \ + --data-rate-limit-mbps "$bitrate" \ + --data-rate-window 1.0 + run_case "ave_no_llrc_annexb" "$resolution" "$bitrate" \ + --encoder-id "$AVE_HEVC_ID" \ + --disable-low-latency-rate-control \ + --allow-temporal-compression \ + --disable-frame-reordering \ + --disable-open-gop \ + --max-frame-delay-count 0 \ + --payload-format annex-b +done + +cat > "$RUN_ROOT/summary.md" <I", len(data)) + kind + data + struct.pack(">I", zlib.crc32(kind + data) & 0xffffffff) + +def write_png(path, size): + rows = [] + for y in range(size): + row = bytearray() + for x in range(size): + nx = x / max(size - 1, 1) + ny = y / max(size - 1, 1) + margin = int(size * 0.11) + radius = int(size * 0.18) + inside = margin <= x < size - margin and margin <= y < size - margin + corner = False + for cx, cy in ((margin + radius, margin + radius), (size - margin - radius - 1, margin + radius), (margin + radius, size - margin - radius - 1), (size - margin - radius - 1, size - margin - radius - 1)): + if (x < margin + radius and cx < size / 2 or x > size - margin - radius and cx > size / 2) and (y < margin + radius and cy < size / 2 or y > size - margin - radius and cy > size / 2): + corner = (x - cx) ** 2 + (y - cy) ** 2 > radius ** 2 + if not inside or corner: + row += bytes((0, 0, 0, 0)) + continue + r = int(16 + 20 * nx) + g = int(102 + 96 * ny) + b = int(205 + 35 * (1 - nx)) + a = 255 + # Two display outlines connected by a bridge. + lw = max(2, size // 42) + left = (int(size * 0.23), int(size * 0.35), int(size * 0.43), int(size * 0.58)) + right = (int(size * 0.57), int(size * 0.35), int(size * 0.77), int(size * 0.58)) + white = False + for rect in (left, right): + x1, y1, x2, y2 = rect + if x1 <= x <= x2 and y1 <= y <= y2 and (x - x1 < lw or x2 - x < lw or y - y1 < lw or y2 - y < lw): + white = True + if int(size * 0.45) <= x <= int(size * 0.55) and abs(y - int(size * 0.47)) <= max(1, size // 70): + white = True + if white: + r, g, b, a = 245, 252, 255, 255 + row += bytes((r, g, b, a)) + rows.append(b"\x00" + bytes(row)) + raw = b"".join(rows) + data = b"\x89PNG\r\n\x1a\n" + data += png_chunk(b"IHDR", struct.pack(">IIBBBBB", size, size, 8, 6, 0, 0, 0)) + data += png_chunk(b"IDAT", zlib.compress(raw, 9)) + data += png_chunk(b"IEND", b"") + with open(path, "wb") as f: + f.write(data) + +for name, size in sizes.items(): + write_png(os.path.join(iconset, name), size) +PY + iconutil -c icns "$iconset" -o "$output_dir/${icon_name}.icns" +} + +make_icon "iBridgeControl" "$CONTROL_APP/Contents/Resources" +make_icon "iBridgeReceiver" "$RECEIVER_APP/Contents/Resources" + +swift build --package-path apps/primary-macos -c release +swift build --package-path apps/controller-macos -c release +swift build --package-path apps/receiver-macos -c release --arch arm64 +swift build --package-path apps/receiver-macos -c release --arch x86_64 + +lipo -create "$RECEIVER_ARM64_BIN" "$RECEIVER_X86_64_BIN" -output "$RECEIVER_UNIVERSAL_BIN" +cp "$RECEIVER_UNIVERSAL_BIN" "$RECEIVER_APP/Contents/MacOS/iBridgeReceiver" +cp "$CONTROL_BIN" "$CONTROL_APP/Contents/MacOS/iBridgeControl" +cp "$PRIMARY_BIN" "$PACKAGE_ROOT/bin/ibridge-primary" +cp scripts/start_ibridge_virtual_capture.sh "$PACKAGE_ROOT/scripts/start_ibridge_virtual_capture.sh" +cp scripts/start_2017_imac_receiver_macos.sh "$PACKAGE_ROOT/scripts/start_2017_imac_receiver_macos.sh" +cp scripts/start_mbp_to_2017_imac_4k60.sh "$PACKAGE_ROOT/scripts/start_mbp_to_2017_imac_4k60.sh" +cp scripts/start_2015_imac_receiver_macos.sh "$PACKAGE_ROOT/scripts/start_2015_imac_receiver_macos.sh" +cp scripts/stop_2015_imac_receiver_macos.sh "$PACKAGE_ROOT/scripts/stop_2015_imac_receiver_macos.sh" +cp docs/18_ALPHA_RELEASE.md "$PACKAGE_ROOT/docs/18_ALPHA_RELEASE.md" + +cat > "$RECEIVER_APP/Contents/Info.plist" < + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + iBridgeReceiver + CFBundleIconFile + iBridgeReceiver + CFBundleDisplayName + iBridge Receiver + CFBundleIdentifier + dev.oosu.iBridge.receiver + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + iBridge Receiver + CFBundlePackageType + APPL + CFBundleShortVersionString + $VERSION + CFBundleVersion + $VERSION + LSMinimumSystemVersion + 14.0 + NSHighResolutionCapable + + NSSupportsAutomaticGraphicsSwitching + + + +PLIST + +cat > "$RECEIVER_APP/Contents/MacOS/iBridgeReceiver.command" <<'SCRIPT' +#!/usr/bin/env bash +set -euo pipefail +DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +exec "$DIR/iBridgeReceiver" --port "${PORT:-48320}" --fullscreen --hide-status --title "iBridge Receiver" +SCRIPT + +cat > "$CONTROL_APP/Contents/Info.plist" < + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + iBridgeControl + CFBundleIconFile + iBridgeControl + CFBundleDisplayName + iBridge Studio + CFBundleIdentifier + dev.oosu.iBridge.control + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + iBridge Studio + CFBundlePackageType + APPL + CFBundleShortVersionString + $VERSION + CFBundleVersion + $VERSION + LSMinimumSystemVersion + 14.0 + NSHighResolutionCapable + + + +PLIST + +cat > "$PACKAGE_ROOT/Start iBridge Virtual Capture.command" <<'SCRIPT' +#!/usr/bin/env bash +set -euo pipefail +ROOT="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +cd "$ROOT" +exec scripts/start_ibridge_virtual_capture.sh +SCRIPT + +cat > "$PACKAGE_ROOT/Start iBridge LAN High Quality.command" <<'SCRIPT' +#!/usr/bin/env bash +set -euo pipefail +ROOT="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +cd "$ROOT" +export PROFILE="${PROFILE:-lan-readable}" +exec scripts/start_ibridge_virtual_capture.sh +SCRIPT + +cat > "$PACKAGE_ROOT/Start iBridge 4K60.command" <<'SCRIPT' +#!/usr/bin/env bash +set -euo pipefail +ROOT="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +cd "$ROOT" +export PROFILE="${PROFILE:-lan-4k}" +exec scripts/start_ibridge_virtual_capture.sh +SCRIPT + +cat > "$PACKAGE_ROOT/README.md" <<'README' +# iBridge Alpha + +This is an internal alpha package for local testing. + +## Receiver iMac + +Open `iBridge Receiver.app` on the receiver iMac. It listens on TCP `48320`, +opens a standard macOS fullscreen receiver window, and hides the debug status +overlay by default. Use `Command-F` to toggle fullscreen and `Esc` to leave +fullscreen. The receiver app is a universal macOS binary for Apple Silicon and +Intel iMac receivers. + +## Source Mac + +1. Keep BetterDisplay `Virtual 16:9` connected as an extended display. +2. Set `RECEIVER_IP` if needed. +3. Run `Start iBridge 4K60.command` when BetterDisplay `Virtual 16:9` is set + to 4K60, `Start iBridge LAN High Quality.command` for the safer wired + readability profile, or `Start iBridge Virtual Capture.command` for the + balanced default. + +Default sender profile: + +- `1920x1080 @ 60fps` +- HEVC +- 25Mbps +- receiver endpoint from `RECEIVER_IP` + +Wired high-quality profile: + +- `2560x1440 @ 30fps` +- HEVC +- 35Mbps +- `PROFILE=lan-readable` + +4K60 wired profile: + +- `3840x2160 @ 60fps` +- HEVC +- 80Mbps +- `PROFILE=lan-4k` + +Input relay is enabled by default. The receiver sends mouse and keyboard events +back to the source Mac over the same iBridge TCP connection. The source Mac may +ask for Accessibility permission the first time input injection is used. + +Example: + +```bash +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ Virtual\ Capture.command +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ LAN\ High\ Quality.command +RECEIVER_IP=169.254.70.114 ./Start\ iBridge\ 4K60.command +``` + +From a repo checkout, the current MacBook Pro -> 2017 iMac wired test path is: + +```bash +scripts/start_mbp_to_2017_imac_4k60.sh +``` + +For a lighter smoke: + +```bash +FPS=30 BITRATE_MBPS=8 RECEIVER_IP=100.84.32.31 ./Start\ iBridge\ Virtual\ Capture.command +``` + +## Current Limits + +- This alpha is not notarized. +- Screen Recording permission is required for the source sender. +- 4K capture works but is not yet smooth enough for the default profile. +- Display auto-selection chooses the first non-origin extended display; use + `CAPTURE_DISPLAY_INDEX=` if the wrong display is selected. + +See `docs/18_ALPHA_RELEASE.md` for the repo release notes. +README + +chmod +x \ + "$CONTROL_APP/Contents/MacOS/iBridgeControl" \ + "$RECEIVER_APP/Contents/MacOS/iBridgeReceiver" \ + "$RECEIVER_APP/Contents/MacOS/iBridgeReceiver.command" \ + "$PACKAGE_ROOT/bin/ibridge-primary" \ + "$PACKAGE_ROOT/scripts/start_ibridge_virtual_capture.sh" \ + "$PACKAGE_ROOT/scripts/start_2017_imac_receiver_macos.sh" \ + "$PACKAGE_ROOT/scripts/start_mbp_to_2017_imac_4k60.sh" \ + "$PACKAGE_ROOT/scripts/start_2015_imac_receiver_macos.sh" \ + "$PACKAGE_ROOT/scripts/stop_2015_imac_receiver_macos.sh" \ + "$PACKAGE_ROOT/Start iBridge Virtual Capture.command" \ + "$PACKAGE_ROOT/Start iBridge LAN High Quality.command" \ + "$PACKAGE_ROOT/Start iBridge 4K60.command" + +codesign --force --deep --sign - "$CONTROL_APP" >/dev/null 2>&1 || true +codesign --force --deep --sign - "$RECEIVER_APP" >/dev/null 2>&1 || true + +(cd "$DIST_ROOT" && ditto -c -k --sequesterRsrc --keepParent "iBridge-$VERSION" "iBridge-$VERSION.zip") + +echo "$PACKAGE_ROOT" +echo "$DIST_ROOT/iBridge-$VERSION.zip" diff --git a/scripts/start_2015_imac_receiver_macos.sh b/scripts/start_2015_imac_receiver_macos.sh new file mode 100755 index 0000000..fcebef9 --- /dev/null +++ b/scripts/start_2015_imac_receiver_macos.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash +set -euo pipefail + +RECEIVER_SSH="${RECEIVER_SSH:-oosu@100.84.32.31}" +RECEIVER_KEY="${RECEIVER_KEY:-$HOME/.ssh/ibridge_imac_ed25519}" +REMOTE_REPO="${REMOTE_REPO:-/Users/oosu/development/iBridge}" +PORT="${PORT:-48320}" +TITLE="${TITLE:-iBridge 2015 Receiver}" +FULLSCREEN="${FULLSCREEN:-1}" +SHOW_STATUS="${SHOW_STATUS:-0}" + +fullscreen_arg=() +if [[ "$FULLSCREEN" == "1" || "$FULLSCREEN" == "true" ]]; then + fullscreen_arg=(--fullscreen) +fi + +status_arg=() +if [[ "$SHOW_STATUS" == "0" || "$SHOW_STATUS" == "false" ]]; then + status_arg=(--hide-status) +fi + +ssh -i "$RECEIVER_KEY" "$RECEIVER_SSH" " + set -e + mkdir -p ~/ibridge-remote + cd '$REMOTE_REPO' + git fetch origin + git checkout feat/plan-a-5k60-benchmark + git pull --ff-only + swift build --package-path apps/receiver-macos -c release + pkill -f ibridge-receiver-macos 2>/dev/null || true + pgrep -fl 'caffeinate -dimsu' >/dev/null || nohup caffeinate -dimsu > ~/ibridge-remote/caffeinate.log 2>&1 & + pgrep -fl 'iperf3 -s' >/dev/null || nohup /usr/local/bin/iperf3 -s > ~/ibridge-remote/iperf3-server.log 2>&1 & + : > ~/ibridge-remote/receiver-macos-${PORT}.log + nohup apps/receiver-macos/.build/release/ibridge-receiver-macos --port '$PORT' ${fullscreen_arg[*]} ${status_arg[*]} --title '$TITLE' > ~/ibridge-remote/receiver-macos-${PORT}.log 2>&1 & + echo \$! > ~/ibridge-remote/receiver-macos-${PORT}.pid + sleep 3 + pgrep -fl ibridge-receiver-macos || true + lsof -nP -iTCP:'$PORT' -sTCP:LISTEN || true + tail -20 ~/ibridge-remote/receiver-macos-${PORT}.log || true +" diff --git a/scripts/start_2017_imac_receiver_macos.sh b/scripts/start_2017_imac_receiver_macos.sh new file mode 100755 index 0000000..e611e7c --- /dev/null +++ b/scripts/start_2017_imac_receiver_macos.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +set -euo pipefail + +REMOTE_HOST="${REMOTE_HOST:-gabrieljang@100.89.104.119}" +REMOTE_DIR="${REMOTE_DIR:-~/ibridge-remote/latest}" +PORT="${PORT:-48320}" +TITLE="${TITLE:-iBridge 4K60 Receiver}" +LOCAL_BIN="${LOCAL_BIN:-apps/receiver-macos/.build/x86_64-apple-macosx/release/ibridge-receiver-macos}" + +if [[ ! -x "$LOCAL_BIN" ]]; then + swift build --package-path apps/receiver-macos -c release --arch x86_64 +fi + +ssh "$REMOTE_HOST" "mkdir -p $REMOTE_DIR" +scp "$LOCAL_BIN" "$REMOTE_HOST:$REMOTE_DIR/ibridge-receiver-macos" +ssh "$REMOTE_HOST" " + chmod +x $REMOTE_DIR/ibridge-receiver-macos + pkill -f ibridge-receiver-macos || true + : > ~/ibridge-remote/receiver-macos-${PORT}.log + nohup $REMOTE_DIR/ibridge-receiver-macos --port '$PORT' --fullscreen --hide-status --title '$TITLE' > ~/ibridge-remote/receiver-macos-${PORT}.log 2>&1 & + sleep 1 + pgrep -fl ibridge-receiver-macos + nc -vz 127.0.0.1 '$PORT' + tail -n 20 ~/ibridge-remote/receiver-macos-${PORT}.log +" diff --git a/scripts/start_ibridge_mba_2015.sh b/scripts/start_ibridge_mba_2015.sh new file mode 100755 index 0000000..0b018ef --- /dev/null +++ b/scripts/start_ibridge_mba_2015.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -euo pipefail + +SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" + +"$SCRIPT_DIR/start_2015_imac_receiver_macos.sh" +"$SCRIPT_DIR/start_mba_to_2015_imac_live_capture.sh" diff --git a/scripts/start_ibridge_virtual_capture.sh b/scripts/start_ibridge_virtual_capture.sh new file mode 100755 index 0000000..ca77b0e --- /dev/null +++ b/scripts/start_ibridge_virtual_capture.sh @@ -0,0 +1,222 @@ +#!/usr/bin/env bash +set -euo pipefail + +PROFILE="${PROFILE:-balanced}" +RECEIVER_IP="${RECEIVER_IP:-169.254.70.114}" +RECEIVER_PORT="${RECEIVER_PORT:-48320}" +DURATION="${DURATION:-3600}" +CAPTURE_DISPLAY_INDEX="${CAPTURE_DISPLAY_INDEX:-auto}" +CAPTURE_DISPLAY_NAME="${CAPTURE_DISPLAY_NAME:-}" +RUN_ROOT="${RUN_ROOT:-benchmarks/runs/$(date +%Y-%m-%d_%H%M)_ibridge_virtual_capture}" +PRIMARY_BIN="${PRIMARY_BIN:-}" + +case "$PROFILE" in + balanced) + DEFAULT_RESOLUTION="1920x1080" + DEFAULT_FPS="60" + DEFAULT_BITRATE_MBPS="25" + DEFAULT_SENDER_QUEUE_DEPTH="8" + DEFAULT_CAPTURE_QUEUE_DEPTH="4" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="2" + ;; + lan-readable) + DEFAULT_RESOLUTION="2560x1440" + DEFAULT_FPS="30" + DEFAULT_BITRATE_MBPS="35" + DEFAULT_SENDER_QUEUE_DEPTH="12" + DEFAULT_CAPTURE_QUEUE_DEPTH="6" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="1" + ;; + lan-60hz) + DEFAULT_RESOLUTION="2560x1440" + DEFAULT_FPS="60" + DEFAULT_BITRATE_MBPS="45" + DEFAULT_SENDER_QUEUE_DEPTH="12" + DEFAULT_CAPTURE_QUEUE_DEPTH="6" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="1" + ;; + lan-sharp) + DEFAULT_RESOLUTION="3200x1800" + DEFAULT_FPS="30" + DEFAULT_BITRATE_MBPS="50" + DEFAULT_SENDER_QUEUE_DEPTH="12" + DEFAULT_CAPTURE_QUEUE_DEPTH="6" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="1" + ;; + lan-4k) + DEFAULT_RESOLUTION="3840x2160" + DEFAULT_FPS="60" + DEFAULT_BITRATE_MBPS="80" + DEFAULT_SENDER_QUEUE_DEPTH="12" + DEFAULT_CAPTURE_QUEUE_DEPTH="6" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="1" + ;; + imac4k-quality) + DEFAULT_RESOLUTION="4096x2304" + DEFAULT_FPS="60" + DEFAULT_BITRATE_MBPS="220" + DEFAULT_SENDER_QUEUE_DEPTH="12" + DEFAULT_CAPTURE_QUEUE_DEPTH="6" + DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES="1" + ;; + *) + echo "Unknown PROFILE=$PROFILE. Use balanced, lan-readable, lan-60hz, lan-sharp, lan-4k, or imac4k-quality." >&2 + exit 64 + ;; +esac + +RESOLUTION="${RESOLUTION:-$DEFAULT_RESOLUTION}" +FPS="${FPS:-$DEFAULT_FPS}" +BITRATE_MBPS="${BITRATE_MBPS:-$DEFAULT_BITRATE_MBPS}" +SENDER_QUEUE_DEPTH="${SENDER_QUEUE_DEPTH:-$DEFAULT_SENDER_QUEUE_DEPTH}" +CAPTURE_QUEUE_DEPTH="${CAPTURE_QUEUE_DEPTH:-$DEFAULT_CAPTURE_QUEUE_DEPTH}" +CAPTURE_MAX_IN_FLIGHT_FRAMES="${CAPTURE_MAX_IN_FLIGHT_FRAMES:-$DEFAULT_CAPTURE_MAX_IN_FLIGHT_FRAMES}" +CAPTURE_SHOW_CURSOR="${CAPTURE_SHOW_CURSOR:-0}" +CURSOR_ARGS=() +if [[ "$CAPTURE_SHOW_CURSOR" == "1" || "$CAPTURE_SHOW_CURSOR" == "true" || "$CAPTURE_SHOW_CURSOR" == "on" ]]; then + CURSOR_ARGS=(--show-captured-cursor) +else + CURSOR_ARGS=(--hide-captured-cursor) +fi + +mkdir -p "$RUN_ROOT" + +if [[ -z "$PRIMARY_BIN" ]]; then + if [[ -f "apps/primary-macos/Package.swift" ]]; then + swift build --package-path apps/primary-macos -c release + PRIMARY_BIN="apps/primary-macos/.build/release/ibridge-primary" + elif [[ -x "bin/ibridge-primary" ]]; then + PRIMARY_BIN="bin/ibridge-primary" + else + echo "Could not find iBridge primary binary. Run from the repo root or packaged iBridge folder." >&2 + exit 1 + fi +fi + +display_list="$RUN_ROOT/capture_displays.txt" +"$PRIMARY_BIN" --list-displays | tee "$display_list" + +display_count="$( + awk -F= '/^capture_display_count=/ { print $2; exit }' "$display_list" +)" +if [[ "${display_count:-0}" == "0" ]]; then + cat <&2 +iBridge could not see a ScreenCaptureKit-capturable display. + +Check these before retrying: +- BetterDisplay virtual screen is connected. +- macOS Displays shows it as Extended display, not AirPlay mirroring. +- Terminal/Codex/packaged sender has Screen Recording permission. +- The display is awake. + +Display list was written to $display_list +EOF + exit 2 +fi + +if [[ -n "$CAPTURE_DISPLAY_NAME" ]]; then + CAPTURE_DISPLAY_INDEX="$( + awk -v target="$CAPTURE_DISPLAY_NAME" ' + /display_index=/ { + idx = "" + for (i = 1; i <= NF; i++) { + if ($i ~ /^display_index=/) { + split($i, a, "="); idx = a[2] + } + } + if (idx != "" && index($0, "name=\"" target "\"") > 0) { + print idx + exit + } + } + ' "$display_list" + )" + if [[ -z "$CAPTURE_DISPLAY_INDEX" ]]; then + cat <&2 +iBridge could not find CAPTURE_DISPLAY_NAME="$CAPTURE_DISPLAY_NAME". + +Available displays: +$(cat "$display_list") +EOF + exit 3 + fi +elif [[ "$CAPTURE_DISPLAY_INDEX" == "auto" ]]; then + CAPTURE_DISPLAY_INDEX="$( + awk ' + /display_index=/ { + idx = ""; frame = ""; width = 0; height = 0; + for (i = 1; i <= NF; i++) { + if ($i ~ /^display_index=/) { + split($i, a, "="); idx = a[2] + } + if ($i ~ /^width=/) { + split($i, w, "="); width = w[2] + } + if ($i ~ /^height=/) { + split($i, h, "="); height = h[2] + } + if ($i ~ /^frame=/) { + frame = substr($0, index($0, "frame=")) + } + } + if (idx != "" && index(frame, "frame=(0.0, 0.0,") != 1) { + area = width * height + if (area > best_area) { + best_area = area + best_idx = idx + } + } + } + END { + if (best_idx != "") { + print best_idx + } + } + ' "$display_list" + )" + if [[ -z "$CAPTURE_DISPLAY_INDEX" ]]; then + CAPTURE_DISPLAY_INDEX="0" + fi +fi + +cat <&1 | tee "$RUN_ROOT/primary_console.txt" + +echo "Wrote $RUN_ROOT" diff --git a/scripts/start_mba_to_2015_imac_live_capture.sh b/scripts/start_mba_to_2015_imac_live_capture.sh new file mode 100755 index 0000000..db9dced --- /dev/null +++ b/scripts/start_mba_to_2015_imac_live_capture.sh @@ -0,0 +1,56 @@ +#!/usr/bin/env bash +set -euo pipefail + +RECEIVER_IP="${RECEIVER_IP:-100.84.32.31}" +RECEIVER_PORT="${RECEIVER_PORT:-48320}" +RECEIVER_SSH="${RECEIVER_SSH:-oosu@100.84.32.31}" +RECEIVER_KEY="${RECEIVER_KEY:-$HOME/.ssh/ibridge_imac_ed25519}" +RESOLUTION="${RESOLUTION:-1920x1080}" +FPS="${FPS:-30}" +DURATION="${DURATION:-3600}" +BITRATE_MBPS="${BITRATE_MBPS:-8}" +SENDER_QUEUE_DEPTH="${SENDER_QUEUE_DEPTH:-8}" +CAPTURE_DISPLAY_INDEX="${CAPTURE_DISPLAY_INDEX:-1}" +CAPTURE_QUEUE_DEPTH="${CAPTURE_QUEUE_DEPTH:-4}" +RUN_ROOT="${RUN_ROOT:-benchmarks/runs/$(date +%Y-%m-%d_%H%M)_mba_to_2015_imac_live_capture}" + +mkdir -p "$RUN_ROOT" +swift build --package-path apps/primary-macos -c release +apps/primary-macos/.build/release/ibridge-primary --list-displays | tee "$RUN_ROOT/capture_displays.txt" + +cat <&1 | tee "$RUN_ROOT/primary_console.txt" + +ssh -i "$RECEIVER_KEY" "$RECEIVER_SSH" "cat ~/ibridge-remote/receiver-macos-${RECEIVER_PORT}.log" > "$RUN_ROOT/receiver_console.txt" || true +echo "Wrote $RUN_ROOT" diff --git a/scripts/start_mbp_to_2015_imac.sh b/scripts/start_mbp_to_2015_imac.sh new file mode 100755 index 0000000..b2c61df --- /dev/null +++ b/scripts/start_mbp_to_2015_imac.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash +set -euo pipefail + +RECEIVER_IP="${RECEIVER_IP:-100.84.32.31}" +RECEIVER_KEY="${RECEIVER_KEY:-$HOME/.ssh/id_ed25519}" +CAPTURE_DISPLAY_NAME="${CAPTURE_DISPLAY_NAME:-iMac 27inch 2015}" +PROFILE="${PROFILE:-lan-60hz}" +RESOLUTION="${RESOLUTION:-2560x1440}" +BITRATE_MBPS="${BITRATE_MBPS:-80}" +DURATION="${DURATION:-600}" +RUN_ROOT="${RUN_ROOT:-benchmarks/runs/$(date +%Y-%m-%d_%H%M)_mbp_to_2015_imac}" + +RECEIVER_KEY="$RECEIVER_KEY" scripts/start_2015_imac_receiver_macos.sh + +RECEIVER_IP="$RECEIVER_IP" \ +CAPTURE_DISPLAY_NAME="$CAPTURE_DISPLAY_NAME" \ +PROFILE="$PROFILE" \ +RESOLUTION="$RESOLUTION" \ +BITRATE_MBPS="$BITRATE_MBPS" \ +DURATION="$DURATION" \ +RUN_ROOT="$RUN_ROOT" \ +scripts/start_ibridge_virtual_capture.sh diff --git a/scripts/start_mbp_to_2017_imac_4k60.sh b/scripts/start_mbp_to_2017_imac_4k60.sh new file mode 100755 index 0000000..468f411 --- /dev/null +++ b/scripts/start_mbp_to_2017_imac_4k60.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +set -euo pipefail + +RECEIVER_IP="${RECEIVER_IP:-169.254.70.114}" +DURATION="${DURATION:-3600}" +PROFILE="${PROFILE:-lan-4k}" +RUN_ROOT="${RUN_ROOT:-benchmarks/runs/$(date +%Y-%m-%d_%H%M)_mbp_to_2017_imac_4k60}" + +scripts/start_2017_imac_receiver_macos.sh + +PROFILE="$PROFILE" \ +RECEIVER_IP="$RECEIVER_IP" \ +DURATION="$DURATION" \ +RUN_ROOT="$RUN_ROOT" \ +scripts/start_ibridge_virtual_capture.sh diff --git a/scripts/stop_2015_imac_receiver_macos.sh b/scripts/stop_2015_imac_receiver_macos.sh new file mode 100755 index 0000000..56b95b8 --- /dev/null +++ b/scripts/stop_2015_imac_receiver_macos.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -euo pipefail + +RECEIVER_SSH="${RECEIVER_SSH:-oosu@100.84.32.31}" +RECEIVER_KEY="${RECEIVER_KEY:-$HOME/.ssh/ibridge_imac_ed25519}" + +ssh -i "$RECEIVER_KEY" "$RECEIVER_SSH" " + pkill -f ibridge-receiver-macos 2>/dev/null || true + pgrep -fl ibridge-receiver-macos || true +" diff --git a/scripts/windows_imac_setup_inventory.ps1 b/scripts/windows_imac_setup_inventory.ps1 new file mode 100644 index 0000000..cc188d4 --- /dev/null +++ b/scripts/windows_imac_setup_inventory.ps1 @@ -0,0 +1,157 @@ +param( + [string]$OutputRoot = "." +) + +$ErrorActionPreference = "Continue" + +function Write-Section { + param([string]$Title) + "`r`n===== $Title =====`r`n" +} + +function Save-Command { + param( + [string]$Name, + [scriptblock]$Command + ) + + $Path = Join-Path $ReportDir "$Name.txt" + try { + & $Command 2>&1 | Out-String -Width 240 | Set-Content -Path $Path -Encoding UTF8 + } + catch { + "ERROR: $($_.Exception.Message)" | Set-Content -Path $Path -Encoding UTF8 + } +} + +function Get-PathLengthOrNull { + param([string]$Path) + + if (Test-Path $Path) { + return (Get-Item $Path).Length + } + + return $null +} + +$Timestamp = Get-Date -Format "yyyyMMdd-HHmmss" +$ReportDir = Join-Path $OutputRoot "ibridge-imac-prep-$Timestamp" +New-Item -ItemType Directory -Force -Path $ReportDir | Out-Null + +$Summary = New-Object System.Collections.Generic.List[string] +$Summary.Add("iBridge iMac setup inventory") +$Summary.Add("Generated: $(Get-Date -Format o)") +$Summary.Add("Computer: $env:COMPUTERNAME") +$Summary.Add("User: $env:USERNAME") +$Summary.Add("ReportDir: $ReportDir") + +Save-Command "system" { + Write-Section "Computer" + Get-ComputerInfo | Select-Object ` + CsName, CsManufacturer, CsModel, CsSystemType, OsName, OsVersion, OsBuildNumber, WindowsProductName + Write-Section "BIOS" + Get-CimInstance Win32_BIOS | Select-Object Manufacturer, SMBIOSBIOSVersion +} + +Save-Command "network" { + Write-Section "Adapters" + Get-NetAdapter | Sort-Object Name | Select-Object Name, InterfaceDescription, Status, LinkSpeed, MacAddress + Write-Section "IP Addresses" + Get-NetIPAddress | Sort-Object InterfaceAlias, AddressFamily | Select-Object InterfaceAlias, AddressFamily, IPAddress, PrefixLength + Write-Section "Routes" + Get-NetRoute -AddressFamily IPv4 | Sort-Object RouteMetric | Select-Object DestinationPrefix, NextHop, InterfaceAlias, RouteMetric +} + +Save-Command "tailscale" { + $Tailscale = Get-Command tailscale.exe -ErrorAction SilentlyContinue + if ($Tailscale) { + Write-Section "tailscale status" + tailscale status + Write-Section "tailscale netcheck" + tailscale netcheck + } + else { + "tailscale.exe not found in PATH" + } +} + +Save-Command "ssh" { + Write-Section "OpenSSH services" + Get-Service sshd, ssh-agent -ErrorAction SilentlyContinue | Select-Object Name, Status, StartType + Write-Section "Authorized key path checks" + $UserAuthorizedKeys = Join-Path $env:USERPROFILE ".ssh\authorized_keys" + $AdminAuthorizedKeys = Join-Path $env:ProgramData "ssh\administrators_authorized_keys" + foreach ($Path in @($UserAuthorizedKeys, $AdminAuthorizedKeys)) { + [pscustomobject]@{ + Path = $Path + Exists = Test-Path $Path + Length = Get-PathLengthOrNull -Path $Path + } + } + Write-Section "SSH listener" + Get-NetTCPConnection -LocalPort 22 -ErrorAction SilentlyContinue | Select-Object LocalAddress, LocalPort, State, OwningProcess +} + +Save-Command "ports" { + Write-Section "Important listeners" + foreach ($Port in @(22, 3389, 48320, 5900, 5985, 5986)) { + Get-NetTCPConnection -LocalPort $Port -ErrorAction SilentlyContinue | + Select-Object @{Name="CheckedPort";Expression={$Port}}, LocalAddress, LocalPort, State, OwningProcess + } + Write-Section "Firewall rules mentioning iBridge, OpenSSH, Remote Desktop" + Get-NetFirewallRule -ErrorAction SilentlyContinue | + Where-Object { $_.DisplayName -match "iBridge|OpenSSH|Remote Desktop|RDP" } | + Select-Object DisplayName, Enabled, Direction, Action, Profile +} + +Save-Command "disks-volumes" { + Write-Section "Disks" + Get-Disk | Sort-Object Number | Select-Object Number, FriendlyName, BusType, PartitionStyle, Size, OperationalStatus + Write-Section "Partitions" + Get-Partition | Sort-Object DiskNumber, PartitionNumber | Select-Object DiskNumber, PartitionNumber, DriveLetter, Type, GptType, Size + Write-Section "Volumes" + Get-Volume | Sort-Object DriveLetter, FileSystemLabel | Select-Object DriveLetter, FileSystemLabel, FileSystem, DriveType, HealthStatus, SizeRemaining, Size +} + +Save-Command "bootcamp" { + Write-Section "Boot Camp paths" + $Paths = @( + "C:\Program Files\Boot Camp", + "C:\Program Files (x86)\Boot Camp", + "C:\Windows\System32\AppleControlPanel.exe", + "C:\Windows\System32\AppleOSSMgr.exe", + "C:\Windows\System32\AppleKeyboardMgr.exe" + ) + foreach ($Path in $Paths) { + [pscustomobject]@{ + Path = $Path + Exists = Test-Path $Path + } + } + Write-Section "Apple services" + Get-Service -ErrorAction SilentlyContinue | + Where-Object { $_.Name -match "Apple|BootCamp" -or $_.DisplayName -match "Apple|Boot Camp" } | + Select-Object Name, DisplayName, Status, StartType + Write-Section "Firmware boot entries" + bcdedit /enum firmware +} + +Save-Command "receiver" { + Write-Section "iBridge receiver process/listener" + Get-Process -ErrorAction SilentlyContinue | + Where-Object { $_.ProcessName -match "ibridge|receiver" } | + Select-Object ProcessName, Id, Path + Get-NetTCPConnection -LocalPort 48320 -ErrorAction SilentlyContinue | Select-Object LocalAddress, LocalPort, State, OwningProcess +} + +$Summary.Add("Files:") +Get-ChildItem $ReportDir -File | Sort-Object Name | ForEach-Object { + $Summary.Add("- $($_.Name)") +} + +$SummaryPath = Join-Path $ReportDir "SUMMARY.txt" +$Summary | Set-Content -Path $SummaryPath -Encoding UTF8 + +Write-Host "iBridge iMac inventory complete." +Write-Host "Report directory: $ReportDir" +Write-Host "Summary: $SummaryPath" diff --git a/scripts/windows_network_matrix.ps1 b/scripts/windows_network_matrix.ps1 new file mode 100644 index 0000000..d7b6ebd --- /dev/null +++ b/scripts/windows_network_matrix.ps1 @@ -0,0 +1,76 @@ +param( + [Parameter(Mandatory = $true)] + [string]$Case, + + [Parameter(Mandatory = $true)] + [string]$MacHost, + + [string]$TailscaleTarget = "", + [int]$Duration = 20, + [string]$RunRoot = "" +) + +$ErrorActionPreference = "Continue" +$stamp = Get-Date -Format "yyyy-MM-dd_HHmm" +if (-not $RunRoot) { + $RunRoot = "benchmarks\runs\${stamp}_network_matrix" +} +$outDir = Join-Path $RunRoot $Case +New-Item -ItemType Directory -Force -Path $outDir | Out-Null + +@( + "case=$Case" + "mac_host=$MacHost" + "duration_seconds=$Duration" + "timestamp=$stamp" + "computer=$env:COMPUTERNAME" + "user=$env:USERNAME" +) | Tee-Object -FilePath (Join-Path $outDir "metadata.txt") + +Get-NetAdapter | Format-List * | Out-File -Encoding utf8 (Join-Path $outDir "net_adapter.txt") +Get-NetIPAddress | Format-Table -AutoSize | Out-File -Encoding utf8 (Join-Path $outDir "net_ipaddress.txt") + +Test-Connection -Count 100 $MacHost | Tee-Object -FilePath (Join-Path $outDir "ping_100.txt") + +$iperf = Get-Command iperf3 -ErrorAction SilentlyContinue +if ($iperf) { + & iperf3 -c $MacHost -t $Duration --json | Out-File -Encoding utf8 (Join-Path $outDir "iperf3_tcp_to_mac.json") + & iperf3 -c $MacHost -t $Duration -R --json | Out-File -Encoding utf8 (Join-Path $outDir "iperf3_tcp_from_mac_reverse.json") + foreach ($rate in @(30, 60, 120)) { + & iperf3 -c $MacHost -u -b "${rate}M" -t $Duration --json | Out-File -Encoding utf8 (Join-Path $outDir "iperf3_udp_${rate}mbps.json") + } +} else { + "iperf3 not installed; install it on both machines before cable benchmarks." | Tee-Object -FilePath (Join-Path $outDir "iperf3_missing.txt") +} + +if ($Case -eq "tailscale" -or $TailscaleTarget) { + if (-not $TailscaleTarget) { + $TailscaleTarget = $MacHost + } + $tailscale = Get-Command tailscale -ErrorAction SilentlyContinue + if ($tailscale) { + & tailscale status | Out-File -Encoding utf8 (Join-Path $outDir "tailscale_status.txt") + & tailscale netcheck | Out-File -Encoding utf8 (Join-Path $outDir "tailscale_netcheck.txt") + & tailscale ping --c 10 $TailscaleTarget | Out-File -Encoding utf8 (Join-Path $outDir "tailscale_ping.txt") + } else { + "tailscale CLI not found" | Tee-Object -FilePath (Join-Path $outDir "tailscale_missing.txt") + } +} + +@" +# Network Matrix Result: $Case + +- Mac host: ``$MacHost`` +- Duration: ``$Duration`` seconds +- Status: raw command artifacts captured; summarize min/avg/max/loss and iperf throughput after the physical path is confirmed. + +## Required Notes + +- Interface actually used: +- Physical path: +- Tailscale direct/relay status, if applicable: +- Link speed, if visible: +- Observed blockers: +"@ | Out-File -Encoding utf8 (Join-Path $outDir "summary.md") + +Write-Host "Wrote $outDir" diff --git a/specs/protocol_v0.md b/specs/protocol_v0.md index 4874f7b..0b75fb0 100644 --- a/specs/protocol_v0.md +++ b/specs/protocol_v0.md @@ -1,50 +1,201 @@ -# iBridge Protocol v0 Draft +# iBridge Protocol v0 + +Prompt: `prompts/07_PROTOCOL_AND_TRANSPORT.md` + +Protocol v0 is intentionally small. It exists to make the first local point-to-point display pipeline measurable before adding QUIC/WebRTC or richer control semantics. ## Transport -- TCP control channel initially. -- UDP frame channel for low latency. -- All frames have monotonic frame id. +- TCP control channel: handshake, mode negotiation, ping/echo timing, receiver status, debug fallback. +- UDP frame channel: low-latency frame chunks. +- TCP-only frame fallback: debug path when UDP/firewall/fragmentation is suspect. + +Default control port: `48320` + +## Control Handshake -## Control handshake +Primary sends JSON over TCP: ```json { "magic": "IBRIDGE", "version": 0, "role": "primary", - "supported_codecs": ["h264", "hevc"], - "supported_modes": ["5k60", "5k45", "4k60", "1440p60"], - "transport": ["tcp", "udp"] + "session_id": 1234, + "supported_codecs": ["h264", "hevc", "raw_bgra"], + "supported_modes": ["plan_a_5k60_raw", "plan_b_5k60_hevc", "plan_c_1440p60"], + "supported_scale_modes": ["nearest", "linear"], + "frame_transport": ["udp", "tcp"], + "control_port": 48320, + "udp_port": 48321 +} +``` + +Receiver replies: + +```json +{ + "magic": "IBRIDGE", + "version": 0, + "role": "receiver", + "session_id": 1234, + "accepted": true, + "selected_codec": "h264", + "selected_mode": "plan_b_5k60_hevc", + "selected_scale_mode": "linear", + "selected_frame_transport": "udp", + "max_payload_bytes": 1200, + "reason": "" +} +``` + +Wrong `magic`, wrong `version`, unsupported codec, unsupported mode, unsupported scale mode, or unsupported frame transport must be rejected before any frame payload is accepted. + +## Mode IDs + +| ID | Source resolution | Output resolution | Target | Notes | +|---|---:|---:|---:|---| +| `plan_a_5k60_raw` | 5120x2880 | 5120x2880 | 60fps | Raw/near-raw feasibility path. | +| `plan_b_5k60_hevc` | 5120x2880 | 5120x2880 | 60fps | Compressed 5K practical path. | +| `plan_c_1440p60` | 2560x1440 | 5120x2880 | 60fps | Exact 2x integer scale candidate. | +| `plan_c_1800p60` | 3200x1800 | 5120x2880 | 60fps | Balanced detail/bandwidth candidate. | +| `plan_c_4k60` | 3840x2160 | 5120x2880 | 60fps | Common 4K fallback candidate. | +| `plan_c_2304p60` | 4096x2304 | 5120x2880 | 60fps | Higher-detail fallback candidate. | + +Scale mode IDs: + +- `nearest`: point/integer sampling. Primary candidate for exact 2560x1440 -> 5120x2880. +- `linear`: bilinear sampling. First fallback for non-integer scaled modes. + +## Clock Offset Probe + +Do not calculate end-to-end latency from wall-clock timestamps alone. Primary and Receiver clocks may not be synchronized. + +Use TCP ping/echo samples: + +```json +{ + "type": "clock_probe", + "probe_id": 1, + "primary_send_ns": 100000 +} +``` + +Receiver replies immediately: + +```json +{ + "type": "clock_probe_reply", + "probe_id": 1, + "primary_send_ns": 100000, + "receiver_recv_ns": 250000, + "receiver_send_ns": 260000 } ``` -## Frame header binary fields - -| Field | Type | Notes | -|---|---|---| -| magic | u32 | `IBRG` | -| version | u16 | 0 | -| header_len | u16 | bytes | -| session_id | u64 | random | -| frame_id | u64 | increment | -| chunk_id | u16 | for UDP fragmentation | -| chunk_count | u16 | for UDP fragmentation | -| width | u16 | pixels | -| height | u16 | pixels | -| fps_target | u16 | target | -| codec | u8 | 1=h264,2=hevc,3=raw | -| flags | u32 | keyframe, cursor, etc | -| capture_ns | u64 | timestamp | -| encode_ns | u64 | timestamp | -| send_ns | u64 | timestamp | -| payload_len | u32 | bytes | - -## Latency calculation - -Receiver should calculate: - -- network time: receive_ns - send_ns -- decode time -- render time -- frame interval jitter +Primary records `primary_recv_ns` and estimates: + +```text +rtt_ns = primary_recv_ns - primary_send_ns +offset_ns ~= receiver_recv_ns - (primary_send_ns + rtt_ns / 2) +``` + +This is an estimate only. Frame order and drops must be tracked by `frame_id` even when timestamps are noisy. + +## Frame Header + +Binary frame header v0 is little-endian and fixed-size. + +Magic bytes are ASCII `IBRG`, encoded as `0x47524249` in little-endian `u32`. + +| Offset | Field | Type | Notes | +|---:|---|---|---| +| 0 | magic | u32 | `IBRG` | +| 4 | version | u16 | must be `0` | +| 6 | header_len | u16 | `80` for v0 | +| 8 | session_id | u64 | negotiated over TCP | +| 16 | frame_id | u64 | monotonic per frame | +| 24 | chunk_id | u16 | 0-based UDP chunk index | +| 26 | chunk_count | u16 | total chunks for frame | +| 28 | width | u16 | pixels | +| 30 | height | u16 | pixels | +| 32 | fps_target | u16 | target fps | +| 34 | codec | u8 | 1=h264, 2=hevc, 3=raw_bgra | +| 35 | color_format | u8 | 1=nv12, 2=bgra, 3=p010 | +| 36 | flags | u32 | bit flags below | +| 40 | capture_ns | u64 | primary monotonic timestamp | +| 48 | encode_start_ns | u64 | primary monotonic timestamp | +| 56 | encode_done_ns | u64 | primary monotonic timestamp | +| 64 | send_ns | u64 | primary monotonic timestamp | +| 72 | payload_len | u32 | bytes following this header/chunk | +| 76 | dropped_before | u32 | frames dropped before this frame | + +Header size: `80` bytes. + +## Codecs + +| ID | Name | +|---:|---| +| 1 | h264 | +| 2 | hevc | +| 3 | raw_bgra | + +## Color Formats + +| ID | Name | +|---:|---| +| 1 | nv12 | +| 2 | bgra | +| 3 | p010 | + +## Flags + +| Bit | Name | Meaning | +|---:|---|---| +| 0 | keyframe | payload starts a keyframe | +| 1 | cursor | payload includes cursor metadata | +| 2 | end_of_frame | last chunk for this frame | +| 3 | config | codec config payload such as SPS/PPS/VPS | + +## Dropped Frame Accounting + +Primary increments `dropped_before` when it skips frames before send. Receiver independently tracks missing `frame_id` gaps: + +```text +missing = current_frame_id - previous_frame_id - 1 +``` + +Both values should appear in diagnostics. They answer different questions: + +- `dropped_before`: sender-side drops before transport. +- `missing`: receiver-observed drops over transport or decode/render. + +## Latency Breakdown + +Receiver records its own monotonic timestamps: + +- `receive_ns` +- `decode_start_ns` +- `decode_done_ns` +- `render_start_ns` +- `present_done_ns` + +With clock offset estimate, diagnostics can approximate: + +- capture to encode done +- encode done to receive +- receive to decode done +- decode done to present +- total estimated end-to-end latency + +## Validation + +Parser tests live in `apps/shared-protocol/test_protocol_v0.py`. + +Required behavior: + +- round-trip encode/decode keeps every field; +- wrong magic is rejected; +- wrong version is rejected; +- payload length is preserved; +- dropped frame accounting fields are decoded.